diff --git a/src/grammar.json b/src/grammar.json index db5dede..cd6b594 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,4 +1,14 @@ { + "0": "t", + "1": "y", + "2": "p", + "3": "e", + "4": "s", + "5": "c", + "6": "r", + "7": "i", + "8": "p", + "9": "t", "name": "qmljs", "word": "identifier", "rules": { @@ -6807,6 +6817,18 @@ "type": "STRING", "value": "static" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "body", @@ -12424,6 +12446,10 @@ "binary_expression", "_initializer" ], + [ + "class_static_block", + "_property_name" + ], [ "call_expression", "instantiation_expression", @@ -13203,7 +13229,6 @@ } ], "inline": [ - "statement", "_expressions", "_semicolon", "_identifier", diff --git a/src/parser.c b/src/parser.c index b7e1057..31199c0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,7 +1,6 @@ #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif @@ -14,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 8762 -#define LARGE_STATE_COUNT 2218 -#define SYMBOL_COUNT 420 +#define STATE_COUNT 8505 +#define LARGE_STATE_COUNT 2070 +#define SYMBOL_COUNT 421 #define ALIAS_COUNT 6 #define TOKEN_COUNT 173 #define EXTERNAL_TOKEN_COUNT 9 @@ -212,244 +211,245 @@ enum ts_symbol_identifiers { sym_named_imports = 185, sym_import_specifier = 186, sym_import_attribute = 187, - sym_expression_statement = 188, - sym_variable_declaration = 189, - sym_lexical_declaration = 190, - sym_variable_declarator = 191, - sym_statement_block = 192, - sym_else_clause = 193, - sym_if_statement = 194, - sym_switch_statement = 195, - sym_for_statement = 196, - sym_for_in_statement = 197, - sym__for_header = 198, - sym_while_statement = 199, - sym_do_statement = 200, - sym_try_statement = 201, - sym_with_statement = 202, - sym_break_statement = 203, - sym_continue_statement = 204, - sym_debugger_statement = 205, - sym_return_statement = 206, - sym_throw_statement = 207, - sym_empty_statement = 208, - sym_labeled_statement = 209, - sym_switch_body = 210, - sym_switch_case = 211, - sym_switch_default = 212, - sym_catch_clause = 213, - sym_finally_clause = 214, - sym_parenthesized_expression = 215, - sym_expression = 216, - sym_primary_expression = 217, - sym_yield_expression = 218, - sym_object = 219, - sym_object_pattern = 220, - sym_assignment_pattern = 221, - sym_object_assignment_pattern = 222, - sym_array = 223, - sym_array_pattern = 224, - sym_glimmer_template = 225, - sym_glimmer_opening_tag = 226, - sym_glimmer_closing_tag = 227, - sym_nested_identifier = 228, - sym_class = 229, - sym_class_declaration = 230, - sym_class_heritage = 231, - sym_function_expression = 232, - sym_function_declaration = 233, - sym_generator_function = 234, - sym_generator_function_declaration = 235, - sym_arrow_function = 236, - sym__call_signature = 237, - sym__formal_parameter = 238, - sym_optional_chain = 239, - sym_call_expression = 240, - sym_new_expression = 241, - sym_await_expression = 242, - sym_member_expression = 243, - sym_subscript_expression = 244, - sym_assignment_expression = 245, - sym__augmented_assignment_lhs = 246, - sym_augmented_assignment_expression = 247, - sym__initializer = 248, - sym__destructuring_pattern = 249, - sym_spread_element = 250, - sym_ternary_expression = 251, - sym_binary_expression = 252, - sym_unary_expression = 253, - sym_update_expression = 254, - sym_sequence_expression = 255, - sym_string = 256, - sym_comment = 257, - sym_template_string = 258, - sym_template_substitution = 259, - sym_regex = 260, - sym_meta_property = 261, - sym_arguments = 262, - sym_decorator = 263, - sym_decorator_member_expression = 264, - sym_decorator_call_expression = 265, - sym_class_body = 266, - sym_formal_parameters = 267, - sym_class_static_block = 268, - sym_pattern = 269, - sym_rest_pattern = 270, - sym_method_definition = 271, - sym_pair = 272, - sym_pair_pattern = 273, - sym__property_name = 274, - sym_computed_property_name = 275, - sym_public_field_definition = 276, - sym__import_identifier = 277, - sym_non_null_expression = 278, - sym_method_signature = 279, - sym_abstract_method_signature = 280, - sym_function_signature = 281, - sym_type_assertion = 282, - sym_as_expression = 283, - sym_satisfies_expression = 284, - sym_instantiation_expression = 285, - sym_import_require_clause = 286, - sym_extends_clause = 287, - sym__extends_clause_single = 288, - sym_implements_clause = 289, - sym_ambient_declaration = 290, - sym_abstract_class_declaration = 291, - sym_module = 292, - sym_internal_module = 293, - sym__module = 294, - sym_import_alias = 295, - sym_nested_type_identifier = 296, - sym_interface_declaration = 297, - sym_extends_type_clause = 298, - sym_enum_declaration = 299, - sym_enum_body = 300, - sym_enum_assignment = 301, - sym_type_alias_declaration = 302, - sym_accessibility_modifier = 303, - sym_override_modifier = 304, - sym_required_parameter = 305, - sym_optional_parameter = 306, - sym__parameter_name = 307, - sym_omitting_type_annotation = 308, - sym_adding_type_annotation = 309, - sym_opting_type_annotation = 310, - sym_type_annotation = 311, - sym__type_query_member_expression_in_type_annotation = 312, - sym__type_query_call_expression_in_type_annotation = 313, - sym_asserts = 314, - sym_asserts_annotation = 315, - sym__type = 316, - sym_tuple_parameter = 317, - sym_optional_tuple_parameter = 318, - sym_optional_type = 319, - sym_rest_type = 320, - sym__tuple_type_member = 321, - sym_constructor_type = 322, - sym__primary_type = 323, - sym_template_type = 324, - sym_template_literal_type = 325, - sym_infer_type = 326, - sym_conditional_type = 327, - sym_generic_type = 328, - sym_type_predicate = 329, - sym_type_predicate_annotation = 330, - sym__type_query_member_expression = 331, - sym__type_query_subscript_expression = 332, - sym__type_query_call_expression = 333, - sym__type_query_instantiation_expression = 334, - sym_type_query = 335, - sym_index_type_query = 336, - sym_lookup_type = 337, - sym_mapped_type_clause = 338, - sym_literal_type = 339, - sym__number = 340, - sym_existential_type = 341, - sym_flow_maybe_type = 342, - sym_parenthesized_type = 343, - sym_predefined_type = 344, - sym_type_arguments = 345, - sym_object_type = 346, - sym_call_signature = 347, - sym_property_signature = 348, - sym_type_parameters = 349, - sym_type_parameter = 350, - sym_default_type = 351, - sym_constraint = 352, - sym_construct_signature = 353, - sym_index_signature = 354, - sym_array_type = 355, - sym_tuple_type = 356, - sym_readonly_type = 357, - sym_union_type = 358, - sym_intersection_type = 359, - sym_function_type = 360, - sym_ui_pragma = 361, - sym_ui_import = 362, - sym_ui_version_specifier = 363, - sym_ui_object_definition = 364, - sym_ui_annotated_object = 365, - sym_ui_annotation = 366, - sym_ui_object_initializer = 367, - sym_ui_annotated_object_member = 368, - sym_ui_object_definition_binding = 369, - sym_ui_binding = 370, - sym_ui_property = 371, - sym_ui_list_property_type = 372, - sym_ui_property_modifier = 373, - sym_ui_object_array = 374, - sym_ui_required = 375, - sym_ui_signal = 376, - sym_ui_signal_parameters = 377, - sym_ui_signal_parameter = 378, - sym_ui_inline_component = 379, - sym__qml_enum_declaration = 380, - sym__qml_enum_body = 381, - sym__qml_enum_assignment = 382, - sym__qml_enum_negative_number = 383, - sym_ui_nested_identifier = 384, - sym_ui_simple_nested_identifier = 385, - aux_sym_program_repeat1 = 386, - aux_sym_export_statement_repeat1 = 387, - aux_sym_export_clause_repeat1 = 388, - aux_sym_named_imports_repeat1 = 389, - aux_sym_variable_declaration_repeat1 = 390, - aux_sym_statement_block_repeat1 = 391, - aux_sym_switch_body_repeat1 = 392, - aux_sym_object_repeat1 = 393, - aux_sym_object_pattern_repeat1 = 394, - aux_sym_array_repeat1 = 395, - aux_sym_array_pattern_repeat1 = 396, - aux_sym_glimmer_template_repeat1 = 397, - aux_sym_sequence_expression_repeat1 = 398, - aux_sym_string_repeat1 = 399, - aux_sym_string_repeat2 = 400, - aux_sym_template_string_repeat1 = 401, - aux_sym_class_body_repeat1 = 402, - aux_sym_formal_parameters_repeat1 = 403, - aux_sym_extends_clause_repeat1 = 404, - aux_sym_implements_clause_repeat1 = 405, - aux_sym_extends_type_clause_repeat1 = 406, - aux_sym_enum_body_repeat1 = 407, - aux_sym_template_literal_type_repeat1 = 408, - aux_sym_type_arguments_repeat1 = 409, - aux_sym_object_type_repeat1 = 410, - aux_sym_type_parameters_repeat1 = 411, - aux_sym_tuple_type_repeat1 = 412, - aux_sym_ui_pragma_repeat1 = 413, - aux_sym_ui_annotated_object_repeat1 = 414, - aux_sym_ui_object_initializer_repeat1 = 415, - aux_sym_ui_property_repeat1 = 416, - aux_sym_ui_object_array_repeat1 = 417, - aux_sym_ui_signal_parameters_repeat1 = 418, - aux_sym__qml_enum_body_repeat1 = 419, - alias_sym_interface_body = 420, - alias_sym_property_identifier = 421, - alias_sym_shorthand_property_identifier = 422, - alias_sym_shorthand_property_identifier_pattern = 423, - alias_sym_statement_identifier = 424, - alias_sym_this_type = 425, + sym_statement = 188, + sym_expression_statement = 189, + sym_variable_declaration = 190, + sym_lexical_declaration = 191, + sym_variable_declarator = 192, + sym_statement_block = 193, + sym_else_clause = 194, + sym_if_statement = 195, + sym_switch_statement = 196, + sym_for_statement = 197, + sym_for_in_statement = 198, + sym__for_header = 199, + sym_while_statement = 200, + sym_do_statement = 201, + sym_try_statement = 202, + sym_with_statement = 203, + sym_break_statement = 204, + sym_continue_statement = 205, + sym_debugger_statement = 206, + sym_return_statement = 207, + sym_throw_statement = 208, + sym_empty_statement = 209, + sym_labeled_statement = 210, + sym_switch_body = 211, + sym_switch_case = 212, + sym_switch_default = 213, + sym_catch_clause = 214, + sym_finally_clause = 215, + sym_parenthesized_expression = 216, + sym_expression = 217, + sym_primary_expression = 218, + sym_yield_expression = 219, + sym_object = 220, + sym_object_pattern = 221, + sym_assignment_pattern = 222, + sym_object_assignment_pattern = 223, + sym_array = 224, + sym_array_pattern = 225, + sym_glimmer_template = 226, + sym_glimmer_opening_tag = 227, + sym_glimmer_closing_tag = 228, + sym_nested_identifier = 229, + sym_class = 230, + sym_class_declaration = 231, + sym_class_heritage = 232, + sym_function_expression = 233, + sym_function_declaration = 234, + sym_generator_function = 235, + sym_generator_function_declaration = 236, + sym_arrow_function = 237, + sym__call_signature = 238, + sym__formal_parameter = 239, + sym_optional_chain = 240, + sym_call_expression = 241, + sym_new_expression = 242, + sym_await_expression = 243, + sym_member_expression = 244, + sym_subscript_expression = 245, + sym_assignment_expression = 246, + sym__augmented_assignment_lhs = 247, + sym_augmented_assignment_expression = 248, + sym__initializer = 249, + sym__destructuring_pattern = 250, + sym_spread_element = 251, + sym_ternary_expression = 252, + sym_binary_expression = 253, + sym_unary_expression = 254, + sym_update_expression = 255, + sym_sequence_expression = 256, + sym_string = 257, + sym_comment = 258, + sym_template_string = 259, + sym_template_substitution = 260, + sym_regex = 261, + sym_meta_property = 262, + sym_arguments = 263, + sym_decorator = 264, + sym_decorator_member_expression = 265, + sym_decorator_call_expression = 266, + sym_class_body = 267, + sym_formal_parameters = 268, + sym_class_static_block = 269, + sym_pattern = 270, + sym_rest_pattern = 271, + sym_method_definition = 272, + sym_pair = 273, + sym_pair_pattern = 274, + sym__property_name = 275, + sym_computed_property_name = 276, + sym_public_field_definition = 277, + sym__import_identifier = 278, + sym_non_null_expression = 279, + sym_method_signature = 280, + sym_abstract_method_signature = 281, + sym_function_signature = 282, + sym_type_assertion = 283, + sym_as_expression = 284, + sym_satisfies_expression = 285, + sym_instantiation_expression = 286, + sym_import_require_clause = 287, + sym_extends_clause = 288, + sym__extends_clause_single = 289, + sym_implements_clause = 290, + sym_ambient_declaration = 291, + sym_abstract_class_declaration = 292, + sym_module = 293, + sym_internal_module = 294, + sym__module = 295, + sym_import_alias = 296, + sym_nested_type_identifier = 297, + sym_interface_declaration = 298, + sym_extends_type_clause = 299, + sym_enum_declaration = 300, + sym_enum_body = 301, + sym_enum_assignment = 302, + sym_type_alias_declaration = 303, + sym_accessibility_modifier = 304, + sym_override_modifier = 305, + sym_required_parameter = 306, + sym_optional_parameter = 307, + sym__parameter_name = 308, + sym_omitting_type_annotation = 309, + sym_adding_type_annotation = 310, + sym_opting_type_annotation = 311, + sym_type_annotation = 312, + sym__type_query_member_expression_in_type_annotation = 313, + sym__type_query_call_expression_in_type_annotation = 314, + sym_asserts = 315, + sym_asserts_annotation = 316, + sym__type = 317, + sym_tuple_parameter = 318, + sym_optional_tuple_parameter = 319, + sym_optional_type = 320, + sym_rest_type = 321, + sym__tuple_type_member = 322, + sym_constructor_type = 323, + sym__primary_type = 324, + sym_template_type = 325, + sym_template_literal_type = 326, + sym_infer_type = 327, + sym_conditional_type = 328, + sym_generic_type = 329, + sym_type_predicate = 330, + sym_type_predicate_annotation = 331, + sym__type_query_member_expression = 332, + sym__type_query_subscript_expression = 333, + sym__type_query_call_expression = 334, + sym__type_query_instantiation_expression = 335, + sym_type_query = 336, + sym_index_type_query = 337, + sym_lookup_type = 338, + sym_mapped_type_clause = 339, + sym_literal_type = 340, + sym__number = 341, + sym_existential_type = 342, + sym_flow_maybe_type = 343, + sym_parenthesized_type = 344, + sym_predefined_type = 345, + sym_type_arguments = 346, + sym_object_type = 347, + sym_call_signature = 348, + sym_property_signature = 349, + sym_type_parameters = 350, + sym_type_parameter = 351, + sym_default_type = 352, + sym_constraint = 353, + sym_construct_signature = 354, + sym_index_signature = 355, + sym_array_type = 356, + sym_tuple_type = 357, + sym_readonly_type = 358, + sym_union_type = 359, + sym_intersection_type = 360, + sym_function_type = 361, + sym_ui_pragma = 362, + sym_ui_import = 363, + sym_ui_version_specifier = 364, + sym_ui_object_definition = 365, + sym_ui_annotated_object = 366, + sym_ui_annotation = 367, + sym_ui_object_initializer = 368, + sym_ui_annotated_object_member = 369, + sym_ui_object_definition_binding = 370, + sym_ui_binding = 371, + sym_ui_property = 372, + sym_ui_list_property_type = 373, + sym_ui_property_modifier = 374, + sym_ui_object_array = 375, + sym_ui_required = 376, + sym_ui_signal = 377, + sym_ui_signal_parameters = 378, + sym_ui_signal_parameter = 379, + sym_ui_inline_component = 380, + sym__qml_enum_declaration = 381, + sym__qml_enum_body = 382, + sym__qml_enum_assignment = 383, + sym__qml_enum_negative_number = 384, + sym_ui_nested_identifier = 385, + sym_ui_simple_nested_identifier = 386, + aux_sym_program_repeat1 = 387, + aux_sym_export_statement_repeat1 = 388, + aux_sym_export_clause_repeat1 = 389, + aux_sym_named_imports_repeat1 = 390, + aux_sym_variable_declaration_repeat1 = 391, + aux_sym_statement_block_repeat1 = 392, + aux_sym_switch_body_repeat1 = 393, + aux_sym_object_repeat1 = 394, + aux_sym_object_pattern_repeat1 = 395, + aux_sym_array_repeat1 = 396, + aux_sym_array_pattern_repeat1 = 397, + aux_sym_glimmer_template_repeat1 = 398, + aux_sym_sequence_expression_repeat1 = 399, + aux_sym_string_repeat1 = 400, + aux_sym_string_repeat2 = 401, + aux_sym_template_string_repeat1 = 402, + aux_sym_class_body_repeat1 = 403, + aux_sym_formal_parameters_repeat1 = 404, + aux_sym_extends_clause_repeat1 = 405, + aux_sym_implements_clause_repeat1 = 406, + aux_sym_extends_type_clause_repeat1 = 407, + aux_sym_enum_body_repeat1 = 408, + aux_sym_template_literal_type_repeat1 = 409, + aux_sym_type_arguments_repeat1 = 410, + aux_sym_object_type_repeat1 = 411, + aux_sym_type_parameters_repeat1 = 412, + aux_sym_tuple_type_repeat1 = 413, + aux_sym_ui_pragma_repeat1 = 414, + aux_sym_ui_annotated_object_repeat1 = 415, + aux_sym_ui_object_initializer_repeat1 = 416, + aux_sym_ui_property_repeat1 = 417, + aux_sym_ui_object_array_repeat1 = 418, + aux_sym_ui_signal_parameters_repeat1 = 419, + aux_sym__qml_enum_body_repeat1 = 420, + alias_sym_interface_body = 421, + alias_sym_property_identifier = 422, + alias_sym_shorthand_property_identifier = 423, + alias_sym_shorthand_property_identifier_pattern = 424, + alias_sym_statement_identifier = 425, + alias_sym_this_type = 426, }; static const char * const ts_symbol_names[] = { @@ -641,6 +641,7 @@ static const char * const ts_symbol_names[] = { [sym_named_imports] = "named_imports", [sym_import_specifier] = "import_specifier", [sym_import_attribute] = "import_attribute", + [sym_statement] = "statement", [sym_expression_statement] = "expression_statement", [sym_variable_declaration] = "variable_declaration", [sym_lexical_declaration] = "lexical_declaration", @@ -1070,6 +1071,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_named_imports] = sym_named_imports, [sym_import_specifier] = sym_import_specifier, [sym_import_attribute] = sym_import_attribute, + [sym_statement] = sym_statement, [sym_expression_statement] = sym_expression_statement, [sym_variable_declaration] = sym_variable_declaration, [sym_lexical_declaration] = sym_lexical_declaration, @@ -2064,6 +2066,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_expression_statement] = { .visible = true, .named = true, @@ -5052,236 +5059,236 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [20] = 20, [21] = 21, [22] = 20, - [23] = 21, - [24] = 20, + [23] = 20, + [24] = 21, [25] = 20, [26] = 21, [27] = 20, - [28] = 21, + [28] = 20, [29] = 21, - [30] = 20, - [31] = 21, - [32] = 21, + [30] = 21, + [31] = 20, + [32] = 18, [33] = 20, - [34] = 20, + [34] = 21, [35] = 21, - [36] = 21, - [37] = 20, - [38] = 21, - [39] = 20, - [40] = 21, - [41] = 20, - [42] = 21, + [36] = 20, + [37] = 21, + [38] = 20, + [39] = 21, + [40] = 20, + [41] = 21, + [42] = 20, [43] = 21, [44] = 21, [45] = 20, - [46] = 21, + [46] = 20, [47] = 20, [48] = 21, - [49] = 21, - [50] = 20, - [51] = 20, - [52] = 20, - [53] = 21, - [54] = 21, - [55] = 20, + [49] = 20, + [50] = 21, + [51] = 21, + [52] = 21, + [53] = 20, + [54] = 20, + [55] = 21, [56] = 20, - [57] = 21, - [58] = 20, + [57] = 20, + [58] = 21, [59] = 21, [60] = 20, [61] = 21, [62] = 20, [63] = 21, [64] = 21, - [65] = 20, - [66] = 21, + [65] = 21, + [66] = 20, [67] = 20, - [68] = 20, - [69] = 21, - [70] = 21, + [68] = 21, + [69] = 20, + [70] = 20, [71] = 21, [72] = 20, [73] = 21, [74] = 20, - [75] = 20, + [75] = 21, [76] = 21, [77] = 20, - [78] = 20, + [78] = 21, [79] = 21, - [80] = 21, - [81] = 20, - [82] = 19, + [80] = 20, + [81] = 21, + [82] = 20, [83] = 21, [84] = 20, - [85] = 20, - [86] = 21, + [85] = 21, + [86] = 20, [87] = 20, - [88] = 20, + [88] = 21, [89] = 20, [90] = 21, - [91] = 20, - [92] = 21, + [91] = 21, + [92] = 20, [93] = 93, [94] = 94, [95] = 95, [96] = 95, - [97] = 97, + [97] = 95, [98] = 98, - [99] = 99, - [100] = 98, - [101] = 94, - [102] = 99, - [103] = 103, + [99] = 98, + [100] = 100, + [101] = 101, + [102] = 100, + [103] = 100, [104] = 104, - [105] = 104, - [106] = 97, + [105] = 105, + [106] = 93, [107] = 107, - [108] = 94, - [109] = 109, - [110] = 93, - [111] = 94, - [112] = 107, - [113] = 99, - [114] = 95, - [115] = 98, - [116] = 97, - [117] = 95, - [118] = 99, - [119] = 104, - [120] = 103, - [121] = 103, - [122] = 107, - [123] = 97, - [124] = 104, - [125] = 93, - [126] = 109, - [127] = 98, - [128] = 103, - [129] = 97, - [130] = 95, - [131] = 103, - [132] = 97, - [133] = 99, + [108] = 108, + [109] = 108, + [110] = 108, + [111] = 95, + [112] = 108, + [113] = 108, + [114] = 93, + [115] = 95, + [116] = 94, + [117] = 107, + [118] = 107, + [119] = 105, + [120] = 93, + [121] = 104, + [122] = 94, + [123] = 104, + [124] = 98, + [125] = 105, + [126] = 101, + [127] = 101, + [128] = 105, + [129] = 101, + [130] = 100, + [131] = 107, + [132] = 104, + [133] = 98, [134] = 104, - [135] = 94, - [136] = 99, - [137] = 107, - [138] = 103, - [139] = 109, - [140] = 104, - [141] = 109, - [142] = 99, - [143] = 93, - [144] = 98, - [145] = 93, - [146] = 109, - [147] = 107, - [148] = 95, - [149] = 95, - [150] = 107, - [151] = 93, - [152] = 109, - [153] = 104, - [154] = 94, - [155] = 98, - [156] = 98, - [157] = 93, - [158] = 94, - [159] = 109, - [160] = 107, - [161] = 103, - [162] = 97, + [135] = 95, + [136] = 98, + [137] = 94, + [138] = 94, + [139] = 93, + [140] = 93, + [141] = 100, + [142] = 98, + [143] = 104, + [144] = 107, + [145] = 94, + [146] = 108, + [147] = 105, + [148] = 107, + [149] = 101, + [150] = 93, + [151] = 98, + [152] = 101, + [153] = 105, + [154] = 101, + [155] = 105, + [156] = 108, + [157] = 107, + [158] = 104, + [159] = 95, + [160] = 100, + [161] = 94, + [162] = 100, [163] = 163, [164] = 163, [165] = 163, - [166] = 163, - [167] = 163, - [168] = 168, + [166] = 166, + [167] = 166, + [168] = 166, [169] = 163, [170] = 163, - [171] = 168, - [172] = 168, + [171] = 163, + [172] = 163, [173] = 163, - [174] = 168, - [175] = 163, + [174] = 163, + [175] = 166, [176] = 163, [177] = 177, [178] = 178, [179] = 179, - [180] = 178, + [180] = 180, [181] = 181, [182] = 182, - [183] = 183, + [183] = 180, [184] = 184, [185] = 185, - [186] = 185, - [187] = 187, + [186] = 186, + [187] = 185, [188] = 188, [189] = 189, [190] = 190, - [191] = 188, - [192] = 192, - [193] = 192, - [194] = 192, - [195] = 188, + [191] = 191, + [192] = 191, + [193] = 190, + [194] = 190, + [195] = 195, [196] = 196, - [197] = 197, - [198] = 188, - [199] = 197, - [200] = 200, - [201] = 197, - [202] = 189, - [203] = 197, - [204] = 197, - [205] = 200, - [206] = 197, - [207] = 190, - [208] = 200, - [209] = 197, - [210] = 200, - [211] = 200, + [197] = 196, + [198] = 196, + [199] = 195, + [200] = 195, + [201] = 195, + [202] = 202, + [203] = 195, + [204] = 195, + [205] = 195, + [206] = 196, + [207] = 191, + [208] = 189, + [209] = 188, + [210] = 191, + [211] = 196, [212] = 212, - [213] = 188, + [213] = 213, [214] = 214, - [215] = 187, - [216] = 188, - [217] = 190, - [218] = 218, - [219] = 188, - [220] = 190, - [221] = 221, - [222] = 188, - [223] = 189, - [224] = 188, + [215] = 186, + [216] = 191, + [217] = 191, + [218] = 189, + [219] = 191, + [220] = 189, + [221] = 189, + [222] = 185, + [223] = 223, + [224] = 191, [225] = 188, [226] = 226, - [227] = 185, - [228] = 190, - [229] = 188, - [230] = 188, - [231] = 190, - [232] = 188, - [233] = 212, - [234] = 196, - [235] = 190, - [236] = 188, - [237] = 214, - [238] = 238, - [239] = 238, - [240] = 188, - [241] = 238, - [242] = 238, - [243] = 238, - [244] = 190, - [245] = 238, - [246] = 246, - [247] = 188, - [248] = 238, - [249] = 238, - [250] = 238, - [251] = 188, - [252] = 190, + [227] = 191, + [228] = 191, + [229] = 214, + [230] = 191, + [231] = 189, + [232] = 202, + [233] = 189, + [234] = 191, + [235] = 191, + [236] = 191, + [237] = 237, + [238] = 191, + [239] = 191, + [240] = 237, + [241] = 241, + [242] = 237, + [243] = 237, + [244] = 189, + [245] = 189, + [246] = 237, + [247] = 213, + [248] = 191, + [249] = 237, + [250] = 237, + [251] = 237, + [252] = 237, [253] = 253, [254] = 253, [255] = 253, @@ -5304,21 +5311,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [272] = 265, [273] = 265, [274] = 274, - [275] = 274, + [275] = 275, [276] = 274, - [277] = 274, - [278] = 278, + [277] = 275, + [278] = 274, [279] = 274, - [280] = 278, + [280] = 275, [281] = 274, - [282] = 278, - [283] = 278, - [284] = 278, + [282] = 274, + [283] = 275, + [284] = 275, [285] = 274, - [286] = 274, - [287] = 278, - [288] = 278, - [289] = 278, + [286] = 275, + [287] = 275, + [288] = 275, + [289] = 274, [290] = 290, [291] = 291, [292] = 292, @@ -5336,46 +5343,46 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [304] = 304, [305] = 304, [306] = 306, - [307] = 307, - [308] = 306, - [309] = 307, - [310] = 306, - [311] = 307, + [307] = 306, + [308] = 308, + [309] = 308, + [310] = 308, + [311] = 306, [312] = 304, [313] = 313, - [314] = 314, + [314] = 313, [315] = 313, - [316] = 313, - [317] = 317, + [316] = 316, + [317] = 313, [318] = 318, - [319] = 313, + [319] = 319, [320] = 313, [321] = 313, [322] = 313, [323] = 323, - [324] = 324, + [324] = 323, [325] = 323, [326] = 323, [327] = 323, - [328] = 323, - [329] = 317, + [328] = 328, + [329] = 318, [330] = 323, [331] = 331, [332] = 323, [333] = 333, - [334] = 334, + [334] = 331, [335] = 335, - [336] = 331, + [336] = 336, [337] = 337, [338] = 338, [339] = 339, - [340] = 331, - [341] = 333, + [340] = 318, + [341] = 339, [342] = 342, [343] = 343, - [344] = 317, - [345] = 337, - [346] = 346, + [344] = 342, + [345] = 331, + [346] = 335, [347] = 347, [348] = 348, [349] = 349, @@ -5385,15 +5392,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [353] = 353, [354] = 354, [355] = 355, - [356] = 335, + [356] = 336, [357] = 357, - [358] = 358, - [359] = 359, + [358] = 337, + [359] = 338, [360] = 360, [361] = 361, [362] = 362, [363] = 363, - [364] = 339, + [364] = 364, [365] = 365, [366] = 366, [367] = 367, @@ -5402,256 +5409,256 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [370] = 370, [371] = 371, [372] = 372, - [373] = 334, + [373] = 373, [374] = 374, - [375] = 338, + [375] = 375, [376] = 376, [377] = 377, - [378] = 317, - [379] = 379, - [380] = 331, - [381] = 352, - [382] = 359, - [383] = 376, - [384] = 358, - [385] = 348, - [386] = 331, - [387] = 317, - [388] = 347, - [389] = 367, - [390] = 353, - [391] = 361, - [392] = 363, - [393] = 369, - [394] = 317, - [395] = 317, - [396] = 370, + [378] = 362, + [379] = 337, + [380] = 352, + [381] = 372, + [382] = 336, + [383] = 335, + [384] = 351, + [385] = 338, + [386] = 347, + [387] = 387, + [388] = 371, + [389] = 351, + [390] = 355, + [391] = 348, + [392] = 318, + [393] = 349, + [394] = 318, + [395] = 360, + [396] = 363, [397] = 397, - [398] = 372, - [399] = 397, - [400] = 317, - [401] = 334, - [402] = 368, + [398] = 364, + [399] = 318, + [400] = 387, + [401] = 370, + [402] = 357, [403] = 365, - [404] = 317, - [405] = 366, - [406] = 358, - [407] = 357, - [408] = 317, - [409] = 351, - [410] = 355, - [411] = 377, - [412] = 339, + [404] = 387, + [405] = 318, + [406] = 387, + [407] = 387, + [408] = 318, + [409] = 369, + [410] = 376, + [411] = 373, + [412] = 412, [413] = 354, - [414] = 335, - [415] = 346, - [416] = 338, - [417] = 397, - [418] = 371, - [419] = 397, - [420] = 360, - [421] = 397, - [422] = 422, - [423] = 397, - [424] = 349, - [425] = 350, - [426] = 397, - [427] = 366, - [428] = 335, - [429] = 377, - [430] = 376, + [414] = 374, + [415] = 375, + [416] = 377, + [417] = 387, + [418] = 318, + [419] = 353, + [420] = 331, + [421] = 331, + [422] = 318, + [423] = 387, + [424] = 368, + [425] = 366, + [426] = 367, + [427] = 353, + [428] = 428, + [429] = 428, + [430] = 331, [431] = 431, - [432] = 432, - [433] = 346, - [434] = 434, - [435] = 434, - [436] = 365, - [437] = 437, - [438] = 438, - [439] = 368, - [440] = 434, - [441] = 434, - [442] = 331, - [443] = 363, - [444] = 369, - [445] = 361, - [446] = 348, - [447] = 360, - [448] = 350, - [449] = 353, - [450] = 352, - [451] = 357, - [452] = 452, - [453] = 434, - [454] = 351, - [455] = 371, - [456] = 354, - [457] = 437, - [458] = 367, - [459] = 370, - [460] = 331, - [461] = 461, - [462] = 359, - [463] = 338, - [464] = 438, - [465] = 355, - [466] = 349, - [467] = 434, - [468] = 452, - [469] = 434, - [470] = 347, - [471] = 434, - [472] = 434, - [473] = 434, - [474] = 452, - [475] = 475, - [476] = 434, - [477] = 434, - [478] = 372, - [479] = 452, - [480] = 434, - [481] = 452, - [482] = 334, - [483] = 452, - [484] = 452, - [485] = 434, - [486] = 331, - [487] = 339, - [488] = 374, - [489] = 489, - [490] = 377, - [491] = 346, - [492] = 351, - [493] = 493, - [494] = 354, - [495] = 495, - [496] = 357, - [497] = 493, - [498] = 498, - [499] = 347, - [500] = 493, - [501] = 331, - [502] = 493, - [503] = 493, + [432] = 428, + [433] = 367, + [434] = 428, + [435] = 365, + [436] = 428, + [437] = 366, + [438] = 428, + [439] = 354, + [440] = 428, + [441] = 370, + [442] = 371, + [443] = 443, + [444] = 428, + [445] = 431, + [446] = 431, + [447] = 447, + [448] = 428, + [449] = 331, + [450] = 428, + [451] = 451, + [452] = 372, + [453] = 360, + [454] = 375, + [455] = 428, + [456] = 431, + [457] = 428, + [458] = 373, + [459] = 428, + [460] = 368, + [461] = 347, + [462] = 462, + [463] = 361, + [464] = 369, + [465] = 374, + [466] = 447, + [467] = 376, + [468] = 338, + [469] = 337, + [470] = 443, + [471] = 335, + [472] = 357, + [473] = 363, + [474] = 355, + [475] = 352, + [476] = 431, + [477] = 377, + [478] = 348, + [479] = 431, + [480] = 364, + [481] = 481, + [482] = 482, + [483] = 428, + [484] = 349, + [485] = 331, + [486] = 336, + [487] = 362, + [488] = 431, + [489] = 369, + [490] = 490, + [491] = 370, + [492] = 353, + [493] = 357, + [494] = 364, + [495] = 377, + [496] = 362, + [497] = 497, + [498] = 490, + [499] = 376, + [500] = 365, + [501] = 360, + [502] = 355, + [503] = 503, [504] = 372, - [505] = 369, - [506] = 349, - [507] = 350, - [508] = 366, - [509] = 360, - [510] = 510, - [511] = 493, - [512] = 361, - [513] = 376, - [514] = 367, - [515] = 355, - [516] = 365, - [517] = 363, - [518] = 352, - [519] = 353, - [520] = 493, - [521] = 371, - [522] = 348, - [523] = 370, - [524] = 359, - [525] = 368, + [505] = 490, + [506] = 363, + [507] = 368, + [508] = 371, + [509] = 354, + [510] = 352, + [511] = 374, + [512] = 490, + [513] = 366, + [514] = 331, + [515] = 515, + [516] = 516, + [517] = 349, + [518] = 348, + [519] = 347, + [520] = 375, + [521] = 490, + [522] = 373, + [523] = 490, + [524] = 367, + [525] = 490, [526] = 526, - [527] = 526, - [528] = 528, - [529] = 526, - [530] = 530, - [531] = 530, + [527] = 527, + [528] = 526, + [529] = 529, + [530] = 527, + [531] = 526, [532] = 526, [533] = 526, [534] = 526, [535] = 526, [536] = 536, [537] = 537, - [538] = 536, + [538] = 538, [539] = 539, - [540] = 540, + [540] = 536, [541] = 541, - [542] = 541, + [542] = 542, [543] = 543, - [544] = 540, + [544] = 536, [545] = 539, - [546] = 536, - [547] = 537, - [548] = 548, - [549] = 548, + [546] = 546, + [547] = 547, + [548] = 541, + [549] = 549, [550] = 550, - [551] = 550, - [552] = 537, - [553] = 553, - [554] = 554, - [555] = 555, - [556] = 548, - [557] = 548, - [558] = 539, - [559] = 559, - [560] = 550, - [561] = 543, + [551] = 541, + [552] = 543, + [553] = 546, + [554] = 547, + [555] = 537, + [556] = 537, + [557] = 557, + [558] = 558, + [559] = 541, + [560] = 546, + [561] = 539, [562] = 562, - [563] = 541, - [564] = 540, - [565] = 537, - [566] = 536, - [567] = 543, - [568] = 540, - [569] = 543, - [570] = 541, - [571] = 539, - [572] = 540, - [573] = 539, + [563] = 536, + [564] = 542, + [565] = 543, + [566] = 566, + [567] = 567, + [568] = 542, + [569] = 542, + [570] = 539, + [571] = 566, + [572] = 543, + [573] = 573, [574] = 574, - [575] = 539, - [576] = 536, - [577] = 537, - [578] = 536, - [579] = 537, - [580] = 541, - [581] = 581, - [582] = 581, - [583] = 583, - [584] = 584, - [585] = 537, - [586] = 543, - [587] = 541, - [588] = 588, - [589] = 550, - [590] = 543, - [591] = 591, - [592] = 592, - [593] = 536, - [594] = 539, - [595] = 540, - [596] = 550, - [597] = 548, - [598] = 540, - [599] = 599, + [575] = 575, + [576] = 541, + [577] = 543, + [578] = 578, + [579] = 547, + [580] = 539, + [581] = 536, + [582] = 539, + [583] = 542, + [584] = 546, + [585] = 536, + [586] = 541, + [587] = 542, + [588] = 547, + [589] = 543, + [590] = 547, + [591] = 546, + [592] = 537, + [593] = 562, + [594] = 541, + [595] = 543, + [596] = 547, + [597] = 542, + [598] = 536, + [599] = 539, [600] = 537, [601] = 537, - [602] = 602, - [603] = 536, - [604] = 604, - [605] = 539, - [606] = 536, - [607] = 539, - [608] = 541, - [609] = 550, - [610] = 548, - [611] = 540, - [612] = 550, - [613] = 548, - [614] = 541, - [615] = 540, - [616] = 543, - [617] = 543, - [618] = 548, - [619] = 602, - [620] = 543, - [621] = 548, - [622] = 541, + [602] = 547, + [603] = 603, + [604] = 547, + [605] = 543, + [606] = 539, + [607] = 536, + [608] = 542, + [609] = 546, + [610] = 541, + [611] = 546, + [612] = 537, + [613] = 546, + [614] = 614, + [615] = 539, + [616] = 546, + [617] = 536, + [618] = 543, + [619] = 542, + [620] = 547, + [621] = 541, + [622] = 622, [623] = 623, [624] = 624, [625] = 625, @@ -5660,265 +5667,265 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [628] = 628, [629] = 629, [630] = 630, - [631] = 629, + [631] = 631, [632] = 632, - [633] = 633, + [633] = 632, [634] = 634, - [635] = 625, + [635] = 635, [636] = 636, - [637] = 637, - [638] = 638, + [637] = 625, + [638] = 631, [639] = 639, - [640] = 640, - [641] = 641, - [642] = 625, + [640] = 623, + [641] = 636, + [642] = 642, [643] = 643, - [644] = 644, - [645] = 645, - [646] = 624, - [647] = 629, + [644] = 635, + [645] = 632, + [646] = 646, + [647] = 647, [648] = 648, [649] = 649, - [650] = 650, + [650] = 649, [651] = 651, [652] = 652, [653] = 653, - [654] = 654, - [655] = 655, - [656] = 627, + [654] = 630, + [655] = 630, + [656] = 656, [657] = 657, - [658] = 630, - [659] = 625, - [660] = 660, - [661] = 633, - [662] = 629, - [663] = 626, - [664] = 632, - [665] = 633, - [666] = 666, - [667] = 632, - [668] = 627, - [669] = 637, - [670] = 638, - [671] = 626, - [672] = 625, - [673] = 630, - [674] = 639, - [675] = 640, - [676] = 624, - [677] = 648, - [678] = 649, - [679] = 679, - [680] = 650, - [681] = 652, - [682] = 653, - [683] = 654, - [684] = 655, - [685] = 634, - [686] = 657, - [687] = 660, - [688] = 666, - [689] = 627, - [690] = 630, - [691] = 644, - [692] = 645, - [693] = 634, - [694] = 629, + [658] = 652, + [659] = 629, + [660] = 628, + [661] = 657, + [662] = 662, + [663] = 649, + [664] = 664, + [665] = 664, + [666] = 656, + [667] = 664, + [668] = 668, + [669] = 669, + [670] = 648, + [671] = 651, + [672] = 628, + [673] = 627, + [674] = 628, + [675] = 627, + [676] = 649, + [677] = 668, + [678] = 647, + [679] = 668, + [680] = 643, + [681] = 625, + [682] = 642, + [683] = 629, + [684] = 684, + [685] = 623, + [686] = 686, + [687] = 626, + [688] = 639, + [689] = 631, + [690] = 652, + [691] = 649, + [692] = 636, + [693] = 693, + [694] = 628, [695] = 695, - [696] = 623, - [697] = 695, - [698] = 623, - [699] = 629, - [700] = 627, - [701] = 630, - [702] = 645, - [703] = 643, - [704] = 644, + [696] = 627, + [697] = 697, + [698] = 656, + [699] = 699, + [700] = 635, + [701] = 693, + [702] = 664, + [703] = 630, + [704] = 630, [705] = 630, - [706] = 643, - [707] = 634, - [708] = 627, - [709] = 625, - [710] = 626, - [711] = 630, - [712] = 645, - [713] = 644, - [714] = 633, - [715] = 629, - [716] = 626, - [717] = 717, - [718] = 644, - [719] = 645, - [720] = 637, - [721] = 638, - [722] = 639, - [723] = 695, - [724] = 623, - [725] = 640, - [726] = 643, - [727] = 624, - [728] = 623, - [729] = 695, - [730] = 632, - [731] = 731, - [732] = 636, - [733] = 648, - [734] = 666, - [735] = 660, - [736] = 736, - [737] = 644, - [738] = 645, - [739] = 657, - [740] = 655, - [741] = 654, - [742] = 653, - [743] = 652, - [744] = 650, - [745] = 649, - [746] = 648, - [747] = 624, - [748] = 623, - [749] = 640, + [706] = 651, + [707] = 662, + [708] = 695, + [709] = 651, + [710] = 632, + [711] = 652, + [712] = 651, + [713] = 632, + [714] = 635, + [715] = 627, + [716] = 628, + [717] = 636, + [718] = 649, + [719] = 631, + [720] = 649, + [721] = 639, + [722] = 651, + [723] = 662, + [724] = 686, + [725] = 626, + [726] = 629, + [727] = 623, + [728] = 629, + [729] = 626, + [730] = 625, + [731] = 686, + [732] = 629, + [733] = 664, + [734] = 657, + [735] = 630, + [736] = 695, + [737] = 668, + [738] = 642, + [739] = 693, + [740] = 686, + [741] = 662, + [742] = 652, + [743] = 643, + [744] = 647, + [745] = 657, + [746] = 664, + [747] = 625, + [748] = 648, + [749] = 657, [750] = 639, - [751] = 638, - [752] = 752, - [753] = 637, - [754] = 629, - [755] = 755, - [756] = 633, - [757] = 630, - [758] = 626, - [759] = 633, - [760] = 626, - [761] = 649, - [762] = 762, - [763] = 650, + [751] = 626, + [752] = 657, + [753] = 629, + [754] = 630, + [755] = 664, + [756] = 647, + [757] = 656, + [758] = 635, + [759] = 625, + [760] = 662, + [761] = 648, + [762] = 627, + [763] = 647, [764] = 652, - [765] = 653, - [766] = 629, - [767] = 654, - [768] = 637, - [769] = 634, - [770] = 655, - [771] = 657, - [772] = 638, + [765] = 636, + [766] = 643, + [767] = 642, + [768] = 632, + [769] = 769, + [770] = 629, + [771] = 631, + [772] = 772, [773] = 639, - [774] = 774, - [775] = 660, - [776] = 627, - [777] = 640, - [778] = 666, - [779] = 627, - [780] = 633, - [781] = 624, - [782] = 629, - [783] = 634, - [784] = 695, - [785] = 648, - [786] = 649, - [787] = 623, - [788] = 629, - [789] = 666, - [790] = 630, - [791] = 650, - [792] = 652, - [793] = 653, - [794] = 654, - [795] = 629, - [796] = 625, - [797] = 797, - [798] = 643, - [799] = 644, - [800] = 645, - [801] = 643, - [802] = 655, - [803] = 637, - [804] = 638, - [805] = 623, - [806] = 695, - [807] = 666, - [808] = 657, - [809] = 660, - [810] = 660, - [811] = 625, - [812] = 626, - [813] = 633, - [814] = 666, - [815] = 660, - [816] = 657, - [817] = 655, - [818] = 637, - [819] = 638, - [820] = 657, - [821] = 655, - [822] = 654, - [823] = 653, - [824] = 652, - [825] = 637, - [826] = 644, - [827] = 645, - [828] = 650, - [829] = 639, - [830] = 830, - [831] = 649, - [832] = 640, - [833] = 624, - [834] = 648, - [835] = 649, - [836] = 654, - [837] = 650, - [838] = 652, - [839] = 648, - [840] = 624, - [841] = 653, - [842] = 641, - [843] = 654, - [844] = 655, - [845] = 639, - [846] = 640, - [847] = 657, - [848] = 660, - [849] = 653, - [850] = 666, - [851] = 627, - [852] = 640, - [853] = 652, - [854] = 650, - [855] = 649, - [856] = 648, - [857] = 639, - [858] = 638, - [859] = 695, - [860] = 695, - [861] = 695, - [862] = 624, - [863] = 648, - [864] = 640, - [865] = 643, - [866] = 866, - [867] = 639, - [868] = 638, - [869] = 634, - [870] = 629, - [871] = 643, - [872] = 643, - [873] = 637, + [774] = 656, + [775] = 662, + [776] = 631, + [777] = 636, + [778] = 635, + [779] = 632, + [780] = 780, + [781] = 651, + [782] = 630, + [783] = 627, + [784] = 639, + [785] = 627, + [786] = 646, + [787] = 646, + [788] = 628, + [789] = 693, + [790] = 628, + [791] = 623, + [792] = 668, + [793] = 686, + [794] = 642, + [795] = 643, + [796] = 668, + [797] = 662, + [798] = 626, + [799] = 656, + [800] = 664, + [801] = 647, + [802] = 652, + [803] = 626, + [804] = 695, + [805] = 695, + [806] = 648, + [807] = 693, + [808] = 651, + [809] = 632, + [810] = 810, + [811] = 693, + [812] = 693, + [813] = 668, + [814] = 648, + [815] = 656, + [816] = 626, + [817] = 664, + [818] = 686, + [819] = 657, + [820] = 662, + [821] = 652, + [822] = 695, + [823] = 647, + [824] = 657, + [825] = 656, + [826] = 643, + [827] = 625, + [828] = 635, + [829] = 829, + [830] = 648, + [831] = 831, + [832] = 648, + [833] = 636, + [834] = 664, + [835] = 629, + [836] = 631, + [837] = 643, + [838] = 642, + [839] = 623, + [840] = 639, + [841] = 639, + [842] = 631, + [843] = 843, + [844] = 636, + [845] = 845, + [846] = 623, + [847] = 664, + [848] = 699, + [849] = 635, + [850] = 652, + [851] = 829, + [852] = 642, + [853] = 664, + [854] = 635, + [855] = 657, + [856] = 662, + [857] = 656, + [858] = 639, + [859] = 686, + [860] = 648, + [861] = 647, + [862] = 643, + [863] = 695, + [864] = 642, + [865] = 649, + [866] = 623, + [867] = 636, + [868] = 642, + [869] = 693, + [870] = 664, + [871] = 695, + [872] = 695, + [873] = 647, [874] = 623, - [875] = 633, - [876] = 626, - [877] = 645, - [878] = 644, - [879] = 625, - [880] = 666, - [881] = 660, - [882] = 649, - [883] = 650, - [884] = 652, - [885] = 653, - [886] = 654, - [887] = 655, - [888] = 629, - [889] = 657, + [875] = 693, + [876] = 631, + [877] = 668, + [878] = 686, + [879] = 686, + [880] = 626, + [881] = 627, + [882] = 643, + [883] = 649, + [884] = 664, + [885] = 646, + [886] = 632, + [887] = 668, + [888] = 651, + [889] = 628, [890] = 890, [891] = 890, [892] = 890, @@ -5929,24 +5936,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [897] = 894, [898] = 898, [899] = 899, - [900] = 898, + [900] = 899, [901] = 898, [902] = 899, - [903] = 899, - [904] = 898, - [905] = 899, + [903] = 898, + [904] = 899, + [905] = 898, [906] = 906, [907] = 906, [908] = 906, [909] = 906, [910] = 910, - [911] = 910, - [912] = 912, - [913] = 912, - [914] = 912, + [911] = 911, + [912] = 910, + [913] = 911, + [914] = 911, [915] = 910, [916] = 910, - [917] = 912, + [917] = 911, [918] = 918, [919] = 918, [920] = 918, @@ -5959,226 +5966,226 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [927] = 922, [928] = 928, [929] = 922, - [930] = 928, - [931] = 922, + [930] = 922, + [931] = 924, [932] = 932, [933] = 932, [934] = 934, [935] = 934, - [936] = 934, - [937] = 937, - [938] = 937, - [939] = 937, - [940] = 940, - [941] = 924, - [942] = 937, - [943] = 937, - [944] = 934, - [945] = 937, - [946] = 937, + [936] = 936, + [937] = 936, + [938] = 928, + [939] = 936, + [940] = 934, + [941] = 936, + [942] = 936, + [943] = 936, + [944] = 944, + [945] = 936, + [946] = 934, [947] = 934, - [948] = 948, + [948] = 934, [949] = 949, - [950] = 934, - [951] = 948, + [950] = 950, + [951] = 934, [952] = 952, - [953] = 948, - [954] = 948, - [955] = 934, - [956] = 948, - [957] = 948, - [958] = 948, - [959] = 934, + [953] = 950, + [954] = 934, + [955] = 950, + [956] = 950, + [957] = 950, + [958] = 950, + [959] = 950, [960] = 960, - [961] = 928, - [962] = 960, - [963] = 963, + [961] = 961, + [962] = 962, + [963] = 961, [964] = 934, - [965] = 934, - [966] = 960, - [967] = 960, - [968] = 960, - [969] = 960, - [970] = 970, - [971] = 960, - [972] = 960, - [973] = 973, - [974] = 369, - [975] = 975, - [976] = 975, - [977] = 975, - [978] = 934, - [979] = 975, - [980] = 975, - [981] = 963, - [982] = 934, - [983] = 347, - [984] = 975, + [965] = 961, + [966] = 961, + [967] = 967, + [968] = 961, + [969] = 934, + [970] = 961, + [971] = 961, + [972] = 961, + [973] = 924, + [974] = 960, + [975] = 934, + [976] = 370, + [977] = 934, + [978] = 978, + [979] = 978, + [980] = 978, + [981] = 354, + [982] = 978, + [983] = 978, + [984] = 934, [985] = 934, - [986] = 934, - [987] = 975, - [988] = 975, - [989] = 350, - [990] = 369, - [991] = 934, - [992] = 360, - [993] = 993, - [994] = 993, - [995] = 993, - [996] = 993, - [997] = 347, - [998] = 369, - [999] = 347, - [1000] = 993, - [1001] = 993, - [1002] = 963, - [1003] = 934, - [1004] = 949, - [1005] = 335, - [1006] = 993, - [1007] = 993, - [1008] = 339, - [1009] = 993, - [1010] = 934, - [1011] = 1011, - [1012] = 347, - [1013] = 350, - [1014] = 1014, - [1015] = 1015, - [1016] = 339, - [1017] = 335, - [1018] = 347, - [1019] = 369, - [1020] = 369, - [1021] = 360, - [1022] = 350, - [1023] = 369, - [1024] = 338, + [986] = 978, + [987] = 978, + [988] = 978, + [989] = 989, + [990] = 371, + [991] = 354, + [992] = 960, + [993] = 934, + [994] = 989, + [995] = 934, + [996] = 996, + [997] = 989, + [998] = 989, + [999] = 354, + [1000] = 989, + [1001] = 372, + [1002] = 952, + [1003] = 370, + [1004] = 989, + [1005] = 370, + [1006] = 989, + [1007] = 989, + [1008] = 989, + [1009] = 335, + [1010] = 337, + [1011] = 934, + [1012] = 367, + [1013] = 371, + [1014] = 338, + [1015] = 354, + [1016] = 1016, + [1017] = 1016, + [1018] = 1018, + [1019] = 1019, + [1020] = 374, + [1021] = 375, + [1022] = 1022, + [1023] = 1023, + [1024] = 1024, [1025] = 1025, [1026] = 1026, - [1027] = 361, + [1027] = 1027, [1028] = 1028, - [1029] = 353, + [1029] = 1029, [1030] = 1030, - [1031] = 347, - [1032] = 360, - [1033] = 369, - [1034] = 347, - [1035] = 1035, - [1036] = 1011, - [1037] = 1037, + [1031] = 1031, + [1032] = 996, + [1033] = 1033, + [1034] = 354, + [1035] = 370, + [1036] = 372, + [1037] = 960, [1038] = 1038, - [1039] = 360, - [1040] = 1040, - [1041] = 368, - [1042] = 1042, - [1043] = 1043, - [1044] = 346, - [1045] = 350, + [1039] = 1039, + [1040] = 337, + [1041] = 335, + [1042] = 366, + [1043] = 371, + [1044] = 372, + [1045] = 1045, [1046] = 1046, - [1047] = 963, - [1048] = 1030, - [1049] = 1049, - [1050] = 1050, - [1051] = 1051, + [1047] = 370, + [1048] = 354, + [1049] = 372, + [1050] = 354, + [1051] = 370, [1052] = 1052, - [1053] = 1053, - [1054] = 1054, - [1055] = 1035, - [1056] = 1056, - [1057] = 368, - [1058] = 347, - [1059] = 1059, - [1060] = 1060, - [1061] = 1061, - [1062] = 346, - [1063] = 347, - [1064] = 347, - [1065] = 1040, - [1066] = 1053, - [1067] = 1049, - [1068] = 360, + [1053] = 370, + [1054] = 371, + [1055] = 1055, + [1056] = 367, + [1057] = 1038, + [1058] = 354, + [1059] = 1046, + [1060] = 1023, + [1061] = 338, + [1062] = 1019, + [1063] = 370, + [1064] = 367, + [1065] = 366, + [1066] = 1018, + [1067] = 1022, + [1068] = 1024, [1069] = 1069, - [1070] = 1043, + [1070] = 1070, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1038, - [1075] = 367, - [1076] = 1037, - [1077] = 376, - [1078] = 1078, - [1079] = 1079, + [1074] = 1074, + [1075] = 1075, + [1076] = 1076, + [1077] = 1077, + [1078] = 337, + [1079] = 335, [1080] = 1080, [1081] = 1081, [1082] = 1082, [1083] = 1083, - [1084] = 369, - [1085] = 1085, - [1086] = 1086, + [1084] = 1039, + [1085] = 370, + [1086] = 1045, [1087] = 1087, [1088] = 1088, - [1089] = 350, - [1090] = 366, + [1089] = 1089, + [1090] = 1090, [1091] = 1091, [1092] = 1092, - [1093] = 1093, - [1094] = 368, - [1095] = 1054, - [1096] = 348, - [1097] = 1051, - [1098] = 1050, - [1099] = 346, - [1100] = 1046, - [1101] = 1101, + [1093] = 371, + [1094] = 370, + [1095] = 372, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 371, + [1100] = 372, + [1101] = 371, [1102] = 1102, [1103] = 1103, [1104] = 1104, - [1105] = 1105, - [1106] = 353, + [1105] = 372, + [1106] = 1106, [1107] = 1107, [1108] = 1108, - [1109] = 361, + [1109] = 1109, [1110] = 1110, [1111] = 1111, - [1112] = 338, + [1112] = 1112, [1113] = 1113, [1114] = 1114, [1115] = 1115, [1116] = 1116, [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, + [1118] = 369, + [1119] = 354, + [1120] = 354, [1121] = 1121, [1122] = 1122, [1123] = 1123, - [1124] = 347, + [1124] = 1124, [1125] = 1125, - [1126] = 369, + [1126] = 1126, [1127] = 1127, [1128] = 1128, - [1129] = 335, - [1130] = 339, + [1129] = 1129, + [1130] = 1130, [1131] = 1131, [1132] = 1132, [1133] = 1133, [1134] = 1134, [1135] = 1135, - [1136] = 360, - [1137] = 1137, - [1138] = 369, - [1139] = 1139, - [1140] = 350, + [1136] = 1136, + [1137] = 366, + [1138] = 374, + [1139] = 375, + [1140] = 1140, [1141] = 1141, [1142] = 1142, [1143] = 1143, - [1144] = 360, + [1144] = 1144, [1145] = 1145, - [1146] = 350, - [1147] = 360, + [1146] = 1146, + [1147] = 1147, [1148] = 1148, - [1149] = 350, + [1149] = 1149, [1150] = 1150, [1151] = 1151, [1152] = 1152, @@ -6188,57 +6195,57 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1156] = 1156, [1157] = 1157, [1158] = 1158, - [1159] = 1159, + [1159] = 1033, [1160] = 1160, [1161] = 1161, [1162] = 1162, [1163] = 1163, [1164] = 1164, - [1165] = 1014, + [1165] = 1165, [1166] = 1166, [1167] = 1167, - [1168] = 1028, + [1168] = 1168, [1169] = 1169, - [1170] = 1026, - [1171] = 1025, + [1170] = 1170, + [1171] = 1171, [1172] = 1172, [1173] = 1173, [1174] = 1174, [1175] = 1175, [1176] = 1176, [1177] = 1177, - [1178] = 1042, - [1179] = 1011, + [1178] = 1178, + [1179] = 1179, [1180] = 1180, [1181] = 1181, [1182] = 1182, - [1183] = 1183, + [1183] = 996, [1184] = 1184, [1185] = 1185, - [1186] = 1186, + [1186] = 371, [1187] = 1187, [1188] = 1188, [1189] = 1189, - [1190] = 1190, - [1191] = 1191, + [1190] = 1052, + [1191] = 353, [1192] = 1192, - [1193] = 1193, - [1194] = 1194, + [1193] = 377, + [1194] = 1025, [1195] = 1195, - [1196] = 1196, - [1197] = 1197, + [1196] = 370, + [1197] = 372, [1198] = 1198, [1199] = 1199, - [1200] = 1200, + [1200] = 373, [1201] = 1201, [1202] = 1202, [1203] = 1203, [1204] = 1204, [1205] = 1205, - [1206] = 1206, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, + [1206] = 1031, + [1207] = 1030, + [1208] = 1029, + [1209] = 354, [1210] = 1210, [1211] = 1211, [1212] = 1212, @@ -6246,1502 +6253,1502 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1214] = 1214, [1215] = 1215, [1216] = 1216, - [1217] = 1217, - [1218] = 1218, - [1219] = 1219, + [1217] = 1028, + [1218] = 1027, + [1219] = 1026, [1220] = 1220, [1221] = 1221, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 1227, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1234, - [1235] = 1235, - [1236] = 1052, - [1237] = 1237, - [1238] = 1238, - [1239] = 1239, - [1240] = 1240, - [1241] = 1241, - [1242] = 369, - [1243] = 1243, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 1247, - [1248] = 1015, - [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, - [1257] = 1257, - [1258] = 1258, - [1259] = 350, - [1260] = 1180, - [1261] = 1069, - [1262] = 1059, - [1263] = 1087, - [1264] = 1264, - [1265] = 1071, - [1266] = 1060, - [1267] = 350, - [1268] = 1102, - [1269] = 1083, - [1270] = 1105, - [1271] = 1086, - [1272] = 1110, - [1273] = 1030, - [1274] = 1113, - [1275] = 1011, - [1276] = 1114, - [1277] = 1115, + [1222] = 1115, + [1223] = 1111, + [1224] = 1112, + [1225] = 1113, + [1226] = 1114, + [1227] = 1055, + [1228] = 1117, + [1229] = 1016, + [1230] = 1121, + [1231] = 1122, + [1232] = 1123, + [1233] = 1124, + [1234] = 1125, + [1235] = 1126, + [1236] = 1127, + [1237] = 1128, + [1238] = 1129, + [1239] = 1130, + [1240] = 1131, + [1241] = 1132, + [1242] = 1133, + [1243] = 1107, + [1244] = 354, + [1245] = 1135, + [1246] = 1136, + [1247] = 1140, + [1248] = 1141, + [1249] = 1142, + [1250] = 1143, + [1251] = 1144, + [1252] = 1145, + [1253] = 1146, + [1254] = 1147, + [1255] = 1148, + [1256] = 1149, + [1257] = 1150, + [1258] = 1151, + [1259] = 1152, + [1260] = 1153, + [1261] = 1088, + [1262] = 1177, + [1263] = 1155, + [1264] = 1156, + [1265] = 1157, + [1266] = 1158, + [1267] = 1110, + [1268] = 1160, + [1269] = 1161, + [1270] = 1162, + [1271] = 1163, + [1272] = 1164, + [1273] = 1165, + [1274] = 1109, + [1275] = 1108, + [1276] = 1106, + [1277] = 1104, [1278] = 1103, - [1279] = 1104, - [1280] = 1121, - [1281] = 1123, - [1282] = 1128, - [1283] = 1101, - [1284] = 1107, - [1285] = 1091, - [1286] = 1156, - [1287] = 1108, - [1288] = 1132, - [1289] = 1111, - [1290] = 1072, - [1291] = 1078, - [1292] = 1037, - [1293] = 1038, - [1294] = 1120, - [1295] = 1122, - [1296] = 1134, - [1297] = 360, - [1298] = 1079, - [1299] = 1081, - [1300] = 1088, - [1301] = 1137, - [1302] = 1092, - [1303] = 1139, - [1304] = 1141, - [1305] = 1142, - [1306] = 1093, - [1307] = 1143, - [1308] = 1145, - [1309] = 1148, - [1310] = 1150, - [1311] = 1151, - [1312] = 1061, - [1313] = 1152, - [1314] = 1153, - [1315] = 1155, - [1316] = 1056, - [1317] = 1049, - [1318] = 1080, - [1319] = 1157, - [1320] = 1082, - [1321] = 1085, - [1322] = 1158, - [1323] = 1054, - [1324] = 339, - [1325] = 335, - [1326] = 1135, - [1327] = 1051, - [1328] = 1159, - [1329] = 1050, - [1330] = 1169, - [1331] = 347, - [1332] = 1042, - [1333] = 1173, - [1334] = 1014, - [1335] = 1174, - [1336] = 1154, - [1337] = 1175, - [1338] = 1166, - [1339] = 1181, - [1340] = 1182, - [1341] = 1184, - [1342] = 1217, - [1343] = 1229, - [1344] = 1237, - [1345] = 1239, - [1346] = 1167, - [1347] = 1240, - [1348] = 1125, - [1349] = 1177, - [1350] = 1030, - [1351] = 1119, - [1352] = 1127, - [1353] = 1244, - [1354] = 1118, - [1355] = 1117, - [1356] = 1116, - [1357] = 1133, - [1358] = 1160, - [1359] = 1161, - [1360] = 1162, - [1361] = 1046, - [1362] = 346, - [1363] = 1183, - [1364] = 338, - [1365] = 1186, - [1366] = 1193, - [1367] = 1194, - [1368] = 1035, - [1369] = 1196, - [1370] = 361, - [1371] = 1197, - [1372] = 353, - [1373] = 1163, - [1374] = 1164, - [1375] = 1255, - [1376] = 1028, - [1377] = 1026, - [1378] = 1025, - [1379] = 1040, - [1380] = 1015, - [1381] = 1198, - [1382] = 1199, - [1383] = 369, - [1384] = 1204, - [1385] = 1205, - [1386] = 1073, - [1387] = 1206, - [1388] = 1213, - [1389] = 1215, - [1390] = 1220, - [1391] = 1221, - [1392] = 1233, - [1393] = 360, - [1394] = 366, - [1395] = 348, - [1396] = 347, - [1397] = 1243, - [1398] = 347, - [1399] = 1250, - [1400] = 350, - [1401] = 1131, - [1402] = 1258, - [1403] = 369, - [1404] = 1211, - [1405] = 1200, - [1406] = 1257, - [1407] = 360, - [1408] = 1254, - [1409] = 1252, - [1410] = 1256, - [1411] = 368, - [1412] = 369, - [1413] = 350, - [1414] = 1208, - [1415] = 1218, - [1416] = 1209, - [1417] = 1210, - [1418] = 1212, - [1419] = 360, - [1420] = 1216, - [1421] = 1043, - [1422] = 1249, - [1423] = 1214, - [1424] = 1253, - [1425] = 1172, - [1426] = 1247, - [1427] = 1176, - [1428] = 1246, - [1429] = 1225, - [1430] = 1245, - [1431] = 1185, - [1432] = 1187, - [1433] = 1238, - [1434] = 1230, - [1435] = 1224, - [1436] = 1223, - [1437] = 1222, - [1438] = 1188, - [1439] = 1189, - [1440] = 1219, - [1441] = 1190, - [1442] = 1226, - [1443] = 1227, - [1444] = 376, - [1445] = 1191, - [1446] = 1235, - [1447] = 1228, - [1448] = 346, - [1449] = 1231, - [1450] = 1232, - [1451] = 1234, - [1452] = 1241, - [1453] = 1192, - [1454] = 1195, - [1455] = 1201, - [1456] = 1053, - [1457] = 367, - [1458] = 1202, - [1459] = 1052, - [1460] = 1203, - [1461] = 368, - [1462] = 1251, - [1463] = 1207, - [1464] = 1251, - [1465] = 1199, - [1466] = 1204, - [1467] = 1205, - [1468] = 1206, - [1469] = 1213, - [1470] = 1215, - [1471] = 1220, - [1472] = 1221, - [1473] = 1233, - [1474] = 1155, - [1475] = 1153, - [1476] = 1151, - [1477] = 1243, - [1478] = 1035, - [1479] = 1250, - [1480] = 1200, - [1481] = 1059, - [1482] = 1087, - [1483] = 1071, - [1484] = 1256, - [1485] = 1253, - [1486] = 1014, - [1487] = 1079, - [1488] = 350, - [1489] = 1241, - [1490] = 360, - [1491] = 1102, - [1492] = 1105, - [1493] = 1125, - [1494] = 1235, - [1495] = 369, - [1496] = 1234, - [1497] = 1232, - [1498] = 346, - [1499] = 350, - [1500] = 1231, - [1501] = 1228, - [1502] = 1211, - [1503] = 368, - [1504] = 360, - [1505] = 1132, - [1506] = 1227, - [1507] = 1226, - [1508] = 1225, - [1509] = 1101, - [1510] = 1128, - [1511] = 1123, - [1512] = 1216, - [1513] = 1121, - [1514] = 1115, - [1515] = 1212, - [1516] = 1210, - [1517] = 1209, - [1518] = 1119, - [1519] = 1114, - [1520] = 1113, - [1521] = 1110, - [1522] = 1028, - [1523] = 1026, - [1524] = 1025, - [1525] = 1196, - [1526] = 1208, - [1527] = 1060, - [1528] = 1198, - [1529] = 1197, - [1530] = 1207, - [1531] = 1186, - [1532] = 1194, - [1533] = 1193, - [1534] = 1046, - [1535] = 1183, - [1536] = 1180, - [1537] = 1177, - [1538] = 1203, - [1539] = 1167, - [1540] = 1166, - [1541] = 1154, - [1542] = 1056, - [1543] = 1135, - [1544] = 1214, - [1545] = 1134, - [1546] = 1122, - [1547] = 1120, - [1548] = 1202, - [1549] = 1201, - [1550] = 1195, - [1551] = 1192, - [1552] = 1156, - [1553] = 1111, - [1554] = 1042, - [1555] = 1052, - [1556] = 1191, - [1557] = 366, - [1558] = 1190, - [1559] = 1189, - [1560] = 376, - [1561] = 367, - [1562] = 1188, - [1563] = 1187, - [1564] = 1185, - [1565] = 1108, - [1566] = 1107, - [1567] = 350, - [1568] = 1072, - [1569] = 1078, - [1570] = 1118, - [1571] = 1137, - [1572] = 1049, - [1573] = 1139, - [1574] = 1141, - [1575] = 360, - [1576] = 348, - [1577] = 1142, - [1578] = 1143, - [1579] = 1104, - [1580] = 1103, - [1581] = 1086, - [1582] = 1145, - [1583] = 1148, - [1584] = 1083, - [1585] = 1218, - [1586] = 1088, - [1587] = 1092, - [1588] = 1150, - [1589] = 1219, - [1590] = 347, - [1591] = 1093, - [1592] = 1176, - [1593] = 1172, - [1594] = 1237, - [1595] = 1152, - [1596] = 1157, - [1597] = 1164, - [1598] = 1163, - [1599] = 1239, - [1600] = 1162, - [1601] = 346, - [1602] = 1161, - [1603] = 353, - [1604] = 361, - [1605] = 1158, - [1606] = 1160, - [1607] = 1133, - [1608] = 1127, - [1609] = 368, - [1610] = 338, - [1611] = 1159, - [1612] = 1169, - [1613] = 1173, - [1614] = 1174, - [1615] = 1175, - [1616] = 1181, - [1617] = 1116, - [1618] = 1182, - [1619] = 1184, - [1620] = 1217, - [1621] = 1229, - [1622] = 1240, - [1623] = 1244, - [1624] = 1054, - [1625] = 1069, - [1626] = 1255, - [1627] = 1085, - [1628] = 1082, - [1629] = 1080, - [1630] = 1073, - [1631] = 1131, - [1632] = 1258, - [1633] = 1257, - [1634] = 1117, - [1635] = 1254, - [1636] = 1252, - [1637] = 1249, - [1638] = 1247, - [1639] = 1246, - [1640] = 1051, - [1641] = 1245, - [1642] = 1037, - [1643] = 1091, - [1644] = 1061, - [1645] = 1238, - [1646] = 1230, - [1647] = 1224, - [1648] = 1223, - [1649] = 1222, - [1650] = 1038, - [1651] = 1050, - [1652] = 369, - [1653] = 1043, - [1654] = 1053, - [1655] = 1015, - [1656] = 1040, - [1657] = 347, - [1658] = 1081, - [1659] = 1212, - [1660] = 1237, - [1661] = 376, - [1662] = 1093, - [1663] = 1083, - [1664] = 1086, - [1665] = 1103, - [1666] = 1104, - [1667] = 1078, - [1668] = 1072, - [1669] = 1219, - [1670] = 1088, - [1671] = 1218, - [1672] = 1205, - [1673] = 360, - [1674] = 1116, - [1675] = 1107, - [1676] = 1117, - [1677] = 1108, - [1678] = 1111, - [1679] = 1156, - [1680] = 1091, - [1681] = 1118, - [1682] = 1120, - [1683] = 1069, - [1684] = 1122, - [1685] = 350, - [1686] = 1134, - [1687] = 1214, - [1688] = 1256, - [1689] = 1253, - [1690] = 1251, - [1691] = 1061, - [1692] = 1135, - [1693] = 1154, - [1694] = 1166, - [1695] = 1167, - [1696] = 1177, - [1697] = 1180, - [1698] = 1183, - [1699] = 1186, - [1700] = 1238, - [1701] = 1153, - [1702] = 1155, - [1703] = 1056, - [1704] = 1193, - [1705] = 1230, - [1706] = 1241, - [1707] = 1194, - [1708] = 1196, - [1709] = 1224, - [1710] = 1223, - [1711] = 1197, - [1712] = 1198, - [1713] = 1102, - [1714] = 1199, - [1715] = 1204, - [1716] = 1222, - [1717] = 1105, - [1718] = 1157, - [1719] = 1176, - [1720] = 1164, - [1721] = 1163, - [1722] = 1206, - [1723] = 1162, - [1724] = 1161, - [1725] = 1213, - [1726] = 1215, - [1727] = 1172, - [1728] = 1152, - [1729] = 1220, - [1730] = 1255, - [1731] = 1221, - [1732] = 1233, - [1733] = 1243, - [1734] = 1158, - [1735] = 1250, - [1736] = 1160, - [1737] = 1133, - [1738] = 1200, - [1739] = 1085, - [1740] = 1082, - [1741] = 1080, - [1742] = 1059, - [1743] = 1079, - [1744] = 1087, - [1745] = 1073, - [1746] = 1081, - [1747] = 1071, - [1748] = 1151, - [1749] = 1131, - [1750] = 1264, - [1751] = 1092, - [1752] = 1150, - [1753] = 1148, - [1754] = 1258, - [1755] = 1119, - [1756] = 1145, - [1757] = 346, - [1758] = 1127, - [1759] = 1159, - [1760] = 1143, - [1761] = 1169, - [1762] = 1257, - [1763] = 1060, - [1764] = 1142, - [1765] = 1173, - [1766] = 1174, - [1767] = 1175, - [1768] = 1141, - [1769] = 1139, - [1770] = 1137, - [1771] = 1254, - [1772] = 1252, - [1773] = 366, - [1774] = 1185, - [1775] = 1187, - [1776] = 1181, - [1777] = 1188, - [1778] = 1182, - [1779] = 1249, - [1780] = 1189, - [1781] = 1190, - [1782] = 1191, - [1783] = 1184, - [1784] = 1192, - [1785] = 1217, - [1786] = 1195, - [1787] = 1247, - [1788] = 1201, - [1789] = 1229, - [1790] = 1202, - [1791] = 1203, - [1792] = 367, - [1793] = 1239, - [1794] = 1207, - [1795] = 1240, - [1796] = 1208, - [1797] = 1209, - [1798] = 1210, - [1799] = 1244, - [1800] = 1232, - [1801] = 1216, - [1802] = 1225, - [1803] = 1226, - [1804] = 1227, - [1805] = 1132, - [1806] = 1211, - [1807] = 1228, - [1808] = 1231, - [1809] = 1246, - [1810] = 1234, - [1811] = 1235, - [1812] = 1125, - [1813] = 1101, - [1814] = 1128, - [1815] = 1123, - [1816] = 1121, - [1817] = 368, - [1818] = 1115, - [1819] = 1114, - [1820] = 1113, - [1821] = 1110, - [1822] = 348, - [1823] = 1245, + [1279] = 1102, + [1280] = 372, + [1281] = 1166, + [1282] = 1167, + [1283] = 1168, + [1284] = 1169, + [1285] = 1098, + [1286] = 1097, + [1287] = 1096, + [1288] = 1090, + [1289] = 366, + [1290] = 1211, + [1291] = 354, + [1292] = 1045, + [1293] = 1171, + [1294] = 1039, + [1295] = 1172, + [1296] = 1173, + [1297] = 372, + [1298] = 371, + [1299] = 1076, + [1300] = 1073, + [1301] = 1072, + [1302] = 1174, + [1303] = 1175, + [1304] = 1071, + [1305] = 1070, + [1306] = 338, + [1307] = 372, + [1308] = 371, + [1309] = 1176, + [1310] = 1089, + [1311] = 370, + [1312] = 1179, + [1313] = 1180, + [1314] = 371, + [1315] = 1182, + [1316] = 374, + [1317] = 1189, + [1318] = 1052, + [1319] = 375, + [1320] = 1202, + [1321] = 1203, + [1322] = 1204, + [1323] = 1031, + [1324] = 1030, + [1325] = 1029, + [1326] = 1198, + [1327] = 1199, + [1328] = 1201, + [1329] = 1212, + [1330] = 1213, + [1331] = 1214, + [1332] = 1215, + [1333] = 1028, + [1334] = 1027, + [1335] = 1026, + [1336] = 1205, + [1337] = 1210, + [1338] = 372, + [1339] = 1192, + [1340] = 1221, + [1341] = 1116, + [1342] = 1220, + [1343] = 1195, + [1344] = 1216, + [1345] = 1025, + [1346] = 371, + [1347] = 1188, + [1348] = 1187, + [1349] = 370, + [1350] = 1185, + [1351] = 1184, + [1352] = 1181, + [1353] = 1178, + [1354] = 1170, + [1355] = 1154, + [1356] = 1134, + [1357] = 1092, + [1358] = 1091, + [1359] = 369, + [1360] = 1087, + [1361] = 373, + [1362] = 354, + [1363] = 1083, + [1364] = 366, + [1365] = 1082, + [1366] = 1081, + [1367] = 367, + [1368] = 1080, + [1369] = 1077, + [1370] = 1075, + [1371] = 1074, + [1372] = 370, + [1373] = 1069, + [1374] = 1024, + [1375] = 1022, + [1376] = 1376, + [1377] = 1033, + [1378] = 1016, + [1379] = 996, + [1380] = 1018, + [1381] = 1019, + [1382] = 1023, + [1383] = 1046, + [1384] = 1038, + [1385] = 377, + [1386] = 335, + [1387] = 353, + [1388] = 367, + [1389] = 337, + [1390] = 1030, + [1391] = 1214, + [1392] = 1126, + [1393] = 1127, + [1394] = 1128, + [1395] = 1122, + [1396] = 1125, + [1397] = 1031, + [1398] = 1029, + [1399] = 1169, + [1400] = 1129, + [1401] = 1168, + [1402] = 1121, + [1403] = 1117, + [1404] = 1204, + [1405] = 1203, + [1406] = 1202, + [1407] = 1167, + [1408] = 1018, + [1409] = 1055, + [1410] = 1115, + [1411] = 1114, + [1412] = 1046, + [1413] = 1038, + [1414] = 1113, + [1415] = 1112, + [1416] = 1111, + [1417] = 1110, + [1418] = 1109, + [1419] = 1108, + [1420] = 1211, + [1421] = 1023, + [1422] = 1189, + [1423] = 1106, + [1424] = 1104, + [1425] = 1103, + [1426] = 1102, + [1427] = 354, + [1428] = 1130, + [1429] = 1098, + [1430] = 1131, + [1431] = 1132, + [1432] = 1133, + [1433] = 1107, + [1434] = 1198, + [1435] = 1199, + [1436] = 1201, + [1437] = 1076, + [1438] = 374, + [1439] = 1024, + [1440] = 375, + [1441] = 1135, + [1442] = 1212, + [1443] = 1173, + [1444] = 1213, + [1445] = 1184, + [1446] = 1087, + [1447] = 1215, + [1448] = 366, + [1449] = 1185, + [1450] = 1136, + [1451] = 1143, + [1452] = 1089, + [1453] = 1177, + [1454] = 1176, + [1455] = 1172, + [1456] = 1171, + [1457] = 1033, + [1458] = 1091, + [1459] = 1039, + [1460] = 1166, + [1461] = 1090, + [1462] = 1022, + [1463] = 1092, + [1464] = 1073, + [1465] = 1205, + [1466] = 1210, + [1467] = 1145, + [1468] = 1025, + [1469] = 1163, + [1470] = 1162, + [1471] = 1161, + [1472] = 1160, + [1473] = 1052, + [1474] = 1158, + [1475] = 1157, + [1476] = 1156, + [1477] = 1155, + [1478] = 372, + [1479] = 1144, + [1480] = 1187, + [1481] = 1188, + [1482] = 371, + [1483] = 1142, + [1484] = 1141, + [1485] = 1140, + [1486] = 370, + [1487] = 1146, + [1488] = 1147, + [1489] = 1148, + [1490] = 1149, + [1491] = 1150, + [1492] = 366, + [1493] = 354, + [1494] = 372, + [1495] = 1124, + [1496] = 1134, + [1497] = 1182, + [1498] = 1097, + [1499] = 1123, + [1500] = 367, + [1501] = 1083, + [1502] = 1028, + [1503] = 371, + [1504] = 1072, + [1505] = 1027, + [1506] = 1069, + [1507] = 1026, + [1508] = 338, + [1509] = 1151, + [1510] = 1045, + [1511] = 1154, + [1512] = 1082, + [1513] = 1152, + [1514] = 1180, + [1515] = 1081, + [1516] = 1174, + [1517] = 1175, + [1518] = 1080, + [1519] = 1077, + [1520] = 1192, + [1521] = 1153, + [1522] = 1088, + [1523] = 1221, + [1524] = 1075, + [1525] = 1074, + [1526] = 1170, + [1527] = 369, + [1528] = 353, + [1529] = 377, + [1530] = 372, + [1531] = 1096, + [1532] = 1181, + [1533] = 371, + [1534] = 373, + [1535] = 1178, + [1536] = 1116, + [1537] = 1071, + [1538] = 1179, + [1539] = 367, + [1540] = 1220, + [1541] = 370, + [1542] = 1195, + [1543] = 1216, + [1544] = 1164, + [1545] = 1019, + [1546] = 1165, + [1547] = 1070, + [1548] = 1179, + [1549] = 1091, + [1550] = 1074, + [1551] = 1113, + [1552] = 1195, + [1553] = 372, + [1554] = 1114, + [1555] = 1109, + [1556] = 367, + [1557] = 1168, + [1558] = 1144, + [1559] = 353, + [1560] = 1143, + [1561] = 1216, + [1562] = 1163, + [1563] = 366, + [1564] = 1115, + [1565] = 1169, + [1566] = 1073, + [1567] = 1199, + [1568] = 1112, + [1569] = 1184, + [1570] = 1201, + [1571] = 1185, + [1572] = 1164, + [1573] = 1165, + [1574] = 1180, + [1575] = 1145, + [1576] = 1146, + [1577] = 377, + [1578] = 1147, + [1579] = 1075, + [1580] = 1155, + [1581] = 1156, + [1582] = 1176, + [1583] = 1077, + [1584] = 373, + [1585] = 1135, + [1586] = 1080, + [1587] = 1096, + [1588] = 1177, + [1589] = 1162, + [1590] = 1157, + [1591] = 1148, + [1592] = 1158, + [1593] = 1072, + [1594] = 1220, + [1595] = 1172, + [1596] = 1055, + [1597] = 1205, + [1598] = 1202, + [1599] = 1188, + [1600] = 1087, + [1601] = 1081, + [1602] = 1070, + [1603] = 1171, + [1604] = 1376, + [1605] = 1069, + [1606] = 1210, + [1607] = 1076, + [1608] = 1212, + [1609] = 1116, + [1610] = 1211, + [1611] = 1149, + [1612] = 1108, + [1613] = 1203, + [1614] = 1204, + [1615] = 1150, + [1616] = 1187, + [1617] = 1117, + [1618] = 371, + [1619] = 1213, + [1620] = 1151, + [1621] = 1214, + [1622] = 1152, + [1623] = 1182, + [1624] = 1215, + [1625] = 1167, + [1626] = 1110, + [1627] = 1121, + [1628] = 1097, + [1629] = 1122, + [1630] = 1173, + [1631] = 1123, + [1632] = 1089, + [1633] = 1124, + [1634] = 1111, + [1635] = 1136, + [1636] = 1125, + [1637] = 1166, + [1638] = 1126, + [1639] = 1198, + [1640] = 1127, + [1641] = 1160, + [1642] = 1221, + [1643] = 1175, + [1644] = 1189, + [1645] = 1128, + [1646] = 1090, + [1647] = 1129, + [1648] = 1088, + [1649] = 1174, + [1650] = 1106, + [1651] = 1104, + [1652] = 1103, + [1653] = 1102, + [1654] = 1092, + [1655] = 1134, + [1656] = 1161, + [1657] = 1098, + [1658] = 1083, + [1659] = 1130, + [1660] = 1071, + [1661] = 1131, + [1662] = 1154, + [1663] = 1132, + [1664] = 369, + [1665] = 1170, + [1666] = 1142, + [1667] = 1141, + [1668] = 1140, + [1669] = 1178, + [1670] = 1181, + [1671] = 1153, + [1672] = 1082, + [1673] = 1133, + [1674] = 1107, + [1675] = 1192, + [1676] = 1676, + [1677] = 1677, + [1678] = 1678, + [1679] = 1679, + [1680] = 1045, + [1681] = 1681, + [1682] = 1682, + [1683] = 1683, + [1684] = 1684, + [1685] = 1685, + [1686] = 1039, + [1687] = 1687, + [1688] = 1688, + [1689] = 337, + [1690] = 338, + [1691] = 335, + [1692] = 375, + [1693] = 336, + [1694] = 353, + [1695] = 377, + [1696] = 374, + [1697] = 338, + [1698] = 335, + [1699] = 337, + [1700] = 1700, + [1701] = 1701, + [1702] = 369, + [1703] = 354, + [1704] = 353, + [1705] = 357, + [1706] = 368, + [1707] = 1700, + [1708] = 376, + [1709] = 349, + [1710] = 377, + [1711] = 371, + [1712] = 336, + [1713] = 366, + [1714] = 372, + [1715] = 1700, + [1716] = 1700, + [1717] = 348, + [1718] = 1700, + [1719] = 347, + [1720] = 1700, + [1721] = 1701, + [1722] = 1701, + [1723] = 1700, + [1724] = 1700, + [1725] = 373, + [1726] = 1701, + [1727] = 1700, + [1728] = 1701, + [1729] = 360, + [1730] = 374, + [1731] = 375, + [1732] = 1700, + [1733] = 363, + [1734] = 352, + [1735] = 1700, + [1736] = 1700, + [1737] = 364, + [1738] = 370, + [1739] = 355, + [1740] = 367, + [1741] = 362, + [1742] = 365, + [1743] = 1700, + [1744] = 367, + [1745] = 373, + [1746] = 1746, + [1747] = 1746, + [1748] = 354, + [1749] = 365, + [1750] = 364, + [1751] = 1751, + [1752] = 1746, + [1753] = 1751, + [1754] = 348, + [1755] = 349, + [1756] = 360, + [1757] = 370, + [1758] = 352, + [1759] = 1751, + [1760] = 363, + [1761] = 347, + [1762] = 355, + [1763] = 369, + [1764] = 1751, + [1765] = 366, + [1766] = 368, + [1767] = 362, + [1768] = 376, + [1769] = 371, + [1770] = 1751, + [1771] = 372, + [1772] = 1746, + [1773] = 357, + [1774] = 1746, + [1775] = 1775, + [1776] = 1775, + [1777] = 1775, + [1778] = 1778, + [1779] = 1779, + [1780] = 1780, + [1781] = 1781, + [1782] = 1782, + [1783] = 1783, + [1784] = 1780, + [1785] = 1785, + [1786] = 1786, + [1787] = 1785, + [1788] = 1782, + [1789] = 1782, + [1790] = 1779, + [1791] = 1781, + [1792] = 1786, + [1793] = 1779, + [1794] = 1786, + [1795] = 1780, + [1796] = 1782, + [1797] = 1779, + [1798] = 1785, + [1799] = 1785, + [1800] = 1785, + [1801] = 1780, + [1802] = 1780, + [1803] = 1780, + [1804] = 1782, + [1805] = 1779, + [1806] = 1806, + [1807] = 1806, + [1808] = 1806, + [1809] = 1806, + [1810] = 1806, + [1811] = 1786, + [1812] = 1806, + [1813] = 1786, + [1814] = 1786, + [1815] = 1806, + [1816] = 1779, + [1817] = 1782, + [1818] = 1780, + [1819] = 1779, + [1820] = 1785, + [1821] = 1785, + [1822] = 1782, + [1823] = 1786, [1824] = 1824, - [1825] = 1825, - [1826] = 1826, - [1827] = 1827, - [1828] = 1014, + [1825] = 1824, + [1826] = 1824, + [1827] = 1824, + [1828] = 1824, [1829] = 1829, - [1830] = 1830, - [1831] = 1042, + [1830] = 1824, + [1831] = 1829, [1832] = 1832, [1833] = 1833, [1834] = 1834, - [1835] = 1835, - [1836] = 1836, - [1837] = 338, - [1838] = 339, - [1839] = 335, - [1840] = 361, - [1841] = 334, - [1842] = 338, - [1843] = 353, - [1844] = 376, - [1845] = 367, - [1846] = 339, - [1847] = 335, - [1848] = 1848, - [1849] = 1849, - [1850] = 1849, - [1851] = 359, - [1852] = 1848, - [1853] = 372, - [1854] = 370, - [1855] = 354, - [1856] = 366, - [1857] = 349, - [1858] = 1849, - [1859] = 1849, - [1860] = 1849, - [1861] = 361, - [1862] = 348, - [1863] = 1849, - [1864] = 353, - [1865] = 346, - [1866] = 1849, - [1867] = 1848, - [1868] = 367, - [1869] = 376, - [1870] = 351, - [1871] = 1849, - [1872] = 350, - [1873] = 360, - [1874] = 357, - [1875] = 352, - [1876] = 1849, - [1877] = 355, - [1878] = 1849, - [1879] = 1848, - [1880] = 368, - [1881] = 371, - [1882] = 377, - [1883] = 365, - [1884] = 1848, - [1885] = 334, - [1886] = 347, - [1887] = 1849, - [1888] = 1849, - [1889] = 363, - [1890] = 1849, - [1891] = 369, - [1892] = 377, - [1893] = 365, - [1894] = 347, - [1895] = 1895, - [1896] = 366, - [1897] = 1897, - [1898] = 1897, - [1899] = 346, - [1900] = 360, - [1901] = 369, - [1902] = 1895, - [1903] = 1895, - [1904] = 350, - [1905] = 1897, - [1906] = 371, - [1907] = 1895, - [1908] = 349, - [1909] = 372, - [1910] = 363, - [1911] = 1897, - [1912] = 352, - [1913] = 357, - [1914] = 355, - [1915] = 351, - [1916] = 354, - [1917] = 368, - [1918] = 370, - [1919] = 1897, - [1920] = 1895, - [1921] = 359, - [1922] = 348, - [1923] = 1923, - [1924] = 1923, - [1925] = 1923, - [1926] = 1926, - [1927] = 1927, + [1835] = 1834, + [1836] = 1834, + [1837] = 1834, + [1838] = 1834, + [1839] = 1833, + [1840] = 1833, + [1841] = 1833, + [1842] = 1833, + [1843] = 1843, + [1844] = 1844, + [1845] = 1845, + [1846] = 1845, + [1847] = 1843, + [1848] = 1845, + [1849] = 1845, + [1850] = 1850, + [1851] = 1845, + [1852] = 1844, + [1853] = 1850, + [1854] = 1850, + [1855] = 1844, + [1856] = 1843, + [1857] = 1843, + [1858] = 1844, + [1859] = 1850, + [1860] = 1860, + [1861] = 1861, + [1862] = 1862, + [1863] = 1863, + [1864] = 1864, + [1865] = 1865, + [1866] = 1866, + [1867] = 1866, + [1868] = 1868, + [1869] = 1869, + [1870] = 1869, + [1871] = 1871, + [1872] = 1866, + [1873] = 1873, + [1874] = 1874, + [1875] = 1875, + [1876] = 1876, + [1877] = 1877, + [1878] = 1874, + [1879] = 1873, + [1880] = 1860, + [1881] = 1881, + [1882] = 1861, + [1883] = 1862, + [1884] = 1877, + [1885] = 1885, + [1886] = 1885, + [1887] = 1887, + [1888] = 1887, + [1889] = 1889, + [1890] = 1890, + [1891] = 1891, + [1892] = 1890, + [1893] = 1893, + [1894] = 1894, + [1895] = 1860, + [1896] = 1889, + [1897] = 1876, + [1898] = 1898, + [1899] = 1891, + [1900] = 1875, + [1901] = 1901, + [1902] = 1876, + [1903] = 1868, + [1904] = 1904, + [1905] = 1905, + [1906] = 1906, + [1907] = 1898, + [1908] = 1869, + [1909] = 1909, + [1910] = 1876, + [1911] = 1866, + [1912] = 1912, + [1913] = 1913, + [1914] = 1901, + [1915] = 1915, + [1916] = 1916, + [1917] = 1917, + [1918] = 1868, + [1919] = 1919, + [1920] = 1881, + [1921] = 1921, + [1922] = 1868, + [1923] = 1861, + [1924] = 1898, + [1925] = 1876, + [1926] = 1881, + [1927] = 1877, [1928] = 1928, - [1929] = 1929, + [1929] = 1863, [1930] = 1930, - [1931] = 1931, - [1932] = 1927, - [1933] = 1929, - [1934] = 1930, - [1935] = 1929, - [1936] = 1936, - [1937] = 1931, - [1938] = 1938, - [1939] = 1929, - [1940] = 1936, - [1941] = 1931, - [1942] = 1928, - [1943] = 1931, - [1944] = 1930, - [1945] = 1929, - [1946] = 1928, - [1947] = 1936, - [1948] = 1938, - [1949] = 1928, - [1950] = 1931, - [1951] = 1927, - [1952] = 1930, - [1953] = 1936, - [1954] = 1927, - [1955] = 1930, - [1956] = 1928, - [1957] = 1936, - [1958] = 1929, - [1959] = 1931, - [1960] = 1928, - [1961] = 1927, - [1962] = 1936, - [1963] = 1928, - [1964] = 1964, - [1965] = 1927, - [1966] = 1929, - [1967] = 1930, - [1968] = 1927, - [1969] = 1931, - [1970] = 1936, - [1971] = 1930, - [1972] = 1972, - [1973] = 1973, - [1974] = 1974, - [1975] = 1974, - [1976] = 1974, - [1977] = 1974, - [1978] = 1974, - [1979] = 1972, - [1980] = 1974, - [1981] = 1981, - [1982] = 1982, - [1983] = 1982, - [1984] = 1981, - [1985] = 1981, - [1986] = 1982, - [1987] = 1982, - [1988] = 1982, - [1989] = 1981, - [1990] = 1981, - [1991] = 1991, + [1931] = 1866, + [1932] = 1881, + [1933] = 1866, + [1934] = 1901, + [1935] = 1875, + [1936] = 1916, + [1937] = 1861, + [1938] = 1869, + [1939] = 1863, + [1940] = 1877, + [1941] = 1889, + [1942] = 1881, + [1943] = 1874, + [1944] = 1891, + [1945] = 1891, + [1946] = 1873, + [1947] = 1885, + [1948] = 1862, + [1949] = 1863, + [1950] = 1889, + [1951] = 1868, + [1952] = 1868, + [1953] = 1921, + [1954] = 1885, + [1955] = 1862, + [1956] = 1891, + [1957] = 1868, + [1958] = 1866, + [1959] = 1863, + [1960] = 1873, + [1961] = 1869, + [1962] = 1862, + [1963] = 1869, + [1964] = 1889, + [1965] = 1869, + [1966] = 1874, + [1967] = 1877, + [1968] = 1860, + [1969] = 1875, + [1970] = 1970, + [1971] = 1869, + [1972] = 1921, + [1973] = 1885, + [1974] = 1873, + [1975] = 1916, + [1976] = 1868, + [1977] = 1875, + [1978] = 1874, + [1979] = 1916, + [1980] = 1921, + [1981] = 1898, + [1982] = 1921, + [1983] = 1916, + [1984] = 1860, + [1985] = 1985, + [1986] = 1861, + [1987] = 1987, + [1988] = 1866, + [1989] = 1898, + [1990] = 1901, + [1991] = 1901, [1992] = 1992, - [1993] = 1991, - [1994] = 1994, - [1995] = 1995, - [1996] = 1994, - [1997] = 1995, - [1998] = 1992, - [1999] = 1994, - [2000] = 1995, - [2001] = 1991, - [2002] = 1992, - [2003] = 1992, - [2004] = 1994, - [2005] = 1995, - [2006] = 1991, - [2007] = 1992, - [2008] = 2008, - [2009] = 2009, + [1993] = 1993, + [1994] = 1182, + [1995] = 1179, + [1996] = 1996, + [1997] = 1992, + [1998] = 1097, + [1999] = 1999, + [2000] = 1096, + [2001] = 2001, + [2002] = 2002, + [2003] = 2003, + [2004] = 1090, + [2005] = 2005, + [2006] = 2001, + [2007] = 2007, + [2008] = 1088, + [2009] = 2002, [2010] = 2010, [2011] = 2011, - [2012] = 2009, + [2012] = 2012, [2013] = 2013, [2014] = 2014, [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 2018, - [2019] = 2019, - [2020] = 2020, - [2021] = 2018, - [2022] = 2009, - [2023] = 2013, - [2024] = 2014, - [2025] = 2013, - [2026] = 2009, + [2016] = 2013, + [2017] = 2013, + [2018] = 2013, + [2019] = 2001, + [2020] = 2012, + [2021] = 2013, + [2022] = 2001, + [2023] = 2014, + [2024] = 2024, + [2025] = 2025, + [2026] = 2026, [2027] = 2027, [2028] = 2028, - [2029] = 2028, - [2030] = 2009, - [2031] = 2031, + [2029] = 2014, + [2030] = 2012, + [2031] = 2014, [2032] = 2032, - [2033] = 2013, + [2033] = 2014, [2034] = 2034, - [2035] = 2034, - [2036] = 2036, - [2037] = 2037, - [2038] = 2038, - [2039] = 2032, - [2040] = 2013, - [2041] = 2014, - [2042] = 2018, - [2043] = 2008, - [2044] = 2044, - [2045] = 2045, - [2046] = 2046, - [2047] = 2009, - [2048] = 2019, - [2049] = 2049, + [2035] = 2012, + [2036] = 2012, + [2037] = 2001, + [2038] = 2014, + [2039] = 2039, + [2040] = 2040, + [2041] = 2013, + [2042] = 2042, + [2043] = 2013, + [2044] = 2014, + [2045] = 1996, + [2046] = 2012, + [2047] = 2047, + [2048] = 2001, + [2049] = 2012, [2050] = 2050, [2051] = 2051, [2052] = 2052, [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 2016, - [2057] = 2010, - [2058] = 2034, - [2059] = 2054, - [2060] = 2014, - [2061] = 2044, - [2062] = 2062, - [2063] = 2027, - [2064] = 2017, - [2065] = 2017, - [2066] = 2066, - [2067] = 2045, - [2068] = 2014, - [2069] = 2031, - [2070] = 2013, - [2071] = 2011, - [2072] = 2072, - [2073] = 2027, - [2074] = 2028, - [2075] = 2010, - [2076] = 2016, + [2054] = 2001, + [2055] = 2053, + [2056] = 2053, + [2057] = 2052, + [2058] = 2052, + [2059] = 2052, + [2060] = 2052, + [2061] = 2052, + [2062] = 2001, + [2063] = 2052, + [2064] = 2052, + [2065] = 2052, + [2066] = 2052, + [2067] = 2053, + [2068] = 2068, + [2069] = 2052, + [2070] = 2070, + [2071] = 2071, + [2072] = 2001, + [2073] = 2073, + [2074] = 2074, + [2075] = 2075, + [2076] = 2070, [2077] = 2077, - [2078] = 2032, - [2079] = 2036, - [2080] = 2055, - [2081] = 2010, - [2082] = 2019, - [2083] = 2016, - [2084] = 2055, - [2085] = 2028, - [2086] = 2009, - [2087] = 2013, - [2088] = 2027, + [2078] = 2001, + [2079] = 2079, + [2080] = 2001, + [2081] = 2074, + [2082] = 2082, + [2083] = 2083, + [2084] = 2001, + [2085] = 2085, + [2086] = 2001, + [2087] = 2071, + [2088] = 2074, [2089] = 2089, - [2090] = 2090, - [2091] = 2091, - [2092] = 2055, - [2093] = 2045, - [2094] = 2014, - [2095] = 2095, - [2096] = 2096, - [2097] = 2008, - [2098] = 2054, - [2099] = 2096, - [2100] = 2044, - [2101] = 2036, - [2102] = 2077, - [2103] = 2103, - [2104] = 2104, - [2105] = 2036, - [2106] = 2017, - [2107] = 2014, - [2108] = 2044, - [2109] = 2014, - [2110] = 2013, - [2111] = 2016, - [2112] = 2010, - [2113] = 2028, - [2114] = 2034, - [2115] = 2096, - [2116] = 2096, - [2117] = 2054, - [2118] = 2018, - [2119] = 2008, - [2120] = 2032, - [2121] = 2009, - [2122] = 2018, - [2123] = 2019, - [2124] = 2036, - [2125] = 2008, - [2126] = 2034, - [2127] = 2019, - [2128] = 2017, - [2129] = 2031, - [2130] = 2096, - [2131] = 2045, - [2132] = 2027, - [2133] = 2031, - [2134] = 2032, - [2135] = 2045, - [2136] = 2044, - [2137] = 2054, - [2138] = 2055, - [2139] = 2031, - [2140] = 2140, - [2141] = 2141, - [2142] = 1088, - [2143] = 2143, - [2144] = 2141, - [2145] = 1093, - [2146] = 2146, - [2147] = 1214, - [2148] = 2148, - [2149] = 2149, - [2150] = 1211, - [2151] = 2151, - [2152] = 2146, - [2153] = 1218, - [2154] = 2154, - [2155] = 2155, - [2156] = 2156, + [2090] = 2074, + [2091] = 2001, + [2092] = 2073, + [2093] = 2074, + [2094] = 2094, + [2095] = 2001, + [2096] = 2074, + [2097] = 2073, + [2098] = 2074, + [2099] = 2074, + [2100] = 2073, + [2101] = 2073, + [2102] = 2001, + [2103] = 2070, + [2104] = 1992, + [2105] = 2073, + [2106] = 2075, + [2107] = 2075, + [2108] = 2073, + [2109] = 2073, + [2110] = 2110, + [2111] = 2075, + [2112] = 2112, + [2113] = 2070, + [2114] = 2114, + [2115] = 2114, + [2116] = 2114, + [2117] = 2071, + [2118] = 2118, + [2119] = 2114, + [2120] = 2118, + [2121] = 2121, + [2122] = 2122, + [2123] = 2001, + [2124] = 2124, + [2125] = 1045, + [2126] = 2118, + [2127] = 2118, + [2128] = 2071, + [2129] = 2121, + [2130] = 2121, + [2131] = 2118, + [2132] = 1039, + [2133] = 2114, + [2134] = 2118, + [2135] = 2121, + [2136] = 2001, + [2137] = 2121, + [2138] = 2114, + [2139] = 2121, + [2140] = 2118, + [2141] = 2027, + [2142] = 2114, + [2143] = 2118, + [2144] = 2121, + [2145] = 2118, + [2146] = 2001, + [2147] = 2001, + [2148] = 2121, + [2149] = 2114, + [2150] = 2121, + [2151] = 2114, + [2152] = 2001, + [2153] = 2114, + [2154] = 2118, + [2155] = 2118, + [2156] = 2121, [2157] = 2157, - [2158] = 2151, - [2159] = 1219, - [2160] = 2160, - [2161] = 2160, + [2158] = 2121, + [2159] = 2071, + [2160] = 2114, + [2161] = 2001, [2162] = 2162, - [2163] = 2160, - [2164] = 2164, - [2165] = 2165, - [2166] = 2143, - [2167] = 2167, - [2168] = 2168, + [2163] = 2163, + [2164] = 2001, + [2165] = 2163, + [2166] = 2166, + [2167] = 2124, + [2168] = 2163, [2169] = 2169, - [2170] = 2164, - [2171] = 2151, - [2172] = 2151, - [2173] = 2160, - [2174] = 2164, - [2175] = 2160, - [2176] = 2176, - [2177] = 2177, - [2178] = 2178, - [2179] = 2168, - [2180] = 2160, + [2170] = 2124, + [2171] = 2171, + [2172] = 2172, + [2173] = 2162, + [2174] = 2163, + [2175] = 2175, + [2176] = 2071, + [2177] = 2163, + [2178] = 2166, + [2179] = 2071, + [2180] = 2180, [2181] = 2181, - [2182] = 2151, - [2183] = 2164, - [2184] = 2168, - [2185] = 2168, - [2186] = 2168, - [2187] = 2187, - [2188] = 2168, - [2189] = 2151, - [2190] = 2164, - [2191] = 2191, - [2192] = 2168, - [2193] = 2164, - [2194] = 2164, + [2182] = 2163, + [2183] = 2163, + [2184] = 2184, + [2185] = 2163, + [2186] = 2162, + [2187] = 2071, + [2188] = 2163, + [2189] = 2181, + [2190] = 2190, + [2191] = 2071, + [2192] = 2171, + [2193] = 2193, + [2194] = 2071, [2195] = 2195, [2196] = 2196, - [2197] = 2197, - [2198] = 2198, - [2199] = 2160, - [2200] = 2200, - [2201] = 2200, - [2202] = 2202, - [2203] = 2200, - [2204] = 2202, - [2205] = 2200, - [2206] = 2200, + [2197] = 2193, + [2198] = 2193, + [2199] = 2199, + [2200] = 2162, + [2201] = 2201, + [2202] = 2199, + [2203] = 2193, + [2204] = 2204, + [2205] = 2199, + [2206] = 2206, [2207] = 2207, - [2208] = 2200, - [2209] = 2202, - [2210] = 2200, - [2211] = 2200, - [2212] = 2151, - [2213] = 2200, - [2214] = 2202, - [2215] = 2200, - [2216] = 2200, - [2217] = 2151, - [2218] = 2151, - [2219] = 2219, - [2220] = 2219, - [2221] = 2151, - [2222] = 2219, - [2223] = 2223, - [2224] = 2223, - [2225] = 2151, - [2226] = 2223, - [2227] = 2223, - [2228] = 2228, - [2229] = 2223, - [2230] = 2219, - [2231] = 2231, - [2232] = 2151, + [2208] = 2199, + [2209] = 2193, + [2210] = 2210, + [2211] = 2193, + [2212] = 2199, + [2213] = 2201, + [2214] = 2193, + [2215] = 2196, + [2216] = 2169, + [2217] = 2071, + [2218] = 2169, + [2219] = 2171, + [2220] = 2071, + [2221] = 2193, + [2222] = 2193, + [2223] = 2193, + [2224] = 2224, + [2225] = 2195, + [2226] = 2199, + [2227] = 2206, + [2228] = 2204, + [2229] = 2193, + [2230] = 2162, + [2231] = 2199, + [2232] = 2210, [2233] = 2233, - [2234] = 2234, - [2235] = 2219, - [2236] = 2151, - [2237] = 2151, - [2238] = 2238, + [2234] = 2175, + [2235] = 2235, + [2236] = 2157, + [2237] = 2235, + [2238] = 2233, [2239] = 2239, - [2240] = 2240, - [2241] = 2228, - [2242] = 2242, - [2243] = 2234, - [2244] = 2223, - [2245] = 2234, - [2246] = 2151, - [2247] = 2234, - [2248] = 2228, - [2249] = 2249, - [2250] = 2250, - [2251] = 2228, - [2252] = 2252, - [2253] = 2219, - [2254] = 2254, - [2255] = 2223, - [2256] = 2219, - [2257] = 2250, - [2258] = 2223, - [2259] = 2151, - [2260] = 2219, - [2261] = 2141, - [2262] = 2151, - [2263] = 2263, - [2264] = 2263, - [2265] = 2265, - [2266] = 2250, - [2267] = 2263, - [2268] = 2268, - [2269] = 2268, + [2240] = 1045, + [2241] = 2171, + [2242] = 2172, + [2243] = 2085, + [2244] = 2233, + [2245] = 2175, + [2246] = 2071, + [2247] = 2235, + [2248] = 2083, + [2249] = 2196, + [2250] = 2235, + [2251] = 2206, + [2252] = 2233, + [2253] = 2171, + [2254] = 2206, + [2255] = 2112, + [2256] = 2196, + [2257] = 2162, + [2258] = 2162, + [2259] = 2196, + [2260] = 2233, + [2261] = 2162, + [2262] = 2233, + [2263] = 2079, + [2264] = 2190, + [2265] = 2235, + [2266] = 2162, + [2267] = 2206, + [2268] = 2235, + [2269] = 2157, [2270] = 2270, - [2271] = 2270, - [2272] = 2151, - [2273] = 2268, - [2274] = 2263, - [2275] = 2268, - [2276] = 2151, + [2271] = 2071, + [2272] = 2206, + [2273] = 2270, + [2274] = 2235, + [2275] = 2275, + [2276] = 2196, [2277] = 2277, - [2278] = 2270, - [2279] = 2279, - [2280] = 2268, - [2281] = 2263, - [2282] = 2270, - [2283] = 2263, - [2284] = 2268, - [2285] = 2285, - [2286] = 2270, - [2287] = 2263, - [2288] = 2270, - [2289] = 2270, - [2290] = 2268, - [2291] = 2270, - [2292] = 2270, - [2293] = 2268, - [2294] = 2263, - [2295] = 2263, - [2296] = 2151, - [2297] = 1042, - [2298] = 2268, - [2299] = 2263, - [2300] = 2151, - [2301] = 2270, - [2302] = 2268, - [2303] = 2263, - [2304] = 2169, - [2305] = 2250, - [2306] = 2250, - [2307] = 2268, - [2308] = 2270, - [2309] = 1014, - [2310] = 2151, - [2311] = 2250, - [2312] = 2151, - [2313] = 2313, - [2314] = 2314, - [2315] = 2313, - [2316] = 2313, - [2317] = 2317, - [2318] = 2318, - [2319] = 2319, - [2320] = 2313, - [2321] = 2321, - [2322] = 2322, - [2323] = 2250, - [2324] = 2324, - [2325] = 2279, - [2326] = 2313, - [2327] = 2327, - [2328] = 2313, - [2329] = 2313, - [2330] = 2313, - [2331] = 2277, - [2332] = 2279, - [2333] = 2250, - [2334] = 2277, - [2335] = 2313, - [2336] = 2321, - [2337] = 2318, - [2338] = 2338, - [2339] = 2339, - [2340] = 2339, - [2341] = 2250, - [2342] = 2342, - [2343] = 2343, - [2344] = 2339, - [2345] = 2339, - [2346] = 2277, - [2347] = 2324, - [2348] = 2339, - [2349] = 2349, - [2350] = 2277, - [2351] = 2324, - [2352] = 2339, - [2353] = 2343, - [2354] = 2339, - [2355] = 2339, - [2356] = 2339, - [2357] = 2339, - [2358] = 2343, - [2359] = 2343, - [2360] = 2343, - [2361] = 2361, - [2362] = 2362, - [2363] = 2343, - [2364] = 2349, - [2365] = 2250, - [2366] = 2338, - [2367] = 2342, - [2368] = 2362, - [2369] = 2343, - [2370] = 2338, - [2371] = 2371, - [2372] = 2372, - [2373] = 2373, + [2278] = 2233, + [2279] = 2172, + [2280] = 2082, + [2281] = 2094, + [2282] = 1039, + [2283] = 2283, + [2284] = 2089, + [2285] = 2169, + [2286] = 2286, + [2287] = 2286, + [2288] = 2288, + [2289] = 2286, + [2290] = 2290, + [2291] = 2288, + [2292] = 2171, + [2293] = 2290, + [2294] = 2294, + [2295] = 2171, + [2296] = 2290, + [2297] = 2286, + [2298] = 2286, + [2299] = 2290, + [2300] = 2288, + [2301] = 2301, + [2302] = 2286, + [2303] = 2288, + [2304] = 2288, + [2305] = 2286, + [2306] = 2171, + [2307] = 2171, + [2308] = 2288, + [2309] = 2288, + [2310] = 2286, + [2311] = 2301, + [2312] = 2288, + [2313] = 2157, + [2314] = 2286, + [2315] = 2172, + [2316] = 2175, + [2317] = 2286, + [2318] = 2288, + [2319] = 2288, + [2320] = 2286, + [2321] = 2288, + [2322] = 2286, + [2323] = 2196, + [2324] = 2290, + [2325] = 2301, + [2326] = 2286, + [2327] = 2286, + [2328] = 2328, + [2329] = 2286, + [2330] = 2330, + [2331] = 2288, + [2332] = 2288, + [2333] = 2286, + [2334] = 2288, + [2335] = 2301, + [2336] = 2288, + [2337] = 2286, + [2338] = 2286, + [2339] = 2288, + [2340] = 2290, + [2341] = 2341, + [2342] = 2206, + [2343] = 2286, + [2344] = 2290, + [2345] = 2288, + [2346] = 2301, + [2347] = 2288, + [2348] = 2301, + [2349] = 2286, + [2350] = 2206, + [2351] = 2196, + [2352] = 2288, + [2353] = 2288, + [2354] = 2288, + [2355] = 2286, + [2356] = 2301, + [2357] = 2157, + [2358] = 2288, + [2359] = 2290, + [2360] = 2162, + [2361] = 2286, + [2362] = 2224, + [2363] = 2184, + [2364] = 2171, + [2365] = 2365, + [2366] = 2366, + [2367] = 2181, + [2368] = 2157, + [2369] = 2172, + [2370] = 2370, + [2371] = 2196, + [2372] = 2196, + [2373] = 2166, [2374] = 2374, - [2375] = 2250, - [2376] = 2339, - [2377] = 2373, - [2378] = 2371, - [2379] = 2250, - [2380] = 2374, - [2381] = 2324, - [2382] = 2249, - [2383] = 2383, - [2384] = 2277, - [2385] = 2385, - [2386] = 2371, - [2387] = 2383, - [2388] = 2338, - [2389] = 2277, - [2390] = 2314, - [2391] = 2322, - [2392] = 2250, - [2393] = 2385, - [2394] = 2252, - [2395] = 2231, - [2396] = 2265, - [2397] = 2250, - [2398] = 2238, - [2399] = 2240, - [2400] = 2242, - [2401] = 2401, - [2402] = 2342, - [2403] = 2383, - [2404] = 2383, - [2405] = 2322, - [2406] = 2314, - [2407] = 2371, - [2408] = 2385, - [2409] = 2342, - [2410] = 2342, - [2411] = 2254, - [2412] = 2385, - [2413] = 2277, - [2414] = 2414, - [2415] = 2415, - [2416] = 2385, - [2417] = 1042, - [2418] = 2342, - [2419] = 2324, - [2420] = 2383, - [2421] = 2371, - [2422] = 2385, - [2423] = 2277, - [2424] = 1014, - [2425] = 2383, - [2426] = 2426, - [2427] = 2265, - [2428] = 2383, - [2429] = 2371, - [2430] = 2385, - [2431] = 2431, - [2432] = 2415, - [2433] = 2317, - [2434] = 2434, - [2435] = 2435, - [2436] = 2435, - [2437] = 2437, - [2438] = 2434, - [2439] = 2439, - [2440] = 2435, - [2441] = 2434, - [2442] = 2435, - [2443] = 2434, + [2375] = 2206, + [2376] = 2175, + [2377] = 2206, + [2378] = 2196, + [2379] = 2196, + [2380] = 2195, + [2381] = 2206, + [2382] = 2206, + [2383] = 2206, + [2384] = 2384, + [2385] = 2196, + [2386] = 2196, + [2387] = 2206, + [2388] = 2275, + [2389] = 2206, + [2390] = 2196, + [2391] = 2206, + [2392] = 2196, + [2393] = 2157, + [2394] = 2277, + [2395] = 2395, + [2396] = 2395, + [2397] = 2157, + [2398] = 2398, + [2399] = 2398, + [2400] = 2157, + [2401] = 2395, + [2402] = 2402, + [2403] = 2403, + [2404] = 2395, + [2405] = 2395, + [2406] = 2398, + [2407] = 2294, + [2408] = 2206, + [2409] = 2157, + [2410] = 2395, + [2411] = 2403, + [2412] = 2395, + [2413] = 2395, + [2414] = 2398, + [2415] = 2398, + [2416] = 2398, + [2417] = 2395, + [2418] = 2398, + [2419] = 2402, + [2420] = 2196, + [2421] = 2398, + [2422] = 2398, + [2423] = 2423, + [2424] = 2402, + [2425] = 2403, + [2426] = 2402, + [2427] = 2403, + [2428] = 2428, + [2429] = 2429, + [2430] = 2429, + [2431] = 2428, + [2432] = 2428, + [2433] = 2429, + [2434] = 2429, + [2435] = 2429, + [2436] = 2428, + [2437] = 2429, + [2438] = 2429, + [2439] = 2428, + [2440] = 2429, + [2441] = 2429, + [2442] = 2428, + [2443] = 2443, [2444] = 2444, - [2445] = 2437, - [2446] = 2327, - [2447] = 2361, - [2448] = 2435, - [2449] = 2434, - [2450] = 2435, - [2451] = 2434, - [2452] = 2452, - [2453] = 2435, - [2454] = 2435, - [2455] = 2265, - [2456] = 2342, - [2457] = 2434, - [2458] = 2435, - [2459] = 2434, - [2460] = 2324, - [2461] = 2435, - [2462] = 2435, - [2463] = 2324, - [2464] = 2434, - [2465] = 2434, - [2466] = 2434, - [2467] = 2437, - [2468] = 2434, - [2469] = 2342, - [2470] = 2435, - [2471] = 2471, - [2472] = 2435, - [2473] = 2435, - [2474] = 2434, - [2475] = 2434, - [2476] = 2277, - [2477] = 2471, - [2478] = 2437, - [2479] = 2324, - [2480] = 2434, - [2481] = 2471, - [2482] = 2435, - [2483] = 2435, - [2484] = 2434, - [2485] = 2434, - [2486] = 2435, - [2487] = 2434, - [2488] = 2435, - [2489] = 2265, + [2445] = 2444, + [2446] = 2444, + [2447] = 2444, + [2448] = 2444, + [2449] = 2443, + [2450] = 2443, + [2451] = 2443, + [2452] = 2443, + [2453] = 2444, + [2454] = 2454, + [2455] = 2443, + [2456] = 2456, + [2457] = 2457, + [2458] = 2458, + [2459] = 2459, + [2460] = 2460, + [2461] = 2456, + [2462] = 2460, + [2463] = 2456, + [2464] = 2460, + [2465] = 2456, + [2466] = 2456, + [2467] = 2460, + [2468] = 2460, + [2469] = 2460, + [2470] = 2470, + [2471] = 2456, + [2472] = 2472, + [2473] = 2473, + [2474] = 2474, + [2475] = 2474, + [2476] = 2476, + [2477] = 2477, + [2478] = 2474, + [2479] = 2479, + [2480] = 2474, + [2481] = 2474, + [2482] = 2482, + [2483] = 2483, + [2484] = 2474, + [2485] = 2485, + [2486] = 2474, + [2487] = 2472, + [2488] = 2488, + [2489] = 2489, [2490] = 2490, - [2491] = 2437, - [2492] = 2471, - [2493] = 2435, - [2494] = 2434, - [2495] = 2324, - [2496] = 2434, - [2497] = 2471, - [2498] = 2471, - [2499] = 2471, - [2500] = 2471, - [2501] = 2437, - [2502] = 2437, - [2503] = 2371, - [2504] = 2434, - [2505] = 2371, - [2506] = 2435, - [2507] = 2322, - [2508] = 2314, - [2509] = 2435, - [2510] = 2434, - [2511] = 2435, - [2512] = 2324, - [2513] = 2322, - [2514] = 2265, - [2515] = 2342, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, + [2496] = 2495, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, + [2503] = 2503, + [2504] = 2504, + [2505] = 2505, + [2506] = 2506, + [2507] = 353, + [2508] = 2508, + [2509] = 2509, + [2510] = 2495, + [2511] = 2511, + [2512] = 2499, + [2513] = 2513, + [2514] = 2503, + [2515] = 2503, [2516] = 2516, - [2517] = 2517, - [2518] = 2318, - [2519] = 2314, - [2520] = 2321, - [2521] = 2371, + [2517] = 2509, + [2518] = 2518, + [2519] = 2519, + [2520] = 2503, + [2521] = 2521, [2522] = 2522, - [2523] = 2523, - [2524] = 2342, - [2525] = 2371, - [2526] = 2342, - [2527] = 2342, - [2528] = 2342, - [2529] = 2342, - [2530] = 2401, + [2523] = 2495, + [2524] = 2495, + [2525] = 2503, + [2526] = 2498, + [2527] = 2503, + [2528] = 2528, + [2529] = 2529, + [2530] = 2495, [2531] = 2531, - [2532] = 2414, - [2533] = 2371, - [2534] = 2371, - [2535] = 2349, - [2536] = 2265, - [2537] = 2342, - [2538] = 2342, - [2539] = 2371, - [2540] = 2371, - [2541] = 2371, - [2542] = 2371, - [2543] = 2543, - [2544] = 2544, - [2545] = 2544, - [2546] = 2490, + [2532] = 377, + [2533] = 2533, + [2534] = 2534, + [2535] = 2509, + [2536] = 2504, + [2537] = 2528, + [2538] = 2538, + [2539] = 2503, + [2540] = 2540, + [2541] = 2509, + [2542] = 2542, + [2543] = 2540, + [2544] = 2495, + [2545] = 2540, + [2546] = 2509, [2547] = 2547, - [2548] = 2547, + [2548] = 2509, [2549] = 2549, [2550] = 2550, - [2551] = 2550, - [2552] = 2544, - [2553] = 2371, - [2554] = 2544, - [2555] = 2265, - [2556] = 2544, - [2557] = 2550, - [2558] = 2547, - [2559] = 2550, - [2560] = 2549, - [2561] = 2550, - [2562] = 2549, - [2563] = 2265, - [2564] = 2547, - [2565] = 2549, - [2566] = 2550, - [2567] = 2544, - [2568] = 2550, - [2569] = 2265, - [2570] = 2550, - [2571] = 2342, - [2572] = 2544, - [2573] = 2544, - [2574] = 2550, - [2575] = 2544, + [2551] = 2551, + [2552] = 2540, + [2553] = 2553, + [2554] = 2540, + [2555] = 2555, + [2556] = 2556, + [2557] = 2557, + [2558] = 2558, + [2559] = 2540, + [2560] = 2560, + [2561] = 2561, + [2562] = 2562, + [2563] = 2563, + [2564] = 2564, + [2565] = 2565, + [2566] = 2566, + [2567] = 2567, + [2568] = 2566, + [2569] = 2569, + [2570] = 2570, + [2571] = 2571, + [2572] = 2572, + [2573] = 2573, + [2574] = 2574, + [2575] = 2566, [2576] = 2576, - [2577] = 2577, - [2578] = 2576, - [2579] = 2576, - [2580] = 2576, - [2581] = 2576, - [2582] = 2576, - [2583] = 2577, - [2584] = 2577, - [2585] = 2576, - [2586] = 2577, - [2587] = 2576, - [2588] = 2577, - [2589] = 2576, - [2590] = 2577, + [2577] = 2566, + [2578] = 2578, + [2579] = 2563, + [2580] = 2580, + [2581] = 2581, + [2582] = 2582, + [2583] = 2583, + [2584] = 2584, + [2585] = 2585, + [2586] = 2586, + [2587] = 2587, + [2588] = 2566, + [2589] = 2566, + [2590] = 2566, [2591] = 2591, - [2592] = 2591, - [2593] = 2591, + [2592] = 2592, + [2593] = 2593, [2594] = 2594, - [2595] = 2594, + [2595] = 2595, [2596] = 2596, - [2597] = 2594, - [2598] = 2591, - [2599] = 2591, - [2600] = 2591, - [2601] = 2594, - [2602] = 2594, - [2603] = 2594, + [2597] = 2591, + [2598] = 2572, + [2599] = 2599, + [2600] = 2570, + [2601] = 2601, + [2602] = 2602, + [2603] = 2603, [2604] = 2604, - [2605] = 2604, - [2606] = 2604, - [2607] = 2604, + [2605] = 2605, + [2606] = 336, + [2607] = 2607, [2608] = 2608, [2609] = 2609, [2610] = 2610, [2611] = 2611, - [2612] = 2604, - [2613] = 2608, - [2614] = 2608, - [2615] = 2608, - [2616] = 2608, - [2617] = 2608, - [2618] = 2604, - [2619] = 2619, + [2612] = 2612, + [2613] = 2613, + [2614] = 2614, + [2615] = 2615, + [2616] = 2616, + [2617] = 338, + [2618] = 2618, + [2619] = 337, [2620] = 2620, [2621] = 2621, - [2622] = 2622, + [2622] = 335, [2623] = 2623, [2624] = 2624, - [2625] = 2624, - [2626] = 2626, + [2625] = 2625, + [2626] = 2005, [2627] = 2627, [2628] = 2628, - [2629] = 2626, - [2630] = 2626, + [2629] = 2629, + [2630] = 2630, [2631] = 2631, - [2632] = 2626, - [2633] = 2633, - [2634] = 2634, - [2635] = 2635, - [2636] = 2626, + [2632] = 2632, + [2633] = 2011, + [2634] = 353, + [2635] = 2003, + [2636] = 377, [2637] = 2637, - [2638] = 2626, + [2638] = 2638, [2639] = 2639, - [2640] = 2640, - [2641] = 2641, - [2642] = 2626, + [2640] = 2540, + [2641] = 2509, + [2642] = 2642, [2643] = 2643, [2644] = 2644, [2645] = 2645, [2646] = 2646, - [2647] = 2647, + [2647] = 2644, [2648] = 2648, [2649] = 2649, - [2650] = 2649, + [2650] = 2650, [2651] = 2651, [2652] = 2652, - [2653] = 2653, + [2653] = 2644, [2654] = 2654, - [2655] = 2649, - [2656] = 2654, + [2655] = 2655, + [2656] = 1071, [2657] = 2657, - [2658] = 2654, + [2658] = 2658, [2659] = 2659, - [2660] = 2654, + [2660] = 2644, [2661] = 2661, [2662] = 2662, [2663] = 2663, [2664] = 2664, [2665] = 2665, [2666] = 2666, - [2667] = 2645, - [2668] = 2652, - [2669] = 2661, - [2670] = 376, + [2667] = 2667, + [2668] = 2668, + [2669] = 2669, + [2670] = 2670, [2671] = 2671, - [2672] = 2654, + [2672] = 2672, [2673] = 2673, [2674] = 2674, - [2675] = 2645, - [2676] = 2652, + [2675] = 2675, + [2676] = 2676, [2677] = 2677, - [2678] = 2654, + [2678] = 2604, [2679] = 2679, [2680] = 2680, - [2681] = 2649, - [2682] = 2649, - [2683] = 2683, - [2684] = 2652, - [2685] = 2685, - [2686] = 2686, + [2681] = 2681, + [2682] = 2644, + [2683] = 374, + [2684] = 375, + [2685] = 2540, + [2686] = 2540, [2687] = 2687, - [2688] = 2645, - [2689] = 2649, - [2690] = 2652, + [2688] = 2509, + [2689] = 2509, + [2690] = 2690, [2691] = 2691, - [2692] = 2654, + [2692] = 2692, [2693] = 2693, - [2694] = 367, - [2695] = 2695, - [2696] = 2687, + [2694] = 1070, + [2695] = 2644, + [2696] = 2696, [2697] = 2697, - [2698] = 2664, - [2699] = 2699, + [2698] = 2509, + [2699] = 2540, [2700] = 2700, - [2701] = 2645, - [2702] = 2652, - [2703] = 2703, + [2701] = 2026, + [2702] = 1076, + [2703] = 2644, [2704] = 2704, [2705] = 2705, - [2706] = 2706, - [2707] = 2645, - [2708] = 2649, + [2706] = 2025, + [2707] = 354, + [2708] = 2024, [2709] = 2709, - [2710] = 2693, - [2711] = 2711, - [2712] = 2712, + [2710] = 2710, + [2711] = 370, + [2712] = 2644, [2713] = 2713, [2714] = 2714, [2715] = 2715, @@ -7761,66 +7768,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2729] = 2729, [2730] = 2730, [2731] = 2731, - [2732] = 2718, + [2732] = 2732, [2733] = 2733, - [2734] = 2722, - [2735] = 2718, - [2736] = 2736, + [2734] = 2540, + [2735] = 2735, + [2736] = 2509, [2737] = 2737, [2738] = 2738, - [2739] = 2718, - [2740] = 2718, - [2741] = 2712, + [2739] = 2739, + [2740] = 2740, + [2741] = 2741, [2742] = 2742, - [2743] = 2713, + [2743] = 2743, [2744] = 2744, - [2745] = 2718, - [2746] = 2716, + [2745] = 2745, + [2746] = 2746, [2747] = 2747, [2748] = 2748, - [2749] = 2718, + [2749] = 2749, [2750] = 2750, [2751] = 2751, - [2752] = 2752, - [2753] = 2149, - [2754] = 376, + [2752] = 2644, + [2753] = 2753, + [2754] = 2754, [2755] = 2755, - [2756] = 367, - [2757] = 338, + [2756] = 2540, + [2757] = 2757, [2758] = 2758, [2759] = 2759, [2760] = 2760, [2761] = 2761, - [2762] = 2762, - [2763] = 334, + [2762] = 2509, + [2763] = 2763, [2764] = 2764, [2765] = 2765, - [2766] = 2766, + [2766] = 1072, [2767] = 2767, [2768] = 2768, [2769] = 2769, [2770] = 2770, [2771] = 2771, [2772] = 2772, - [2773] = 2156, + [2773] = 2773, [2774] = 2774, [2775] = 2775, - [2776] = 2776, + [2776] = 2644, [2777] = 2777, [2778] = 2778, [2779] = 2779, - [2780] = 2154, + [2780] = 2780, [2781] = 2781, - [2782] = 339, + [2782] = 2782, [2783] = 2783, [2784] = 2784, - [2785] = 335, + [2785] = 2032, [2786] = 2786, - [2787] = 2787, - [2788] = 2652, - [2789] = 2645, - [2790] = 2790, - [2791] = 2787, + [2787] = 2034, + [2788] = 2039, + [2789] = 2040, + [2790] = 2042, + [2791] = 2791, [2792] = 2792, [2793] = 2793, [2794] = 2794, @@ -7831,1687 +7838,1687 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2799] = 2799, [2800] = 2800, [2801] = 2801, - [2802] = 1125, + [2802] = 2802, [2803] = 2803, [2804] = 2804, [2805] = 2805, [2806] = 2806, [2807] = 2807, - [2808] = 2808, + [2808] = 2047, [2809] = 2809, [2810] = 2810, - [2811] = 2811, - [2812] = 2812, - [2813] = 2813, - [2814] = 2814, - [2815] = 2787, + [2811] = 338, + [2812] = 337, + [2813] = 335, + [2814] = 2050, + [2815] = 2051, [2816] = 2816, - [2817] = 2198, - [2818] = 2196, - [2819] = 2191, - [2820] = 2645, - [2821] = 2652, - [2822] = 1119, + [2817] = 2817, + [2818] = 2818, + [2819] = 2819, + [2820] = 1073, + [2821] = 2821, + [2822] = 2509, [2823] = 2823, [2824] = 2824, - [2825] = 2825, + [2825] = 2540, [2826] = 2826, [2827] = 2827, [2828] = 2828, [2829] = 2829, [2830] = 2830, - [2831] = 2831, + [2831] = 2644, [2832] = 2832, - [2833] = 2833, - [2834] = 2834, + [2833] = 2770, + [2834] = 2718, [2835] = 2835, - [2836] = 2165, - [2837] = 2195, - [2838] = 2187, - [2839] = 2181, - [2840] = 2162, - [2841] = 2841, + [2836] = 2836, + [2837] = 2721, + [2838] = 2774, + [2839] = 2839, + [2840] = 2727, + [2841] = 2797, [2842] = 2842, [2843] = 2843, - [2844] = 2844, - [2845] = 1118, + [2844] = 2730, + [2845] = 2732, [2846] = 2846, [2847] = 2847, - [2848] = 2848, - [2849] = 2849, - [2850] = 2850, + [2848] = 375, + [2849] = 374, + [2850] = 2744, [2851] = 2851, - [2852] = 2852, + [2852] = 2745, [2853] = 2853, - [2854] = 2854, - [2855] = 2855, + [2854] = 2746, + [2855] = 372, [2856] = 2856, [2857] = 2857, - [2858] = 2787, - [2859] = 2859, - [2860] = 2860, - [2861] = 2861, - [2862] = 2645, - [2863] = 2652, + [2858] = 2741, + [2859] = 2737, + [2860] = 2747, + [2861] = 2737, + [2862] = 2835, + [2863] = 2863, [2864] = 2864, - [2865] = 2865, - [2866] = 2866, - [2867] = 2176, - [2868] = 2177, - [2869] = 2178, + [2865] = 2741, + [2866] = 2749, + [2867] = 2755, + [2868] = 366, + [2869] = 2869, [2870] = 2870, [2871] = 2871, - [2872] = 2872, - [2873] = 2873, - [2874] = 1117, - [2875] = 2875, - [2876] = 2876, - [2877] = 2877, - [2878] = 2878, - [2879] = 2879, - [2880] = 2880, - [2881] = 2881, - [2882] = 2882, - [2883] = 2883, - [2884] = 2884, + [2872] = 2842, + [2873] = 2871, + [2874] = 2842, + [2875] = 2758, + [2876] = 2761, + [2877] = 2763, + [2878] = 2765, + [2879] = 2768, + [2880] = 2769, + [2881] = 2770, + [2882] = 2835, + [2883] = 2774, + [2884] = 2835, [2885] = 2885, - [2886] = 2886, + [2886] = 2777, [2887] = 2887, - [2888] = 1116, + [2888] = 2778, [2889] = 2889, - [2890] = 2787, + [2890] = 2782, [2891] = 2891, - [2892] = 2892, - [2893] = 2893, + [2892] = 366, + [2893] = 2783, [2894] = 2894, - [2895] = 2895, + [2895] = 2730, [2896] = 2896, - [2897] = 2897, + [2897] = 2755, [2898] = 2898, [2899] = 2899, - [2900] = 2900, + [2900] = 2727, [2901] = 2901, - [2902] = 2645, + [2902] = 2871, [2903] = 2903, - [2904] = 2904, - [2905] = 2787, - [2906] = 2652, - [2907] = 2652, - [2908] = 2645, - [2909] = 2787, - [2910] = 361, + [2904] = 2721, + [2905] = 371, + [2906] = 2906, + [2907] = 2592, + [2908] = 2718, + [2909] = 2803, + [2910] = 2732, [2911] = 2911, - [2912] = 2912, - [2913] = 2913, - [2914] = 353, - [2915] = 2787, - [2916] = 2787, - [2917] = 2917, - [2918] = 2787, - [2919] = 2919, - [2920] = 2920, - [2921] = 2921, - [2922] = 2652, - [2923] = 2652, - [2924] = 2645, - [2925] = 2645, + [2912] = 2802, + [2913] = 2800, + [2914] = 354, + [2915] = 2915, + [2916] = 2916, + [2917] = 373, + [2918] = 369, + [2919] = 2747, + [2920] = 2797, + [2921] = 2586, + [2922] = 2922, + [2923] = 2923, + [2924] = 372, + [2925] = 2925, [2926] = 2926, [2927] = 2927, [2928] = 2928, - [2929] = 2929, - [2930] = 2787, + [2929] = 2713, + [2930] = 2842, [2931] = 2931, [2932] = 2932, [2933] = 2933, [2934] = 2934, - [2935] = 2935, - [2936] = 2936, + [2935] = 2769, + [2936] = 2768, [2937] = 2937, - [2938] = 2938, - [2939] = 2939, + [2938] = 2765, + [2939] = 2857, [2940] = 2940, - [2941] = 347, + [2941] = 367, [2942] = 2942, - [2943] = 369, + [2943] = 2943, [2944] = 2944, - [2945] = 2945, - [2946] = 2946, - [2947] = 2947, + [2945] = 2803, + [2946] = 367, + [2947] = 2713, [2948] = 2948, - [2949] = 2949, - [2950] = 339, - [2951] = 335, - [2952] = 338, - [2953] = 2953, - [2954] = 2954, - [2955] = 2955, + [2949] = 2871, + [2950] = 2835, + [2951] = 369, + [2952] = 2871, + [2953] = 2842, + [2954] = 2835, + [2955] = 2842, [2956] = 2956, [2957] = 2957, - [2958] = 2958, + [2958] = 2906, [2959] = 2959, - [2960] = 2960, + [2960] = 373, [2961] = 2961, - [2962] = 2962, + [2962] = 2800, [2963] = 2963, [2964] = 2964, - [2965] = 2965, - [2966] = 2755, - [2967] = 2967, - [2968] = 2968, + [2965] = 2746, + [2966] = 2595, + [2967] = 2594, + [2968] = 2745, [2969] = 2969, - [2970] = 2970, - [2971] = 2971, + [2970] = 2593, + [2971] = 2802, [2972] = 2972, - [2973] = 2973, + [2973] = 370, [2974] = 2974, [2975] = 2975, - [2976] = 2976, - [2977] = 2977, - [2978] = 2978, + [2976] = 2744, + [2977] = 2782, + [2978] = 2974, [2979] = 2979, - [2980] = 2980, + [2980] = 2777, [2981] = 2981, - [2982] = 2972, - [2983] = 2967, - [2984] = 347, - [2985] = 2977, - [2986] = 2958, + [2982] = 2982, + [2983] = 2983, + [2984] = 2984, + [2985] = 2761, + [2986] = 2986, [2987] = 2987, - [2988] = 2957, - [2989] = 2989, - [2990] = 2978, - [2991] = 2991, - [2992] = 369, - [2993] = 2979, - [2994] = 2994, - [2995] = 2959, - [2996] = 348, - [2997] = 2997, - [2998] = 2977, - [2999] = 2980, - [3000] = 2978, - [3001] = 2731, - [3002] = 2972, - [3003] = 2737, - [3004] = 2738, - [3005] = 2944, + [2988] = 2758, + [2989] = 2835, + [2990] = 2783, + [2991] = 2842, + [2992] = 2835, + [2993] = 2749, + [2994] = 2871, + [2995] = 2995, + [2996] = 2871, + [2997] = 2778, + [2998] = 2998, + [2999] = 2763, + [3000] = 371, + [3001] = 3001, + [3002] = 3002, + [3003] = 3003, + [3004] = 3004, + [3005] = 2801, [3006] = 3006, - [3007] = 3007, - [3008] = 3008, + [3007] = 371, + [3008] = 2931, [3009] = 3009, - [3010] = 2980, + [3010] = 3010, [3011] = 3011, [3012] = 3012, [3013] = 3013, - [3014] = 368, - [3015] = 2960, + [3014] = 3014, + [3015] = 3015, [3016] = 3016, - [3017] = 3017, - [3018] = 366, - [3019] = 3019, + [3017] = 3011, + [3018] = 3003, + [3019] = 354, [3020] = 3020, - [3021] = 3021, + [3021] = 2931, [3022] = 3022, - [3023] = 3023, - [3024] = 3024, - [3025] = 3025, + [3023] = 2005, + [3024] = 370, + [3025] = 354, [3026] = 3026, - [3027] = 346, - [3028] = 3028, - [3029] = 2980, - [3030] = 3030, - [3031] = 3031, - [3032] = 2961, + [3027] = 370, + [3028] = 2797, + [3029] = 2782, + [3030] = 3003, + [3031] = 372, + [3032] = 3032, [3033] = 3033, - [3034] = 2944, + [3034] = 3034, [3035] = 3035, - [3036] = 3036, - [3037] = 2956, - [3038] = 2945, - [3039] = 2946, + [3036] = 3011, + [3037] = 3037, + [3038] = 3038, + [3039] = 3039, [3040] = 3040, - [3041] = 3025, - [3042] = 3024, + [3041] = 3041, + [3042] = 3042, [3043] = 3043, - [3044] = 3044, - [3045] = 3024, - [3046] = 2945, - [3047] = 2946, - [3048] = 2947, - [3049] = 3049, - [3050] = 3050, + [3044] = 2801, + [3045] = 3045, + [3046] = 3046, + [3047] = 3047, + [3048] = 2804, + [3049] = 2974, + [3050] = 2657, [3051] = 3051, - [3052] = 348, - [3053] = 3053, + [3052] = 3052, + [3053] = 2800, [3054] = 3054, - [3055] = 2973, - [3056] = 350, - [3057] = 2947, - [3058] = 3058, - [3059] = 2948, - [3060] = 2949, - [3061] = 2974, + [3055] = 2011, + [3056] = 3003, + [3057] = 3057, + [3058] = 2802, + [3059] = 3059, + [3060] = 2611, + [3061] = 2783, [3062] = 3062, - [3063] = 2975, - [3064] = 2948, + [3063] = 2804, + [3064] = 3064, [3065] = 3065, - [3066] = 3066, - [3067] = 3024, - [3068] = 3025, - [3069] = 2962, - [3070] = 2964, - [3071] = 3025, - [3072] = 2748, - [3073] = 3073, - [3074] = 2965, - [3075] = 2970, - [3076] = 3076, - [3077] = 3077, - [3078] = 2979, - [3079] = 2953, - [3080] = 2949, - [3081] = 3081, - [3082] = 3082, - [3083] = 2973, - [3084] = 3084, - [3085] = 3085, - [3086] = 2969, - [3087] = 2955, - [3088] = 2954, - [3089] = 2974, - [3090] = 2955, - [3091] = 2975, - [3092] = 353, - [3093] = 361, - [3094] = 3094, - [3095] = 2976, - [3096] = 3096, - [3097] = 2980, - [3098] = 368, - [3099] = 2956, - [3100] = 3100, + [3066] = 2607, + [3067] = 3067, + [3068] = 3068, + [3069] = 3015, + [3070] = 3070, + [3071] = 2623, + [3072] = 3011, + [3073] = 2747, + [3074] = 2746, + [3075] = 2745, + [3076] = 2003, + [3077] = 2778, + [3078] = 3015, + [3079] = 2777, + [3080] = 2774, + [3081] = 3011, + [3082] = 2770, + [3083] = 2769, + [3084] = 2768, + [3085] = 2765, + [3086] = 2763, + [3087] = 2761, + [3088] = 2758, + [3089] = 2744, + [3090] = 3090, + [3091] = 2755, + [3092] = 2749, + [3093] = 2741, + [3094] = 2737, + [3095] = 3095, + [3096] = 2615, + [3097] = 2616, + [3098] = 2906, + [3099] = 3099, + [3100] = 2803, [3101] = 3101, - [3102] = 3102, + [3102] = 3011, [3103] = 3103, - [3104] = 2730, - [3105] = 3105, - [3106] = 3106, - [3107] = 3107, - [3108] = 3108, + [3104] = 2732, + [3105] = 2730, + [3106] = 2727, + [3107] = 2721, + [3108] = 2718, [3109] = 3109, - [3110] = 3110, - [3111] = 2968, - [3112] = 350, - [3113] = 3025, - [3114] = 3024, + [3110] = 2610, + [3111] = 2612, + [3112] = 3112, + [3113] = 2625, + [3114] = 3114, [3115] = 3115, - [3116] = 2980, - [3117] = 2957, - [3118] = 2958, - [3119] = 346, - [3120] = 2967, - [3121] = 3025, - [3122] = 2954, - [3123] = 3123, - [3124] = 3124, + [3116] = 3116, + [3117] = 3015, + [3118] = 3057, + [3119] = 2624, + [3120] = 3003, + [3121] = 3121, + [3122] = 3015, + [3123] = 2857, + [3124] = 3011, [3125] = 3125, [3126] = 3126, - [3127] = 3127, - [3128] = 2980, - [3129] = 2953, - [3130] = 3082, - [3131] = 3066, - [3132] = 3054, - [3133] = 2968, - [3134] = 366, - [3135] = 3025, - [3136] = 2962, - [3137] = 360, - [3138] = 2959, - [3139] = 2969, - [3140] = 2960, - [3141] = 3024, - [3142] = 2964, - [3143] = 3024, - [3144] = 2965, - [3145] = 360, - [3146] = 2976, - [3147] = 2961, + [3127] = 2630, + [3128] = 3128, + [3129] = 3129, + [3130] = 3115, + [3131] = 3003, + [3132] = 3132, + [3133] = 3133, + [3134] = 3134, + [3135] = 3135, + [3136] = 3136, + [3137] = 3137, + [3138] = 3138, + [3139] = 3015, + [3140] = 3140, + [3141] = 3141, + [3142] = 3142, + [3143] = 3143, + [3144] = 3128, + [3145] = 2713, + [3146] = 3146, + [3147] = 3147, [3148] = 3148, - [3149] = 2970, - [3150] = 2980, + [3149] = 3003, + [3150] = 3068, [3151] = 3151, [3152] = 3152, [3153] = 3153, [3154] = 3154, - [3155] = 3155, + [3155] = 3015, [3156] = 3156, - [3157] = 3157, - [3158] = 2781, - [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3162, - [3163] = 3163, - [3164] = 3164, - [3165] = 2149, - [3166] = 3166, - [3167] = 3167, - [3168] = 3152, - [3169] = 3169, - [3170] = 3170, - [3171] = 3171, - [3172] = 2949, - [3173] = 3173, - [3174] = 3153, - [3175] = 3153, + [3157] = 2943, + [3158] = 2661, + [3159] = 2715, + [3160] = 2643, + [3161] = 2645, + [3162] = 2648, + [3163] = 2649, + [3164] = 2642, + [3165] = 2652, + [3166] = 2654, + [3167] = 1071, + [3168] = 2804, + [3169] = 2529, + [3170] = 2771, + [3171] = 2748, + [3172] = 2742, + [3173] = 2735, + [3174] = 3174, + [3175] = 3175, [3176] = 3176, [3177] = 3177, - [3178] = 3160, - [3179] = 3179, - [3180] = 369, - [3181] = 3181, - [3182] = 2760, - [3183] = 3151, - [3184] = 369, - [3185] = 3185, - [3186] = 347, - [3187] = 3187, - [3188] = 2752, - [3189] = 2948, - [3190] = 347, - [3191] = 2953, - [3192] = 2954, - [3193] = 3193, - [3194] = 3082, - [3195] = 2955, - [3196] = 2947, - [3197] = 2956, - [3198] = 3198, - [3199] = 2946, - [3200] = 2945, - [3201] = 2957, - [3202] = 2958, - [3203] = 3153, - [3204] = 2156, - [3205] = 3205, - [3206] = 2750, - [3207] = 2959, - [3208] = 2960, - [3209] = 3209, - [3210] = 2961, - [3211] = 3211, - [3212] = 2962, - [3213] = 2964, - [3214] = 2965, - [3215] = 2967, - [3216] = 2968, - [3217] = 2969, - [3218] = 2970, - [3219] = 2768, - [3220] = 3220, - [3221] = 3221, - [3222] = 3222, - [3223] = 3152, - [3224] = 3224, - [3225] = 2776, - [3226] = 3226, - [3227] = 3167, + [3178] = 2801, + [3179] = 1070, + [3180] = 2691, + [3181] = 2690, + [3182] = 3020, + [3183] = 3183, + [3184] = 2677, + [3185] = 2981, + [3186] = 2663, + [3187] = 2700, + [3188] = 2650, + [3189] = 2665, + [3190] = 2675, + [3191] = 2670, + [3192] = 2671, + [3193] = 2646, + [3194] = 2680, + [3195] = 2906, + [3196] = 2681, + [3197] = 2687, + [3198] = 2696, + [3199] = 2026, + [3200] = 2025, + [3201] = 2024, + [3202] = 2710, + [3203] = 2716, + [3204] = 2719, + [3205] = 2720, + [3206] = 2722, + [3207] = 2857, + [3208] = 2723, + [3209] = 2725, + [3210] = 2726, + [3211] = 2658, + [3212] = 2733, + [3213] = 2738, + [3214] = 2739, + [3215] = 2740, + [3216] = 2743, + [3217] = 2750, + [3218] = 2753, + [3219] = 2759, + [3220] = 1072, + [3221] = 2692, + [3222] = 2697, + [3223] = 3223, + [3224] = 2714, + [3225] = 3175, + [3226] = 336, + [3227] = 3227, [3228] = 3228, - [3229] = 3229, - [3230] = 3209, - [3231] = 3231, - [3232] = 3232, - [3233] = 3153, - [3234] = 3234, - [3235] = 3235, - [3236] = 3236, - [3237] = 3237, - [3238] = 3238, - [3239] = 2979, + [3229] = 2767, + [3230] = 2779, + [3231] = 2780, + [3232] = 2781, + [3233] = 2032, + [3234] = 2034, + [3235] = 2039, + [3236] = 2040, + [3237] = 2042, + [3238] = 2792, + [3239] = 2793, [3240] = 3240, - [3241] = 3035, - [3242] = 2762, - [3243] = 3243, - [3244] = 2944, - [3245] = 3245, - [3246] = 3246, - [3247] = 2783, - [3248] = 3035, - [3249] = 3249, - [3250] = 3066, - [3251] = 2936, - [3252] = 3252, - [3253] = 2771, - [3254] = 3254, - [3255] = 3255, - [3256] = 3153, - [3257] = 3153, - [3258] = 3258, - [3259] = 3259, - [3260] = 2976, - [3261] = 3261, - [3262] = 3262, - [3263] = 2975, - [3264] = 2974, - [3265] = 2973, - [3266] = 3266, - [3267] = 3267, - [3268] = 3152, - [3269] = 3269, - [3270] = 3167, - [3271] = 3271, - [3272] = 2830, - [3273] = 2154, - [3274] = 3274, - [3275] = 3275, - [3276] = 3276, - [3277] = 3277, - [3278] = 3167, - [3279] = 3279, - [3280] = 3152, - [3281] = 3281, - [3282] = 3152, - [3283] = 3283, - [3284] = 2829, - [3285] = 3285, - [3286] = 3167, - [3287] = 3167, - [3288] = 3288, - [3289] = 2830, - [3290] = 3211, - [3291] = 2972, - [3292] = 3292, - [3293] = 3152, - [3294] = 3167, - [3295] = 3295, - [3296] = 3296, - [3297] = 2770, - [3298] = 350, - [3299] = 360, - [3300] = 3054, - [3301] = 3301, - [3302] = 2977, - [3303] = 2978, - [3304] = 2829, - [3305] = 3305, - [3306] = 3028, - [3307] = 3307, - [3308] = 2810, - [3309] = 3309, - [3310] = 2808, - [3311] = 1125, - [3312] = 2805, - [3313] = 2804, - [3314] = 3314, - [3315] = 2803, - [3316] = 2806, - [3317] = 2938, - [3318] = 2790, - [3319] = 2937, - [3320] = 2807, - [3321] = 3054, - [3322] = 2809, - [3323] = 3314, - [3324] = 3324, - [3325] = 2792, - [3326] = 3326, - [3327] = 2811, - [3328] = 2830, - [3329] = 2829, - [3330] = 2659, - [3331] = 3331, - [3332] = 2812, - [3333] = 2813, - [3334] = 2814, + [3241] = 2794, + [3242] = 2795, + [3243] = 2804, + [3244] = 2801, + [3245] = 2796, + [3246] = 2801, + [3247] = 2804, + [3248] = 2974, + [3249] = 2805, + [3250] = 2773, + [3251] = 2809, + [3252] = 2673, + [3253] = 2943, + [3254] = 2810, + [3255] = 2818, + [3256] = 2819, + [3257] = 1073, + [3258] = 2646, + [3259] = 3175, + [3260] = 2051, + [3261] = 2050, + [3262] = 2047, + [3263] = 2830, + [3264] = 2806, + [3265] = 3177, + [3266] = 2799, + [3267] = 2798, + [3268] = 2791, + [3269] = 2786, + [3270] = 2784, + [3271] = 2757, + [3272] = 2751, + [3273] = 2729, + [3274] = 2728, + [3275] = 2817, + [3276] = 2821, + [3277] = 2717, + [3278] = 2638, + [3279] = 2705, + [3280] = 1076, + [3281] = 2502, + [3282] = 3282, + [3283] = 2801, + [3284] = 2804, + [3285] = 3177, + [3286] = 2772, + [3287] = 2713, + [3288] = 3175, + [3289] = 2672, + [3290] = 2981, + [3291] = 2669, + [3292] = 3090, + [3293] = 2668, + [3294] = 2667, + [3295] = 2747, + [3296] = 2746, + [3297] = 2745, + [3298] = 2666, + [3299] = 2744, + [3300] = 2662, + [3301] = 2718, + [3302] = 2721, + [3303] = 3303, + [3304] = 2655, + [3305] = 2508, + [3306] = 3306, + [3307] = 2727, + [3308] = 2730, + [3309] = 2732, + [3310] = 3177, + [3311] = 2737, + [3312] = 336, + [3313] = 2741, + [3314] = 2749, + [3315] = 2755, + [3316] = 2758, + [3317] = 2761, + [3318] = 2763, + [3319] = 3319, + [3320] = 2765, + [3321] = 2768, + [3322] = 2769, + [3323] = 2770, + [3324] = 2774, + [3325] = 2777, + [3326] = 2816, + [3327] = 2778, + [3328] = 2782, + [3329] = 3175, + [3330] = 2797, + [3331] = 2800, + [3332] = 2802, + [3333] = 2803, + [3334] = 2783, [3335] = 3335, - [3336] = 2894, - [3337] = 3337, - [3338] = 2970, - [3339] = 2969, - [3340] = 2800, - [3341] = 2799, - [3342] = 3028, - [3343] = 3243, - [3344] = 2816, - [3345] = 2198, - [3346] = 2972, - [3347] = 3347, - [3348] = 2196, - [3349] = 2973, - [3350] = 2798, - [3351] = 2797, - [3352] = 2968, - [3353] = 3353, - [3354] = 2796, - [3355] = 2974, - [3356] = 2697, - [3357] = 2795, - [3358] = 2975, - [3359] = 2191, + [3336] = 2676, + [3337] = 2830, + [3338] = 3338, + [3339] = 2673, + [3340] = 3340, + [3341] = 3341, + [3342] = 3183, + [3343] = 3020, + [3344] = 3344, + [3345] = 3345, + [3346] = 2497, + [3347] = 371, + [3348] = 2923, + [3349] = 3177, + [3350] = 3175, + [3351] = 2659, + [3352] = 2923, + [3353] = 3090, + [3354] = 2651, + [3355] = 3175, + [3356] = 3177, + [3357] = 3177, + [3358] = 3177, + [3359] = 3359, [3360] = 3360, - [3361] = 2794, - [3362] = 2976, - [3363] = 3363, - [3364] = 334, - [3365] = 2967, - [3366] = 3366, - [3367] = 3309, - [3368] = 2963, - [3369] = 3314, - [3370] = 3309, - [3371] = 334, - [3372] = 2903, - [3373] = 2901, - [3374] = 2900, - [3375] = 2899, - [3376] = 2977, - [3377] = 2898, - [3378] = 3309, - [3379] = 2896, - [3380] = 3380, - [3381] = 2895, - [3382] = 3314, - [3383] = 2893, - [3384] = 3384, - [3385] = 2965, - [3386] = 2964, - [3387] = 2978, - [3388] = 2892, - [3389] = 2891, - [3390] = 2962, - [3391] = 2931, - [3392] = 2889, - [3393] = 1116, - [3394] = 2887, - [3395] = 2886, - [3396] = 3396, - [3397] = 2961, - [3398] = 2885, - [3399] = 2884, - [3400] = 2883, - [3401] = 2882, - [3402] = 2959, - [3403] = 2958, - [3404] = 2957, - [3405] = 2881, - [3406] = 2880, - [3407] = 2933, - [3408] = 2932, - [3409] = 2956, - [3410] = 3314, - [3411] = 2955, - [3412] = 2829, - [3413] = 2954, - [3414] = 2879, - [3415] = 3243, - [3416] = 3307, - [3417] = 2830, - [3418] = 3036, - [3419] = 2878, - [3420] = 2877, - [3421] = 2876, - [3422] = 2875, - [3423] = 2953, - [3424] = 1117, - [3425] = 2949, - [3426] = 3314, - [3427] = 3198, - [3428] = 2979, - [3429] = 3429, - [3430] = 1119, - [3431] = 2823, - [3432] = 3036, - [3433] = 2824, - [3434] = 2790, - [3435] = 2825, - [3436] = 2826, - [3437] = 2827, - [3438] = 2935, - [3439] = 2828, - [3440] = 2829, - [3441] = 2929, - [3442] = 2830, - [3443] = 2831, - [3444] = 3309, - [3445] = 2832, - [3446] = 2833, - [3447] = 2834, - [3448] = 2835, - [3449] = 2165, - [3450] = 3082, - [3451] = 2873, - [3452] = 2872, - [3453] = 2195, - [3454] = 2187, - [3455] = 2960, - [3456] = 2181, - [3457] = 2162, - [3458] = 2841, - [3459] = 2842, - [3460] = 3309, - [3461] = 360, - [3462] = 2691, - [3463] = 3309, - [3464] = 2843, - [3465] = 2871, - [3466] = 3066, - [3467] = 2844, - [3468] = 350, - [3469] = 2870, - [3470] = 2790, - [3471] = 2786, - [3472] = 3472, - [3473] = 2929, - [3474] = 2792, - [3475] = 2178, - [3476] = 2177, - [3477] = 3309, - [3478] = 2176, - [3479] = 2866, - [3480] = 2865, - [3481] = 2864, - [3482] = 2861, - [3483] = 2860, - [3484] = 2859, - [3485] = 2857, - [3486] = 2855, - [3487] = 2854, - [3488] = 2853, - [3489] = 2852, - [3490] = 3094, - [3491] = 2851, - [3492] = 2850, - [3493] = 2944, - [3494] = 2849, - [3495] = 2848, - [3496] = 3314, - [3497] = 3314, - [3498] = 2829, - [3499] = 2847, - [3500] = 3198, - [3501] = 3094, - [3502] = 2647, - [3503] = 2846, - [3504] = 1118, - [3505] = 2830, - [3506] = 2945, - [3507] = 2946, - [3508] = 2947, - [3509] = 2948, - [3510] = 3510, - [3511] = 3082, - [3512] = 3512, - [3513] = 349, - [3514] = 2723, - [3515] = 355, + [3361] = 3175, + [3362] = 2646, + [3363] = 372, + [3364] = 2802, + [3365] = 2732, + [3366] = 2802, + [3367] = 2923, + [3368] = 2903, + [3369] = 2800, + [3370] = 2797, + [3371] = 2783, + [3372] = 2901, + [3373] = 3373, + [3374] = 2782, + [3375] = 2887, + [3376] = 3376, + [3377] = 2778, + [3378] = 2870, + [3379] = 2777, + [3380] = 2869, + [3381] = 2864, + [3382] = 2774, + [3383] = 2770, + [3384] = 2769, + [3385] = 2856, + [3386] = 2768, + [3387] = 2765, + [3388] = 2763, + [3389] = 2761, + [3390] = 2758, + [3391] = 2755, + [3392] = 2599, + [3393] = 2749, + [3394] = 3376, + [3395] = 2911, + [3396] = 2741, + [3397] = 2932, + [3398] = 2737, + [3399] = 2804, + [3400] = 2801, + [3401] = 2944, + [3402] = 2732, + [3403] = 2747, + [3404] = 2931, + [3405] = 347, + [3406] = 2730, + [3407] = 348, + [3408] = 2727, + [3409] = 3002, + [3410] = 2803, + [3411] = 348, + [3412] = 349, + [3413] = 349, + [3414] = 2943, + [3415] = 2721, + [3416] = 360, + [3417] = 2585, + [3418] = 3112, + [3419] = 2885, + [3420] = 3376, + [3421] = 2891, + [3422] = 352, + [3423] = 3376, + [3424] = 355, + [3425] = 2899, + [3426] = 2763, + [3427] = 3427, + [3428] = 3428, + [3429] = 2959, + [3430] = 352, + [3431] = 2601, + [3432] = 355, + [3433] = 2718, + [3434] = 3434, + [3435] = 368, + [3436] = 3436, + [3437] = 3434, + [3438] = 2802, + [3439] = 2563, + [3440] = 3176, + [3441] = 3441, + [3442] = 3442, + [3443] = 2747, + [3444] = 2746, + [3445] = 3445, + [3446] = 2975, + [3447] = 2778, + [3448] = 2745, + [3449] = 2744, + [3450] = 3450, + [3451] = 3376, + [3452] = 357, + [3453] = 2981, + [3454] = 3454, + [3455] = 3442, + [3456] = 376, + [3457] = 2572, + [3458] = 2713, + [3459] = 3459, + [3460] = 357, + [3461] = 2718, + [3462] = 3462, + [3463] = 2721, + [3464] = 3464, + [3465] = 2727, + [3466] = 2730, + [3467] = 2580, + [3468] = 376, + [3469] = 2940, + [3470] = 2732, + [3471] = 2737, + [3472] = 2741, + [3473] = 2926, + [3474] = 2749, + [3475] = 2755, + [3476] = 2758, + [3477] = 2800, + [3478] = 2761, + [3479] = 2797, + [3480] = 2601, + [3481] = 2591, + [3482] = 2765, + [3483] = 2768, + [3484] = 2797, + [3485] = 2769, + [3486] = 362, + [3487] = 362, + [3488] = 2857, + [3489] = 2770, + [3490] = 2570, + [3491] = 2906, + [3492] = 2599, + [3493] = 3112, + [3494] = 2974, + [3495] = 3495, + [3496] = 2774, + [3497] = 3020, + [3498] = 3176, + [3499] = 3376, + [3500] = 2777, + [3501] = 2778, + [3502] = 2782, + [3503] = 2783, + [3504] = 2925, + [3505] = 2713, + [3506] = 2570, + [3507] = 2981, + [3508] = 364, + [3509] = 2565, + [3510] = 2713, + [3511] = 2718, + [3512] = 2927, + [3513] = 3513, + [3514] = 2571, + [3515] = 2928, [3516] = 3516, - [3517] = 359, - [3518] = 370, - [3519] = 354, - [3520] = 351, - [3521] = 357, + [3517] = 2721, + [3518] = 2851, + [3519] = 2847, + [3520] = 3090, + [3521] = 2571, [3522] = 3522, - [3523] = 3523, - [3524] = 3049, - [3525] = 3051, - [3526] = 370, - [3527] = 3527, - [3528] = 359, - [3529] = 3053, - [3530] = 2945, - [3531] = 2729, - [3532] = 355, - [3533] = 3007, - [3534] = 3534, - [3535] = 3008, - [3536] = 3009, - [3537] = 352, - [3538] = 3011, - [3539] = 3539, - [3540] = 349, - [3541] = 354, - [3542] = 3542, - [3543] = 3543, - [3544] = 351, - [3545] = 3545, - [3546] = 357, - [3547] = 3012, - [3548] = 2719, - [3549] = 2792, - [3550] = 363, - [3551] = 3019, - [3552] = 365, - [3553] = 2722, + [3523] = 2800, + [3524] = 2727, + [3525] = 2934, + [3526] = 3526, + [3527] = 2846, + [3528] = 2843, + [3529] = 2937, + [3530] = 2942, + [3531] = 2730, + [3532] = 2832, + [3533] = 2591, + [3534] = 3376, + [3535] = 2981, + [3536] = 3536, + [3537] = 2578, + [3538] = 363, + [3539] = 2783, + [3540] = 2782, + [3541] = 2830, + [3542] = 2745, + [3543] = 2803, + [3544] = 364, + [3545] = 365, + [3546] = 2737, + [3547] = 2948, + [3548] = 2894, + [3549] = 2741, + [3550] = 2744, + [3551] = 2563, + [3552] = 3552, + [3553] = 2749, [3554] = 3554, - [3555] = 3081, - [3556] = 377, - [3557] = 2725, - [3558] = 3522, - [3559] = 2987, - [3560] = 3065, - [3561] = 2713, - [3562] = 2974, - [3563] = 2976, - [3564] = 2975, - [3565] = 3522, - [3566] = 2974, - [3567] = 2973, - [3568] = 2975, - [3569] = 3020, - [3570] = 3021, - [3571] = 3571, - [3572] = 3572, - [3573] = 3028, - [3574] = 3100, - [3575] = 2981, - [3576] = 3062, - [3577] = 3058, - [3578] = 3044, - [3579] = 2716, - [3580] = 3246, - [3581] = 3581, - [3582] = 3198, - [3583] = 3583, - [3584] = 2976, - [3585] = 3123, - [3586] = 2975, - [3587] = 3522, - [3588] = 3110, - [3589] = 3109, - [3590] = 3105, - [3591] = 3022, - [3592] = 352, - [3593] = 3593, + [3555] = 2803, + [3556] = 3556, + [3557] = 2839, + [3558] = 2836, + [3559] = 347, + [3560] = 2995, + [3561] = 2956, + [3562] = 2572, + [3563] = 2755, + [3564] = 2585, + [3565] = 2830, + [3566] = 3376, + [3567] = 2758, + [3568] = 2801, + [3569] = 2804, + [3570] = 2896, + [3571] = 3526, + [3572] = 2984, + [3573] = 3573, + [3574] = 2761, + [3575] = 2746, + [3576] = 2763, + [3577] = 360, + [3578] = 2943, + [3579] = 363, + [3580] = 2915, + [3581] = 1865, + [3582] = 3573, + [3583] = 2916, + [3584] = 3090, + [3585] = 2933, + [3586] = 2744, + [3587] = 2745, + [3588] = 2746, + [3589] = 2747, + [3590] = 365, + [3591] = 2777, + [3592] = 2957, + [3593] = 2765, [3594] = 3594, - [3595] = 2713, - [3596] = 363, - [3597] = 3023, - [3598] = 365, - [3599] = 2973, - [3600] = 377, - [3601] = 3084, - [3602] = 3103, - [3603] = 3036, - [3604] = 3101, - [3605] = 2976, - [3606] = 3028, - [3607] = 2716, - [3608] = 3539, - [3609] = 3102, - [3610] = 2736, - [3611] = 2721, - [3612] = 3106, - [3613] = 3107, - [3614] = 3108, - [3615] = 2973, - [3616] = 3026, - [3617] = 3305, - [3618] = 2723, - [3619] = 2944, - [3620] = 2719, - [3621] = 2829, - [3622] = 3516, - [3623] = 2955, - [3624] = 2725, - [3625] = 2830, - [3626] = 2946, - [3627] = 2720, - [3628] = 372, - [3629] = 2722, - [3630] = 3522, - [3631] = 3631, - [3632] = 2944, - [3633] = 2945, - [3634] = 3522, - [3635] = 371, - [3636] = 2946, - [3637] = 2947, - [3638] = 2947, - [3639] = 2830, - [3640] = 3077, - [3641] = 2948, - [3642] = 2949, - [3643] = 2953, - [3644] = 2974, - [3645] = 2948, - [3646] = 2949, - [3647] = 2953, - [3648] = 2954, - [3649] = 2954, - [3650] = 2955, - [3651] = 2956, - [3652] = 2104, + [3595] = 2581, + [3596] = 2774, + [3597] = 2768, + [3598] = 2943, + [3599] = 2770, + [3600] = 2961, + [3601] = 2963, + [3602] = 3513, + [3603] = 2898, + [3604] = 2889, + [3605] = 2979, + [3606] = 2673, + [3607] = 2983, + [3608] = 2769, + [3609] = 2863, + [3610] = 2576, + [3611] = 2982, + [3612] = 2998, + [3613] = 2986, + [3614] = 3376, + [3615] = 368, + [3616] = 3616, + [3617] = 3617, + [3618] = 3618, + [3619] = 2830, + [3620] = 2778, + [3621] = 3090, + [3622] = 1871, + [3623] = 3623, + [3624] = 2943, + [3625] = 3112, + [3626] = 3626, + [3627] = 3617, + [3628] = 3623, + [3629] = 3618, + [3630] = 3617, + [3631] = 3090, + [3632] = 3626, + [3633] = 2718, + [3634] = 3617, + [3635] = 2721, + [3636] = 2923, + [3637] = 1993, + [3638] = 3626, + [3639] = 3639, + [3640] = 3090, + [3641] = 2981, + [3642] = 3639, + [3643] = 3643, + [3644] = 3644, + [3645] = 2857, + [3646] = 3646, + [3647] = 960, + [3648] = 3176, + [3649] = 3618, + [3650] = 3623, + [3651] = 3623, + [3652] = 3618, [3653] = 3653, - [3654] = 2957, - [3655] = 2958, - [3656] = 2829, - [3657] = 2959, - [3658] = 2960, - [3659] = 2961, - [3660] = 2962, - [3661] = 2964, - [3662] = 2965, - [3663] = 2967, - [3664] = 2968, - [3665] = 2969, - [3666] = 2970, - [3667] = 2712, - [3668] = 2972, - [3669] = 2956, - [3670] = 2977, - [3671] = 3198, - [3672] = 2957, - [3673] = 2715, - [3674] = 2958, - [3675] = 3593, - [3676] = 2978, - [3677] = 2959, - [3678] = 2991, - [3679] = 3028, - [3680] = 2960, - [3681] = 3124, - [3682] = 2944, - [3683] = 2961, - [3684] = 2979, - [3685] = 3305, - [3686] = 3094, - [3687] = 3246, - [3688] = 2962, - [3689] = 2964, - [3690] = 2965, - [3691] = 2967, - [3692] = 2945, - [3693] = 2946, - [3694] = 2968, - [3695] = 2947, - [3696] = 2969, - [3697] = 2979, - [3698] = 2970, - [3699] = 2948, - [3700] = 3522, - [3701] = 2972, - [3702] = 2949, - [3703] = 2953, - [3704] = 3148, - [3705] = 2978, - [3706] = 3035, - [3707] = 2954, - [3708] = 2955, - [3709] = 2977, - [3710] = 2956, - [3711] = 3096, - [3712] = 2978, - [3713] = 3036, - [3714] = 2979, - [3715] = 2977, - [3716] = 3085, - [3717] = 2972, - [3718] = 2957, - [3719] = 2958, - [3720] = 3050, - [3721] = 2959, - [3722] = 2997, - [3723] = 3013, - [3724] = 2712, - [3725] = 2929, - [3726] = 2960, - [3727] = 2961, - [3728] = 2970, - [3729] = 3036, - [3730] = 2969, - [3731] = 3243, - [3732] = 2968, - [3733] = 3030, - [3734] = 3054, + [3654] = 2758, + [3655] = 2923, + [3656] = 2727, + [3657] = 2745, + [3658] = 3658, + [3659] = 2730, + [3660] = 2801, + [3661] = 3616, + [3662] = 2732, + [3663] = 3663, + [3664] = 3664, + [3665] = 3626, + [3666] = 3090, + [3667] = 3618, + [3668] = 3639, + [3669] = 3669, + [3670] = 3617, + [3671] = 2746, + [3672] = 2974, + [3673] = 2803, + [3674] = 3674, + [3675] = 3052, + [3676] = 3639, + [3677] = 3626, + [3678] = 2802, + [3679] = 2800, + [3680] = 3639, + [3681] = 2797, + [3682] = 2747, + [3683] = 2804, + [3684] = 3639, + [3685] = 2646, + [3686] = 2906, + [3687] = 3618, + [3688] = 3623, + [3689] = 3617, + [3690] = 3618, + [3691] = 3626, + [3692] = 3623, + [3693] = 2673, + [3694] = 2783, + [3695] = 2761, + [3696] = 2763, + [3697] = 2737, + [3698] = 3617, + [3699] = 3626, + [3700] = 3700, + [3701] = 2741, + [3702] = 2765, + [3703] = 2768, + [3704] = 2769, + [3705] = 2770, + [3706] = 3639, + [3707] = 3618, + [3708] = 3623, + [3709] = 2744, + [3710] = 3639, + [3711] = 2713, + [3712] = 3623, + [3713] = 3617, + [3714] = 3626, + [3715] = 2749, + [3716] = 2755, + [3717] = 2974, + [3718] = 2774, + [3719] = 2777, + [3720] = 2782, + [3721] = 3721, + [3722] = 3722, + [3723] = 2943, + [3724] = 2981, + [3725] = 3090, + [3726] = 3726, + [3727] = 3727, + [3728] = 3728, + [3729] = 3729, + [3730] = 2830, + [3731] = 370, + [3732] = 3732, + [3733] = 3733, + [3734] = 3734, [3735] = 3735, - [3736] = 3736, - [3737] = 2962, - [3738] = 2717, - [3739] = 3522, - [3740] = 2736, - [3741] = 2964, - [3742] = 371, - [3743] = 3512, - [3744] = 2967, - [3745] = 3522, - [3746] = 2989, - [3747] = 3033, - [3748] = 2965, - [3749] = 3073, - [3750] = 2929, - [3751] = 3125, - [3752] = 3126, - [3753] = 3581, + [3736] = 960, + [3737] = 335, + [3738] = 3112, + [3739] = 3739, + [3740] = 337, + [3741] = 3741, + [3742] = 3742, + [3743] = 3743, + [3744] = 3744, + [3745] = 3745, + [3746] = 3115, + [3747] = 3747, + [3748] = 3748, + [3749] = 2584, + [3750] = 3750, + [3751] = 3751, + [3752] = 3752, + [3753] = 2923, [3754] = 3754, - [3755] = 3066, - [3756] = 3127, - [3757] = 3016, - [3758] = 372, + [3755] = 2646, + [3756] = 3756, + [3757] = 3757, + [3758] = 3758, [3759] = 3759, [3760] = 3760, - [3761] = 3017, - [3762] = 3762, + [3761] = 354, + [3762] = 2923, [3763] = 3763, [3764] = 3764, - [3765] = 2976, + [3765] = 3765, [3766] = 3766, - [3767] = 3763, - [3768] = 3763, - [3769] = 2949, - [3770] = 2948, - [3771] = 2947, - [3772] = 2946, - [3773] = 2945, + [3767] = 3767, + [3768] = 374, + [3769] = 354, + [3770] = 3770, + [3771] = 3771, + [3772] = 2011, + [3773] = 3773, [3774] = 3774, - [3775] = 2973, + [3775] = 3775, [3776] = 3776, - [3777] = 3036, - [3778] = 2953, - [3779] = 2954, - [3780] = 3763, - [3781] = 3781, + [3777] = 3777, + [3778] = 3778, + [3779] = 3779, + [3780] = 3780, + [3781] = 2607, [3782] = 3782, - [3783] = 3763, - [3784] = 3082, - [3785] = 2956, - [3786] = 3774, - [3787] = 963, - [3788] = 3305, - [3789] = 3781, - [3790] = 3066, + [3783] = 375, + [3784] = 3784, + [3785] = 1999, + [3786] = 2830, + [3787] = 371, + [3788] = 372, + [3789] = 3427, + [3790] = 3790, [3791] = 3791, - [3792] = 3764, - [3793] = 3776, - [3794] = 3774, - [3795] = 3774, - [3796] = 3054, - [3797] = 3781, - [3798] = 3781, - [3799] = 3764, - [3800] = 3774, - [3801] = 3776, - [3802] = 3764, - [3803] = 2792, - [3804] = 2957, - [3805] = 2958, - [3806] = 2959, - [3807] = 2960, - [3808] = 2961, - [3809] = 2962, - [3810] = 2964, - [3811] = 2965, - [3812] = 2015, - [3813] = 2967, - [3814] = 3198, - [3815] = 3815, - [3816] = 3246, - [3817] = 2968, - [3818] = 2969, - [3819] = 2970, - [3820] = 3781, - [3821] = 3776, - [3822] = 3781, + [3792] = 3176, + [3793] = 2003, + [3794] = 3791, + [3795] = 2830, + [3796] = 2005, + [3797] = 3797, + [3798] = 3798, + [3799] = 3799, + [3800] = 3800, + [3801] = 370, + [3802] = 3802, + [3803] = 1039, + [3804] = 3804, + [3805] = 2906, + [3806] = 2974, + [3807] = 338, + [3808] = 996, + [3809] = 3809, + [3810] = 2857, + [3811] = 2010, + [3812] = 3812, + [3813] = 3790, + [3814] = 3814, + [3815] = 3764, + [3816] = 3816, + [3817] = 3817, + [3818] = 3818, + [3819] = 3819, + [3820] = 3820, + [3821] = 3821, + [3822] = 3822, [3823] = 3823, - [3824] = 3774, - [3825] = 3776, - [3826] = 2829, - [3827] = 3764, - [3828] = 2830, - [3829] = 3774, - [3830] = 3198, - [3831] = 3028, - [3832] = 3832, - [3833] = 3781, - [3834] = 3198, - [3835] = 2955, - [3836] = 2929, - [3837] = 3837, - [3838] = 2979, - [3839] = 3763, - [3840] = 3198, - [3841] = 3094, - [3842] = 3776, - [3843] = 2972, - [3844] = 2974, - [3845] = 3764, - [3846] = 3781, - [3847] = 3774, - [3848] = 2975, - [3849] = 3776, - [3850] = 3764, - [3851] = 3224, - [3852] = 3094, - [3853] = 3853, - [3854] = 2140, - [3855] = 3855, - [3856] = 2944, - [3857] = 2790, - [3858] = 2978, - [3859] = 3763, - [3860] = 3860, - [3861] = 2977, - [3862] = 3763, - [3863] = 3791, - [3864] = 3054, - [3865] = 3865, - [3866] = 3776, - [3867] = 3764, - [3868] = 3246, - [3869] = 3869, - [3870] = 3870, - [3871] = 339, - [3872] = 3872, - [3873] = 3873, - [3874] = 3874, - [3875] = 2726, - [3876] = 3876, - [3877] = 3877, - [3878] = 3878, - [3879] = 3879, - [3880] = 2790, - [3881] = 2929, - [3882] = 369, - [3883] = 3036, - [3884] = 3094, - [3885] = 3885, - [3886] = 3886, - [3887] = 963, - [3888] = 3888, - [3889] = 335, - [3890] = 3890, - [3891] = 3160, - [3892] = 3892, - [3893] = 3094, - [3894] = 3894, - [3895] = 3895, - [3896] = 3028, - [3897] = 3897, - [3898] = 3898, - [3899] = 3899, - [3900] = 347, + [3824] = 3824, + [3825] = 3825, + [3826] = 3826, + [3827] = 3827, + [3828] = 3812, + [3829] = 3782, + [3830] = 3830, + [3831] = 3822, + [3832] = 2830, + [3833] = 337, + [3834] = 335, + [3835] = 3814, + [3836] = 3797, + [3837] = 1018, + [3838] = 3809, + [3839] = 3800, + [3840] = 1045, + [3841] = 3841, + [3842] = 2007, + [3843] = 3843, + [3844] = 370, + [3845] = 354, + [3846] = 3841, + [3847] = 3784, + [3848] = 1024, + [3849] = 3849, + [3850] = 372, + [3851] = 1038, + [3852] = 1019, + [3853] = 1025, + [3854] = 1046, + [3855] = 1023, + [3856] = 1052, + [3857] = 371, + [3858] = 1022, + [3859] = 372, + [3860] = 3849, + [3861] = 371, + [3862] = 1018, + [3863] = 3849, + [3864] = 1016, + [3865] = 370, + [3866] = 3849, + [3867] = 3849, + [3868] = 370, + [3869] = 3849, + [3870] = 1016, + [3871] = 996, + [3872] = 366, + [3873] = 367, + [3874] = 1039, + [3875] = 375, + [3876] = 354, + [3877] = 374, + [3878] = 353, + [3879] = 377, + [3880] = 1045, + [3881] = 354, + [3882] = 370, + [3883] = 1026, + [3884] = 3849, + [3885] = 354, + [3886] = 1027, + [3887] = 3849, + [3888] = 1028, + [3889] = 3849, + [3890] = 338, + [3891] = 372, + [3892] = 1029, + [3893] = 1030, + [3894] = 371, + [3895] = 1031, + [3896] = 1033, + [3897] = 1214, + [3898] = 1113, + [3899] = 1019, + [3900] = 1023, [3901] = 3901, - [3902] = 3198, - [3903] = 3903, - [3904] = 3904, - [3905] = 3905, - [3906] = 3906, - [3907] = 3907, - [3908] = 3908, - [3909] = 3909, - [3910] = 1011, - [3911] = 2750, - [3912] = 361, - [3913] = 3305, - [3914] = 3914, - [3915] = 3915, - [3916] = 3916, - [3917] = 353, - [3918] = 3916, - [3919] = 3919, - [3920] = 3920, - [3921] = 3921, - [3922] = 338, - [3923] = 3923, - [3924] = 3924, - [3925] = 3914, - [3926] = 3926, - [3927] = 3927, - [3928] = 3735, - [3929] = 3929, - [3930] = 2149, - [3931] = 3931, - [3932] = 3932, - [3933] = 3933, - [3934] = 3934, - [3935] = 3935, - [3936] = 2155, - [3937] = 3937, - [3938] = 350, - [3939] = 3939, - [3940] = 3940, - [3941] = 3941, - [3942] = 347, - [3943] = 3929, - [3944] = 369, - [3945] = 3939, - [3946] = 2156, - [3947] = 3947, - [3948] = 3948, - [3949] = 3949, - [3950] = 3915, - [3951] = 3949, - [3952] = 1014, - [3953] = 3953, - [3954] = 369, - [3955] = 3926, - [3956] = 2154, - [3957] = 3957, - [3958] = 347, - [3959] = 3940, - [3960] = 3953, - [3961] = 3961, - [3962] = 339, - [3963] = 1035, - [3964] = 360, - [3965] = 3965, - [3966] = 3966, - [3967] = 3961, - [3968] = 335, - [3969] = 3969, - [3970] = 3970, - [3971] = 3082, - [3972] = 3066, - [3973] = 3973, - [3974] = 3054, - [3975] = 2929, - [3976] = 1042, - [3977] = 3931, - [3978] = 3978, - [3979] = 3979, - [3980] = 3980, - [3981] = 3981, - [3982] = 3982, - [3983] = 3983, - [3984] = 3984, - [3985] = 3985, - [3986] = 2929, - [3987] = 3987, - [3988] = 3988, - [3989] = 3989, - [3990] = 3947, - [3991] = 2929, - [3992] = 2157, - [3993] = 3993, - [3994] = 2148, - [3995] = 347, - [3996] = 1040, - [3997] = 3997, - [3998] = 1042, - [3999] = 347, - [4000] = 3997, - [4001] = 1014, - [4002] = 1030, - [4003] = 361, - [4004] = 3997, - [4005] = 1053, - [4006] = 353, - [4007] = 1015, - [4008] = 368, - [4009] = 350, - [4010] = 360, - [4011] = 3997, - [4012] = 346, - [4013] = 376, - [4014] = 367, - [4015] = 338, - [4016] = 1043, - [4017] = 350, - [4018] = 360, - [4019] = 1052, - [4020] = 369, - [4021] = 3997, - [4022] = 350, - [4023] = 360, - [4024] = 3997, - [4025] = 1046, - [4026] = 1011, - [4027] = 3997, - [4028] = 1030, - [4029] = 369, - [4030] = 1025, - [4031] = 1026, - [4032] = 1028, - [4033] = 347, - [4034] = 1035, - [4035] = 3997, - [4036] = 1050, - [4037] = 1051, - [4038] = 1054, - [4039] = 1038, - [4040] = 3997, - [4041] = 1049, - [4042] = 1037, - [4043] = 369, - [4044] = 1156, - [4045] = 1198, - [4046] = 1040, - [4047] = 1015, - [4048] = 1037, - [4049] = 1222, - [4050] = 1223, - [4051] = 1224, - [4052] = 1230, - [4053] = 1238, - [4054] = 1061, - [4055] = 1046, - [4056] = 1245, - [4057] = 1246, - [4058] = 1247, - [4059] = 1049, - [4060] = 1249, - [4061] = 1252, - [4062] = 1254, - [4063] = 1257, - [4064] = 1258, - [4065] = 1131, - [4066] = 1073, - [4067] = 1080, - [4068] = 1082, - [4069] = 1085, - [4070] = 1255, - [4071] = 1053, - [4072] = 1093, - [4073] = 347, - [4074] = 1219, - [4075] = 1244, - [4076] = 1240, - [4077] = 1239, - [4078] = 1237, - [4079] = 1229, - [4080] = 1092, - [4081] = 1217, - [4082] = 1184, - [4083] = 350, - [4084] = 348, - [4085] = 1182, - [4086] = 1181, - [4087] = 1175, - [4088] = 1174, - [4089] = 1173, - [4090] = 1169, - [4091] = 1159, - [4092] = 1127, - [4093] = 1133, - [4094] = 1160, - [4095] = 1158, - [4096] = 368, - [4097] = 1161, - [4098] = 346, - [4099] = 1162, - [4100] = 1163, - [4101] = 1164, - [4102] = 1157, - [4103] = 1056, - [4104] = 1155, - [4105] = 1153, - [4106] = 1088, - [4107] = 1152, - [4108] = 369, - [4109] = 1052, - [4110] = 1038, - [4111] = 1172, - [4112] = 1176, - [4113] = 1151, - [4114] = 1150, - [4115] = 1148, - [4116] = 1145, - [4117] = 1143, - [4118] = 1142, - [4119] = 1141, - [4120] = 1139, - [4121] = 1137, - [4122] = 1054, - [4123] = 350, - [4124] = 1185, - [4125] = 1218, - [4126] = 1051, - [4127] = 1050, - [4128] = 1187, - [4129] = 1188, - [4130] = 1189, - [4131] = 1190, - [4132] = 1191, - [4133] = 1081, - [4134] = 1079, - [4135] = 360, - [4136] = 1083, - [4137] = 1086, - [4138] = 1103, - [4139] = 1104, - [4140] = 1078, - [4141] = 1072, - [4142] = 1192, - [4143] = 1107, - [4144] = 1195, - [4145] = 1108, - [4146] = 1201, - [4147] = 1202, - [4148] = 1203, - [4149] = 1111, - [4150] = 1207, - [4151] = 1208, - [4152] = 1209, - [4153] = 1210, - [4154] = 1212, - [4155] = 1216, - [4156] = 360, - [4157] = 1225, - [4158] = 1226, - [4159] = 366, - [4160] = 1227, - [4161] = 1132, - [4162] = 1211, - [4163] = 1228, - [4164] = 1231, - [4165] = 1232, - [4166] = 1234, - [4167] = 1235, - [4168] = 1101, - [4169] = 1128, - [4170] = 1123, - [4171] = 376, - [4172] = 367, - [4173] = 1121, - [4174] = 1115, - [4175] = 1114, - [4176] = 1113, - [4177] = 1110, - [4178] = 1105, - [4179] = 1116, - [4180] = 1102, - [4181] = 360, - [4182] = 346, - [4183] = 368, - [4184] = 1025, - [4185] = 1125, - [4186] = 1026, - [4187] = 1028, - [4188] = 1119, - [4189] = 347, - [4190] = 4190, - [4191] = 1241, - [4192] = 1251, - [4193] = 1253, - [4194] = 1199, + [3902] = 370, + [3903] = 1046, + [3904] = 1038, + [3905] = 1022, + [3906] = 354, + [3907] = 1076, + [3908] = 1073, + [3909] = 354, + [3910] = 1098, + [3911] = 1102, + [3912] = 1103, + [3913] = 1104, + [3914] = 1106, + [3915] = 1189, + [3916] = 1029, + [3917] = 1030, + [3918] = 1031, + [3919] = 1211, + [3920] = 1108, + [3921] = 1109, + [3922] = 1110, + [3923] = 1111, + [3924] = 1112, + [3925] = 372, + [3926] = 1114, + [3927] = 1115, + [3928] = 1055, + [3929] = 1202, + [3930] = 1203, + [3931] = 1204, + [3932] = 1117, + [3933] = 1121, + [3934] = 1122, + [3935] = 1123, + [3936] = 1124, + [3937] = 1125, + [3938] = 1126, + [3939] = 1127, + [3940] = 1028, + [3941] = 1027, + [3942] = 1026, + [3943] = 1128, + [3944] = 1129, + [3945] = 1130, + [3946] = 1131, + [3947] = 1132, + [3948] = 1133, + [3949] = 1107, + [3950] = 1052, + [3951] = 1198, + [3952] = 1199, + [3953] = 1201, + [3954] = 1135, + [3955] = 1212, + [3956] = 1213, + [3957] = 1215, + [3958] = 353, + [3959] = 377, + [3960] = 1136, + [3961] = 1140, + [3962] = 1141, + [3963] = 1182, + [3964] = 1142, + [3965] = 1097, + [3966] = 1143, + [3967] = 1033, + [3968] = 1024, + [3969] = 1205, + [3970] = 1210, + [3971] = 1069, + [3972] = 1180, + [3973] = 1144, + [3974] = 1145, + [3975] = 1146, + [3976] = 1147, + [3977] = 1148, + [3978] = 1149, + [3979] = 1150, + [3980] = 1151, + [3981] = 1152, + [3982] = 1192, + [3983] = 1153, + [3984] = 1088, + [3985] = 1221, + [3986] = 1025, + [3987] = 1116, + [3988] = 1220, + [3989] = 1195, + [3990] = 1216, + [3991] = 1155, + [3992] = 1156, + [3993] = 1157, + [3994] = 1158, + [3995] = 1160, + [3996] = 1161, + [3997] = 1162, + [3998] = 1179, + [3999] = 1163, + [4000] = 1164, + [4001] = 1071, + [4002] = 1165, + [4003] = 366, + [4004] = 367, + [4005] = 372, + [4006] = 371, + [4007] = 366, + [4008] = 1188, + [4009] = 1070, + [4010] = 1187, + [4011] = 1185, + [4012] = 1184, + [4013] = 372, + [4014] = 1166, + [4015] = 1167, + [4016] = 1168, + [4017] = 1096, + [4018] = 1169, + [4019] = 1181, + [4020] = 371, + [4021] = 1178, + [4022] = 1170, + [4023] = 1154, + [4024] = 1134, + [4025] = 1177, + [4026] = 1176, + [4027] = 371, + [4028] = 1074, + [4029] = 1075, + [4030] = 1077, + [4031] = 1080, + [4032] = 1175, + [4033] = 1174, + [4034] = 1092, + [4035] = 1081, + [4036] = 1090, + [4037] = 1082, + [4038] = 1091, + [4039] = 1089, + [4040] = 1171, + [4041] = 1083, + [4042] = 1087, + [4043] = 1172, + [4044] = 1173, + [4045] = 367, + [4046] = 370, + [4047] = 369, + [4048] = 1072, + [4049] = 373, + [4050] = 4050, + [4051] = 1211, + [4052] = 4052, + [4053] = 4053, + [4054] = 4054, + [4055] = 4055, + [4056] = 1174, + [4057] = 1175, + [4058] = 1141, + [4059] = 4059, + [4060] = 1080, + [4061] = 1077, + [4062] = 1075, + [4063] = 1074, + [4064] = 1176, + [4065] = 1177, + [4066] = 1210, + [4067] = 1205, + [4068] = 4068, + [4069] = 4069, + [4070] = 4070, + [4071] = 4071, + [4072] = 369, + [4073] = 1173, + [4074] = 4074, + [4075] = 1129, + [4076] = 1128, + [4077] = 1142, + [4078] = 4078, + [4079] = 1180, + [4080] = 1069, + [4081] = 1076, + [4082] = 1071, + [4083] = 4083, + [4084] = 1070, + [4085] = 1168, + [4086] = 4086, + [4087] = 4087, + [4088] = 4088, + [4089] = 1182, + [4090] = 4090, + [4091] = 4091, + [4092] = 4092, + [4093] = 4093, + [4094] = 4094, + [4095] = 4095, + [4096] = 4096, + [4097] = 1127, + [4098] = 4098, + [4099] = 4099, + [4100] = 1164, + [4101] = 4101, + [4102] = 4102, + [4103] = 1189, + [4104] = 4104, + [4105] = 4105, + [4106] = 4106, + [4107] = 4107, + [4108] = 4108, + [4109] = 4109, + [4110] = 1172, + [4111] = 1087, + [4112] = 4112, + [4113] = 1171, + [4114] = 4114, + [4115] = 1089, + [4116] = 1091, + [4117] = 1090, + [4118] = 1092, + [4119] = 4119, + [4120] = 4120, + [4121] = 1134, + [4122] = 1154, + [4123] = 1170, + [4124] = 1178, + [4125] = 1181, + [4126] = 1165, + [4127] = 1169, + [4128] = 4128, + [4129] = 1097, + [4130] = 1130, + [4131] = 1167, + [4132] = 1166, + [4133] = 1143, + [4134] = 4134, + [4135] = 367, + [4136] = 4136, + [4137] = 4137, + [4138] = 373, + [4139] = 366, + [4140] = 1106, + [4141] = 1104, + [4142] = 1072, + [4143] = 1126, + [4144] = 1103, + [4145] = 1125, + [4146] = 1102, + [4147] = 1122, + [4148] = 1098, + [4149] = 4149, + [4150] = 4150, + [4151] = 4151, + [4152] = 1157, + [4153] = 4153, + [4154] = 1140, + [4155] = 4155, + [4156] = 1184, + [4157] = 1133, + [4158] = 4158, + [4159] = 1132, + [4160] = 4160, + [4161] = 1144, + [4162] = 1185, + [4163] = 4163, + [4164] = 1083, + [4165] = 1124, + [4166] = 1082, + [4167] = 1081, + [4168] = 1123, + [4169] = 4169, + [4170] = 1121, + [4171] = 1187, + [4172] = 1188, + [4173] = 371, + [4174] = 1073, + [4175] = 4175, + [4176] = 4176, + [4177] = 1131, + [4178] = 1107, + [4179] = 1198, + [4180] = 1199, + [4181] = 1201, + [4182] = 4182, + [4183] = 4183, + [4184] = 4184, + [4185] = 4185, + [4186] = 1163, + [4187] = 1162, + [4188] = 1161, + [4189] = 1160, + [4190] = 1158, + [4191] = 372, + [4192] = 1156, + [4193] = 1155, + [4194] = 1117, [4195] = 1204, - [4196] = 1205, - [4197] = 1206, - [4198] = 1043, - [4199] = 1213, - [4200] = 1215, - [4201] = 1220, - [4202] = 1117, - [4203] = 1221, - [4204] = 1233, - [4205] = 1243, - [4206] = 1250, - [4207] = 1200, - [4208] = 1256, - [4209] = 1059, - [4210] = 369, - [4211] = 1087, - [4212] = 1071, - [4213] = 1060, - [4214] = 1118, - [4215] = 350, - [4216] = 1091, - [4217] = 1120, - [4218] = 1069, - [4219] = 1122, - [4220] = 1134, - [4221] = 1214, - [4222] = 1135, - [4223] = 1154, - [4224] = 1166, - [4225] = 1167, - [4226] = 1177, - [4227] = 1180, - [4228] = 1183, - [4229] = 1186, - [4230] = 1193, - [4231] = 1194, - [4232] = 1196, - [4233] = 1197, + [4196] = 1216, + [4197] = 1203, + [4198] = 1195, + [4199] = 1220, + [4200] = 1116, + [4201] = 1202, + [4202] = 1221, + [4203] = 1088, + [4204] = 1153, + [4205] = 1192, + [4206] = 1152, + [4207] = 1135, + [4208] = 1151, + [4209] = 1150, + [4210] = 1055, + [4211] = 1212, + [4212] = 1115, + [4213] = 1114, + [4214] = 1113, + [4215] = 1112, + [4216] = 1145, + [4217] = 1111, + [4218] = 1110, + [4219] = 1213, + [4220] = 1109, + [4221] = 1108, + [4222] = 1146, + [4223] = 1147, + [4224] = 1214, + [4225] = 1215, + [4226] = 1136, + [4227] = 1179, + [4228] = 1149, + [4229] = 4229, + [4230] = 4230, + [4231] = 4231, + [4232] = 1096, + [4233] = 1148, [4234] = 4234, - [4235] = 1235, + [4235] = 4235, [4236] = 4236, - [4237] = 1105, - [4238] = 1102, + [4237] = 4237, + [4238] = 4238, [4239] = 4239, - [4240] = 4240, - [4241] = 1209, - [4242] = 1217, - [4243] = 4243, - [4244] = 1208, - [4245] = 1184, - [4246] = 1220, - [4247] = 1182, - [4248] = 1181, - [4249] = 1215, - [4250] = 1175, - [4251] = 1156, - [4252] = 1174, - [4253] = 4253, - [4254] = 1093, - [4255] = 1092, + [4240] = 4239, + [4241] = 4241, + [4242] = 4241, + [4243] = 4241, + [4244] = 4241, + [4245] = 4239, + [4246] = 4239, + [4247] = 4239, + [4248] = 4241, + [4249] = 4241, + [4250] = 4250, + [4251] = 4239, + [4252] = 4241, + [4253] = 4239, + [4254] = 4239, + [4255] = 4241, [4256] = 4256, - [4257] = 1132, + [4257] = 4257, [4258] = 4258, [4259] = 4259, - [4260] = 1169, + [4260] = 4260, [4261] = 4261, [4262] = 4262, [4263] = 4263, - [4264] = 1159, - [4265] = 1127, + [4264] = 4264, + [4265] = 4265, [4266] = 4266, [4267] = 4267, - [4268] = 4268, - [4269] = 1133, - [4270] = 1160, - [4271] = 1158, + [4268] = 3901, + [4269] = 4269, + [4270] = 4270, + [4271] = 4271, [4272] = 4272, [4273] = 4273, - [4274] = 1161, + [4274] = 4238, [4275] = 4275, - [4276] = 4276, - [4277] = 1229, - [4278] = 1162, + [4276] = 2821, + [4277] = 4086, + [4278] = 4278, [4279] = 4279, - [4280] = 1163, - [4281] = 1164, - [4282] = 1157, - [4283] = 4283, - [4284] = 1219, - [4285] = 1237, + [4280] = 4280, + [4281] = 2817, + [4282] = 4088, + [4283] = 4237, + [4284] = 4284, + [4285] = 4285, [4286] = 4286, [4287] = 4287, - [4288] = 4288, - [4289] = 4289, - [4290] = 1056, - [4291] = 4291, - [4292] = 1155, - [4293] = 1153, - [4294] = 348, - [4295] = 1213, - [4296] = 4296, - [4297] = 4297, - [4298] = 4298, - [4299] = 4299, - [4300] = 4300, - [4301] = 1207, - [4302] = 1239, - [4303] = 4303, - [4304] = 4304, - [4305] = 4305, - [4306] = 360, - [4307] = 4307, - [4308] = 1203, - [4309] = 4309, - [4310] = 4310, - [4311] = 1240, - [4312] = 1249, - [4313] = 4313, - [4314] = 4314, - [4315] = 1244, - [4316] = 4316, - [4317] = 1233, - [4318] = 1212, - [4319] = 4319, - [4320] = 4320, - [4321] = 4321, - [4322] = 4322, - [4323] = 4323, - [4324] = 1060, - [4325] = 1081, - [4326] = 1079, - [4327] = 1071, - [4328] = 1087, - [4329] = 1083, - [4330] = 1202, - [4331] = 1086, - [4332] = 1103, - [4333] = 1201, - [4334] = 1104, - [4335] = 1078, - [4336] = 1072, - [4337] = 1059, - [4338] = 1173, - [4339] = 1250, - [4340] = 1206, - [4341] = 1110, - [4342] = 1205, - [4343] = 1116, - [4344] = 1255, - [4345] = 1204, - [4346] = 1085, - [4347] = 1199, - [4348] = 1176, - [4349] = 1172, - [4350] = 4350, - [4351] = 4351, - [4352] = 4352, - [4353] = 4353, - [4354] = 4354, - [4355] = 1082, - [4356] = 1198, - [4357] = 1197, - [4358] = 1195, - [4359] = 1192, - [4360] = 1113, - [4361] = 4361, - [4362] = 1117, - [4363] = 1114, - [4364] = 1152, - [4365] = 4365, - [4366] = 1115, - [4367] = 4367, - [4368] = 1111, - [4369] = 1121, - [4370] = 1123, - [4371] = 1118, - [4372] = 1128, + [4288] = 2003, + [4289] = 2594, + [4290] = 2011, + [4291] = 2005, + [4292] = 2593, + [4293] = 2595, + [4294] = 377, + [4295] = 353, + [4296] = 2726, + [4297] = 2750, + [4298] = 2772, + [4299] = 2665, + [4300] = 2771, + [4301] = 2759, + [4302] = 353, + [4303] = 2675, + [4304] = 2733, + [4305] = 2586, + [4306] = 2645, + [4307] = 2738, + [4308] = 2725, + [4309] = 2691, + [4310] = 2739, + [4311] = 2680, + [4312] = 2690, + [4313] = 2692, + [4314] = 2720, + [4315] = 2722, + [4316] = 2677, + [4317] = 2643, + [4318] = 2753, + [4319] = 2658, + [4320] = 2723, + [4321] = 2648, + [4322] = 2649, + [4323] = 2642, + [4324] = 2740, + [4325] = 2652, + [4326] = 2743, + [4327] = 2663, + [4328] = 2700, + [4329] = 377, + [4330] = 2650, + [4331] = 2654, + [4332] = 2715, + [4333] = 4333, + [4334] = 4333, + [4335] = 2623, + [4336] = 4333, + [4337] = 4333, + [4338] = 4333, + [4339] = 4333, + [4340] = 4333, + [4341] = 2025, + [4342] = 1073, + [4343] = 2040, + [4344] = 2039, + [4345] = 2810, + [4346] = 2594, + [4347] = 2026, + [4348] = 2024, + [4349] = 2034, + [4350] = 2032, + [4351] = 2773, + [4352] = 1072, + [4353] = 2705, + [4354] = 2051, + [4355] = 2042, + [4356] = 2050, + [4357] = 2593, + [4358] = 2819, + [4359] = 2821, + [4360] = 2595, + [4361] = 1076, + [4362] = 2047, + [4363] = 1071, + [4364] = 2624, + [4365] = 1070, + [4366] = 2817, + [4367] = 2615, + [4368] = 2616, + [4369] = 2611, + [4370] = 2625, + [4371] = 2630, + [4372] = 2740, [4373] = 4373, - [4374] = 1101, + [4374] = 2655, [4375] = 4375, - [4376] = 1234, - [4377] = 1196, - [4378] = 1232, - [4379] = 1231, - [4380] = 1228, - [4381] = 1218, - [4382] = 1211, - [4383] = 1119, - [4384] = 1108, - [4385] = 1210, - [4386] = 1107, - [4387] = 1227, - [4388] = 1226, - [4389] = 1221, - [4390] = 350, - [4391] = 1080, - [4392] = 1191, - [4393] = 1225, - [4394] = 1216, - [4395] = 368, - [4396] = 1190, - [4397] = 1243, - [4398] = 1073, - [4399] = 1189, - [4400] = 4400, - [4401] = 4401, - [4402] = 1131, - [4403] = 1258, - [4404] = 1257, - [4405] = 1254, - [4406] = 1194, - [4407] = 1193, - [4408] = 1252, - [4409] = 366, - [4410] = 1200, - [4411] = 346, - [4412] = 1151, - [4413] = 1245, - [4414] = 1091, - [4415] = 1120, - [4416] = 1069, - [4417] = 1246, - [4418] = 1122, - [4419] = 1134, - [4420] = 1150, - [4421] = 1214, - [4422] = 1148, - [4423] = 1247, - [4424] = 1145, - [4425] = 1143, - [4426] = 1142, - [4427] = 1088, - [4428] = 1125, - [4429] = 1141, - [4430] = 4430, - [4431] = 1135, - [4432] = 1241, - [4433] = 1251, - [4434] = 1154, - [4435] = 4435, - [4436] = 4436, - [4437] = 1139, - [4438] = 1253, - [4439] = 1137, - [4440] = 1185, - [4441] = 1187, - [4442] = 1166, - [4443] = 1167, - [4444] = 1177, - [4445] = 1180, - [4446] = 1183, - [4447] = 1256, - [4448] = 1186, - [4449] = 1222, - [4450] = 1223, - [4451] = 1224, - [4452] = 1230, - [4453] = 1238, - [4454] = 1188, - [4455] = 1061, - [4456] = 4456, - [4457] = 4457, - [4458] = 4458, - [4459] = 4459, - [4460] = 4460, - [4461] = 4461, - [4462] = 4460, - [4463] = 4463, - [4464] = 4463, - [4465] = 4463, - [4466] = 4463, - [4467] = 4460, - [4468] = 4460, - [4469] = 4463, - [4470] = 4463, - [4471] = 4460, - [4472] = 4460, - [4473] = 4460, - [4474] = 4463, - [4475] = 4460, - [4476] = 4463, - [4477] = 4477, - [4478] = 4190, - [4479] = 4479, - [4480] = 4480, - [4481] = 4481, - [4482] = 4482, + [4376] = 4376, + [4377] = 4373, + [4378] = 2793, + [4379] = 4379, + [4380] = 4380, + [4381] = 2779, + [4382] = 2780, + [4383] = 2781, + [4384] = 4375, + [4385] = 4375, + [4386] = 2792, + [4387] = 4380, + [4388] = 4379, + [4389] = 4376, + [4390] = 2759, + [4391] = 2753, + [4392] = 4375, + [4393] = 2750, + [4394] = 2743, + [4395] = 2593, + [4396] = 2594, + [4397] = 2595, + [4398] = 2719, + [4399] = 2716, + [4400] = 2638, + [4401] = 4375, + [4402] = 2710, + [4403] = 2691, + [4404] = 2690, + [4405] = 2677, + [4406] = 2663, + [4407] = 2696, + [4408] = 2681, + [4409] = 2700, + [4410] = 2671, + [4411] = 2650, + [4412] = 2665, + [4413] = 2675, + [4414] = 2692, + [4415] = 2739, + [4416] = 2670, + [4417] = 2772, + [4418] = 2767, + [4419] = 2715, + [4420] = 4380, + [4421] = 2714, + [4422] = 4379, + [4423] = 4373, + [4424] = 2717, + [4425] = 2687, + [4426] = 4376, + [4427] = 2643, + [4428] = 2728, + [4429] = 2738, + [4430] = 2729, + [4431] = 2751, + [4432] = 4375, + [4433] = 2784, + [4434] = 2786, + [4435] = 2791, + [4436] = 2798, + [4437] = 2799, + [4438] = 2645, + [4439] = 4375, + [4440] = 2806, + [4441] = 2648, + [4442] = 2649, + [4443] = 2642, + [4444] = 2652, + [4445] = 4380, + [4446] = 2735, + [4447] = 2742, + [4448] = 2654, + [4449] = 2748, + [4450] = 2757, + [4451] = 4379, + [4452] = 4373, + [4453] = 4376, + [4454] = 2733, + [4455] = 2794, + [4456] = 2662, + [4457] = 2658, + [4458] = 2726, + [4459] = 2725, + [4460] = 2723, + [4461] = 2586, + [4462] = 2722, + [4463] = 2720, + [4464] = 4379, + [4465] = 2818, + [4466] = 2809, + [4467] = 4380, + [4468] = 4373, + [4469] = 2666, + [4470] = 4376, + [4471] = 2667, + [4472] = 2668, + [4473] = 4375, + [4474] = 2680, + [4475] = 4375, + [4476] = 2771, + [4477] = 2697, + [4478] = 2672, + [4479] = 2669, + [4480] = 2805, + [4481] = 2796, + [4482] = 2795, [4483] = 4483, [4484] = 4484, [4485] = 4485, @@ -9522,736 +9529,736 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4490] = 4490, [4491] = 4491, [4492] = 4492, - [4493] = 4493, - [4494] = 4494, - [4495] = 4495, + [4493] = 4490, + [4494] = 4490, + [4495] = 4490, [4496] = 4496, - [4497] = 4459, - [4498] = 2933, - [4499] = 4267, - [4500] = 4500, + [4497] = 4497, + [4498] = 4498, + [4499] = 4499, + [4500] = 2623, [4501] = 4501, - [4502] = 4258, - [4503] = 2932, - [4504] = 4456, - [4505] = 4505, + [4502] = 4488, + [4503] = 4489, + [4504] = 4489, + [4505] = 4489, [4506] = 4506, [4507] = 4507, - [4508] = 4508, - [4509] = 2156, - [4510] = 2154, - [4511] = 2731, - [4512] = 2737, - [4513] = 2738, - [4514] = 2149, - [4515] = 367, - [4516] = 376, - [4517] = 2892, - [4518] = 2880, - [4519] = 2851, - [4520] = 2849, - [4521] = 2878, - [4522] = 2877, - [4523] = 2876, - [4524] = 2889, - [4525] = 2884, - [4526] = 2850, - [4527] = 2875, - [4528] = 2852, - [4529] = 2853, - [4530] = 2854, - [4531] = 376, - [4532] = 2883, - [4533] = 2891, - [4534] = 2893, - [4535] = 2894, - [4536] = 2895, - [4537] = 2896, - [4538] = 2898, - [4539] = 2899, - [4540] = 367, - [4541] = 2900, - [4542] = 2855, - [4543] = 2882, - [4544] = 2730, - [4545] = 2881, - [4546] = 2848, - [4547] = 2879, - [4548] = 2861, - [4549] = 2857, - [4550] = 2860, - [4551] = 2859, - [4552] = 2847, - [4553] = 2846, + [4508] = 4490, + [4509] = 4509, + [4510] = 4490, + [4511] = 4511, + [4512] = 4490, + [4513] = 4513, + [4514] = 4489, + [4515] = 4488, + [4516] = 4516, + [4517] = 4488, + [4518] = 4518, + [4519] = 4519, + [4520] = 4520, + [4521] = 4521, + [4522] = 4489, + [4523] = 4488, + [4524] = 4524, + [4525] = 4525, + [4526] = 2652, + [4527] = 2715, + [4528] = 2034, + [4529] = 2817, + [4530] = 2032, + [4531] = 2821, + [4532] = 2005, + [4533] = 4533, + [4534] = 2011, + [4535] = 4535, + [4536] = 4536, + [4537] = 4537, + [4538] = 4538, + [4539] = 2003, + [4540] = 2759, + [4541] = 2753, + [4542] = 2750, + [4543] = 2743, + [4544] = 2740, + [4545] = 2739, + [4546] = 2738, + [4547] = 2733, + [4548] = 2658, + [4549] = 2726, + [4550] = 2725, + [4551] = 2723, + [4552] = 2722, + [4553] = 2720, [4554] = 4554, - [4555] = 4554, - [4556] = 4554, - [4557] = 4554, - [4558] = 4554, - [4559] = 4554, - [4560] = 2781, - [4561] = 4554, - [4562] = 1125, - [4563] = 2178, - [4564] = 2195, - [4565] = 2187, - [4566] = 2827, - [4567] = 2933, - [4568] = 1118, - [4569] = 2181, - [4570] = 2162, - [4571] = 2198, - [4572] = 2823, - [4573] = 2191, - [4574] = 2825, - [4575] = 2737, - [4576] = 1117, - [4577] = 2165, - [4578] = 2776, - [4579] = 2731, - [4580] = 2176, - [4581] = 2177, - [4582] = 1119, - [4583] = 2738, - [4584] = 2803, - [4585] = 2196, - [4586] = 2932, - [4587] = 1116, - [4588] = 2762, - [4589] = 2752, - [4590] = 2760, - [4591] = 2771, - [4592] = 2768, - [4593] = 2810, + [4555] = 4555, + [4556] = 2042, + [4557] = 4513, + [4558] = 2024, + [4559] = 2025, + [4560] = 2026, + [4561] = 4561, + [4562] = 2586, + [4563] = 2692, + [4564] = 2680, + [4565] = 2819, + [4566] = 2675, + [4567] = 2810, + [4568] = 2665, + [4569] = 2773, + [4570] = 2051, + [4571] = 2050, + [4572] = 2047, + [4573] = 2650, + [4574] = 2039, + [4575] = 2700, + [4576] = 2663, + [4577] = 2677, + [4578] = 2690, + [4579] = 2691, + [4580] = 2705, + [4581] = 2040, + [4582] = 4582, + [4583] = 2624, + [4584] = 2772, + [4585] = 2771, + [4586] = 4586, + [4587] = 2654, + [4588] = 4588, + [4589] = 2642, + [4590] = 2649, + [4591] = 2648, + [4592] = 2645, + [4593] = 2643, [4594] = 4594, - [4595] = 2870, - [4596] = 2851, - [4597] = 2872, - [4598] = 2850, - [4599] = 2842, - [4600] = 2843, - [4601] = 2809, - [4602] = 2808, + [4595] = 4594, + [4596] = 2630, + [4597] = 4597, + [4598] = 4598, + [4599] = 4599, + [4600] = 2611, + [4601] = 2616, + [4602] = 4602, [4603] = 4603, - [4604] = 2832, - [4605] = 4603, + [4604] = 4604, + [4605] = 4605, [4606] = 4606, - [4607] = 2786, - [4608] = 2849, - [4609] = 2866, - [4610] = 2865, - [4611] = 2841, - [4612] = 2794, - [4613] = 2816, - [4614] = 4603, - [4615] = 2798, - [4616] = 4603, - [4617] = 2885, - [4618] = 2795, - [4619] = 2852, - [4620] = 2807, - [4621] = 2864, - [4622] = 2806, - [4623] = 2886, - [4624] = 2887, - [4625] = 2853, - [4626] = 4626, - [4627] = 4594, - [4628] = 4606, - [4629] = 2854, - [4630] = 2804, - [4631] = 2814, - [4632] = 2884, - [4633] = 4603, - [4634] = 2871, + [4607] = 4594, + [4608] = 4608, + [4609] = 4609, + [4610] = 4610, + [4611] = 4606, + [4612] = 4612, + [4613] = 4594, + [4614] = 2625, + [4615] = 2623, + [4616] = 4616, + [4617] = 4617, + [4618] = 4618, + [4619] = 4619, + [4620] = 4620, + [4621] = 4621, + [4622] = 4606, + [4623] = 4606, + [4624] = 4624, + [4625] = 4606, + [4626] = 4606, + [4627] = 4627, + [4628] = 4628, + [4629] = 4629, + [4630] = 4630, + [4631] = 4594, + [4632] = 4632, + [4633] = 4594, + [4634] = 4634, [4635] = 4635, - [4636] = 2882, - [4637] = 4626, - [4638] = 2797, - [4639] = 2883, - [4640] = 4635, - [4641] = 4606, - [4642] = 2811, - [4643] = 4626, - [4644] = 4594, - [4645] = 4603, - [4646] = 4606, - [4647] = 2828, - [4648] = 2796, - [4649] = 2893, - [4650] = 2847, - [4651] = 4626, - [4652] = 2844, - [4653] = 2857, - [4654] = 4635, - [4655] = 2881, - [4656] = 2873, - [4657] = 2880, - [4658] = 2879, - [4659] = 2799, - [4660] = 4603, - [4661] = 2826, - [4662] = 2855, - [4663] = 2877, - [4664] = 2876, - [4665] = 4635, - [4666] = 2875, - [4667] = 2859, - [4668] = 4606, - [4669] = 2813, - [4670] = 2833, - [4671] = 2860, - [4672] = 4594, - [4673] = 2889, - [4674] = 2891, - [4675] = 2824, - [4676] = 2800, - [4677] = 2892, - [4678] = 2878, - [4679] = 4626, - [4680] = 2894, - [4681] = 2834, - [4682] = 2835, - [4683] = 2805, - [4684] = 2861, - [4685] = 2895, - [4686] = 4603, - [4687] = 2903, - [4688] = 2846, - [4689] = 4603, - [4690] = 2896, - [4691] = 4594, - [4692] = 2898, - [4693] = 2738, - [4694] = 2901, - [4695] = 2737, - [4696] = 2731, - [4697] = 2831, - [4698] = 2899, - [4699] = 2812, - [4700] = 2900, - [4701] = 4635, - [4702] = 2848, - [4703] = 2730, - [4704] = 4704, - [4705] = 4705, - [4706] = 4706, - [4707] = 4707, - [4708] = 4707, - [4709] = 4709, - [4710] = 4710, + [4636] = 4636, + [4637] = 4637, + [4638] = 4638, + [4639] = 2615, + [4640] = 4640, + [4641] = 4641, + [4642] = 4606, + [4643] = 4643, + [4644] = 4644, + [4645] = 4645, + [4646] = 4646, + [4647] = 4647, + [4648] = 2757, + [4649] = 2728, + [4650] = 2710, + [4651] = 2696, + [4652] = 2687, + [4653] = 2666, + [4654] = 2681, + [4655] = 2671, + [4656] = 2670, + [4657] = 2655, + [4658] = 2719, + [4659] = 1076, + [4660] = 2821, + [4661] = 2773, + [4662] = 2748, + [4663] = 2705, + [4664] = 2751, + [4665] = 2817, + [4666] = 1073, + [4667] = 2011, + [4668] = 2818, + [4669] = 2809, + [4670] = 2805, + [4671] = 2005, + [4672] = 2672, + [4673] = 4673, + [4674] = 2669, + [4675] = 1071, + [4676] = 2729, + [4677] = 2810, + [4678] = 2819, + [4679] = 2716, + [4680] = 2742, + [4681] = 2735, + [4682] = 2784, + [4683] = 2717, + [4684] = 4684, + [4685] = 1070, + [4686] = 2697, + [4687] = 2786, + [4688] = 2638, + [4689] = 2668, + [4690] = 2714, + [4691] = 2791, + [4692] = 4692, + [4693] = 2662, + [4694] = 2667, + [4695] = 2798, + [4696] = 2624, + [4697] = 4697, + [4698] = 2767, + [4699] = 2779, + [4700] = 2780, + [4701] = 2799, + [4702] = 2781, + [4703] = 2806, + [4704] = 2003, + [4705] = 2792, + [4706] = 2793, + [4707] = 2794, + [4708] = 2795, + [4709] = 2796, + [4710] = 1072, [4711] = 4711, [4712] = 4712, - [4713] = 2781, + [4713] = 4713, [4714] = 4714, [4715] = 4715, [4716] = 4716, - [4717] = 4716, - [4718] = 4718, + [4717] = 4715, + [4718] = 4716, [4719] = 4719, - [4720] = 4716, - [4721] = 4721, + [4720] = 4715, + [4721] = 4716, [4722] = 4722, - [4723] = 4723, - [4724] = 4716, + [4723] = 4716, + [4724] = 4715, [4725] = 4725, - [4726] = 4726, - [4727] = 4727, - [4728] = 4707, - [4729] = 4729, - [4730] = 4707, - [4731] = 4707, + [4726] = 4716, + [4727] = 4716, + [4728] = 4715, + [4729] = 4715, + [4730] = 4730, + [4731] = 4731, [4732] = 4732, [4733] = 4733, - [4734] = 4734, + [4734] = 4715, [4735] = 4716, - [4736] = 4736, - [4737] = 4737, - [4738] = 4716, - [4739] = 4716, - [4740] = 4733, - [4741] = 4707, - [4742] = 4733, - [4743] = 4733, - [4744] = 4733, - [4745] = 4745, + [4736] = 4716, + [4737] = 4715, + [4738] = 4738, + [4739] = 2630, + [4740] = 4725, + [4741] = 4730, + [4742] = 2611, + [4743] = 2616, + [4744] = 4513, + [4745] = 2615, [4746] = 4746, [4747] = 4747, - [4748] = 2875, - [4749] = 2198, - [4750] = 2196, - [4751] = 2191, - [4752] = 2730, - [4753] = 4753, + [4748] = 4748, + [4749] = 4749, + [4750] = 2625, + [4751] = 4751, + [4752] = 4752, + [4753] = 2032, [4754] = 4754, [4755] = 4755, - [4756] = 2178, - [4757] = 2177, - [4758] = 2176, + [4756] = 4756, + [4757] = 4757, + [4758] = 4758, [4759] = 4759, - [4760] = 2861, - [4761] = 2860, - [4762] = 4762, - [4763] = 4763, - [4764] = 2859, - [4765] = 2933, - [4766] = 2857, - [4767] = 2855, - [4768] = 2854, - [4769] = 2853, - [4770] = 2776, - [4771] = 2852, - [4772] = 2851, - [4773] = 2850, - [4774] = 2849, - [4775] = 2848, - [4776] = 2847, - [4777] = 2156, - [4778] = 2846, - [4779] = 4779, - [4780] = 2894, - [4781] = 2876, - [4782] = 2877, - [4783] = 2878, - [4784] = 2879, - [4785] = 2880, - [4786] = 2881, - [4787] = 2882, - [4788] = 2883, - [4789] = 2884, - [4790] = 4790, - [4791] = 2165, + [4760] = 4760, + [4761] = 4752, + [4762] = 4757, + [4763] = 2714, + [4764] = 4758, + [4765] = 4765, + [4766] = 4766, + [4767] = 2697, + [4768] = 4768, + [4769] = 4769, + [4770] = 4757, + [4771] = 4594, + [4772] = 2735, + [4773] = 2742, + [4774] = 2796, + [4775] = 4752, + [4776] = 4776, + [4777] = 4756, + [4778] = 4752, + [4779] = 4760, + [4780] = 4752, + [4781] = 4757, + [4782] = 4766, + [4783] = 4758, + [4784] = 4765, + [4785] = 4765, + [4786] = 4766, + [4787] = 4760, + [4788] = 4758, + [4789] = 2024, + [4790] = 2025, + [4791] = 2026, [4792] = 4792, - [4793] = 2195, - [4794] = 2187, - [4795] = 2900, - [4796] = 2932, - [4797] = 2823, - [4798] = 4798, - [4799] = 2825, - [4800] = 2899, - [4801] = 2827, - [4802] = 2898, - [4803] = 2803, - [4804] = 2896, - [4805] = 2895, - [4806] = 2149, - [4807] = 2162, - [4808] = 4734, - [4809] = 2181, - [4810] = 2154, - [4811] = 2889, - [4812] = 2891, - [4813] = 2892, - [4814] = 2893, - [4815] = 4815, - [4816] = 2781, - [4817] = 4817, - [4818] = 2760, - [4819] = 4819, + [4793] = 4594, + [4794] = 4756, + [4795] = 4795, + [4796] = 4757, + [4797] = 2670, + [4798] = 2671, + [4799] = 4752, + [4800] = 4731, + [4801] = 4760, + [4802] = 2681, + [4803] = 2687, + [4804] = 2696, + [4805] = 4759, + [4806] = 4806, + [4807] = 4760, + [4808] = 2710, + [4809] = 4756, + [4810] = 4732, + [4811] = 4594, + [4812] = 2716, + [4813] = 2719, + [4814] = 4814, + [4815] = 4759, + [4816] = 4816, + [4817] = 4760, + [4818] = 4752, + [4819] = 4757, [4820] = 4820, - [4821] = 4821, + [4821] = 4765, [4822] = 4822, - [4823] = 4823, + [4823] = 4766, [4824] = 4824, - [4825] = 4821, + [4825] = 4825, [4826] = 4826, - [4827] = 4821, - [4828] = 2771, - [4829] = 2762, - [4830] = 4830, - [4831] = 4822, + [4827] = 4827, + [4828] = 4828, + [4829] = 4756, + [4830] = 2767, + [4831] = 4831, [4832] = 4832, - [4833] = 4833, - [4834] = 4834, - [4835] = 4835, - [4836] = 4836, - [4837] = 4837, - [4838] = 2768, - [4839] = 4839, - [4840] = 4822, - [4841] = 4822, - [4842] = 4842, - [4843] = 4822, - [4844] = 4844, - [4845] = 4845, - [4846] = 4846, + [4833] = 4756, + [4834] = 2779, + [4835] = 2780, + [4836] = 2781, + [4837] = 2792, + [4838] = 2793, + [4839] = 2794, + [4840] = 4840, + [4841] = 2795, + [4842] = 2042, + [4843] = 4843, + [4844] = 2805, + [4845] = 2809, + [4846] = 2818, [4847] = 4847, - [4848] = 4848, - [4849] = 4849, + [4848] = 4760, + [4849] = 4752, [4850] = 4850, [4851] = 4851, - [4852] = 4821, - [4853] = 4821, - [4854] = 4854, - [4855] = 4822, - [4856] = 4856, - [4857] = 4857, - [4858] = 4858, - [4859] = 4859, - [4860] = 4822, - [4861] = 4861, - [4862] = 4821, - [4863] = 2752, + [4852] = 4852, + [4853] = 4757, + [4854] = 4765, + [4855] = 4855, + [4856] = 4758, + [4857] = 4766, + [4858] = 2039, + [4859] = 4766, + [4860] = 4765, + [4861] = 4759, + [4862] = 4758, + [4863] = 4863, [4864] = 4864, - [4865] = 4865, + [4865] = 4749, [4866] = 4866, - [4867] = 4867, - [4868] = 4868, - [4869] = 1117, - [4870] = 2865, - [4871] = 2870, - [4872] = 2154, - [4873] = 2871, - [4874] = 2901, - [4875] = 2803, - [4876] = 1116, - [4877] = 4877, - [4878] = 2156, - [4879] = 4879, - [4880] = 1118, - [4881] = 2776, - [4882] = 2844, - [4883] = 2149, - [4884] = 4884, - [4885] = 2794, - [4886] = 2823, - [4887] = 2795, - [4888] = 2872, - [4889] = 2825, - [4890] = 2873, - [4891] = 4891, - [4892] = 2796, - [4893] = 2827, - [4894] = 2843, - [4895] = 2797, - [4896] = 2887, - [4897] = 2933, - [4898] = 2932, - [4899] = 2798, - [4900] = 2799, - [4901] = 2886, - [4902] = 2800, - [4903] = 2842, - [4904] = 2885, - [4905] = 2841, - [4906] = 2903, - [4907] = 2835, - [4908] = 2834, - [4909] = 2833, - [4910] = 2832, - [4911] = 2831, - [4912] = 2866, - [4913] = 2828, - [4914] = 2826, - [4915] = 2824, - [4916] = 1119, - [4917] = 2809, - [4918] = 2808, + [4867] = 4747, + [4868] = 2040, + [4869] = 4756, + [4870] = 1076, + [4871] = 4871, + [4872] = 1073, + [4873] = 1072, + [4874] = 4757, + [4875] = 2034, + [4876] = 4760, + [4877] = 4847, + [4878] = 2806, + [4879] = 4765, + [4880] = 4759, + [4881] = 4881, + [4882] = 2799, + [4883] = 1071, + [4884] = 2798, + [4885] = 2791, + [4886] = 2786, + [4887] = 2784, + [4888] = 4756, + [4889] = 2757, + [4890] = 4890, + [4891] = 2751, + [4892] = 4892, + [4893] = 4893, + [4894] = 2729, + [4895] = 4895, + [4896] = 4594, + [4897] = 2748, + [4898] = 2728, + [4899] = 4899, + [4900] = 4900, + [4901] = 4901, + [4902] = 4902, + [4903] = 4903, + [4904] = 4904, + [4905] = 2717, + [4906] = 2638, + [4907] = 4755, + [4908] = 4908, + [4909] = 4754, + [4910] = 4910, + [4911] = 4911, + [4912] = 4912, + [4913] = 4913, + [4914] = 4914, + [4915] = 4915, + [4916] = 4916, + [4917] = 4917, + [4918] = 4918, [4919] = 4919, - [4920] = 2804, - [4921] = 2807, - [4922] = 2786, - [4923] = 2806, - [4924] = 2816, - [4925] = 2805, - [4926] = 2864, - [4927] = 1125, - [4928] = 2814, - [4929] = 2813, - [4930] = 2812, - [4931] = 2811, - [4932] = 2810, - [4933] = 4933, - [4934] = 4934, - [4935] = 4933, + [4920] = 4920, + [4921] = 2672, + [4922] = 2669, + [4923] = 2668, + [4924] = 2667, + [4925] = 2666, + [4926] = 2662, + [4927] = 4927, + [4928] = 2655, + [4929] = 4929, + [4930] = 4914, + [4931] = 4918, + [4932] = 1070, + [4933] = 4919, + [4934] = 4920, + [4935] = 2047, [4936] = 4936, - [4937] = 2762, - [4938] = 2752, - [4939] = 2760, - [4940] = 4940, - [4941] = 4933, + [4937] = 2050, + [4938] = 4916, + [4939] = 2051, + [4940] = 4594, + [4941] = 4941, [4942] = 4942, [4943] = 4943, - [4944] = 4933, - [4945] = 4943, - [4946] = 2768, - [4947] = 4943, - [4948] = 4948, - [4949] = 4949, - [4950] = 4950, - [4951] = 4933, - [4952] = 4933, - [4953] = 4933, - [4954] = 4943, + [4944] = 4766, + [4945] = 4594, + [4946] = 4946, + [4947] = 4947, + [4948] = 4766, + [4949] = 4904, + [4950] = 4765, + [4951] = 353, + [4952] = 377, + [4953] = 4594, + [4954] = 4954, [4955] = 4955, - [4956] = 4943, + [4956] = 4956, [4957] = 4957, - [4958] = 4943, - [4959] = 2771, - [4960] = 4734, - [4961] = 4940, + [4958] = 4958, + [4959] = 4959, + [4960] = 4960, + [4961] = 4960, [4962] = 4962, - [4963] = 4933, + [4963] = 4960, [4964] = 4964, - [4965] = 4943, + [4965] = 4960, [4966] = 4966, [4967] = 4967, - [4968] = 4968, - [4969] = 4962, + [4968] = 4960, + [4969] = 4969, [4970] = 4970, - [4971] = 4943, - [4972] = 2833, - [4973] = 4973, + [4971] = 4971, + [4972] = 4972, + [4973] = 4969, [4974] = 4974, - [4975] = 4975, - [4976] = 367, - [4977] = 4977, - [4978] = 4821, - [4979] = 4979, - [4980] = 4821, + [4975] = 4960, + [4976] = 337, + [4977] = 335, + [4978] = 4978, + [4979] = 4731, + [4980] = 4980, [4981] = 4981, - [4982] = 2885, - [4983] = 4983, - [4984] = 2887, - [4985] = 2886, - [4986] = 4986, - [4987] = 4987, + [4982] = 4969, + [4983] = 4980, + [4984] = 4732, + [4985] = 4981, + [4986] = 4960, + [4987] = 4969, [4988] = 4988, - [4989] = 4981, + [4989] = 4989, [4990] = 4990, - [4991] = 2800, - [4992] = 4992, - [4993] = 4993, - [4994] = 4994, - [4995] = 4821, - [4996] = 4996, + [4991] = 4960, + [4992] = 4969, + [4993] = 4969, + [4994] = 4969, + [4995] = 4995, + [4996] = 4969, [4997] = 4997, [4998] = 4998, - [4999] = 4996, + [4999] = 4999, [5000] = 5000, [5001] = 5001, - [5002] = 4981, - [5003] = 4993, + [5002] = 5002, + [5003] = 4998, [5004] = 5004, - [5005] = 2873, - [5006] = 4967, + [5005] = 5005, + [5006] = 5006, [5007] = 5007, - [5008] = 2872, - [5009] = 4979, - [5010] = 2871, - [5011] = 4993, - [5012] = 2870, - [5013] = 2786, - [5014] = 2866, - [5015] = 4934, - [5016] = 2865, - [5017] = 2864, - [5018] = 2176, - [5019] = 2177, - [5020] = 2178, - [5021] = 4821, - [5022] = 4970, + [5008] = 5008, + [5009] = 5009, + [5010] = 5010, + [5011] = 5011, + [5012] = 5012, + [5013] = 5004, + [5014] = 5014, + [5015] = 5014, + [5016] = 5016, + [5017] = 5017, + [5018] = 5018, + [5019] = 5019, + [5020] = 5020, + [5021] = 5021, + [5022] = 5022, [5023] = 5023, [5024] = 5024, [5025] = 5025, [5026] = 5026, [5027] = 5027, - [5028] = 4974, - [5029] = 4997, - [5030] = 5030, + [5028] = 5028, + [5029] = 354, + [5030] = 5010, [5031] = 5031, [5032] = 5032, [5033] = 5033, [5034] = 5034, - [5035] = 5035, - [5036] = 4997, - [5037] = 5037, + [5035] = 5009, + [5036] = 5023, + [5037] = 5008, [5038] = 5038, - [5039] = 4981, + [5039] = 5028, [5040] = 5040, - [5041] = 5023, + [5041] = 5041, [5042] = 5042, [5043] = 5043, - [5044] = 4979, - [5045] = 4821, - [5046] = 4993, + [5044] = 5044, + [5045] = 5045, + [5046] = 5023, [5047] = 5047, - [5048] = 5023, - [5049] = 4942, - [5050] = 5050, - [5051] = 5000, - [5052] = 5000, - [5053] = 5053, - [5054] = 5054, - [5055] = 5055, - [5056] = 5056, - [5057] = 5035, - [5058] = 5023, - [5059] = 4981, - [5060] = 5034, - [5061] = 4996, - [5062] = 2844, - [5063] = 5004, - [5064] = 5064, - [5065] = 4997, - [5066] = 5066, - [5067] = 2901, - [5068] = 2843, - [5069] = 2842, - [5070] = 2841, - [5071] = 4974, - [5072] = 4979, - [5073] = 2835, - [5074] = 2834, - [5075] = 5001, - [5076] = 5076, - [5077] = 2832, - [5078] = 2831, + [5048] = 5048, + [5049] = 5028, + [5050] = 4998, + [5051] = 5002, + [5052] = 5052, + [5053] = 5007, + [5054] = 4997, + [5055] = 4997, + [5056] = 5009, + [5057] = 5057, + [5058] = 5058, + [5059] = 5023, + [5060] = 5010, + [5061] = 5028, + [5062] = 5004, + [5063] = 5014, + [5064] = 370, + [5065] = 5065, + [5066] = 5014, + [5067] = 5008, + [5068] = 5004, + [5069] = 5023, + [5070] = 5002, + [5071] = 5028, + [5072] = 5007, + [5073] = 4997, + [5074] = 5010, + [5075] = 5009, + [5076] = 5009, + [5077] = 5010, + [5078] = 5004, [5079] = 5023, - [5080] = 4974, - [5081] = 5000, - [5082] = 5023, + [5080] = 5080, + [5081] = 5014, + [5082] = 4997, [5083] = 5083, - [5084] = 5084, - [5085] = 5085, + [5084] = 5065, + [5085] = 5028, [5086] = 5086, [5087] = 5087, [5088] = 5088, [5089] = 5089, - [5090] = 4821, - [5091] = 5091, - [5092] = 4993, - [5093] = 2828, + [5090] = 5007, + [5091] = 4998, + [5092] = 5002, + [5093] = 5007, [5094] = 5094, - [5095] = 4979, - [5096] = 5023, - [5097] = 4993, - [5098] = 4997, - [5099] = 2804, - [5100] = 2826, + [5095] = 5095, + [5096] = 5007, + [5097] = 5097, + [5098] = 5098, + [5099] = 4997, + [5100] = 5009, [5101] = 5101, - [5102] = 5000, - [5103] = 5103, - [5104] = 5104, - [5105] = 2824, - [5106] = 2191, - [5107] = 5000, - [5108] = 4997, - [5109] = 2196, - [5110] = 2162, - [5111] = 5111, - [5112] = 2198, - [5113] = 5113, - [5114] = 2805, - [5115] = 4974, - [5116] = 5007, - [5117] = 2181, - [5118] = 2187, - [5119] = 4981, - [5120] = 4979, - [5121] = 4993, - [5122] = 2195, - [5123] = 5031, - [5124] = 1125, - [5125] = 2806, - [5126] = 5023, - [5127] = 1119, - [5128] = 4997, - [5129] = 4996, - [5130] = 5130, - [5131] = 5131, - [5132] = 4996, - [5133] = 2794, - [5134] = 1118, - [5135] = 4979, - [5136] = 4993, - [5137] = 4997, - [5138] = 2165, - [5139] = 4821, - [5140] = 2795, - [5141] = 2796, - [5142] = 1117, + [5102] = 4920, + [5103] = 5010, + [5104] = 5004, + [5105] = 5014, + [5106] = 5106, + [5107] = 5107, + [5108] = 4919, + [5109] = 4998, + [5110] = 5002, + [5111] = 4967, + [5112] = 5007, + [5113] = 4997, + [5114] = 5114, + [5115] = 5009, + [5116] = 5023, + [5117] = 5117, + [5118] = 5010, + [5119] = 4918, + [5120] = 4914, + [5121] = 5121, + [5122] = 4754, + [5123] = 5028, + [5124] = 5004, + [5125] = 4755, + [5126] = 4776, + [5127] = 5014, + [5128] = 5128, + [5129] = 5129, + [5130] = 4852, + [5131] = 5002, + [5132] = 4998, + [5133] = 5133, + [5134] = 5134, + [5135] = 4998, + [5136] = 5002, + [5137] = 4851, + [5138] = 4684, + [5139] = 4850, + [5140] = 5101, + [5141] = 5141, + [5142] = 5142, [5143] = 5143, - [5144] = 1116, + [5144] = 5144, [5145] = 5145, - [5146] = 2797, - [5147] = 2807, + [5146] = 5007, + [5147] = 5147, [5148] = 5148, - [5149] = 5000, - [5150] = 2798, - [5151] = 2799, - [5152] = 5152, - [5153] = 5000, - [5154] = 5154, - [5155] = 4974, - [5156] = 2808, + [5149] = 4997, + [5150] = 5150, + [5151] = 5151, + [5152] = 5009, + [5153] = 5153, + [5154] = 5080, + [5155] = 5155, + [5156] = 5010, [5157] = 5157, - [5158] = 5054, - [5159] = 5159, - [5160] = 5026, - [5161] = 5053, - [5162] = 2809, - [5163] = 4979, - [5164] = 5164, - [5165] = 2810, - [5166] = 2903, - [5167] = 4981, - [5168] = 2811, + [5158] = 5158, + [5159] = 5004, + [5160] = 5160, + [5161] = 5014, + [5162] = 5162, + [5163] = 5163, + [5164] = 5008, + [5165] = 5165, + [5166] = 5166, + [5167] = 5167, + [5168] = 5168, [5169] = 5169, - [5170] = 376, + [5170] = 5170, [5171] = 5171, - [5172] = 4981, + [5172] = 5172, [5173] = 5173, - [5174] = 2816, - [5175] = 2812, + [5174] = 354, + [5175] = 5175, [5176] = 5176, - [5177] = 2814, - [5178] = 2813, + [5177] = 5177, + [5178] = 5142, [5179] = 5179, [5180] = 5180, - [5181] = 5180, - [5182] = 5179, - [5183] = 5179, - [5184] = 5184, - [5185] = 5179, - [5186] = 5186, - [5187] = 5186, - [5188] = 5186, + [5181] = 5181, + [5182] = 5121, + [5183] = 5183, + [5184] = 4998, + [5185] = 5080, + [5186] = 5080, + [5187] = 367, + [5188] = 5002, [5189] = 5189, - [5190] = 5184, + [5190] = 5190, [5191] = 5191, [5192] = 5192, [5193] = 5193, - [5194] = 5194, - [5195] = 5195, - [5196] = 5186, + [5194] = 366, + [5195] = 5023, + [5196] = 5196, [5197] = 5197, - [5198] = 5198, + [5198] = 4746, [5199] = 5199, - [5200] = 5186, - [5201] = 5186, - [5202] = 5202, + [5200] = 5200, + [5201] = 5201, + [5202] = 5142, [5203] = 5203, - [5204] = 5204, - [5205] = 339, + [5204] = 5142, + [5205] = 5142, [5206] = 5206, - [5207] = 335, - [5208] = 5179, + [5207] = 5207, + [5208] = 5208, [5209] = 5209, - [5210] = 5186, - [5211] = 5179, - [5212] = 4970, - [5213] = 4934, - [5214] = 5179, + [5210] = 5210, + [5211] = 5211, + [5212] = 5212, + [5213] = 5080, + [5214] = 5214, [5215] = 5215, - [5216] = 5186, - [5217] = 5179, + [5216] = 374, + [5217] = 375, [5218] = 5218, [5219] = 5219, - [5220] = 5220, - [5221] = 5221, - [5222] = 5222, + [5220] = 4795, + [5221] = 4792, + [5222] = 5190, [5223] = 5223, [5224] = 5224, [5225] = 5225, @@ -10261,516 +10268,516 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5229] = 5229, [5230] = 5230, [5231] = 5231, - [5232] = 5232, + [5232] = 5160, [5233] = 5233, - [5234] = 5234, - [5235] = 5235, - [5236] = 5236, + [5234] = 1865, + [5235] = 5080, + [5236] = 372, [5237] = 5237, [5238] = 5238, - [5239] = 5239, + [5239] = 371, [5240] = 5240, [5241] = 5241, [5242] = 5242, [5243] = 5243, [5244] = 5244, [5245] = 5245, - [5246] = 5225, + [5246] = 5246, [5247] = 5247, [5248] = 5248, - [5249] = 5238, + [5249] = 5249, [5250] = 5250, - [5251] = 5251, + [5251] = 5142, [5252] = 5252, - [5253] = 5228, - [5254] = 5254, - [5255] = 4879, - [5256] = 5256, - [5257] = 5257, + [5253] = 5008, + [5254] = 338, + [5255] = 5142, + [5256] = 370, + [5257] = 5197, [5258] = 5258, [5259] = 5259, [5260] = 5260, [5261] = 5261, - [5262] = 5235, + [5262] = 5262, [5263] = 5263, - [5264] = 5227, - [5265] = 5239, + [5264] = 5175, + [5265] = 5080, [5266] = 5266, - [5267] = 5251, + [5267] = 5267, [5268] = 5268, - [5269] = 5269, - [5270] = 5270, + [5269] = 5028, + [5270] = 4711, [5271] = 5271, - [5272] = 5270, - [5273] = 5273, - [5274] = 5239, - [5275] = 5269, - [5276] = 5273, + [5272] = 5272, + [5273] = 5192, + [5274] = 5274, + [5275] = 5275, + [5276] = 5276, [5277] = 5277, [5278] = 5278, - [5279] = 5251, + [5279] = 5279, [5280] = 5280, - [5281] = 5281, + [5281] = 5080, [5282] = 5282, [5283] = 5283, [5284] = 5284, - [5285] = 5269, - [5286] = 5271, + [5285] = 5142, + [5286] = 5286, [5287] = 5287, - [5288] = 5238, - [5289] = 5287, - [5290] = 5287, - [5291] = 5225, + [5288] = 5288, + [5289] = 5289, + [5290] = 5290, + [5291] = 5291, [5292] = 5292, - [5293] = 347, - [5294] = 5238, + [5293] = 5293, + [5294] = 5294, [5295] = 5295, - [5296] = 5296, - [5297] = 5297, - [5298] = 5298, + [5296] = 5294, + [5297] = 5294, + [5298] = 5294, [5299] = 5299, - [5300] = 5215, - [5301] = 5301, + [5300] = 5300, + [5301] = 5294, [5302] = 5302, [5303] = 5303, [5304] = 5304, [5305] = 5305, [5306] = 5306, - [5307] = 5271, - [5308] = 5258, - [5309] = 5309, - [5310] = 5270, - [5311] = 5248, - [5312] = 5312, - [5313] = 5239, - [5314] = 5314, + [5307] = 5294, + [5308] = 5308, + [5309] = 5210, + [5310] = 5310, + [5311] = 5292, + [5312] = 5294, + [5313] = 5313, + [5314] = 5237, [5315] = 5315, - [5316] = 5316, + [5316] = 5238, [5317] = 5317, - [5318] = 350, - [5319] = 5319, + [5318] = 5318, + [5319] = 5292, [5320] = 5320, - [5321] = 5225, - [5322] = 5227, + [5321] = 5321, + [5322] = 5212, [5323] = 5323, - [5324] = 5324, - [5325] = 360, - [5326] = 5228, - [5327] = 5327, - [5328] = 5328, - [5329] = 5287, + [5324] = 5247, + [5325] = 5193, + [5326] = 5326, + [5327] = 5310, + [5328] = 5211, + [5329] = 5329, [5330] = 5330, - [5331] = 5331, - [5332] = 5238, - [5333] = 5333, + [5331] = 372, + [5332] = 5332, + [5333] = 5248, [5334] = 5334, - [5335] = 5335, - [5336] = 5336, - [5337] = 5337, - [5338] = 5338, - [5339] = 5339, - [5340] = 5340, - [5341] = 369, - [5342] = 5342, - [5343] = 5287, - [5344] = 5344, + [5335] = 5317, + [5336] = 5310, + [5337] = 5321, + [5338] = 5305, + [5339] = 5304, + [5340] = 4747, + [5341] = 5341, + [5342] = 5332, + [5343] = 5317, + [5344] = 5263, [5345] = 5345, - [5346] = 5225, - [5347] = 5271, + [5346] = 5321, + [5347] = 5347, [5348] = 5348, - [5349] = 5349, - [5350] = 5350, - [5351] = 5251, - [5352] = 5352, + [5349] = 5275, + [5350] = 5300, + [5351] = 5278, + [5352] = 5241, [5353] = 5353, - [5354] = 5354, - [5355] = 5238, - [5356] = 5271, - [5357] = 5357, - [5358] = 5164, - [5359] = 5269, + [5354] = 5299, + [5355] = 5355, + [5356] = 5356, + [5357] = 5293, + [5358] = 5295, + [5359] = 5332, [5360] = 5360, - [5361] = 5361, - [5362] = 5362, - [5363] = 5363, - [5364] = 5269, - [5365] = 5365, - [5366] = 5251, - [5367] = 5270, + [5361] = 5302, + [5362] = 5218, + [5363] = 5303, + [5364] = 5306, + [5365] = 5310, + [5366] = 5317, + [5367] = 5219, [5368] = 5368, - [5369] = 5369, - [5370] = 5370, + [5369] = 5347, + [5370] = 5321, [5371] = 5371, - [5372] = 5372, - [5373] = 5225, - [5374] = 5374, - [5375] = 2104, - [5376] = 369, - [5377] = 5377, + [5372] = 5292, + [5373] = 5332, + [5374] = 1993, + [5375] = 371, + [5376] = 5305, + [5377] = 5304, [5378] = 5378, [5379] = 5379, - [5380] = 5380, - [5381] = 5381, - [5382] = 5382, - [5383] = 5225, - [5384] = 5244, - [5385] = 5385, - [5386] = 5386, + [5380] = 5320, + [5381] = 5317, + [5382] = 4749, + [5383] = 5305, + [5384] = 5304, + [5385] = 1871, + [5386] = 5284, [5387] = 5387, - [5388] = 5388, - [5389] = 5389, - [5390] = 5295, - [5391] = 5309, - [5392] = 5392, + [5388] = 5300, + [5389] = 5299, + [5390] = 5321, + [5391] = 5293, + [5392] = 5295, [5393] = 5393, - [5394] = 5394, - [5395] = 5395, - [5396] = 5396, - [5397] = 5239, - [5398] = 5030, - [5399] = 5239, - [5400] = 5400, - [5401] = 5401, - [5402] = 5248, - [5403] = 5403, - [5404] = 5404, - [5405] = 5242, - [5406] = 5406, - [5407] = 5024, - [5408] = 5236, - [5409] = 5238, + [5394] = 5302, + [5395] = 5303, + [5396] = 5292, + [5397] = 5306, + [5398] = 5326, + [5399] = 5332, + [5400] = 5317, + [5401] = 5292, + [5402] = 5321, + [5403] = 5306, + [5404] = 5240, + [5405] = 5368, + [5406] = 5303, + [5407] = 5407, + [5408] = 5173, + [5409] = 5360, [5410] = 5410, [5411] = 5411, - [5412] = 5227, - [5413] = 5228, - [5414] = 5414, - [5415] = 5415, - [5416] = 5270, - [5417] = 5417, - [5418] = 5270, - [5419] = 5419, + [5412] = 5410, + [5413] = 5413, + [5414] = 5308, + [5415] = 5332, + [5416] = 5416, + [5417] = 5302, + [5418] = 5098, + [5419] = 5341, [5420] = 5420, - [5421] = 5421, - [5422] = 5422, - [5423] = 5239, - [5424] = 5251, - [5425] = 5425, - [5426] = 5269, - [5427] = 5271, - [5428] = 5287, - [5429] = 5429, + [5421] = 5305, + [5422] = 5304, + [5423] = 5310, + [5424] = 5424, + [5425] = 5300, + [5426] = 5306, + [5427] = 5303, + [5428] = 5299, + [5429] = 5274, [5430] = 5430, - [5431] = 5270, - [5432] = 5225, - [5433] = 5433, - [5434] = 4966, - [5435] = 5435, - [5436] = 5436, - [5437] = 5437, - [5438] = 5438, - [5439] = 5439, - [5440] = 5440, - [5441] = 5441, - [5442] = 5442, - [5443] = 5443, - [5444] = 368, + [5431] = 5317, + [5432] = 5430, + [5433] = 5413, + [5434] = 5302, + [5435] = 5379, + [5436] = 5279, + [5437] = 5371, + [5438] = 960, + [5439] = 5300, + [5440] = 5293, + [5441] = 5242, + [5442] = 5295, + [5443] = 5246, + [5444] = 5444, [5445] = 5445, - [5446] = 5433, - [5447] = 5287, - [5448] = 5271, - [5449] = 5449, - [5450] = 5450, - [5451] = 346, + [5446] = 5302, + [5447] = 5299, + [5448] = 4967, + [5449] = 5303, + [5450] = 5306, + [5451] = 5451, [5452] = 5452, - [5453] = 5269, - [5454] = 5251, - [5455] = 5239, - [5456] = 5251, - [5457] = 5457, - [5458] = 5458, - [5459] = 5270, - [5460] = 5460, - [5461] = 5461, - [5462] = 5088, - [5463] = 5463, - [5464] = 5227, - [5465] = 5248, - [5466] = 5466, - [5467] = 5238, - [5468] = 5295, - [5469] = 5228, - [5470] = 5228, - [5471] = 5471, - [5472] = 5433, - [5473] = 361, - [5474] = 353, - [5475] = 5056, - [5476] = 5227, - [5477] = 4877, - [5478] = 5295, - [5479] = 5433, + [5453] = 5453, + [5454] = 5280, + [5455] = 5455, + [5456] = 5332, + [5457] = 5292, + [5458] = 4673, + [5459] = 5317, + [5460] = 5282, + [5461] = 5451, + [5462] = 5462, + [5463] = 5305, + [5464] = 5304, + [5465] = 5294, + [5466] = 5300, + [5467] = 5467, + [5468] = 5348, + [5469] = 5299, + [5470] = 5293, + [5471] = 5295, + [5472] = 5472, + [5473] = 5321, + [5474] = 5310, + [5475] = 5475, + [5476] = 5302, + [5477] = 5303, + [5478] = 5306, + [5479] = 5321, [5480] = 5295, - [5481] = 5433, - [5482] = 5295, - [5483] = 5483, - [5484] = 5433, - [5485] = 5485, - [5486] = 5053, - [5487] = 5054, - [5488] = 5295, - [5489] = 5034, - [5490] = 5228, + [5481] = 5292, + [5482] = 5293, + [5483] = 5300, + [5484] = 5484, + [5485] = 5171, + [5486] = 5299, + [5487] = 5295, + [5488] = 5488, + [5489] = 5310, + [5490] = 5293, [5491] = 5491, - [5492] = 5433, - [5493] = 5004, - [5494] = 5295, - [5495] = 5171, - [5496] = 5433, - [5497] = 5001, - [5498] = 5227, - [5499] = 5261, - [5500] = 5500, - [5501] = 347, - [5502] = 338, - [5503] = 5503, - [5504] = 5287, - [5505] = 5271, - [5506] = 5269, - [5507] = 5248, - [5508] = 5035, - [5509] = 5227, - [5510] = 5510, - [5511] = 5511, - [5512] = 5228, - [5513] = 2140, - [5514] = 4942, - [5515] = 5515, - [5516] = 5268, - [5517] = 5515, - [5518] = 5515, - [5519] = 5515, - [5520] = 5252, + [5492] = 5492, + [5493] = 5303, + [5494] = 5494, + [5495] = 5299, + [5496] = 5306, + [5497] = 5117, + [5498] = 5498, + [5499] = 5300, + [5500] = 5292, + [5501] = 5444, + [5502] = 5306, + [5503] = 5303, + [5504] = 5306, + [5505] = 5295, + [5506] = 4981, + [5507] = 5378, + [5508] = 5295, + [5509] = 5509, + [5510] = 5303, + [5511] = 5295, + [5512] = 4980, + [5513] = 5292, + [5514] = 5306, + [5515] = 5303, + [5516] = 5516, + [5517] = 5305, + [5518] = 5292, + [5519] = 5295, + [5520] = 5304, [5521] = 5521, - [5522] = 5515, + [5522] = 5522, [5523] = 5523, - [5524] = 5515, + [5524] = 5524, [5525] = 5525, - [5526] = 5526, - [5527] = 5515, - [5528] = 5528, - [5529] = 5515, + [5526] = 1177, + [5527] = 5527, + [5528] = 1176, + [5529] = 5529, [5530] = 5530, - [5531] = 5445, - [5532] = 5250, + [5531] = 5531, + [5532] = 5488, [5533] = 5533, [5534] = 5534, - [5535] = 5232, + [5535] = 5491, [5536] = 5536, [5537] = 5537, [5538] = 5538, - [5539] = 5539, + [5539] = 5522, [5540] = 5540, - [5541] = 5541, + [5541] = 1171, [5542] = 5542, - [5543] = 5534, + [5543] = 5543, [5544] = 5544, - [5545] = 5530, + [5545] = 5545, [5546] = 5546, - [5547] = 5538, - [5548] = 5530, - [5549] = 5549, - [5550] = 5541, - [5551] = 5542, + [5547] = 5547, + [5548] = 5548, + [5549] = 5492, + [5550] = 5550, + [5551] = 5551, [5552] = 5552, - [5553] = 5534, - [5554] = 5437, + [5553] = 5553, + [5554] = 5554, [5555] = 5555, - [5556] = 5538, + [5556] = 5556, [5557] = 5557, - [5558] = 5540, - [5559] = 5534, - [5560] = 5542, + [5558] = 5462, + [5559] = 5559, + [5560] = 5560, [5561] = 5561, - [5562] = 5534, - [5563] = 5511, - [5564] = 5539, - [5565] = 5521, - [5566] = 5523, - [5567] = 5510, - [5568] = 5526, + [5562] = 5562, + [5563] = 5563, + [5564] = 1172, + [5565] = 5565, + [5566] = 5566, + [5567] = 5567, + [5568] = 5568, [5569] = 5569, - [5570] = 5528, - [5571] = 5571, - [5572] = 5538, + [5570] = 5570, + [5571] = 1166, + [5572] = 5572, [5573] = 5573, - [5574] = 5536, + [5574] = 5574, [5575] = 5537, - [5576] = 5417, - [5577] = 5542, - [5578] = 5534, - [5579] = 5538, - [5580] = 5180, - [5581] = 5537, + [5576] = 5576, + [5577] = 5569, + [5578] = 5578, + [5579] = 5579, + [5580] = 5524, + [5581] = 5529, [5582] = 5582, [5583] = 5583, - [5584] = 5536, - [5585] = 5539, - [5586] = 5540, - [5587] = 5542, - [5588] = 5534, - [5589] = 5538, - [5590] = 5541, - [5591] = 5591, - [5592] = 5528, - [5593] = 5526, - [5594] = 5184, - [5595] = 5595, - [5596] = 5277, - [5597] = 5523, - [5598] = 5521, - [5599] = 5278, - [5600] = 5600, - [5601] = 5530, - [5602] = 5319, - [5603] = 5215, - [5604] = 5542, - [5605] = 5534, + [5584] = 5534, + [5585] = 5585, + [5586] = 5586, + [5587] = 5587, + [5588] = 5588, + [5589] = 1163, + [5590] = 5537, + [5591] = 5538, + [5592] = 5546, + [5593] = 1162, + [5594] = 5594, + [5595] = 5552, + [5596] = 1161, + [5597] = 5562, + [5598] = 5598, + [5599] = 5599, + [5600] = 1160, + [5601] = 1025, + [5602] = 5602, + [5603] = 5603, + [5604] = 5604, + [5605] = 1158, [5606] = 5606, - [5607] = 5539, - [5608] = 5538, - [5609] = 5609, + [5607] = 1157, + [5608] = 5545, + [5609] = 1156, [5610] = 5610, - [5611] = 5611, - [5612] = 5280, - [5613] = 963, - [5614] = 5259, - [5615] = 5537, - [5616] = 5616, - [5617] = 5542, - [5618] = 5521, - [5619] = 5523, + [5611] = 1155, + [5612] = 5548, + [5613] = 5613, + [5614] = 5550, + [5615] = 5615, + [5616] = 5552, + [5617] = 5617, + [5618] = 5618, + [5619] = 5556, [5620] = 5620, [5621] = 5621, - [5622] = 5622, - [5623] = 360, - [5624] = 5526, - [5625] = 5528, + [5622] = 5560, + [5623] = 5623, + [5624] = 5624, + [5625] = 5561, [5626] = 5626, - [5627] = 5627, - [5628] = 5536, - [5629] = 5537, - [5630] = 5539, - [5631] = 5540, - [5632] = 5421, - [5633] = 5541, - [5634] = 350, - [5635] = 5536, - [5636] = 5530, - [5637] = 5637, - [5638] = 5521, - [5639] = 5237, - [5640] = 5523, - [5641] = 5240, - [5642] = 5526, - [5643] = 5643, - [5644] = 5644, - [5645] = 5540, - [5646] = 5229, - [5647] = 5528, - [5648] = 5223, - [5649] = 5541, - [5650] = 5536, - [5651] = 5609, - [5652] = 5537, + [5627] = 5565, + [5628] = 5628, + [5629] = 5531, + [5630] = 5562, + [5631] = 5631, + [5632] = 1090, + [5633] = 5574, + [5634] = 5522, + [5635] = 5576, + [5636] = 5636, + [5637] = 5546, + [5638] = 1144, + [5639] = 5529, + [5640] = 5640, + [5641] = 1142, + [5642] = 1141, + [5643] = 5538, + [5644] = 1140, + [5645] = 5645, + [5646] = 5646, + [5647] = 1026, + [5648] = 5648, + [5649] = 5649, + [5650] = 1027, + [5651] = 5651, + [5652] = 5652, [5653] = 5653, - [5654] = 5525, - [5655] = 5643, - [5656] = 5539, - [5657] = 5540, - [5658] = 5541, + [5654] = 5537, + [5655] = 1028, + [5656] = 5656, + [5657] = 5657, + [5658] = 5658, [5659] = 5659, - [5660] = 5530, - [5661] = 5661, - [5662] = 5526, - [5663] = 5528, - [5664] = 5537, - [5665] = 5540, - [5666] = 5541, - [5667] = 5530, - [5668] = 5530, - [5669] = 5561, - [5670] = 5538, - [5671] = 5537, - [5672] = 5540, - [5673] = 5541, - [5674] = 5530, - [5675] = 5537, + [5660] = 5660, + [5661] = 5224, + [5662] = 5662, + [5663] = 5663, + [5664] = 5664, + [5665] = 337, + [5666] = 5666, + [5667] = 5534, + [5668] = 5668, + [5669] = 5669, + [5670] = 5545, + [5671] = 5671, + [5672] = 5534, + [5673] = 5548, + [5674] = 5659, + [5675] = 5550, [5676] = 5676, - [5677] = 5540, - [5678] = 5541, - [5679] = 5530, - [5680] = 5680, - [5681] = 5537, - [5682] = 5661, - [5683] = 5283, - [5684] = 5540, - [5685] = 5541, - [5686] = 5530, - [5687] = 5541, + [5677] = 5677, + [5678] = 5556, + [5679] = 5618, + [5680] = 5223, + [5681] = 5560, + [5682] = 5561, + [5683] = 5565, + [5684] = 5684, + [5685] = 5529, + [5686] = 5569, + [5687] = 5687, [5688] = 5688, - [5689] = 5540, + [5689] = 5689, [5690] = 5690, - [5691] = 4891, - [5692] = 5692, - [5693] = 5626, - [5694] = 5539, - [5695] = 5528, - [5696] = 5526, - [5697] = 5661, + [5691] = 335, + [5692] = 5529, + [5693] = 5574, + [5694] = 5576, + [5695] = 5695, + [5696] = 5272, + [5697] = 5268, [5698] = 5698, - [5699] = 5699, - [5700] = 5700, - [5701] = 2015, - [5702] = 4967, - [5703] = 5690, + [5699] = 5569, + [5700] = 5523, + [5701] = 5701, + [5702] = 5702, + [5703] = 5576, [5704] = 5704, - [5705] = 5705, - [5706] = 5706, + [5705] = 1124, + [5706] = 5574, [5707] = 5707, - [5708] = 5620, - [5709] = 5709, - [5710] = 5537, - [5711] = 5661, - [5712] = 5557, - [5713] = 5523, - [5714] = 5521, - [5715] = 5536, - [5716] = 5610, - [5717] = 5688, - [5718] = 5680, - [5719] = 5719, - [5720] = 5546, - [5721] = 5528, - [5722] = 5699, - [5723] = 5526, - [5724] = 5661, - [5725] = 5661, + [5708] = 5708, + [5709] = 5659, + [5710] = 5710, + [5711] = 5534, + [5712] = 5712, + [5713] = 5713, + [5714] = 1123, + [5715] = 5715, + [5716] = 5668, + [5717] = 5717, + [5718] = 5718, + [5719] = 5537, + [5720] = 5720, + [5721] = 5537, + [5722] = 5722, + [5723] = 5538, + [5724] = 5724, + [5725] = 5725, [5726] = 5726, - [5727] = 5727, - [5728] = 5709, - [5729] = 5692, - [5730] = 5730, - [5731] = 5523, - [5732] = 5521, + [5727] = 5538, + [5728] = 5576, + [5729] = 5729, + [5730] = 5574, + [5731] = 1029, + [5732] = 5546, [5733] = 5733, - [5734] = 5257, - [5735] = 5282, - [5736] = 5299, - [5737] = 5661, - [5738] = 5298, - [5739] = 5659, - [5740] = 5292, - [5741] = 5281, + [5734] = 1096, + [5735] = 5552, + [5736] = 5736, + [5737] = 5737, + [5738] = 5659, + [5739] = 1030, + [5740] = 1031, + [5741] = 5741, [5742] = 5742, [5743] = 5743, [5744] = 5744, @@ -10781,781 +10788,781 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5749] = 5749, [5750] = 5750, [5751] = 5751, - [5752] = 5752, - [5753] = 5753, + [5752] = 5545, + [5753] = 5562, [5754] = 5754, [5755] = 5755, - [5756] = 1060, + [5756] = 5756, [5757] = 5757, [5758] = 5758, [5759] = 5759, [5760] = 5760, [5761] = 5761, - [5762] = 5762, + [5762] = 5684, [5763] = 5763, - [5764] = 5764, - [5765] = 5754, - [5766] = 5766, - [5767] = 5767, + [5764] = 5545, + [5765] = 1052, + [5766] = 5569, + [5767] = 5565, [5768] = 5768, - [5769] = 5769, - [5770] = 5770, + [5769] = 5618, + [5770] = 5561, [5771] = 5771, [5772] = 5772, - [5773] = 5773, - [5774] = 5774, - [5775] = 5775, + [5773] = 5548, + [5774] = 5552, + [5775] = 5550, [5776] = 5776, [5777] = 5777, - [5778] = 5778, + [5778] = 5756, [5779] = 5779, [5780] = 5780, - [5781] = 5781, + [5781] = 5560, [5782] = 5782, - [5783] = 5783, + [5783] = 5556, [5784] = 5784, [5785] = 5785, - [5786] = 5763, - [5787] = 5787, - [5788] = 5788, - [5789] = 5789, - [5790] = 5256, + [5786] = 5556, + [5787] = 5560, + [5788] = 5561, + [5789] = 5565, + [5790] = 5790, [5791] = 5791, - [5792] = 5254, + [5792] = 5792, [5793] = 5793, - [5794] = 5794, - [5795] = 5789, - [5796] = 1110, - [5797] = 1113, - [5798] = 5744, - [5799] = 1069, - [5800] = 1115, - [5801] = 5801, - [5802] = 5802, + [5794] = 5725, + [5795] = 5546, + [5796] = 5796, + [5797] = 5797, + [5798] = 5798, + [5799] = 5574, + [5800] = 5576, + [5801] = 5659, + [5802] = 1180, [5803] = 5803, [5804] = 5804, - [5805] = 5805, + [5805] = 5743, [5806] = 5806, - [5807] = 5763, - [5808] = 5362, + [5807] = 1114, + [5808] = 5808, [5809] = 5809, - [5810] = 5754, + [5810] = 5744, [5811] = 5811, - [5812] = 1052, + [5812] = 5812, [5813] = 5813, - [5814] = 5814, - [5815] = 5815, + [5814] = 5550, + [5815] = 5618, [5816] = 5816, - [5817] = 5742, - [5818] = 5818, + [5817] = 5548, + [5818] = 5548, [5819] = 5819, - [5820] = 5820, + [5820] = 5538, [5821] = 5821, [5822] = 5822, [5823] = 5823, [5824] = 5824, - [5825] = 5779, - [5826] = 1214, - [5827] = 5777, + [5825] = 5825, + [5826] = 5826, + [5827] = 5827, [5828] = 5828, [5829] = 5829, - [5830] = 5830, - [5831] = 1091, - [5832] = 1121, - [5833] = 1123, - [5834] = 1128, - [5835] = 5835, + [5830] = 5540, + [5831] = 5537, + [5832] = 5832, + [5833] = 5833, + [5834] = 5834, + [5835] = 5562, [5836] = 5836, [5837] = 5837, - [5838] = 5785, + [5838] = 369, [5839] = 5839, - [5840] = 5840, - [5841] = 5841, - [5842] = 5842, - [5843] = 5776, - [5844] = 5773, + [5840] = 1175, + [5841] = 5534, + [5842] = 1174, + [5843] = 5843, + [5844] = 5844, [5845] = 5845, [5846] = 5846, [5847] = 5847, [5848] = 5848, - [5849] = 5849, - [5850] = 5850, - [5851] = 5851, - [5852] = 1211, - [5853] = 1101, - [5854] = 5854, - [5855] = 5855, - [5856] = 5856, - [5857] = 5857, - [5858] = 5773, - [5859] = 5859, + [5849] = 5545, + [5850] = 2817, + [5851] = 5548, + [5852] = 5545, + [5853] = 2821, + [5854] = 5550, + [5855] = 5540, + [5856] = 5618, + [5857] = 5712, + [5858] = 5562, + [5859] = 5556, [5860] = 5860, [5861] = 5861, - [5862] = 5776, - [5863] = 5863, - [5864] = 5864, - [5865] = 5865, + [5862] = 5659, + [5863] = 5560, + [5864] = 5561, + [5865] = 5701, [5866] = 5866, - [5867] = 5742, + [5867] = 5565, [5868] = 5868, - [5869] = 5777, + [5869] = 5869, [5870] = 5870, - [5871] = 5779, - [5872] = 5754, - [5873] = 5873, - [5874] = 348, - [5875] = 5875, - [5876] = 5742, - [5877] = 5877, - [5878] = 5785, - [5879] = 5763, + [5871] = 5871, + [5872] = 1173, + [5873] = 5529, + [5874] = 5874, + [5875] = 5546, + [5876] = 5876, + [5877] = 1097, + [5878] = 5565, + [5879] = 5879, [5880] = 5880, [5881] = 5881, - [5882] = 5875, - [5883] = 5883, - [5884] = 5884, - [5885] = 5885, - [5886] = 5886, + [5882] = 5868, + [5883] = 5569, + [5884] = 5758, + [5885] = 5561, + [5886] = 5574, [5887] = 5887, - [5888] = 5888, - [5889] = 5889, - [5890] = 5890, + [5888] = 5576, + [5889] = 1098, + [5890] = 5569, [5891] = 5891, - [5892] = 5744, - [5893] = 5893, - [5894] = 5757, - [5895] = 5789, + [5892] = 5522, + [5893] = 1103, + [5894] = 1104, + [5895] = 1106, [5896] = 5896, [5897] = 5897, [5898] = 5898, [5899] = 5899, [5900] = 5900, [5901] = 5901, - [5902] = 5744, - [5903] = 5394, + [5902] = 5902, + [5903] = 5903, [5904] = 5904, [5905] = 5905, - [5906] = 5906, - [5907] = 5789, + [5906] = 1211, + [5907] = 5907, [5908] = 5908, [5909] = 5909, [5910] = 5910, - [5911] = 5911, + [5911] = 1108, [5912] = 5912, [5913] = 5913, [5914] = 5914, [5915] = 5915, - [5916] = 1079, - [5917] = 5763, - [5918] = 5918, - [5919] = 5919, + [5916] = 5916, + [5917] = 5618, + [5918] = 1111, + [5919] = 1112, [5920] = 5920, [5921] = 5921, [5922] = 5922, - [5923] = 5829, - [5924] = 1081, - [5925] = 5742, - [5926] = 5926, - [5927] = 5754, - [5928] = 5928, + [5923] = 1113, + [5924] = 5924, + [5925] = 5925, + [5926] = 1115, + [5927] = 5927, + [5928] = 5657, [5929] = 5929, - [5930] = 5744, - [5931] = 5931, + [5930] = 5930, + [5931] = 5529, [5932] = 5932, [5933] = 5933, [5934] = 5934, - [5935] = 5935, - [5936] = 5936, - [5937] = 5937, - [5938] = 5938, - [5939] = 5939, - [5940] = 5940, - [5941] = 5891, - [5942] = 5942, - [5943] = 335, - [5944] = 339, - [5945] = 5945, - [5946] = 5946, - [5947] = 5947, + [5935] = 1169, + [5936] = 5861, + [5937] = 5659, + [5938] = 5733, + [5939] = 5552, + [5940] = 1117, + [5941] = 5941, + [5942] = 5560, + [5943] = 5943, + [5944] = 5534, + [5945] = 373, + [5946] = 1168, + [5947] = 5537, [5948] = 5948, - [5949] = 5949, - [5950] = 5950, - [5951] = 5951, + [5949] = 1088, + [5950] = 5540, + [5951] = 1121, [5952] = 5952, - [5953] = 5953, - [5954] = 5954, + [5953] = 5618, + [5954] = 5538, [5955] = 5955, [5956] = 5956, - [5957] = 5957, - [5958] = 5958, - [5959] = 5959, - [5960] = 5951, - [5961] = 5961, + [5957] = 5546, + [5958] = 1033, + [5959] = 5556, + [5960] = 1038, + [5961] = 1046, [5962] = 5962, - [5963] = 5954, + [5963] = 1019, [5964] = 5964, - [5965] = 5965, + [5965] = 1167, [5966] = 5966, - [5967] = 5961, - [5968] = 5968, + [5967] = 5552, + [5968] = 1125, [5969] = 5969, - [5970] = 5779, + [5970] = 5970, [5971] = 5971, [5972] = 5972, - [5973] = 5743, + [5973] = 5973, [5974] = 5974, - [5975] = 5975, - [5976] = 1246, - [5977] = 5777, - [5978] = 5978, - [5979] = 1218, - [5980] = 5980, + [5975] = 1126, + [5976] = 5976, + [5977] = 1127, + [5978] = 1128, + [5979] = 5979, + [5980] = 5792, [5981] = 5981, - [5982] = 5776, + [5982] = 5982, [5983] = 5983, - [5984] = 5984, + [5984] = 5618, [5985] = 5985, - [5986] = 5985, - [5987] = 5773, + [5986] = 5690, + [5987] = 5987, [5988] = 5988, [5989] = 5989, - [5990] = 5754, + [5990] = 5990, [5991] = 5991, [5992] = 5992, - [5993] = 366, - [5994] = 5845, - [5995] = 5849, - [5996] = 5955, - [5997] = 5997, - [5998] = 5933, - [5999] = 1219, - [6000] = 5969, - [6001] = 5926, - [6002] = 5953, - [6003] = 5983, - [6004] = 5854, + [5993] = 5993, + [5994] = 5994, + [5995] = 5995, + [5996] = 5996, + [5997] = 1129, + [5998] = 5998, + [5999] = 5999, + [6000] = 6000, + [6001] = 6001, + [6002] = 1165, + [6003] = 6003, + [6004] = 6004, [6005] = 6005, [6006] = 6006, [6007] = 6007, - [6008] = 5933, - [6009] = 5744, + [6008] = 6008, + [6009] = 6009, [6010] = 6010, [6011] = 6011, - [6012] = 6012, - [6013] = 5743, + [6012] = 5834, + [6013] = 6013, [6014] = 6014, [6015] = 6015, [6016] = 6016, - [6017] = 5971, + [6017] = 6017, [6018] = 6018, [6019] = 6019, [6020] = 6020, [6021] = 6021, - [6022] = 5789, + [6022] = 6022, [6023] = 6023, - [6024] = 5971, - [6025] = 1222, - [6026] = 6026, + [6024] = 6024, + [6025] = 5552, + [6026] = 1153, [6027] = 6027, [6028] = 6028, - [6029] = 6029, - [6030] = 5763, - [6031] = 6031, - [6032] = 1114, + [6029] = 1151, + [6030] = 1150, + [6031] = 5545, + [6032] = 1149, [6033] = 6033, - [6034] = 1224, - [6035] = 1230, - [6036] = 5789, - [6037] = 6037, - [6038] = 5983, - [6039] = 6039, + [6034] = 1148, + [6035] = 5808, + [6036] = 1147, + [6037] = 5548, + [6038] = 5562, + [6039] = 5550, [6040] = 6040, - [6041] = 1238, + [6041] = 1146, [6042] = 6042, - [6043] = 5985, + [6043] = 1145, [6044] = 6044, - [6045] = 6045, - [6046] = 5785, - [6047] = 5933, - [6048] = 1245, - [6049] = 6049, - [6050] = 5961, - [6051] = 5953, - [6052] = 5955, - [6053] = 5742, - [6054] = 5779, - [6055] = 5985, - [6056] = 5983, - [6057] = 5743, - [6058] = 5971, - [6059] = 5777, - [6060] = 5776, - [6061] = 5954, - [6062] = 5951, - [6063] = 6049, + [6045] = 5556, + [6046] = 5755, + [6047] = 6047, + [6048] = 5560, + [6049] = 5561, + [6050] = 6050, + [6051] = 5565, + [6052] = 5562, + [6053] = 1164, + [6054] = 6054, + [6055] = 5540, + [6056] = 6056, + [6057] = 6057, + [6058] = 1143, + [6059] = 6059, + [6060] = 6060, + [6061] = 6061, + [6062] = 5569, + [6063] = 6063, [6064] = 6064, - [6065] = 6065, - [6066] = 5773, - [6067] = 5779, - [6068] = 1252, - [6069] = 1153, - [6070] = 5954, - [6071] = 5955, - [6072] = 6072, - [6073] = 1254, - [6074] = 5953, - [6075] = 5754, - [6076] = 1257, - [6077] = 1258, + [6065] = 5546, + [6066] = 6066, + [6067] = 6067, + [6068] = 6068, + [6069] = 6069, + [6070] = 5574, + [6071] = 1136, + [6072] = 5576, + [6073] = 6073, + [6074] = 5538, + [6075] = 6075, + [6076] = 6076, + [6077] = 1130, [6078] = 6078, - [6079] = 1155, - [6080] = 5951, - [6081] = 1056, - [6082] = 6065, - [6083] = 1131, - [6084] = 5777, + [6079] = 6079, + [6080] = 6080, + [6081] = 1132, + [6082] = 6082, + [6083] = 5522, + [6084] = 5529, [6085] = 6085, - [6086] = 5933, - [6087] = 5953, - [6088] = 5955, - [6089] = 1255, - [6090] = 6090, - [6091] = 5752, + [6086] = 1131, + [6087] = 5659, + [6088] = 6088, + [6089] = 5534, + [6090] = 5550, + [6091] = 1135, [6092] = 6092, [6093] = 6093, - [6094] = 6094, - [6095] = 5985, - [6096] = 6096, - [6097] = 5983, + [6094] = 6093, + [6095] = 6095, + [6096] = 6092, + [6097] = 6097, [6098] = 6098, - [6099] = 5743, - [6100] = 5971, - [6101] = 6101, + [6099] = 6099, + [6100] = 6099, + [6101] = 6099, [6102] = 6102, - [6103] = 5744, - [6104] = 6104, - [6105] = 5789, - [6106] = 5954, - [6107] = 5951, - [6108] = 1025, - [6109] = 5933, - [6110] = 1244, - [6111] = 1026, - [6112] = 5951, - [6113] = 1028, + [6103] = 6103, + [6104] = 5729, + [6105] = 6099, + [6106] = 6106, + [6107] = 6107, + [6108] = 6108, + [6109] = 5720, + [6110] = 6110, + [6111] = 6111, + [6112] = 6112, + [6113] = 996, [6114] = 6114, - [6115] = 5776, + [6115] = 6115, [6116] = 6116, [6117] = 6117, - [6118] = 5928, - [6119] = 5971, - [6120] = 6120, - [6121] = 5742, + [6118] = 6118, + [6119] = 6119, + [6120] = 2010, + [6121] = 6121, [6122] = 6122, [6123] = 6123, - [6124] = 5743, - [6125] = 5767, + [6124] = 6124, + [6125] = 6118, [6126] = 6126, - [6127] = 1229, - [6128] = 1217, - [6129] = 1184, - [6130] = 5961, - [6131] = 6131, + [6127] = 6121, + [6128] = 6128, + [6129] = 6129, + [6130] = 6130, + [6131] = 6118, [6132] = 6132, [6133] = 6133, - [6134] = 1182, - [6135] = 5779, - [6136] = 1181, - [6137] = 1175, - [6138] = 1174, + [6134] = 6121, + [6135] = 6121, + [6136] = 6136, + [6137] = 6137, + [6138] = 1999, [6139] = 6139, - [6140] = 1173, - [6141] = 1158, - [6142] = 5777, + [6140] = 5453, + [6141] = 6141, + [6142] = 6142, [6143] = 6143, [6144] = 6144, - [6145] = 1157, - [6146] = 6114, - [6147] = 5776, - [6148] = 5773, - [6149] = 6149, - [6150] = 5754, - [6151] = 5777, + [6145] = 6093, + [6146] = 6098, + [6147] = 6147, + [6148] = 6107, + [6149] = 6108, + [6150] = 6111, + [6151] = 6151, [6152] = 6152, - [6153] = 5744, - [6154] = 1152, - [6155] = 6155, + [6153] = 6153, + [6154] = 6154, + [6155] = 6118, [6156] = 6156, - [6157] = 6157, - [6158] = 1150, - [6159] = 1148, - [6160] = 1145, - [6161] = 1143, - [6162] = 1142, - [6163] = 1141, - [6164] = 1139, - [6165] = 6165, - [6166] = 5789, + [6157] = 6119, + [6158] = 6130, + [6159] = 1018, + [6160] = 6124, + [6161] = 6126, + [6162] = 338, + [6163] = 6095, + [6164] = 6097, + [6165] = 6121, + [6166] = 6166, [6167] = 6167, [6168] = 6168, - [6169] = 5866, + [6169] = 6123, [6170] = 6170, [6171] = 6171, [6172] = 6172, - [6173] = 6173, - [6174] = 5891, - [6175] = 5891, - [6176] = 6176, - [6177] = 5891, - [6178] = 6178, + [6173] = 6136, + [6174] = 6174, + [6175] = 6108, + [6176] = 6107, + [6177] = 6098, + [6178] = 6093, [6179] = 6179, - [6180] = 6180, - [6181] = 5961, - [6182] = 6182, - [6183] = 1132, - [6184] = 5742, - [6185] = 5933, - [6186] = 5953, - [6187] = 6187, - [6188] = 5955, - [6189] = 6189, - [6190] = 6190, - [6191] = 2932, + [6180] = 6117, + [6181] = 6108, + [6182] = 6107, + [6183] = 6098, + [6184] = 6093, + [6185] = 6108, + [6186] = 6107, + [6187] = 6098, + [6188] = 6093, + [6189] = 6122, + [6190] = 6108, + [6191] = 6107, [6192] = 6192, - [6193] = 5985, - [6194] = 1105, - [6195] = 1102, - [6196] = 5983, - [6197] = 6197, - [6198] = 6198, - [6199] = 6199, - [6200] = 5954, - [6201] = 6201, - [6202] = 5743, + [6193] = 6098, + [6194] = 6093, + [6195] = 6108, + [6196] = 6107, + [6197] = 6098, + [6198] = 6093, + [6199] = 6108, + [6200] = 6107, + [6201] = 6098, + [6202] = 6093, [6203] = 6203, - [6204] = 5779, - [6205] = 5971, - [6206] = 1071, - [6207] = 1087, - [6208] = 1059, - [6209] = 6209, - [6210] = 6210, - [6211] = 6211, - [6212] = 2933, - [6213] = 6213, - [6214] = 5776, - [6215] = 1046, - [6216] = 6216, - [6217] = 1040, - [6218] = 1015, - [6219] = 6219, - [6220] = 1043, - [6221] = 5954, + [6204] = 374, + [6205] = 375, + [6206] = 6206, + [6207] = 6108, + [6208] = 6107, + [6209] = 6098, + [6210] = 6093, + [6211] = 6118, + [6212] = 6136, + [6213] = 6108, + [6214] = 6107, + [6215] = 6098, + [6216] = 6093, + [6217] = 6217, + [6218] = 6156, + [6219] = 6139, + [6220] = 6097, + [6221] = 2007, [6222] = 6222, - [6223] = 5951, - [6224] = 6224, - [6225] = 6225, - [6226] = 6226, - [6227] = 5763, - [6228] = 6228, - [6229] = 6229, - [6230] = 1156, - [6231] = 5951, - [6232] = 6232, - [6233] = 5954, - [6234] = 5704, - [6235] = 5705, - [6236] = 5773, - [6237] = 6237, - [6238] = 6238, - [6239] = 1237, - [6240] = 5961, - [6241] = 1239, - [6242] = 5955, - [6243] = 5886, - [6244] = 1072, - [6245] = 5706, - [6246] = 1050, - [6247] = 1051, - [6248] = 6248, - [6249] = 5961, - [6250] = 1054, - [6251] = 1078, - [6252] = 6252, - [6253] = 6253, + [6223] = 6126, + [6224] = 5475, + [6225] = 6111, + [6226] = 6108, + [6227] = 6107, + [6228] = 6098, + [6229] = 6093, + [6230] = 6130, + [6231] = 6095, + [6232] = 6092, + [6233] = 6097, + [6234] = 6156, + [6235] = 6147, + [6236] = 6097, + [6237] = 6130, + [6238] = 6126, + [6239] = 6111, + [6240] = 6108, + [6241] = 6241, + [6242] = 6107, + [6243] = 6243, + [6244] = 6098, + [6245] = 6093, + [6246] = 6117, + [6247] = 6203, + [6248] = 6122, + [6249] = 6249, + [6250] = 6156, + [6251] = 6153, + [6252] = 6152, + [6253] = 6151, [6254] = 6254, - [6255] = 6255, - [6256] = 6256, - [6257] = 6257, - [6258] = 5890, - [6259] = 6259, - [6260] = 6260, - [6261] = 6261, - [6262] = 5888, + [6255] = 6147, + [6256] = 6217, + [6257] = 6097, + [6258] = 6092, + [6259] = 6095, + [6260] = 6130, + [6261] = 6147, + [6262] = 6136, [6263] = 6263, [6264] = 6264, - [6265] = 6265, + [6265] = 6126, [6266] = 6266, [6267] = 6267, - [6268] = 6268, - [6269] = 6269, - [6270] = 5859, - [6271] = 6271, - [6272] = 6272, - [6273] = 6273, - [6274] = 1092, - [6275] = 5773, - [6276] = 6276, - [6277] = 6277, - [6278] = 6278, - [6279] = 6279, - [6280] = 6280, - [6281] = 6281, - [6282] = 5983, - [6283] = 5726, - [6284] = 5961, - [6285] = 6285, - [6286] = 6286, - [6287] = 6287, - [6288] = 5933, - [6289] = 6289, - [6290] = 1049, - [6291] = 6291, - [6292] = 5953, - [6293] = 6293, - [6294] = 5955, - [6295] = 5785, + [6268] = 6111, + [6269] = 6108, + [6270] = 6107, + [6271] = 6098, + [6272] = 6093, + [6273] = 6141, + [6274] = 6203, + [6275] = 6147, + [6276] = 6151, + [6277] = 6152, + [6278] = 6151, + [6279] = 6152, + [6280] = 6153, + [6281] = 6156, + [6282] = 6156, + [6283] = 6153, + [6284] = 6152, + [6285] = 6151, + [6286] = 6147, + [6287] = 6153, + [6288] = 6288, + [6289] = 6156, + [6290] = 6097, + [6291] = 6092, + [6292] = 6095, + [6293] = 6130, + [6294] = 6294, + [6295] = 6136, [6296] = 6296, - [6297] = 6297, + [6297] = 6126, [6298] = 6298, - [6299] = 5953, - [6300] = 6300, - [6301] = 6122, - [6302] = 1151, - [6303] = 5985, - [6304] = 6304, + [6299] = 6111, + [6300] = 6108, + [6301] = 6107, + [6302] = 6098, + [6303] = 6093, + [6304] = 6192, [6305] = 6305, - [6306] = 5983, + [6306] = 6306, [6307] = 6307, - [6308] = 5743, - [6309] = 5985, - [6310] = 5971, - [6311] = 5841, - [6312] = 5763, - [6313] = 6313, - [6314] = 6314, - [6315] = 6315, - [6316] = 6313, - [6317] = 6317, - [6318] = 6318, - [6319] = 6319, - [6320] = 6320, + [6308] = 6308, + [6309] = 6267, + [6310] = 6310, + [6311] = 6203, + [6312] = 6312, + [6313] = 6203, + [6314] = 6192, + [6315] = 6156, + [6316] = 6153, + [6317] = 6152, + [6318] = 6126, + [6319] = 6151, + [6320] = 6147, [6321] = 6321, [6322] = 6322, - [6323] = 6323, - [6324] = 5956, - [6325] = 6325, + [6323] = 6122, + [6324] = 6324, + [6325] = 6117, [6326] = 6326, - [6327] = 6327, - [6328] = 1011, - [6329] = 6325, - [6330] = 6330, - [6331] = 6318, - [6332] = 6332, - [6333] = 6333, - [6334] = 6334, - [6335] = 6335, - [6336] = 6335, - [6337] = 6337, - [6338] = 6334, - [6339] = 6339, - [6340] = 6340, - [6341] = 6339, - [6342] = 6339, - [6343] = 6313, - [6344] = 6344, - [6345] = 6340, - [6346] = 6315, - [6347] = 6332, - [6348] = 6315, - [6349] = 6313, - [6350] = 6350, - [6351] = 6320, - [6352] = 6321, - [6353] = 6326, - [6354] = 5857, - [6355] = 1042, - [6356] = 6356, - [6357] = 6357, - [6358] = 6358, - [6359] = 6359, - [6360] = 6360, - [6361] = 6361, - [6362] = 6361, - [6363] = 6359, - [6364] = 6358, - [6365] = 6357, - [6366] = 6360, - [6367] = 6314, - [6368] = 6368, + [6327] = 6097, + [6328] = 6092, + [6329] = 6095, + [6330] = 6130, + [6331] = 6331, + [6332] = 6136, + [6333] = 6099, + [6334] = 6126, + [6335] = 6305, + [6336] = 6336, + [6337] = 6111, + [6338] = 6108, + [6339] = 6107, + [6340] = 6098, + [6341] = 6093, + [6342] = 1045, + [6343] = 6267, + [6344] = 6267, + [6345] = 6192, + [6346] = 6203, + [6347] = 6093, + [6348] = 6098, + [6349] = 6192, + [6350] = 6107, + [6351] = 6108, + [6352] = 6111, + [6353] = 6267, + [6354] = 6156, + [6355] = 6153, + [6356] = 6152, + [6357] = 6151, + [6358] = 6147, + [6359] = 6203, + [6360] = 6111, + [6361] = 6097, + [6362] = 1039, + [6363] = 6117, + [6364] = 6122, + [6365] = 6108, + [6366] = 6130, + [6367] = 6126, + [6368] = 6136, [6369] = 6369, - [6370] = 1014, - [6371] = 6371, - [6372] = 6327, - [6373] = 6373, - [6374] = 6344, - [6375] = 6321, - [6376] = 6320, - [6377] = 6313, - [6378] = 6315, + [6370] = 6107, + [6371] = 6095, + [6372] = 6092, + [6373] = 6098, + [6374] = 6374, + [6375] = 6375, + [6376] = 6376, + [6377] = 6377, + [6378] = 6378, [6379] = 6379, - [6380] = 6344, + [6380] = 6380, [6381] = 6381, - [6382] = 6332, - [6383] = 6314, + [6382] = 6382, + [6383] = 6375, [6384] = 6384, - [6385] = 6326, + [6385] = 6385, [6386] = 6386, - [6387] = 6325, + [6387] = 6387, [6388] = 6388, - [6389] = 6318, + [6389] = 6389, [6390] = 6390, - [6391] = 6327, - [6392] = 6335, + [6391] = 6391, + [6392] = 6388, [6393] = 6393, - [6394] = 6340, - [6395] = 6395, - [6396] = 6334, - [6397] = 6339, - [6398] = 6339, - [6399] = 6334, - [6400] = 6340, - [6401] = 6357, - [6402] = 6358, - [6403] = 6359, - [6404] = 6357, - [6405] = 6361, - [6406] = 6335, - [6407] = 6360, - [6408] = 6358, - [6409] = 6359, - [6410] = 6361, - [6411] = 6322, - [6412] = 6327, - [6413] = 6360, - [6414] = 6332, - [6415] = 6321, - [6416] = 6320, - [6417] = 6318, - [6418] = 6313, - [6419] = 6315, - [6420] = 6332, - [6421] = 6325, - [6422] = 1035, + [6394] = 6394, + [6395] = 5210, + [6396] = 6396, + [6397] = 6397, + [6398] = 6398, + [6399] = 6399, + [6400] = 1024, + [6401] = 6401, + [6402] = 6402, + [6403] = 6403, + [6404] = 4160, + [6405] = 6405, + [6406] = 6406, + [6407] = 6407, + [6408] = 6408, + [6409] = 6409, + [6410] = 6410, + [6411] = 6411, + [6412] = 6412, + [6413] = 6413, + [6414] = 6414, + [6415] = 6415, + [6416] = 6416, + [6417] = 6417, + [6418] = 6418, + [6419] = 6419, + [6420] = 6420, + [6421] = 6421, + [6422] = 6422, [6423] = 6423, - [6424] = 6335, - [6425] = 6340, - [6426] = 6320, - [6427] = 6357, - [6428] = 6326, - [6429] = 6321, - [6430] = 6360, - [6431] = 6321, + [6424] = 6413, + [6425] = 6425, + [6426] = 6426, + [6427] = 6427, + [6428] = 6428, + [6429] = 6429, + [6430] = 6430, + [6431] = 6431, [6432] = 6432, - [6433] = 6321, + [6433] = 6433, [6434] = 6434, - [6435] = 6320, - [6436] = 6313, - [6437] = 6315, - [6438] = 6332, - [6439] = 6325, - [6440] = 6325, - [6441] = 2155, - [6442] = 6332, - [6443] = 6315, - [6444] = 6313, - [6445] = 6320, - [6446] = 6320, - [6447] = 6321, - [6448] = 6340, - [6449] = 6337, + [6435] = 6435, + [6436] = 6436, + [6437] = 6437, + [6438] = 6438, + [6439] = 6439, + [6440] = 6440, + [6441] = 6441, + [6442] = 6442, + [6443] = 6443, + [6444] = 6444, + [6445] = 6445, + [6446] = 6423, + [6447] = 6413, + [6448] = 6448, + [6449] = 6449, [6450] = 6450, [6451] = 6451, - [6452] = 6327, - [6453] = 6360, - [6454] = 6454, - [6455] = 6313, - [6456] = 6321, - [6457] = 6320, - [6458] = 6313, - [6459] = 6315, - [6460] = 6327, - [6461] = 6315, - [6462] = 6340, + [6452] = 6452, + [6453] = 6453, + [6454] = 4158, + [6455] = 6455, + [6456] = 6456, + [6457] = 6457, + [6458] = 6458, + [6459] = 6459, + [6460] = 6460, + [6461] = 6423, + [6462] = 6413, [6463] = 6463, - [6464] = 6337, - [6465] = 6322, - [6466] = 6360, + [6464] = 6464, + [6465] = 6465, + [6466] = 6466, [6467] = 6467, - [6468] = 6332, - [6469] = 6334, - [6470] = 6321, + [6468] = 6468, + [6469] = 6469, + [6470] = 6470, [6471] = 6471, - [6472] = 6320, - [6473] = 6313, - [6474] = 6315, - [6475] = 6321, - [6476] = 6320, - [6477] = 6313, - [6478] = 6315, - [6479] = 6479, - [6480] = 6327, + [6472] = 6472, + [6473] = 6473, + [6474] = 6474, + [6475] = 6475, + [6476] = 6476, + [6477] = 6477, + [6478] = 6478, + [6479] = 1022, + [6480] = 6480, [6481] = 6481, - [6482] = 6321, - [6483] = 6320, - [6484] = 6313, - [6485] = 6337, - [6486] = 6315, - [6487] = 6487, - [6488] = 6335, - [6489] = 6321, - [6490] = 6320, - [6491] = 6313, + [6482] = 6482, + [6483] = 6423, + [6484] = 6484, + [6485] = 6485, + [6486] = 6486, + [6487] = 6413, + [6488] = 6488, + [6489] = 6489, + [6490] = 6490, + [6491] = 6491, [6492] = 6492, - [6493] = 6315, - [6494] = 6321, - [6495] = 6320, + [6493] = 6493, + [6494] = 6494, + [6495] = 6495, [6496] = 6496, - [6497] = 6497, - [6498] = 6315, - [6499] = 6360, - [6500] = 6321, - [6501] = 6361, - [6502] = 6360, - [6503] = 6361, - [6504] = 6359, + [6497] = 4088, + [6498] = 6498, + [6499] = 6499, + [6500] = 6500, + [6501] = 6501, + [6502] = 6423, + [6503] = 6413, + [6504] = 6504, [6505] = 6505, - [6506] = 6358, + [6506] = 6506, [6507] = 6507, - [6508] = 6357, - [6509] = 6359, - [6510] = 6358, - [6511] = 6320, - [6512] = 5707, - [6513] = 6313, - [6514] = 6315, - [6515] = 6322, - [6516] = 338, - [6517] = 6357, - [6518] = 6344, + [6508] = 6508, + [6509] = 1019, + [6510] = 6510, + [6511] = 6511, + [6512] = 6512, + [6513] = 6513, + [6514] = 6514, + [6515] = 6515, + [6516] = 6516, + [6517] = 6517, + [6518] = 6518, [6519] = 6519, - [6520] = 6321, - [6521] = 6314, - [6522] = 6320, - [6523] = 6313, - [6524] = 6322, - [6525] = 6315, - [6526] = 6361, + [6520] = 6520, + [6521] = 6521, + [6522] = 6522, + [6523] = 6523, + [6524] = 6524, + [6525] = 6423, + [6526] = 6413, [6527] = 6527, [6528] = 6528, [6529] = 6529, @@ -11563,80 +11570,80 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6531] = 6531, [6532] = 6532, [6533] = 6533, - [6534] = 6393, - [6535] = 6340, - [6536] = 6339, + [6534] = 6534, + [6535] = 6535, + [6536] = 6536, [6537] = 6537, - [6538] = 6334, - [6539] = 6335, - [6540] = 5730, - [6541] = 6359, - [6542] = 6358, - [6543] = 6432, + [6538] = 6538, + [6539] = 6539, + [6540] = 6540, + [6541] = 6541, + [6542] = 1023, + [6543] = 6543, [6544] = 6544, [6545] = 6545, [6546] = 6546, - [6547] = 2148, - [6548] = 6344, - [6549] = 6532, + [6547] = 6547, + [6548] = 6548, + [6549] = 6549, [6550] = 6550, - [6551] = 6318, - [6552] = 6393, - [6553] = 6553, - [6554] = 6314, + [6551] = 6551, + [6552] = 6552, + [6553] = 6467, + [6554] = 6465, [6555] = 6555, - [6556] = 361, + [6556] = 6556, [6557] = 6557, - [6558] = 6318, - [6559] = 6325, - [6560] = 353, - [6561] = 6532, - [6562] = 6340, - [6563] = 6339, - [6564] = 6334, - [6565] = 6335, + [6558] = 6558, + [6559] = 6559, + [6560] = 6560, + [6561] = 6561, + [6562] = 6411, + [6563] = 6563, + [6564] = 6409, + [6565] = 6565, [6566] = 6566, - [6567] = 6567, - [6568] = 6393, - [6569] = 6532, - [6570] = 6570, - [6571] = 6326, + [6567] = 1046, + [6568] = 6568, + [6569] = 6569, + [6570] = 1038, + [6571] = 6386, [6572] = 6572, - [6573] = 6545, - [6574] = 6537, + [6573] = 6573, + [6574] = 6574, [6575] = 6575, - [6576] = 6337, - [6577] = 6325, - [6578] = 6318, - [6579] = 6393, - [6580] = 6313, - [6581] = 6332, - [6582] = 6463, - [6583] = 6315, - [6584] = 6357, - [6585] = 6585, - [6586] = 6325, - [6587] = 6557, - [6588] = 6530, - [6589] = 2157, - [6590] = 6531, - [6591] = 6532, + [6576] = 6576, + [6577] = 6577, + [6578] = 6578, + [6579] = 6579, + [6580] = 6580, + [6581] = 6581, + [6582] = 6582, + [6583] = 6583, + [6584] = 2026, + [6585] = 6558, + [6586] = 6559, + [6587] = 2025, + [6588] = 6588, + [6589] = 1016, + [6590] = 2024, + [6591] = 4086, [6592] = 6592, - [6593] = 6321, - [6594] = 6320, + [6593] = 6593, + [6594] = 6594, [6595] = 6595, [6596] = 6596, [6597] = 6597, - [6598] = 6598, + [6598] = 6386, [6599] = 6599, [6600] = 6600, [6601] = 6601, - [6602] = 6602, + [6602] = 6577, [6603] = 6603, [6604] = 6604, [6605] = 6605, - [6606] = 6606, - [6607] = 6607, + [6606] = 6558, + [6607] = 6559, [6608] = 6608, [6609] = 6609, [6610] = 6610, @@ -11647,13 +11654,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6615] = 6615, [6616] = 6616, [6617] = 6617, - [6618] = 6618, + [6618] = 1033, [6619] = 6619, - [6620] = 6620, + [6620] = 6386, [6621] = 6621, [6622] = 6622, - [6623] = 6623, - [6624] = 6624, + [6623] = 2806, + [6624] = 2784, [6625] = 6625, [6626] = 6626, [6627] = 6627, @@ -11663,60 +11670,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6631] = 6631, [6632] = 6632, [6633] = 6633, - [6634] = 6634, + [6634] = 6577, [6635] = 6635, [6636] = 6636, - [6637] = 6628, + [6637] = 6637, [6638] = 6638, [6639] = 6639, [6640] = 6640, [6641] = 6641, - [6642] = 4262, + [6642] = 6642, [6643] = 6643, [6644] = 6644, [6645] = 6645, [6646] = 6646, - [6647] = 6636, + [6647] = 6647, [6648] = 6648, - [6649] = 6628, - [6650] = 6650, - [6651] = 6651, + [6649] = 6649, + [6650] = 6558, + [6651] = 6559, [6652] = 6652, [6653] = 6653, [6654] = 6654, [6655] = 6655, - [6656] = 6636, - [6657] = 6657, - [6658] = 6628, - [6659] = 6659, + [6656] = 6656, + [6657] = 6540, + [6658] = 6658, + [6659] = 6460, [6660] = 6660, - [6661] = 6661, + [6661] = 6612, [6662] = 6662, [6663] = 6663, - [6664] = 4266, + [6664] = 6664, [6665] = 6665, [6666] = 6666, [6667] = 6667, [6668] = 6668, - [6669] = 6636, - [6670] = 6628, - [6671] = 5510, + [6669] = 6669, + [6670] = 6670, + [6671] = 6671, [6672] = 6672, - [6673] = 6673, - [6674] = 6674, + [6673] = 6375, + [6674] = 6384, [6675] = 6675, [6676] = 6676, [6677] = 6677, [6678] = 6678, [6679] = 6679, - [6680] = 6636, + [6680] = 6680, [6681] = 6681, - [6682] = 6628, + [6682] = 6682, [6683] = 6683, [6684] = 6684, [6685] = 6685, [6686] = 6686, - [6687] = 4258, + [6687] = 6386, [6688] = 6688, [6689] = 6689, [6690] = 6690, @@ -11728,31 +11735,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6696] = 6696, [6697] = 6697, [6698] = 6698, - [6699] = 6699, + [6699] = 6577, [6700] = 6700, [6701] = 6701, - [6702] = 6702, + [6702] = 6474, [6703] = 6703, [6704] = 6704, [6705] = 6705, - [6706] = 6706, - [6707] = 6595, + [6706] = 6595, + [6707] = 6593, [6708] = 6708, [6709] = 6709, [6710] = 6710, - [6711] = 6636, - [6712] = 6628, - [6713] = 6694, - [6714] = 6714, + [6711] = 6711, + [6712] = 6712, + [6713] = 6558, + [6714] = 6559, [6715] = 6715, [6716] = 6716, [6717] = 6717, [6718] = 6718, [6719] = 6719, - [6720] = 6720, + [6720] = 1052, [6721] = 6721, - [6722] = 6722, - [6723] = 6723, + [6722] = 6612, + [6723] = 6643, [6724] = 6724, [6725] = 6725, [6726] = 6726, @@ -11762,7 +11769,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6730] = 6730, [6731] = 6731, [6732] = 6732, - [6733] = 6733, + [6733] = 6533, [6734] = 6734, [6735] = 6735, [6736] = 6736, @@ -11773,11 +11780,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6741] = 6741, [6742] = 6742, [6743] = 6743, - [6744] = 6744, - [6745] = 6745, - [6746] = 6746, - [6747] = 6747, - [6748] = 6748, + [6744] = 6471, + [6745] = 6460, + [6746] = 6612, + [6747] = 6375, + [6748] = 6384, [6749] = 6749, [6750] = 6750, [6751] = 6751, @@ -11786,2168 +11793,1775 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6754] = 6754, [6755] = 6755, [6756] = 6756, - [6757] = 6757, - [6758] = 6758, + [6757] = 6471, + [6758] = 5098, [6759] = 6759, - [6760] = 6760, + [6760] = 6474, [6761] = 6761, - [6762] = 6651, + [6762] = 6476, [6763] = 6763, - [6764] = 6595, + [6764] = 6478, [6765] = 6765, - [6766] = 6766, + [6766] = 6480, [6767] = 6767, [6768] = 6768, [6769] = 6769, - [6770] = 6770, - [6771] = 6751, - [6772] = 6772, - [6773] = 6752, + [6770] = 6484, + [6771] = 6485, + [6772] = 1031, + [6773] = 6386, [6774] = 6774, [6775] = 6775, [6776] = 6776, [6777] = 6777, [6778] = 6778, - [6779] = 6779, + [6779] = 6384, [6780] = 6780, [6781] = 6781, - [6782] = 6651, + [6782] = 6782, [6783] = 6783, [6784] = 6784, - [6785] = 6601, + [6785] = 6577, [6786] = 6786, - [6787] = 6609, - [6788] = 6788, + [6787] = 6787, + [6788] = 6478, [6789] = 6789, - [6790] = 6790, - [6791] = 6791, - [6792] = 6595, - [6793] = 6793, - [6794] = 6665, - [6795] = 6795, - [6796] = 6796, + [6790] = 1030, + [6791] = 6480, + [6792] = 6792, + [6793] = 1029, + [6794] = 6558, + [6795] = 6559, + [6796] = 6612, [6797] = 6797, - [6798] = 6798, + [6798] = 6512, [6799] = 6799, [6800] = 6800, - [6801] = 6751, - [6802] = 6752, - [6803] = 6803, - [6804] = 6804, + [6801] = 6801, + [6802] = 6802, + [6803] = 5192, + [6804] = 2032, [6805] = 6805, - [6806] = 6806, + [6806] = 2034, [6807] = 6807, [6808] = 6808, - [6809] = 6809, - [6810] = 6744, - [6811] = 6740, + [6809] = 2039, + [6810] = 6810, + [6811] = 2040, [6812] = 6812, [6813] = 6813, - [6814] = 6814, - [6815] = 6815, + [6814] = 6792, + [6815] = 6812, [6816] = 6816, [6817] = 6817, [6818] = 6818, - [6819] = 6694, - [6820] = 6820, - [6821] = 6686, - [6822] = 6822, - [6823] = 6823, + [6819] = 6819, + [6820] = 6810, + [6821] = 6821, + [6822] = 2042, + [6823] = 6533, [6824] = 6824, - [6825] = 6825, + [6825] = 6476, [6826] = 6826, - [6827] = 6686, - [6828] = 6828, - [6829] = 6829, - [6830] = 6830, + [6827] = 6827, + [6828] = 6808, + [6829] = 6485, + [6830] = 6540, [6831] = 6831, - [6832] = 6651, + [6832] = 6832, [6833] = 6833, - [6834] = 4267, + [6834] = 6834, [6835] = 6835, [6836] = 6836, - [6837] = 6595, - [6838] = 6733, - [6839] = 6757, + [6837] = 6837, + [6838] = 6838, + [6839] = 6839, [6840] = 6840, [6841] = 6841, [6842] = 6842, - [6843] = 6843, - [6844] = 6844, + [6843] = 6467, + [6844] = 6465, [6845] = 6845, [6846] = 6846, - [6847] = 6751, - [6848] = 6752, + [6847] = 6847, + [6848] = 6848, [6849] = 6849, - [6850] = 6757, - [6851] = 6851, - [6852] = 6756, - [6853] = 6756, - [6854] = 6854, - [6855] = 6855, - [6856] = 6856, - [6857] = 6805, + [6850] = 6850, + [6851] = 6409, + [6852] = 6411, + [6853] = 6411, + [6854] = 6409, + [6855] = 6385, + [6856] = 1028, + [6857] = 6388, [6858] = 6858, - [6859] = 6859, + [6859] = 1027, [6860] = 6860, [6861] = 6861, - [6862] = 6862, - [6863] = 6863, + [6862] = 1026, + [6863] = 6456, [6864] = 6864, [6865] = 6865, - [6866] = 6866, + [6866] = 6057, [6867] = 6867, - [6868] = 6868, + [6868] = 6386, [6869] = 6869, [6870] = 6870, [6871] = 6871, - [6872] = 6740, + [6872] = 6872, [6873] = 6873, - [6874] = 6651, + [6874] = 6874, [6875] = 6875, - [6876] = 6876, - [6877] = 6744, + [6876] = 6465, + [6877] = 6467, [6878] = 6878, [6879] = 6879, [6880] = 6880, [6881] = 6881, - [6882] = 6595, - [6883] = 6742, - [6884] = 6741, - [6885] = 6885, - [6886] = 6805, - [6887] = 6887, + [6882] = 6577, + [6883] = 6593, + [6884] = 6884, + [6885] = 6595, + [6886] = 6643, + [6887] = 6559, [6888] = 6888, - [6889] = 6889, - [6890] = 6632, + [6889] = 6558, + [6890] = 6375, [6891] = 6891, - [6892] = 6633, + [6892] = 6484, [6893] = 6893, - [6894] = 6894, - [6895] = 6895, + [6894] = 6675, + [6895] = 6676, [6896] = 6896, - [6897] = 6836, - [6898] = 6898, - [6899] = 6899, + [6897] = 6558, + [6898] = 6559, + [6899] = 6681, [6900] = 6900, - [6901] = 6901, - [6902] = 6902, - [6903] = 6751, - [6904] = 6904, - [6905] = 6905, - [6906] = 6752, - [6907] = 6797, - [6908] = 1037, + [6901] = 6697, + [6902] = 6517, + [6903] = 6903, + [6904] = 6413, + [6905] = 6423, + [6906] = 6512, + [6907] = 6907, + [6908] = 6908, [6909] = 6909, - [6910] = 6910, + [6910] = 6612, [6911] = 6911, - [6912] = 6805, - [6913] = 6790, - [6914] = 6914, + [6912] = 6912, + [6913] = 6375, + [6914] = 6612, [6915] = 6915, [6916] = 6916, - [6917] = 6917, + [6917] = 6718, [6918] = 6918, [6919] = 6919, - [6920] = 1038, + [6920] = 6920, [6921] = 6921, [6922] = 6922, [6923] = 6923, [6924] = 6924, [6925] = 6925, [6926] = 6926, - [6927] = 6927, - [6928] = 6928, - [6929] = 6843, - [6930] = 6632, - [6931] = 6633, - [6932] = 6845, + [6927] = 6753, + [6928] = 6532, + [6929] = 6929, + [6930] = 6756, + [6931] = 6931, + [6932] = 6932, [6933] = 6933, [6934] = 6934, [6935] = 6935, - [6936] = 6856, + [6936] = 6540, [6937] = 6937, - [6938] = 6938, - [6939] = 6939, - [6940] = 6940, - [6941] = 6860, - [6942] = 6942, - [6943] = 6943, + [6938] = 5117, + [6939] = 6544, + [6940] = 6374, + [6941] = 6533, + [6942] = 6460, + [6943] = 1025, [6944] = 6944, [6945] = 6945, [6946] = 6946, [6947] = 6947, [6948] = 6948, [6949] = 6949, - [6950] = 6737, + [6950] = 6950, [6951] = 6951, [6952] = 6952, - [6953] = 6735, - [6954] = 6954, + [6953] = 6953, + [6954] = 6765, [6955] = 6955, - [6956] = 6956, - [6957] = 6957, - [6958] = 6958, + [6956] = 6767, + [6957] = 6768, + [6958] = 5839, [6959] = 6959, [6960] = 6960, [6961] = 6961, - [6962] = 6769, - [6963] = 6963, - [6964] = 6964, - [6965] = 6965, + [6962] = 6962, + [6963] = 6375, + [6964] = 6384, + [6965] = 6384, [6966] = 6966, - [6967] = 6797, - [6968] = 6651, - [6969] = 6969, + [6967] = 6967, + [6968] = 5171, + [6969] = 6807, [6970] = 6970, [6971] = 6971, [6972] = 6972, [6973] = 6973, - [6974] = 6595, + [6974] = 6974, [6975] = 6975, - [6976] = 6976, + [6976] = 6540, [6977] = 6977, [6978] = 6978, [6979] = 6979, [6980] = 6980, - [6981] = 6981, - [6982] = 6982, + [6981] = 6471, + [6982] = 6467, [6983] = 6983, - [6984] = 6751, - [6985] = 1043, - [6986] = 6742, - [6987] = 6987, - [6988] = 6752, - [6989] = 6989, - [6990] = 6990, - [6991] = 6991, - [6992] = 6992, + [6984] = 6984, + [6985] = 6985, + [6986] = 6465, + [6987] = 6474, + [6988] = 6988, + [6989] = 6792, + [6990] = 6807, + [6991] = 6812, + [6992] = 6512, [6993] = 6993, - [6994] = 6741, - [6995] = 6995, - [6996] = 6996, - [6997] = 6997, - [6998] = 6998, - [6999] = 6737, - [7000] = 7000, - [7001] = 7001, - [7002] = 6715, - [7003] = 6805, - [7004] = 6731, - [7005] = 6735, + [6994] = 6813, + [6995] = 6533, + [6996] = 6810, + [6997] = 6476, + [6998] = 6478, + [6999] = 6411, + [7000] = 6480, + [7001] = 6808, + [7002] = 7002, + [7003] = 7003, + [7004] = 6409, + [7005] = 7005, [7006] = 7006, - [7007] = 6733, + [7007] = 7007, [7008] = 7008, - [7009] = 2178, - [7010] = 5242, - [7011] = 6805, - [7012] = 7012, - [7013] = 6632, - [7014] = 6728, - [7015] = 6633, - [7016] = 2177, - [7017] = 6731, - [7018] = 6731, - [7019] = 6733, - [7020] = 1053, - [7021] = 6735, + [7009] = 7009, + [7010] = 7010, + [7011] = 7011, + [7012] = 6484, + [7013] = 6485, + [7014] = 7014, + [7015] = 7015, + [7016] = 7016, + [7017] = 7014, + [7018] = 6831, + [7019] = 7019, + [7020] = 7020, + [7021] = 6595, [7022] = 7022, - [7023] = 6737, + [7023] = 6593, [7024] = 7024, - [7025] = 7025, - [7026] = 6728, - [7027] = 6741, - [7028] = 6742, + [7025] = 6512, + [7026] = 6837, + [7027] = 6460, + [7028] = 7028, [7029] = 7029, - [7030] = 7030, - [7031] = 2176, - [7032] = 7032, - [7033] = 6910, - [7034] = 7034, + [7030] = 6839, + [7031] = 7031, + [7032] = 6409, + [7033] = 7033, + [7034] = 6411, [7035] = 7035, - [7036] = 7036, - [7037] = 7037, - [7038] = 6769, - [7039] = 6911, - [7040] = 5259, - [7041] = 7041, - [7042] = 7042, - [7043] = 6924, - [7044] = 6715, - [7045] = 7045, - [7046] = 7046, - [7047] = 7047, + [7036] = 6845, + [7037] = 6476, + [7038] = 6465, + [7039] = 6478, + [7040] = 6467, + [7041] = 6480, + [7042] = 2051, + [7043] = 6484, + [7044] = 6485, + [7045] = 6577, + [7046] = 2050, + [7047] = 6517, [7048] = 7048, [7049] = 7049, - [7050] = 7050, - [7051] = 6943, - [7052] = 1015, - [7053] = 6947, - [7054] = 1040, - [7055] = 6769, + [7050] = 6512, + [7051] = 7051, + [7052] = 2047, + [7053] = 7053, + [7054] = 7054, + [7055] = 5543, [7056] = 7056, - [7057] = 6951, - [7058] = 6728, + [7057] = 7057, + [7058] = 7058, [7059] = 7059, [7060] = 7060, [7061] = 7061, [7062] = 7062, - [7063] = 7063, + [7063] = 6532, [7064] = 7064, - [7065] = 7065, - [7066] = 7066, + [7065] = 6544, + [7066] = 6460, [7067] = 7067, - [7068] = 7068, - [7069] = 7069, - [7070] = 7070, - [7071] = 7071, - [7072] = 7072, - [7073] = 7073, + [7068] = 6512, + [7069] = 6949, + [7070] = 6595, + [7071] = 6950, + [7072] = 6593, + [7073] = 6409, [7074] = 7074, - [7075] = 7075, + [7075] = 6411, [7076] = 7076, [7077] = 7077, - [7078] = 7078, - [7079] = 7079, - [7080] = 6790, - [7081] = 7081, - [7082] = 7082, + [7078] = 6465, + [7079] = 6753, + [7080] = 7080, + [7081] = 6540, + [7082] = 6467, [7083] = 7083, [7084] = 7084, - [7085] = 1046, + [7085] = 6595, [7086] = 7086, - [7087] = 6797, - [7088] = 7056, - [7089] = 7089, - [7090] = 7090, + [7087] = 6593, + [7088] = 7088, + [7089] = 6756, + [7090] = 6540, [7091] = 7091, - [7092] = 6045, - [7093] = 7064, - [7094] = 7094, - [7095] = 6651, - [7096] = 7096, - [7097] = 6910, - [7098] = 6975, - [7099] = 7047, - [7100] = 6744, - [7101] = 6740, - [7102] = 7102, - [7103] = 6715, - [7104] = 2162, + [7092] = 6467, + [7093] = 6465, + [7094] = 6471, + [7095] = 7095, + [7096] = 6374, + [7097] = 6476, + [7098] = 6474, + [7099] = 6512, + [7100] = 7100, + [7101] = 6411, + [7102] = 6595, + [7103] = 6409, + [7104] = 7104, [7105] = 7105, [7106] = 7106, - [7107] = 7107, + [7107] = 6485, [7108] = 7108, - [7109] = 6694, - [7110] = 2181, - [7111] = 6686, - [7112] = 7112, + [7109] = 7109, + [7110] = 6484, + [7111] = 6480, + [7112] = 6478, [7113] = 7113, - [7114] = 2187, + [7114] = 6476, [7115] = 7115, - [7116] = 6978, - [7117] = 6975, - [7118] = 6790, - [7119] = 7119, - [7120] = 2195, - [7121] = 6728, - [7122] = 7122, - [7123] = 6731, - [7124] = 6733, + [7116] = 6478, + [7117] = 7117, + [7118] = 6480, + [7119] = 6593, + [7120] = 6460, + [7121] = 6595, + [7122] = 7007, + [7123] = 7123, + [7124] = 6484, [7125] = 7125, - [7126] = 6735, + [7126] = 6485, [7127] = 7127, - [7128] = 2165, - [7129] = 6751, - [7130] = 6752, - [7131] = 6945, - [7132] = 6993, + [7128] = 7128, + [7129] = 7129, + [7130] = 7130, + [7131] = 7131, + [7132] = 7132, [7133] = 7133, [7134] = 7134, - [7135] = 6741, - [7136] = 6742, + [7135] = 6593, + [7136] = 7136, [7137] = 7137, [7138] = 7138, [7139] = 7139, - [7140] = 6757, - [7141] = 6997, - [7142] = 6756, - [7143] = 6927, - [7144] = 7001, + [7140] = 6384, + [7141] = 7141, + [7142] = 7142, + [7143] = 7143, + [7144] = 7144, [7145] = 7145, - [7146] = 6737, - [7147] = 6805, - [7148] = 6952, + [7146] = 7146, + [7147] = 7147, + [7148] = 7148, [7149] = 7149, - [7150] = 7150, - [7151] = 7036, - [7152] = 7152, - [7153] = 7153, + [7150] = 7146, + [7151] = 7151, + [7152] = 1143, + [7153] = 7141, [7154] = 7154, [7155] = 7155, [7156] = 7156, [7157] = 7157, [7158] = 7158, - [7159] = 7159, - [7160] = 1030, + [7159] = 7141, + [7160] = 7160, [7161] = 7161, - [7162] = 7162, + [7162] = 7141, [7163] = 7163, [7164] = 7164, - [7165] = 7165, - [7166] = 7166, + [7165] = 1205, + [7166] = 7148, [7167] = 7167, - [7168] = 7168, + [7168] = 7144, [7169] = 7169, [7170] = 7170, - [7171] = 7171, + [7171] = 3047, [7172] = 7172, - [7173] = 7173, + [7173] = 7164, [7174] = 7174, - [7175] = 7175, + [7175] = 7143, [7176] = 7176, - [7177] = 7177, + [7177] = 7144, [7178] = 7178, [7179] = 7179, [7180] = 7180, - [7181] = 5417, + [7181] = 7181, [7182] = 7182, [7183] = 7183, [7184] = 7184, [7185] = 7185, - [7186] = 7186, + [7186] = 7174, [7187] = 7187, [7188] = 7188, [7189] = 7189, [7190] = 7190, [7191] = 7191, - [7192] = 6752, + [7192] = 7192, [7193] = 7193, - [7194] = 6924, + [7194] = 7194, [7195] = 7195, - [7196] = 7196, - [7197] = 7197, - [7198] = 2191, + [7196] = 7170, + [7197] = 7144, + [7198] = 7198, [7199] = 7199, [7200] = 7200, - [7201] = 6911, - [7202] = 2196, - [7203] = 6751, - [7204] = 2198, + [7201] = 7151, + [7202] = 1177, + [7203] = 1176, + [7204] = 7204, [7205] = 7205, - [7206] = 7206, + [7206] = 3062, [7207] = 7207, [7208] = 7208, - [7209] = 6769, - [7210] = 7064, - [7211] = 6628, + [7209] = 7209, + [7210] = 7210, + [7211] = 7211, [7212] = 7212, - [7213] = 7213, - [7214] = 7067, - [7215] = 7215, + [7213] = 7169, + [7214] = 7214, + [7215] = 7167, [7216] = 7216, [7217] = 7217, - [7218] = 5783, - [7219] = 7069, - [7220] = 6632, - [7221] = 6633, - [7222] = 7222, - [7223] = 7071, + [7218] = 1077, + [7219] = 7149, + [7220] = 7158, + [7221] = 7184, + [7222] = 7191, + [7223] = 7194, [7224] = 7224, [7225] = 7225, [7226] = 7226, [7227] = 7227, [7228] = 7228, [7229] = 7229, - [7230] = 6633, + [7230] = 7212, [7231] = 7231, - [7232] = 7232, - [7233] = 6636, - [7234] = 6790, - [7235] = 7235, - [7236] = 6632, - [7237] = 7237, - [7238] = 7071, + [7232] = 1080, + [7233] = 7169, + [7234] = 7176, + [7235] = 7179, + [7236] = 1175, + [7237] = 7180, + [7238] = 7238, [7239] = 7239, - [7240] = 6797, + [7240] = 7181, [7241] = 7241, [7242] = 7242, [7243] = 7243, - [7244] = 7065, + [7244] = 7244, [7245] = 7245, - [7246] = 7246, + [7246] = 7226, [7247] = 7247, - [7248] = 1052, - [7249] = 6744, - [7250] = 7250, - [7251] = 6740, - [7252] = 6694, - [7253] = 7253, - [7254] = 6686, - [7255] = 6756, - [7256] = 6757, - [7257] = 7069, - [7258] = 7258, - [7259] = 6686, - [7260] = 7260, - [7261] = 7261, - [7262] = 6836, - [7263] = 6694, - [7264] = 7264, - [7265] = 6740, - [7266] = 6744, - [7267] = 6769, + [7248] = 7248, + [7249] = 1074, + [7250] = 1174, + [7251] = 7247, + [7252] = 7183, + [7253] = 7248, + [7254] = 7244, + [7255] = 7226, + [7256] = 7245, + [7257] = 7242, + [7258] = 7238, + [7259] = 7149, + [7260] = 7179, + [7261] = 7176, + [7262] = 7158, + [7263] = 7182, + [7264] = 7199, + [7265] = 7174, + [7266] = 7266, + [7267] = 7148, [7268] = 7268, - [7269] = 7056, - [7270] = 6757, + [7269] = 4163, + [7270] = 7270, [7271] = 7271, - [7272] = 6756, + [7272] = 7211, [7273] = 7273, - [7274] = 7274, - [7275] = 6756, - [7276] = 6757, - [7277] = 7277, - [7278] = 7278, - [7279] = 6686, - [7280] = 6694, - [7281] = 6740, - [7282] = 7282, - [7283] = 6744, - [7284] = 6715, - [7285] = 6170, + [7274] = 7208, + [7275] = 7275, + [7276] = 7276, + [7277] = 7204, + [7278] = 7151, + [7279] = 7199, + [7280] = 1075, + [7281] = 7185, + [7282] = 1180, + [7283] = 7283, + [7284] = 7194, + [7285] = 7191, [7286] = 7286, - [7287] = 6797, - [7288] = 7288, - [7289] = 7289, - [7290] = 7067, - [7291] = 6609, - [7292] = 6769, - [7293] = 7293, - [7294] = 6733, - [7295] = 1025, - [7296] = 6735, - [7297] = 1026, - [7298] = 6737, - [7299] = 1028, - [7300] = 6741, - [7301] = 6742, - [7302] = 1049, - [7303] = 7303, - [7304] = 6742, - [7305] = 6741, - [7306] = 6737, - [7307] = 6735, - [7308] = 6733, - [7309] = 2810, - [7310] = 7310, - [7311] = 5319, - [7312] = 7047, - [7313] = 2816, - [7314] = 7314, - [7315] = 7315, - [7316] = 6715, - [7317] = 7065, - [7318] = 7318, - [7319] = 7319, - [7320] = 7320, - [7321] = 7321, - [7322] = 7322, - [7323] = 7323, - [7324] = 6715, - [7325] = 6769, - [7326] = 7326, - [7327] = 7327, - [7328] = 6633, - [7329] = 6632, - [7330] = 7330, - [7331] = 7331, + [7287] = 7184, + [7288] = 7224, + [7289] = 7143, + [7290] = 7195, + [7291] = 7291, + [7292] = 1069, + [7293] = 7164, + [7294] = 7167, + [7295] = 369, + [7296] = 7188, + [7297] = 7297, + [7298] = 7204, + [7299] = 7144, + [7300] = 7300, + [7301] = 5492, + [7302] = 7145, + [7303] = 7208, + [7304] = 7190, + [7305] = 7195, + [7306] = 7225, + [7307] = 7307, + [7308] = 7242, + [7309] = 7174, + [7310] = 7212, + [7311] = 7311, + [7312] = 7170, + [7313] = 7313, + [7314] = 7144, + [7315] = 7229, + [7316] = 7190, + [7317] = 7188, + [7318] = 7212, + [7319] = 7211, + [7320] = 7228, + [7321] = 7185, + [7322] = 7188, + [7323] = 7183, + [7324] = 7190, + [7325] = 7227, + [7326] = 7169, + [7327] = 7194, + [7328] = 7181, + [7329] = 7329, + [7330] = 7180, + [7331] = 7225, [7332] = 7332, - [7333] = 7333, - [7334] = 7334, - [7335] = 7335, - [7336] = 7107, - [7337] = 7337, - [7338] = 6797, - [7339] = 7339, - [7340] = 7340, - [7341] = 7341, - [7342] = 7342, + [7333] = 7224, + [7334] = 7212, + [7335] = 7169, + [7336] = 7158, + [7337] = 7217, + [7338] = 1087, + [7339] = 7174, + [7340] = 7149, + [7341] = 7149, + [7342] = 7158, [7343] = 7343, - [7344] = 7344, - [7345] = 7345, - [7346] = 7346, - [7347] = 7347, - [7348] = 7105, - [7349] = 6744, - [7350] = 6740, - [7351] = 7351, - [7352] = 7352, - [7353] = 6756, + [7344] = 7227, + [7345] = 7229, + [7346] = 7227, + [7347] = 7193, + [7348] = 7244, + [7349] = 7191, + [7350] = 7248, + [7351] = 7180, + [7352] = 1172, + [7353] = 7183, [7354] = 7354, - [7355] = 1050, - [7356] = 6757, - [7357] = 1051, - [7358] = 6694, - [7359] = 1054, - [7360] = 6686, - [7361] = 7361, - [7362] = 7362, - [7363] = 7363, - [7364] = 1255, - [7365] = 1238, - [7366] = 7366, - [7367] = 7367, - [7368] = 7368, - [7369] = 7369, - [7370] = 1082, - [7371] = 7371, - [7372] = 7372, - [7373] = 7373, - [7374] = 7374, - [7375] = 7375, - [7376] = 1080, - [7377] = 7377, - [7378] = 7378, - [7379] = 7379, - [7380] = 7380, - [7381] = 7381, - [7382] = 7382, - [7383] = 7383, - [7384] = 7384, - [7385] = 7362, - [7386] = 7386, - [7387] = 3205, - [7388] = 7388, - [7389] = 7389, - [7390] = 7390, - [7391] = 1073, - [7392] = 1164, - [7393] = 7393, - [7394] = 7394, + [7355] = 7355, + [7356] = 7245, + [7357] = 7226, + [7358] = 7247, + [7359] = 7169, + [7360] = 7212, + [7361] = 7149, + [7362] = 7144, + [7363] = 7181, + [7364] = 7364, + [7365] = 7238, + [7366] = 7170, + [7367] = 7179, + [7368] = 7176, + [7369] = 7224, + [7370] = 7158, + [7371] = 7225, + [7372] = 7156, + [7373] = 5491, + [7374] = 7148, + [7375] = 7227, + [7376] = 1171, + [7377] = 5488, + [7378] = 7228, + [7379] = 7211, + [7380] = 7229, + [7381] = 7208, + [7382] = 7195, + [7383] = 7154, + [7384] = 7151, + [7385] = 7199, + [7386] = 1089, + [7387] = 7387, + [7388] = 1091, + [7389] = 7190, + [7390] = 7194, + [7391] = 7191, + [7392] = 7188, + [7393] = 1090, + [7394] = 7143, [7395] = 7395, - [7396] = 7396, - [7397] = 7397, - [7398] = 1244, - [7399] = 7399, - [7400] = 1258, - [7401] = 1240, - [7402] = 1257, - [7403] = 7403, - [7404] = 7404, - [7405] = 1254, - [7406] = 1252, - [7407] = 7407, - [7408] = 1239, - [7409] = 1237, - [7410] = 7410, - [7411] = 1249, - [7412] = 7412, - [7413] = 1229, - [7414] = 7414, - [7415] = 1247, - [7416] = 7416, - [7417] = 7417, - [7418] = 1246, - [7419] = 1217, - [7420] = 1184, - [7421] = 7421, - [7422] = 1182, - [7423] = 1181, - [7424] = 7424, - [7425] = 1245, - [7426] = 1175, + [7396] = 7185, + [7397] = 7189, + [7398] = 7164, + [7399] = 7224, + [7400] = 7225, + [7401] = 7164, + [7402] = 7227, + [7403] = 7174, + [7404] = 7228, + [7405] = 3004, + [7406] = 7228, + [7407] = 7229, + [7408] = 7408, + [7409] = 7181, + [7410] = 7180, + [7411] = 7411, + [7412] = 4088, + [7413] = 4086, + [7414] = 7199, + [7415] = 7415, + [7416] = 1164, + [7417] = 7229, + [7418] = 7418, + [7419] = 3140, + [7420] = 7420, + [7421] = 7148, + [7422] = 7422, + [7423] = 7423, + [7424] = 1165, + [7425] = 7425, + [7426] = 7426, [7427] = 7427, - [7428] = 346, - [7429] = 7429, - [7430] = 7430, - [7431] = 1174, - [7432] = 7432, + [7428] = 7428, + [7429] = 7151, + [7430] = 7411, + [7431] = 3022, + [7432] = 7176, [7433] = 7433, - [7434] = 7389, - [7435] = 7435, - [7436] = 7436, - [7437] = 7437, - [7438] = 7438, - [7439] = 1173, - [7440] = 7440, - [7441] = 1169, - [7442] = 7442, - [7443] = 1159, - [7444] = 1127, - [7445] = 7445, - [7446] = 1133, - [7447] = 7447, - [7448] = 1160, - [7449] = 7449, - [7450] = 368, + [7434] = 7200, + [7435] = 7183, + [7436] = 3141, + [7437] = 1092, + [7438] = 7170, + [7439] = 7144, + [7440] = 3154, + [7441] = 7428, + [7442] = 7411, + [7443] = 1154, + [7444] = 7444, + [7445] = 7231, + [7446] = 1170, + [7447] = 1178, + [7448] = 7179, + [7449] = 1181, + [7450] = 7188, [7451] = 7451, - [7452] = 7414, - [7453] = 7453, - [7454] = 7454, + [7452] = 7451, + [7453] = 1169, + [7454] = 7238, [7455] = 7455, - [7456] = 7456, - [7457] = 7457, - [7458] = 7458, - [7459] = 1158, - [7460] = 7460, - [7461] = 7461, - [7462] = 1161, - [7463] = 3240, - [7464] = 1162, - [7465] = 3228, - [7466] = 1163, + [7456] = 7455, + [7457] = 7242, + [7458] = 7167, + [7459] = 7459, + [7460] = 7190, + [7461] = 7174, + [7462] = 7462, + [7463] = 1168, + [7464] = 7464, + [7465] = 7247, + [7466] = 7466, [7467] = 7467, - [7468] = 1131, - [7469] = 7469, - [7470] = 7404, - [7471] = 7404, - [7472] = 1157, - [7473] = 7469, - [7474] = 7474, - [7475] = 1061, - [7476] = 7461, - [7477] = 7457, + [7468] = 1220, + [7469] = 1188, + [7470] = 7164, + [7471] = 1187, + [7472] = 7387, + [7473] = 7473, + [7474] = 7244, + [7475] = 7475, + [7476] = 1167, + [7477] = 7248, [7478] = 7478, - [7479] = 7389, - [7480] = 7388, - [7481] = 7456, - [7482] = 7451, + [7479] = 7479, + [7480] = 7480, + [7481] = 7481, + [7482] = 7482, [7483] = 7483, - [7484] = 7436, - [7485] = 7432, - [7486] = 7430, - [7487] = 1093, + [7484] = 7484, + [7485] = 7245, + [7486] = 7486, + [7487] = 7226, [7488] = 7488, - [7489] = 1056, - [7490] = 1230, - [7491] = 7491, - [7492] = 1155, - [7493] = 1153, - [7494] = 1224, - [7495] = 7384, - [7496] = 1223, - [7497] = 7396, - [7498] = 1222, - [7499] = 7397, - [7500] = 7399, - [7501] = 7501, - [7502] = 7395, - [7503] = 7394, - [7504] = 7393, - [7505] = 7505, - [7506] = 7506, - [7507] = 1202, - [7508] = 7508, - [7509] = 7509, - [7510] = 7386, - [7511] = 7362, - [7512] = 7414, + [7489] = 7247, + [7490] = 7226, + [7491] = 7245, + [7492] = 7492, + [7493] = 1185, + [7494] = 7247, + [7495] = 7495, + [7496] = 7496, + [7497] = 7156, + [7498] = 1184, + [7499] = 7475, + [7500] = 7205, + [7501] = 7466, + [7502] = 7502, + [7503] = 7248, + [7504] = 7244, + [7505] = 7242, + [7506] = 2975, + [7507] = 4175, + [7508] = 1210, + [7509] = 7238, + [7510] = 7510, + [7511] = 7214, + [7512] = 7415, [7513] = 7513, - [7514] = 7383, - [7515] = 7381, - [7516] = 7407, - [7517] = 7378, - [7518] = 7377, - [7519] = 7519, - [7520] = 3288, - [7521] = 7506, - [7522] = 7447, - [7523] = 3301, - [7524] = 7366, - [7525] = 7525, - [7526] = 7445, - [7527] = 7527, - [7528] = 7388, - [7529] = 7367, - [7530] = 7382, - [7531] = 7369, - [7532] = 1151, - [7533] = 7380, - [7534] = 7372, - [7535] = 7373, - [7536] = 7374, - [7537] = 1150, - [7538] = 3285, - [7539] = 1148, - [7540] = 3238, - [7541] = 7379, - [7542] = 7380, - [7543] = 1145, - [7544] = 7382, - [7545] = 1143, - [7546] = 7384, - [7547] = 7379, - [7548] = 7442, - [7549] = 3222, - [7550] = 7388, - [7551] = 7389, - [7552] = 7440, - [7553] = 4262, - [7554] = 7438, - [7555] = 7374, - [7556] = 7556, - [7557] = 1142, - [7558] = 1141, - [7559] = 7399, - [7560] = 7373, - [7561] = 7561, - [7562] = 7513, - [7563] = 7563, - [7564] = 1139, + [7514] = 1166, + [7515] = 7179, + [7516] = 7176, + [7517] = 7433, + [7518] = 2821, + [7519] = 2817, + [7520] = 3002, + [7521] = 7521, + [7522] = 7522, + [7523] = 7148, + [7524] = 7524, + [7525] = 7167, + [7526] = 7466, + [7527] = 7146, + [7528] = 7444, + [7529] = 7529, + [7530] = 7455, + [7531] = 7451, + [7532] = 373, + [7533] = 7533, + [7534] = 7534, + [7535] = 7211, + [7536] = 7536, + [7537] = 1163, + [7538] = 7266, + [7539] = 7268, + [7540] = 7199, + [7541] = 7271, + [7542] = 7145, + [7543] = 1083, + [7544] = 7273, + [7545] = 7510, + [7546] = 7208, + [7547] = 7547, + [7548] = 7143, + [7549] = 7275, + [7550] = 7428, + [7551] = 7551, + [7552] = 1162, + [7553] = 7204, + [7554] = 7185, + [7555] = 7154, + [7556] = 1161, + [7557] = 1160, + [7558] = 7558, + [7559] = 7156, + [7560] = 7560, + [7561] = 7195, + [7562] = 7245, + [7563] = 7184, + [7564] = 1158, [7565] = 7565, [7566] = 7566, - [7567] = 7437, - [7568] = 1137, - [7569] = 7427, - [7570] = 7506, - [7571] = 7571, - [7572] = 5706, - [7573] = 7372, - [7574] = 7369, - [7575] = 7367, - [7576] = 7576, - [7577] = 1185, - [7578] = 1187, - [7579] = 7445, - [7580] = 1188, - [7581] = 7447, - [7582] = 1189, - [7583] = 7410, - [7584] = 7447, - [7585] = 7513, - [7586] = 1190, - [7587] = 7587, - [7588] = 7445, - [7589] = 1191, - [7590] = 1192, - [7591] = 7469, - [7592] = 7404, - [7593] = 7593, - [7594] = 1195, - [7595] = 1201, + [7567] = 7141, + [7568] = 1082, + [7569] = 7151, + [7570] = 1081, + [7571] = 2956, + [7572] = 1157, + [7573] = 7573, + [7574] = 1156, + [7575] = 7575, + [7576] = 1155, + [7577] = 7199, + [7578] = 1216, + [7579] = 1195, + [7580] = 7311, + [7581] = 7475, + [7582] = 7142, + [7583] = 7160, + [7584] = 7194, + [7585] = 7191, + [7586] = 7484, + [7587] = 7142, + [7588] = 7190, + [7589] = 7589, + [7590] = 7590, + [7591] = 7184, + [7592] = 7592, + [7593] = 7188, + [7594] = 7594, + [7595] = 7595, [7596] = 7596, - [7597] = 4266, - [7598] = 7461, - [7599] = 7457, - [7600] = 7600, - [7601] = 7436, - [7602] = 7430, - [7603] = 1203, - [7604] = 7506, - [7605] = 1207, - [7606] = 7606, - [7607] = 7607, - [7608] = 1208, - [7609] = 1209, - [7610] = 7386, - [7611] = 7611, - [7612] = 7469, - [7613] = 7395, - [7614] = 7394, - [7615] = 7393, - [7616] = 1210, - [7617] = 7513, - [7618] = 1212, - [7619] = 7619, - [7620] = 7576, - [7621] = 7396, - [7622] = 7381, + [7597] = 7597, + [7598] = 7466, + [7599] = 7599, + [7600] = 7395, + [7601] = 1116, + [7602] = 7146, + [7603] = 7603, + [7604] = 7146, + [7605] = 1221, + [7606] = 7444, + [7607] = 1173, + [7608] = 7608, + [7609] = 7184, + [7610] = 7418, + [7611] = 7603, + [7612] = 7612, + [7613] = 1088, + [7614] = 7185, + [7615] = 7183, + [7616] = 7181, + [7617] = 7180, + [7618] = 1096, + [7619] = 7420, + [7620] = 7427, + [7621] = 7621, + [7622] = 7193, [7623] = 7623, - [7624] = 7378, - [7625] = 7377, - [7626] = 1216, - [7627] = 7397, + [7624] = 7624, + [7625] = 7536, + [7626] = 7170, + [7627] = 7167, [7628] = 7628, - [7629] = 7506, - [7630] = 1225, - [7631] = 7366, - [7632] = 1226, - [7633] = 1227, - [7634] = 7506, - [7635] = 7635, - [7636] = 7367, - [7637] = 7461, - [7638] = 7369, - [7639] = 1132, - [7640] = 7513, - [7641] = 7373, - [7642] = 7374, - [7643] = 1211, - [7644] = 7457, - [7645] = 1228, + [7629] = 7164, + [7630] = 7630, + [7631] = 7536, + [7632] = 7245, + [7633] = 1153, + [7634] = 1192, + [7635] = 1179, + [7636] = 7510, + [7637] = 7195, + [7638] = 7638, + [7639] = 7639, + [7640] = 7226, + [7641] = 7247, + [7642] = 7154, + [7643] = 7643, + [7644] = 7143, + [7645] = 7143, [7646] = 7646, - [7647] = 7379, - [7648] = 7380, - [7649] = 1231, - [7650] = 1232, - [7651] = 7384, - [7652] = 7403, - [7653] = 1234, - [7654] = 1235, - [7655] = 7388, - [7656] = 7656, - [7657] = 7366, - [7658] = 7658, - [7659] = 7427, - [7660] = 7377, - [7661] = 1101, - [7662] = 7378, - [7663] = 1128, - [7664] = 1123, - [7665] = 7506, + [7647] = 7603, + [7648] = 7648, + [7649] = 1097, + [7650] = 1134, + [7651] = 7510, + [7652] = 1182, + [7653] = 7653, + [7654] = 7229, + [7655] = 7536, + [7656] = 4158, + [7657] = 7193, + [7658] = 7228, + [7659] = 7510, + [7660] = 7660, + [7661] = 1152, + [7662] = 7174, + [7663] = 7142, + [7664] = 7484, + [7665] = 7145, [7666] = 7666, - [7667] = 7381, - [7668] = 1121, - [7669] = 7669, - [7670] = 7366, - [7671] = 7383, - [7672] = 7367, - [7673] = 7399, - [7674] = 7674, + [7667] = 1151, + [7668] = 7668, + [7669] = 7164, + [7670] = 7167, + [7671] = 7156, + [7672] = 7484, + [7673] = 1150, + [7674] = 7142, [7675] = 7675, - [7676] = 1115, + [7676] = 4160, [7677] = 7677, - [7678] = 1114, - [7679] = 7679, - [7680] = 7680, - [7681] = 1113, - [7682] = 7393, - [7683] = 7442, - [7684] = 7394, - [7685] = 1110, - [7686] = 7395, - [7687] = 7687, - [7688] = 7427, - [7689] = 7689, - [7690] = 7440, - [7691] = 7369, - [7692] = 7513, - [7693] = 3156, - [7694] = 7438, - [7695] = 7437, + [7678] = 7590, + [7679] = 7502, + [7680] = 7481, + [7681] = 7227, + [7682] = 7154, + [7683] = 7683, + [7684] = 7225, + [7685] = 7191, + [7686] = 3014, + [7687] = 7143, + [7688] = 366, + [7689] = 7194, + [7690] = 1149, + [7691] = 7444, + [7692] = 7692, + [7693] = 1148, + [7694] = 7248, + [7695] = 7199, [7696] = 7696, - [7697] = 7384, - [7698] = 3252, - [7699] = 7699, - [7700] = 7700, - [7701] = 5704, - [7702] = 7372, - [7703] = 7703, + [7697] = 7154, + [7698] = 7698, + [7699] = 1147, + [7700] = 1146, + [7701] = 7151, + [7702] = 7244, + [7703] = 7204, [7704] = 7704, - [7705] = 7705, + [7705] = 7208, [7706] = 7706, - [7707] = 7707, - [7708] = 5705, - [7709] = 7437, - [7710] = 7438, - [7711] = 7377, + [7707] = 7242, + [7708] = 7466, + [7709] = 7156, + [7710] = 7211, + [7711] = 7711, [7712] = 7712, - [7713] = 7488, - [7714] = 3275, - [7715] = 7715, - [7716] = 1219, - [7717] = 7491, - [7718] = 7373, - [7719] = 7719, - [7720] = 3277, - [7721] = 7440, - [7722] = 7442, - [7723] = 7506, - [7724] = 7724, - [7725] = 7389, - [7726] = 7726, - [7727] = 7445, - [7728] = 7410, - [7729] = 7729, - [7730] = 7705, - [7731] = 348, - [7732] = 7407, - [7733] = 1108, - [7734] = 7734, + [7713] = 7466, + [7714] = 7224, + [7715] = 7706, + [7716] = 1144, + [7717] = 7158, + [7718] = 7718, + [7719] = 7149, + [7720] = 7720, + [7721] = 7721, + [7722] = 3026, + [7723] = 1145, + [7724] = 7444, + [7725] = 7204, + [7726] = 7481, + [7727] = 7623, + [7728] = 7728, + [7729] = 3116, + [7730] = 1141, + [7731] = 1140, + [7732] = 7597, + [7733] = 3046, + [7734] = 3114, [7735] = 7735, - [7736] = 7449, - [7737] = 7447, - [7738] = 7399, - [7739] = 7435, - [7740] = 7378, - [7741] = 7388, - [7742] = 7742, - [7743] = 7513, - [7744] = 7424, - [7745] = 7414, - [7746] = 7417, - [7747] = 7416, - [7748] = 7666, - [7749] = 7381, - [7750] = 7596, + [7736] = 7736, + [7737] = 7193, + [7738] = 7238, + [7739] = 7192, + [7740] = 7179, + [7741] = 1136, + [7742] = 7148, + [7743] = 1215, + [7744] = 1214, + [7745] = 1213, + [7746] = 7176, + [7747] = 7536, + [7748] = 7170, + [7749] = 7749, + [7750] = 7750, [7751] = 7751, - [7752] = 7752, - [7753] = 7753, - [7754] = 7754, - [7755] = 7755, - [7756] = 7756, - [7757] = 7757, - [7758] = 7758, - [7759] = 7384, - [7760] = 7760, - [7761] = 7513, - [7762] = 7762, - [7763] = 7763, + [7752] = 1212, + [7753] = 7176, + [7754] = 7179, + [7755] = 1135, + [7756] = 1201, + [7757] = 1199, + [7758] = 1198, + [7759] = 7459, + [7760] = 7238, + [7761] = 7428, + [7762] = 7242, + [7763] = 7244, [7764] = 7764, - [7765] = 7397, - [7766] = 7430, - [7767] = 7432, + [7765] = 1107, + [7766] = 7248, + [7767] = 7767, [7768] = 7768, - [7769] = 7469, - [7770] = 7436, - [7771] = 7404, - [7772] = 7772, - [7773] = 7382, - [7774] = 7396, - [7775] = 7451, - [7776] = 7456, - [7777] = 7669, - [7778] = 7457, - [7779] = 7461, - [7780] = 7780, - [7781] = 7380, - [7782] = 7754, - [7783] = 7783, - [7784] = 7784, - [7785] = 7785, - [7786] = 7407, - [7787] = 7734, - [7788] = 7404, - [7789] = 7410, - [7790] = 7379, - [7791] = 7461, - [7792] = 7457, - [7793] = 1206, - [7794] = 7469, - [7795] = 3187, - [7796] = 7374, - [7797] = 7696, - [7798] = 1088, + [7769] = 7769, + [7770] = 7770, + [7771] = 7169, + [7772] = 7148, + [7773] = 3136, + [7774] = 1133, + [7775] = 1132, + [7776] = 7776, + [7777] = 1131, + [7778] = 7212, + [7779] = 5462, + [7780] = 7247, + [7781] = 7781, + [7782] = 7226, + [7783] = 7245, + [7784] = 7510, + [7785] = 1130, + [7786] = 7475, + [7787] = 7423, + [7788] = 7475, + [7789] = 7425, + [7790] = 7648, + [7791] = 367, + [7792] = 7145, + [7793] = 7411, + [7794] = 7451, + [7795] = 7624, + [7796] = 1129, + [7797] = 1128, + [7798] = 7624, [7799] = 7799, - [7800] = 7800, - [7801] = 4430, - [7802] = 7456, - [7803] = 7451, - [7804] = 7383, - [7805] = 7373, - [7806] = 7806, - [7807] = 7362, - [7808] = 1218, - [7809] = 7389, - [7810] = 7388, - [7811] = 7436, - [7812] = 3084, - [7813] = 7813, - [7814] = 1107, - [7815] = 7384, + [7800] = 1127, + [7801] = 7660, + [7802] = 7156, + [7803] = 3006, + [7804] = 7154, + [7805] = 1126, + [7806] = 1125, + [7807] = 7455, + [7808] = 7603, + [7809] = 7451, + [7810] = 1124, + [7811] = 3032, + [7812] = 7142, + [7813] = 7411, + [7814] = 7484, + [7815] = 7145, [7816] = 7816, - [7817] = 7432, - [7818] = 7818, - [7819] = 7819, - [7820] = 7386, - [7821] = 7821, - [7822] = 1060, - [7823] = 1071, - [7824] = 1087, - [7825] = 1059, - [7826] = 7764, - [7827] = 7427, - [7828] = 7828, - [7829] = 3220, - [7830] = 7760, - [7831] = 7430, - [7832] = 7429, - [7833] = 7680, - [7834] = 1200, - [7835] = 1250, - [7836] = 1243, - [7837] = 1233, - [7838] = 7838, - [7839] = 1221, - [7840] = 7483, - [7841] = 1220, - [7842] = 7566, - [7843] = 7753, - [7844] = 7844, - [7845] = 7393, - [7846] = 7715, - [7847] = 1215, - [7848] = 1213, - [7849] = 7456, - [7850] = 7372, - [7851] = 7754, - [7852] = 7369, - [7853] = 7367, - [7854] = 7764, - [7855] = 1205, - [7856] = 1204, - [7857] = 1199, - [7858] = 1198, - [7859] = 3266, - [7860] = 7860, - [7861] = 1197, - [7862] = 1196, - [7863] = 7435, - [7864] = 7449, - [7865] = 7756, - [7866] = 1194, - [7867] = 1193, - [7868] = 7382, - [7869] = 7734, - [7870] = 1186, - [7871] = 1183, - [7872] = 1180, - [7873] = 1177, - [7874] = 1167, - [7875] = 1166, - [7876] = 1154, - [7877] = 7705, - [7878] = 7844, - [7879] = 1135, - [7880] = 7394, - [7881] = 7881, - [7882] = 7380, + [7817] = 1123, + [7818] = 1122, + [7819] = 1121, + [7820] = 7428, + [7821] = 7146, + [7822] = 7484, + [7823] = 7145, + [7824] = 7141, + [7825] = 1098, + [7826] = 1102, + [7827] = 7466, + [7828] = 7455, + [7829] = 7706, + [7830] = 7184, + [7831] = 7603, + [7832] = 7191, + [7833] = 7444, + [7834] = 7834, + [7835] = 7481, + [7836] = 7194, + [7837] = 3133, + [7838] = 1103, + [7839] = 7839, + [7840] = 7624, + [7841] = 3156, + [7842] = 7524, + [7843] = 3153, + [7844] = 7706, + [7845] = 7231, + [7846] = 7521, + [7847] = 7847, + [7848] = 7510, + [7849] = 7229, + [7850] = 1189, + [7851] = 7536, + [7852] = 7193, + [7853] = 7193, + [7854] = 7146, + [7855] = 7536, + [7856] = 1104, + [7857] = 1106, + [7858] = 7513, + [7859] = 7228, + [7860] = 7510, + [7861] = 7211, + [7862] = 7862, + [7863] = 7227, + [7864] = 3064, + [7865] = 7481, + [7866] = 7225, + [7867] = 7224, + [7868] = 7170, + [7869] = 7422, + [7870] = 7624, + [7871] = 7208, + [7872] = 7444, + [7873] = 7660, + [7874] = 7151, + [7875] = 7145, + [7876] = 7158, + [7877] = 7149, + [7878] = 7878, + [7879] = 7706, + [7880] = 7466, + [7881] = 7776, + [7882] = 7479, [7883] = 7883, - [7884] = 7884, - [7885] = 7379, - [7886] = 7886, - [7887] = 7887, - [7888] = 7374, - [7889] = 7373, - [7890] = 1111, - [7891] = 7764, - [7892] = 1214, - [7893] = 5726, - [7894] = 7372, - [7895] = 1134, - [7896] = 1122, - [7897] = 7897, - [7898] = 1069, - [7899] = 7379, - [7900] = 1120, - [7901] = 7395, - [7902] = 7369, - [7903] = 7429, - [7904] = 1085, - [7905] = 7367, - [7906] = 1091, + [7884] = 7169, + [7885] = 7212, + [7886] = 1055, + [7887] = 1117, + [7888] = 1204, + [7889] = 1203, + [7890] = 7603, + [7891] = 7238, + [7892] = 7892, + [7893] = 7533, + [7894] = 3126, + [7895] = 1202, + [7896] = 7896, + [7897] = 7142, + [7898] = 7484, + [7899] = 7704, + [7900] = 7900, + [7901] = 7180, + [7902] = 7181, + [7903] = 7200, + [7904] = 3135, + [7905] = 7141, + [7906] = 7183, [7907] = 7907, - [7908] = 7754, - [7909] = 7703, - [7910] = 7715, - [7911] = 7438, - [7912] = 7715, - [7913] = 7395, - [7914] = 7700, - [7915] = 7915, - [7916] = 7754, + [7908] = 7908, + [7909] = 7185, + [7910] = 7188, + [7911] = 3125, + [7912] = 7204, + [7913] = 7913, + [7914] = 7914, + [7915] = 7529, + [7916] = 1142, [7917] = 7917, [7918] = 7918, - [7919] = 7919, - [7920] = 7394, - [7921] = 7393, - [7922] = 7922, - [7923] = 7923, - [7924] = 7924, - [7925] = 7925, - [7926] = 7926, + [7919] = 7211, + [7920] = 7603, + [7921] = 7921, + [7922] = 1115, + [7923] = 1114, + [7924] = 7195, + [7925] = 7214, + [7926] = 1113, [7927] = 7927, - [7928] = 7556, - [7929] = 3161, + [7928] = 1112, + [7929] = 7929, [7930] = 7930, - [7931] = 7396, - [7932] = 7860, - [7933] = 7386, - [7934] = 7934, - [7935] = 7362, - [7936] = 7936, - [7937] = 7937, - [7938] = 7383, - [7939] = 7844, - [7940] = 7881, - [7941] = 7753, - [7942] = 7381, - [7943] = 7451, - [7944] = 7397, + [7931] = 1111, + [7932] = 1110, + [7933] = 1109, + [7934] = 1108, + [7935] = 7935, + [7936] = 1211, + [7937] = 7190, + [7938] = 7208, + [7939] = 7939, + [7940] = 7940, + [7941] = 7941, + [7942] = 7942, + [7943] = 7943, + [7944] = 7944, [7945] = 7945, - [7946] = 7606, - [7947] = 7432, - [7948] = 7429, - [7949] = 7707, - [7950] = 7679, - [7951] = 7366, - [7952] = 7674, - [7953] = 3254, - [7954] = 7501, - [7955] = 7377, - [7956] = 7366, - [7957] = 7377, - [7958] = 7378, - [7959] = 7959, - [7960] = 7414, - [7961] = 7755, - [7962] = 7381, + [7946] = 7946, + [7947] = 7947, + [7948] = 7948, + [7949] = 7949, + [7950] = 7950, + [7951] = 7951, + [7952] = 7952, + [7953] = 7953, + [7954] = 7954, + [7955] = 7955, + [7956] = 7956, + [7957] = 7957, + [7958] = 7958, + [7959] = 7940, + [7960] = 7960, + [7961] = 7961, + [7962] = 7962, [7963] = 7963, - [7964] = 7455, - [7965] = 7764, - [7966] = 7383, - [7967] = 7474, - [7968] = 7362, + [7964] = 7964, + [7965] = 7965, + [7966] = 7966, + [7967] = 7967, + [7968] = 7968, [7969] = 7969, - [7970] = 7386, - [7971] = 7971, - [7972] = 7366, - [7973] = 7374, - [7974] = 7393, - [7975] = 7764, - [7976] = 7394, - [7977] = 7563, - [7978] = 7395, - [7979] = 7963, - [7980] = 7407, - [7981] = 7703, + [7970] = 7966, + [7971] = 7947, + [7972] = 7948, + [7973] = 7941, + [7974] = 7974, + [7975] = 7942, + [7976] = 7943, + [7977] = 7977, + [7978] = 7978, + [7979] = 7979, + [7980] = 7939, + [7981] = 7981, [7982] = 7982, - [7983] = 7447, - [7984] = 7700, - [7985] = 7429, + [7983] = 7983, + [7984] = 7984, + [7985] = 7985, [7986] = 7986, - [7987] = 7445, + [7987] = 7951, [7988] = 7988, - [7989] = 7461, - [7990] = 7442, - [7991] = 7367, - [7992] = 7440, - [7993] = 4287, - [7994] = 7936, - [7995] = 7937, - [7996] = 7437, - [7997] = 7997, - [7998] = 3185, - [7999] = 7999, - [8000] = 7963, - [8001] = 7436, - [8002] = 7460, - [8003] = 7437, - [8004] = 7399, - [8005] = 7438, - [8006] = 1072, - [8007] = 1078, - [8008] = 7440, - [8009] = 1104, - [8010] = 1103, - [8011] = 1086, - [8012] = 1083, - [8013] = 7369, - [8014] = 4258, - [8015] = 7705, - [8016] = 7700, - [8017] = 7675, - [8018] = 8018, - [8019] = 7734, - [8020] = 7449, - [8021] = 7377, - [8022] = 7700, - [8023] = 7435, - [8024] = 7715, - [8025] = 7442, - [8026] = 7372, - [8027] = 8027, - [8028] = 8028, - [8029] = 8029, - [8030] = 8030, - [8031] = 7445, - [8032] = 7447, + [7989] = 7989, + [7990] = 7989, + [7991] = 7991, + [7992] = 7984, + [7993] = 7993, + [7994] = 7994, + [7995] = 7961, + [7996] = 7996, + [7997] = 7985, + [7998] = 7998, + [7999] = 7983, + [8000] = 1039, + [8001] = 8001, + [8002] = 7948, + [8003] = 8003, + [8004] = 8004, + [8005] = 7981, + [8006] = 8006, + [8007] = 7977, + [8008] = 7947, + [8009] = 8009, + [8010] = 8010, + [8011] = 7998, + [8012] = 8012, + [8013] = 8013, + [8014] = 7974, + [8015] = 8015, + [8016] = 8016, + [8017] = 7988, + [8018] = 7951, + [8019] = 7956, + [8020] = 8020, + [8021] = 8021, + [8022] = 8022, + [8023] = 7963, + [8024] = 8024, + [8025] = 7943, + [8026] = 7942, + [8027] = 7941, + [8028] = 7966, + [8029] = 7957, + [8030] = 7965, + [8031] = 8031, + [8032] = 8032, [8033] = 8033, - [8034] = 7430, - [8035] = 7432, - [8036] = 7754, - [8037] = 7436, - [8038] = 7373, - [8039] = 7451, - [8040] = 8040, - [8041] = 7374, - [8042] = 7378, - [8043] = 7456, - [8044] = 7414, - [8045] = 1079, - [8046] = 7457, - [8047] = 7410, - [8048] = 1081, - [8049] = 7461, - [8050] = 7427, - [8051] = 1156, - [8052] = 8052, - [8053] = 7937, - [8054] = 3085, - [8055] = 8055, - [8056] = 8056, - [8057] = 7404, - [8058] = 7378, - [8059] = 7881, - [8060] = 8060, - [8061] = 8061, - [8062] = 7380, - [8063] = 7382, - [8064] = 7381, - [8065] = 7860, + [8034] = 8034, + [8035] = 7940, + [8036] = 7952, + [8037] = 7955, + [8038] = 8038, + [8039] = 8006, + [8040] = 7940, + [8041] = 8004, + [8042] = 7951, + [8043] = 7982, + [8044] = 7963, + [8045] = 8045, + [8046] = 8003, + [8047] = 8047, + [8048] = 7944, + [8049] = 8049, + [8050] = 7943, + [8051] = 7942, + [8052] = 7947, + [8053] = 7948, + [8054] = 7941, + [8055] = 7982, + [8056] = 8047, + [8057] = 7954, + [8058] = 7944, + [8059] = 8059, + [8060] = 7962, + [8061] = 7958, + [8062] = 7944, + [8063] = 7952, + [8064] = 8064, + [8065] = 7984, [8066] = 8066, - [8067] = 7469, - [8068] = 7844, - [8069] = 7753, - [8070] = 1256, - [8071] = 1253, - [8072] = 7396, - [8073] = 7753, - [8074] = 7927, - [8075] = 7844, - [8076] = 7860, - [8077] = 3229, - [8078] = 7384, - [8079] = 7753, - [8080] = 7844, - [8081] = 7383, + [8067] = 8067, + [8068] = 8066, + [8069] = 8069, + [8070] = 7989, + [8071] = 7955, + [8072] = 7982, + [8073] = 8073, + [8074] = 8047, + [8075] = 8031, + [8076] = 8022, + [8077] = 8016, + [8078] = 7985, + [8079] = 8079, + [8080] = 7983, + [8081] = 7965, [8082] = 8082, - [8083] = 1251, - [8084] = 1241, + [8083] = 8012, + [8084] = 7966, [8085] = 8085, - [8086] = 7924, - [8087] = 7917, - [8088] = 7860, - [8089] = 7414, - [8090] = 8090, - [8091] = 7388, - [8092] = 8092, - [8093] = 7389, - [8094] = 7447, - [8095] = 8095, - [8096] = 7445, - [8097] = 7881, - [8098] = 8098, - [8099] = 7442, - [8100] = 7440, - [8101] = 7438, - [8102] = 7437, - [8103] = 7919, - [8104] = 7764, - [8105] = 7754, - [8106] = 7926, - [8107] = 1102, - [8108] = 7715, - [8109] = 7963, - [8110] = 7700, - [8111] = 7469, - [8112] = 7404, - [8113] = 8113, - [8114] = 7456, - [8115] = 8115, - [8116] = 7457, - [8117] = 8117, - [8118] = 2933, - [8119] = 2932, - [8120] = 1105, - [8121] = 7451, - [8122] = 7937, - [8123] = 7427, - [8124] = 7362, - [8125] = 7429, - [8126] = 7380, - [8127] = 8127, - [8128] = 7386, - [8129] = 7429, - [8130] = 7927, - [8131] = 7937, - [8132] = 8132, - [8133] = 7860, - [8134] = 7478, - [8135] = 3231, - [8136] = 7963, - [8137] = 7764, - [8138] = 7393, - [8139] = 8139, - [8140] = 7427, - [8141] = 8141, - [8142] = 1176, - [8143] = 7407, - [8144] = 3154, - [8145] = 7454, - [8146] = 3155, - [8147] = 1172, - [8148] = 7394, - [8149] = 7395, - [8150] = 8018, - [8151] = 366, + [8086] = 7981, + [8087] = 8087, + [8088] = 7977, + [8089] = 7944, + [8090] = 7994, + [8091] = 7993, + [8092] = 7969, + [8093] = 7967, + [8094] = 8094, + [8095] = 7974, + [8096] = 7964, + [8097] = 7960, + [8098] = 7953, + [8099] = 7963, + [8100] = 8100, + [8101] = 7974, + [8102] = 8102, + [8103] = 7977, + [8104] = 7944, + [8105] = 7981, + [8106] = 7939, + [8107] = 7979, + [8108] = 8020, + [8109] = 7966, + [8110] = 8110, + [8111] = 7965, + [8112] = 8021, + [8113] = 8024, + [8114] = 8114, + [8115] = 8047, + [8116] = 8034, + [8117] = 7982, + [8118] = 7984, + [8119] = 8119, + [8120] = 7983, + [8121] = 7940, + [8122] = 7985, + [8123] = 8123, + [8124] = 7989, + [8125] = 8045, + [8126] = 8059, + [8127] = 8067, + [8128] = 8079, + [8129] = 8085, + [8130] = 8087, + [8131] = 7994, + [8132] = 7947, + [8133] = 7948, + [8134] = 7979, + [8135] = 7955, + [8136] = 7952, + [8137] = 8087, + [8138] = 8085, + [8139] = 8079, + [8140] = 8067, + [8141] = 8059, + [8142] = 7984, + [8143] = 8143, + [8144] = 7939, + [8145] = 8145, + [8146] = 7989, + [8147] = 7989, + [8148] = 7985, + [8149] = 8045, + [8150] = 7983, + [8151] = 7985, [8152] = 8152, - [8153] = 7924, - [8154] = 7379, - [8155] = 3033, - [8156] = 7700, - [8157] = 7432, - [8158] = 7715, - [8159] = 8029, + [8153] = 8153, + [8154] = 7981, + [8155] = 8034, + [8156] = 7977, + [8157] = 7948, + [8158] = 7947, + [8159] = 8024, [8160] = 8160, - [8161] = 7430, - [8162] = 7703, - [8163] = 7435, - [8164] = 7382, - [8165] = 7754, - [8166] = 4267, - [8167] = 7436, - [8168] = 7449, - [8169] = 7687, - [8170] = 8170, - [8171] = 7917, - [8172] = 7703, - [8173] = 7397, - [8174] = 7689, - [8175] = 7881, - [8176] = 7860, - [8177] = 7734, - [8178] = 7705, - [8179] = 1152, - [8180] = 7396, - [8181] = 8181, - [8182] = 7397, - [8183] = 7844, - [8184] = 7753, - [8185] = 7430, - [8186] = 7399, - [8187] = 7410, - [8188] = 8188, - [8189] = 7675, - [8190] = 8190, - [8191] = 7410, - [8192] = 8192, - [8193] = 7407, - [8194] = 7399, - [8195] = 1092, - [8196] = 8196, + [8161] = 8021, + [8162] = 8162, + [8163] = 7974, + [8164] = 8164, + [8165] = 8020, + [8166] = 8066, + [8167] = 7963, + [8168] = 7983, + [8169] = 8064, + [8170] = 7965, + [8171] = 7940, + [8172] = 8172, + [8173] = 7940, + [8174] = 8174, + [8175] = 8175, + [8176] = 8176, + [8177] = 7965, + [8178] = 7945, + [8179] = 7958, + [8180] = 7962, + [8181] = 7947, + [8182] = 7948, + [8183] = 8183, + [8184] = 8031, + [8185] = 7966, + [8186] = 8186, + [8187] = 7944, + [8188] = 7957, + [8189] = 8047, + [8190] = 7984, + [8191] = 8191, + [8192] = 7982, + [8193] = 8193, + [8194] = 8022, + [8195] = 7989, + [8196] = 7985, [8197] = 8197, - [8198] = 8198, - [8199] = 8199, - [8200] = 8196, - [8201] = 8201, - [8202] = 8202, - [8203] = 8203, - [8204] = 8204, - [8205] = 8205, - [8206] = 8206, - [8207] = 8207, - [8208] = 8208, - [8209] = 8209, - [8210] = 8202, - [8211] = 8211, - [8212] = 8212, - [8213] = 8209, - [8214] = 8205, - [8215] = 8204, - [8216] = 8216, - [8217] = 8217, - [8218] = 8198, - [8219] = 8199, - [8220] = 8220, - [8221] = 8221, - [8222] = 8222, - [8223] = 8196, - [8224] = 8224, - [8225] = 8225, - [8226] = 8202, - [8227] = 8227, - [8228] = 8228, - [8229] = 8229, - [8230] = 8230, - [8231] = 8231, - [8232] = 8232, - [8233] = 8233, - [8234] = 8208, - [8235] = 8235, - [8236] = 8236, - [8237] = 8237, - [8238] = 8238, - [8239] = 8239, - [8240] = 8240, - [8241] = 8241, - [8242] = 8201, - [8243] = 8243, - [8244] = 8244, - [8245] = 8198, - [8246] = 8246, - [8247] = 8199, - [8248] = 8196, - [8249] = 8240, - [8250] = 8250, - [8251] = 8251, - [8252] = 8204, - [8253] = 8253, - [8254] = 8254, + [8198] = 7983, + [8199] = 7955, + [8200] = 7953, + [8201] = 7981, + [8202] = 7960, + [8203] = 7977, + [8204] = 7964, + [8205] = 7952, + [8206] = 7967, + [8207] = 7969, + [8208] = 7993, + [8209] = 7974, + [8210] = 7979, + [8211] = 7994, + [8212] = 8012, + [8213] = 8016, + [8214] = 8022, + [8215] = 8031, + [8216] = 7965, + [8217] = 7939, + [8218] = 7941, + [8219] = 7940, + [8220] = 8003, + [8221] = 7942, + [8222] = 7982, + [8223] = 7944, + [8224] = 7947, + [8225] = 7948, + [8226] = 8004, + [8227] = 7941, + [8228] = 7943, + [8229] = 7979, + [8230] = 7939, + [8231] = 7986, + [8232] = 7984, + [8233] = 7962, + [8234] = 7989, + [8235] = 7958, + [8236] = 7983, + [8237] = 8006, + [8238] = 7979, + [8239] = 7981, + [8240] = 7939, + [8241] = 7977, + [8242] = 8242, + [8243] = 7942, + [8244] = 7998, + [8245] = 7974, + [8246] = 7943, + [8247] = 8247, + [8248] = 8066, + [8249] = 7954, + [8250] = 7979, + [8251] = 7939, + [8252] = 8016, + [8253] = 7974, + [8254] = 1045, [8255] = 8255, - [8256] = 8256, - [8257] = 8208, - [8258] = 8236, - [8259] = 8259, - [8260] = 8237, - [8261] = 8261, - [8262] = 8262, - [8263] = 8238, - [8264] = 8261, - [8265] = 8220, - [8266] = 8262, - [8267] = 8239, - [8268] = 8256, - [8269] = 8233, - [8270] = 8254, - [8271] = 8255, - [8272] = 8246, - [8273] = 8241, - [8274] = 8222, - [8275] = 1042, - [8276] = 8225, - [8277] = 8244, - [8278] = 8278, - [8279] = 8201, - [8280] = 8229, - [8281] = 8228, - [8282] = 8220, - [8283] = 8283, - [8284] = 8216, - [8285] = 8250, - [8286] = 8286, - [8287] = 8240, - [8288] = 8288, - [8289] = 8289, - [8290] = 8288, - [8291] = 8225, - [8292] = 8292, - [8293] = 8293, - [8294] = 8294, - [8295] = 8295, - [8296] = 8296, - [8297] = 8216, - [8298] = 8208, - [8299] = 8286, - [8300] = 8300, - [8301] = 8220, - [8302] = 8302, + [8256] = 8047, + [8257] = 8257, + [8258] = 7979, + [8259] = 7939, + [8260] = 7956, + [8261] = 8257, + [8262] = 7988, + [8263] = 8066, + [8264] = 7944, + [8265] = 7951, + [8266] = 7988, + [8267] = 8047, + [8268] = 7951, + [8269] = 7982, + [8270] = 7991, + [8271] = 7998, + [8272] = 7945, + [8273] = 8273, + [8274] = 7946, + [8275] = 7945, + [8276] = 7941, + [8277] = 7942, + [8278] = 7943, + [8279] = 7979, + [8280] = 7958, + [8281] = 8281, + [8282] = 7962, + [8283] = 7939, + [8284] = 8284, + [8285] = 8006, + [8286] = 7951, + [8287] = 8038, + [8288] = 8110, + [8289] = 7957, + [8290] = 8087, + [8291] = 8085, + [8292] = 8079, + [8293] = 8012, + [8294] = 8004, + [8295] = 7953, + [8296] = 7951, + [8297] = 8003, + [8298] = 8162, + [8299] = 8176, + [8300] = 7945, + [8301] = 7979, + [8302] = 8047, [8303] = 8303, - [8304] = 8304, + [8304] = 7984, [8305] = 8305, - [8306] = 8306, - [8307] = 8228, - [8308] = 8229, - [8309] = 8228, - [8310] = 8229, + [8306] = 8067, + [8307] = 8059, + [8308] = 8308, + [8309] = 8045, + [8310] = 7957, [8311] = 8311, - [8312] = 8196, - [8313] = 8313, - [8314] = 8199, - [8315] = 8198, - [8316] = 8205, - [8317] = 8202, - [8318] = 8204, - [8319] = 8209, - [8320] = 8253, - [8321] = 8259, - [8322] = 8241, - [8323] = 8288, - [8324] = 8278, - [8325] = 8325, - [8326] = 8198, - [8327] = 8246, - [8328] = 8199, - [8329] = 8196, - [8330] = 8251, - [8331] = 8208, - [8332] = 8332, - [8333] = 8236, - [8334] = 8334, - [8335] = 8254, - [8336] = 8237, - [8337] = 8256, - [8338] = 8286, - [8339] = 8231, - [8340] = 8243, - [8341] = 8205, - [8342] = 8230, - [8343] = 8262, - [8344] = 8202, - [8345] = 8261, - [8346] = 8240, - [8347] = 8347, - [8348] = 8348, - [8349] = 8250, - [8350] = 8350, - [8351] = 8204, - [8352] = 8255, - [8353] = 8233, - [8354] = 8239, - [8355] = 8355, + [8312] = 7939, + [8313] = 7979, + [8314] = 8314, + [8315] = 8034, + [8316] = 7961, + [8317] = 8047, + [8318] = 8318, + [8319] = 8319, + [8320] = 8049, + [8321] = 7945, + [8322] = 7979, + [8323] = 7939, + [8324] = 8024, + [8325] = 7957, + [8326] = 8326, + [8327] = 8257, + [8328] = 7991, + [8329] = 8031, + [8330] = 8330, + [8331] = 7946, + [8332] = 8038, + [8333] = 8110, + [8334] = 8022, + [8335] = 8016, + [8336] = 8012, + [8337] = 7994, + [8338] = 7993, + [8339] = 7945, + [8340] = 8085, + [8341] = 8162, + [8342] = 8176, + [8343] = 7993, + [8344] = 7969, + [8345] = 8303, + [8346] = 7939, + [8347] = 8305, + [8348] = 7979, + [8349] = 7957, + [8350] = 7969, + [8351] = 7967, + [8352] = 8314, + [8353] = 7964, + [8354] = 8257, + [8355] = 7991, [8356] = 8356, - [8357] = 8357, - [8358] = 8259, - [8359] = 8359, - [8360] = 8360, - [8361] = 8361, - [8362] = 8362, - [8363] = 8363, - [8364] = 8364, + [8357] = 7960, + [8358] = 7946, + [8359] = 8038, + [8360] = 8110, + [8361] = 7953, + [8362] = 7945, + [8363] = 7942, + [8364] = 8021, [8365] = 8365, - [8366] = 8250, - [8367] = 8253, - [8368] = 8240, - [8369] = 8278, - [8370] = 8243, - [8371] = 8231, - [8372] = 8255, - [8373] = 8261, - [8374] = 8305, - [8375] = 8243, - [8376] = 8262, - [8377] = 8230, - [8378] = 8216, - [8379] = 8238, - [8380] = 8364, - [8381] = 8363, - [8382] = 8362, - [8383] = 8361, - [8384] = 8364, - [8385] = 8363, - [8386] = 8286, - [8387] = 8360, - [8388] = 8362, - [8389] = 8228, - [8390] = 8229, - [8391] = 8359, - [8392] = 8288, - [8393] = 8357, - [8394] = 8256, - [8395] = 8356, - [8396] = 8361, - [8397] = 8254, - [8398] = 8355, - [8399] = 8241, - [8400] = 8350, - [8401] = 8246, - [8402] = 8233, - [8403] = 8239, - [8404] = 8246, - [8405] = 8254, - [8406] = 8348, - [8407] = 8256, - [8408] = 8360, - [8409] = 8241, - [8410] = 8238, - [8411] = 8262, - [8412] = 8412, - [8413] = 8261, - [8414] = 8414, - [8415] = 8225, - [8416] = 1014, - [8417] = 8231, + [8366] = 7961, + [8367] = 8162, + [8368] = 8176, + [8369] = 8193, + [8370] = 8370, + [8371] = 8303, + [8372] = 7979, + [8373] = 8305, + [8374] = 7939, + [8375] = 8375, + [8376] = 7982, + [8377] = 8377, + [8378] = 8314, + [8379] = 8257, + [8380] = 7991, + [8381] = 7956, + [8382] = 7954, + [8383] = 7946, + [8384] = 8038, + [8385] = 8110, + [8386] = 7967, + [8387] = 8387, + [8388] = 7957, + [8389] = 7945, + [8390] = 7952, + [8391] = 7945, + [8392] = 8162, + [8393] = 8176, + [8394] = 8020, + [8395] = 7955, + [8396] = 8303, + [8397] = 7941, + [8398] = 8305, + [8399] = 8082, + [8400] = 7966, + [8401] = 7943, + [8402] = 7964, + [8403] = 8314, + [8404] = 8257, + [8405] = 7991, + [8406] = 8406, + [8407] = 7960, + [8408] = 7946, + [8409] = 8110, + [8410] = 8410, + [8411] = 8411, + [8412] = 7957, + [8413] = 7954, + [8414] = 7956, + [8415] = 8415, + [8416] = 8162, + [8417] = 8176, [8418] = 8418, - [8419] = 8237, - [8420] = 8255, - [8421] = 8222, - [8422] = 8230, - [8423] = 8255, - [8424] = 8359, - [8425] = 8357, - [8426] = 8365, - [8427] = 8240, - [8428] = 8305, - [8429] = 8356, - [8430] = 8216, - [8431] = 8304, - [8432] = 8303, - [8433] = 8236, - [8434] = 8229, - [8435] = 8228, - [8436] = 8216, - [8437] = 8355, - [8438] = 8228, - [8439] = 8229, - [8440] = 8305, - [8441] = 8441, - [8442] = 8350, - [8443] = 8304, - [8444] = 8348, - [8445] = 8296, - [8446] = 8303, - [8447] = 8241, - [8448] = 8295, - [8449] = 8302, - [8450] = 8220, - [8451] = 8296, - [8452] = 8246, - [8453] = 8254, - [8454] = 8295, - [8455] = 8256, - [8456] = 8250, - [8457] = 8216, - [8458] = 8262, - [8459] = 8294, - [8460] = 8261, - [8461] = 8293, - [8462] = 8292, - [8463] = 8289, - [8464] = 8294, - [8465] = 8465, - [8466] = 8255, - [8467] = 8467, + [8419] = 7979, + [8420] = 8303, + [8421] = 8305, + [8422] = 8305, + [8423] = 7939, + [8424] = 7961, + [8425] = 8314, + [8426] = 8257, + [8427] = 7991, + [8428] = 7945, + [8429] = 8020, + [8430] = 7946, + [8431] = 8110, + [8432] = 8049, + [8433] = 8021, + [8434] = 8314, + [8435] = 8024, + [8436] = 8003, + [8437] = 8004, + [8438] = 8162, + [8439] = 8176, + [8440] = 8303, + [8441] = 8034, + [8442] = 8305, + [8443] = 8006, + [8444] = 7998, + [8445] = 8314, + [8446] = 8257, + [8447] = 7991, + [8448] = 8045, + [8449] = 7946, + [8450] = 8110, + [8451] = 7977, + [8452] = 7988, + [8453] = 7951, + [8454] = 7979, + [8455] = 7939, + [8456] = 8162, + [8457] = 8176, + [8458] = 8303, + [8459] = 8326, + [8460] = 8305, + [8461] = 7943, + [8462] = 8314, + [8463] = 7942, + [8464] = 7941, + [8465] = 8114, + [8466] = 8123, + [8467] = 8153, [8468] = 8468, - [8469] = 8469, - [8470] = 8208, - [8471] = 8471, - [8472] = 8293, - [8473] = 8240, - [8474] = 8474, - [8475] = 8292, - [8476] = 8216, + [8469] = 8059, + [8470] = 8193, + [8471] = 7957, + [8472] = 7981, + [8473] = 8114, + [8474] = 8123, + [8475] = 8475, + [8476] = 8476, [8477] = 8477, - [8478] = 8478, - [8479] = 8205, - [8480] = 8253, - [8481] = 8228, - [8482] = 8229, - [8483] = 8289, - [8484] = 8253, - [8485] = 8485, - [8486] = 8209, - [8487] = 8259, - [8488] = 8259, - [8489] = 8241, - [8490] = 8253, - [8491] = 8246, - [8492] = 8492, - [8493] = 8256, - [8494] = 8494, - [8495] = 8259, - [8496] = 8262, - [8497] = 8253, - [8498] = 8261, - [8499] = 8499, - [8500] = 8241, - [8501] = 8501, - [8502] = 8255, - [8503] = 8503, - [8504] = 8294, - [8505] = 8259, - [8506] = 8253, - [8507] = 8304, - [8508] = 8508, - [8509] = 8509, - [8510] = 8225, - [8511] = 8199, - [8512] = 8303, - [8513] = 8244, - [8514] = 8469, - [8515] = 8204, - [8516] = 8259, - [8517] = 8250, - [8518] = 8302, - [8519] = 8519, - [8520] = 8296, - [8521] = 8204, - [8522] = 8288, - [8523] = 8523, - [8524] = 8202, - [8525] = 8253, - [8526] = 8205, - [8527] = 8235, - [8528] = 8286, - [8529] = 8529, - [8530] = 8295, - [8531] = 8306, - [8532] = 8236, - [8533] = 8198, - [8534] = 8199, - [8535] = 8196, - [8536] = 8293, - [8537] = 8202, - [8538] = 8292, - [8539] = 8539, - [8540] = 8289, - [8541] = 8541, - [8542] = 8542, - [8543] = 8208, - [8544] = 8347, - [8545] = 8494, - [8546] = 8546, - [8547] = 8259, - [8548] = 8278, - [8549] = 8253, - [8550] = 8205, - [8551] = 8551, - [8552] = 8302, - [8553] = 8201, - [8554] = 8554, - [8555] = 8555, - [8556] = 8556, - [8557] = 8209, - [8558] = 8198, - [8559] = 8278, - [8560] = 8560, - [8561] = 8259, - [8562] = 8562, - [8563] = 8253, - [8564] = 8564, - [8565] = 8199, - [8566] = 8196, - [8567] = 8209, - [8568] = 8244, - [8569] = 8569, - [8570] = 8230, - [8571] = 8564, - [8572] = 8231, - [8573] = 8208, - [8574] = 8246, - [8575] = 8575, - [8576] = 8221, - [8577] = 8577, - [8578] = 8278, - [8579] = 8259, - [8580] = 8580, - [8581] = 8253, - [8582] = 8254, - [8583] = 8259, - [8584] = 8469, - [8585] = 8235, - [8586] = 8209, - [8587] = 8253, - [8588] = 8306, - [8589] = 8347, - [8590] = 8494, - [8591] = 8244, - [8592] = 8233, - [8593] = 8201, - [8594] = 8594, - [8595] = 8278, - [8596] = 8562, - [8597] = 8259, - [8598] = 8555, - [8599] = 8556, - [8600] = 8600, - [8601] = 8253, - [8602] = 8560, - [8603] = 8209, - [8604] = 8562, - [8605] = 8605, - [8606] = 8198, - [8607] = 8261, - [8608] = 8259, - [8609] = 8564, - [8610] = 8610, - [8611] = 8469, - [8612] = 8235, - [8613] = 8243, - [8614] = 8614, - [8615] = 8306, - [8616] = 8347, - [8617] = 8494, - [8618] = 8205, - [8619] = 8239, - [8620] = 8238, - [8621] = 8364, - [8622] = 8237, - [8623] = 8363, - [8624] = 8555, - [8625] = 8556, - [8626] = 8283, - [8627] = 8202, - [8628] = 8560, - [8629] = 8204, - [8630] = 8562, - [8631] = 8362, - [8632] = 8361, - [8633] = 8208, - [8634] = 8634, - [8635] = 8564, - [8636] = 8469, - [8637] = 8235, - [8638] = 8412, - [8639] = 8360, - [8640] = 8306, - [8641] = 8347, - [8642] = 8494, - [8643] = 8359, - [8644] = 8348, - [8645] = 8560, - [8646] = 8357, - [8647] = 8196, - [8648] = 8648, - [8649] = 8555, - [8650] = 8556, - [8651] = 8199, - [8652] = 8355, - [8653] = 8560, - [8654] = 8350, - [8655] = 8562, - [8656] = 8555, - [8657] = 8198, - [8658] = 8256, - [8659] = 8350, - [8660] = 8564, - [8661] = 8469, - [8662] = 8235, - [8663] = 8355, - [8664] = 8209, - [8665] = 8306, - [8666] = 8494, - [8667] = 8348, - [8668] = 8356, - [8669] = 8669, - [8670] = 8278, - [8671] = 8250, - [8672] = 8357, - [8673] = 8555, - [8674] = 8556, - [8675] = 8359, - [8676] = 8259, - [8677] = 8560, - [8678] = 8253, - [8679] = 8562, - [8680] = 8360, - [8681] = 8262, - [8682] = 8564, - [8683] = 8469, - [8684] = 8235, - [8685] = 8418, - [8686] = 8209, - [8687] = 8306, - [8688] = 8494, - [8689] = 8244, - [8690] = 8361, - [8691] = 8201, - [8692] = 8305, - [8693] = 8362, - [8694] = 8304, - [8695] = 8555, - [8696] = 8556, - [8697] = 8560, - [8698] = 8303, - [8699] = 8562, - [8700] = 8364, - [8701] = 8302, - [8702] = 8564, - [8703] = 8469, - [8704] = 8235, - [8705] = 8296, - [8706] = 8306, - [8707] = 8494, - [8708] = 8278, - [8709] = 8709, - [8710] = 8295, - [8711] = 8294, - [8712] = 8244, - [8713] = 8555, - [8714] = 8556, - [8715] = 8560, - [8716] = 8293, - [8717] = 8562, - [8718] = 8718, - [8719] = 8564, - [8720] = 8201, - [8721] = 8721, - [8722] = 8499, - [8723] = 8503, - [8724] = 8556, - [8725] = 8205, - [8726] = 8202, - [8727] = 8283, - [8728] = 8204, - [8729] = 8729, - [8730] = 8499, - [8731] = 8503, - [8732] = 8292, - [8733] = 8733, - [8734] = 8289, - [8735] = 8283, - [8736] = 8736, - [8737] = 8356, - [8738] = 8499, - [8739] = 8503, - [8740] = 8740, - [8741] = 8278, - [8742] = 8278, - [8743] = 8283, - [8744] = 8499, - [8745] = 8503, - [8746] = 8259, - [8747] = 8363, - [8748] = 8253, - [8749] = 8283, - [8750] = 8499, - [8751] = 8503, - [8752] = 8209, - [8753] = 8283, - [8754] = 8499, - [8755] = 8503, - [8756] = 8244, - [8757] = 8283, - [8758] = 8499, - [8759] = 8503, - [8760] = 8201, - [8761] = 8761, + [8478] = 8193, + [8479] = 8479, + [8480] = 8480, + [8481] = 8114, + [8482] = 8123, + [8483] = 8067, + [8484] = 8079, + [8485] = 7957, + [8486] = 8193, + [8487] = 8114, + [8488] = 8123, + [8489] = 8303, + [8490] = 7952, + [8491] = 7955, + [8492] = 8193, + [8493] = 8114, + [8494] = 8123, + [8495] = 7952, + [8496] = 8193, + [8497] = 8114, + [8498] = 8123, + [8499] = 7955, + [8500] = 8193, + [8501] = 8114, + [8502] = 8123, + [8503] = 8087, + [8504] = 8504, }; -static inline bool anon_sym_BANG_character_set_1(int32_t c) { - return (c < 8192 - ? (c < 160 - ? (c < ' ' - ? (c >= '\t' && c <= '\r') - : c <= ' ') - : (c <= 160 || c == 5760)) - : (c <= 8203 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { - return (c < 8232 - ? (c < 160 - ? (c < ' ' - ? (c >= '\t' && c <= '\r') - : c <= ' ') - : (c <= 160 || (c < 8192 - ? c == 5760 - : c <= 8203))) - : (c <= 8233 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym__glimmer_template_content_character_set_2(int32_t c) { - return (c < 8192 - ? (c < ' ' - ? (c < 11 - ? c == '\t' - : c <= '\r') - : (c <= ' ' || (c < 5760 - ? c == 160 - : c <= 5760))) - : (c <= 8203 || (c < 8287 - ? (c < 8239 - ? (c >= 8232 && c <= 8233) - : c <= 8239) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} - -static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '`' || (c >= '{' && c <= '~'))))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 5760 - ? (c < '[' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '@'))) - : (c <= '`' || (c < 160 - ? (c >= '{' && c <= '~') - : c <= 160))) - : (c <= 5760 || (c < 8287 - ? (c < 8239 - ? (c >= 8192 && c <= 8203) - : c <= 8239) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} - -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '{' - ? (c >= '[' && c <= '`') - : c <= '~'))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange extras_character_set_1[] = { + {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x2028, 0x2029}, {0x202f, 0x202f}, {0x205f, 0x2060}, + {0x3000, 0x3000}, {0xfeff, 0xfeff}, +}; -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 5760 - ? (c < '`' - ? (c < 0 - ? c == 0 - : (c <= '@' || (c >= '[' && c <= '^'))) - : (c <= '`' || (c < 160 - ? (c >= '{' && c <= '~') - : c <= 160))) - : (c <= 5760 || (c < 8287 - ? (c < 8239 - ? (c >= 8192 && c <= 8203) - : c <= 8239) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange extras_character_set_2[] = { + {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x202f, 0x202f}, {0x205f, 0x2060}, {0x3000, 0x3000}, + {0xfeff, 0xfeff}, +}; -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '`' || (c >= '|' && c <= '~'))))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange sym_identifier_character_set_1[] = { + {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, {0x1681, 0x1fff}, + {0x200c, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, +}; -static inline bool sym_private_property_identifier_character_set_1(int32_t c) { - return (c < 160 - ? (c < '[' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '@'))) - : (c <= '^' || (c < '{' - ? c == '`' - : c <= '~'))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange sym_identifier_character_set_2[] = { + {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, + {0x1681, 0x1fff}, {0x200c, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); @@ -13955,1346 +13569,1379 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(382); - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(33); - if (lookahead == '$') ADVANCE(937); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(513); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(517); - if (lookahead == '.') ADVANCE(459); - if (lookahead == '/') ADVANCE(567); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(322); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(787); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'g') ADVANCE(793); - if (lookahead == 'i') ADVANCE(802); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(652); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(726); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(674); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(506); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(616); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(379) - if (lookahead != 0 && - lookahead > 31) ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 33, + '$', 937, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + ')', 425, + '*', 387, + '+', 513, + ',', 406, + '-', 517, + '.', 459, + '/', 567, + '0', 599, + ':', 440, + ';', 439, + '<', 526, + '=', 395, + '>', 456, + '?', 955, + '@', 950, + '[', 447, + '\\', 322, + ']', 448, + '^', 503, + '`', 565, + 'a', 696, + 'b', 845, + 'c', 651, + 'd', 723, + 'e', 787, + 'f', 771, + 'g', 793, + 'i', 802, + 'l', 724, + 'm', 839, + 'n', 652, + 'o', 701, + 'p', 873, + 'r', 726, + 's', 665, + 't', 674, + 'u', 824, + 'v', 678, + 'w', 769, + '{', 405, + '|', 506, + '}', 407, + '~', 541, + 0x2028, 616, + 0x2029, 616, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(379); + if (lookahead > '@') ADVANCE(946); END_STATE(); case 1: - if (lookahead == '\n') SKIP(1) + if (lookahead == '\n') SKIP(1); if (lookahead == '/') ADVANCE(450); if (lookahead == '<') ADVANCE(452); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(451); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(451); if (lookahead != 0) ADVANCE(449); END_STATE(); case 2: - if (lookahead == '\n') SKIP(93) + if (lookahead == '\n') SKIP(93); if (lookahead == '/') ADVANCE(68); if (lookahead == '[') ADVANCE(104); if (lookahead == '\\') ADVANCE(378); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(568); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(568); if (lookahead != 0) ADVANCE(569); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(459); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(816); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(813); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(505); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(3) - if (lookahead != 0 && - lookahead > 31) ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + ')', 425, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 459, + '/', 519, + '0', 599, + ':', 440, + ';', 439, + '<', 526, + '=', 395, + '>', 456, + '?', 955, + '@', 950, + '[', 447, + '\\', 330, + ']', 448, + '^', 503, + '`', 565, + 'a', 816, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 813, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 840, + '{', 404, + '|', 505, + '}', 407, + '~', 541, + 0x2028, 623, + 0x2029, 623, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(3); + if (lookahead > '#') ADVANCE(946); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(459); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(813); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(652); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(505); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(619); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(4) - if (lookahead != 0 && - lookahead > 31 && - lookahead != ';' && - lookahead != ']' && - lookahead != '}') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + ')', 425, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 459, + '/', 519, + '0', 599, + ':', 440, + '<', 526, + '=', 395, + '>', 456, + '?', 955, + '@', 950, + '[', 447, + '\\', 330, + '^', 503, + '`', 565, + 'a', 696, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 813, + 'l', 724, + 'm', 839, + 'n', 652, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'u', 824, + 'v', 840, + '{', 405, + '|', 505, + '~', 541, + 0x2028, 619, + 0x2029, 619, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(4); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == '|') ADVANCE(505); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(644); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(5) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 460, + '/', 519, + '0', 599, + ':', 440, + ';', 439, + '<', 525, + '=', 395, + '>', 456, + '?', 955, + '[', 447, + '\\', 330, + '^', 503, + '`', 565, + 'a', 817, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 828, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + '|', 505, + '}', 407, + 0x2028, 644, + 0x2029, 644, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(5); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == '|') ADVANCE(505); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(645); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(6) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 460, + '/', 519, + '0', 599, + ':', 440, + ';', 439, + '<', 525, + '=', 395, + '>', 456, + '?', 955, + '[', 447, + '\\', 330, + '^', 503, + '`', 565, + 'a', 817, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'i', 828, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + '|', 505, + '}', 407, + 0x2028, 645, + 0x2029, 645, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(6); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '0') ADVANCE(599); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(74); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(816); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(803); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(505); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(624); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(7) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ';' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 460, + '/', 519, + '0', 599, + '<', 526, + '=', 395, + '>', 456, + '?', 74, + '@', 950, + '[', 447, + '\\', 330, + '^', 503, + '`', 565, + 'a', 816, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 803, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 840, + '{', 404, + '|', 505, + '~', 541, + 0x2028, 624, + 0x2029, 624, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(7); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(816); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(813); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(8) - if (lookahead != 0 && - lookahead > 31) ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 520, + '&', 501, + '\'', 462, + '(', 424, + ')', 425, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 460, + '/', 518, + '0', 599, + ':', 440, + ';', 439, + '<', 528, + '=', 97, + '>', 457, + '?', 75, + '@', 950, + '[', 447, + '\\', 330, + ']', 448, + '^', 502, + '`', 565, + 'a', 816, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 813, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 840, + '{', 404, + '|', 507, + '}', 407, + '~', 541, + 0x2028, 623, + 0x2029, 623, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(8); + if (lookahead > '#') ADVANCE(946); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(394); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(812); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(617); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 520, + '&', 501, + '\'', 462, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 460, + '/', 518, + '0', 599, + ';', 439, + '<', 528, + '=', 394, + '>', 457, + '?', 75, + '@', 950, + '[', 447, + '\\', 330, + '^', 502, + '`', 565, + 'a', 696, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 821, + 'f', 870, + 'i', 812, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '|', 507, + '}', 407, + '~', 541, + 0x2028, 617, + 0x2029, 617, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(9); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(946); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(394); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(812); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(618); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(10) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 520, + '&', 501, + '\'', 462, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 460, + '/', 518, + '0', 599, + ';', 439, + '<', 528, + '=', 394, + '>', 457, + '?', 75, + '@', 950, + '[', 447, + '\\', 330, + '^', 502, + '`', 565, + 'a', 696, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 788, + 'f', 870, + 'i', 812, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '|', 507, + '}', 407, + '~', 541, + 0x2028, 618, + 0x2029, 618, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(10); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(946); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(394); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(812); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(11) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 520, + '&', 501, + '\'', 462, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 460, + '/', 518, + '0', 599, + ';', 439, + '<', 528, + '=', 394, + '>', 457, + '?', 75, + '@', 950, + '[', 447, + '\\', 330, + '^', 502, + '`', 565, + 'a', 696, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 821, + 'f', 870, + 'i', 812, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '|', 507, + '}', 407, + '~', 541, + 0x2028, 620, + 0x2029, 620, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(11); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(946); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(394); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(812); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(621); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 520, + '&', 501, + '\'', 462, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 460, + '/', 518, + '0', 599, + ';', 439, + '<', 528, + '=', 394, + '>', 457, + '?', 75, + '@', 950, + '[', 447, + '\\', 330, + '^', 502, + '`', 565, + 'a', 696, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 788, + 'f', 870, + 'i', 812, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '|', 507, + '}', 407, + '~', 541, + 0x2028, 621, + 0x2029, 621, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(12); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(946); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(816); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(803); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(624); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(13) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ';' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 103, + '%', 520, + '&', 501, + '\'', 462, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 460, + '/', 518, + '0', 599, + '<', 528, + '=', 97, + '>', 457, + '?', 75, + '@', 950, + '[', 447, + '\\', 330, + '^', 502, + '`', 565, + 'a', 816, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 803, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 840, + '{', 404, + '|', 507, + '~', 541, + 0x2028, 624, + 0x2029, 624, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(13); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(697); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'o') ADVANCE(703); - if (lookahead == 'r') ADVANCE(750); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(505); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(626); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) - if (lookahead != 0 && - lookahead > '#' && - lookahead != '@' && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + ')', 425, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 460, + '/', 519, + '0', 599, + ':', 440, + ';', 439, + '<', 525, + '=', 395, + '>', 456, + '?', 955, + '[', 447, + '\\', 330, + ']', 448, + '^', 503, + '`', 565, + 'a', 697, + 'b', 845, + 'c', 844, + 'i', 828, + 'n', 725, + 'o', 703, + 'r', 750, + 's', 665, + 'u', 824, + 'v', 840, + '{', 405, + '|', 505, + '}', 407, + 0x2028, 626, + 0x2029, 626, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(14); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(519); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(887); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 's') ADVANCE(666); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(505); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(685); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '0' || '@' < lookahead) && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + ')', 425, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 458, + '/', 519, + ':', 440, + ';', 439, + '<', 525, + '=', 395, + '>', 456, + '?', 955, + '[', 447, + '\\', 330, + ']', 448, + '^', 503, + '`', 565, + 'a', 887, + 'i', 828, + 's', 666, + '{', 404, + '|', 505, + '}', 407, + 0x2028, 685, + 0x2029, 685, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(15); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(697); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(750); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(505); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(625); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(16) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 460, + '/', 519, + '0', 599, + ';', 439, + '<', 525, + '=', 395, + '>', 456, + '?', 955, + '[', 447, + '\\', 330, + '^', 503, + '`', 565, + 'a', 697, + 'b', 845, + 'c', 844, + 'i', 828, + 'n', 725, + 'o', 702, + 'r', 750, + 's', 665, + 'u', 824, + 'v', 840, + '{', 405, + '|', 505, + 0x2028, 625, + 0x2029, 625, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(16); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '0') ADVANCE(599); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(697); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'o') ADVANCE(703); - if (lookahead == 'r') ADVANCE(750); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(505); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(627); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 460, + '/', 519, + '0', 599, + '<', 525, + '=', 395, + '>', 456, + '?', 955, + '[', 447, + '\\', 330, + '^', 503, + '`', 565, + 'a', 697, + 'b', 845, + 'c', 844, + 'i', 808, + 'n', 725, + 'o', 703, + 'r', 750, + 's', 665, + 'u', 824, + 'v', 840, + '{', 405, + '|', 505, + 0x2028, 627, + 0x2029, 627, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(17); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(519); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(74); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(887); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'o') ADVANCE(760); - if (lookahead == 's') ADVANCE(666); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(505); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(684); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(18) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 458, + '/', 519, + ';', 439, + '<', 525, + '=', 395, + '>', 456, + '?', 74, + '[', 447, + '\\', 330, + '^', 503, + '`', 565, + 'a', 887, + 'i', 828, + 'o', 760, + 's', 666, + '{', 404, + '|', 505, + 0x2028, 684, + 0x2029, 684, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(18); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 19: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(74); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(887); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == 's') ADVANCE(666); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(505); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(686); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(19) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 458, + '/', 519, + '<', 525, + '=', 395, + '>', 456, + '?', 74, + '[', 447, + '\\', 330, + '^', 503, + '`', 565, + 'a', 887, + 'i', 808, + 's', 666, + '{', 404, + '|', 505, + 0x2028, 686, + 0x2029, 686, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(19); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 20: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(519); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(505); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(672); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(20) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '%', 521, + '&', 500, + '(', 424, + ')', 425, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 458, + '/', 519, + ':', 440, + ';', 439, + '<', 525, + '=', 395, + '>', 456, + '?', 955, + '[', 447, + '\\', 330, + ']', 448, + '^', 503, + '`', 565, + 'a', 817, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 828, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + '{', 404, + '|', 505, + '}', 407, + 0x2028, 672, + 0x2029, 672, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(20); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 21: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(519); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '[') ADVANCE(447); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(292); - if (lookahead == 'e') ADVANCE(337); - if (lookahead == 'f') ADVANCE(278); - if (lookahead == 'i') ADVANCE(230); - if (lookahead == 'o') ADVANCE(181); - if (lookahead == 'r') ADVANCE(160); - if (lookahead == 's') ADVANCE(112); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(506); - if (lookahead == '}') ADVANCE(407); + ADVANCE_MAP( + '!', 421, + '%', 521, + '&', 500, + '(', 424, + ')', 425, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 458, + '/', 519, + ':', 440, + ';', 439, + '<', 525, + '=', 395, + '>', 456, + '?', 955, + '[', 447, + ']', 448, + '^', 503, + '`', 565, + 'a', 292, + 'e', 337, + 'f', 278, + 'i', 230, + 'o', 181, + 'r', 160, + 's', 112, + '{', 404, + '|', 506, + '}', 407, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1011); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(21) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(21); END_STATE(); case 22: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(74); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(505); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(673); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(22) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '%', 521, + '&', 500, + '(', 424, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 458, + '/', 519, + '<', 525, + '=', 395, + '>', 456, + '?', 74, + '[', 447, + '\\', 330, + '^', 503, + '`', 565, + 'a', 817, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 808, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + '{', 404, + '|', 505, + 0x2028, 673, + 0x2029, 673, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(22); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 23: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(518); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '[') ADVANCE(447); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(590); - if (lookahead == 'i') ADVANCE(585); - if (lookahead == 's') ADVANCE(570); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '}') ADVANCE(407); + ADVANCE_MAP( + '!', 421, + '%', 520, + '&', 501, + '(', 424, + ')', 425, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 458, + '/', 518, + ':', 440, + ';', 439, + '<', 527, + '=', 97, + '>', 457, + '?', 75, + '[', 447, + ']', 448, + '^', 502, + '`', 565, + 'a', 590, + 'i', 585, + 's', 570, + '{', 405, + '|', 507, + '}', 407, + ); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(597); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(24) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); END_STATE(); case 24: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(518); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '[') ADVANCE(447); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(292); - if (lookahead == 'i') ADVANCE(235); - if (lookahead == 's') ADVANCE(112); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '}') ADVANCE(407); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(24) + ADVANCE_MAP( + '!', 421, + '%', 520, + '&', 501, + '(', 424, + ')', 425, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 458, + '/', 518, + ':', 440, + ';', 439, + '<', 527, + '=', 97, + '>', 457, + '?', 75, + '[', 447, + ']', 448, + '^', 502, + '`', 565, + 'a', 292, + 'i', 235, + 's', 112, + '{', 405, + '|', 507, + '}', 407, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); END_STATE(); case 25: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(518); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(394); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(956); - if (lookahead == '[') ADVANCE(447); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(292); - if (lookahead == 'e') ADVANCE(207); - if (lookahead == 'i') ADVANCE(231); - if (lookahead == 'o') ADVANCE(181); - if (lookahead == 's') ADVANCE(112); - if (lookahead == 'w') ADVANCE(186); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(508); - if (lookahead == '}') ADVANCE(407); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(25) + ADVANCE_MAP( + '!', 421, + '%', 520, + '&', 501, + '(', 424, + ')', 425, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 458, + '/', 518, + ':', 440, + ';', 439, + '<', 527, + '=', 394, + '>', 457, + '?', 956, + '[', 447, + ']', 448, + '^', 502, + '`', 565, + 'a', 292, + 'e', 207, + 'i', 231, + 'o', 181, + 's', 112, + 'w', 186, + '{', 404, + '|', 508, + '}', 407, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(25); END_STATE(); case 26: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(518); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(590); - if (lookahead == 'i') ADVANCE(585); - if (lookahead == 'o') ADVANCE(578); - if (lookahead == 's') ADVANCE(570); - if (lookahead == '|') ADVANCE(507); + ADVANCE_MAP( + '!', 421, + '%', 520, + '&', 501, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 458, + '/', 518, + ';', 439, + '<', 527, + '=', 97, + '>', 457, + '?', 75, + '[', 447, + '^', 502, + '`', 565, + 'a', 590, + 'i', 585, + 'o', 578, + 's', 570, + '|', 507, + ); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(597); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(27) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(27); END_STATE(); case 27: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(518); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(292); - if (lookahead == 'i') ADVANCE(235); - if (lookahead == 'o') ADVANCE(181); - if (lookahead == 's') ADVANCE(112); - if (lookahead == '|') ADVANCE(507); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(27) + ADVANCE_MAP( + '!', 421, + '%', 520, + '&', 501, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 458, + '/', 518, + ';', 439, + '<', 527, + '=', 97, + '>', 457, + '?', 75, + '[', 447, + '^', 502, + '`', 565, + 'a', 292, + 'i', 235, + 'o', 181, + 's', 112, + '|', 507, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(27); END_STATE(); case 28: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(518); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(394); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(670); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(28) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || ':' < lookahead) && - lookahead != ']' && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '%', 520, + '&', 501, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 458, + '/', 518, + ';', 439, + '<', 527, + '=', 394, + '>', 457, + '?', 75, + '@', 950, + '[', 447, + '\\', 330, + '^', 502, + '`', 565, + 'a', 817, + 'b', 845, + 'd', 723, + 'e', 821, + 'f', 870, + 'i', 828, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 679, + '{', 404, + '|', 507, + '}', 407, + 0x2028, 670, + 0x2029, 670, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(28); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 29: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(518); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(394); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(507); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(671); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(29) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || ':' < lookahead) && - lookahead != ']' && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '%', 520, + '&', 501, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 458, + '/', 518, + ';', 439, + '<', 527, + '=', 394, + '>', 457, + '?', 75, + '@', 950, + '[', 447, + '\\', 330, + '^', 502, + '`', 565, + 'a', 817, + 'b', 845, + 'd', 723, + 'e', 788, + 'f', 870, + 'i', 828, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 679, + '{', 404, + '|', 507, + '}', 407, + 0x2028, 671, + 0x2029, 671, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(29); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 30: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(590); - if (lookahead == 'i') ADVANCE(583); - if (lookahead == 's') ADVANCE(570); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(507); + ADVANCE_MAP( + '!', 421, + '%', 520, + '&', 501, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 458, + '/', 518, + '<', 527, + '=', 97, + '>', 457, + '?', 75, + '[', 447, + '^', 502, + '`', 565, + 'a', 590, + 'i', 583, + 's', 570, + '{', 404, + '|', 507, + ); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(597); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(31) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(31); END_STATE(); case 31: - if (lookahead == '!') ADVANCE(421); - if (lookahead == '%') ADVANCE(520); - if (lookahead == '&') ADVANCE(501); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(388); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '<') ADVANCE(527); - if (lookahead == '=') ADVANCE(97); - if (lookahead == '>') ADVANCE(457); - if (lookahead == '?') ADVANCE(75); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '^') ADVANCE(502); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(292); - if (lookahead == 'i') ADVANCE(230); - if (lookahead == 's') ADVANCE(112); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(507); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(31) + ADVANCE_MAP( + '!', 421, + '%', 520, + '&', 501, + '(', 424, + '*', 388, + '+', 511, + ',', 406, + '-', 515, + '.', 458, + '/', 518, + '<', 527, + '=', 97, + '>', 457, + '?', 75, + '[', 447, + '^', 502, + '`', 565, + 'a', 292, + 'i', 230, + 's', 112, + '{', 404, + '|', 507, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(31); END_STATE(); case 32: if (lookahead == '!') ADVANCE(383); @@ -15302,1340 +14949,1350 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 33: if (lookahead == '!') ADVANCE(383); if (lookahead == '\\') ADVANCE(328); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(947); + if (set_contains(sym_identifier_character_set_1, 13, lookahead)) ADVANCE(947); END_STATE(); case 34: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '&') ADVANCE(499); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(386); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '?') ADVANCE(953); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(652); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(504); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(636); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(34) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '>' < lookahead) && - lookahead != '^' && - lookahead != '}') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '&', 499, + '\'', 462, + '(', 424, + ')', 425, + '*', 386, + '+', 511, + ',', 406, + '-', 515, + '.', 72, + '/', 518, + '0', 599, + '<', 529, + '?', 953, + '@', 950, + '[', 447, + '\\', 330, + ']', 448, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 652, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'u', 824, + 'v', 840, + '{', 405, + '|', 504, + '~', 541, + 0x2028, 636, + 0x2029, 636, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(34); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 35: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '&') ADVANCE(499); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '>') ADVANCE(455); - if (lookahead == '?') ADVANCE(953); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(818); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(509); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(649); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(35) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '=' < lookahead) && - lookahead != '^') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '&', 499, + '\'', 462, + '(', 424, + ')', 425, + '+', 511, + ',', 406, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '>', 455, + '?', 953, + '@', 950, + '[', 447, + '\\', 330, + ']', 448, + '`', 565, + 'a', 818, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 928, + 'f', 870, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 840, + '{', 404, + '|', 509, + '}', 407, + '~', 541, + 0x2028, 649, + 0x2029, 649, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(35); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(946); END_STATE(); case 36: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(459); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '=') ADVANCE(98); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(818); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(648); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(36) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + ')', 425, + '+', 511, + ',', 406, + '-', 515, + '.', 459, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '=', 98, + '@', 950, + '[', 447, + '\\', 330, + ']', 448, + '`', 565, + 'a', 818, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 840, + '{', 404, + '~', 541, + 0x2028, 648, + 0x2029, 648, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(36); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 37: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(386); - if (lookahead == '+') ADVANCE(511); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(459); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(638); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(37) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '*', 386, + '+', 511, + ',', 406, + '-', 515, + '.', 459, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 821, + 'f', 870, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 638, + 0x2029, 638, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(37); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 38: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(386); - if (lookahead == '+') ADVANCE(510); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(514); - if (lookahead == '.') ADVANCE(459); - if (lookahead == '/') ADVANCE(68); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '=') ADVANCE(393); - if (lookahead == '?') ADVANCE(953); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(699); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(351); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(650); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(38) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '>' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - lookahead != '~') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '*', 386, + '+', 510, + ',', 406, + '-', 514, + '.', 459, + '/', 68, + '0', 599, + ':', 440, + ';', 439, + '<', 524, + '=', 393, + '?', 953, + '@', 950, + '[', 447, + '\\', 330, + 'a', 699, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + '{', 404, + '|', 351, + '}', 407, + 0x2028, 650, + 0x2029, 650, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(38); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 39: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(386); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(68); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '=') ADVANCE(396); - if (lookahead == '?') ADVANCE(953); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(351); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(622); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(39) - if (lookahead != 0 && - lookahead > 31 && + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '*', 386, + ',', 406, + '.', 72, + '/', 68, + '0', 599, + ':', 440, + ';', 439, + '<', 524, + '=', 396, + '?', 953, + '[', 447, + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + '{', 404, + '|', 351, + '}', 407, + 0x2028, 622, + 0x2029, 622, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(39); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - lookahead != '~') ADVANCE(945); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 40: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(40) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 460, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 821, + 'f', 870, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 633, + 0x2029, 633, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(40); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 41: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(635); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(41) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 460, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 788, + 'f', 870, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 635, + 0x2029, 635, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(41); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 42: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(460); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(641); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(42) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 460, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 788, + 'f', 870, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 641, + 0x2029, 641, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(42); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 43: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(630); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(43) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 651, + 'd', 723, + 'e', 821, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 630, + 0x2029, 630, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(43); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 44: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(631); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(44) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 651, + 'd', 723, + 'e', 788, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 631, + 0x2029, 631, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(44); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 45: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(632); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(45) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 821, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 632, + 0x2029, 632, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(45); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 46: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(634); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(46) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 788, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 634, + 0x2029, 634, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(46); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 47: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(637); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(47) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 821, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 637, + 0x2029, 637, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(47); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 48: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(640); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(48) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 788, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 640, + 0x2029, 640, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(48); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 49: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(690); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(642); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(49) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 690, + 'd', 744, + 'e', 821, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 642, + 0x2029, 642, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(49); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 50: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(690); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(643); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(50) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 690, + 'd', 744, + 'e', 788, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + '{', 404, + '}', 407, + '~', 541, + 0x2028, 643, + 0x2029, 643, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(50); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 51: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(818); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(646); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(51) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 818, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + '{', 404, + '~', 541, + 0x2028, 646, + 0x2029, 646, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(51); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 52: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(818); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 'w') ADVANCE(772); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(647); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(52) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + ';', 439, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 818, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 840, + 'w', 772, + '{', 404, + '~', 541, + 0x2028, 647, + 0x2029, 647, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(52); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 53: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '+') ADVANCE(511); - if (lookahead == '-') ADVANCE(515); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(518); - if (lookahead == '0') ADVANCE(599); - if (lookahead == '<') ADVANCE(529); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(639); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(53) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(945); + ADVANCE_MAP( + '!', 420, + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + '+', 511, + '-', 515, + '.', 357, + '/', 518, + '0', 599, + '<', 529, + '@', 950, + '[', 447, + '\\', 330, + '`', 565, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 821, + 'f', 870, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + '{', 404, + '~', 541, + 0x2028, 639, + 0x2029, 639, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(53); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 54: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '&') ADVANCE(499); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(386); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(514); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(68); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '=') ADVANCE(396); - if (lookahead == '>') ADVANCE(455); - if (lookahead == '?') ADVANCE(953); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(127); - if (lookahead == 'b') ADVANCE(260); - if (lookahead == 'c') ADVANCE(211); - if (lookahead == 'd') ADVANCE(150); - if (lookahead == 'e') ADVANCE(240); - if (lookahead == 'f') ADVANCE(324); - if (lookahead == 'i') ADVANCE(225); - if (lookahead == 'l') ADVANCE(163); - if (lookahead == 'm') ADVANCE(251); - if (lookahead == 'n') ADVANCE(108); - if (lookahead == 'o') ADVANCE(130); - if (lookahead == 's') ADVANCE(317); - if (lookahead == 't') ADVANCE(342); - if (lookahead == 'u') ADVANCE(236); - if (lookahead == 'v') ADVANCE(115); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(509); - if (lookahead == '}') ADVANCE(407); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(54) + ADVANCE_MAP( + '!', 420, + '"', 461, + '&', 499, + '\'', 462, + '(', 424, + ')', 425, + '*', 386, + ',', 406, + '-', 514, + '.', 357, + '/', 68, + '0', 599, + ':', 440, + ';', 439, + '<', 524, + '=', 396, + '>', 455, + '?', 953, + '@', 950, + '[', 447, + ']', 448, + '`', 565, + 'a', 127, + 'b', 260, + 'c', 211, + 'd', 150, + 'e', 240, + 'f', 324, + 'i', 225, + 'l', 163, + 'm', 251, + 'n', 108, + 'o', 130, + 's', 317, + 't', 342, + 'u', 236, + 'v', 115, + '{', 404, + '|', 509, + '}', 407, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(54); END_STATE(); case 55: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '&') ADVANCE(499); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(68); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '=') ADVANCE(396); - if (lookahead == '>') ADVANCE(455); - if (lookahead == '?') ADVANCE(953); - if (lookahead == '[') ADVANCE(447); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(292); - if (lookahead == 'e') ADVANCE(207); - if (lookahead == 'f') ADVANCE(278); - if (lookahead == 'i') ADVANCE(239); - if (lookahead == 'o') ADVANCE(181); - if (lookahead == 'w') ADVANCE(187); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(509); - if (lookahead == '}') ADVANCE(407); + ADVANCE_MAP( + '!', 420, + '&', 499, + '(', 424, + ')', 425, + ',', 406, + '.', 458, + '/', 68, + ':', 440, + ';', 439, + '<', 524, + '=', 396, + '>', 455, + '?', 953, + '[', 447, + ']', 448, + '`', 565, + 'a', 292, + 'e', 207, + 'f', 278, + 'i', 239, + 'o', 181, + 'w', 187, + '{', 404, + '|', 509, + '}', 407, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1011); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(55) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(55); END_STATE(); case 56: - if (lookahead == '!') ADVANCE(420); - if (lookahead == '&') ADVANCE(499); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(68); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '=') ADVANCE(396); - if (lookahead == '>') ADVANCE(455); - if (lookahead == '?') ADVANCE(954); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(129); - if (lookahead == 'c') ADVANCE(210); - if (lookahead == 'e') ADVANCE(336); - if (lookahead == 'i') ADVANCE(239); - if (lookahead == 'o') ADVANCE(181); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(509); - if (lookahead == '}') ADVANCE(407); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(56) + ADVANCE_MAP( + '!', 420, + '&', 499, + '(', 424, + ')', 425, + ',', 406, + '.', 458, + '/', 68, + ':', 440, + ';', 439, + '<', 524, + '=', 396, + '>', 455, + '?', 954, + '@', 950, + '[', 447, + ']', 448, + '`', 565, + 'a', 129, + 'c', 210, + 'e', 336, + 'i', 239, + 'o', 181, + '{', 404, + '|', 509, + '}', 407, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(56); END_STATE(); case 57: - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(103); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(386); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(68); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '?') ADVANCE(73); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == '{') ADVANCE(404); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(939); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(57) - if (lookahead != 0 && - lookahead > '!' && + ADVANCE_MAP( + '"', 461, + '#', 103, + '\'', 462, + '(', 424, + ')', 425, + '*', 386, + '.', 458, + '/', 68, + ':', 440, + ';', 439, + '<', 524, + '?', 73, + '[', 447, + '\\', 330, + '`', 565, + '{', 404, + 0x2028, 940, + 0x2029, 940, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(57); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(945); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 58: - if (lookahead == '"') ADVANCE(461); - if (lookahead == '&') ADVANCE(499); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(386); - if (lookahead == '+') ADVANCE(510); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(514); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '/') ADVANCE(68); - if (lookahead == '0') ADVANCE(599); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '?') ADVANCE(953); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(700); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'o') ADVANCE(703); - if (lookahead == 'r') ADVANCE(750); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(504); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(629); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(58) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 461, + '&', 499, + '\'', 462, + '(', 424, + '*', 386, + '+', 510, + ',', 406, + '-', 514, + '.', 72, + '/', 68, + '0', 599, + '<', 524, + '?', 953, + '[', 447, + '\\', 330, + ']', 448, + '`', 565, + 'a', 700, + 'b', 845, + 'c', 844, + 'n', 725, + 'o', 703, + 'r', 750, + 's', 907, + 'u', 824, + 'v', 840, + '{', 405, + '|', 504, + 0x2028, 629, + 0x2029, 629, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(58); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != '^' && - lookahead != '}' && - lookahead != '~') ADVANCE(945); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 59: - if (lookahead == '"') ADVANCE(461); - if (lookahead == '&') ADVANCE(499); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(386); - if (lookahead == '+') ADVANCE(510); - if (lookahead == '-') ADVANCE(514); - if (lookahead == '.') ADVANCE(357); - if (lookahead == '/') ADVANCE(68); - if (lookahead == '0') ADVANCE(599); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '>') ADVANCE(455); - if (lookahead == '?') ADVANCE(953); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(700); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'o') ADVANCE(703); - if (lookahead == 'r') ADVANCE(750); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(504); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(628); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(59) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 461, + '&', 499, + '\'', 462, + '(', 424, + '*', 386, + '+', 510, + '-', 514, + '.', 357, + '/', 68, + '0', 599, + '<', 524, + '>', 455, + '?', 953, + '[', 447, + '\\', 330, + '`', 565, + 'a', 700, + 'b', 845, + 'c', 844, + 'i', 815, + 'n', 725, + 'o', 703, + 'r', 750, + 's', 907, + 'u', 824, + 'v', 840, + '{', 405, + '|', 504, + 0x2028, 628, + 0x2029, 628, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(59); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '}' && - lookahead != '~') ADVANCE(945); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 60: - if (lookahead == '"') ADVANCE(461); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == '*') ADVANCE(386); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(68); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '?') ADVANCE(73); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 't') ADVANCE(935); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(911); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(60) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 461, + '\'', 462, + '(', 424, + '*', 386, + ',', 406, + '.', 458, + '/', 68, + '<', 524, + '?', 73, + '\\', 330, + '`', 565, + 't', 935, + '{', 404, + '}', 407, + 0x2028, 911, + 0x2029, 911, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(60); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '|' || '~' < lookahead)) ADVANCE(945); + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 61: - if (lookahead == '"') ADVANCE(461); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '*') ADVANCE(386); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '/') ADVANCE(68); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 't') ADVANCE(935); - if (lookahead == '{') ADVANCE(404); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(764); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(61) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 461, + '\'', 462, + '*', 386, + ',', 406, + '/', 68, + '\\', 330, + 'f', 871, + 't', 935, + '{', 404, + 0x2028, 764, + 0x2029, 764, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(61); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(945); + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 62: - if (lookahead == '"') ADVANCE(461); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '/') ADVANCE(68); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(887); - if (lookahead == 't') ADVANCE(935); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(687); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(62) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 461, + '\'', 462, + ',', 406, + '/', 68, + '\\', 330, + 'a', 887, + 't', 935, + '}', 407, + 0x2028, 687, + 0x2029, 687, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(62); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + lookahead != 'a' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 63: - if (lookahead == '"') ADVANCE(461); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(68); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(663); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(63) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '?' < lookahead) && + ADVANCE_MAP( + '"', 461, + '\'', 462, + '.', 458, + '/', 68, + ';', 439, + '@', 950, + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 0x2028, 663, + 0x2029, 663, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(63); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 64: if (lookahead == '"') ADVANCE(461); if (lookahead == '/') ADVANCE(547); if (lookahead == '\\') ADVANCE(331); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(550); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(550); if (lookahead != 0) ADVANCE(551); END_STATE(); case 65: - if (lookahead == '#') ADVANCE(32); - if (lookahead == '/') ADVANCE(68); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(65) - if (lookahead != 0 && - lookahead > '"' && - (lookahead < '%' || '?' < lookahead) && + ADVANCE_MAP( + '#', 32, + '/', 68, + '@', 950, + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 0x2028, 662, + 0x2029, 662, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(65); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 66: - if (lookahead == '&') ADVANCE(499); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '/') ADVANCE(68); - if (lookahead == '>') ADVANCE(455); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'e') ADVANCE(930); - if (lookahead == '|') ADVANCE(504); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(740); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(66) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '&', 499, + ',', 406, + '/', 68, + '>', 455, + '[', 447, + '\\', 330, + 'e', 930, + '|', 504, + 0x2028, 740, + 0x2029, 740, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(66); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && + (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 67: if (lookahead == '\'') ADVANCE(462); if (lookahead == '/') ADVANCE(553); if (lookahead == '\\') ADVANCE(331); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(556); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(556); if (lookahead != 0) ADVANCE(557); END_STATE(); case 68: @@ -16652,21 +16309,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(70); END_STATE(); case 71: - if (lookahead == '+') ADVANCE(101); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(102); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(68); - if (lookahead == ':') ADVANCE(440); - if (lookahead == '<') ADVANCE(524); - if (lookahead == '?') ADVANCE(96); - if (lookahead == 'e') ADVANCE(337); - if (lookahead == '{') ADVANCE(405); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(71) + ADVANCE_MAP( + '+', 101, + ',', 406, + '-', 102, + '.', 458, + '/', 68, + ':', 440, + '<', 524, + '?', 96, + 'e', 337, + '{', 405, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(71); END_STATE(); case 72: if (lookahead == '.') ADVANCE(76); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); END_STATE(); case 73: if (lookahead == '.') ADVANCE(470); @@ -16683,33 +16342,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(488); END_STATE(); case 77: - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(68); - if (lookahead == ':') ADVANCE(440); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == '{') ADVANCE(404); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(657); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(77) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '.', 458, + '/', 68, + ':', 440, + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 723, + 'e', 929, + 'f', 871, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + '{', 404, + 0x2028, 657, + 0x2029, 657, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(77); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 78: if (lookahead == '.') ADVANCE(458); @@ -16718,83 +16378,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(823); if (lookahead == '{') ADVANCE(404); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(852); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(78) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(852); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(78); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(945); + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 79: - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(68); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(659); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(79) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '?' < lookahead) && + ADVANCE_MAP( + '.', 458, + '/', 68, + ';', 439, + '@', 950, + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 723, + 'e', 821, + 'f', 870, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + '{', 404, + '}', 407, + 0x2028, 659, + 0x2029, 659, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(79); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 80: - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(68); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(661); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(80) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '?' < lookahead) && + ADVANCE_MAP( + '.', 458, + '/', 68, + ';', 439, + '@', 950, + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 723, + 'e', 788, + 'f', 870, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + '{', 404, + '}', 407, + 0x2028, 661, + 0x2029, 661, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(80); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 81: if (lookahead == '/') ADVANCE(567); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(93) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(93); END_STATE(); case 82: if (lookahead == '/') ADVANCE(68); @@ -16803,148 +16464,150 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(930); if (lookahead == 'i') ADVANCE(809); if (lookahead == '{') ADVANCE(404); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(739); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(82) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(739); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(82); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(945); + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 83: if (lookahead == '/') ADVANCE(68); if (lookahead == '>') ADVANCE(455); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(844); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(712); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(83) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(712); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(83); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 84: - if (lookahead == '/') ADVANCE(68); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(691); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(655); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(84) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '?' < lookahead) && + ADVANCE_MAP( + '/', 68, + '@', 950, + '\\', 330, + 'a', 819, + 'b', 845, + 'c', 691, + 'd', 723, + 'e', 821, + 'f', 771, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + '}', 407, + 0x2028, 655, + 0x2029, 655, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(84); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'f' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 85: - if (lookahead == '/') ADVANCE(68); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(691); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(656); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(85) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '?' < lookahead) && + ADVANCE_MAP( + '/', 68, + '@', 950, + '\\', 330, + 'a', 819, + 'b', 845, + 'c', 691, + 'd', 723, + 'e', 788, + 'f', 771, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + '}', 407, + 0x2028, 656, + 0x2029, 656, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(85); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'f' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 86: - if (lookahead == '/') ADVANCE(68); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(658); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(86) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '?' < lookahead) && + ADVANCE_MAP( + '/', 68, + '@', 950, + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 723, + 'e', 821, + 'f', 771, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + '}', 407, + 0x2028, 658, + 0x2029, 658, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(86); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 87: - if (lookahead == '/') ADVANCE(68); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == '}') ADVANCE(407); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(660); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(87) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '%' || '?' < lookahead) && + ADVANCE_MAP( + '/', 68, + '@', 950, + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 723, + 'e', 788, + 'f', 771, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + '}', 407, + 0x2028, 660, + 0x2029, 660, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(87); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 88: if (lookahead == '/') ADVANCE(68); @@ -16952,94 +16615,92 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(822); if (lookahead == '{') ADVANCE(404); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(754); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(88) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(754); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(88); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && + (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(945); + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 89: - if (lookahead == '/') ADVANCE(68); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(664); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(89) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '/', 68, + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 0x2028, 664, + 0x2029, 664, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(89); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 90: - if (lookahead == '/') ADVANCE(68); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(820); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'n') ADVANCE(737); - if (lookahead == 'o') ADVANCE(703); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(689); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(90) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '/', 68, + '\\', 330, + 'a', 820, + 'b', 845, + 'n', 737, + 'o', 703, + 's', 907, + 'u', 824, + 'v', 840, + 0x2028, 689, + 0x2029, 689, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(90); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 91: if (lookahead == '/') ADVANCE(68); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(815); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(774); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(91) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(774); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(91); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 92: if (lookahead == '/') ADVANCE(68); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(756); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(881); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(92) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(881); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(92); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(945); + (lookahead < '{' || '~' < lookahead)) ADVANCE(946); END_STATE(); case 93: if (lookahead == '/') ADVANCE(68); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(93) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(93); END_STATE(); case 94: if (lookahead == ':') ADVANCE(999); @@ -17070,7 +16731,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 103: if (lookahead == '\\') ADVANCE(328); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(947); + if (set_contains(sym_identifier_character_set_1, 13, lookahead)) ADVANCE(947); END_STATE(); case 104: if (lookahead == '\\') ADVANCE(377); @@ -17866,7 +17527,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(366); END_STATE(); case 348: - if (lookahead == '}') ADVANCE(945); + if (lookahead == '}') ADVANCE(946); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(348); @@ -17895,31 +17556,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 353: if (lookahead == '+' || lookahead == '-') ADVANCE(359); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); END_STATE(); case 354: if (lookahead == '0' || - lookahead == '1') ADVANCE(609); + lookahead == '1') ADVANCE(610); END_STATE(); case 355: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(610); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(611); END_STATE(); case 356: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(602); END_STATE(); case 357: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); END_STATE(); case 358: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(612); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(609); END_STATE(); case 359: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); END_STATE(); case 360: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(945); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(946); END_STATE(); case 361: if (('0' <= lookahead && lookahead <= '9') || @@ -17934,7 +17595,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 363: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(611); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(612); END_STATE(); case 364: if (('0' <= lookahead && lookahead <= '9') || @@ -18011,164 +17672,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 379: if (eof) ADVANCE(382); - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '#') ADVANCE(33); - if (lookahead == '$') ADVANCE(937); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(513); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(517); - if (lookahead == '.') ADVANCE(459); - if (lookahead == '/') ADVANCE(519); - if (lookahead == '0') ADVANCE(599); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(526); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(787); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'g') ADVANCE(793); - if (lookahead == 'i') ADVANCE(802); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(652); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(726); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(674); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == '{') ADVANCE(405); - if (lookahead == '|') ADVANCE(506); - if (lookahead == '}') ADVANCE(407); - if (lookahead == '~') ADVANCE(541); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(616); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(379) - if (lookahead != 0 && - lookahead > 31) ADVANCE(945); + ADVANCE_MAP( + '!', 421, + '"', 461, + '#', 33, + '$', 937, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + ')', 425, + '*', 387, + '+', 513, + ',', 406, + '-', 517, + '.', 459, + '/', 519, + '0', 599, + ':', 440, + ';', 439, + '<', 526, + '=', 395, + '>', 456, + '?', 955, + '@', 950, + '[', 447, + '\\', 330, + ']', 448, + '^', 503, + '`', 565, + 'a', 696, + 'b', 845, + 'c', 651, + 'd', 723, + 'e', 787, + 'f', 771, + 'g', 793, + 'i', 802, + 'l', 724, + 'm', 839, + 'n', 652, + 'o', 701, + 'p', 873, + 'r', 726, + 's', 665, + 't', 674, + 'u', 824, + 'v', 678, + 'w', 769, + '{', 405, + '|', 506, + '}', 407, + '~', 541, + 0x2028, 616, + 0x2029, 616, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(379); + if (lookahead > '@') ADVANCE(946); END_STATE(); case 380: if (eof) ADVANCE(382); - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '$') ADVANCE(343); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(519); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == '\\') ADVANCE(331); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(128); - if (lookahead == 'c') ADVANCE(106); - if (lookahead == 'd') ADVANCE(150); - if (lookahead == 'e') ADVANCE(206); - if (lookahead == 'f') ADVANCE(191); - if (lookahead == 'g') ADVANCE(208); - if (lookahead == 'i') ADVANCE(224); - if (lookahead == 'l') ADVANCE(163); - if (lookahead == 'm') ADVANCE(251); - if (lookahead == 'n') ADVANCE(107); - if (lookahead == 'o') ADVANCE(233); - if (lookahead == 'p') ADVANCE(279); - if (lookahead == 'r') ADVANCE(151); - if (lookahead == 's') ADVANCE(113); - if (lookahead == 't') ADVANCE(109); - if (lookahead == 'v') ADVANCE(114); - if (lookahead == 'w') ADVANCE(187); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(506); - if (lookahead == '}') ADVANCE(407); + ADVANCE_MAP( + '!', 421, + '"', 461, + '$', 343, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + ')', 425, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 458, + '/', 519, + ':', 440, + ';', 439, + '<', 525, + '=', 395, + '>', 456, + '?', 955, + '@', 950, + '[', 447, + '\\', 331, + ']', 448, + '^', 503, + '`', 565, + 'a', 128, + 'c', 106, + 'd', 150, + 'e', 206, + 'f', 191, + 'g', 208, + 'i', 224, + 'l', 163, + 'm', 251, + 'n', 107, + 'o', 233, + 'p', 279, + 'r', 151, + 's', 113, + 't', 109, + 'v', 114, + 'w', 187, + '{', 404, + '|', 506, + '}', 407, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1011); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(381) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(381); END_STATE(); case 381: if (eof) ADVANCE(382); - if (lookahead == '!') ADVANCE(421); - if (lookahead == '"') ADVANCE(461); - if (lookahead == '$') ADVANCE(343); - if (lookahead == '%') ADVANCE(521); - if (lookahead == '&') ADVANCE(500); - if (lookahead == '\'') ADVANCE(462); - if (lookahead == '(') ADVANCE(424); - if (lookahead == ')') ADVANCE(425); - if (lookahead == '*') ADVANCE(387); - if (lookahead == '+') ADVANCE(512); - if (lookahead == ',') ADVANCE(406); - if (lookahead == '-') ADVANCE(516); - if (lookahead == '.') ADVANCE(458); - if (lookahead == '/') ADVANCE(519); - if (lookahead == ':') ADVANCE(440); - if (lookahead == ';') ADVANCE(439); - if (lookahead == '<') ADVANCE(525); - if (lookahead == '=') ADVANCE(395); - if (lookahead == '>') ADVANCE(456); - if (lookahead == '?') ADVANCE(955); - if (lookahead == '@') ADVANCE(950); - if (lookahead == '[') ADVANCE(447); - if (lookahead == ']') ADVANCE(448); - if (lookahead == '^') ADVANCE(503); - if (lookahead == '`') ADVANCE(565); - if (lookahead == 'a') ADVANCE(128); - if (lookahead == 'c') ADVANCE(106); - if (lookahead == 'd') ADVANCE(150); - if (lookahead == 'e') ADVANCE(206); - if (lookahead == 'f') ADVANCE(191); - if (lookahead == 'g') ADVANCE(208); - if (lookahead == 'i') ADVANCE(224); - if (lookahead == 'l') ADVANCE(163); - if (lookahead == 'm') ADVANCE(251); - if (lookahead == 'n') ADVANCE(107); - if (lookahead == 'o') ADVANCE(233); - if (lookahead == 'p') ADVANCE(279); - if (lookahead == 'r') ADVANCE(151); - if (lookahead == 's') ADVANCE(113); - if (lookahead == 't') ADVANCE(109); - if (lookahead == 'v') ADVANCE(114); - if (lookahead == 'w') ADVANCE(187); - if (lookahead == '{') ADVANCE(404); - if (lookahead == '|') ADVANCE(506); - if (lookahead == '}') ADVANCE(407); + ADVANCE_MAP( + '!', 421, + '"', 461, + '$', 343, + '%', 521, + '&', 500, + '\'', 462, + '(', 424, + ')', 425, + '*', 387, + '+', 512, + ',', 406, + '-', 516, + '.', 458, + '/', 519, + ':', 440, + ';', 439, + '<', 525, + '=', 395, + '>', 456, + '?', 955, + '@', 950, + '[', 447, + ']', 448, + '^', 503, + '`', 565, + 'a', 128, + 'c', 106, + 'd', 150, + 'e', 206, + 'f', 191, + 'g', 208, + 'i', 224, + 'l', 163, + 'm', 251, + 'n', 107, + 'o', 233, + 'p', 279, + 'r', 151, + 's', 113, + 't', 109, + 'v', 114, + 'w', 187, + '{', 404, + '|', 506, + '}', 407, + ); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1011); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(381) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(381); END_STATE(); case 382: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -18184,7 +17850,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 385: ACCEPT_TOKEN(anon_sym_export); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 386: ACCEPT_TOKEN(anon_sym_STAR); @@ -18204,7 +17870,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 390: ACCEPT_TOKEN(anon_sym_default); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 391: ACCEPT_TOKEN(anon_sym_type); @@ -18212,7 +17878,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 392: ACCEPT_TOKEN(anon_sym_type); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 393: ACCEPT_TOKEN(anon_sym_EQ); @@ -18237,12 +17903,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_as); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'y') ADVANCE(831); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 399: ACCEPT_TOKEN(anon_sym_as); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 400: ACCEPT_TOKEN(anon_sym_as); @@ -18258,7 +17924,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 403: ACCEPT_TOKEN(anon_sym_namespace); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 404: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -18279,7 +17945,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 409: ACCEPT_TOKEN(anon_sym_import); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 410: ACCEPT_TOKEN(anon_sym_from); @@ -18287,7 +17953,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 411: ACCEPT_TOKEN(anon_sym_from); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 412: ACCEPT_TOKEN(anon_sym_with); @@ -18295,7 +17961,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 413: ACCEPT_TOKEN(anon_sym_with); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 414: ACCEPT_TOKEN(anon_sym_var); @@ -18303,7 +17969,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 415: ACCEPT_TOKEN(anon_sym_var); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 416: ACCEPT_TOKEN(anon_sym_let); @@ -18311,7 +17977,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 417: ACCEPT_TOKEN(anon_sym_let); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 418: ACCEPT_TOKEN(anon_sym_const); @@ -18319,7 +17985,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 419: ACCEPT_TOKEN(anon_sym_const); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 420: ACCEPT_TOKEN(anon_sym_BANG); @@ -18334,7 +18000,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 423: ACCEPT_TOKEN(anon_sym_else); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 424: ACCEPT_TOKEN(anon_sym_LPAREN); @@ -18348,7 +18014,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 427: ACCEPT_TOKEN(anon_sym_await); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 428: ACCEPT_TOKEN(anon_sym_in); @@ -18358,13 +18024,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(914); if (lookahead == 't') ADVANCE(745); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 430: ACCEPT_TOKEN(anon_sym_in); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(914); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 431: ACCEPT_TOKEN(anon_sym_in); @@ -18386,7 +18052,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 435: ACCEPT_TOKEN(anon_sym_of); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 436: ACCEPT_TOKEN(anon_sym_of); @@ -18398,7 +18064,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 438: ACCEPT_TOKEN(anon_sym_while); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 439: ACCEPT_TOKEN(anon_sym_SEMI); @@ -18412,7 +18078,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 442: ACCEPT_TOKEN(anon_sym_case); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 443: ACCEPT_TOKEN(anon_sym_catch); @@ -18420,7 +18086,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 444: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 445: ACCEPT_TOKEN(anon_sym_finally); @@ -18428,7 +18094,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 446: ACCEPT_TOKEN(anon_sym_finally); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 447: ACCEPT_TOKEN(anon_sym_LBRACK); @@ -18448,9 +18114,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__glimmer_template_content); if (lookahead == '/') ADVANCE(450); if (lookahead == '<') ADVANCE(452); - if (sym__glimmer_template_content_character_set_2(lookahead)) ADVANCE(451); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n') ADVANCE(451); if (lookahead != 0 && - lookahead != '\n') ADVANCE(449); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(449); END_STATE(); case 452: ACCEPT_TOKEN(sym__glimmer_template_content); @@ -18481,11 +18148,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 459: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(76); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); END_STATE(); case 460: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); END_STATE(); case 461: ACCEPT_TOKEN(anon_sym_DQUOTE); @@ -18499,7 +18166,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 464: ACCEPT_TOKEN(anon_sym_class); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 465: ACCEPT_TOKEN(anon_sym_async); @@ -18507,7 +18174,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 466: ACCEPT_TOKEN(anon_sym_async); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 467: ACCEPT_TOKEN(anon_sym_function); @@ -18515,7 +18182,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 468: ACCEPT_TOKEN(anon_sym_function); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 469: ACCEPT_TOKEN(anon_sym_EQ_GT); @@ -18529,7 +18196,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 472: ACCEPT_TOKEN(anon_sym_new); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 473: ACCEPT_TOKEN(anon_sym_PLUS_EQ); @@ -18785,7 +18452,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 539: ACCEPT_TOKEN(anon_sym_instanceof); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 540: ACCEPT_TOKEN(anon_sym_instanceof); @@ -18800,7 +18467,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 543: ACCEPT_TOKEN(anon_sym_void); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 544: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); @@ -18841,7 +18508,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 550: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == '/') ADVANCE(547); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(550); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(550); if (lookahead != 0 && lookahead != '"' && lookahead != '\\') ADVANCE(551); @@ -18885,7 +18552,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 556: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == '/') ADVANCE(553); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(556); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(556); if (lookahead != 0 && lookahead != '\'' && lookahead != '\\') ADVANCE(557); @@ -18902,13 +18569,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 559: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 560: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n' || - lookahead == 8232 || - lookahead == 8233) ADVANCE(558); + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(558); END_STATE(); case 561: ACCEPT_TOKEN(sym_escape_sequence); @@ -18937,11 +18604,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 568: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(93) + if (lookahead == '\n') SKIP(93); if (lookahead == '/') ADVANCE(68); if (lookahead == '[') ADVANCE(104); if (lookahead == '\\') ADVANCE(378); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(568); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(568); if (lookahead != 0) ADVANCE(569); END_STATE(); case 569: @@ -19097,1006 +18764,1080 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 599: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(615); - if (lookahead == '0') ADVANCE(612); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(354); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(353); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(355); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(363); - if (lookahead == '_') ADVANCE(358); - if (lookahead == 'n') ADVANCE(598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + ADVANCE_MAP( + '.', 615, + '0', 609, + '_', 358, + 'n', 598, + 'B', 354, + 'b', 354, + 'E', 353, + 'e', 353, + 'O', 355, + 'o', 355, + 'X', 363, + 'x', 363, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); END_STATE(); case 600: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(615); - if (lookahead == '0') ADVANCE(606); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(938); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(946); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(940); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(944); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(942); - if (lookahead == 'n') ADVANCE(608); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '.', 615, + '0', 603, + '\\', 330, + '_', 943, + 'n', 608, + 'B', 939, + 'b', 939, + 'E', 938, + 'e', 938, + 'O', 941, + 'o', 941, + 'X', 945, + 'x', 945, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 601: ACCEPT_TOKEN(sym_number); if (lookahead == '.') ADVANCE(615); + if (lookahead == '\\') ADVANCE(330); + if (lookahead == '_') ADVANCE(942); + if (lookahead == 'n') ADVANCE(608); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(353); - if (lookahead == '_') ADVANCE(356); - if (lookahead == 'n') ADVANCE(598); + lookahead == 'e') ADVANCE(938); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 602: ACCEPT_TOKEN(sym_number); if (lookahead == '.') ADVANCE(615); + if (lookahead == '_') ADVANCE(356); + if (lookahead == 'n') ADVANCE(598); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(946); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(941); - if (lookahead == 'n') ADVANCE(608); + lookahead == 'e') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(945); END_STATE(); case 603: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(938); + if (lookahead == '_') ADVANCE(943); if (lookahead == 'n') ADVANCE(608); - if (lookahead == '0' || - lookahead == '1') ADVANCE(603); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(945); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(603); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 604: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(940); + if (lookahead == '_') ADVANCE(939); if (lookahead == 'n') ADVANCE(608); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(604); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(945); + if (lookahead == '0' || + lookahead == '1') ADVANCE(604); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 605: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(944); + if (lookahead == '_') ADVANCE(941); if (lookahead == 'n') ADVANCE(608); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(605); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(945); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(605); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 606: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(942); + if (lookahead == '_') ADVANCE(945); if (lookahead == 'n') ADVANCE(608); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(945); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(606); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 607: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(330); - if (lookahead == '_') ADVANCE(943); + if (lookahead == '_') ADVANCE(944); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(607); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 608: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 609: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(354); + if (lookahead == '_') ADVANCE(358); if (lookahead == 'n') ADVANCE(598); - if (lookahead == '0' || - lookahead == '1') ADVANCE(609); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(609); END_STATE(); case 610: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(355); + if (lookahead == '_') ADVANCE(354); if (lookahead == 'n') ADVANCE(598); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(610); + if (lookahead == '0' || + lookahead == '1') ADVANCE(610); END_STATE(); case 611: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(363); + if (lookahead == '_') ADVANCE(355); if (lookahead == 'n') ADVANCE(598); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(611); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(611); END_STATE(); case 612: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(358); + if (lookahead == '_') ADVANCE(363); if (lookahead == 'n') ADVANCE(598); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(612); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(612); END_STATE(); case 613: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(359); + if (lookahead == '_') ADVANCE(357); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); END_STATE(); case 614: ACCEPT_TOKEN(sym_number); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(353); - if (lookahead == '_') ADVANCE(357); + if (lookahead == '_') ADVANCE(359); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); END_STATE(); case 615: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || lookahead == 'e') ADVANCE(353); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(614); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(613); END_STATE(); case 616: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '$') ADVANCE(937); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(787); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'g') ADVANCE(793); - if (lookahead == 'i') ADVANCE(802); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(652); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(726); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(674); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(616); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_identifier_character_set_4(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '$', 937, + '0', 600, + '\\', 330, + 'a', 696, + 'b', 845, + 'c', 651, + 'd', 723, + 'e', 787, + 'f', 771, + 'g', 793, + 'i', 802, + 'l', 724, + 'm', 839, + 'n', 652, + 'o', 701, + 'p', 873, + 'r', 726, + 's', 665, + 't', 674, + 'u', 824, + 'v', 678, + 'w', 769, + 0x2028, 616, + 0x2029, 616, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 617: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(812); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(617); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 696, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 821, + 'f', 870, + 'i', 812, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 617, + 0x2029, 617, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 618: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(812); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(618); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 696, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 788, + 'f', 870, + 'i', 812, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 618, + 0x2029, 618, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 619: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(813); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(652); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(619); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 696, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 813, + 'l', 724, + 'm', 839, + 'n', 652, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'u', 824, + 'v', 840, + 0x2028, 619, + 0x2029, 619, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 620: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(812); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 696, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 821, + 'f', 870, + 'i', 812, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 620, + 0x2029, 620, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 621: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(696); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(812); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(621); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 696, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 788, + 'f', 870, + 'i', 812, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 621, + 0x2029, 621, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 622: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(622); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 0x2028, 622, + 0x2029, 622, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 623: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(816); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(813); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 816, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 813, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 840, + 0x2028, 623, + 0x2029, 623, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 624: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(816); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(803); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(624); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 816, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 803, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 840, + 0x2028, 624, + 0x2029, 624, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 625: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(697); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'o') ADVANCE(702); - if (lookahead == 'r') ADVANCE(750); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(625); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 697, + 'b', 845, + 'c', 844, + 'i', 828, + 'n', 725, + 'o', 702, + 'r', 750, + 's', 665, + 'u', 824, + 'v', 840, + 0x2028, 625, + 0x2029, 625, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 626: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(697); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'o') ADVANCE(703); - if (lookahead == 'r') ADVANCE(750); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(626); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 697, + 'b', 845, + 'c', 844, + 'i', 828, + 'n', 725, + 'o', 703, + 'r', 750, + 's', 665, + 'u', 824, + 'v', 840, + 0x2028, 626, + 0x2029, 626, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 627: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(697); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'o') ADVANCE(703); - if (lookahead == 'r') ADVANCE(750); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(627); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 697, + 'b', 845, + 'c', 844, + 'i', 808, + 'n', 725, + 'o', 703, + 'r', 750, + 's', 665, + 'u', 824, + 'v', 840, + 0x2028, 627, + 0x2029, 627, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 628: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(700); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'o') ADVANCE(703); - if (lookahead == 'r') ADVANCE(750); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(628); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 700, + 'b', 845, + 'c', 844, + 'i', 815, + 'n', 725, + 'o', 703, + 'r', 750, + 's', 907, + 'u', 824, + 'v', 840, + 0x2028, 628, + 0x2029, 628, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 629: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(700); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(844); - if (lookahead == 'n') ADVANCE(725); - if (lookahead == 'o') ADVANCE(703); - if (lookahead == 'r') ADVANCE(750); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(629); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 700, + 'b', 845, + 'c', 844, + 'n', 725, + 'o', 703, + 'r', 750, + 's', 907, + 'u', 824, + 'v', 840, + 0x2028, 629, + 0x2029, 629, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 630: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(630); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 651, + 'd', 723, + 'e', 821, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 630, + 0x2029, 630, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 631: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(631); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 651, + 'd', 723, + 'e', 788, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 631, + 0x2029, 631, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 632: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(632); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 821, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 632, + 0x2029, 632, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 633: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(633); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 821, + 'f', 870, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 633, + 0x2029, 633, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 634: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(634); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 788, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 634, + 0x2029, 634, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 635: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(692); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(635); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 692, + 'd', 723, + 'e', 788, + 'f', 870, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 635, + 0x2029, 635, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 636: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(652); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(636); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 652, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'u', 824, + 'v', 840, + 0x2028, 636, + 0x2029, 636, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 637: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(637); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 821, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 637, + 0x2029, 637, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 638: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(638); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 821, + 'f', 870, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 638, + 0x2029, 638, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 639: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(639); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 821, + 'f', 870, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 0x2028, 639, + 0x2029, 639, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 640: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(640); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 788, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 640, + 0x2029, 640, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 641: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(641); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 788, + 'f', 870, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 641, + 0x2029, 641, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 642: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(690); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(642); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 690, + 'd', 744, + 'e', 821, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 642, + 0x2029, 642, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 643: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(698); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(690); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'i') ADVANCE(814); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 'w') ADVANCE(769); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(643); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 698, + 'b', 845, + 'c', 690, + 'd', 744, + 'e', 788, + 'f', 771, + 'i', 814, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 'w', 769, + 0x2028, 643, + 0x2029, 643, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 644: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(644); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 817, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 828, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 0x2028, 644, + 0x2029, 644, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 645: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(645); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 817, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'i', 828, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 0x2028, 645, + 0x2029, 645, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 646: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(818); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(790); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(678); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(646); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 818, + 'b', 845, + 'c', 790, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 678, + 0x2028, 646, + 0x2029, 646, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 647: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(818); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 'w') ADVANCE(772); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(647); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 818, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 840, + 'w', 772, + 0x2028, 647, + 0x2029, 647, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 648: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(818); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(648); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 818, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 840, + 0x2028, 648, + 0x2029, 648, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 649: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(818); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(791); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(649); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 818, + 'b', 845, + 'c', 791, + 'd', 744, + 'e', 928, + 'f', 870, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 840, + 0x2028, 649, + 0x2029, 649, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 650: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(600); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(699); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(650); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '0', 600, + '\\', 330, + 'a', 699, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 0x2028, 650, + 0x2029, 650, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 651: ACCEPT_TOKEN(sym_identifier); @@ -20104,7 +19845,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(890); if (lookahead == 'l') ADVANCE(675); if (lookahead == 'o') ADVANCE(838); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 652: ACCEPT_TOKEN(sym_identifier); @@ -20112,7 +19853,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(810); if (lookahead == 'e') ADVANCE(924); if (lookahead == 'u') ADVANCE(806); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 653: ACCEPT_TOKEN(sym_identifier); @@ -20120,233 +19861,253 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(810); if (lookahead == 'e') ADVANCE(926); if (lookahead == 'u') ADVANCE(806); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 654: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(810); if (lookahead == 'u') ADVANCE(806); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 655: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(691); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(655); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 819, + 'b', 845, + 'c', 691, + 'd', 723, + 'e', 821, + 'f', 771, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + 0x2028, 655, + 0x2029, 655, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 656: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'c') ADVANCE(691); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(656); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 819, + 'b', 845, + 'c', 691, + 'd', 723, + 'e', 788, + 'f', 771, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + 0x2028, 656, + 0x2029, 656, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 657: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(657); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 723, + 'e', 929, + 'f', 871, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 0x2028, 657, + 0x2029, 657, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 658: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(658); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 723, + 'e', 821, + 'f', 771, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + 0x2028, 658, + 0x2029, 658, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 659: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(659); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 723, + 'e', 821, + 'f', 870, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + 0x2028, 659, + 0x2029, 659, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 660: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(771); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(660); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 723, + 'e', 788, + 'f', 771, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + 0x2028, 660, + 0x2029, 660, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 661: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 723, + 'e', 788, + 'f', 870, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 'v', 679, + 0x2028, 661, + 0x2029, 661, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 662: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'i') ADVANCE(815); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'i', 815, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 0x2028, 662, + 0x2029, 662, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 663: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 0x2028, 663, + 0x2029, 663, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 664: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(819); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(871); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(664); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 819, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 871, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 907, + 't', 935, + 0x2028, 664, + 0x2029, 664, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 665: ACCEPT_TOKEN(sym_identifier); @@ -20354,185 +20115,193 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(909); if (lookahead == 't') ADVANCE(872); if (lookahead == 'y') ADVANCE(807); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 666: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(909); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 667: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(722); if (lookahead == 'q') ADVANCE(919); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 668: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(722); if (lookahead == 'q') ADVANCE(922); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 669: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(722); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 670: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(821); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(670); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 817, + 'b', 845, + 'd', 723, + 'e', 821, + 'f', 870, + 'i', 828, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 679, + 0x2028, 670, + 0x2029, 670, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 671: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(723); - if (lookahead == 'e') ADVANCE(788); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(654); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 'v') ADVANCE(679); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 817, + 'b', 845, + 'd', 723, + 'e', 788, + 'f', 870, + 'i', 828, + 'l', 724, + 'm', 839, + 'n', 654, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 'v', 679, + 0x2028, 671, + 0x2029, 671, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 672: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(828); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 817, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 828, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 0x2028, 672, + 0x2029, 672, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 673: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(817); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'd') ADVANCE(744); - if (lookahead == 'e') ADVANCE(929); - if (lookahead == 'f') ADVANCE(870); - if (lookahead == 'i') ADVANCE(808); - if (lookahead == 'l') ADVANCE(724); - if (lookahead == 'm') ADVANCE(839); - if (lookahead == 'n') ADVANCE(653); - if (lookahead == 'o') ADVANCE(701); - if (lookahead == 'p') ADVANCE(873); - if (lookahead == 'r') ADVANCE(759); - if (lookahead == 's') ADVANCE(665); - if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(673); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 817, + 'b', 845, + 'd', 744, + 'e', 929, + 'f', 870, + 'i', 808, + 'l', 724, + 'm', 839, + 'n', 653, + 'o', 701, + 'p', 873, + 'r', 759, + 's', 665, + 't', 935, + 0x2028, 673, + 0x2029, 673, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 674: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(865); if (lookahead == 'y') ADVANCE(858); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 675: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(892); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 676: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(776); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 677: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(795); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 678: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(866); if (lookahead == 'o') ADVANCE(773); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 679: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(866); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 680: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(918); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 681: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(785); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 682: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(878); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 683: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(834); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 684: ACCEPT_TOKEN(sym_identifier); @@ -20541,10 +20310,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(828); if (lookahead == 'o') ADVANCE(760); if (lookahead == 's') ADVANCE(666); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(684); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(684); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 685: ACCEPT_TOKEN(sym_identifier); @@ -20552,10 +20321,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(887); if (lookahead == 'i') ADVANCE(828); if (lookahead == 's') ADVANCE(666); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(685); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(685); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 686: ACCEPT_TOKEN(sym_identifier); @@ -20563,41 +20332,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(887); if (lookahead == 'i') ADVANCE(808); if (lookahead == 's') ADVANCE(666); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(686); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(686); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 687: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(887); if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(687); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(687); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 688: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(825); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 689: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(330); - if (lookahead == 'a') ADVANCE(820); - if (lookahead == 'b') ADVANCE(845); - if (lookahead == 'n') ADVANCE(737); - if (lookahead == 'o') ADVANCE(703); - if (lookahead == 's') ADVANCE(907); - if (lookahead == 'u') ADVANCE(824); - if (lookahead == 'v') ADVANCE(840); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(689); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + ADVANCE_MAP( + '\\', 330, + 'a', 820, + 'b', 845, + 'n', 737, + 'o', 703, + 's', 907, + 'u', 824, + 'v', 840, + 0x2028, 689, + 0x2029, 689, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 690: ACCEPT_TOKEN(sym_identifier); @@ -20605,13 +20376,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(896); if (lookahead == 'l') ADVANCE(675); if (lookahead == 'o') ADVANCE(838); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 691: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(896); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 692: ACCEPT_TOKEN(sym_identifier); @@ -20619,25 +20390,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(891); if (lookahead == 'l') ADVANCE(675); if (lookahead == 'o') ADVANCE(838); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 693: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(713); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 694: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(715); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 695: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'a') ADVANCE(716); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 696: ACCEPT_TOKEN(sym_identifier); @@ -20646,7 +20417,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(931); if (lookahead == 's') ADVANCE(398); if (lookahead == 'w') ADVANCE(676); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 697: ACCEPT_TOKEN(sym_identifier); @@ -20654,7 +20425,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(893); if (lookahead == 'n') ADVANCE(931); if (lookahead == 's') ADVANCE(399); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 698: ACCEPT_TOKEN(sym_identifier); @@ -20663,7 +20434,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(931); if (lookahead == 's') ADVANCE(936); if (lookahead == 'w') ADVANCE(676); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 699: ACCEPT_TOKEN(sym_identifier); @@ -20671,14 +20442,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(893); if (lookahead == 'n') ADVANCE(931); if (lookahead == 's') ADVANCE(936); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 700: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'b') ADVANCE(893); if (lookahead == 'n') ADVANCE(931); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 701: ACCEPT_TOKEN(sym_identifier); @@ -20686,444 +20457,444 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(784); if (lookahead == 'f') ADVANCE(435); if (lookahead == 'n') ADVANCE(976); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 702: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'b') ADVANCE(784); if (lookahead == 'f') ADVANCE(435); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 703: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'b') ADVANCE(784); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 704: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'b') ADVANCE(681); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 705: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'b') ADVANCE(849); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 706: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'b') ADVANCE(749); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 707: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(466); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 708: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(768); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 709: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(794); if (lookahead == 'f') ADVANCE(680); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 710: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(794); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 711: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(903); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 712: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(844); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(712); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(712); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 713: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(906); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 714: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(751); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 715: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(735); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 716: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(736); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 717: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'c') ADVANCE(915); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 718: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'd') ADVANCE(543); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 719: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'd') ADVANCE(978); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 720: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'd') ADVANCE(921); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 721: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'd') ADVANCE(884); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 722: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'd') ADVANCE(850); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 723: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(709); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 724: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(897); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 725: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(924); if (lookahead == 'u') ADVANCE(806); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 726: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(667); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 727: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(442); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 728: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(423); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 729: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(392); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 730: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(438); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 731: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(960); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 732: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(1004); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 733: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(958); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 734: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(985); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 735: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(995); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 736: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(403); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 737: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(925); if (lookahead == 'u') ADVANCE(806); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 738: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(986); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 739: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(930); if (lookahead == 'i') ADVANCE(809); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(739); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(739); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 740: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(930); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(740); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(740); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 741: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(711); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 742: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(889); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 743: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(719); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 744: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(710); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 745: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(867); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 746: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(833); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 747: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(868); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 748: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(885); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 749: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(869); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 750: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(669); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 751: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(846); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 752: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(904); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 753: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(837); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 754: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(822); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(754); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(754); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 755: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(811); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 756: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(864); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 757: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(688); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 758: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(877); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 759: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'e') ADVANCE(668); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 760: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'f') ADVANCE(435); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 761: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'f') ADVANCE(539); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 762: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'f') ADVANCE(778); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 763: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'f') ADVANCE(694); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 764: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'f') ADVANCE(871); if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(764); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(764); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 765: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'g') ADVANCE(968); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 766: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'g') ADVANCE(752); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 767: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'h') ADVANCE(413); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 768: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'h') ADVANCE(444); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 769: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'h') ADVANCE(779); if (lookahead == 'i') ADVANCE(898); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 770: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(863); if (lookahead == 'k') ADVANCE(836); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 771: ACCEPT_TOKEN(sym_identifier); @@ -21131,100 +20902,100 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(832); if (lookahead == 'r') ADVANCE(847); if (lookahead == 'u') ADVANCE(829); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 772: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(898); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 773: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(718); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 774: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(815); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(774); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(774); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 775: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(888); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 776: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(899); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 777: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(830); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 778: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(748); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 779: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(800); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 780: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(851); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 781: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(879); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 782: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(880); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 783: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'i') ADVANCE(882); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 784: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'j') ADVANCE(741); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 785: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(993); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 786: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(970); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 787: ACCEPT_TOKEN(sym_identifier); @@ -21232,7 +21003,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(894); if (lookahead == 'n') ADVANCE(917); if (lookahead == 'x') ADVANCE(856); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 788: ACCEPT_TOKEN(sym_identifier); @@ -21240,87 +21011,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(894); if (lookahead == 'n') ADVANCE(917); if (lookahead == 'x') ADVANCE(857); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 789: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(932); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 790: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(675); if (lookahead == 'o') ADVANCE(838); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 791: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(675); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 792: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(934); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 793: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(841); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 794: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(682); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 795: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(789); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 796: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(757); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 797: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(755); if (lookahead == 'o') ADVANCE(876); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 798: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(755); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 799: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(905); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 800: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(730); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 801: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'l') ADVANCE(731); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 802: ACCEPT_TOKEN(sym_identifier); @@ -21328,90 +21099,90 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'm') ADVANCE(855); if (lookahead == 'n') ADVANCE(429); if (lookahead == 's') ADVANCE(1002); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 803: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(855); if (lookahead == 'n') ADVANCE(430); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 804: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(997); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 805: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(411); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 806: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(706); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 807: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(705); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 808: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(861); if (lookahead == 'n') ADVANCE(430); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 809: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(861); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 810: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(742); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 811: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(753); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 812: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(860); if (lookahead == 'n') ADVANCE(429); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 813: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(860); if (lookahead == 'n') ADVANCE(430); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 814: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(860); if (lookahead == 'n') ADVANCE(913); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 815: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'm') ADVANCE(860); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 816: ACCEPT_TOKEN(sym_identifier); @@ -21419,14 +21190,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(931); if (lookahead == 's') ADVANCE(398); if (lookahead == 'w') ADVANCE(676); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 817: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(931); if (lookahead == 's') ADVANCE(398); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 818: ACCEPT_TOKEN(sym_identifier); @@ -21434,802 +21205,802 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(931); if (lookahead == 's') ADVANCE(936); if (lookahead == 'w') ADVANCE(676); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 819: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(931); if (lookahead == 's') ADVANCE(936); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 820: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(931); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 821: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(917); if (lookahead == 'x') ADVANCE(857); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 822: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(917); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 823: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(976); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 824: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(770); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 825: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(966); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 826: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(1006); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 827: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(468); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 828: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(430); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 829: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(717); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 830: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(765); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 831: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(707); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 832: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(677); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 833: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(721); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 834: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(714); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 835: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(792); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 836: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(842); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 837: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(916); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 838: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'n') ADVANCE(895); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 839: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(720); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 840: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(773); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 841: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(704); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 842: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(927); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 843: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(796); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 844: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(838); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 845: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(843); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 846: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(761); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 847: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(805); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 848: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(875); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 849: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(786); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 850: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(835); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 851: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(827); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 852: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(823); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(852); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(852); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 853: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(859); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 854: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'o') ADVANCE(876); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 855: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'p') ADVANCE(797); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 856: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'p') ADVANCE(848); if (lookahead == 't') ADVANCE(746); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 857: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'p') ADVANCE(848); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 858: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'p') ADVANCE(729); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 859: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'p') ADVANCE(758); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 860: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'p') ADVANCE(854); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 861: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'p') ADVANCE(798); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 862: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'p') ADVANCE(695); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 863: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'q') ADVANCE(920); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 864: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'q') ADVANCE(923); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 865: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(766); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 866: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(415); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 867: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(763); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 868: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(1008); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 869: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(964); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 870: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(847); if (lookahead == 'u') ADVANCE(829); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 871: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(847); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 872: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(777); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 873: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(853); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 874: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(693); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 875: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(901); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 876: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(902); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 877: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(908); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 878: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(733); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 879: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(734); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 880: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(743); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 881: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(756); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 882: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'r') ADVANCE(738); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 883: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(464); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 884: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(988); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 885: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(982); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 886: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(990); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 887: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(399); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 888: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(762); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 889: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(862); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 890: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(727); if (lookahead == 't') ADVANCE(708); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 891: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(727); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 892: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(883); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 893: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(910); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 894: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(728); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 895: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 's') ADVANCE(900); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 896: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(708); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 897: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(417); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 898: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(767); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 899: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(427); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 900: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(419); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 901: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(385); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 902: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(409); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 903: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(972); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 904: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(949); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 905: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(390); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 906: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(980); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 907: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(872); if (lookahead == 'y') ADVANCE(807); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 908: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(933); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 909: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(775); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 910: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(874); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 911: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(935); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(911); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 912: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(746); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 913: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(745); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 914: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(683); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 915: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(780); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 916: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 't') ADVANCE(886); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 917: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'u') ADVANCE(804); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 918: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'u') ADVANCE(799); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 919: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'u') ADVANCE(781); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 920: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'u') ADVANCE(732); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 921: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'u') ADVANCE(801); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 922: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'u') ADVANCE(782); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 923: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'u') ADVANCE(783); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 924: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'v') ADVANCE(747); if (lookahead == 'w') ADVANCE(472); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 925: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'v') ADVANCE(747); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 926: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'w') ADVANCE(472); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 927: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'w') ADVANCE(826); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 928: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'x') ADVANCE(856); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 929: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'x') ADVANCE(857); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 930: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'x') ADVANCE(912); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 931: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'y') ADVANCE(962); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 932: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'y') ADVANCE(446); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 933: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'y') ADVANCE(974); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 934: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'y') ADVANCE(952); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 935: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'y') ADVANCE(858); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 936: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'y') ADVANCE(831); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 937: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); if (lookahead == '{') ADVANCE(566); - if (!sym_identifier_character_set_5(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 938: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); - if (lookahead == '0' || - lookahead == '1') ADVANCE(603); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == '+' || + lookahead == '-') ADVANCE(359); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(607); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 939: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(939); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(945); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == '0' || + lookahead == '1') ADVANCE(604); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 940: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(604); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(940); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(946); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 941: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(602); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(605); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 942: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(606); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(601); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 943: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(607); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(603); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 944: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(605); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(607); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 945: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(606); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 946: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+' || - lookahead == '-') ADVANCE(359); if (lookahead == '\\') ADVANCE(330); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(607); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 947: ACCEPT_TOKEN(sym_private_property_identifier); if (lookahead == '\\') ADVANCE(328); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(947); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(947); END_STATE(); case 948: ACCEPT_TOKEN(anon_sym_target); @@ -22237,7 +22008,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 949: ACCEPT_TOKEN(anon_sym_target); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 950: ACCEPT_TOKEN(anon_sym_AT); @@ -22248,7 +22019,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 952: ACCEPT_TOKEN(anon_sym_readonly); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 953: ACCEPT_TOKEN(anon_sym_QMARK); @@ -22273,7 +22044,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 958: ACCEPT_TOKEN(anon_sym_declare); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 959: ACCEPT_TOKEN(anon_sym_module); @@ -22281,7 +22052,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 960: ACCEPT_TOKEN(anon_sym_module); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 961: ACCEPT_TOKEN(anon_sym_any); @@ -22289,7 +22060,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 962: ACCEPT_TOKEN(anon_sym_any); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 963: ACCEPT_TOKEN(anon_sym_number); @@ -22297,7 +22068,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 964: ACCEPT_TOKEN(anon_sym_number); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 965: ACCEPT_TOKEN(anon_sym_boolean); @@ -22305,7 +22076,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 966: ACCEPT_TOKEN(anon_sym_boolean); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 967: ACCEPT_TOKEN(anon_sym_string); @@ -22313,7 +22084,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 968: ACCEPT_TOKEN(anon_sym_string); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 969: ACCEPT_TOKEN(anon_sym_symbol); @@ -22321,7 +22092,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 970: ACCEPT_TOKEN(anon_sym_symbol); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 971: ACCEPT_TOKEN(anon_sym_object); @@ -22329,7 +22100,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 972: ACCEPT_TOKEN(anon_sym_object); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 973: ACCEPT_TOKEN(anon_sym_property); @@ -22337,7 +22108,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 974: ACCEPT_TOKEN(anon_sym_property); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 975: ACCEPT_TOKEN(anon_sym_on); @@ -22345,7 +22116,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 976: ACCEPT_TOKEN(anon_sym_on); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 977: ACCEPT_TOKEN(anon_sym_required); @@ -22353,7 +22124,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 978: ACCEPT_TOKEN(anon_sym_required); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 979: ACCEPT_TOKEN(anon_sym_abstract); @@ -22361,7 +22132,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 980: ACCEPT_TOKEN(anon_sym_abstract); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 981: ACCEPT_TOKEN(anon_sym_satisfies); @@ -22369,7 +22140,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 982: ACCEPT_TOKEN(anon_sym_satisfies); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 983: ACCEPT_TOKEN(anon_sym_satisfies); @@ -22382,12 +22153,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_require); if (lookahead == '\\') ADVANCE(330); if (lookahead == 'd') ADVANCE(978); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 986: ACCEPT_TOKEN(anon_sym_require); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 987: ACCEPT_TOKEN(anon_sym_extends); @@ -22395,7 +22166,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 988: ACCEPT_TOKEN(anon_sym_extends); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 989: ACCEPT_TOKEN(anon_sym_implements); @@ -22403,7 +22174,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 990: ACCEPT_TOKEN(anon_sym_implements); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 991: ACCEPT_TOKEN(anon_sym_implements); @@ -22415,7 +22186,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 993: ACCEPT_TOKEN(anon_sym_global); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 994: ACCEPT_TOKEN(anon_sym_interface); @@ -22423,7 +22194,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 995: ACCEPT_TOKEN(anon_sym_interface); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 996: ACCEPT_TOKEN(anon_sym_enum); @@ -22431,7 +22202,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 997: ACCEPT_TOKEN(anon_sym_enum); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 998: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); @@ -22448,7 +22219,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1002: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 1003: ACCEPT_TOKEN(anon_sym_unique); @@ -22456,7 +22227,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1004: ACCEPT_TOKEN(anon_sym_unique); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 1005: ACCEPT_TOKEN(anon_sym_unknown); @@ -22464,7 +22235,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1006: ACCEPT_TOKEN(anon_sym_unknown); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 1007: ACCEPT_TOKEN(anon_sym_never); @@ -22472,7 +22243,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1008: ACCEPT_TOKEN(anon_sym_never); if (lookahead == '\\') ADVANCE(330); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(945); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(946); END_STATE(); case 1009: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); @@ -22494,35 +22265,26 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (lookahead == 'a') ADVANCE(1); - if (lookahead == 'b') ADVANCE(2); - if (lookahead == 'c') ADVANCE(3); - if (lookahead == 'd') ADVANCE(4); - if (lookahead == 'f') ADVANCE(5); - if (lookahead == 'g') ADVANCE(6); - if (lookahead == 'i') ADVANCE(7); - if (lookahead == 'k') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'n') ADVANCE(10); - if (lookahead == 'o') ADVANCE(11); - if (lookahead == 'p') ADVANCE(12); - if (lookahead == 'r') ADVANCE(13); - if (lookahead == 's') ADVANCE(14); - if (lookahead == 't') ADVANCE(15); - if (lookahead == 'u') ADVANCE(16); - if (lookahead == 'y') ADVANCE(17); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 160 || - lookahead == 5760 || - (8192 <= lookahead && lookahead <= 8203) || - lookahead == 8232 || - lookahead == 8233 || - lookahead == 8239 || - lookahead == 8287 || - lookahead == 8288 || - lookahead == 12288 || - lookahead == 65279) SKIP(0) + ADVANCE_MAP( + 'a', 1, + 'b', 2, + 'c', 3, + 'd', 4, + 'f', 5, + 'g', 6, + 'i', 7, + 'k', 8, + 'l', 9, + 'n', 10, + 'o', 11, + 'p', 12, + 'r', 13, + 's', 14, + 't', 15, + 'u', 16, + 'y', 17, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(0); END_STATE(); case 1: if (lookahead == 's') ADVANCE(18); @@ -23199,16 +22961,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [163] = {.lex_state = 34, .external_lex_state = 2}, [164] = {.lex_state = 34, .external_lex_state = 2}, [165] = {.lex_state = 34, .external_lex_state = 2}, - [166] = {.lex_state = 34, .external_lex_state = 2}, - [167] = {.lex_state = 34, .external_lex_state = 2}, + [166] = {.lex_state = 3, .external_lex_state = 4}, + [167] = {.lex_state = 3, .external_lex_state = 4}, [168] = {.lex_state = 3, .external_lex_state = 4}, [169] = {.lex_state = 34, .external_lex_state = 2}, [170] = {.lex_state = 34, .external_lex_state = 2}, - [171] = {.lex_state = 3, .external_lex_state = 4}, - [172] = {.lex_state = 3, .external_lex_state = 4}, + [171] = {.lex_state = 34, .external_lex_state = 2}, + [172] = {.lex_state = 34, .external_lex_state = 2}, [173] = {.lex_state = 34, .external_lex_state = 2}, - [174] = {.lex_state = 3, .external_lex_state = 4}, - [175] = {.lex_state = 34, .external_lex_state = 2}, + [174] = {.lex_state = 34, .external_lex_state = 2}, + [175] = {.lex_state = 3, .external_lex_state = 4}, [176] = {.lex_state = 34, .external_lex_state = 2}, [177] = {.lex_state = 3, .external_lex_state = 3}, [178] = {.lex_state = 3, .external_lex_state = 3}, @@ -23223,45 +22985,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [187] = {.lex_state = 3, .external_lex_state = 3}, [188] = {.lex_state = 3, .external_lex_state = 3}, [189] = {.lex_state = 3, .external_lex_state = 3}, - [190] = {.lex_state = 3, .external_lex_state = 3}, + [190] = {.lex_state = 34, .external_lex_state = 2}, [191] = {.lex_state = 3, .external_lex_state = 3}, - [192] = {.lex_state = 34, .external_lex_state = 2}, + [192] = {.lex_state = 3, .external_lex_state = 3}, [193] = {.lex_state = 34, .external_lex_state = 2}, [194] = {.lex_state = 34, .external_lex_state = 2}, [195] = {.lex_state = 3, .external_lex_state = 4}, - [196] = {.lex_state = 3, .external_lex_state = 4}, - [197] = {.lex_state = 3, .external_lex_state = 4}, - [198] = {.lex_state = 3, .external_lex_state = 4}, + [196] = {.lex_state = 34, .external_lex_state = 2}, + [197] = {.lex_state = 34, .external_lex_state = 2}, + [198] = {.lex_state = 34, .external_lex_state = 2}, [199] = {.lex_state = 3, .external_lex_state = 4}, - [200] = {.lex_state = 34, .external_lex_state = 2}, + [200] = {.lex_state = 3, .external_lex_state = 4}, [201] = {.lex_state = 3, .external_lex_state = 4}, - [202] = {.lex_state = 3, .external_lex_state = 3}, + [202] = {.lex_state = 3, .external_lex_state = 4}, [203] = {.lex_state = 3, .external_lex_state = 4}, [204] = {.lex_state = 3, .external_lex_state = 4}, - [205] = {.lex_state = 34, .external_lex_state = 2}, - [206] = {.lex_state = 3, .external_lex_state = 4}, + [205] = {.lex_state = 3, .external_lex_state = 4}, + [206] = {.lex_state = 34, .external_lex_state = 2}, [207] = {.lex_state = 3, .external_lex_state = 4}, - [208] = {.lex_state = 34, .external_lex_state = 2}, - [209] = {.lex_state = 3, .external_lex_state = 4}, - [210] = {.lex_state = 34, .external_lex_state = 2}, + [208] = {.lex_state = 3, .external_lex_state = 4}, + [209] = {.lex_state = 3, .external_lex_state = 3}, + [210] = {.lex_state = 3, .external_lex_state = 4}, [211] = {.lex_state = 34, .external_lex_state = 2}, [212] = {.lex_state = 3, .external_lex_state = 3}, [213] = {.lex_state = 3, .external_lex_state = 4}, - [214] = {.lex_state = 3, .external_lex_state = 4}, + [214] = {.lex_state = 3, .external_lex_state = 3}, [215] = {.lex_state = 3, .external_lex_state = 3}, [216] = {.lex_state = 3, .external_lex_state = 4}, [217] = {.lex_state = 3, .external_lex_state = 4}, - [218] = {.lex_state = 3, .external_lex_state = 3}, - [219] = {.lex_state = 3, .external_lex_state = 4}, + [218] = {.lex_state = 3, .external_lex_state = 4}, + [219] = {.lex_state = 7, .external_lex_state = 3}, [220] = {.lex_state = 3, .external_lex_state = 4}, - [221] = {.lex_state = 3, .external_lex_state = 3}, - [222] = {.lex_state = 3, .external_lex_state = 4}, + [221] = {.lex_state = 7, .external_lex_state = 3}, + [222] = {.lex_state = 3, .external_lex_state = 3}, [223] = {.lex_state = 3, .external_lex_state = 3}, [224] = {.lex_state = 7, .external_lex_state = 3}, - [225] = {.lex_state = 7, .external_lex_state = 3}, + [225] = {.lex_state = 3, .external_lex_state = 3}, [226] = {.lex_state = 3, .external_lex_state = 3}, - [227] = {.lex_state = 3, .external_lex_state = 3}, - [228] = {.lex_state = 7, .external_lex_state = 3}, + [227] = {.lex_state = 3, .external_lex_state = 4}, + [228] = {.lex_state = 3, .external_lex_state = 4}, [229] = {.lex_state = 3, .external_lex_state = 3}, [230] = {.lex_state = 3, .external_lex_state = 3}, [231] = {.lex_state = 3, .external_lex_state = 3}, @@ -23274,12 +23036,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [238] = {.lex_state = 3, .external_lex_state = 3}, [239] = {.lex_state = 3, .external_lex_state = 3}, [240] = {.lex_state = 3, .external_lex_state = 3}, - [241] = {.lex_state = 3, .external_lex_state = 3}, + [241] = {.lex_state = 34, .external_lex_state = 2}, [242] = {.lex_state = 3, .external_lex_state = 3}, [243] = {.lex_state = 3, .external_lex_state = 3}, [244] = {.lex_state = 3, .external_lex_state = 3}, [245] = {.lex_state = 3, .external_lex_state = 3}, - [246] = {.lex_state = 34, .external_lex_state = 2}, + [246] = {.lex_state = 3, .external_lex_state = 3}, [247] = {.lex_state = 3, .external_lex_state = 3}, [248] = {.lex_state = 3, .external_lex_state = 3}, [249] = {.lex_state = 3, .external_lex_state = 3}, @@ -23301,8 +23063,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [265] = {.lex_state = 8, .external_lex_state = 3}, [266] = {.lex_state = 8, .external_lex_state = 4}, [267] = {.lex_state = 8, .external_lex_state = 4}, - [268] = {.lex_state = 8, .external_lex_state = 4}, - [269] = {.lex_state = 13, .external_lex_state = 3}, + [268] = {.lex_state = 13, .external_lex_state = 3}, + [269] = {.lex_state = 8, .external_lex_state = 4}, [270] = {.lex_state = 8, .external_lex_state = 3}, [271] = {.lex_state = 8, .external_lex_state = 3}, [272] = {.lex_state = 8, .external_lex_state = 3}, @@ -23350,54 +23112,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [314] = {.lex_state = 36, .external_lex_state = 2}, [315] = {.lex_state = 36, .external_lex_state = 2}, [316] = {.lex_state = 36, .external_lex_state = 2}, - [317] = {.lex_state = 35, .external_lex_state = 2}, - [318] = {.lex_state = 36, .external_lex_state = 2}, + [317] = {.lex_state = 36, .external_lex_state = 2}, + [318] = {.lex_state = 35, .external_lex_state = 2}, [319] = {.lex_state = 36, .external_lex_state = 2}, [320] = {.lex_state = 36, .external_lex_state = 2}, [321] = {.lex_state = 36, .external_lex_state = 2}, [322] = {.lex_state = 36, .external_lex_state = 2}, [323] = {.lex_state = 51, .external_lex_state = 2}, - [324] = {.lex_state = 36, .external_lex_state = 2}, + [324] = {.lex_state = 51, .external_lex_state = 2}, [325] = {.lex_state = 51, .external_lex_state = 2}, [326] = {.lex_state = 51, .external_lex_state = 2}, [327] = {.lex_state = 51, .external_lex_state = 2}, - [328] = {.lex_state = 51, .external_lex_state = 2}, + [328] = {.lex_state = 36, .external_lex_state = 2}, [329] = {.lex_state = 35, .external_lex_state = 5}, [330] = {.lex_state = 51, .external_lex_state = 2}, [331] = {.lex_state = 14, .external_lex_state = 3}, [332] = {.lex_state = 51, .external_lex_state = 2}, [333] = {.lex_state = 36, .external_lex_state = 2}, - [334] = {.lex_state = 10, .external_lex_state = 4}, + [334] = {.lex_state = 16, .external_lex_state = 4}, [335] = {.lex_state = 10, .external_lex_state = 4}, - [336] = {.lex_state = 16, .external_lex_state = 4}, - [337] = {.lex_state = 36, .external_lex_state = 2}, + [336] = {.lex_state = 10, .external_lex_state = 4}, + [337] = {.lex_state = 10, .external_lex_state = 4}, [338] = {.lex_state = 10, .external_lex_state = 4}, - [339] = {.lex_state = 10, .external_lex_state = 4}, - [340] = {.lex_state = 14, .external_lex_state = 4}, + [339] = {.lex_state = 36, .external_lex_state = 2}, + [340] = {.lex_state = 35, .external_lex_state = 2}, [341] = {.lex_state = 36, .external_lex_state = 2}, [342] = {.lex_state = 36, .external_lex_state = 2}, [343] = {.lex_state = 36, .external_lex_state = 2}, - [344] = {.lex_state = 35, .external_lex_state = 2}, - [345] = {.lex_state = 36, .external_lex_state = 2}, - [346] = {.lex_state = 10, .external_lex_state = 4}, + [344] = {.lex_state = 36, .external_lex_state = 2}, + [345] = {.lex_state = 14, .external_lex_state = 4}, + [346] = {.lex_state = 9, .external_lex_state = 4}, [347] = {.lex_state = 10, .external_lex_state = 4}, [348] = {.lex_state = 10, .external_lex_state = 4}, [349] = {.lex_state = 10, .external_lex_state = 4}, - [350] = {.lex_state = 10, .external_lex_state = 4}, - [351] = {.lex_state = 10, .external_lex_state = 4}, + [350] = {.lex_state = 36, .external_lex_state = 2}, + [351] = {.lex_state = 14, .external_lex_state = 3}, [352] = {.lex_state = 10, .external_lex_state = 4}, [353] = {.lex_state = 10, .external_lex_state = 4}, [354] = {.lex_state = 10, .external_lex_state = 4}, [355] = {.lex_state = 10, .external_lex_state = 4}, [356] = {.lex_state = 9, .external_lex_state = 4}, [357] = {.lex_state = 10, .external_lex_state = 4}, - [358] = {.lex_state = 14, .external_lex_state = 3}, - [359] = {.lex_state = 10, .external_lex_state = 4}, + [358] = {.lex_state = 9, .external_lex_state = 4}, + [359] = {.lex_state = 9, .external_lex_state = 4}, [360] = {.lex_state = 10, .external_lex_state = 4}, - [361] = {.lex_state = 10, .external_lex_state = 4}, - [362] = {.lex_state = 36, .external_lex_state = 2}, + [361] = {.lex_state = 14, .external_lex_state = 3}, + [362] = {.lex_state = 10, .external_lex_state = 4}, [363] = {.lex_state = 10, .external_lex_state = 4}, - [364] = {.lex_state = 9, .external_lex_state = 4}, + [364] = {.lex_state = 10, .external_lex_state = 4}, [365] = {.lex_state = 10, .external_lex_state = 4}, [366] = {.lex_state = 10, .external_lex_state = 4}, [367] = {.lex_state = 10, .external_lex_state = 4}, @@ -23406,163 +23168,163 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [370] = {.lex_state = 10, .external_lex_state = 4}, [371] = {.lex_state = 10, .external_lex_state = 4}, [372] = {.lex_state = 10, .external_lex_state = 4}, - [373] = {.lex_state = 9, .external_lex_state = 4}, - [374] = {.lex_state = 14, .external_lex_state = 3}, - [375] = {.lex_state = 9, .external_lex_state = 4}, + [373] = {.lex_state = 10, .external_lex_state = 4}, + [374] = {.lex_state = 10, .external_lex_state = 4}, + [375] = {.lex_state = 10, .external_lex_state = 4}, [376] = {.lex_state = 10, .external_lex_state = 4}, [377] = {.lex_state = 10, .external_lex_state = 4}, - [378] = {.lex_state = 35, .external_lex_state = 2}, - [379] = {.lex_state = 36, .external_lex_state = 2}, - [380] = {.lex_state = 17, .external_lex_state = 3}, + [378] = {.lex_state = 9, .external_lex_state = 4}, + [379] = {.lex_state = 12, .external_lex_state = 4}, + [380] = {.lex_state = 9, .external_lex_state = 4}, [381] = {.lex_state = 9, .external_lex_state = 4}, - [382] = {.lex_state = 9, .external_lex_state = 4}, - [383] = {.lex_state = 9, .external_lex_state = 4}, + [382] = {.lex_state = 12, .external_lex_state = 4}, + [383] = {.lex_state = 12, .external_lex_state = 4}, [384] = {.lex_state = 14, .external_lex_state = 3}, - [385] = {.lex_state = 9, .external_lex_state = 4}, - [386] = {.lex_state = 14, .external_lex_state = 4}, - [387] = {.lex_state = 35, .external_lex_state = 2}, + [385] = {.lex_state = 12, .external_lex_state = 4}, + [386] = {.lex_state = 9, .external_lex_state = 4}, + [387] = {.lex_state = 36, .external_lex_state = 2}, [388] = {.lex_state = 9, .external_lex_state = 4}, - [389] = {.lex_state = 9, .external_lex_state = 4}, + [389] = {.lex_state = 14, .external_lex_state = 3}, [390] = {.lex_state = 9, .external_lex_state = 4}, [391] = {.lex_state = 9, .external_lex_state = 4}, - [392] = {.lex_state = 9, .external_lex_state = 4}, + [392] = {.lex_state = 35, .external_lex_state = 2}, [393] = {.lex_state = 9, .external_lex_state = 4}, [394] = {.lex_state = 35, .external_lex_state = 2}, - [395] = {.lex_state = 35, .external_lex_state = 2}, + [395] = {.lex_state = 9, .external_lex_state = 4}, [396] = {.lex_state = 9, .external_lex_state = 4}, [397] = {.lex_state = 36, .external_lex_state = 2}, [398] = {.lex_state = 9, .external_lex_state = 4}, - [399] = {.lex_state = 36, .external_lex_state = 2}, - [400] = {.lex_state = 35, .external_lex_state = 2}, - [401] = {.lex_state = 12, .external_lex_state = 4}, + [399] = {.lex_state = 35, .external_lex_state = 2}, + [400] = {.lex_state = 36, .external_lex_state = 2}, + [401] = {.lex_state = 9, .external_lex_state = 4}, [402] = {.lex_state = 9, .external_lex_state = 4}, [403] = {.lex_state = 9, .external_lex_state = 4}, - [404] = {.lex_state = 35, .external_lex_state = 2}, - [405] = {.lex_state = 9, .external_lex_state = 4}, - [406] = {.lex_state = 14, .external_lex_state = 3}, - [407] = {.lex_state = 9, .external_lex_state = 4}, + [404] = {.lex_state = 36, .external_lex_state = 2}, + [405] = {.lex_state = 35, .external_lex_state = 2}, + [406] = {.lex_state = 36, .external_lex_state = 2}, + [407] = {.lex_state = 36, .external_lex_state = 2}, [408] = {.lex_state = 35, .external_lex_state = 2}, [409] = {.lex_state = 9, .external_lex_state = 4}, [410] = {.lex_state = 9, .external_lex_state = 4}, [411] = {.lex_state = 9, .external_lex_state = 4}, - [412] = {.lex_state = 12, .external_lex_state = 4}, + [412] = {.lex_state = 36, .external_lex_state = 2}, [413] = {.lex_state = 9, .external_lex_state = 4}, - [414] = {.lex_state = 12, .external_lex_state = 4}, + [414] = {.lex_state = 9, .external_lex_state = 4}, [415] = {.lex_state = 9, .external_lex_state = 4}, - [416] = {.lex_state = 12, .external_lex_state = 4}, + [416] = {.lex_state = 9, .external_lex_state = 4}, [417] = {.lex_state = 36, .external_lex_state = 2}, - [418] = {.lex_state = 9, .external_lex_state = 4}, - [419] = {.lex_state = 36, .external_lex_state = 2}, - [420] = {.lex_state = 9, .external_lex_state = 4}, - [421] = {.lex_state = 36, .external_lex_state = 2}, - [422] = {.lex_state = 36, .external_lex_state = 2}, + [418] = {.lex_state = 35, .external_lex_state = 2}, + [419] = {.lex_state = 9, .external_lex_state = 4}, + [420] = {.lex_state = 14, .external_lex_state = 4}, + [421] = {.lex_state = 17, .external_lex_state = 3}, + [422] = {.lex_state = 35, .external_lex_state = 2}, [423] = {.lex_state = 36, .external_lex_state = 2}, [424] = {.lex_state = 9, .external_lex_state = 4}, [425] = {.lex_state = 9, .external_lex_state = 4}, - [426] = {.lex_state = 36, .external_lex_state = 2}, + [426] = {.lex_state = 9, .external_lex_state = 4}, [427] = {.lex_state = 12, .external_lex_state = 4}, - [428] = {.lex_state = 11, .external_lex_state = 4}, - [429] = {.lex_state = 12, .external_lex_state = 4}, - [430] = {.lex_state = 12, .external_lex_state = 4}, + [428] = {.lex_state = 36, .external_lex_state = 2}, + [429] = {.lex_state = 36, .external_lex_state = 2}, + [430] = {.lex_state = 14, .external_lex_state = 3}, [431] = {.lex_state = 36, .external_lex_state = 2}, [432] = {.lex_state = 36, .external_lex_state = 2}, [433] = {.lex_state = 12, .external_lex_state = 4}, [434] = {.lex_state = 36, .external_lex_state = 2}, - [435] = {.lex_state = 36, .external_lex_state = 2}, - [436] = {.lex_state = 12, .external_lex_state = 4}, - [437] = {.lex_state = 3, .external_lex_state = 3}, - [438] = {.lex_state = 3, .external_lex_state = 3}, + [435] = {.lex_state = 12, .external_lex_state = 4}, + [436] = {.lex_state = 36, .external_lex_state = 2}, + [437] = {.lex_state = 12, .external_lex_state = 4}, + [438] = {.lex_state = 36, .external_lex_state = 2}, [439] = {.lex_state = 12, .external_lex_state = 4}, [440] = {.lex_state = 36, .external_lex_state = 2}, - [441] = {.lex_state = 36, .external_lex_state = 2}, - [442] = {.lex_state = 14, .external_lex_state = 3}, - [443] = {.lex_state = 12, .external_lex_state = 4}, - [444] = {.lex_state = 12, .external_lex_state = 4}, - [445] = {.lex_state = 12, .external_lex_state = 4}, - [446] = {.lex_state = 12, .external_lex_state = 4}, - [447] = {.lex_state = 12, .external_lex_state = 4}, - [448] = {.lex_state = 12, .external_lex_state = 4}, - [449] = {.lex_state = 12, .external_lex_state = 4}, - [450] = {.lex_state = 12, .external_lex_state = 4}, - [451] = {.lex_state = 12, .external_lex_state = 4}, - [452] = {.lex_state = 36, .external_lex_state = 2}, - [453] = {.lex_state = 36, .external_lex_state = 2}, + [441] = {.lex_state = 12, .external_lex_state = 4}, + [442] = {.lex_state = 12, .external_lex_state = 4}, + [443] = {.lex_state = 3, .external_lex_state = 3}, + [444] = {.lex_state = 36, .external_lex_state = 2}, + [445] = {.lex_state = 36, .external_lex_state = 2}, + [446] = {.lex_state = 36, .external_lex_state = 2}, + [447] = {.lex_state = 3, .external_lex_state = 3}, + [448] = {.lex_state = 36, .external_lex_state = 2}, + [449] = {.lex_state = 14, .external_lex_state = 3}, + [450] = {.lex_state = 36, .external_lex_state = 2}, + [451] = {.lex_state = 36, .external_lex_state = 2}, + [452] = {.lex_state = 12, .external_lex_state = 4}, + [453] = {.lex_state = 12, .external_lex_state = 4}, [454] = {.lex_state = 12, .external_lex_state = 4}, - [455] = {.lex_state = 12, .external_lex_state = 4}, - [456] = {.lex_state = 12, .external_lex_state = 4}, - [457] = {.lex_state = 3, .external_lex_state = 3}, + [455] = {.lex_state = 36, .external_lex_state = 2}, + [456] = {.lex_state = 36, .external_lex_state = 2}, + [457] = {.lex_state = 36, .external_lex_state = 2}, [458] = {.lex_state = 12, .external_lex_state = 4}, - [459] = {.lex_state = 12, .external_lex_state = 4}, - [460] = {.lex_state = 16, .external_lex_state = 3}, - [461] = {.lex_state = 36, .external_lex_state = 2}, - [462] = {.lex_state = 12, .external_lex_state = 4}, - [463] = {.lex_state = 11, .external_lex_state = 4}, - [464] = {.lex_state = 3, .external_lex_state = 3}, + [459] = {.lex_state = 36, .external_lex_state = 2}, + [460] = {.lex_state = 12, .external_lex_state = 4}, + [461] = {.lex_state = 12, .external_lex_state = 4}, + [462] = {.lex_state = 36, .external_lex_state = 2}, + [463] = {.lex_state = 14, .external_lex_state = 3}, + [464] = {.lex_state = 12, .external_lex_state = 4}, [465] = {.lex_state = 12, .external_lex_state = 4}, - [466] = {.lex_state = 12, .external_lex_state = 4}, - [467] = {.lex_state = 36, .external_lex_state = 2}, - [468] = {.lex_state = 36, .external_lex_state = 2}, - [469] = {.lex_state = 36, .external_lex_state = 2}, - [470] = {.lex_state = 12, .external_lex_state = 4}, - [471] = {.lex_state = 36, .external_lex_state = 2}, - [472] = {.lex_state = 36, .external_lex_state = 2}, - [473] = {.lex_state = 36, .external_lex_state = 2}, - [474] = {.lex_state = 36, .external_lex_state = 2}, - [475] = {.lex_state = 36, .external_lex_state = 2}, + [466] = {.lex_state = 3, .external_lex_state = 3}, + [467] = {.lex_state = 12, .external_lex_state = 4}, + [468] = {.lex_state = 11, .external_lex_state = 4}, + [469] = {.lex_state = 11, .external_lex_state = 4}, + [470] = {.lex_state = 3, .external_lex_state = 3}, + [471] = {.lex_state = 11, .external_lex_state = 4}, + [472] = {.lex_state = 12, .external_lex_state = 4}, + [473] = {.lex_state = 12, .external_lex_state = 4}, + [474] = {.lex_state = 12, .external_lex_state = 4}, + [475] = {.lex_state = 12, .external_lex_state = 4}, [476] = {.lex_state = 36, .external_lex_state = 2}, - [477] = {.lex_state = 36, .external_lex_state = 2}, + [477] = {.lex_state = 12, .external_lex_state = 4}, [478] = {.lex_state = 12, .external_lex_state = 4}, [479] = {.lex_state = 36, .external_lex_state = 2}, - [480] = {.lex_state = 36, .external_lex_state = 2}, + [480] = {.lex_state = 12, .external_lex_state = 4}, [481] = {.lex_state = 36, .external_lex_state = 2}, - [482] = {.lex_state = 11, .external_lex_state = 4}, + [482] = {.lex_state = 36, .external_lex_state = 2}, [483] = {.lex_state = 36, .external_lex_state = 2}, - [484] = {.lex_state = 36, .external_lex_state = 2}, - [485] = {.lex_state = 36, .external_lex_state = 2}, - [486] = {.lex_state = 14, .external_lex_state = 3}, - [487] = {.lex_state = 11, .external_lex_state = 4}, - [488] = {.lex_state = 14, .external_lex_state = 3}, - [489] = {.lex_state = 36, .external_lex_state = 2}, - [490] = {.lex_state = 11, .external_lex_state = 4}, + [484] = {.lex_state = 12, .external_lex_state = 4}, + [485] = {.lex_state = 16, .external_lex_state = 3}, + [486] = {.lex_state = 11, .external_lex_state = 4}, + [487] = {.lex_state = 12, .external_lex_state = 4}, + [488] = {.lex_state = 36, .external_lex_state = 2}, + [489] = {.lex_state = 11, .external_lex_state = 4}, + [490] = {.lex_state = 36, .external_lex_state = 5}, [491] = {.lex_state = 11, .external_lex_state = 4}, [492] = {.lex_state = 11, .external_lex_state = 4}, - [493] = {.lex_state = 36, .external_lex_state = 5}, + [493] = {.lex_state = 11, .external_lex_state = 4}, [494] = {.lex_state = 11, .external_lex_state = 4}, - [495] = {.lex_state = 36, .external_lex_state = 2}, + [495] = {.lex_state = 11, .external_lex_state = 4}, [496] = {.lex_state = 11, .external_lex_state = 4}, - [497] = {.lex_state = 36, .external_lex_state = 5}, - [498] = {.lex_state = 36, .external_lex_state = 2}, + [497] = {.lex_state = 36, .external_lex_state = 2}, + [498] = {.lex_state = 36, .external_lex_state = 5}, [499] = {.lex_state = 11, .external_lex_state = 4}, - [500] = {.lex_state = 36, .external_lex_state = 5}, - [501] = {.lex_state = 14, .external_lex_state = 3}, - [502] = {.lex_state = 36, .external_lex_state = 5}, - [503] = {.lex_state = 36, .external_lex_state = 5}, + [500] = {.lex_state = 11, .external_lex_state = 4}, + [501] = {.lex_state = 11, .external_lex_state = 4}, + [502] = {.lex_state = 11, .external_lex_state = 4}, + [503] = {.lex_state = 36, .external_lex_state = 2}, [504] = {.lex_state = 11, .external_lex_state = 4}, - [505] = {.lex_state = 11, .external_lex_state = 4}, + [505] = {.lex_state = 36, .external_lex_state = 5}, [506] = {.lex_state = 11, .external_lex_state = 4}, [507] = {.lex_state = 11, .external_lex_state = 4}, [508] = {.lex_state = 11, .external_lex_state = 4}, [509] = {.lex_state = 11, .external_lex_state = 4}, - [510] = {.lex_state = 36, .external_lex_state = 2}, - [511] = {.lex_state = 36, .external_lex_state = 5}, - [512] = {.lex_state = 11, .external_lex_state = 4}, + [510] = {.lex_state = 11, .external_lex_state = 4}, + [511] = {.lex_state = 11, .external_lex_state = 4}, + [512] = {.lex_state = 36, .external_lex_state = 5}, [513] = {.lex_state = 11, .external_lex_state = 4}, - [514] = {.lex_state = 11, .external_lex_state = 4}, - [515] = {.lex_state = 11, .external_lex_state = 4}, - [516] = {.lex_state = 11, .external_lex_state = 4}, + [514] = {.lex_state = 14, .external_lex_state = 3}, + [515] = {.lex_state = 36, .external_lex_state = 2}, + [516] = {.lex_state = 36, .external_lex_state = 2}, [517] = {.lex_state = 11, .external_lex_state = 4}, [518] = {.lex_state = 11, .external_lex_state = 4}, [519] = {.lex_state = 11, .external_lex_state = 4}, - [520] = {.lex_state = 36, .external_lex_state = 5}, - [521] = {.lex_state = 11, .external_lex_state = 4}, + [520] = {.lex_state = 11, .external_lex_state = 4}, + [521] = {.lex_state = 36, .external_lex_state = 5}, [522] = {.lex_state = 11, .external_lex_state = 4}, - [523] = {.lex_state = 11, .external_lex_state = 4}, + [523] = {.lex_state = 36, .external_lex_state = 5}, [524] = {.lex_state = 11, .external_lex_state = 4}, - [525] = {.lex_state = 11, .external_lex_state = 4}, + [525] = {.lex_state = 36, .external_lex_state = 5}, [526] = {.lex_state = 36, .external_lex_state = 2}, [527] = {.lex_state = 36, .external_lex_state = 2}, - [528] = {.lex_state = 51, .external_lex_state = 2}, - [529] = {.lex_state = 36, .external_lex_state = 2}, + [528] = {.lex_state = 36, .external_lex_state = 2}, + [529] = {.lex_state = 51, .external_lex_state = 2}, [530] = {.lex_state = 36, .external_lex_state = 2}, [531] = {.lex_state = 36, .external_lex_state = 2}, [532] = {.lex_state = 36, .external_lex_state = 2}, @@ -23963,226 +23725,226 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [927] = {.lex_state = 380, .external_lex_state = 4}, [928] = {.lex_state = 20, .external_lex_state = 3}, [929] = {.lex_state = 380, .external_lex_state = 4}, - [930] = {.lex_state = 20, .external_lex_state = 3}, - [931] = {.lex_state = 380, .external_lex_state = 4}, + [930] = {.lex_state = 380, .external_lex_state = 4}, + [931] = {.lex_state = 20, .external_lex_state = 3}, [932] = {.lex_state = 20, .external_lex_state = 4}, [933] = {.lex_state = 20, .external_lex_state = 4}, [934] = {.lex_state = 20, .external_lex_state = 3}, [935] = {.lex_state = 20, .external_lex_state = 3}, [936] = {.lex_state = 20, .external_lex_state = 4}, [937] = {.lex_state = 20, .external_lex_state = 4}, - [938] = {.lex_state = 20, .external_lex_state = 4}, + [938] = {.lex_state = 20, .external_lex_state = 3}, [939] = {.lex_state = 20, .external_lex_state = 4}, - [940] = {.lex_state = 20, .external_lex_state = 3}, - [941] = {.lex_state = 20, .external_lex_state = 3}, + [940] = {.lex_state = 20, .external_lex_state = 4}, + [941] = {.lex_state = 20, .external_lex_state = 4}, [942] = {.lex_state = 20, .external_lex_state = 4}, [943] = {.lex_state = 20, .external_lex_state = 4}, - [944] = {.lex_state = 20, .external_lex_state = 4}, + [944] = {.lex_state = 20, .external_lex_state = 3}, [945] = {.lex_state = 20, .external_lex_state = 4}, [946] = {.lex_state = 20, .external_lex_state = 4}, - [947] = {.lex_state = 20, .external_lex_state = 4}, - [948] = {.lex_state = 380, .external_lex_state = 4}, - [949] = {.lex_state = 20, .external_lex_state = 4}, - [950] = {.lex_state = 22, .external_lex_state = 3}, - [951] = {.lex_state = 380, .external_lex_state = 4}, - [952] = {.lex_state = 20, .external_lex_state = 3}, + [947] = {.lex_state = 22, .external_lex_state = 3}, + [948] = {.lex_state = 20, .external_lex_state = 4}, + [949] = {.lex_state = 20, .external_lex_state = 3}, + [950] = {.lex_state = 380, .external_lex_state = 4}, + [951] = {.lex_state = 20, .external_lex_state = 4}, + [952] = {.lex_state = 20, .external_lex_state = 4}, [953] = {.lex_state = 380, .external_lex_state = 4}, - [954] = {.lex_state = 380, .external_lex_state = 4}, - [955] = {.lex_state = 22, .external_lex_state = 3}, + [954] = {.lex_state = 22, .external_lex_state = 3}, + [955] = {.lex_state = 380, .external_lex_state = 4}, [956] = {.lex_state = 380, .external_lex_state = 4}, [957] = {.lex_state = 380, .external_lex_state = 4}, [958] = {.lex_state = 380, .external_lex_state = 4}, - [959] = {.lex_state = 20, .external_lex_state = 4}, - [960] = {.lex_state = 20, .external_lex_state = 4}, - [961] = {.lex_state = 20, .external_lex_state = 3}, - [962] = {.lex_state = 20, .external_lex_state = 4}, - [963] = {.lex_state = 44, .external_lex_state = 2}, + [959] = {.lex_state = 380, .external_lex_state = 4}, + [960] = {.lex_state = 44, .external_lex_state = 2}, + [961] = {.lex_state = 20, .external_lex_state = 4}, + [962] = {.lex_state = 20, .external_lex_state = 3}, + [963] = {.lex_state = 20, .external_lex_state = 4}, [964] = {.lex_state = 20, .external_lex_state = 4}, [965] = {.lex_state = 20, .external_lex_state = 4}, [966] = {.lex_state = 20, .external_lex_state = 4}, - [967] = {.lex_state = 20, .external_lex_state = 4}, + [967] = {.lex_state = 20, .external_lex_state = 3}, [968] = {.lex_state = 20, .external_lex_state = 4}, [969] = {.lex_state = 20, .external_lex_state = 4}, - [970] = {.lex_state = 20, .external_lex_state = 3}, + [970] = {.lex_state = 20, .external_lex_state = 4}, [971] = {.lex_state = 20, .external_lex_state = 4}, [972] = {.lex_state = 20, .external_lex_state = 4}, [973] = {.lex_state = 20, .external_lex_state = 3}, - [974] = {.lex_state = 44, .external_lex_state = 5}, - [975] = {.lex_state = 380, .external_lex_state = 4}, - [976] = {.lex_state = 380, .external_lex_state = 4}, - [977] = {.lex_state = 380, .external_lex_state = 4}, - [978] = {.lex_state = 20, .external_lex_state = 3}, + [974] = {.lex_state = 43, .external_lex_state = 2}, + [975] = {.lex_state = 20, .external_lex_state = 3}, + [976] = {.lex_state = 44, .external_lex_state = 5}, + [977] = {.lex_state = 20, .external_lex_state = 3}, + [978] = {.lex_state = 380, .external_lex_state = 4}, [979] = {.lex_state = 380, .external_lex_state = 4}, [980] = {.lex_state = 380, .external_lex_state = 4}, - [981] = {.lex_state = 43, .external_lex_state = 2}, - [982] = {.lex_state = 20, .external_lex_state = 3}, - [983] = {.lex_state = 44, .external_lex_state = 5}, - [984] = {.lex_state = 380, .external_lex_state = 4}, + [981] = {.lex_state = 44, .external_lex_state = 5}, + [982] = {.lex_state = 380, .external_lex_state = 4}, + [983] = {.lex_state = 380, .external_lex_state = 4}, + [984] = {.lex_state = 20, .external_lex_state = 3}, [985] = {.lex_state = 20, .external_lex_state = 3}, - [986] = {.lex_state = 20, .external_lex_state = 3}, + [986] = {.lex_state = 380, .external_lex_state = 4}, [987] = {.lex_state = 380, .external_lex_state = 4}, [988] = {.lex_state = 380, .external_lex_state = 4}, - [989] = {.lex_state = 44, .external_lex_state = 2}, - [990] = {.lex_state = 46, .external_lex_state = 5}, - [991] = {.lex_state = 20, .external_lex_state = 3}, - [992] = {.lex_state = 44, .external_lex_state = 2}, + [989] = {.lex_state = 20, .external_lex_state = 3}, + [990] = {.lex_state = 44, .external_lex_state = 2}, + [991] = {.lex_state = 46, .external_lex_state = 5}, + [992] = {.lex_state = 50, .external_lex_state = 2}, [993] = {.lex_state = 20, .external_lex_state = 3}, [994] = {.lex_state = 20, .external_lex_state = 3}, [995] = {.lex_state = 20, .external_lex_state = 3}, - [996] = {.lex_state = 20, .external_lex_state = 3}, - [997] = {.lex_state = 46, .external_lex_state = 5}, - [998] = {.lex_state = 43, .external_lex_state = 5}, + [996] = {.lex_state = 46, .external_lex_state = 2}, + [997] = {.lex_state = 20, .external_lex_state = 3}, + [998] = {.lex_state = 20, .external_lex_state = 3}, [999] = {.lex_state = 43, .external_lex_state = 5}, [1000] = {.lex_state = 20, .external_lex_state = 3}, - [1001] = {.lex_state = 20, .external_lex_state = 3}, - [1002] = {.lex_state = 50, .external_lex_state = 2}, - [1003] = {.lex_state = 20, .external_lex_state = 3}, + [1001] = {.lex_state = 44, .external_lex_state = 2}, + [1002] = {.lex_state = 20, .external_lex_state = 3}, + [1003] = {.lex_state = 46, .external_lex_state = 5}, [1004] = {.lex_state = 20, .external_lex_state = 3}, - [1005] = {.lex_state = 41, .external_lex_state = 2}, + [1005] = {.lex_state = 43, .external_lex_state = 5}, [1006] = {.lex_state = 20, .external_lex_state = 3}, [1007] = {.lex_state = 20, .external_lex_state = 3}, - [1008] = {.lex_state = 41, .external_lex_state = 2}, - [1009] = {.lex_state = 20, .external_lex_state = 3}, - [1010] = {.lex_state = 20, .external_lex_state = 3}, - [1011] = {.lex_state = 46, .external_lex_state = 2}, - [1012] = {.lex_state = 45, .external_lex_state = 5}, - [1013] = {.lex_state = 41, .external_lex_state = 5}, - [1014] = {.lex_state = 41, .external_lex_state = 5}, + [1008] = {.lex_state = 20, .external_lex_state = 3}, + [1009] = {.lex_state = 41, .external_lex_state = 2}, + [1010] = {.lex_state = 41, .external_lex_state = 2}, + [1011] = {.lex_state = 20, .external_lex_state = 3}, + [1012] = {.lex_state = 41, .external_lex_state = 5}, + [1013] = {.lex_state = 46, .external_lex_state = 2}, + [1014] = {.lex_state = 41, .external_lex_state = 2}, [1015] = {.lex_state = 41, .external_lex_state = 5}, - [1016] = {.lex_state = 40, .external_lex_state = 2}, - [1017] = {.lex_state = 40, .external_lex_state = 2}, + [1016] = {.lex_state = 41, .external_lex_state = 2}, + [1017] = {.lex_state = 41, .external_lex_state = 2}, [1018] = {.lex_state = 41, .external_lex_state = 5}, [1019] = {.lex_state = 41, .external_lex_state = 5}, - [1020] = {.lex_state = 41, .external_lex_state = 5}, - [1021] = {.lex_state = 46, .external_lex_state = 2}, + [1020] = {.lex_state = 41, .external_lex_state = 2}, + [1021] = {.lex_state = 41, .external_lex_state = 2}, [1022] = {.lex_state = 46, .external_lex_state = 2}, - [1023] = {.lex_state = 50, .external_lex_state = 5}, - [1024] = {.lex_state = 41, .external_lex_state = 2}, + [1023] = {.lex_state = 46, .external_lex_state = 2}, + [1024] = {.lex_state = 46, .external_lex_state = 2}, [1025] = {.lex_state = 41, .external_lex_state = 5}, [1026] = {.lex_state = 41, .external_lex_state = 5}, - [1027] = {.lex_state = 41, .external_lex_state = 2}, + [1027] = {.lex_state = 41, .external_lex_state = 5}, [1028] = {.lex_state = 41, .external_lex_state = 5}, - [1029] = {.lex_state = 41, .external_lex_state = 2}, - [1030] = {.lex_state = 41, .external_lex_state = 2}, - [1031] = {.lex_state = 50, .external_lex_state = 5}, - [1032] = {.lex_state = 41, .external_lex_state = 5}, - [1033] = {.lex_state = 45, .external_lex_state = 5}, - [1034] = {.lex_state = 41, .external_lex_state = 5}, - [1035] = {.lex_state = 41, .external_lex_state = 5}, - [1036] = {.lex_state = 45, .external_lex_state = 2}, - [1037] = {.lex_state = 46, .external_lex_state = 2}, - [1038] = {.lex_state = 46, .external_lex_state = 2}, - [1039] = {.lex_state = 43, .external_lex_state = 2}, - [1040] = {.lex_state = 41, .external_lex_state = 5}, - [1041] = {.lex_state = 41, .external_lex_state = 5}, + [1029] = {.lex_state = 41, .external_lex_state = 5}, + [1030] = {.lex_state = 41, .external_lex_state = 5}, + [1031] = {.lex_state = 41, .external_lex_state = 5}, + [1032] = {.lex_state = 45, .external_lex_state = 2}, + [1033] = {.lex_state = 41, .external_lex_state = 5}, + [1034] = {.lex_state = 45, .external_lex_state = 5}, + [1035] = {.lex_state = 45, .external_lex_state = 5}, + [1036] = {.lex_state = 46, .external_lex_state = 2}, + [1037] = {.lex_state = 49, .external_lex_state = 2}, + [1038] = {.lex_state = 41, .external_lex_state = 5}, + [1039] = {.lex_state = 41, .external_lex_state = 5}, + [1040] = {.lex_state = 40, .external_lex_state = 2}, + [1041] = {.lex_state = 40, .external_lex_state = 2}, [1042] = {.lex_state = 41, .external_lex_state = 5}, [1043] = {.lex_state = 41, .external_lex_state = 5}, - [1044] = {.lex_state = 41, .external_lex_state = 5}, - [1045] = {.lex_state = 43, .external_lex_state = 2}, + [1044] = {.lex_state = 43, .external_lex_state = 2}, + [1045] = {.lex_state = 41, .external_lex_state = 5}, [1046] = {.lex_state = 41, .external_lex_state = 5}, - [1047] = {.lex_state = 49, .external_lex_state = 2}, - [1048] = {.lex_state = 41, .external_lex_state = 2}, + [1047] = {.lex_state = 41, .external_lex_state = 5}, + [1048] = {.lex_state = 41, .external_lex_state = 5}, [1049] = {.lex_state = 41, .external_lex_state = 5}, - [1050] = {.lex_state = 41, .external_lex_state = 5}, + [1050] = {.lex_state = 50, .external_lex_state = 5}, [1051] = {.lex_state = 41, .external_lex_state = 5}, [1052] = {.lex_state = 41, .external_lex_state = 5}, - [1053] = {.lex_state = 46, .external_lex_state = 2}, - [1054] = {.lex_state = 41, .external_lex_state = 5}, - [1055] = {.lex_state = 40, .external_lex_state = 5}, - [1056] = {.lex_state = 41, .external_lex_state = 2}, + [1053] = {.lex_state = 50, .external_lex_state = 5}, + [1054] = {.lex_state = 43, .external_lex_state = 2}, + [1055] = {.lex_state = 41, .external_lex_state = 2}, + [1056] = {.lex_state = 40, .external_lex_state = 5}, [1057] = {.lex_state = 40, .external_lex_state = 5}, - [1058] = {.lex_state = 49, .external_lex_state = 5}, - [1059] = {.lex_state = 41, .external_lex_state = 2}, - [1060] = {.lex_state = 41, .external_lex_state = 2}, - [1061] = {.lex_state = 41, .external_lex_state = 2}, + [1058] = {.lex_state = 48, .external_lex_state = 5}, + [1059] = {.lex_state = 40, .external_lex_state = 5}, + [1060] = {.lex_state = 45, .external_lex_state = 2}, + [1061] = {.lex_state = 40, .external_lex_state = 2}, [1062] = {.lex_state = 40, .external_lex_state = 5}, - [1063] = {.lex_state = 40, .external_lex_state = 5}, - [1064] = {.lex_state = 48, .external_lex_state = 5}, - [1065] = {.lex_state = 40, .external_lex_state = 5}, - [1066] = {.lex_state = 45, .external_lex_state = 2}, - [1067] = {.lex_state = 40, .external_lex_state = 5}, - [1068] = {.lex_state = 50, .external_lex_state = 2}, + [1063] = {.lex_state = 48, .external_lex_state = 5}, + [1064] = {.lex_state = 41, .external_lex_state = 2}, + [1065] = {.lex_state = 41, .external_lex_state = 2}, + [1066] = {.lex_state = 40, .external_lex_state = 5}, + [1067] = {.lex_state = 45, .external_lex_state = 2}, + [1068] = {.lex_state = 45, .external_lex_state = 2}, [1069] = {.lex_state = 41, .external_lex_state = 2}, - [1070] = {.lex_state = 40, .external_lex_state = 5}, + [1070] = {.lex_state = 41, .external_lex_state = 2}, [1071] = {.lex_state = 41, .external_lex_state = 2}, [1072] = {.lex_state = 41, .external_lex_state = 2}, [1073] = {.lex_state = 41, .external_lex_state = 2}, - [1074] = {.lex_state = 45, .external_lex_state = 2}, + [1074] = {.lex_state = 41, .external_lex_state = 2}, [1075] = {.lex_state = 41, .external_lex_state = 2}, - [1076] = {.lex_state = 45, .external_lex_state = 2}, + [1076] = {.lex_state = 41, .external_lex_state = 2}, [1077] = {.lex_state = 41, .external_lex_state = 2}, - [1078] = {.lex_state = 41, .external_lex_state = 2}, - [1079] = {.lex_state = 41, .external_lex_state = 2}, + [1078] = {.lex_state = 42, .external_lex_state = 2}, + [1079] = {.lex_state = 42, .external_lex_state = 2}, [1080] = {.lex_state = 41, .external_lex_state = 2}, [1081] = {.lex_state = 41, .external_lex_state = 2}, [1082] = {.lex_state = 41, .external_lex_state = 2}, [1083] = {.lex_state = 41, .external_lex_state = 2}, - [1084] = {.lex_state = 48, .external_lex_state = 5}, - [1085] = {.lex_state = 41, .external_lex_state = 2}, - [1086] = {.lex_state = 41, .external_lex_state = 2}, + [1084] = {.lex_state = 40, .external_lex_state = 5}, + [1085] = {.lex_state = 40, .external_lex_state = 5}, + [1086] = {.lex_state = 40, .external_lex_state = 5}, [1087] = {.lex_state = 41, .external_lex_state = 2}, [1088] = {.lex_state = 41, .external_lex_state = 2}, - [1089] = {.lex_state = 50, .external_lex_state = 2}, + [1089] = {.lex_state = 41, .external_lex_state = 2}, [1090] = {.lex_state = 41, .external_lex_state = 2}, [1091] = {.lex_state = 41, .external_lex_state = 2}, [1092] = {.lex_state = 41, .external_lex_state = 2}, [1093] = {.lex_state = 41, .external_lex_state = 2}, - [1094] = {.lex_state = 41, .external_lex_state = 2}, - [1095] = {.lex_state = 40, .external_lex_state = 5}, + [1094] = {.lex_state = 40, .external_lex_state = 5}, + [1095] = {.lex_state = 41, .external_lex_state = 2}, [1096] = {.lex_state = 41, .external_lex_state = 2}, - [1097] = {.lex_state = 40, .external_lex_state = 5}, - [1098] = {.lex_state = 40, .external_lex_state = 5}, - [1099] = {.lex_state = 41, .external_lex_state = 2}, - [1100] = {.lex_state = 40, .external_lex_state = 5}, - [1101] = {.lex_state = 41, .external_lex_state = 2}, + [1097] = {.lex_state = 41, .external_lex_state = 2}, + [1098] = {.lex_state = 41, .external_lex_state = 2}, + [1099] = {.lex_state = 45, .external_lex_state = 2}, + [1100] = {.lex_state = 45, .external_lex_state = 2}, + [1101] = {.lex_state = 40, .external_lex_state = 5}, [1102] = {.lex_state = 41, .external_lex_state = 2}, [1103] = {.lex_state = 41, .external_lex_state = 2}, [1104] = {.lex_state = 41, .external_lex_state = 2}, - [1105] = {.lex_state = 41, .external_lex_state = 2}, - [1106] = {.lex_state = 40, .external_lex_state = 2}, + [1105] = {.lex_state = 40, .external_lex_state = 5}, + [1106] = {.lex_state = 41, .external_lex_state = 2}, [1107] = {.lex_state = 41, .external_lex_state = 2}, [1108] = {.lex_state = 41, .external_lex_state = 2}, - [1109] = {.lex_state = 40, .external_lex_state = 2}, + [1109] = {.lex_state = 41, .external_lex_state = 2}, [1110] = {.lex_state = 41, .external_lex_state = 2}, [1111] = {.lex_state = 41, .external_lex_state = 2}, - [1112] = {.lex_state = 40, .external_lex_state = 2}, + [1112] = {.lex_state = 41, .external_lex_state = 2}, [1113] = {.lex_state = 41, .external_lex_state = 2}, [1114] = {.lex_state = 41, .external_lex_state = 2}, [1115] = {.lex_state = 41, .external_lex_state = 2}, [1116] = {.lex_state = 41, .external_lex_state = 2}, [1117] = {.lex_state = 41, .external_lex_state = 2}, [1118] = {.lex_state = 41, .external_lex_state = 2}, - [1119] = {.lex_state = 41, .external_lex_state = 2}, - [1120] = {.lex_state = 41, .external_lex_state = 2}, + [1119] = {.lex_state = 49, .external_lex_state = 5}, + [1120] = {.lex_state = 40, .external_lex_state = 5}, [1121] = {.lex_state = 41, .external_lex_state = 2}, [1122] = {.lex_state = 41, .external_lex_state = 2}, [1123] = {.lex_state = 41, .external_lex_state = 2}, - [1124] = {.lex_state = 40, .external_lex_state = 5}, + [1124] = {.lex_state = 41, .external_lex_state = 2}, [1125] = {.lex_state = 41, .external_lex_state = 2}, - [1126] = {.lex_state = 40, .external_lex_state = 5}, + [1126] = {.lex_state = 41, .external_lex_state = 2}, [1127] = {.lex_state = 41, .external_lex_state = 2}, [1128] = {.lex_state = 41, .external_lex_state = 2}, - [1129] = {.lex_state = 42, .external_lex_state = 2}, - [1130] = {.lex_state = 42, .external_lex_state = 2}, + [1129] = {.lex_state = 41, .external_lex_state = 2}, + [1130] = {.lex_state = 41, .external_lex_state = 2}, [1131] = {.lex_state = 41, .external_lex_state = 2}, [1132] = {.lex_state = 41, .external_lex_state = 2}, [1133] = {.lex_state = 41, .external_lex_state = 2}, [1134] = {.lex_state = 41, .external_lex_state = 2}, [1135] = {.lex_state = 41, .external_lex_state = 2}, [1136] = {.lex_state = 41, .external_lex_state = 2}, - [1137] = {.lex_state = 41, .external_lex_state = 2}, - [1138] = {.lex_state = 40, .external_lex_state = 5}, - [1139] = {.lex_state = 41, .external_lex_state = 2}, + [1137] = {.lex_state = 40, .external_lex_state = 5}, + [1138] = {.lex_state = 40, .external_lex_state = 2}, + [1139] = {.lex_state = 40, .external_lex_state = 2}, [1140] = {.lex_state = 41, .external_lex_state = 2}, [1141] = {.lex_state = 41, .external_lex_state = 2}, [1142] = {.lex_state = 41, .external_lex_state = 2}, [1143] = {.lex_state = 41, .external_lex_state = 2}, - [1144] = {.lex_state = 45, .external_lex_state = 2}, + [1144] = {.lex_state = 41, .external_lex_state = 2}, [1145] = {.lex_state = 41, .external_lex_state = 2}, - [1146] = {.lex_state = 45, .external_lex_state = 2}, - [1147] = {.lex_state = 40, .external_lex_state = 5}, + [1146] = {.lex_state = 41, .external_lex_state = 2}, + [1147] = {.lex_state = 41, .external_lex_state = 2}, [1148] = {.lex_state = 41, .external_lex_state = 2}, - [1149] = {.lex_state = 40, .external_lex_state = 5}, + [1149] = {.lex_state = 41, .external_lex_state = 2}, [1150] = {.lex_state = 41, .external_lex_state = 2}, [1151] = {.lex_state = 41, .external_lex_state = 2}, [1152] = {.lex_state = 41, .external_lex_state = 2}, @@ -24192,45 +23954,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1156] = {.lex_state = 41, .external_lex_state = 2}, [1157] = {.lex_state = 41, .external_lex_state = 2}, [1158] = {.lex_state = 41, .external_lex_state = 2}, - [1159] = {.lex_state = 41, .external_lex_state = 2}, + [1159] = {.lex_state = 40, .external_lex_state = 5}, [1160] = {.lex_state = 41, .external_lex_state = 2}, [1161] = {.lex_state = 41, .external_lex_state = 2}, [1162] = {.lex_state = 41, .external_lex_state = 2}, [1163] = {.lex_state = 41, .external_lex_state = 2}, [1164] = {.lex_state = 41, .external_lex_state = 2}, - [1165] = {.lex_state = 40, .external_lex_state = 5}, + [1165] = {.lex_state = 41, .external_lex_state = 2}, [1166] = {.lex_state = 41, .external_lex_state = 2}, [1167] = {.lex_state = 41, .external_lex_state = 2}, - [1168] = {.lex_state = 40, .external_lex_state = 5}, + [1168] = {.lex_state = 41, .external_lex_state = 2}, [1169] = {.lex_state = 41, .external_lex_state = 2}, - [1170] = {.lex_state = 40, .external_lex_state = 5}, - [1171] = {.lex_state = 40, .external_lex_state = 5}, + [1170] = {.lex_state = 41, .external_lex_state = 2}, + [1171] = {.lex_state = 41, .external_lex_state = 2}, [1172] = {.lex_state = 41, .external_lex_state = 2}, [1173] = {.lex_state = 41, .external_lex_state = 2}, [1174] = {.lex_state = 41, .external_lex_state = 2}, [1175] = {.lex_state = 41, .external_lex_state = 2}, [1176] = {.lex_state = 41, .external_lex_state = 2}, [1177] = {.lex_state = 41, .external_lex_state = 2}, - [1178] = {.lex_state = 40, .external_lex_state = 5}, - [1179] = {.lex_state = 48, .external_lex_state = 2}, + [1178] = {.lex_state = 41, .external_lex_state = 2}, + [1179] = {.lex_state = 41, .external_lex_state = 2}, [1180] = {.lex_state = 41, .external_lex_state = 2}, [1181] = {.lex_state = 41, .external_lex_state = 2}, [1182] = {.lex_state = 41, .external_lex_state = 2}, - [1183] = {.lex_state = 41, .external_lex_state = 2}, + [1183] = {.lex_state = 48, .external_lex_state = 2}, [1184] = {.lex_state = 41, .external_lex_state = 2}, [1185] = {.lex_state = 41, .external_lex_state = 2}, - [1186] = {.lex_state = 41, .external_lex_state = 2}, + [1186] = {.lex_state = 50, .external_lex_state = 2}, [1187] = {.lex_state = 41, .external_lex_state = 2}, [1188] = {.lex_state = 41, .external_lex_state = 2}, [1189] = {.lex_state = 41, .external_lex_state = 2}, - [1190] = {.lex_state = 41, .external_lex_state = 2}, + [1190] = {.lex_state = 40, .external_lex_state = 5}, [1191] = {.lex_state = 41, .external_lex_state = 2}, [1192] = {.lex_state = 41, .external_lex_state = 2}, [1193] = {.lex_state = 41, .external_lex_state = 2}, - [1194] = {.lex_state = 41, .external_lex_state = 2}, + [1194] = {.lex_state = 40, .external_lex_state = 5}, [1195] = {.lex_state = 41, .external_lex_state = 2}, - [1196] = {.lex_state = 41, .external_lex_state = 2}, - [1197] = {.lex_state = 41, .external_lex_state = 2}, + [1196] = {.lex_state = 49, .external_lex_state = 5}, + [1197] = {.lex_state = 50, .external_lex_state = 2}, [1198] = {.lex_state = 41, .external_lex_state = 2}, [1199] = {.lex_state = 41, .external_lex_state = 2}, [1200] = {.lex_state = 41, .external_lex_state = 2}, @@ -24239,10 +24001,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1203] = {.lex_state = 41, .external_lex_state = 2}, [1204] = {.lex_state = 41, .external_lex_state = 2}, [1205] = {.lex_state = 41, .external_lex_state = 2}, - [1206] = {.lex_state = 41, .external_lex_state = 2}, - [1207] = {.lex_state = 41, .external_lex_state = 2}, - [1208] = {.lex_state = 41, .external_lex_state = 2}, - [1209] = {.lex_state = 41, .external_lex_state = 2}, + [1206] = {.lex_state = 40, .external_lex_state = 5}, + [1207] = {.lex_state = 40, .external_lex_state = 5}, + [1208] = {.lex_state = 40, .external_lex_state = 5}, + [1209] = {.lex_state = 40, .external_lex_state = 5}, [1210] = {.lex_state = 41, .external_lex_state = 2}, [1211] = {.lex_state = 41, .external_lex_state = 2}, [1212] = {.lex_state = 41, .external_lex_state = 2}, @@ -24250,49 +24012,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1214] = {.lex_state = 41, .external_lex_state = 2}, [1215] = {.lex_state = 41, .external_lex_state = 2}, [1216] = {.lex_state = 41, .external_lex_state = 2}, - [1217] = {.lex_state = 41, .external_lex_state = 2}, - [1218] = {.lex_state = 41, .external_lex_state = 2}, - [1219] = {.lex_state = 41, .external_lex_state = 2}, + [1217] = {.lex_state = 40, .external_lex_state = 5}, + [1218] = {.lex_state = 40, .external_lex_state = 5}, + [1219] = {.lex_state = 40, .external_lex_state = 5}, [1220] = {.lex_state = 41, .external_lex_state = 2}, [1221] = {.lex_state = 41, .external_lex_state = 2}, - [1222] = {.lex_state = 41, .external_lex_state = 2}, - [1223] = {.lex_state = 41, .external_lex_state = 2}, - [1224] = {.lex_state = 41, .external_lex_state = 2}, - [1225] = {.lex_state = 41, .external_lex_state = 2}, - [1226] = {.lex_state = 41, .external_lex_state = 2}, - [1227] = {.lex_state = 41, .external_lex_state = 2}, - [1228] = {.lex_state = 41, .external_lex_state = 2}, - [1229] = {.lex_state = 41, .external_lex_state = 2}, - [1230] = {.lex_state = 41, .external_lex_state = 2}, - [1231] = {.lex_state = 41, .external_lex_state = 2}, - [1232] = {.lex_state = 41, .external_lex_state = 2}, - [1233] = {.lex_state = 41, .external_lex_state = 2}, - [1234] = {.lex_state = 41, .external_lex_state = 2}, - [1235] = {.lex_state = 41, .external_lex_state = 2}, - [1236] = {.lex_state = 40, .external_lex_state = 5}, - [1237] = {.lex_state = 41, .external_lex_state = 2}, - [1238] = {.lex_state = 41, .external_lex_state = 2}, - [1239] = {.lex_state = 41, .external_lex_state = 2}, - [1240] = {.lex_state = 41, .external_lex_state = 2}, - [1241] = {.lex_state = 41, .external_lex_state = 2}, - [1242] = {.lex_state = 49, .external_lex_state = 5}, - [1243] = {.lex_state = 41, .external_lex_state = 2}, - [1244] = {.lex_state = 41, .external_lex_state = 2}, - [1245] = {.lex_state = 41, .external_lex_state = 2}, - [1246] = {.lex_state = 41, .external_lex_state = 2}, - [1247] = {.lex_state = 41, .external_lex_state = 2}, - [1248] = {.lex_state = 40, .external_lex_state = 5}, - [1249] = {.lex_state = 41, .external_lex_state = 2}, - [1250] = {.lex_state = 41, .external_lex_state = 2}, - [1251] = {.lex_state = 41, .external_lex_state = 2}, - [1252] = {.lex_state = 41, .external_lex_state = 2}, - [1253] = {.lex_state = 41, .external_lex_state = 2}, - [1254] = {.lex_state = 41, .external_lex_state = 2}, - [1255] = {.lex_state = 41, .external_lex_state = 2}, - [1256] = {.lex_state = 41, .external_lex_state = 2}, - [1257] = {.lex_state = 41, .external_lex_state = 2}, - [1258] = {.lex_state = 41, .external_lex_state = 2}, - [1259] = {.lex_state = 42, .external_lex_state = 5}, + [1222] = {.lex_state = 40, .external_lex_state = 2}, + [1223] = {.lex_state = 40, .external_lex_state = 2}, + [1224] = {.lex_state = 40, .external_lex_state = 2}, + [1225] = {.lex_state = 40, .external_lex_state = 2}, + [1226] = {.lex_state = 40, .external_lex_state = 2}, + [1227] = {.lex_state = 40, .external_lex_state = 2}, + [1228] = {.lex_state = 40, .external_lex_state = 2}, + [1229] = {.lex_state = 42, .external_lex_state = 2}, + [1230] = {.lex_state = 40, .external_lex_state = 2}, + [1231] = {.lex_state = 40, .external_lex_state = 2}, + [1232] = {.lex_state = 40, .external_lex_state = 2}, + [1233] = {.lex_state = 40, .external_lex_state = 2}, + [1234] = {.lex_state = 40, .external_lex_state = 2}, + [1235] = {.lex_state = 40, .external_lex_state = 2}, + [1236] = {.lex_state = 40, .external_lex_state = 2}, + [1237] = {.lex_state = 40, .external_lex_state = 2}, + [1238] = {.lex_state = 40, .external_lex_state = 2}, + [1239] = {.lex_state = 40, .external_lex_state = 2}, + [1240] = {.lex_state = 40, .external_lex_state = 2}, + [1241] = {.lex_state = 40, .external_lex_state = 2}, + [1242] = {.lex_state = 40, .external_lex_state = 2}, + [1243] = {.lex_state = 40, .external_lex_state = 2}, + [1244] = {.lex_state = 42, .external_lex_state = 5}, + [1245] = {.lex_state = 40, .external_lex_state = 2}, + [1246] = {.lex_state = 40, .external_lex_state = 2}, + [1247] = {.lex_state = 40, .external_lex_state = 2}, + [1248] = {.lex_state = 40, .external_lex_state = 2}, + [1249] = {.lex_state = 40, .external_lex_state = 2}, + [1250] = {.lex_state = 40, .external_lex_state = 2}, + [1251] = {.lex_state = 40, .external_lex_state = 2}, + [1252] = {.lex_state = 40, .external_lex_state = 2}, + [1253] = {.lex_state = 40, .external_lex_state = 2}, + [1254] = {.lex_state = 40, .external_lex_state = 2}, + [1255] = {.lex_state = 40, .external_lex_state = 2}, + [1256] = {.lex_state = 40, .external_lex_state = 2}, + [1257] = {.lex_state = 40, .external_lex_state = 2}, + [1258] = {.lex_state = 40, .external_lex_state = 2}, + [1259] = {.lex_state = 40, .external_lex_state = 2}, [1260] = {.lex_state = 40, .external_lex_state = 2}, [1261] = {.lex_state = 40, .external_lex_state = 2}, [1262] = {.lex_state = 40, .external_lex_state = 2}, @@ -24300,20 +24062,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1264] = {.lex_state = 40, .external_lex_state = 2}, [1265] = {.lex_state = 40, .external_lex_state = 2}, [1266] = {.lex_state = 40, .external_lex_state = 2}, - [1267] = {.lex_state = 49, .external_lex_state = 2}, + [1267] = {.lex_state = 40, .external_lex_state = 2}, [1268] = {.lex_state = 40, .external_lex_state = 2}, [1269] = {.lex_state = 40, .external_lex_state = 2}, [1270] = {.lex_state = 40, .external_lex_state = 2}, [1271] = {.lex_state = 40, .external_lex_state = 2}, [1272] = {.lex_state = 40, .external_lex_state = 2}, - [1273] = {.lex_state = 42, .external_lex_state = 2}, + [1273] = {.lex_state = 40, .external_lex_state = 2}, [1274] = {.lex_state = 40, .external_lex_state = 2}, - [1275] = {.lex_state = 47, .external_lex_state = 2}, + [1275] = {.lex_state = 40, .external_lex_state = 2}, [1276] = {.lex_state = 40, .external_lex_state = 2}, [1277] = {.lex_state = 40, .external_lex_state = 2}, [1278] = {.lex_state = 40, .external_lex_state = 2}, [1279] = {.lex_state = 40, .external_lex_state = 2}, - [1280] = {.lex_state = 40, .external_lex_state = 2}, + [1280] = {.lex_state = 49, .external_lex_state = 2}, [1281] = {.lex_state = 40, .external_lex_state = 2}, [1282] = {.lex_state = 40, .external_lex_state = 2}, [1283] = {.lex_state = 40, .external_lex_state = 2}, @@ -24322,16 +24084,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1286] = {.lex_state = 40, .external_lex_state = 2}, [1287] = {.lex_state = 40, .external_lex_state = 2}, [1288] = {.lex_state = 40, .external_lex_state = 2}, - [1289] = {.lex_state = 40, .external_lex_state = 2}, + [1289] = {.lex_state = 42, .external_lex_state = 5}, [1290] = {.lex_state = 40, .external_lex_state = 2}, - [1291] = {.lex_state = 40, .external_lex_state = 2}, - [1292] = {.lex_state = 48, .external_lex_state = 2}, - [1293] = {.lex_state = 48, .external_lex_state = 2}, - [1294] = {.lex_state = 40, .external_lex_state = 2}, + [1291] = {.lex_state = 42, .external_lex_state = 5}, + [1292] = {.lex_state = 42, .external_lex_state = 5}, + [1293] = {.lex_state = 40, .external_lex_state = 2}, + [1294] = {.lex_state = 42, .external_lex_state = 5}, [1295] = {.lex_state = 40, .external_lex_state = 2}, [1296] = {.lex_state = 40, .external_lex_state = 2}, - [1297] = {.lex_state = 49, .external_lex_state = 2}, - [1298] = {.lex_state = 40, .external_lex_state = 2}, + [1297] = {.lex_state = 42, .external_lex_state = 5}, + [1298] = {.lex_state = 42, .external_lex_state = 5}, [1299] = {.lex_state = 40, .external_lex_state = 2}, [1300] = {.lex_state = 40, .external_lex_state = 2}, [1301] = {.lex_state = 40, .external_lex_state = 2}, @@ -24339,36 +24101,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1303] = {.lex_state = 40, .external_lex_state = 2}, [1304] = {.lex_state = 40, .external_lex_state = 2}, [1305] = {.lex_state = 40, .external_lex_state = 2}, - [1306] = {.lex_state = 40, .external_lex_state = 2}, - [1307] = {.lex_state = 40, .external_lex_state = 2}, - [1308] = {.lex_state = 40, .external_lex_state = 2}, + [1306] = {.lex_state = 42, .external_lex_state = 2}, + [1307] = {.lex_state = 48, .external_lex_state = 2}, + [1308] = {.lex_state = 49, .external_lex_state = 2}, [1309] = {.lex_state = 40, .external_lex_state = 2}, [1310] = {.lex_state = 40, .external_lex_state = 2}, - [1311] = {.lex_state = 40, .external_lex_state = 2}, + [1311] = {.lex_state = 42, .external_lex_state = 5}, [1312] = {.lex_state = 40, .external_lex_state = 2}, [1313] = {.lex_state = 40, .external_lex_state = 2}, - [1314] = {.lex_state = 40, .external_lex_state = 2}, + [1314] = {.lex_state = 48, .external_lex_state = 2}, [1315] = {.lex_state = 40, .external_lex_state = 2}, - [1316] = {.lex_state = 40, .external_lex_state = 2}, - [1317] = {.lex_state = 42, .external_lex_state = 5}, - [1318] = {.lex_state = 40, .external_lex_state = 2}, - [1319] = {.lex_state = 40, .external_lex_state = 2}, + [1316] = {.lex_state = 42, .external_lex_state = 2}, + [1317] = {.lex_state = 40, .external_lex_state = 2}, + [1318] = {.lex_state = 42, .external_lex_state = 5}, + [1319] = {.lex_state = 42, .external_lex_state = 2}, [1320] = {.lex_state = 40, .external_lex_state = 2}, [1321] = {.lex_state = 40, .external_lex_state = 2}, [1322] = {.lex_state = 40, .external_lex_state = 2}, [1323] = {.lex_state = 42, .external_lex_state = 5}, - [1324] = {.lex_state = 37, .external_lex_state = 2}, - [1325] = {.lex_state = 37, .external_lex_state = 2}, + [1324] = {.lex_state = 42, .external_lex_state = 5}, + [1325] = {.lex_state = 42, .external_lex_state = 5}, [1326] = {.lex_state = 40, .external_lex_state = 2}, - [1327] = {.lex_state = 42, .external_lex_state = 5}, + [1327] = {.lex_state = 40, .external_lex_state = 2}, [1328] = {.lex_state = 40, .external_lex_state = 2}, - [1329] = {.lex_state = 42, .external_lex_state = 5}, + [1329] = {.lex_state = 40, .external_lex_state = 2}, [1330] = {.lex_state = 40, .external_lex_state = 2}, - [1331] = {.lex_state = 42, .external_lex_state = 5}, - [1332] = {.lex_state = 42, .external_lex_state = 5}, - [1333] = {.lex_state = 40, .external_lex_state = 2}, + [1331] = {.lex_state = 40, .external_lex_state = 2}, + [1332] = {.lex_state = 40, .external_lex_state = 2}, + [1333] = {.lex_state = 42, .external_lex_state = 5}, [1334] = {.lex_state = 42, .external_lex_state = 5}, - [1335] = {.lex_state = 40, .external_lex_state = 2}, + [1335] = {.lex_state = 42, .external_lex_state = 5}, [1336] = {.lex_state = 40, .external_lex_state = 2}, [1337] = {.lex_state = 40, .external_lex_state = 2}, [1338] = {.lex_state = 40, .external_lex_state = 2}, @@ -24378,12 +24140,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1342] = {.lex_state = 40, .external_lex_state = 2}, [1343] = {.lex_state = 40, .external_lex_state = 2}, [1344] = {.lex_state = 40, .external_lex_state = 2}, - [1345] = {.lex_state = 40, .external_lex_state = 2}, + [1345] = {.lex_state = 42, .external_lex_state = 5}, [1346] = {.lex_state = 40, .external_lex_state = 2}, [1347] = {.lex_state = 40, .external_lex_state = 2}, [1348] = {.lex_state = 40, .external_lex_state = 2}, - [1349] = {.lex_state = 40, .external_lex_state = 2}, - [1350] = {.lex_state = 42, .external_lex_state = 2}, + [1349] = {.lex_state = 47, .external_lex_state = 5}, + [1350] = {.lex_state = 40, .external_lex_state = 2}, [1351] = {.lex_state = 40, .external_lex_state = 2}, [1352] = {.lex_state = 40, .external_lex_state = 2}, [1353] = {.lex_state = 40, .external_lex_state = 2}, @@ -24394,119 +24156,119 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1358] = {.lex_state = 40, .external_lex_state = 2}, [1359] = {.lex_state = 40, .external_lex_state = 2}, [1360] = {.lex_state = 40, .external_lex_state = 2}, - [1361] = {.lex_state = 42, .external_lex_state = 5}, - [1362] = {.lex_state = 40, .external_lex_state = 2}, + [1361] = {.lex_state = 40, .external_lex_state = 2}, + [1362] = {.lex_state = 47, .external_lex_state = 5}, [1363] = {.lex_state = 40, .external_lex_state = 2}, - [1364] = {.lex_state = 42, .external_lex_state = 2}, + [1364] = {.lex_state = 40, .external_lex_state = 2}, [1365] = {.lex_state = 40, .external_lex_state = 2}, [1366] = {.lex_state = 40, .external_lex_state = 2}, [1367] = {.lex_state = 40, .external_lex_state = 2}, - [1368] = {.lex_state = 42, .external_lex_state = 5}, + [1368] = {.lex_state = 40, .external_lex_state = 2}, [1369] = {.lex_state = 40, .external_lex_state = 2}, - [1370] = {.lex_state = 42, .external_lex_state = 2}, + [1370] = {.lex_state = 40, .external_lex_state = 2}, [1371] = {.lex_state = 40, .external_lex_state = 2}, - [1372] = {.lex_state = 42, .external_lex_state = 2}, + [1372] = {.lex_state = 42, .external_lex_state = 5}, [1373] = {.lex_state = 40, .external_lex_state = 2}, - [1374] = {.lex_state = 40, .external_lex_state = 2}, - [1375] = {.lex_state = 40, .external_lex_state = 2}, - [1376] = {.lex_state = 42, .external_lex_state = 5}, + [1374] = {.lex_state = 48, .external_lex_state = 2}, + [1375] = {.lex_state = 48, .external_lex_state = 2}, + [1376] = {.lex_state = 40, .external_lex_state = 2}, [1377] = {.lex_state = 42, .external_lex_state = 5}, - [1378] = {.lex_state = 42, .external_lex_state = 5}, - [1379] = {.lex_state = 42, .external_lex_state = 5}, + [1378] = {.lex_state = 42, .external_lex_state = 2}, + [1379] = {.lex_state = 47, .external_lex_state = 2}, [1380] = {.lex_state = 42, .external_lex_state = 5}, - [1381] = {.lex_state = 40, .external_lex_state = 2}, - [1382] = {.lex_state = 40, .external_lex_state = 2}, - [1383] = {.lex_state = 47, .external_lex_state = 5}, - [1384] = {.lex_state = 40, .external_lex_state = 2}, + [1381] = {.lex_state = 42, .external_lex_state = 5}, + [1382] = {.lex_state = 48, .external_lex_state = 2}, + [1383] = {.lex_state = 42, .external_lex_state = 5}, + [1384] = {.lex_state = 42, .external_lex_state = 5}, [1385] = {.lex_state = 40, .external_lex_state = 2}, - [1386] = {.lex_state = 40, .external_lex_state = 2}, + [1386] = {.lex_state = 37, .external_lex_state = 2}, [1387] = {.lex_state = 40, .external_lex_state = 2}, - [1388] = {.lex_state = 40, .external_lex_state = 2}, - [1389] = {.lex_state = 40, .external_lex_state = 2}, - [1390] = {.lex_state = 40, .external_lex_state = 2}, - [1391] = {.lex_state = 40, .external_lex_state = 2}, - [1392] = {.lex_state = 40, .external_lex_state = 2}, - [1393] = {.lex_state = 42, .external_lex_state = 5}, - [1394] = {.lex_state = 40, .external_lex_state = 2}, - [1395] = {.lex_state = 40, .external_lex_state = 2}, - [1396] = {.lex_state = 42, .external_lex_state = 5}, - [1397] = {.lex_state = 40, .external_lex_state = 2}, - [1398] = {.lex_state = 47, .external_lex_state = 5}, - [1399] = {.lex_state = 40, .external_lex_state = 2}, - [1400] = {.lex_state = 48, .external_lex_state = 2}, - [1401] = {.lex_state = 40, .external_lex_state = 2}, - [1402] = {.lex_state = 40, .external_lex_state = 2}, - [1403] = {.lex_state = 42, .external_lex_state = 5}, - [1404] = {.lex_state = 40, .external_lex_state = 2}, - [1405] = {.lex_state = 40, .external_lex_state = 2}, - [1406] = {.lex_state = 40, .external_lex_state = 2}, - [1407] = {.lex_state = 48, .external_lex_state = 2}, - [1408] = {.lex_state = 40, .external_lex_state = 2}, - [1409] = {.lex_state = 40, .external_lex_state = 2}, - [1410] = {.lex_state = 40, .external_lex_state = 2}, - [1411] = {.lex_state = 40, .external_lex_state = 2}, - [1412] = {.lex_state = 42, .external_lex_state = 5}, - [1413] = {.lex_state = 40, .external_lex_state = 2}, - [1414] = {.lex_state = 40, .external_lex_state = 2}, - [1415] = {.lex_state = 40, .external_lex_state = 2}, - [1416] = {.lex_state = 40, .external_lex_state = 2}, - [1417] = {.lex_state = 40, .external_lex_state = 2}, - [1418] = {.lex_state = 40, .external_lex_state = 2}, - [1419] = {.lex_state = 40, .external_lex_state = 2}, - [1420] = {.lex_state = 40, .external_lex_state = 2}, - [1421] = {.lex_state = 42, .external_lex_state = 5}, - [1422] = {.lex_state = 40, .external_lex_state = 2}, - [1423] = {.lex_state = 40, .external_lex_state = 2}, - [1424] = {.lex_state = 40, .external_lex_state = 2}, - [1425] = {.lex_state = 40, .external_lex_state = 2}, - [1426] = {.lex_state = 40, .external_lex_state = 2}, - [1427] = {.lex_state = 40, .external_lex_state = 2}, - [1428] = {.lex_state = 40, .external_lex_state = 2}, - [1429] = {.lex_state = 40, .external_lex_state = 2}, - [1430] = {.lex_state = 40, .external_lex_state = 2}, - [1431] = {.lex_state = 40, .external_lex_state = 2}, - [1432] = {.lex_state = 40, .external_lex_state = 2}, - [1433] = {.lex_state = 40, .external_lex_state = 2}, - [1434] = {.lex_state = 40, .external_lex_state = 2}, - [1435] = {.lex_state = 40, .external_lex_state = 2}, - [1436] = {.lex_state = 40, .external_lex_state = 2}, - [1437] = {.lex_state = 40, .external_lex_state = 2}, - [1438] = {.lex_state = 40, .external_lex_state = 2}, - [1439] = {.lex_state = 40, .external_lex_state = 2}, - [1440] = {.lex_state = 40, .external_lex_state = 2}, - [1441] = {.lex_state = 40, .external_lex_state = 2}, - [1442] = {.lex_state = 40, .external_lex_state = 2}, - [1443] = {.lex_state = 40, .external_lex_state = 2}, - [1444] = {.lex_state = 40, .external_lex_state = 2}, - [1445] = {.lex_state = 40, .external_lex_state = 2}, - [1446] = {.lex_state = 40, .external_lex_state = 2}, - [1447] = {.lex_state = 40, .external_lex_state = 2}, - [1448] = {.lex_state = 42, .external_lex_state = 5}, - [1449] = {.lex_state = 40, .external_lex_state = 2}, - [1450] = {.lex_state = 40, .external_lex_state = 2}, - [1451] = {.lex_state = 40, .external_lex_state = 2}, - [1452] = {.lex_state = 40, .external_lex_state = 2}, - [1453] = {.lex_state = 40, .external_lex_state = 2}, - [1454] = {.lex_state = 40, .external_lex_state = 2}, - [1455] = {.lex_state = 40, .external_lex_state = 2}, - [1456] = {.lex_state = 48, .external_lex_state = 2}, - [1457] = {.lex_state = 40, .external_lex_state = 2}, - [1458] = {.lex_state = 40, .external_lex_state = 2}, - [1459] = {.lex_state = 42, .external_lex_state = 5}, - [1460] = {.lex_state = 40, .external_lex_state = 2}, - [1461] = {.lex_state = 42, .external_lex_state = 5}, - [1462] = {.lex_state = 40, .external_lex_state = 2}, - [1463] = {.lex_state = 40, .external_lex_state = 2}, + [1388] = {.lex_state = 42, .external_lex_state = 5}, + [1389] = {.lex_state = 37, .external_lex_state = 2}, + [1390] = {.lex_state = 37, .external_lex_state = 5}, + [1391] = {.lex_state = 42, .external_lex_state = 2}, + [1392] = {.lex_state = 42, .external_lex_state = 2}, + [1393] = {.lex_state = 42, .external_lex_state = 2}, + [1394] = {.lex_state = 42, .external_lex_state = 2}, + [1395] = {.lex_state = 42, .external_lex_state = 2}, + [1396] = {.lex_state = 42, .external_lex_state = 2}, + [1397] = {.lex_state = 37, .external_lex_state = 5}, + [1398] = {.lex_state = 37, .external_lex_state = 5}, + [1399] = {.lex_state = 42, .external_lex_state = 2}, + [1400] = {.lex_state = 42, .external_lex_state = 2}, + [1401] = {.lex_state = 42, .external_lex_state = 2}, + [1402] = {.lex_state = 42, .external_lex_state = 2}, + [1403] = {.lex_state = 42, .external_lex_state = 2}, + [1404] = {.lex_state = 42, .external_lex_state = 2}, + [1405] = {.lex_state = 42, .external_lex_state = 2}, + [1406] = {.lex_state = 42, .external_lex_state = 2}, + [1407] = {.lex_state = 42, .external_lex_state = 2}, + [1408] = {.lex_state = 37, .external_lex_state = 5}, + [1409] = {.lex_state = 42, .external_lex_state = 2}, + [1410] = {.lex_state = 42, .external_lex_state = 2}, + [1411] = {.lex_state = 42, .external_lex_state = 2}, + [1412] = {.lex_state = 37, .external_lex_state = 5}, + [1413] = {.lex_state = 37, .external_lex_state = 5}, + [1414] = {.lex_state = 42, .external_lex_state = 2}, + [1415] = {.lex_state = 42, .external_lex_state = 2}, + [1416] = {.lex_state = 42, .external_lex_state = 2}, + [1417] = {.lex_state = 42, .external_lex_state = 2}, + [1418] = {.lex_state = 42, .external_lex_state = 2}, + [1419] = {.lex_state = 42, .external_lex_state = 2}, + [1420] = {.lex_state = 42, .external_lex_state = 2}, + [1421] = {.lex_state = 47, .external_lex_state = 2}, + [1422] = {.lex_state = 42, .external_lex_state = 2}, + [1423] = {.lex_state = 42, .external_lex_state = 2}, + [1424] = {.lex_state = 42, .external_lex_state = 2}, + [1425] = {.lex_state = 42, .external_lex_state = 2}, + [1426] = {.lex_state = 42, .external_lex_state = 2}, + [1427] = {.lex_state = 37, .external_lex_state = 5}, + [1428] = {.lex_state = 42, .external_lex_state = 2}, + [1429] = {.lex_state = 42, .external_lex_state = 2}, + [1430] = {.lex_state = 42, .external_lex_state = 2}, + [1431] = {.lex_state = 42, .external_lex_state = 2}, + [1432] = {.lex_state = 42, .external_lex_state = 2}, + [1433] = {.lex_state = 42, .external_lex_state = 2}, + [1434] = {.lex_state = 42, .external_lex_state = 2}, + [1435] = {.lex_state = 42, .external_lex_state = 2}, + [1436] = {.lex_state = 42, .external_lex_state = 2}, + [1437] = {.lex_state = 42, .external_lex_state = 2}, + [1438] = {.lex_state = 37, .external_lex_state = 2}, + [1439] = {.lex_state = 47, .external_lex_state = 2}, + [1440] = {.lex_state = 37, .external_lex_state = 2}, + [1441] = {.lex_state = 42, .external_lex_state = 2}, + [1442] = {.lex_state = 42, .external_lex_state = 2}, + [1443] = {.lex_state = 42, .external_lex_state = 2}, + [1444] = {.lex_state = 42, .external_lex_state = 2}, + [1445] = {.lex_state = 42, .external_lex_state = 2}, + [1446] = {.lex_state = 42, .external_lex_state = 2}, + [1447] = {.lex_state = 42, .external_lex_state = 2}, + [1448] = {.lex_state = 37, .external_lex_state = 5}, + [1449] = {.lex_state = 42, .external_lex_state = 2}, + [1450] = {.lex_state = 42, .external_lex_state = 2}, + [1451] = {.lex_state = 42, .external_lex_state = 2}, + [1452] = {.lex_state = 42, .external_lex_state = 2}, + [1453] = {.lex_state = 42, .external_lex_state = 2}, + [1454] = {.lex_state = 42, .external_lex_state = 2}, + [1455] = {.lex_state = 42, .external_lex_state = 2}, + [1456] = {.lex_state = 42, .external_lex_state = 2}, + [1457] = {.lex_state = 37, .external_lex_state = 5}, + [1458] = {.lex_state = 42, .external_lex_state = 2}, + [1459] = {.lex_state = 37, .external_lex_state = 5}, + [1460] = {.lex_state = 42, .external_lex_state = 2}, + [1461] = {.lex_state = 42, .external_lex_state = 2}, + [1462] = {.lex_state = 47, .external_lex_state = 2}, + [1463] = {.lex_state = 42, .external_lex_state = 2}, [1464] = {.lex_state = 42, .external_lex_state = 2}, [1465] = {.lex_state = 42, .external_lex_state = 2}, [1466] = {.lex_state = 42, .external_lex_state = 2}, [1467] = {.lex_state = 42, .external_lex_state = 2}, - [1468] = {.lex_state = 42, .external_lex_state = 2}, + [1468] = {.lex_state = 37, .external_lex_state = 5}, [1469] = {.lex_state = 42, .external_lex_state = 2}, [1470] = {.lex_state = 42, .external_lex_state = 2}, [1471] = {.lex_state = 42, .external_lex_state = 2}, [1472] = {.lex_state = 42, .external_lex_state = 2}, - [1473] = {.lex_state = 42, .external_lex_state = 2}, + [1473] = {.lex_state = 37, .external_lex_state = 5}, [1474] = {.lex_state = 42, .external_lex_state = 2}, [1475] = {.lex_state = 42, .external_lex_state = 2}, [1476] = {.lex_state = 42, .external_lex_state = 2}, @@ -24515,35 +24277,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1479] = {.lex_state = 42, .external_lex_state = 2}, [1480] = {.lex_state = 42, .external_lex_state = 2}, [1481] = {.lex_state = 42, .external_lex_state = 2}, - [1482] = {.lex_state = 42, .external_lex_state = 2}, + [1482] = {.lex_state = 37, .external_lex_state = 5}, [1483] = {.lex_state = 42, .external_lex_state = 2}, [1484] = {.lex_state = 42, .external_lex_state = 2}, [1485] = {.lex_state = 42, .external_lex_state = 2}, [1486] = {.lex_state = 37, .external_lex_state = 5}, [1487] = {.lex_state = 42, .external_lex_state = 2}, - [1488] = {.lex_state = 37, .external_lex_state = 5}, + [1488] = {.lex_state = 42, .external_lex_state = 2}, [1489] = {.lex_state = 42, .external_lex_state = 2}, - [1490] = {.lex_state = 37, .external_lex_state = 5}, + [1490] = {.lex_state = 42, .external_lex_state = 2}, [1491] = {.lex_state = 42, .external_lex_state = 2}, [1492] = {.lex_state = 42, .external_lex_state = 2}, - [1493] = {.lex_state = 42, .external_lex_state = 2}, - [1494] = {.lex_state = 42, .external_lex_state = 2}, - [1495] = {.lex_state = 37, .external_lex_state = 5}, + [1493] = {.lex_state = 37, .external_lex_state = 5}, + [1494] = {.lex_state = 47, .external_lex_state = 2}, + [1495] = {.lex_state = 42, .external_lex_state = 2}, [1496] = {.lex_state = 42, .external_lex_state = 2}, [1497] = {.lex_state = 42, .external_lex_state = 2}, [1498] = {.lex_state = 42, .external_lex_state = 2}, - [1499] = {.lex_state = 47, .external_lex_state = 2}, + [1499] = {.lex_state = 42, .external_lex_state = 2}, [1500] = {.lex_state = 42, .external_lex_state = 2}, [1501] = {.lex_state = 42, .external_lex_state = 2}, - [1502] = {.lex_state = 42, .external_lex_state = 2}, - [1503] = {.lex_state = 42, .external_lex_state = 2}, - [1504] = {.lex_state = 47, .external_lex_state = 2}, - [1505] = {.lex_state = 42, .external_lex_state = 2}, + [1502] = {.lex_state = 37, .external_lex_state = 5}, + [1503] = {.lex_state = 47, .external_lex_state = 2}, + [1504] = {.lex_state = 42, .external_lex_state = 2}, + [1505] = {.lex_state = 37, .external_lex_state = 5}, [1506] = {.lex_state = 42, .external_lex_state = 2}, - [1507] = {.lex_state = 42, .external_lex_state = 2}, - [1508] = {.lex_state = 42, .external_lex_state = 2}, + [1507] = {.lex_state = 37, .external_lex_state = 5}, + [1508] = {.lex_state = 37, .external_lex_state = 2}, [1509] = {.lex_state = 42, .external_lex_state = 2}, - [1510] = {.lex_state = 42, .external_lex_state = 2}, + [1510] = {.lex_state = 37, .external_lex_state = 5}, [1511] = {.lex_state = 42, .external_lex_state = 2}, [1512] = {.lex_state = 42, .external_lex_state = 2}, [1513] = {.lex_state = 42, .external_lex_state = 2}, @@ -24555,9 +24317,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1519] = {.lex_state = 42, .external_lex_state = 2}, [1520] = {.lex_state = 42, .external_lex_state = 2}, [1521] = {.lex_state = 42, .external_lex_state = 2}, - [1522] = {.lex_state = 37, .external_lex_state = 5}, - [1523] = {.lex_state = 37, .external_lex_state = 5}, - [1524] = {.lex_state = 37, .external_lex_state = 5}, + [1522] = {.lex_state = 42, .external_lex_state = 2}, + [1523] = {.lex_state = 42, .external_lex_state = 2}, + [1524] = {.lex_state = 42, .external_lex_state = 2}, [1525] = {.lex_state = 42, .external_lex_state = 2}, [1526] = {.lex_state = 42, .external_lex_state = 2}, [1527] = {.lex_state = 42, .external_lex_state = 2}, @@ -24567,131 +24329,131 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1531] = {.lex_state = 42, .external_lex_state = 2}, [1532] = {.lex_state = 42, .external_lex_state = 2}, [1533] = {.lex_state = 42, .external_lex_state = 2}, - [1534] = {.lex_state = 37, .external_lex_state = 5}, + [1534] = {.lex_state = 42, .external_lex_state = 2}, [1535] = {.lex_state = 42, .external_lex_state = 2}, [1536] = {.lex_state = 42, .external_lex_state = 2}, [1537] = {.lex_state = 42, .external_lex_state = 2}, [1538] = {.lex_state = 42, .external_lex_state = 2}, - [1539] = {.lex_state = 42, .external_lex_state = 2}, + [1539] = {.lex_state = 37, .external_lex_state = 5}, [1540] = {.lex_state = 42, .external_lex_state = 2}, - [1541] = {.lex_state = 42, .external_lex_state = 2}, + [1541] = {.lex_state = 37, .external_lex_state = 5}, [1542] = {.lex_state = 42, .external_lex_state = 2}, [1543] = {.lex_state = 42, .external_lex_state = 2}, [1544] = {.lex_state = 42, .external_lex_state = 2}, - [1545] = {.lex_state = 42, .external_lex_state = 2}, + [1545] = {.lex_state = 37, .external_lex_state = 5}, [1546] = {.lex_state = 42, .external_lex_state = 2}, [1547] = {.lex_state = 42, .external_lex_state = 2}, - [1548] = {.lex_state = 42, .external_lex_state = 2}, - [1549] = {.lex_state = 42, .external_lex_state = 2}, - [1550] = {.lex_state = 42, .external_lex_state = 2}, - [1551] = {.lex_state = 42, .external_lex_state = 2}, - [1552] = {.lex_state = 42, .external_lex_state = 2}, - [1553] = {.lex_state = 42, .external_lex_state = 2}, - [1554] = {.lex_state = 37, .external_lex_state = 5}, - [1555] = {.lex_state = 37, .external_lex_state = 5}, - [1556] = {.lex_state = 42, .external_lex_state = 2}, - [1557] = {.lex_state = 42, .external_lex_state = 2}, - [1558] = {.lex_state = 42, .external_lex_state = 2}, - [1559] = {.lex_state = 42, .external_lex_state = 2}, - [1560] = {.lex_state = 42, .external_lex_state = 2}, - [1561] = {.lex_state = 42, .external_lex_state = 2}, - [1562] = {.lex_state = 42, .external_lex_state = 2}, - [1563] = {.lex_state = 42, .external_lex_state = 2}, - [1564] = {.lex_state = 42, .external_lex_state = 2}, - [1565] = {.lex_state = 42, .external_lex_state = 2}, - [1566] = {.lex_state = 42, .external_lex_state = 2}, - [1567] = {.lex_state = 42, .external_lex_state = 2}, - [1568] = {.lex_state = 42, .external_lex_state = 2}, - [1569] = {.lex_state = 42, .external_lex_state = 2}, - [1570] = {.lex_state = 42, .external_lex_state = 2}, - [1571] = {.lex_state = 42, .external_lex_state = 2}, - [1572] = {.lex_state = 37, .external_lex_state = 5}, - [1573] = {.lex_state = 42, .external_lex_state = 2}, - [1574] = {.lex_state = 42, .external_lex_state = 2}, - [1575] = {.lex_state = 42, .external_lex_state = 2}, - [1576] = {.lex_state = 42, .external_lex_state = 2}, - [1577] = {.lex_state = 42, .external_lex_state = 2}, - [1578] = {.lex_state = 42, .external_lex_state = 2}, - [1579] = {.lex_state = 42, .external_lex_state = 2}, - [1580] = {.lex_state = 42, .external_lex_state = 2}, - [1581] = {.lex_state = 42, .external_lex_state = 2}, - [1582] = {.lex_state = 42, .external_lex_state = 2}, - [1583] = {.lex_state = 42, .external_lex_state = 2}, - [1584] = {.lex_state = 42, .external_lex_state = 2}, - [1585] = {.lex_state = 42, .external_lex_state = 2}, - [1586] = {.lex_state = 42, .external_lex_state = 2}, - [1587] = {.lex_state = 42, .external_lex_state = 2}, - [1588] = {.lex_state = 42, .external_lex_state = 2}, - [1589] = {.lex_state = 42, .external_lex_state = 2}, - [1590] = {.lex_state = 37, .external_lex_state = 5}, - [1591] = {.lex_state = 42, .external_lex_state = 2}, - [1592] = {.lex_state = 42, .external_lex_state = 2}, - [1593] = {.lex_state = 42, .external_lex_state = 2}, - [1594] = {.lex_state = 42, .external_lex_state = 2}, - [1595] = {.lex_state = 42, .external_lex_state = 2}, - [1596] = {.lex_state = 42, .external_lex_state = 2}, - [1597] = {.lex_state = 42, .external_lex_state = 2}, - [1598] = {.lex_state = 42, .external_lex_state = 2}, - [1599] = {.lex_state = 42, .external_lex_state = 2}, - [1600] = {.lex_state = 42, .external_lex_state = 2}, - [1601] = {.lex_state = 37, .external_lex_state = 5}, - [1602] = {.lex_state = 42, .external_lex_state = 2}, + [1548] = {.lex_state = 37, .external_lex_state = 2}, + [1549] = {.lex_state = 37, .external_lex_state = 2}, + [1550] = {.lex_state = 37, .external_lex_state = 2}, + [1551] = {.lex_state = 37, .external_lex_state = 2}, + [1552] = {.lex_state = 37, .external_lex_state = 2}, + [1553] = {.lex_state = 37, .external_lex_state = 2}, + [1554] = {.lex_state = 37, .external_lex_state = 2}, + [1555] = {.lex_state = 37, .external_lex_state = 2}, + [1556] = {.lex_state = 37, .external_lex_state = 2}, + [1557] = {.lex_state = 37, .external_lex_state = 2}, + [1558] = {.lex_state = 37, .external_lex_state = 2}, + [1559] = {.lex_state = 37, .external_lex_state = 2}, + [1560] = {.lex_state = 37, .external_lex_state = 2}, + [1561] = {.lex_state = 37, .external_lex_state = 2}, + [1562] = {.lex_state = 37, .external_lex_state = 2}, + [1563] = {.lex_state = 37, .external_lex_state = 2}, + [1564] = {.lex_state = 37, .external_lex_state = 2}, + [1565] = {.lex_state = 37, .external_lex_state = 2}, + [1566] = {.lex_state = 37, .external_lex_state = 2}, + [1567] = {.lex_state = 37, .external_lex_state = 2}, + [1568] = {.lex_state = 37, .external_lex_state = 2}, + [1569] = {.lex_state = 37, .external_lex_state = 2}, + [1570] = {.lex_state = 37, .external_lex_state = 2}, + [1571] = {.lex_state = 37, .external_lex_state = 2}, + [1572] = {.lex_state = 37, .external_lex_state = 2}, + [1573] = {.lex_state = 37, .external_lex_state = 2}, + [1574] = {.lex_state = 37, .external_lex_state = 2}, + [1575] = {.lex_state = 37, .external_lex_state = 2}, + [1576] = {.lex_state = 37, .external_lex_state = 2}, + [1577] = {.lex_state = 37, .external_lex_state = 2}, + [1578] = {.lex_state = 37, .external_lex_state = 2}, + [1579] = {.lex_state = 37, .external_lex_state = 2}, + [1580] = {.lex_state = 37, .external_lex_state = 2}, + [1581] = {.lex_state = 37, .external_lex_state = 2}, + [1582] = {.lex_state = 37, .external_lex_state = 2}, + [1583] = {.lex_state = 37, .external_lex_state = 2}, + [1584] = {.lex_state = 37, .external_lex_state = 2}, + [1585] = {.lex_state = 37, .external_lex_state = 2}, + [1586] = {.lex_state = 37, .external_lex_state = 2}, + [1587] = {.lex_state = 37, .external_lex_state = 2}, + [1588] = {.lex_state = 37, .external_lex_state = 2}, + [1589] = {.lex_state = 37, .external_lex_state = 2}, + [1590] = {.lex_state = 37, .external_lex_state = 2}, + [1591] = {.lex_state = 37, .external_lex_state = 2}, + [1592] = {.lex_state = 37, .external_lex_state = 2}, + [1593] = {.lex_state = 37, .external_lex_state = 2}, + [1594] = {.lex_state = 37, .external_lex_state = 2}, + [1595] = {.lex_state = 37, .external_lex_state = 2}, + [1596] = {.lex_state = 37, .external_lex_state = 2}, + [1597] = {.lex_state = 37, .external_lex_state = 2}, + [1598] = {.lex_state = 37, .external_lex_state = 2}, + [1599] = {.lex_state = 37, .external_lex_state = 2}, + [1600] = {.lex_state = 37, .external_lex_state = 2}, + [1601] = {.lex_state = 37, .external_lex_state = 2}, + [1602] = {.lex_state = 37, .external_lex_state = 2}, [1603] = {.lex_state = 37, .external_lex_state = 2}, [1604] = {.lex_state = 37, .external_lex_state = 2}, - [1605] = {.lex_state = 42, .external_lex_state = 2}, - [1606] = {.lex_state = 42, .external_lex_state = 2}, - [1607] = {.lex_state = 42, .external_lex_state = 2}, - [1608] = {.lex_state = 42, .external_lex_state = 2}, - [1609] = {.lex_state = 37, .external_lex_state = 5}, + [1605] = {.lex_state = 37, .external_lex_state = 2}, + [1606] = {.lex_state = 37, .external_lex_state = 2}, + [1607] = {.lex_state = 37, .external_lex_state = 2}, + [1608] = {.lex_state = 37, .external_lex_state = 2}, + [1609] = {.lex_state = 37, .external_lex_state = 2}, [1610] = {.lex_state = 37, .external_lex_state = 2}, - [1611] = {.lex_state = 42, .external_lex_state = 2}, - [1612] = {.lex_state = 42, .external_lex_state = 2}, - [1613] = {.lex_state = 42, .external_lex_state = 2}, - [1614] = {.lex_state = 42, .external_lex_state = 2}, - [1615] = {.lex_state = 42, .external_lex_state = 2}, - [1616] = {.lex_state = 42, .external_lex_state = 2}, - [1617] = {.lex_state = 42, .external_lex_state = 2}, - [1618] = {.lex_state = 42, .external_lex_state = 2}, - [1619] = {.lex_state = 42, .external_lex_state = 2}, - [1620] = {.lex_state = 42, .external_lex_state = 2}, - [1621] = {.lex_state = 42, .external_lex_state = 2}, - [1622] = {.lex_state = 42, .external_lex_state = 2}, - [1623] = {.lex_state = 42, .external_lex_state = 2}, - [1624] = {.lex_state = 37, .external_lex_state = 5}, - [1625] = {.lex_state = 42, .external_lex_state = 2}, - [1626] = {.lex_state = 42, .external_lex_state = 2}, - [1627] = {.lex_state = 42, .external_lex_state = 2}, - [1628] = {.lex_state = 42, .external_lex_state = 2}, - [1629] = {.lex_state = 42, .external_lex_state = 2}, - [1630] = {.lex_state = 42, .external_lex_state = 2}, - [1631] = {.lex_state = 42, .external_lex_state = 2}, - [1632] = {.lex_state = 42, .external_lex_state = 2}, - [1633] = {.lex_state = 42, .external_lex_state = 2}, - [1634] = {.lex_state = 42, .external_lex_state = 2}, - [1635] = {.lex_state = 42, .external_lex_state = 2}, - [1636] = {.lex_state = 42, .external_lex_state = 2}, - [1637] = {.lex_state = 42, .external_lex_state = 2}, - [1638] = {.lex_state = 42, .external_lex_state = 2}, - [1639] = {.lex_state = 42, .external_lex_state = 2}, - [1640] = {.lex_state = 37, .external_lex_state = 5}, - [1641] = {.lex_state = 42, .external_lex_state = 2}, - [1642] = {.lex_state = 47, .external_lex_state = 2}, - [1643] = {.lex_state = 42, .external_lex_state = 2}, - [1644] = {.lex_state = 42, .external_lex_state = 2}, - [1645] = {.lex_state = 42, .external_lex_state = 2}, - [1646] = {.lex_state = 42, .external_lex_state = 2}, - [1647] = {.lex_state = 42, .external_lex_state = 2}, - [1648] = {.lex_state = 42, .external_lex_state = 2}, - [1649] = {.lex_state = 42, .external_lex_state = 2}, - [1650] = {.lex_state = 47, .external_lex_state = 2}, - [1651] = {.lex_state = 37, .external_lex_state = 5}, - [1652] = {.lex_state = 37, .external_lex_state = 5}, - [1653] = {.lex_state = 37, .external_lex_state = 5}, - [1654] = {.lex_state = 47, .external_lex_state = 2}, - [1655] = {.lex_state = 37, .external_lex_state = 5}, - [1656] = {.lex_state = 37, .external_lex_state = 5}, - [1657] = {.lex_state = 37, .external_lex_state = 5}, - [1658] = {.lex_state = 42, .external_lex_state = 2}, + [1611] = {.lex_state = 37, .external_lex_state = 2}, + [1612] = {.lex_state = 37, .external_lex_state = 2}, + [1613] = {.lex_state = 37, .external_lex_state = 2}, + [1614] = {.lex_state = 37, .external_lex_state = 2}, + [1615] = {.lex_state = 37, .external_lex_state = 2}, + [1616] = {.lex_state = 37, .external_lex_state = 2}, + [1617] = {.lex_state = 37, .external_lex_state = 2}, + [1618] = {.lex_state = 37, .external_lex_state = 2}, + [1619] = {.lex_state = 37, .external_lex_state = 2}, + [1620] = {.lex_state = 37, .external_lex_state = 2}, + [1621] = {.lex_state = 37, .external_lex_state = 2}, + [1622] = {.lex_state = 37, .external_lex_state = 2}, + [1623] = {.lex_state = 37, .external_lex_state = 2}, + [1624] = {.lex_state = 37, .external_lex_state = 2}, + [1625] = {.lex_state = 37, .external_lex_state = 2}, + [1626] = {.lex_state = 37, .external_lex_state = 2}, + [1627] = {.lex_state = 37, .external_lex_state = 2}, + [1628] = {.lex_state = 37, .external_lex_state = 2}, + [1629] = {.lex_state = 37, .external_lex_state = 2}, + [1630] = {.lex_state = 37, .external_lex_state = 2}, + [1631] = {.lex_state = 37, .external_lex_state = 2}, + [1632] = {.lex_state = 37, .external_lex_state = 2}, + [1633] = {.lex_state = 37, .external_lex_state = 2}, + [1634] = {.lex_state = 37, .external_lex_state = 2}, + [1635] = {.lex_state = 37, .external_lex_state = 2}, + [1636] = {.lex_state = 37, .external_lex_state = 2}, + [1637] = {.lex_state = 37, .external_lex_state = 2}, + [1638] = {.lex_state = 37, .external_lex_state = 2}, + [1639] = {.lex_state = 37, .external_lex_state = 2}, + [1640] = {.lex_state = 37, .external_lex_state = 2}, + [1641] = {.lex_state = 37, .external_lex_state = 2}, + [1642] = {.lex_state = 37, .external_lex_state = 2}, + [1643] = {.lex_state = 37, .external_lex_state = 2}, + [1644] = {.lex_state = 37, .external_lex_state = 2}, + [1645] = {.lex_state = 37, .external_lex_state = 2}, + [1646] = {.lex_state = 37, .external_lex_state = 2}, + [1647] = {.lex_state = 37, .external_lex_state = 2}, + [1648] = {.lex_state = 37, .external_lex_state = 2}, + [1649] = {.lex_state = 37, .external_lex_state = 2}, + [1650] = {.lex_state = 37, .external_lex_state = 2}, + [1651] = {.lex_state = 37, .external_lex_state = 2}, + [1652] = {.lex_state = 37, .external_lex_state = 2}, + [1653] = {.lex_state = 37, .external_lex_state = 2}, + [1654] = {.lex_state = 37, .external_lex_state = 2}, + [1655] = {.lex_state = 37, .external_lex_state = 2}, + [1656] = {.lex_state = 37, .external_lex_state = 2}, + [1657] = {.lex_state = 37, .external_lex_state = 2}, + [1658] = {.lex_state = 37, .external_lex_state = 2}, [1659] = {.lex_state = 37, .external_lex_state = 2}, [1660] = {.lex_state = 37, .external_lex_state = 2}, [1661] = {.lex_state = 37, .external_lex_state = 2}, @@ -24722,298 +24484,298 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1686] = {.lex_state = 37, .external_lex_state = 2}, [1687] = {.lex_state = 37, .external_lex_state = 2}, [1688] = {.lex_state = 37, .external_lex_state = 2}, - [1689] = {.lex_state = 37, .external_lex_state = 2}, - [1690] = {.lex_state = 37, .external_lex_state = 2}, - [1691] = {.lex_state = 37, .external_lex_state = 2}, - [1692] = {.lex_state = 37, .external_lex_state = 2}, - [1693] = {.lex_state = 37, .external_lex_state = 2}, - [1694] = {.lex_state = 37, .external_lex_state = 2}, - [1695] = {.lex_state = 37, .external_lex_state = 2}, - [1696] = {.lex_state = 37, .external_lex_state = 2}, - [1697] = {.lex_state = 37, .external_lex_state = 2}, - [1698] = {.lex_state = 37, .external_lex_state = 2}, - [1699] = {.lex_state = 37, .external_lex_state = 2}, - [1700] = {.lex_state = 37, .external_lex_state = 2}, - [1701] = {.lex_state = 37, .external_lex_state = 2}, - [1702] = {.lex_state = 37, .external_lex_state = 2}, - [1703] = {.lex_state = 37, .external_lex_state = 2}, - [1704] = {.lex_state = 37, .external_lex_state = 2}, - [1705] = {.lex_state = 37, .external_lex_state = 2}, - [1706] = {.lex_state = 37, .external_lex_state = 2}, - [1707] = {.lex_state = 37, .external_lex_state = 2}, - [1708] = {.lex_state = 37, .external_lex_state = 2}, - [1709] = {.lex_state = 37, .external_lex_state = 2}, - [1710] = {.lex_state = 37, .external_lex_state = 2}, - [1711] = {.lex_state = 37, .external_lex_state = 2}, - [1712] = {.lex_state = 37, .external_lex_state = 2}, - [1713] = {.lex_state = 37, .external_lex_state = 2}, - [1714] = {.lex_state = 37, .external_lex_state = 2}, - [1715] = {.lex_state = 37, .external_lex_state = 2}, - [1716] = {.lex_state = 37, .external_lex_state = 2}, - [1717] = {.lex_state = 37, .external_lex_state = 2}, - [1718] = {.lex_state = 37, .external_lex_state = 2}, - [1719] = {.lex_state = 37, .external_lex_state = 2}, - [1720] = {.lex_state = 37, .external_lex_state = 2}, - [1721] = {.lex_state = 37, .external_lex_state = 2}, - [1722] = {.lex_state = 37, .external_lex_state = 2}, - [1723] = {.lex_state = 37, .external_lex_state = 2}, - [1724] = {.lex_state = 37, .external_lex_state = 2}, - [1725] = {.lex_state = 37, .external_lex_state = 2}, - [1726] = {.lex_state = 37, .external_lex_state = 2}, - [1727] = {.lex_state = 37, .external_lex_state = 2}, - [1728] = {.lex_state = 37, .external_lex_state = 2}, - [1729] = {.lex_state = 37, .external_lex_state = 2}, - [1730] = {.lex_state = 37, .external_lex_state = 2}, - [1731] = {.lex_state = 37, .external_lex_state = 2}, - [1732] = {.lex_state = 37, .external_lex_state = 2}, - [1733] = {.lex_state = 37, .external_lex_state = 2}, - [1734] = {.lex_state = 37, .external_lex_state = 2}, - [1735] = {.lex_state = 37, .external_lex_state = 2}, - [1736] = {.lex_state = 37, .external_lex_state = 2}, - [1737] = {.lex_state = 37, .external_lex_state = 2}, - [1738] = {.lex_state = 37, .external_lex_state = 2}, - [1739] = {.lex_state = 37, .external_lex_state = 2}, - [1740] = {.lex_state = 37, .external_lex_state = 2}, - [1741] = {.lex_state = 37, .external_lex_state = 2}, - [1742] = {.lex_state = 37, .external_lex_state = 2}, - [1743] = {.lex_state = 37, .external_lex_state = 2}, - [1744] = {.lex_state = 37, .external_lex_state = 2}, - [1745] = {.lex_state = 37, .external_lex_state = 2}, - [1746] = {.lex_state = 37, .external_lex_state = 2}, - [1747] = {.lex_state = 37, .external_lex_state = 2}, - [1748] = {.lex_state = 37, .external_lex_state = 2}, - [1749] = {.lex_state = 37, .external_lex_state = 2}, - [1750] = {.lex_state = 37, .external_lex_state = 2}, - [1751] = {.lex_state = 37, .external_lex_state = 2}, - [1752] = {.lex_state = 37, .external_lex_state = 2}, - [1753] = {.lex_state = 37, .external_lex_state = 2}, - [1754] = {.lex_state = 37, .external_lex_state = 2}, - [1755] = {.lex_state = 37, .external_lex_state = 2}, - [1756] = {.lex_state = 37, .external_lex_state = 2}, - [1757] = {.lex_state = 37, .external_lex_state = 2}, - [1758] = {.lex_state = 37, .external_lex_state = 2}, - [1759] = {.lex_state = 37, .external_lex_state = 2}, - [1760] = {.lex_state = 37, .external_lex_state = 2}, - [1761] = {.lex_state = 37, .external_lex_state = 2}, - [1762] = {.lex_state = 37, .external_lex_state = 2}, - [1763] = {.lex_state = 37, .external_lex_state = 2}, - [1764] = {.lex_state = 37, .external_lex_state = 2}, - [1765] = {.lex_state = 37, .external_lex_state = 2}, - [1766] = {.lex_state = 37, .external_lex_state = 2}, - [1767] = {.lex_state = 37, .external_lex_state = 2}, - [1768] = {.lex_state = 37, .external_lex_state = 2}, - [1769] = {.lex_state = 37, .external_lex_state = 2}, - [1770] = {.lex_state = 37, .external_lex_state = 2}, - [1771] = {.lex_state = 37, .external_lex_state = 2}, - [1772] = {.lex_state = 37, .external_lex_state = 2}, - [1773] = {.lex_state = 37, .external_lex_state = 2}, - [1774] = {.lex_state = 37, .external_lex_state = 2}, - [1775] = {.lex_state = 37, .external_lex_state = 2}, - [1776] = {.lex_state = 37, .external_lex_state = 2}, - [1777] = {.lex_state = 37, .external_lex_state = 2}, - [1778] = {.lex_state = 37, .external_lex_state = 2}, - [1779] = {.lex_state = 37, .external_lex_state = 2}, - [1780] = {.lex_state = 37, .external_lex_state = 2}, - [1781] = {.lex_state = 37, .external_lex_state = 2}, - [1782] = {.lex_state = 37, .external_lex_state = 2}, - [1783] = {.lex_state = 37, .external_lex_state = 2}, - [1784] = {.lex_state = 37, .external_lex_state = 2}, - [1785] = {.lex_state = 37, .external_lex_state = 2}, - [1786] = {.lex_state = 37, .external_lex_state = 2}, - [1787] = {.lex_state = 37, .external_lex_state = 2}, - [1788] = {.lex_state = 37, .external_lex_state = 2}, - [1789] = {.lex_state = 37, .external_lex_state = 2}, - [1790] = {.lex_state = 37, .external_lex_state = 2}, - [1791] = {.lex_state = 37, .external_lex_state = 2}, - [1792] = {.lex_state = 37, .external_lex_state = 2}, - [1793] = {.lex_state = 37, .external_lex_state = 2}, - [1794] = {.lex_state = 37, .external_lex_state = 2}, - [1795] = {.lex_state = 37, .external_lex_state = 2}, - [1796] = {.lex_state = 37, .external_lex_state = 2}, - [1797] = {.lex_state = 37, .external_lex_state = 2}, - [1798] = {.lex_state = 37, .external_lex_state = 2}, - [1799] = {.lex_state = 37, .external_lex_state = 2}, - [1800] = {.lex_state = 37, .external_lex_state = 2}, - [1801] = {.lex_state = 37, .external_lex_state = 2}, - [1802] = {.lex_state = 37, .external_lex_state = 2}, - [1803] = {.lex_state = 37, .external_lex_state = 2}, - [1804] = {.lex_state = 37, .external_lex_state = 2}, - [1805] = {.lex_state = 37, .external_lex_state = 2}, - [1806] = {.lex_state = 37, .external_lex_state = 2}, - [1807] = {.lex_state = 37, .external_lex_state = 2}, - [1808] = {.lex_state = 37, .external_lex_state = 2}, - [1809] = {.lex_state = 37, .external_lex_state = 2}, - [1810] = {.lex_state = 37, .external_lex_state = 2}, - [1811] = {.lex_state = 37, .external_lex_state = 2}, - [1812] = {.lex_state = 37, .external_lex_state = 2}, - [1813] = {.lex_state = 37, .external_lex_state = 2}, - [1814] = {.lex_state = 37, .external_lex_state = 2}, - [1815] = {.lex_state = 37, .external_lex_state = 2}, - [1816] = {.lex_state = 37, .external_lex_state = 2}, - [1817] = {.lex_state = 37, .external_lex_state = 2}, - [1818] = {.lex_state = 37, .external_lex_state = 2}, - [1819] = {.lex_state = 37, .external_lex_state = 2}, - [1820] = {.lex_state = 37, .external_lex_state = 2}, - [1821] = {.lex_state = 37, .external_lex_state = 2}, - [1822] = {.lex_state = 37, .external_lex_state = 2}, - [1823] = {.lex_state = 37, .external_lex_state = 2}, - [1824] = {.lex_state = 37, .external_lex_state = 2}, - [1825] = {.lex_state = 37, .external_lex_state = 2}, - [1826] = {.lex_state = 37, .external_lex_state = 2}, - [1827] = {.lex_state = 37, .external_lex_state = 2}, - [1828] = {.lex_state = 37, .external_lex_state = 2}, - [1829] = {.lex_state = 37, .external_lex_state = 2}, - [1830] = {.lex_state = 37, .external_lex_state = 2}, - [1831] = {.lex_state = 37, .external_lex_state = 2}, - [1832] = {.lex_state = 37, .external_lex_state = 2}, - [1833] = {.lex_state = 37, .external_lex_state = 2}, - [1834] = {.lex_state = 37, .external_lex_state = 2}, - [1835] = {.lex_state = 37, .external_lex_state = 2}, - [1836] = {.lex_state = 37, .external_lex_state = 2}, - [1837] = {.lex_state = 29, .external_lex_state = 4}, - [1838] = {.lex_state = 29, .external_lex_state = 4}, - [1839] = {.lex_state = 29, .external_lex_state = 4}, - [1840] = {.lex_state = 29, .external_lex_state = 4}, - [1841] = {.lex_state = 29, .external_lex_state = 4}, - [1842] = {.lex_state = 28, .external_lex_state = 4}, - [1843] = {.lex_state = 29, .external_lex_state = 4}, - [1844] = {.lex_state = 29, .external_lex_state = 4}, - [1845] = {.lex_state = 29, .external_lex_state = 4}, - [1846] = {.lex_state = 28, .external_lex_state = 4}, - [1847] = {.lex_state = 28, .external_lex_state = 4}, + [1689] = {.lex_state = 29, .external_lex_state = 4}, + [1690] = {.lex_state = 29, .external_lex_state = 4}, + [1691] = {.lex_state = 29, .external_lex_state = 4}, + [1692] = {.lex_state = 29, .external_lex_state = 4}, + [1693] = {.lex_state = 29, .external_lex_state = 4}, + [1694] = {.lex_state = 29, .external_lex_state = 4}, + [1695] = {.lex_state = 29, .external_lex_state = 4}, + [1696] = {.lex_state = 29, .external_lex_state = 4}, + [1697] = {.lex_state = 28, .external_lex_state = 4}, + [1698] = {.lex_state = 28, .external_lex_state = 4}, + [1699] = {.lex_state = 28, .external_lex_state = 4}, + [1700] = {.lex_state = 38, .external_lex_state = 2}, + [1701] = {.lex_state = 58, .external_lex_state = 2}, + [1702] = {.lex_state = 29, .external_lex_state = 4}, + [1703] = {.lex_state = 29, .external_lex_state = 4}, + [1704] = {.lex_state = 28, .external_lex_state = 4}, + [1705] = {.lex_state = 29, .external_lex_state = 4}, + [1706] = {.lex_state = 29, .external_lex_state = 4}, + [1707] = {.lex_state = 38, .external_lex_state = 2}, + [1708] = {.lex_state = 29, .external_lex_state = 4}, + [1709] = {.lex_state = 29, .external_lex_state = 4}, + [1710] = {.lex_state = 28, .external_lex_state = 4}, + [1711] = {.lex_state = 29, .external_lex_state = 4}, + [1712] = {.lex_state = 28, .external_lex_state = 4}, + [1713] = {.lex_state = 29, .external_lex_state = 4}, + [1714] = {.lex_state = 29, .external_lex_state = 4}, + [1715] = {.lex_state = 38, .external_lex_state = 2}, + [1716] = {.lex_state = 38, .external_lex_state = 2}, + [1717] = {.lex_state = 29, .external_lex_state = 4}, + [1718] = {.lex_state = 38, .external_lex_state = 2}, + [1719] = {.lex_state = 29, .external_lex_state = 4}, + [1720] = {.lex_state = 38, .external_lex_state = 2}, + [1721] = {.lex_state = 58, .external_lex_state = 2}, + [1722] = {.lex_state = 58, .external_lex_state = 2}, + [1723] = {.lex_state = 38, .external_lex_state = 2}, + [1724] = {.lex_state = 38, .external_lex_state = 2}, + [1725] = {.lex_state = 29, .external_lex_state = 4}, + [1726] = {.lex_state = 58, .external_lex_state = 2}, + [1727] = {.lex_state = 38, .external_lex_state = 2}, + [1728] = {.lex_state = 58, .external_lex_state = 2}, + [1729] = {.lex_state = 29, .external_lex_state = 4}, + [1730] = {.lex_state = 28, .external_lex_state = 4}, + [1731] = {.lex_state = 28, .external_lex_state = 4}, + [1732] = {.lex_state = 38, .external_lex_state = 2}, + [1733] = {.lex_state = 29, .external_lex_state = 4}, + [1734] = {.lex_state = 29, .external_lex_state = 4}, + [1735] = {.lex_state = 38, .external_lex_state = 2}, + [1736] = {.lex_state = 38, .external_lex_state = 2}, + [1737] = {.lex_state = 29, .external_lex_state = 4}, + [1738] = {.lex_state = 29, .external_lex_state = 4}, + [1739] = {.lex_state = 29, .external_lex_state = 4}, + [1740] = {.lex_state = 29, .external_lex_state = 4}, + [1741] = {.lex_state = 29, .external_lex_state = 4}, + [1742] = {.lex_state = 29, .external_lex_state = 4}, + [1743] = {.lex_state = 38, .external_lex_state = 2}, + [1744] = {.lex_state = 28, .external_lex_state = 4}, + [1745] = {.lex_state = 28, .external_lex_state = 4}, + [1746] = {.lex_state = 58, .external_lex_state = 2}, + [1747] = {.lex_state = 58, .external_lex_state = 2}, + [1748] = {.lex_state = 28, .external_lex_state = 4}, + [1749] = {.lex_state = 28, .external_lex_state = 4}, + [1750] = {.lex_state = 28, .external_lex_state = 4}, + [1751] = {.lex_state = 58, .external_lex_state = 2}, + [1752] = {.lex_state = 58, .external_lex_state = 2}, + [1753] = {.lex_state = 58, .external_lex_state = 2}, + [1754] = {.lex_state = 28, .external_lex_state = 4}, + [1755] = {.lex_state = 28, .external_lex_state = 4}, + [1756] = {.lex_state = 28, .external_lex_state = 4}, + [1757] = {.lex_state = 28, .external_lex_state = 4}, + [1758] = {.lex_state = 28, .external_lex_state = 4}, + [1759] = {.lex_state = 58, .external_lex_state = 2}, + [1760] = {.lex_state = 28, .external_lex_state = 4}, + [1761] = {.lex_state = 28, .external_lex_state = 4}, + [1762] = {.lex_state = 28, .external_lex_state = 4}, + [1763] = {.lex_state = 28, .external_lex_state = 4}, + [1764] = {.lex_state = 58, .external_lex_state = 2}, + [1765] = {.lex_state = 28, .external_lex_state = 4}, + [1766] = {.lex_state = 28, .external_lex_state = 4}, + [1767] = {.lex_state = 28, .external_lex_state = 4}, + [1768] = {.lex_state = 28, .external_lex_state = 4}, + [1769] = {.lex_state = 28, .external_lex_state = 4}, + [1770] = {.lex_state = 58, .external_lex_state = 2}, + [1771] = {.lex_state = 28, .external_lex_state = 4}, + [1772] = {.lex_state = 58, .external_lex_state = 2}, + [1773] = {.lex_state = 28, .external_lex_state = 4}, + [1774] = {.lex_state = 58, .external_lex_state = 2}, + [1775] = {.lex_state = 59, .external_lex_state = 2}, + [1776] = {.lex_state = 59, .external_lex_state = 2}, + [1777] = {.lex_state = 59, .external_lex_state = 2}, + [1778] = {.lex_state = 58, .external_lex_state = 2}, + [1779] = {.lex_state = 59, .external_lex_state = 2}, + [1780] = {.lex_state = 59, .external_lex_state = 2}, + [1781] = {.lex_state = 38, .external_lex_state = 2}, + [1782] = {.lex_state = 59, .external_lex_state = 2}, + [1783] = {.lex_state = 59, .external_lex_state = 2}, + [1784] = {.lex_state = 59, .external_lex_state = 2}, + [1785] = {.lex_state = 59, .external_lex_state = 2}, + [1786] = {.lex_state = 59, .external_lex_state = 2}, + [1787] = {.lex_state = 59, .external_lex_state = 2}, + [1788] = {.lex_state = 59, .external_lex_state = 2}, + [1789] = {.lex_state = 59, .external_lex_state = 2}, + [1790] = {.lex_state = 59, .external_lex_state = 2}, + [1791] = {.lex_state = 38, .external_lex_state = 2}, + [1792] = {.lex_state = 59, .external_lex_state = 2}, + [1793] = {.lex_state = 59, .external_lex_state = 2}, + [1794] = {.lex_state = 59, .external_lex_state = 2}, + [1795] = {.lex_state = 59, .external_lex_state = 2}, + [1796] = {.lex_state = 59, .external_lex_state = 2}, + [1797] = {.lex_state = 59, .external_lex_state = 2}, + [1798] = {.lex_state = 59, .external_lex_state = 2}, + [1799] = {.lex_state = 59, .external_lex_state = 2}, + [1800] = {.lex_state = 59, .external_lex_state = 2}, + [1801] = {.lex_state = 59, .external_lex_state = 2}, + [1802] = {.lex_state = 59, .external_lex_state = 2}, + [1803] = {.lex_state = 59, .external_lex_state = 2}, + [1804] = {.lex_state = 59, .external_lex_state = 2}, + [1805] = {.lex_state = 59, .external_lex_state = 2}, + [1806] = {.lex_state = 59, .external_lex_state = 2}, + [1807] = {.lex_state = 59, .external_lex_state = 2}, + [1808] = {.lex_state = 59, .external_lex_state = 2}, + [1809] = {.lex_state = 59, .external_lex_state = 2}, + [1810] = {.lex_state = 59, .external_lex_state = 2}, + [1811] = {.lex_state = 59, .external_lex_state = 2}, + [1812] = {.lex_state = 59, .external_lex_state = 2}, + [1813] = {.lex_state = 59, .external_lex_state = 2}, + [1814] = {.lex_state = 59, .external_lex_state = 2}, + [1815] = {.lex_state = 59, .external_lex_state = 2}, + [1816] = {.lex_state = 59, .external_lex_state = 2}, + [1817] = {.lex_state = 59, .external_lex_state = 2}, + [1818] = {.lex_state = 59, .external_lex_state = 2}, + [1819] = {.lex_state = 59, .external_lex_state = 2}, + [1820] = {.lex_state = 59, .external_lex_state = 2}, + [1821] = {.lex_state = 59, .external_lex_state = 2}, + [1822] = {.lex_state = 59, .external_lex_state = 2}, + [1823] = {.lex_state = 59, .external_lex_state = 2}, + [1824] = {.lex_state = 59, .external_lex_state = 2}, + [1825] = {.lex_state = 59, .external_lex_state = 2}, + [1826] = {.lex_state = 59, .external_lex_state = 2}, + [1827] = {.lex_state = 59, .external_lex_state = 2}, + [1828] = {.lex_state = 59, .external_lex_state = 2}, + [1829] = {.lex_state = 59, .external_lex_state = 2}, + [1830] = {.lex_state = 59, .external_lex_state = 2}, + [1831] = {.lex_state = 59, .external_lex_state = 2}, + [1832] = {.lex_state = 59, .external_lex_state = 2}, + [1833] = {.lex_state = 58, .external_lex_state = 2}, + [1834] = {.lex_state = 58, .external_lex_state = 2}, + [1835] = {.lex_state = 58, .external_lex_state = 2}, + [1836] = {.lex_state = 58, .external_lex_state = 2}, + [1837] = {.lex_state = 58, .external_lex_state = 2}, + [1838] = {.lex_state = 58, .external_lex_state = 2}, + [1839] = {.lex_state = 58, .external_lex_state = 2}, + [1840] = {.lex_state = 58, .external_lex_state = 2}, + [1841] = {.lex_state = 58, .external_lex_state = 2}, + [1842] = {.lex_state = 58, .external_lex_state = 2}, + [1843] = {.lex_state = 15, .external_lex_state = 4}, + [1844] = {.lex_state = 15, .external_lex_state = 4}, + [1845] = {.lex_state = 58, .external_lex_state = 2}, + [1846] = {.lex_state = 58, .external_lex_state = 2}, + [1847] = {.lex_state = 15, .external_lex_state = 4}, [1848] = {.lex_state = 58, .external_lex_state = 2}, - [1849] = {.lex_state = 38, .external_lex_state = 2}, - [1850] = {.lex_state = 38, .external_lex_state = 2}, - [1851] = {.lex_state = 29, .external_lex_state = 4}, - [1852] = {.lex_state = 58, .external_lex_state = 2}, - [1853] = {.lex_state = 29, .external_lex_state = 4}, - [1854] = {.lex_state = 29, .external_lex_state = 4}, - [1855] = {.lex_state = 29, .external_lex_state = 4}, - [1856] = {.lex_state = 29, .external_lex_state = 4}, - [1857] = {.lex_state = 29, .external_lex_state = 4}, - [1858] = {.lex_state = 38, .external_lex_state = 2}, - [1859] = {.lex_state = 38, .external_lex_state = 2}, - [1860] = {.lex_state = 38, .external_lex_state = 2}, - [1861] = {.lex_state = 28, .external_lex_state = 4}, - [1862] = {.lex_state = 29, .external_lex_state = 4}, - [1863] = {.lex_state = 38, .external_lex_state = 2}, - [1864] = {.lex_state = 28, .external_lex_state = 4}, - [1865] = {.lex_state = 29, .external_lex_state = 4}, - [1866] = {.lex_state = 38, .external_lex_state = 2}, + [1849] = {.lex_state = 58, .external_lex_state = 2}, + [1850] = {.lex_state = 15, .external_lex_state = 4}, + [1851] = {.lex_state = 58, .external_lex_state = 2}, + [1852] = {.lex_state = 15, .external_lex_state = 4}, + [1853] = {.lex_state = 15, .external_lex_state = 4}, + [1854] = {.lex_state = 15, .external_lex_state = 4}, + [1855] = {.lex_state = 15, .external_lex_state = 4}, + [1856] = {.lex_state = 15, .external_lex_state = 4}, + [1857] = {.lex_state = 15, .external_lex_state = 4}, + [1858] = {.lex_state = 15, .external_lex_state = 4}, + [1859] = {.lex_state = 15, .external_lex_state = 4}, + [1860] = {.lex_state = 58, .external_lex_state = 2}, + [1861] = {.lex_state = 58, .external_lex_state = 2}, + [1862] = {.lex_state = 58, .external_lex_state = 2}, + [1863] = {.lex_state = 58, .external_lex_state = 2}, + [1864] = {.lex_state = 58, .external_lex_state = 2}, + [1865] = {.lex_state = 36, .external_lex_state = 2}, + [1866] = {.lex_state = 58, .external_lex_state = 2}, [1867] = {.lex_state = 58, .external_lex_state = 2}, - [1868] = {.lex_state = 28, .external_lex_state = 4}, - [1869] = {.lex_state = 28, .external_lex_state = 4}, - [1870] = {.lex_state = 29, .external_lex_state = 4}, - [1871] = {.lex_state = 38, .external_lex_state = 2}, - [1872] = {.lex_state = 29, .external_lex_state = 4}, - [1873] = {.lex_state = 29, .external_lex_state = 4}, - [1874] = {.lex_state = 29, .external_lex_state = 4}, - [1875] = {.lex_state = 29, .external_lex_state = 4}, - [1876] = {.lex_state = 38, .external_lex_state = 2}, - [1877] = {.lex_state = 29, .external_lex_state = 4}, - [1878] = {.lex_state = 38, .external_lex_state = 2}, + [1868] = {.lex_state = 58, .external_lex_state = 2}, + [1869] = {.lex_state = 58, .external_lex_state = 2}, + [1870] = {.lex_state = 58, .external_lex_state = 2}, + [1871] = {.lex_state = 36, .external_lex_state = 2}, + [1872] = {.lex_state = 58, .external_lex_state = 2}, + [1873] = {.lex_state = 58, .external_lex_state = 2}, + [1874] = {.lex_state = 58, .external_lex_state = 2}, + [1875] = {.lex_state = 58, .external_lex_state = 2}, + [1876] = {.lex_state = 58, .external_lex_state = 2}, + [1877] = {.lex_state = 58, .external_lex_state = 2}, + [1878] = {.lex_state = 58, .external_lex_state = 2}, [1879] = {.lex_state = 58, .external_lex_state = 2}, - [1880] = {.lex_state = 29, .external_lex_state = 4}, - [1881] = {.lex_state = 29, .external_lex_state = 4}, - [1882] = {.lex_state = 29, .external_lex_state = 4}, - [1883] = {.lex_state = 29, .external_lex_state = 4}, + [1880] = {.lex_state = 58, .external_lex_state = 2}, + [1881] = {.lex_state = 58, .external_lex_state = 2}, + [1882] = {.lex_state = 58, .external_lex_state = 2}, + [1883] = {.lex_state = 58, .external_lex_state = 2}, [1884] = {.lex_state = 58, .external_lex_state = 2}, - [1885] = {.lex_state = 28, .external_lex_state = 4}, - [1886] = {.lex_state = 29, .external_lex_state = 4}, - [1887] = {.lex_state = 38, .external_lex_state = 2}, - [1888] = {.lex_state = 38, .external_lex_state = 2}, - [1889] = {.lex_state = 29, .external_lex_state = 4}, - [1890] = {.lex_state = 38, .external_lex_state = 2}, - [1891] = {.lex_state = 29, .external_lex_state = 4}, - [1892] = {.lex_state = 28, .external_lex_state = 4}, - [1893] = {.lex_state = 28, .external_lex_state = 4}, - [1894] = {.lex_state = 28, .external_lex_state = 4}, + [1885] = {.lex_state = 58, .external_lex_state = 2}, + [1886] = {.lex_state = 58, .external_lex_state = 2}, + [1887] = {.lex_state = 58, .external_lex_state = 2}, + [1888] = {.lex_state = 58, .external_lex_state = 2}, + [1889] = {.lex_state = 58, .external_lex_state = 2}, + [1890] = {.lex_state = 58, .external_lex_state = 2}, + [1891] = {.lex_state = 58, .external_lex_state = 2}, + [1892] = {.lex_state = 58, .external_lex_state = 2}, + [1893] = {.lex_state = 58, .external_lex_state = 2}, + [1894] = {.lex_state = 36, .external_lex_state = 2}, [1895] = {.lex_state = 58, .external_lex_state = 2}, - [1896] = {.lex_state = 28, .external_lex_state = 4}, + [1896] = {.lex_state = 58, .external_lex_state = 2}, [1897] = {.lex_state = 58, .external_lex_state = 2}, [1898] = {.lex_state = 58, .external_lex_state = 2}, - [1899] = {.lex_state = 28, .external_lex_state = 4}, - [1900] = {.lex_state = 28, .external_lex_state = 4}, - [1901] = {.lex_state = 28, .external_lex_state = 4}, + [1899] = {.lex_state = 58, .external_lex_state = 2}, + [1900] = {.lex_state = 58, .external_lex_state = 2}, + [1901] = {.lex_state = 58, .external_lex_state = 2}, [1902] = {.lex_state = 58, .external_lex_state = 2}, [1903] = {.lex_state = 58, .external_lex_state = 2}, - [1904] = {.lex_state = 28, .external_lex_state = 4}, + [1904] = {.lex_state = 58, .external_lex_state = 2}, [1905] = {.lex_state = 58, .external_lex_state = 2}, - [1906] = {.lex_state = 28, .external_lex_state = 4}, + [1906] = {.lex_state = 58, .external_lex_state = 2}, [1907] = {.lex_state = 58, .external_lex_state = 2}, - [1908] = {.lex_state = 28, .external_lex_state = 4}, - [1909] = {.lex_state = 28, .external_lex_state = 4}, - [1910] = {.lex_state = 28, .external_lex_state = 4}, + [1908] = {.lex_state = 58, .external_lex_state = 2}, + [1909] = {.lex_state = 58, .external_lex_state = 2}, + [1910] = {.lex_state = 58, .external_lex_state = 2}, [1911] = {.lex_state = 58, .external_lex_state = 2}, - [1912] = {.lex_state = 28, .external_lex_state = 4}, - [1913] = {.lex_state = 28, .external_lex_state = 4}, - [1914] = {.lex_state = 28, .external_lex_state = 4}, - [1915] = {.lex_state = 28, .external_lex_state = 4}, - [1916] = {.lex_state = 28, .external_lex_state = 4}, - [1917] = {.lex_state = 28, .external_lex_state = 4}, - [1918] = {.lex_state = 28, .external_lex_state = 4}, + [1912] = {.lex_state = 58, .external_lex_state = 2}, + [1913] = {.lex_state = 58, .external_lex_state = 2}, + [1914] = {.lex_state = 58, .external_lex_state = 2}, + [1915] = {.lex_state = 58, .external_lex_state = 2}, + [1916] = {.lex_state = 58, .external_lex_state = 2}, + [1917] = {.lex_state = 58, .external_lex_state = 2}, + [1918] = {.lex_state = 58, .external_lex_state = 2}, [1919] = {.lex_state = 58, .external_lex_state = 2}, [1920] = {.lex_state = 58, .external_lex_state = 2}, - [1921] = {.lex_state = 28, .external_lex_state = 4}, - [1922] = {.lex_state = 28, .external_lex_state = 4}, - [1923] = {.lex_state = 59, .external_lex_state = 2}, - [1924] = {.lex_state = 59, .external_lex_state = 2}, - [1925] = {.lex_state = 59, .external_lex_state = 2}, + [1921] = {.lex_state = 58, .external_lex_state = 2}, + [1922] = {.lex_state = 58, .external_lex_state = 2}, + [1923] = {.lex_state = 58, .external_lex_state = 2}, + [1924] = {.lex_state = 58, .external_lex_state = 2}, + [1925] = {.lex_state = 58, .external_lex_state = 2}, [1926] = {.lex_state = 58, .external_lex_state = 2}, - [1927] = {.lex_state = 59, .external_lex_state = 2}, - [1928] = {.lex_state = 59, .external_lex_state = 2}, - [1929] = {.lex_state = 59, .external_lex_state = 2}, - [1930] = {.lex_state = 59, .external_lex_state = 2}, - [1931] = {.lex_state = 59, .external_lex_state = 2}, - [1932] = {.lex_state = 59, .external_lex_state = 2}, - [1933] = {.lex_state = 59, .external_lex_state = 2}, - [1934] = {.lex_state = 59, .external_lex_state = 2}, - [1935] = {.lex_state = 59, .external_lex_state = 2}, - [1936] = {.lex_state = 59, .external_lex_state = 2}, - [1937] = {.lex_state = 59, .external_lex_state = 2}, - [1938] = {.lex_state = 38, .external_lex_state = 2}, - [1939] = {.lex_state = 59, .external_lex_state = 2}, - [1940] = {.lex_state = 59, .external_lex_state = 2}, - [1941] = {.lex_state = 59, .external_lex_state = 2}, - [1942] = {.lex_state = 59, .external_lex_state = 2}, - [1943] = {.lex_state = 59, .external_lex_state = 2}, - [1944] = {.lex_state = 59, .external_lex_state = 2}, - [1945] = {.lex_state = 59, .external_lex_state = 2}, - [1946] = {.lex_state = 59, .external_lex_state = 2}, - [1947] = {.lex_state = 59, .external_lex_state = 2}, - [1948] = {.lex_state = 38, .external_lex_state = 2}, - [1949] = {.lex_state = 59, .external_lex_state = 2}, - [1950] = {.lex_state = 59, .external_lex_state = 2}, - [1951] = {.lex_state = 59, .external_lex_state = 2}, - [1952] = {.lex_state = 59, .external_lex_state = 2}, - [1953] = {.lex_state = 59, .external_lex_state = 2}, - [1954] = {.lex_state = 59, .external_lex_state = 2}, - [1955] = {.lex_state = 59, .external_lex_state = 2}, - [1956] = {.lex_state = 59, .external_lex_state = 2}, - [1957] = {.lex_state = 59, .external_lex_state = 2}, - [1958] = {.lex_state = 59, .external_lex_state = 2}, - [1959] = {.lex_state = 59, .external_lex_state = 2}, - [1960] = {.lex_state = 59, .external_lex_state = 2}, - [1961] = {.lex_state = 59, .external_lex_state = 2}, - [1962] = {.lex_state = 59, .external_lex_state = 2}, - [1963] = {.lex_state = 59, .external_lex_state = 2}, - [1964] = {.lex_state = 59, .external_lex_state = 2}, - [1965] = {.lex_state = 59, .external_lex_state = 2}, - [1966] = {.lex_state = 59, .external_lex_state = 2}, - [1967] = {.lex_state = 59, .external_lex_state = 2}, - [1968] = {.lex_state = 59, .external_lex_state = 2}, - [1969] = {.lex_state = 59, .external_lex_state = 2}, - [1970] = {.lex_state = 59, .external_lex_state = 2}, - [1971] = {.lex_state = 59, .external_lex_state = 2}, - [1972] = {.lex_state = 59, .external_lex_state = 2}, - [1973] = {.lex_state = 59, .external_lex_state = 2}, - [1974] = {.lex_state = 59, .external_lex_state = 2}, - [1975] = {.lex_state = 59, .external_lex_state = 2}, - [1976] = {.lex_state = 59, .external_lex_state = 2}, - [1977] = {.lex_state = 59, .external_lex_state = 2}, - [1978] = {.lex_state = 59, .external_lex_state = 2}, - [1979] = {.lex_state = 59, .external_lex_state = 2}, - [1980] = {.lex_state = 59, .external_lex_state = 2}, + [1927] = {.lex_state = 58, .external_lex_state = 2}, + [1928] = {.lex_state = 58, .external_lex_state = 2}, + [1929] = {.lex_state = 58, .external_lex_state = 2}, + [1930] = {.lex_state = 58, .external_lex_state = 2}, + [1931] = {.lex_state = 58, .external_lex_state = 2}, + [1932] = {.lex_state = 58, .external_lex_state = 2}, + [1933] = {.lex_state = 58, .external_lex_state = 2}, + [1934] = {.lex_state = 58, .external_lex_state = 2}, + [1935] = {.lex_state = 58, .external_lex_state = 2}, + [1936] = {.lex_state = 58, .external_lex_state = 2}, + [1937] = {.lex_state = 58, .external_lex_state = 2}, + [1938] = {.lex_state = 58, .external_lex_state = 2}, + [1939] = {.lex_state = 58, .external_lex_state = 2}, + [1940] = {.lex_state = 58, .external_lex_state = 2}, + [1941] = {.lex_state = 58, .external_lex_state = 2}, + [1942] = {.lex_state = 58, .external_lex_state = 2}, + [1943] = {.lex_state = 58, .external_lex_state = 2}, + [1944] = {.lex_state = 58, .external_lex_state = 2}, + [1945] = {.lex_state = 58, .external_lex_state = 2}, + [1946] = {.lex_state = 58, .external_lex_state = 2}, + [1947] = {.lex_state = 58, .external_lex_state = 2}, + [1948] = {.lex_state = 58, .external_lex_state = 2}, + [1949] = {.lex_state = 58, .external_lex_state = 2}, + [1950] = {.lex_state = 58, .external_lex_state = 2}, + [1951] = {.lex_state = 58, .external_lex_state = 2}, + [1952] = {.lex_state = 58, .external_lex_state = 2}, + [1953] = {.lex_state = 58, .external_lex_state = 2}, + [1954] = {.lex_state = 58, .external_lex_state = 2}, + [1955] = {.lex_state = 58, .external_lex_state = 2}, + [1956] = {.lex_state = 58, .external_lex_state = 2}, + [1957] = {.lex_state = 58, .external_lex_state = 2}, + [1958] = {.lex_state = 58, .external_lex_state = 2}, + [1959] = {.lex_state = 58, .external_lex_state = 2}, + [1960] = {.lex_state = 58, .external_lex_state = 2}, + [1961] = {.lex_state = 58, .external_lex_state = 2}, + [1962] = {.lex_state = 58, .external_lex_state = 2}, + [1963] = {.lex_state = 58, .external_lex_state = 2}, + [1964] = {.lex_state = 58, .external_lex_state = 2}, + [1965] = {.lex_state = 58, .external_lex_state = 2}, + [1966] = {.lex_state = 58, .external_lex_state = 2}, + [1967] = {.lex_state = 58, .external_lex_state = 2}, + [1968] = {.lex_state = 58, .external_lex_state = 2}, + [1969] = {.lex_state = 58, .external_lex_state = 2}, + [1970] = {.lex_state = 58, .external_lex_state = 2}, + [1971] = {.lex_state = 58, .external_lex_state = 2}, + [1972] = {.lex_state = 58, .external_lex_state = 2}, + [1973] = {.lex_state = 58, .external_lex_state = 2}, + [1974] = {.lex_state = 58, .external_lex_state = 2}, + [1975] = {.lex_state = 58, .external_lex_state = 2}, + [1976] = {.lex_state = 58, .external_lex_state = 2}, + [1977] = {.lex_state = 58, .external_lex_state = 2}, + [1978] = {.lex_state = 58, .external_lex_state = 2}, + [1979] = {.lex_state = 58, .external_lex_state = 2}, + [1980] = {.lex_state = 58, .external_lex_state = 2}, [1981] = {.lex_state = 58, .external_lex_state = 2}, [1982] = {.lex_state = 58, .external_lex_state = 2}, [1983] = {.lex_state = 58, .external_lex_state = 2}, @@ -25024,809 +24786,809 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1988] = {.lex_state = 58, .external_lex_state = 2}, [1989] = {.lex_state = 58, .external_lex_state = 2}, [1990] = {.lex_state = 58, .external_lex_state = 2}, - [1991] = {.lex_state = 15, .external_lex_state = 4}, - [1992] = {.lex_state = 58, .external_lex_state = 2}, - [1993] = {.lex_state = 15, .external_lex_state = 4}, - [1994] = {.lex_state = 15, .external_lex_state = 4}, - [1995] = {.lex_state = 15, .external_lex_state = 4}, - [1996] = {.lex_state = 15, .external_lex_state = 4}, - [1997] = {.lex_state = 15, .external_lex_state = 4}, - [1998] = {.lex_state = 58, .external_lex_state = 2}, - [1999] = {.lex_state = 15, .external_lex_state = 4}, - [2000] = {.lex_state = 15, .external_lex_state = 4}, - [2001] = {.lex_state = 15, .external_lex_state = 4}, - [2002] = {.lex_state = 58, .external_lex_state = 2}, - [2003] = {.lex_state = 58, .external_lex_state = 2}, - [2004] = {.lex_state = 15, .external_lex_state = 4}, - [2005] = {.lex_state = 15, .external_lex_state = 4}, - [2006] = {.lex_state = 15, .external_lex_state = 4}, - [2007] = {.lex_state = 58, .external_lex_state = 2}, - [2008] = {.lex_state = 58, .external_lex_state = 2}, - [2009] = {.lex_state = 58, .external_lex_state = 2}, - [2010] = {.lex_state = 58, .external_lex_state = 2}, - [2011] = {.lex_state = 58, .external_lex_state = 2}, - [2012] = {.lex_state = 58, .external_lex_state = 2}, - [2013] = {.lex_state = 58, .external_lex_state = 2}, - [2014] = {.lex_state = 58, .external_lex_state = 2}, - [2015] = {.lex_state = 36, .external_lex_state = 2}, - [2016] = {.lex_state = 58, .external_lex_state = 2}, - [2017] = {.lex_state = 58, .external_lex_state = 2}, - [2018] = {.lex_state = 58, .external_lex_state = 2}, - [2019] = {.lex_state = 58, .external_lex_state = 2}, - [2020] = {.lex_state = 58, .external_lex_state = 2}, - [2021] = {.lex_state = 58, .external_lex_state = 2}, - [2022] = {.lex_state = 58, .external_lex_state = 2}, - [2023] = {.lex_state = 58, .external_lex_state = 2}, - [2024] = {.lex_state = 58, .external_lex_state = 2}, - [2025] = {.lex_state = 58, .external_lex_state = 2}, - [2026] = {.lex_state = 58, .external_lex_state = 2}, - [2027] = {.lex_state = 58, .external_lex_state = 2}, - [2028] = {.lex_state = 58, .external_lex_state = 2}, - [2029] = {.lex_state = 58, .external_lex_state = 2}, - [2030] = {.lex_state = 58, .external_lex_state = 2}, - [2031] = {.lex_state = 58, .external_lex_state = 2}, - [2032] = {.lex_state = 58, .external_lex_state = 2}, - [2033] = {.lex_state = 58, .external_lex_state = 2}, - [2034] = {.lex_state = 58, .external_lex_state = 2}, - [2035] = {.lex_state = 58, .external_lex_state = 2}, - [2036] = {.lex_state = 58, .external_lex_state = 2}, - [2037] = {.lex_state = 58, .external_lex_state = 2}, - [2038] = {.lex_state = 58, .external_lex_state = 2}, - [2039] = {.lex_state = 58, .external_lex_state = 2}, - [2040] = {.lex_state = 58, .external_lex_state = 2}, - [2041] = {.lex_state = 58, .external_lex_state = 2}, - [2042] = {.lex_state = 58, .external_lex_state = 2}, - [2043] = {.lex_state = 58, .external_lex_state = 2}, - [2044] = {.lex_state = 58, .external_lex_state = 2}, - [2045] = {.lex_state = 58, .external_lex_state = 2}, - [2046] = {.lex_state = 58, .external_lex_state = 2}, - [2047] = {.lex_state = 58, .external_lex_state = 2}, - [2048] = {.lex_state = 58, .external_lex_state = 2}, - [2049] = {.lex_state = 58, .external_lex_state = 2}, - [2050] = {.lex_state = 58, .external_lex_state = 2}, - [2051] = {.lex_state = 58, .external_lex_state = 2}, - [2052] = {.lex_state = 58, .external_lex_state = 2}, - [2053] = {.lex_state = 58, .external_lex_state = 2}, - [2054] = {.lex_state = 58, .external_lex_state = 2}, - [2055] = {.lex_state = 58, .external_lex_state = 2}, - [2056] = {.lex_state = 58, .external_lex_state = 2}, - [2057] = {.lex_state = 58, .external_lex_state = 2}, - [2058] = {.lex_state = 58, .external_lex_state = 2}, - [2059] = {.lex_state = 58, .external_lex_state = 2}, - [2060] = {.lex_state = 58, .external_lex_state = 2}, - [2061] = {.lex_state = 58, .external_lex_state = 2}, - [2062] = {.lex_state = 58, .external_lex_state = 2}, - [2063] = {.lex_state = 58, .external_lex_state = 2}, - [2064] = {.lex_state = 58, .external_lex_state = 2}, - [2065] = {.lex_state = 58, .external_lex_state = 2}, - [2066] = {.lex_state = 58, .external_lex_state = 2}, - [2067] = {.lex_state = 58, .external_lex_state = 2}, - [2068] = {.lex_state = 58, .external_lex_state = 2}, - [2069] = {.lex_state = 58, .external_lex_state = 2}, - [2070] = {.lex_state = 58, .external_lex_state = 2}, - [2071] = {.lex_state = 58, .external_lex_state = 2}, - [2072] = {.lex_state = 58, .external_lex_state = 2}, - [2073] = {.lex_state = 58, .external_lex_state = 2}, - [2074] = {.lex_state = 58, .external_lex_state = 2}, - [2075] = {.lex_state = 58, .external_lex_state = 2}, - [2076] = {.lex_state = 58, .external_lex_state = 2}, - [2077] = {.lex_state = 58, .external_lex_state = 2}, - [2078] = {.lex_state = 58, .external_lex_state = 2}, - [2079] = {.lex_state = 58, .external_lex_state = 2}, - [2080] = {.lex_state = 58, .external_lex_state = 2}, - [2081] = {.lex_state = 58, .external_lex_state = 2}, - [2082] = {.lex_state = 58, .external_lex_state = 2}, - [2083] = {.lex_state = 58, .external_lex_state = 2}, - [2084] = {.lex_state = 58, .external_lex_state = 2}, - [2085] = {.lex_state = 58, .external_lex_state = 2}, - [2086] = {.lex_state = 58, .external_lex_state = 2}, - [2087] = {.lex_state = 58, .external_lex_state = 2}, - [2088] = {.lex_state = 58, .external_lex_state = 2}, - [2089] = {.lex_state = 58, .external_lex_state = 2}, - [2090] = {.lex_state = 58, .external_lex_state = 2}, - [2091] = {.lex_state = 58, .external_lex_state = 2}, - [2092] = {.lex_state = 58, .external_lex_state = 2}, - [2093] = {.lex_state = 58, .external_lex_state = 2}, - [2094] = {.lex_state = 58, .external_lex_state = 2}, - [2095] = {.lex_state = 36, .external_lex_state = 2}, - [2096] = {.lex_state = 58, .external_lex_state = 2}, - [2097] = {.lex_state = 58, .external_lex_state = 2}, - [2098] = {.lex_state = 58, .external_lex_state = 2}, - [2099] = {.lex_state = 58, .external_lex_state = 2}, - [2100] = {.lex_state = 58, .external_lex_state = 2}, - [2101] = {.lex_state = 58, .external_lex_state = 2}, - [2102] = {.lex_state = 58, .external_lex_state = 2}, - [2103] = {.lex_state = 58, .external_lex_state = 2}, - [2104] = {.lex_state = 36, .external_lex_state = 2}, - [2105] = {.lex_state = 58, .external_lex_state = 2}, - [2106] = {.lex_state = 58, .external_lex_state = 2}, - [2107] = {.lex_state = 58, .external_lex_state = 2}, - [2108] = {.lex_state = 58, .external_lex_state = 2}, - [2109] = {.lex_state = 58, .external_lex_state = 2}, - [2110] = {.lex_state = 58, .external_lex_state = 2}, - [2111] = {.lex_state = 58, .external_lex_state = 2}, - [2112] = {.lex_state = 58, .external_lex_state = 2}, - [2113] = {.lex_state = 58, .external_lex_state = 2}, - [2114] = {.lex_state = 58, .external_lex_state = 2}, - [2115] = {.lex_state = 58, .external_lex_state = 2}, - [2116] = {.lex_state = 58, .external_lex_state = 2}, - [2117] = {.lex_state = 58, .external_lex_state = 2}, - [2118] = {.lex_state = 58, .external_lex_state = 2}, - [2119] = {.lex_state = 58, .external_lex_state = 2}, - [2120] = {.lex_state = 58, .external_lex_state = 2}, - [2121] = {.lex_state = 58, .external_lex_state = 2}, - [2122] = {.lex_state = 58, .external_lex_state = 2}, - [2123] = {.lex_state = 58, .external_lex_state = 2}, - [2124] = {.lex_state = 58, .external_lex_state = 2}, - [2125] = {.lex_state = 58, .external_lex_state = 2}, - [2126] = {.lex_state = 58, .external_lex_state = 2}, - [2127] = {.lex_state = 58, .external_lex_state = 2}, - [2128] = {.lex_state = 58, .external_lex_state = 2}, - [2129] = {.lex_state = 58, .external_lex_state = 2}, - [2130] = {.lex_state = 58, .external_lex_state = 2}, - [2131] = {.lex_state = 58, .external_lex_state = 2}, - [2132] = {.lex_state = 58, .external_lex_state = 2}, - [2133] = {.lex_state = 58, .external_lex_state = 2}, - [2134] = {.lex_state = 58, .external_lex_state = 2}, - [2135] = {.lex_state = 58, .external_lex_state = 2}, - [2136] = {.lex_state = 58, .external_lex_state = 2}, - [2137] = {.lex_state = 58, .external_lex_state = 2}, - [2138] = {.lex_state = 58, .external_lex_state = 2}, - [2139] = {.lex_state = 58, .external_lex_state = 2}, - [2140] = {.lex_state = 36, .external_lex_state = 2}, - [2141] = {.lex_state = 15, .external_lex_state = 3}, - [2142] = {.lex_state = 36, .external_lex_state = 2}, - [2143] = {.lex_state = 15, .external_lex_state = 3}, - [2144] = {.lex_state = 15, .external_lex_state = 3}, - [2145] = {.lex_state = 36, .external_lex_state = 2}, - [2146] = {.lex_state = 15, .external_lex_state = 4}, - [2147] = {.lex_state = 36, .external_lex_state = 2}, - [2148] = {.lex_state = 36, .external_lex_state = 2}, - [2149] = {.lex_state = 36, .external_lex_state = 2}, - [2150] = {.lex_state = 36, .external_lex_state = 2}, - [2151] = {.lex_state = 15, .external_lex_state = 3}, - [2152] = {.lex_state = 15, .external_lex_state = 4}, - [2153] = {.lex_state = 36, .external_lex_state = 2}, - [2154] = {.lex_state = 36, .external_lex_state = 2}, - [2155] = {.lex_state = 36, .external_lex_state = 2}, - [2156] = {.lex_state = 36, .external_lex_state = 2}, - [2157] = {.lex_state = 36, .external_lex_state = 2}, - [2158] = {.lex_state = 15, .external_lex_state = 3}, - [2159] = {.lex_state = 36, .external_lex_state = 2}, - [2160] = {.lex_state = 15, .external_lex_state = 4}, - [2161] = {.lex_state = 15, .external_lex_state = 4}, - [2162] = {.lex_state = 36, .external_lex_state = 2}, - [2163] = {.lex_state = 15, .external_lex_state = 4}, - [2164] = {.lex_state = 15, .external_lex_state = 4}, - [2165] = {.lex_state = 36, .external_lex_state = 2}, - [2166] = {.lex_state = 15, .external_lex_state = 3}, - [2167] = {.lex_state = 18, .external_lex_state = 4}, - [2168] = {.lex_state = 15, .external_lex_state = 4}, - [2169] = {.lex_state = 18, .external_lex_state = 4}, - [2170] = {.lex_state = 15, .external_lex_state = 4}, - [2171] = {.lex_state = 15, .external_lex_state = 4}, - [2172] = {.lex_state = 18, .external_lex_state = 4}, - [2173] = {.lex_state = 15, .external_lex_state = 4}, - [2174] = {.lex_state = 15, .external_lex_state = 4}, - [2175] = {.lex_state = 15, .external_lex_state = 4}, - [2176] = {.lex_state = 36, .external_lex_state = 2}, - [2177] = {.lex_state = 36, .external_lex_state = 2}, - [2178] = {.lex_state = 36, .external_lex_state = 2}, - [2179] = {.lex_state = 15, .external_lex_state = 4}, - [2180] = {.lex_state = 15, .external_lex_state = 4}, - [2181] = {.lex_state = 36, .external_lex_state = 2}, - [2182] = {.lex_state = 15, .external_lex_state = 4}, - [2183] = {.lex_state = 15, .external_lex_state = 4}, - [2184] = {.lex_state = 15, .external_lex_state = 4}, - [2185] = {.lex_state = 15, .external_lex_state = 4}, - [2186] = {.lex_state = 15, .external_lex_state = 4}, - [2187] = {.lex_state = 36, .external_lex_state = 2}, - [2188] = {.lex_state = 15, .external_lex_state = 4}, - [2189] = {.lex_state = 18, .external_lex_state = 4}, - [2190] = {.lex_state = 15, .external_lex_state = 4}, - [2191] = {.lex_state = 36, .external_lex_state = 2}, - [2192] = {.lex_state = 15, .external_lex_state = 4}, - [2193] = {.lex_state = 15, .external_lex_state = 4}, - [2194] = {.lex_state = 15, .external_lex_state = 4}, - [2195] = {.lex_state = 36, .external_lex_state = 2}, - [2196] = {.lex_state = 36, .external_lex_state = 2}, - [2197] = {.lex_state = 15, .external_lex_state = 3}, - [2198] = {.lex_state = 36, .external_lex_state = 2}, + [1991] = {.lex_state = 58, .external_lex_state = 2}, + [1992] = {.lex_state = 15, .external_lex_state = 3}, + [1993] = {.lex_state = 36, .external_lex_state = 2}, + [1994] = {.lex_state = 36, .external_lex_state = 2}, + [1995] = {.lex_state = 36, .external_lex_state = 2}, + [1996] = {.lex_state = 15, .external_lex_state = 3}, + [1997] = {.lex_state = 15, .external_lex_state = 3}, + [1998] = {.lex_state = 36, .external_lex_state = 2}, + [1999] = {.lex_state = 36, .external_lex_state = 2}, + [2000] = {.lex_state = 36, .external_lex_state = 2}, + [2001] = {.lex_state = 15, .external_lex_state = 3}, + [2002] = {.lex_state = 15, .external_lex_state = 4}, + [2003] = {.lex_state = 36, .external_lex_state = 2}, + [2004] = {.lex_state = 36, .external_lex_state = 2}, + [2005] = {.lex_state = 36, .external_lex_state = 2}, + [2006] = {.lex_state = 15, .external_lex_state = 3}, + [2007] = {.lex_state = 36, .external_lex_state = 2}, + [2008] = {.lex_state = 36, .external_lex_state = 2}, + [2009] = {.lex_state = 15, .external_lex_state = 4}, + [2010] = {.lex_state = 36, .external_lex_state = 2}, + [2011] = {.lex_state = 36, .external_lex_state = 2}, + [2012] = {.lex_state = 15, .external_lex_state = 4}, + [2013] = {.lex_state = 15, .external_lex_state = 4}, + [2014] = {.lex_state = 15, .external_lex_state = 4}, + [2015] = {.lex_state = 15, .external_lex_state = 3}, + [2016] = {.lex_state = 15, .external_lex_state = 4}, + [2017] = {.lex_state = 15, .external_lex_state = 4}, + [2018] = {.lex_state = 15, .external_lex_state = 4}, + [2019] = {.lex_state = 18, .external_lex_state = 4}, + [2020] = {.lex_state = 15, .external_lex_state = 4}, + [2021] = {.lex_state = 15, .external_lex_state = 4}, + [2022] = {.lex_state = 18, .external_lex_state = 4}, + [2023] = {.lex_state = 15, .external_lex_state = 4}, + [2024] = {.lex_state = 36, .external_lex_state = 2}, + [2025] = {.lex_state = 36, .external_lex_state = 2}, + [2026] = {.lex_state = 36, .external_lex_state = 2}, + [2027] = {.lex_state = 18, .external_lex_state = 4}, + [2028] = {.lex_state = 18, .external_lex_state = 4}, + [2029] = {.lex_state = 15, .external_lex_state = 4}, + [2030] = {.lex_state = 15, .external_lex_state = 4}, + [2031] = {.lex_state = 15, .external_lex_state = 4}, + [2032] = {.lex_state = 36, .external_lex_state = 2}, + [2033] = {.lex_state = 15, .external_lex_state = 4}, + [2034] = {.lex_state = 36, .external_lex_state = 2}, + [2035] = {.lex_state = 15, .external_lex_state = 4}, + [2036] = {.lex_state = 15, .external_lex_state = 4}, + [2037] = {.lex_state = 15, .external_lex_state = 4}, + [2038] = {.lex_state = 15, .external_lex_state = 4}, + [2039] = {.lex_state = 36, .external_lex_state = 2}, + [2040] = {.lex_state = 36, .external_lex_state = 2}, + [2041] = {.lex_state = 15, .external_lex_state = 4}, + [2042] = {.lex_state = 36, .external_lex_state = 2}, + [2043] = {.lex_state = 15, .external_lex_state = 4}, + [2044] = {.lex_state = 15, .external_lex_state = 4}, + [2045] = {.lex_state = 15, .external_lex_state = 3}, + [2046] = {.lex_state = 15, .external_lex_state = 4}, + [2047] = {.lex_state = 36, .external_lex_state = 2}, + [2048] = {.lex_state = 15, .external_lex_state = 4}, + [2049] = {.lex_state = 15, .external_lex_state = 4}, + [2050] = {.lex_state = 36, .external_lex_state = 2}, + [2051] = {.lex_state = 36, .external_lex_state = 2}, + [2052] = {.lex_state = 38, .external_lex_state = 2}, + [2053] = {.lex_state = 15, .external_lex_state = 4}, + [2054] = {.lex_state = 19, .external_lex_state = 3}, + [2055] = {.lex_state = 15, .external_lex_state = 4}, + [2056] = {.lex_state = 15, .external_lex_state = 4}, + [2057] = {.lex_state = 38, .external_lex_state = 2}, + [2058] = {.lex_state = 38, .external_lex_state = 2}, + [2059] = {.lex_state = 38, .external_lex_state = 2}, + [2060] = {.lex_state = 38, .external_lex_state = 2}, + [2061] = {.lex_state = 38, .external_lex_state = 2}, + [2062] = {.lex_state = 19, .external_lex_state = 3}, + [2063] = {.lex_state = 38, .external_lex_state = 2}, + [2064] = {.lex_state = 38, .external_lex_state = 2}, + [2065] = {.lex_state = 38, .external_lex_state = 2}, + [2066] = {.lex_state = 38, .external_lex_state = 2}, + [2067] = {.lex_state = 15, .external_lex_state = 4}, + [2068] = {.lex_state = 15, .external_lex_state = 3}, + [2069] = {.lex_state = 38, .external_lex_state = 2}, + [2070] = {.lex_state = 21, .external_lex_state = 4}, + [2071] = {.lex_state = 21, .external_lex_state = 3}, + [2072] = {.lex_state = 15, .external_lex_state = 4}, + [2073] = {.lex_state = 15, .external_lex_state = 4}, + [2074] = {.lex_state = 15, .external_lex_state = 4}, + [2075] = {.lex_state = 21, .external_lex_state = 4}, + [2076] = {.lex_state = 21, .external_lex_state = 4}, + [2077] = {.lex_state = 15, .external_lex_state = 3}, + [2078] = {.lex_state = 15, .external_lex_state = 4}, + [2079] = {.lex_state = 21, .external_lex_state = 3}, + [2080] = {.lex_state = 15, .external_lex_state = 4}, + [2081] = {.lex_state = 15, .external_lex_state = 4}, + [2082] = {.lex_state = 21, .external_lex_state = 3}, + [2083] = {.lex_state = 21, .external_lex_state = 3}, + [2084] = {.lex_state = 15, .external_lex_state = 4}, + [2085] = {.lex_state = 21, .external_lex_state = 3}, + [2086] = {.lex_state = 15, .external_lex_state = 4}, + [2087] = {.lex_state = 21, .external_lex_state = 4}, + [2088] = {.lex_state = 15, .external_lex_state = 4}, + [2089] = {.lex_state = 21, .external_lex_state = 3}, + [2090] = {.lex_state = 15, .external_lex_state = 4}, + [2091] = {.lex_state = 15, .external_lex_state = 4}, + [2092] = {.lex_state = 15, .external_lex_state = 4}, + [2093] = {.lex_state = 15, .external_lex_state = 4}, + [2094] = {.lex_state = 21, .external_lex_state = 3}, + [2095] = {.lex_state = 15, .external_lex_state = 4}, + [2096] = {.lex_state = 15, .external_lex_state = 4}, + [2097] = {.lex_state = 15, .external_lex_state = 4}, + [2098] = {.lex_state = 15, .external_lex_state = 4}, + [2099] = {.lex_state = 15, .external_lex_state = 4}, + [2100] = {.lex_state = 15, .external_lex_state = 4}, + [2101] = {.lex_state = 15, .external_lex_state = 4}, + [2102] = {.lex_state = 15, .external_lex_state = 4}, + [2103] = {.lex_state = 21, .external_lex_state = 4}, + [2104] = {.lex_state = 15, .external_lex_state = 3}, + [2105] = {.lex_state = 15, .external_lex_state = 4}, + [2106] = {.lex_state = 21, .external_lex_state = 4}, + [2107] = {.lex_state = 21, .external_lex_state = 4}, + [2108] = {.lex_state = 15, .external_lex_state = 4}, + [2109] = {.lex_state = 15, .external_lex_state = 4}, + [2110] = {.lex_state = 15, .external_lex_state = 3}, + [2111] = {.lex_state = 21, .external_lex_state = 4}, + [2112] = {.lex_state = 21, .external_lex_state = 3}, + [2113] = {.lex_state = 21, .external_lex_state = 4}, + [2114] = {.lex_state = 38, .external_lex_state = 2}, + [2115] = {.lex_state = 38, .external_lex_state = 2}, + [2116] = {.lex_state = 38, .external_lex_state = 2}, + [2117] = {.lex_state = 21, .external_lex_state = 4}, + [2118] = {.lex_state = 38, .external_lex_state = 2}, + [2119] = {.lex_state = 38, .external_lex_state = 2}, + [2120] = {.lex_state = 38, .external_lex_state = 2}, + [2121] = {.lex_state = 38, .external_lex_state = 2}, + [2122] = {.lex_state = 21, .external_lex_state = 3}, + [2123] = {.lex_state = 15, .external_lex_state = 3}, + [2124] = {.lex_state = 21, .external_lex_state = 4}, + [2125] = {.lex_state = 21, .external_lex_state = 3}, + [2126] = {.lex_state = 38, .external_lex_state = 2}, + [2127] = {.lex_state = 38, .external_lex_state = 2}, + [2128] = {.lex_state = 21, .external_lex_state = 4}, + [2129] = {.lex_state = 38, .external_lex_state = 2}, + [2130] = {.lex_state = 38, .external_lex_state = 2}, + [2131] = {.lex_state = 38, .external_lex_state = 2}, + [2132] = {.lex_state = 21, .external_lex_state = 3}, + [2133] = {.lex_state = 38, .external_lex_state = 2}, + [2134] = {.lex_state = 38, .external_lex_state = 2}, + [2135] = {.lex_state = 38, .external_lex_state = 2}, + [2136] = {.lex_state = 15, .external_lex_state = 3}, + [2137] = {.lex_state = 38, .external_lex_state = 2}, + [2138] = {.lex_state = 38, .external_lex_state = 2}, + [2139] = {.lex_state = 38, .external_lex_state = 2}, + [2140] = {.lex_state = 38, .external_lex_state = 2}, + [2141] = {.lex_state = 18, .external_lex_state = 3}, + [2142] = {.lex_state = 38, .external_lex_state = 2}, + [2143] = {.lex_state = 38, .external_lex_state = 2}, + [2144] = {.lex_state = 38, .external_lex_state = 2}, + [2145] = {.lex_state = 38, .external_lex_state = 2}, + [2146] = {.lex_state = 15, .external_lex_state = 3}, + [2147] = {.lex_state = 18, .external_lex_state = 3}, + [2148] = {.lex_state = 38, .external_lex_state = 2}, + [2149] = {.lex_state = 38, .external_lex_state = 2}, + [2150] = {.lex_state = 38, .external_lex_state = 2}, + [2151] = {.lex_state = 38, .external_lex_state = 2}, + [2152] = {.lex_state = 18, .external_lex_state = 3}, + [2153] = {.lex_state = 38, .external_lex_state = 2}, + [2154] = {.lex_state = 38, .external_lex_state = 2}, + [2155] = {.lex_state = 38, .external_lex_state = 2}, + [2156] = {.lex_state = 38, .external_lex_state = 2}, + [2157] = {.lex_state = 21, .external_lex_state = 3}, + [2158] = {.lex_state = 38, .external_lex_state = 2}, + [2159] = {.lex_state = 21, .external_lex_state = 3}, + [2160] = {.lex_state = 38, .external_lex_state = 2}, + [2161] = {.lex_state = 15, .external_lex_state = 3}, + [2162] = {.lex_state = 21, .external_lex_state = 3}, + [2163] = {.lex_state = 15, .external_lex_state = 3}, + [2164] = {.lex_state = 15, .external_lex_state = 3}, + [2165] = {.lex_state = 15, .external_lex_state = 3}, + [2166] = {.lex_state = 21, .external_lex_state = 3}, + [2167] = {.lex_state = 21, .external_lex_state = 3}, + [2168] = {.lex_state = 15, .external_lex_state = 3}, + [2169] = {.lex_state = 21, .external_lex_state = 4}, + [2170] = {.lex_state = 21, .external_lex_state = 3}, + [2171] = {.lex_state = 21, .external_lex_state = 3}, + [2172] = {.lex_state = 21, .external_lex_state = 3}, + [2173] = {.lex_state = 21, .external_lex_state = 4}, + [2174] = {.lex_state = 15, .external_lex_state = 3}, + [2175] = {.lex_state = 21, .external_lex_state = 3}, + [2176] = {.lex_state = 21, .external_lex_state = 4}, + [2177] = {.lex_state = 15, .external_lex_state = 3}, + [2178] = {.lex_state = 21, .external_lex_state = 3}, + [2179] = {.lex_state = 21, .external_lex_state = 3}, + [2180] = {.lex_state = 18, .external_lex_state = 3}, + [2181] = {.lex_state = 21, .external_lex_state = 3}, + [2182] = {.lex_state = 15, .external_lex_state = 3}, + [2183] = {.lex_state = 15, .external_lex_state = 3}, + [2184] = {.lex_state = 21, .external_lex_state = 3}, + [2185] = {.lex_state = 15, .external_lex_state = 3}, + [2186] = {.lex_state = 21, .external_lex_state = 4}, + [2187] = {.lex_state = 21, .external_lex_state = 3}, + [2188] = {.lex_state = 15, .external_lex_state = 3}, + [2189] = {.lex_state = 21, .external_lex_state = 3}, + [2190] = {.lex_state = 21, .external_lex_state = 3}, + [2191] = {.lex_state = 21, .external_lex_state = 3}, + [2192] = {.lex_state = 21, .external_lex_state = 4}, + [2193] = {.lex_state = 38, .external_lex_state = 2}, + [2194] = {.lex_state = 21, .external_lex_state = 3}, + [2195] = {.lex_state = 21, .external_lex_state = 3}, + [2196] = {.lex_state = 21, .external_lex_state = 3}, + [2197] = {.lex_state = 38, .external_lex_state = 2}, + [2198] = {.lex_state = 38, .external_lex_state = 2}, [2199] = {.lex_state = 15, .external_lex_state = 4}, - [2200] = {.lex_state = 38, .external_lex_state = 2}, - [2201] = {.lex_state = 38, .external_lex_state = 2}, + [2200] = {.lex_state = 21, .external_lex_state = 3}, + [2201] = {.lex_state = 21, .external_lex_state = 3}, [2202] = {.lex_state = 15, .external_lex_state = 4}, [2203] = {.lex_state = 38, .external_lex_state = 2}, - [2204] = {.lex_state = 15, .external_lex_state = 4}, - [2205] = {.lex_state = 38, .external_lex_state = 2}, - [2206] = {.lex_state = 38, .external_lex_state = 2}, - [2207] = {.lex_state = 15, .external_lex_state = 3}, - [2208] = {.lex_state = 38, .external_lex_state = 2}, - [2209] = {.lex_state = 15, .external_lex_state = 4}, - [2210] = {.lex_state = 38, .external_lex_state = 2}, + [2204] = {.lex_state = 21, .external_lex_state = 4}, + [2205] = {.lex_state = 15, .external_lex_state = 4}, + [2206] = {.lex_state = 21, .external_lex_state = 3}, + [2207] = {.lex_state = 38, .external_lex_state = 2}, + [2208] = {.lex_state = 15, .external_lex_state = 4}, + [2209] = {.lex_state = 38, .external_lex_state = 2}, + [2210] = {.lex_state = 21, .external_lex_state = 4}, [2211] = {.lex_state = 38, .external_lex_state = 2}, - [2212] = {.lex_state = 19, .external_lex_state = 3}, - [2213] = {.lex_state = 38, .external_lex_state = 2}, - [2214] = {.lex_state = 15, .external_lex_state = 4}, - [2215] = {.lex_state = 38, .external_lex_state = 2}, - [2216] = {.lex_state = 38, .external_lex_state = 2}, - [2217] = {.lex_state = 19, .external_lex_state = 3}, - [2218] = {.lex_state = 15, .external_lex_state = 4}, - [2219] = {.lex_state = 15, .external_lex_state = 4}, - [2220] = {.lex_state = 15, .external_lex_state = 4}, - [2221] = {.lex_state = 15, .external_lex_state = 4}, - [2222] = {.lex_state = 15, .external_lex_state = 4}, - [2223] = {.lex_state = 15, .external_lex_state = 4}, - [2224] = {.lex_state = 15, .external_lex_state = 4}, - [2225] = {.lex_state = 15, .external_lex_state = 4}, + [2212] = {.lex_state = 15, .external_lex_state = 4}, + [2213] = {.lex_state = 21, .external_lex_state = 3}, + [2214] = {.lex_state = 38, .external_lex_state = 2}, + [2215] = {.lex_state = 21, .external_lex_state = 3}, + [2216] = {.lex_state = 21, .external_lex_state = 3}, + [2217] = {.lex_state = 21, .external_lex_state = 3}, + [2218] = {.lex_state = 21, .external_lex_state = 3}, + [2219] = {.lex_state = 21, .external_lex_state = 4}, + [2220] = {.lex_state = 21, .external_lex_state = 3}, + [2221] = {.lex_state = 38, .external_lex_state = 2}, + [2222] = {.lex_state = 38, .external_lex_state = 2}, + [2223] = {.lex_state = 38, .external_lex_state = 2}, + [2224] = {.lex_state = 21, .external_lex_state = 3}, + [2225] = {.lex_state = 21, .external_lex_state = 3}, [2226] = {.lex_state = 15, .external_lex_state = 4}, - [2227] = {.lex_state = 15, .external_lex_state = 4}, + [2227] = {.lex_state = 21, .external_lex_state = 3}, [2228] = {.lex_state = 21, .external_lex_state = 4}, - [2229] = {.lex_state = 15, .external_lex_state = 4}, - [2230] = {.lex_state = 15, .external_lex_state = 4}, - [2231] = {.lex_state = 21, .external_lex_state = 3}, - [2232] = {.lex_state = 15, .external_lex_state = 4}, - [2233] = {.lex_state = 15, .external_lex_state = 3}, + [2229] = {.lex_state = 38, .external_lex_state = 2}, + [2230] = {.lex_state = 21, .external_lex_state = 4}, + [2231] = {.lex_state = 15, .external_lex_state = 4}, + [2232] = {.lex_state = 21, .external_lex_state = 4}, + [2233] = {.lex_state = 21, .external_lex_state = 4}, [2234] = {.lex_state = 21, .external_lex_state = 4}, - [2235] = {.lex_state = 15, .external_lex_state = 4}, - [2236] = {.lex_state = 15, .external_lex_state = 4}, - [2237] = {.lex_state = 15, .external_lex_state = 4}, - [2238] = {.lex_state = 21, .external_lex_state = 3}, - [2239] = {.lex_state = 15, .external_lex_state = 3}, - [2240] = {.lex_state = 21, .external_lex_state = 3}, + [2235] = {.lex_state = 21, .external_lex_state = 4}, + [2236] = {.lex_state = 21, .external_lex_state = 4}, + [2237] = {.lex_state = 21, .external_lex_state = 4}, + [2238] = {.lex_state = 21, .external_lex_state = 4}, + [2239] = {.lex_state = 21, .external_lex_state = 3}, + [2240] = {.lex_state = 21, .external_lex_state = 4}, [2241] = {.lex_state = 21, .external_lex_state = 4}, - [2242] = {.lex_state = 21, .external_lex_state = 3}, + [2242] = {.lex_state = 21, .external_lex_state = 4}, [2243] = {.lex_state = 21, .external_lex_state = 4}, - [2244] = {.lex_state = 15, .external_lex_state = 4}, + [2244] = {.lex_state = 21, .external_lex_state = 4}, [2245] = {.lex_state = 21, .external_lex_state = 4}, - [2246] = {.lex_state = 15, .external_lex_state = 4}, + [2246] = {.lex_state = 21, .external_lex_state = 3}, [2247] = {.lex_state = 21, .external_lex_state = 4}, [2248] = {.lex_state = 21, .external_lex_state = 4}, - [2249] = {.lex_state = 21, .external_lex_state = 3}, - [2250] = {.lex_state = 21, .external_lex_state = 3}, + [2249] = {.lex_state = 21, .external_lex_state = 4}, + [2250] = {.lex_state = 21, .external_lex_state = 4}, [2251] = {.lex_state = 21, .external_lex_state = 4}, - [2252] = {.lex_state = 21, .external_lex_state = 3}, - [2253] = {.lex_state = 15, .external_lex_state = 4}, - [2254] = {.lex_state = 21, .external_lex_state = 3}, - [2255] = {.lex_state = 15, .external_lex_state = 4}, - [2256] = {.lex_state = 15, .external_lex_state = 4}, - [2257] = {.lex_state = 21, .external_lex_state = 4}, - [2258] = {.lex_state = 15, .external_lex_state = 4}, - [2259] = {.lex_state = 15, .external_lex_state = 4}, - [2260] = {.lex_state = 15, .external_lex_state = 4}, - [2261] = {.lex_state = 15, .external_lex_state = 3}, - [2262] = {.lex_state = 15, .external_lex_state = 3}, - [2263] = {.lex_state = 38, .external_lex_state = 2}, - [2264] = {.lex_state = 38, .external_lex_state = 2}, - [2265] = {.lex_state = 21, .external_lex_state = 3}, + [2252] = {.lex_state = 21, .external_lex_state = 4}, + [2253] = {.lex_state = 21, .external_lex_state = 3}, + [2254] = {.lex_state = 21, .external_lex_state = 4}, + [2255] = {.lex_state = 21, .external_lex_state = 4}, + [2256] = {.lex_state = 21, .external_lex_state = 4}, + [2257] = {.lex_state = 21, .external_lex_state = 3}, + [2258] = {.lex_state = 21, .external_lex_state = 3}, + [2259] = {.lex_state = 21, .external_lex_state = 4}, + [2260] = {.lex_state = 21, .external_lex_state = 4}, + [2261] = {.lex_state = 21, .external_lex_state = 3}, + [2262] = {.lex_state = 21, .external_lex_state = 4}, + [2263] = {.lex_state = 21, .external_lex_state = 4}, + [2264] = {.lex_state = 21, .external_lex_state = 3}, + [2265] = {.lex_state = 21, .external_lex_state = 4}, [2266] = {.lex_state = 21, .external_lex_state = 3}, - [2267] = {.lex_state = 38, .external_lex_state = 2}, - [2268] = {.lex_state = 38, .external_lex_state = 2}, - [2269] = {.lex_state = 38, .external_lex_state = 2}, - [2270] = {.lex_state = 38, .external_lex_state = 2}, - [2271] = {.lex_state = 38, .external_lex_state = 2}, - [2272] = {.lex_state = 15, .external_lex_state = 3}, - [2273] = {.lex_state = 38, .external_lex_state = 2}, - [2274] = {.lex_state = 38, .external_lex_state = 2}, - [2275] = {.lex_state = 38, .external_lex_state = 2}, - [2276] = {.lex_state = 15, .external_lex_state = 3}, - [2277] = {.lex_state = 21, .external_lex_state = 3}, - [2278] = {.lex_state = 38, .external_lex_state = 2}, + [2267] = {.lex_state = 21, .external_lex_state = 4}, + [2268] = {.lex_state = 21, .external_lex_state = 4}, + [2269] = {.lex_state = 21, .external_lex_state = 3}, + [2270] = {.lex_state = 21, .external_lex_state = 3}, + [2271] = {.lex_state = 21, .external_lex_state = 3}, + [2272] = {.lex_state = 21, .external_lex_state = 4}, + [2273] = {.lex_state = 21, .external_lex_state = 3}, + [2274] = {.lex_state = 21, .external_lex_state = 4}, + [2275] = {.lex_state = 21, .external_lex_state = 4}, + [2276] = {.lex_state = 21, .external_lex_state = 4}, + [2277] = {.lex_state = 21, .external_lex_state = 4}, + [2278] = {.lex_state = 21, .external_lex_state = 4}, [2279] = {.lex_state = 21, .external_lex_state = 4}, - [2280] = {.lex_state = 38, .external_lex_state = 2}, - [2281] = {.lex_state = 38, .external_lex_state = 2}, - [2282] = {.lex_state = 38, .external_lex_state = 2}, - [2283] = {.lex_state = 38, .external_lex_state = 2}, - [2284] = {.lex_state = 38, .external_lex_state = 2}, + [2280] = {.lex_state = 21, .external_lex_state = 4}, + [2281] = {.lex_state = 21, .external_lex_state = 4}, + [2282] = {.lex_state = 21, .external_lex_state = 4}, + [2283] = {.lex_state = 21, .external_lex_state = 3}, + [2284] = {.lex_state = 21, .external_lex_state = 4}, [2285] = {.lex_state = 21, .external_lex_state = 3}, [2286] = {.lex_state = 38, .external_lex_state = 2}, [2287] = {.lex_state = 38, .external_lex_state = 2}, [2288] = {.lex_state = 38, .external_lex_state = 2}, [2289] = {.lex_state = 38, .external_lex_state = 2}, - [2290] = {.lex_state = 38, .external_lex_state = 2}, + [2290] = {.lex_state = 15, .external_lex_state = 4}, [2291] = {.lex_state = 38, .external_lex_state = 2}, - [2292] = {.lex_state = 38, .external_lex_state = 2}, - [2293] = {.lex_state = 38, .external_lex_state = 2}, - [2294] = {.lex_state = 38, .external_lex_state = 2}, - [2295] = {.lex_state = 38, .external_lex_state = 2}, - [2296] = {.lex_state = 15, .external_lex_state = 3}, - [2297] = {.lex_state = 21, .external_lex_state = 3}, + [2292] = {.lex_state = 21, .external_lex_state = 3}, + [2293] = {.lex_state = 15, .external_lex_state = 4}, + [2294] = {.lex_state = 21, .external_lex_state = 4}, + [2295] = {.lex_state = 21, .external_lex_state = 3}, + [2296] = {.lex_state = 15, .external_lex_state = 4}, + [2297] = {.lex_state = 38, .external_lex_state = 2}, [2298] = {.lex_state = 38, .external_lex_state = 2}, - [2299] = {.lex_state = 38, .external_lex_state = 2}, - [2300] = {.lex_state = 18, .external_lex_state = 3}, - [2301] = {.lex_state = 38, .external_lex_state = 2}, + [2299] = {.lex_state = 15, .external_lex_state = 4}, + [2300] = {.lex_state = 38, .external_lex_state = 2}, + [2301] = {.lex_state = 39, .external_lex_state = 2}, [2302] = {.lex_state = 38, .external_lex_state = 2}, [2303] = {.lex_state = 38, .external_lex_state = 2}, - [2304] = {.lex_state = 18, .external_lex_state = 3}, - [2305] = {.lex_state = 21, .external_lex_state = 4}, - [2306] = {.lex_state = 21, .external_lex_state = 4}, - [2307] = {.lex_state = 38, .external_lex_state = 2}, + [2304] = {.lex_state = 38, .external_lex_state = 2}, + [2305] = {.lex_state = 38, .external_lex_state = 2}, + [2306] = {.lex_state = 21, .external_lex_state = 3}, + [2307] = {.lex_state = 21, .external_lex_state = 3}, [2308] = {.lex_state = 38, .external_lex_state = 2}, - [2309] = {.lex_state = 21, .external_lex_state = 3}, - [2310] = {.lex_state = 18, .external_lex_state = 3}, - [2311] = {.lex_state = 21, .external_lex_state = 4}, - [2312] = {.lex_state = 15, .external_lex_state = 3}, - [2313] = {.lex_state = 15, .external_lex_state = 3}, - [2314] = {.lex_state = 21, .external_lex_state = 3}, - [2315] = {.lex_state = 15, .external_lex_state = 3}, - [2316] = {.lex_state = 15, .external_lex_state = 3}, - [2317] = {.lex_state = 21, .external_lex_state = 3}, - [2318] = {.lex_state = 21, .external_lex_state = 3}, - [2319] = {.lex_state = 18, .external_lex_state = 3}, - [2320] = {.lex_state = 15, .external_lex_state = 3}, - [2321] = {.lex_state = 21, .external_lex_state = 3}, - [2322] = {.lex_state = 21, .external_lex_state = 3}, + [2309] = {.lex_state = 38, .external_lex_state = 2}, + [2310] = {.lex_state = 38, .external_lex_state = 2}, + [2311] = {.lex_state = 39, .external_lex_state = 2}, + [2312] = {.lex_state = 38, .external_lex_state = 2}, + [2313] = {.lex_state = 21, .external_lex_state = 4}, + [2314] = {.lex_state = 38, .external_lex_state = 2}, + [2315] = {.lex_state = 21, .external_lex_state = 3}, + [2316] = {.lex_state = 21, .external_lex_state = 3}, + [2317] = {.lex_state = 38, .external_lex_state = 2}, + [2318] = {.lex_state = 38, .external_lex_state = 2}, + [2319] = {.lex_state = 38, .external_lex_state = 2}, + [2320] = {.lex_state = 38, .external_lex_state = 2}, + [2321] = {.lex_state = 38, .external_lex_state = 2}, + [2322] = {.lex_state = 38, .external_lex_state = 2}, [2323] = {.lex_state = 21, .external_lex_state = 3}, - [2324] = {.lex_state = 21, .external_lex_state = 3}, - [2325] = {.lex_state = 21, .external_lex_state = 3}, - [2326] = {.lex_state = 15, .external_lex_state = 3}, - [2327] = {.lex_state = 21, .external_lex_state = 3}, - [2328] = {.lex_state = 15, .external_lex_state = 3}, - [2329] = {.lex_state = 15, .external_lex_state = 3}, - [2330] = {.lex_state = 15, .external_lex_state = 3}, - [2331] = {.lex_state = 21, .external_lex_state = 4}, - [2332] = {.lex_state = 21, .external_lex_state = 3}, - [2333] = {.lex_state = 21, .external_lex_state = 3}, - [2334] = {.lex_state = 21, .external_lex_state = 4}, - [2335] = {.lex_state = 15, .external_lex_state = 3}, - [2336] = {.lex_state = 21, .external_lex_state = 3}, - [2337] = {.lex_state = 21, .external_lex_state = 3}, - [2338] = {.lex_state = 21, .external_lex_state = 4}, + [2324] = {.lex_state = 15, .external_lex_state = 4}, + [2325] = {.lex_state = 39, .external_lex_state = 2}, + [2326] = {.lex_state = 38, .external_lex_state = 2}, + [2327] = {.lex_state = 38, .external_lex_state = 2}, + [2328] = {.lex_state = 21, .external_lex_state = 3}, + [2329] = {.lex_state = 38, .external_lex_state = 2}, + [2330] = {.lex_state = 21, .external_lex_state = 3}, + [2331] = {.lex_state = 38, .external_lex_state = 2}, + [2332] = {.lex_state = 38, .external_lex_state = 2}, + [2333] = {.lex_state = 38, .external_lex_state = 2}, + [2334] = {.lex_state = 38, .external_lex_state = 2}, + [2335] = {.lex_state = 39, .external_lex_state = 2}, + [2336] = {.lex_state = 38, .external_lex_state = 2}, + [2337] = {.lex_state = 38, .external_lex_state = 2}, + [2338] = {.lex_state = 38, .external_lex_state = 2}, [2339] = {.lex_state = 38, .external_lex_state = 2}, - [2340] = {.lex_state = 38, .external_lex_state = 2}, - [2341] = {.lex_state = 21, .external_lex_state = 3}, + [2340] = {.lex_state = 15, .external_lex_state = 4}, + [2341] = {.lex_state = 38, .external_lex_state = 2}, [2342] = {.lex_state = 21, .external_lex_state = 3}, - [2343] = {.lex_state = 15, .external_lex_state = 4}, - [2344] = {.lex_state = 38, .external_lex_state = 2}, + [2343] = {.lex_state = 38, .external_lex_state = 2}, + [2344] = {.lex_state = 15, .external_lex_state = 4}, [2345] = {.lex_state = 38, .external_lex_state = 2}, - [2346] = {.lex_state = 21, .external_lex_state = 4}, - [2347] = {.lex_state = 21, .external_lex_state = 4}, - [2348] = {.lex_state = 38, .external_lex_state = 2}, - [2349] = {.lex_state = 21, .external_lex_state = 3}, + [2346] = {.lex_state = 39, .external_lex_state = 2}, + [2347] = {.lex_state = 38, .external_lex_state = 2}, + [2348] = {.lex_state = 39, .external_lex_state = 2}, + [2349] = {.lex_state = 38, .external_lex_state = 2}, [2350] = {.lex_state = 21, .external_lex_state = 3}, - [2351] = {.lex_state = 21, .external_lex_state = 4}, + [2351] = {.lex_state = 21, .external_lex_state = 3}, [2352] = {.lex_state = 38, .external_lex_state = 2}, - [2353] = {.lex_state = 15, .external_lex_state = 4}, + [2353] = {.lex_state = 38, .external_lex_state = 2}, [2354] = {.lex_state = 38, .external_lex_state = 2}, [2355] = {.lex_state = 38, .external_lex_state = 2}, - [2356] = {.lex_state = 38, .external_lex_state = 2}, - [2357] = {.lex_state = 38, .external_lex_state = 2}, - [2358] = {.lex_state = 15, .external_lex_state = 4}, + [2356] = {.lex_state = 39, .external_lex_state = 2}, + [2357] = {.lex_state = 21, .external_lex_state = 4}, + [2358] = {.lex_state = 38, .external_lex_state = 2}, [2359] = {.lex_state = 15, .external_lex_state = 4}, - [2360] = {.lex_state = 15, .external_lex_state = 4}, - [2361] = {.lex_state = 21, .external_lex_state = 3}, - [2362] = {.lex_state = 21, .external_lex_state = 4}, - [2363] = {.lex_state = 15, .external_lex_state = 4}, + [2360] = {.lex_state = 21, .external_lex_state = 3}, + [2361] = {.lex_state = 38, .external_lex_state = 2}, + [2362] = {.lex_state = 21, .external_lex_state = 3}, + [2363] = {.lex_state = 21, .external_lex_state = 3}, [2364] = {.lex_state = 21, .external_lex_state = 3}, [2365] = {.lex_state = 21, .external_lex_state = 3}, [2366] = {.lex_state = 21, .external_lex_state = 3}, [2367] = {.lex_state = 21, .external_lex_state = 3}, - [2368] = {.lex_state = 21, .external_lex_state = 4}, - [2369] = {.lex_state = 15, .external_lex_state = 4}, + [2368] = {.lex_state = 21, .external_lex_state = 3}, + [2369] = {.lex_state = 21, .external_lex_state = 4}, [2370] = {.lex_state = 21, .external_lex_state = 3}, - [2371] = {.lex_state = 21, .external_lex_state = 3}, - [2372] = {.lex_state = 38, .external_lex_state = 2}, + [2371] = {.lex_state = 21, .external_lex_state = 4}, + [2372] = {.lex_state = 21, .external_lex_state = 4}, [2373] = {.lex_state = 21, .external_lex_state = 3}, - [2374] = {.lex_state = 21, .external_lex_state = 4}, - [2375] = {.lex_state = 21, .external_lex_state = 3}, - [2376] = {.lex_state = 38, .external_lex_state = 2}, - [2377] = {.lex_state = 21, .external_lex_state = 3}, + [2374] = {.lex_state = 21, .external_lex_state = 3}, + [2375] = {.lex_state = 21, .external_lex_state = 4}, + [2376] = {.lex_state = 21, .external_lex_state = 4}, + [2377] = {.lex_state = 21, .external_lex_state = 4}, [2378] = {.lex_state = 21, .external_lex_state = 3}, [2379] = {.lex_state = 21, .external_lex_state = 3}, - [2380] = {.lex_state = 21, .external_lex_state = 4}, - [2381] = {.lex_state = 21, .external_lex_state = 4}, - [2382] = {.lex_state = 21, .external_lex_state = 4}, - [2383] = {.lex_state = 21, .external_lex_state = 4}, - [2384] = {.lex_state = 21, .external_lex_state = 3}, - [2385] = {.lex_state = 21, .external_lex_state = 4}, - [2386] = {.lex_state = 21, .external_lex_state = 4}, - [2387] = {.lex_state = 21, .external_lex_state = 4}, + [2380] = {.lex_state = 21, .external_lex_state = 3}, + [2381] = {.lex_state = 21, .external_lex_state = 3}, + [2382] = {.lex_state = 21, .external_lex_state = 3}, + [2383] = {.lex_state = 21, .external_lex_state = 3}, + [2384] = {.lex_state = 39, .external_lex_state = 2}, + [2385] = {.lex_state = 21, .external_lex_state = 3}, + [2386] = {.lex_state = 21, .external_lex_state = 3}, + [2387] = {.lex_state = 21, .external_lex_state = 3}, [2388] = {.lex_state = 21, .external_lex_state = 3}, [2389] = {.lex_state = 21, .external_lex_state = 3}, - [2390] = {.lex_state = 21, .external_lex_state = 4}, - [2391] = {.lex_state = 21, .external_lex_state = 4}, + [2390] = {.lex_state = 21, .external_lex_state = 3}, + [2391] = {.lex_state = 21, .external_lex_state = 3}, [2392] = {.lex_state = 21, .external_lex_state = 3}, [2393] = {.lex_state = 21, .external_lex_state = 4}, - [2394] = {.lex_state = 21, .external_lex_state = 4}, - [2395] = {.lex_state = 21, .external_lex_state = 4}, - [2396] = {.lex_state = 21, .external_lex_state = 4}, + [2394] = {.lex_state = 21, .external_lex_state = 3}, + [2395] = {.lex_state = 21, .external_lex_state = 3}, + [2396] = {.lex_state = 21, .external_lex_state = 3}, [2397] = {.lex_state = 21, .external_lex_state = 3}, - [2398] = {.lex_state = 21, .external_lex_state = 4}, - [2399] = {.lex_state = 21, .external_lex_state = 4}, - [2400] = {.lex_state = 21, .external_lex_state = 4}, - [2401] = {.lex_state = 21, .external_lex_state = 4}, - [2402] = {.lex_state = 21, .external_lex_state = 4}, - [2403] = {.lex_state = 21, .external_lex_state = 4}, - [2404] = {.lex_state = 21, .external_lex_state = 4}, - [2405] = {.lex_state = 21, .external_lex_state = 4}, - [2406] = {.lex_state = 21, .external_lex_state = 4}, - [2407] = {.lex_state = 21, .external_lex_state = 4}, - [2408] = {.lex_state = 21, .external_lex_state = 4}, - [2409] = {.lex_state = 21, .external_lex_state = 4}, - [2410] = {.lex_state = 21, .external_lex_state = 4}, - [2411] = {.lex_state = 21, .external_lex_state = 4}, - [2412] = {.lex_state = 21, .external_lex_state = 4}, + [2398] = {.lex_state = 21, .external_lex_state = 3}, + [2399] = {.lex_state = 21, .external_lex_state = 3}, + [2400] = {.lex_state = 21, .external_lex_state = 3}, + [2401] = {.lex_state = 21, .external_lex_state = 3}, + [2402] = {.lex_state = 79, .external_lex_state = 2}, + [2403] = {.lex_state = 79, .external_lex_state = 2}, + [2404] = {.lex_state = 21, .external_lex_state = 3}, + [2405] = {.lex_state = 21, .external_lex_state = 3}, + [2406] = {.lex_state = 21, .external_lex_state = 3}, + [2407] = {.lex_state = 21, .external_lex_state = 3}, + [2408] = {.lex_state = 21, .external_lex_state = 3}, + [2409] = {.lex_state = 21, .external_lex_state = 3}, + [2410] = {.lex_state = 21, .external_lex_state = 3}, + [2411] = {.lex_state = 79, .external_lex_state = 2}, + [2412] = {.lex_state = 21, .external_lex_state = 3}, [2413] = {.lex_state = 21, .external_lex_state = 3}, - [2414] = {.lex_state = 21, .external_lex_state = 4}, + [2414] = {.lex_state = 21, .external_lex_state = 3}, [2415] = {.lex_state = 21, .external_lex_state = 3}, - [2416] = {.lex_state = 21, .external_lex_state = 4}, - [2417] = {.lex_state = 21, .external_lex_state = 4}, - [2418] = {.lex_state = 21, .external_lex_state = 4}, - [2419] = {.lex_state = 21, .external_lex_state = 3}, - [2420] = {.lex_state = 21, .external_lex_state = 4}, - [2421] = {.lex_state = 21, .external_lex_state = 4}, - [2422] = {.lex_state = 21, .external_lex_state = 4}, - [2423] = {.lex_state = 21, .external_lex_state = 3}, - [2424] = {.lex_state = 21, .external_lex_state = 4}, - [2425] = {.lex_state = 21, .external_lex_state = 4}, - [2426] = {.lex_state = 21, .external_lex_state = 3}, - [2427] = {.lex_state = 21, .external_lex_state = 3}, - [2428] = {.lex_state = 21, .external_lex_state = 4}, - [2429] = {.lex_state = 21, .external_lex_state = 4}, - [2430] = {.lex_state = 21, .external_lex_state = 4}, - [2431] = {.lex_state = 21, .external_lex_state = 3}, - [2432] = {.lex_state = 21, .external_lex_state = 3}, + [2416] = {.lex_state = 21, .external_lex_state = 3}, + [2417] = {.lex_state = 21, .external_lex_state = 3}, + [2418] = {.lex_state = 21, .external_lex_state = 3}, + [2419] = {.lex_state = 79, .external_lex_state = 2}, + [2420] = {.lex_state = 21, .external_lex_state = 3}, + [2421] = {.lex_state = 21, .external_lex_state = 3}, + [2422] = {.lex_state = 21, .external_lex_state = 3}, + [2423] = {.lex_state = 79, .external_lex_state = 2}, + [2424] = {.lex_state = 79, .external_lex_state = 2}, + [2425] = {.lex_state = 79, .external_lex_state = 2}, + [2426] = {.lex_state = 79, .external_lex_state = 2}, + [2427] = {.lex_state = 79, .external_lex_state = 2}, + [2428] = {.lex_state = 39, .external_lex_state = 5}, + [2429] = {.lex_state = 21, .external_lex_state = 3}, + [2430] = {.lex_state = 21, .external_lex_state = 3}, + [2431] = {.lex_state = 39, .external_lex_state = 5}, + [2432] = {.lex_state = 39, .external_lex_state = 5}, [2433] = {.lex_state = 21, .external_lex_state = 3}, - [2434] = {.lex_state = 38, .external_lex_state = 2}, - [2435] = {.lex_state = 38, .external_lex_state = 2}, - [2436] = {.lex_state = 38, .external_lex_state = 2}, - [2437] = {.lex_state = 39, .external_lex_state = 2}, - [2438] = {.lex_state = 38, .external_lex_state = 2}, - [2439] = {.lex_state = 21, .external_lex_state = 3}, - [2440] = {.lex_state = 38, .external_lex_state = 2}, - [2441] = {.lex_state = 38, .external_lex_state = 2}, - [2442] = {.lex_state = 38, .external_lex_state = 2}, - [2443] = {.lex_state = 38, .external_lex_state = 2}, - [2444] = {.lex_state = 21, .external_lex_state = 3}, - [2445] = {.lex_state = 39, .external_lex_state = 2}, - [2446] = {.lex_state = 21, .external_lex_state = 3}, - [2447] = {.lex_state = 21, .external_lex_state = 3}, - [2448] = {.lex_state = 38, .external_lex_state = 2}, - [2449] = {.lex_state = 38, .external_lex_state = 2}, - [2450] = {.lex_state = 38, .external_lex_state = 2}, - [2451] = {.lex_state = 38, .external_lex_state = 2}, - [2452] = {.lex_state = 38, .external_lex_state = 2}, - [2453] = {.lex_state = 38, .external_lex_state = 2}, - [2454] = {.lex_state = 38, .external_lex_state = 2}, - [2455] = {.lex_state = 21, .external_lex_state = 4}, - [2456] = {.lex_state = 21, .external_lex_state = 3}, - [2457] = {.lex_state = 38, .external_lex_state = 2}, - [2458] = {.lex_state = 38, .external_lex_state = 2}, - [2459] = {.lex_state = 38, .external_lex_state = 2}, - [2460] = {.lex_state = 21, .external_lex_state = 3}, - [2461] = {.lex_state = 38, .external_lex_state = 2}, - [2462] = {.lex_state = 38, .external_lex_state = 2}, - [2463] = {.lex_state = 21, .external_lex_state = 3}, - [2464] = {.lex_state = 38, .external_lex_state = 2}, - [2465] = {.lex_state = 38, .external_lex_state = 2}, - [2466] = {.lex_state = 38, .external_lex_state = 2}, - [2467] = {.lex_state = 39, .external_lex_state = 2}, - [2468] = {.lex_state = 38, .external_lex_state = 2}, - [2469] = {.lex_state = 21, .external_lex_state = 3}, - [2470] = {.lex_state = 38, .external_lex_state = 2}, - [2471] = {.lex_state = 15, .external_lex_state = 4}, - [2472] = {.lex_state = 38, .external_lex_state = 2}, - [2473] = {.lex_state = 38, .external_lex_state = 2}, - [2474] = {.lex_state = 38, .external_lex_state = 2}, - [2475] = {.lex_state = 38, .external_lex_state = 2}, - [2476] = {.lex_state = 21, .external_lex_state = 3}, - [2477] = {.lex_state = 15, .external_lex_state = 4}, + [2434] = {.lex_state = 21, .external_lex_state = 3}, + [2435] = {.lex_state = 21, .external_lex_state = 3}, + [2436] = {.lex_state = 39, .external_lex_state = 5}, + [2437] = {.lex_state = 21, .external_lex_state = 3}, + [2438] = {.lex_state = 21, .external_lex_state = 3}, + [2439] = {.lex_state = 39, .external_lex_state = 5}, + [2440] = {.lex_state = 21, .external_lex_state = 3}, + [2441] = {.lex_state = 21, .external_lex_state = 3}, + [2442] = {.lex_state = 39, .external_lex_state = 5}, + [2443] = {.lex_state = 39, .external_lex_state = 5}, + [2444] = {.lex_state = 39, .external_lex_state = 5}, + [2445] = {.lex_state = 39, .external_lex_state = 5}, + [2446] = {.lex_state = 39, .external_lex_state = 5}, + [2447] = {.lex_state = 39, .external_lex_state = 5}, + [2448] = {.lex_state = 39, .external_lex_state = 5}, + [2449] = {.lex_state = 39, .external_lex_state = 5}, + [2450] = {.lex_state = 39, .external_lex_state = 5}, + [2451] = {.lex_state = 39, .external_lex_state = 5}, + [2452] = {.lex_state = 39, .external_lex_state = 5}, + [2453] = {.lex_state = 39, .external_lex_state = 5}, + [2454] = {.lex_state = 39, .external_lex_state = 5}, + [2455] = {.lex_state = 39, .external_lex_state = 5}, + [2456] = {.lex_state = 39, .external_lex_state = 5}, + [2457] = {.lex_state = 79, .external_lex_state = 2}, + [2458] = {.lex_state = 38, .external_lex_state = 5}, + [2459] = {.lex_state = 39, .external_lex_state = 5}, + [2460] = {.lex_state = 54, .external_lex_state = 5}, + [2461] = {.lex_state = 39, .external_lex_state = 5}, + [2462] = {.lex_state = 54, .external_lex_state = 5}, + [2463] = {.lex_state = 39, .external_lex_state = 5}, + [2464] = {.lex_state = 54, .external_lex_state = 5}, + [2465] = {.lex_state = 39, .external_lex_state = 5}, + [2466] = {.lex_state = 39, .external_lex_state = 5}, + [2467] = {.lex_state = 54, .external_lex_state = 5}, + [2468] = {.lex_state = 54, .external_lex_state = 5}, + [2469] = {.lex_state = 54, .external_lex_state = 5}, + [2470] = {.lex_state = 38, .external_lex_state = 5}, + [2471] = {.lex_state = 39, .external_lex_state = 5}, + [2472] = {.lex_state = 39, .external_lex_state = 2}, + [2473] = {.lex_state = 38, .external_lex_state = 5}, + [2474] = {.lex_state = 39, .external_lex_state = 2}, + [2475] = {.lex_state = 39, .external_lex_state = 2}, + [2476] = {.lex_state = 38, .external_lex_state = 5}, + [2477] = {.lex_state = 39, .external_lex_state = 5}, [2478] = {.lex_state = 39, .external_lex_state = 2}, - [2479] = {.lex_state = 21, .external_lex_state = 3}, - [2480] = {.lex_state = 38, .external_lex_state = 2}, - [2481] = {.lex_state = 15, .external_lex_state = 4}, - [2482] = {.lex_state = 38, .external_lex_state = 2}, - [2483] = {.lex_state = 38, .external_lex_state = 2}, - [2484] = {.lex_state = 38, .external_lex_state = 2}, - [2485] = {.lex_state = 38, .external_lex_state = 2}, - [2486] = {.lex_state = 38, .external_lex_state = 2}, - [2487] = {.lex_state = 38, .external_lex_state = 2}, - [2488] = {.lex_state = 38, .external_lex_state = 2}, - [2489] = {.lex_state = 21, .external_lex_state = 4}, - [2490] = {.lex_state = 21, .external_lex_state = 4}, - [2491] = {.lex_state = 39, .external_lex_state = 2}, - [2492] = {.lex_state = 15, .external_lex_state = 4}, - [2493] = {.lex_state = 38, .external_lex_state = 2}, - [2494] = {.lex_state = 38, .external_lex_state = 2}, - [2495] = {.lex_state = 21, .external_lex_state = 3}, - [2496] = {.lex_state = 38, .external_lex_state = 2}, - [2497] = {.lex_state = 15, .external_lex_state = 4}, - [2498] = {.lex_state = 15, .external_lex_state = 4}, - [2499] = {.lex_state = 15, .external_lex_state = 4}, - [2500] = {.lex_state = 15, .external_lex_state = 4}, - [2501] = {.lex_state = 39, .external_lex_state = 2}, - [2502] = {.lex_state = 39, .external_lex_state = 2}, - [2503] = {.lex_state = 21, .external_lex_state = 3}, - [2504] = {.lex_state = 38, .external_lex_state = 2}, - [2505] = {.lex_state = 21, .external_lex_state = 3}, - [2506] = {.lex_state = 38, .external_lex_state = 2}, - [2507] = {.lex_state = 21, .external_lex_state = 3}, - [2508] = {.lex_state = 21, .external_lex_state = 3}, - [2509] = {.lex_state = 38, .external_lex_state = 2}, - [2510] = {.lex_state = 38, .external_lex_state = 2}, - [2511] = {.lex_state = 38, .external_lex_state = 2}, - [2512] = {.lex_state = 21, .external_lex_state = 3}, - [2513] = {.lex_state = 21, .external_lex_state = 4}, - [2514] = {.lex_state = 21, .external_lex_state = 3}, - [2515] = {.lex_state = 21, .external_lex_state = 4}, - [2516] = {.lex_state = 21, .external_lex_state = 3}, - [2517] = {.lex_state = 21, .external_lex_state = 3}, - [2518] = {.lex_state = 21, .external_lex_state = 3}, - [2519] = {.lex_state = 21, .external_lex_state = 4}, - [2520] = {.lex_state = 21, .external_lex_state = 3}, - [2521] = {.lex_state = 21, .external_lex_state = 4}, - [2522] = {.lex_state = 21, .external_lex_state = 3}, - [2523] = {.lex_state = 21, .external_lex_state = 3}, - [2524] = {.lex_state = 21, .external_lex_state = 4}, - [2525] = {.lex_state = 21, .external_lex_state = 4}, - [2526] = {.lex_state = 21, .external_lex_state = 3}, - [2527] = {.lex_state = 21, .external_lex_state = 3}, - [2528] = {.lex_state = 21, .external_lex_state = 3}, - [2529] = {.lex_state = 21, .external_lex_state = 3}, - [2530] = {.lex_state = 21, .external_lex_state = 3}, - [2531] = {.lex_state = 39, .external_lex_state = 2}, - [2532] = {.lex_state = 21, .external_lex_state = 3}, - [2533] = {.lex_state = 21, .external_lex_state = 3}, - [2534] = {.lex_state = 21, .external_lex_state = 3}, - [2535] = {.lex_state = 21, .external_lex_state = 3}, - [2536] = {.lex_state = 21, .external_lex_state = 4}, - [2537] = {.lex_state = 21, .external_lex_state = 3}, - [2538] = {.lex_state = 21, .external_lex_state = 3}, - [2539] = {.lex_state = 21, .external_lex_state = 3}, - [2540] = {.lex_state = 21, .external_lex_state = 3}, - [2541] = {.lex_state = 21, .external_lex_state = 3}, - [2542] = {.lex_state = 21, .external_lex_state = 3}, - [2543] = {.lex_state = 79, .external_lex_state = 2}, - [2544] = {.lex_state = 21, .external_lex_state = 3}, - [2545] = {.lex_state = 21, .external_lex_state = 3}, - [2546] = {.lex_state = 21, .external_lex_state = 3}, - [2547] = {.lex_state = 79, .external_lex_state = 2}, - [2548] = {.lex_state = 79, .external_lex_state = 2}, - [2549] = {.lex_state = 79, .external_lex_state = 2}, - [2550] = {.lex_state = 21, .external_lex_state = 3}, - [2551] = {.lex_state = 21, .external_lex_state = 3}, - [2552] = {.lex_state = 21, .external_lex_state = 3}, - [2553] = {.lex_state = 21, .external_lex_state = 3}, - [2554] = {.lex_state = 21, .external_lex_state = 3}, - [2555] = {.lex_state = 21, .external_lex_state = 3}, - [2556] = {.lex_state = 21, .external_lex_state = 3}, - [2557] = {.lex_state = 21, .external_lex_state = 3}, - [2558] = {.lex_state = 79, .external_lex_state = 2}, - [2559] = {.lex_state = 21, .external_lex_state = 3}, - [2560] = {.lex_state = 79, .external_lex_state = 2}, - [2561] = {.lex_state = 21, .external_lex_state = 3}, - [2562] = {.lex_state = 79, .external_lex_state = 2}, - [2563] = {.lex_state = 21, .external_lex_state = 3}, - [2564] = {.lex_state = 79, .external_lex_state = 2}, - [2565] = {.lex_state = 79, .external_lex_state = 2}, - [2566] = {.lex_state = 21, .external_lex_state = 3}, - [2567] = {.lex_state = 21, .external_lex_state = 3}, - [2568] = {.lex_state = 21, .external_lex_state = 3}, - [2569] = {.lex_state = 21, .external_lex_state = 3}, - [2570] = {.lex_state = 21, .external_lex_state = 3}, - [2571] = {.lex_state = 21, .external_lex_state = 3}, - [2572] = {.lex_state = 21, .external_lex_state = 3}, - [2573] = {.lex_state = 21, .external_lex_state = 3}, - [2574] = {.lex_state = 21, .external_lex_state = 3}, - [2575] = {.lex_state = 21, .external_lex_state = 3}, - [2576] = {.lex_state = 21, .external_lex_state = 3}, - [2577] = {.lex_state = 39, .external_lex_state = 5}, - [2578] = {.lex_state = 21, .external_lex_state = 3}, - [2579] = {.lex_state = 21, .external_lex_state = 3}, - [2580] = {.lex_state = 21, .external_lex_state = 3}, - [2581] = {.lex_state = 21, .external_lex_state = 3}, - [2582] = {.lex_state = 21, .external_lex_state = 3}, + [2479] = {.lex_state = 39, .external_lex_state = 5}, + [2480] = {.lex_state = 39, .external_lex_state = 2}, + [2481] = {.lex_state = 39, .external_lex_state = 2}, + [2482] = {.lex_state = 39, .external_lex_state = 5}, + [2483] = {.lex_state = 38, .external_lex_state = 5}, + [2484] = {.lex_state = 39, .external_lex_state = 2}, + [2485] = {.lex_state = 38, .external_lex_state = 5}, + [2486] = {.lex_state = 39, .external_lex_state = 2}, + [2487] = {.lex_state = 39, .external_lex_state = 2}, + [2488] = {.lex_state = 38, .external_lex_state = 5}, + [2489] = {.lex_state = 38, .external_lex_state = 5}, + [2490] = {.lex_state = 39, .external_lex_state = 5}, + [2491] = {.lex_state = 39, .external_lex_state = 5}, + [2492] = {.lex_state = 39, .external_lex_state = 5}, + [2493] = {.lex_state = 39, .external_lex_state = 5}, + [2494] = {.lex_state = 39, .external_lex_state = 5}, + [2495] = {.lex_state = 39, .external_lex_state = 2}, + [2496] = {.lex_state = 39, .external_lex_state = 2}, + [2497] = {.lex_state = 39, .external_lex_state = 5}, + [2498] = {.lex_state = 39, .external_lex_state = 5}, + [2499] = {.lex_state = 39, .external_lex_state = 5}, + [2500] = {.lex_state = 39, .external_lex_state = 5}, + [2501] = {.lex_state = 39, .external_lex_state = 5}, + [2502] = {.lex_state = 39, .external_lex_state = 5}, + [2503] = {.lex_state = 39, .external_lex_state = 2}, + [2504] = {.lex_state = 39, .external_lex_state = 5}, + [2505] = {.lex_state = 39, .external_lex_state = 5}, + [2506] = {.lex_state = 54, .external_lex_state = 5}, + [2507] = {.lex_state = 25, .external_lex_state = 4}, + [2508] = {.lex_state = 39, .external_lex_state = 5}, + [2509] = {.lex_state = 39, .external_lex_state = 5}, + [2510] = {.lex_state = 39, .external_lex_state = 2}, + [2511] = {.lex_state = 39, .external_lex_state = 5}, + [2512] = {.lex_state = 39, .external_lex_state = 5}, + [2513] = {.lex_state = 39, .external_lex_state = 5}, + [2514] = {.lex_state = 39, .external_lex_state = 2}, + [2515] = {.lex_state = 39, .external_lex_state = 2}, + [2516] = {.lex_state = 39, .external_lex_state = 5}, + [2517] = {.lex_state = 39, .external_lex_state = 5}, + [2518] = {.lex_state = 39, .external_lex_state = 5}, + [2519] = {.lex_state = 39, .external_lex_state = 5}, + [2520] = {.lex_state = 39, .external_lex_state = 2}, + [2521] = {.lex_state = 39, .external_lex_state = 5}, + [2522] = {.lex_state = 39, .external_lex_state = 5}, + [2523] = {.lex_state = 39, .external_lex_state = 2}, + [2524] = {.lex_state = 39, .external_lex_state = 2}, + [2525] = {.lex_state = 39, .external_lex_state = 2}, + [2526] = {.lex_state = 39, .external_lex_state = 5}, + [2527] = {.lex_state = 39, .external_lex_state = 2}, + [2528] = {.lex_state = 39, .external_lex_state = 5}, + [2529] = {.lex_state = 39, .external_lex_state = 5}, + [2530] = {.lex_state = 39, .external_lex_state = 2}, + [2531] = {.lex_state = 39, .external_lex_state = 5}, + [2532] = {.lex_state = 25, .external_lex_state = 4}, + [2533] = {.lex_state = 39, .external_lex_state = 5}, + [2534] = {.lex_state = 39, .external_lex_state = 5}, + [2535] = {.lex_state = 39, .external_lex_state = 5}, + [2536] = {.lex_state = 39, .external_lex_state = 5}, + [2537] = {.lex_state = 39, .external_lex_state = 5}, + [2538] = {.lex_state = 39, .external_lex_state = 5}, + [2539] = {.lex_state = 39, .external_lex_state = 2}, + [2540] = {.lex_state = 39, .external_lex_state = 5}, + [2541] = {.lex_state = 39, .external_lex_state = 5}, + [2542] = {.lex_state = 39, .external_lex_state = 5}, + [2543] = {.lex_state = 39, .external_lex_state = 5}, + [2544] = {.lex_state = 39, .external_lex_state = 2}, + [2545] = {.lex_state = 39, .external_lex_state = 5}, + [2546] = {.lex_state = 39, .external_lex_state = 5}, + [2547] = {.lex_state = 39, .external_lex_state = 5}, + [2548] = {.lex_state = 39, .external_lex_state = 5}, + [2549] = {.lex_state = 39, .external_lex_state = 5}, + [2550] = {.lex_state = 39, .external_lex_state = 5}, + [2551] = {.lex_state = 39, .external_lex_state = 2}, + [2552] = {.lex_state = 39, .external_lex_state = 5}, + [2553] = {.lex_state = 39, .external_lex_state = 5}, + [2554] = {.lex_state = 39, .external_lex_state = 5}, + [2555] = {.lex_state = 39, .external_lex_state = 5}, + [2556] = {.lex_state = 39, .external_lex_state = 5}, + [2557] = {.lex_state = 39, .external_lex_state = 5}, + [2558] = {.lex_state = 39, .external_lex_state = 5}, + [2559] = {.lex_state = 39, .external_lex_state = 5}, + [2560] = {.lex_state = 54, .external_lex_state = 5}, + [2561] = {.lex_state = 39, .external_lex_state = 2}, + [2562] = {.lex_state = 39, .external_lex_state = 5}, + [2563] = {.lex_state = 39, .external_lex_state = 5}, + [2564] = {.lex_state = 39, .external_lex_state = 5}, + [2565] = {.lex_state = 39, .external_lex_state = 5}, + [2566] = {.lex_state = 39, .external_lex_state = 2}, + [2567] = {.lex_state = 39, .external_lex_state = 2}, + [2568] = {.lex_state = 39, .external_lex_state = 2}, + [2569] = {.lex_state = 39, .external_lex_state = 5}, + [2570] = {.lex_state = 39, .external_lex_state = 5}, + [2571] = {.lex_state = 39, .external_lex_state = 5}, + [2572] = {.lex_state = 39, .external_lex_state = 5}, + [2573] = {.lex_state = 39, .external_lex_state = 5}, + [2574] = {.lex_state = 39, .external_lex_state = 2}, + [2575] = {.lex_state = 39, .external_lex_state = 2}, + [2576] = {.lex_state = 39, .external_lex_state = 5}, + [2577] = {.lex_state = 39, .external_lex_state = 2}, + [2578] = {.lex_state = 39, .external_lex_state = 5}, + [2579] = {.lex_state = 39, .external_lex_state = 5}, + [2580] = {.lex_state = 39, .external_lex_state = 5}, + [2581] = {.lex_state = 39, .external_lex_state = 5}, + [2582] = {.lex_state = 39, .external_lex_state = 5}, [2583] = {.lex_state = 39, .external_lex_state = 5}, [2584] = {.lex_state = 39, .external_lex_state = 5}, - [2585] = {.lex_state = 21, .external_lex_state = 3}, - [2586] = {.lex_state = 39, .external_lex_state = 5}, - [2587] = {.lex_state = 21, .external_lex_state = 3}, - [2588] = {.lex_state = 39, .external_lex_state = 5}, - [2589] = {.lex_state = 21, .external_lex_state = 3}, - [2590] = {.lex_state = 39, .external_lex_state = 5}, + [2585] = {.lex_state = 39, .external_lex_state = 5}, + [2586] = {.lex_state = 25, .external_lex_state = 3}, + [2587] = {.lex_state = 39, .external_lex_state = 2}, + [2588] = {.lex_state = 39, .external_lex_state = 2}, + [2589] = {.lex_state = 39, .external_lex_state = 2}, + [2590] = {.lex_state = 39, .external_lex_state = 2}, [2591] = {.lex_state = 39, .external_lex_state = 5}, - [2592] = {.lex_state = 39, .external_lex_state = 5}, - [2593] = {.lex_state = 39, .external_lex_state = 5}, - [2594] = {.lex_state = 39, .external_lex_state = 5}, - [2595] = {.lex_state = 39, .external_lex_state = 5}, + [2592] = {.lex_state = 25, .external_lex_state = 3}, + [2593] = {.lex_state = 25, .external_lex_state = 3}, + [2594] = {.lex_state = 25, .external_lex_state = 3}, + [2595] = {.lex_state = 25, .external_lex_state = 3}, [2596] = {.lex_state = 39, .external_lex_state = 5}, [2597] = {.lex_state = 39, .external_lex_state = 5}, [2598] = {.lex_state = 39, .external_lex_state = 5}, [2599] = {.lex_state = 39, .external_lex_state = 5}, [2600] = {.lex_state = 39, .external_lex_state = 5}, [2601] = {.lex_state = 39, .external_lex_state = 5}, - [2602] = {.lex_state = 39, .external_lex_state = 5}, + [2602] = {.lex_state = 38, .external_lex_state = 2}, [2603] = {.lex_state = 39, .external_lex_state = 5}, - [2604] = {.lex_state = 39, .external_lex_state = 5}, - [2605] = {.lex_state = 39, .external_lex_state = 5}, - [2606] = {.lex_state = 39, .external_lex_state = 5}, - [2607] = {.lex_state = 39, .external_lex_state = 5}, - [2608] = {.lex_state = 54, .external_lex_state = 5}, - [2609] = {.lex_state = 79, .external_lex_state = 2}, + [2604] = {.lex_state = 38, .external_lex_state = 5}, + [2605] = {.lex_state = 38, .external_lex_state = 5}, + [2606] = {.lex_state = 25, .external_lex_state = 4}, + [2607] = {.lex_state = 25, .external_lex_state = 3}, + [2608] = {.lex_state = 39, .external_lex_state = 5}, + [2609] = {.lex_state = 38, .external_lex_state = 5}, [2610] = {.lex_state = 39, .external_lex_state = 5}, - [2611] = {.lex_state = 38, .external_lex_state = 5}, + [2611] = {.lex_state = 25, .external_lex_state = 3}, [2612] = {.lex_state = 39, .external_lex_state = 5}, - [2613] = {.lex_state = 54, .external_lex_state = 5}, - [2614] = {.lex_state = 54, .external_lex_state = 5}, - [2615] = {.lex_state = 54, .external_lex_state = 5}, - [2616] = {.lex_state = 54, .external_lex_state = 5}, - [2617] = {.lex_state = 54, .external_lex_state = 5}, - [2618] = {.lex_state = 39, .external_lex_state = 5}, - [2619] = {.lex_state = 38, .external_lex_state = 5}, + [2613] = {.lex_state = 39, .external_lex_state = 2}, + [2614] = {.lex_state = 39, .external_lex_state = 2}, + [2615] = {.lex_state = 25, .external_lex_state = 3}, + [2616] = {.lex_state = 25, .external_lex_state = 3}, + [2617] = {.lex_state = 25, .external_lex_state = 4}, + [2618] = {.lex_state = 39, .external_lex_state = 2}, + [2619] = {.lex_state = 25, .external_lex_state = 4}, [2620] = {.lex_state = 38, .external_lex_state = 5}, - [2621] = {.lex_state = 38, .external_lex_state = 5}, - [2622] = {.lex_state = 38, .external_lex_state = 5}, - [2623] = {.lex_state = 39, .external_lex_state = 5}, - [2624] = {.lex_state = 39, .external_lex_state = 2}, - [2625] = {.lex_state = 39, .external_lex_state = 2}, - [2626] = {.lex_state = 39, .external_lex_state = 2}, - [2627] = {.lex_state = 39, .external_lex_state = 5}, - [2628] = {.lex_state = 39, .external_lex_state = 5}, - [2629] = {.lex_state = 39, .external_lex_state = 2}, - [2630] = {.lex_state = 39, .external_lex_state = 2}, - [2631] = {.lex_state = 39, .external_lex_state = 5}, - [2632] = {.lex_state = 39, .external_lex_state = 2}, - [2633] = {.lex_state = 39, .external_lex_state = 5}, - [2634] = {.lex_state = 39, .external_lex_state = 5}, - [2635] = {.lex_state = 38, .external_lex_state = 5}, - [2636] = {.lex_state = 39, .external_lex_state = 2}, - [2637] = {.lex_state = 39, .external_lex_state = 5}, - [2638] = {.lex_state = 39, .external_lex_state = 2}, - [2639] = {.lex_state = 38, .external_lex_state = 5}, - [2640] = {.lex_state = 39, .external_lex_state = 5}, - [2641] = {.lex_state = 38, .external_lex_state = 5}, - [2642] = {.lex_state = 39, .external_lex_state = 2}, - [2643] = {.lex_state = 39, .external_lex_state = 5}, - [2644] = {.lex_state = 39, .external_lex_state = 5}, - [2645] = {.lex_state = 39, .external_lex_state = 5}, - [2646] = {.lex_state = 39, .external_lex_state = 5}, - [2647] = {.lex_state = 39, .external_lex_state = 5}, - [2648] = {.lex_state = 39, .external_lex_state = 5}, - [2649] = {.lex_state = 39, .external_lex_state = 2}, - [2650] = {.lex_state = 39, .external_lex_state = 2}, - [2651] = {.lex_state = 39, .external_lex_state = 5}, - [2652] = {.lex_state = 39, .external_lex_state = 5}, - [2653] = {.lex_state = 39, .external_lex_state = 5}, - [2654] = {.lex_state = 39, .external_lex_state = 2}, - [2655] = {.lex_state = 39, .external_lex_state = 2}, - [2656] = {.lex_state = 39, .external_lex_state = 2}, - [2657] = {.lex_state = 39, .external_lex_state = 5}, - [2658] = {.lex_state = 39, .external_lex_state = 2}, - [2659] = {.lex_state = 39, .external_lex_state = 5}, - [2660] = {.lex_state = 39, .external_lex_state = 2}, - [2661] = {.lex_state = 39, .external_lex_state = 5}, - [2662] = {.lex_state = 54, .external_lex_state = 5}, - [2663] = {.lex_state = 39, .external_lex_state = 5}, + [2621] = {.lex_state = 39, .external_lex_state = 5}, + [2622] = {.lex_state = 25, .external_lex_state = 4}, + [2623] = {.lex_state = 25, .external_lex_state = 3}, + [2624] = {.lex_state = 25, .external_lex_state = 3}, + [2625] = {.lex_state = 25, .external_lex_state = 3}, + [2626] = {.lex_state = 25, .external_lex_state = 3}, + [2627] = {.lex_state = 39, .external_lex_state = 2}, + [2628] = {.lex_state = 38, .external_lex_state = 5}, + [2629] = {.lex_state = 39, .external_lex_state = 5}, + [2630] = {.lex_state = 25, .external_lex_state = 3}, + [2631] = {.lex_state = 38, .external_lex_state = 5}, + [2632] = {.lex_state = 39, .external_lex_state = 5}, + [2633] = {.lex_state = 25, .external_lex_state = 3}, + [2634] = {.lex_state = 25, .external_lex_state = 3}, + [2635] = {.lex_state = 25, .external_lex_state = 3}, + [2636] = {.lex_state = 25, .external_lex_state = 3}, + [2637] = {.lex_state = 39, .external_lex_state = 2}, + [2638] = {.lex_state = 25, .external_lex_state = 3}, + [2639] = {.lex_state = 39, .external_lex_state = 5}, + [2640] = {.lex_state = 39, .external_lex_state = 2}, + [2641] = {.lex_state = 39, .external_lex_state = 2}, + [2642] = {.lex_state = 25, .external_lex_state = 3}, + [2643] = {.lex_state = 25, .external_lex_state = 3}, + [2644] = {.lex_state = 25, .external_lex_state = 3}, + [2645] = {.lex_state = 25, .external_lex_state = 3}, + [2646] = {.lex_state = 25, .external_lex_state = 3}, + [2647] = {.lex_state = 25, .external_lex_state = 3}, + [2648] = {.lex_state = 25, .external_lex_state = 3}, + [2649] = {.lex_state = 25, .external_lex_state = 3}, + [2650] = {.lex_state = 25, .external_lex_state = 3}, + [2651] = {.lex_state = 25, .external_lex_state = 3}, + [2652] = {.lex_state = 25, .external_lex_state = 3}, + [2653] = {.lex_state = 25, .external_lex_state = 3}, + [2654] = {.lex_state = 25, .external_lex_state = 3}, + [2655] = {.lex_state = 25, .external_lex_state = 3}, + [2656] = {.lex_state = 25, .external_lex_state = 3}, + [2657] = {.lex_state = 25, .external_lex_state = 3}, + [2658] = {.lex_state = 25, .external_lex_state = 3}, + [2659] = {.lex_state = 25, .external_lex_state = 3}, + [2660] = {.lex_state = 25, .external_lex_state = 3}, + [2661] = {.lex_state = 25, .external_lex_state = 3}, + [2662] = {.lex_state = 25, .external_lex_state = 3}, + [2663] = {.lex_state = 25, .external_lex_state = 3}, [2664] = {.lex_state = 39, .external_lex_state = 5}, - [2665] = {.lex_state = 39, .external_lex_state = 5}, - [2666] = {.lex_state = 39, .external_lex_state = 5}, - [2667] = {.lex_state = 39, .external_lex_state = 5}, - [2668] = {.lex_state = 39, .external_lex_state = 5}, - [2669] = {.lex_state = 39, .external_lex_state = 5}, - [2670] = {.lex_state = 25, .external_lex_state = 4}, - [2671] = {.lex_state = 39, .external_lex_state = 5}, - [2672] = {.lex_state = 39, .external_lex_state = 2}, - [2673] = {.lex_state = 39, .external_lex_state = 5}, - [2674] = {.lex_state = 39, .external_lex_state = 5}, - [2675] = {.lex_state = 39, .external_lex_state = 5}, - [2676] = {.lex_state = 39, .external_lex_state = 5}, - [2677] = {.lex_state = 54, .external_lex_state = 5}, - [2678] = {.lex_state = 39, .external_lex_state = 2}, + [2665] = {.lex_state = 25, .external_lex_state = 3}, + [2666] = {.lex_state = 25, .external_lex_state = 3}, + [2667] = {.lex_state = 25, .external_lex_state = 3}, + [2668] = {.lex_state = 25, .external_lex_state = 3}, + [2669] = {.lex_state = 25, .external_lex_state = 3}, + [2670] = {.lex_state = 25, .external_lex_state = 3}, + [2671] = {.lex_state = 25, .external_lex_state = 3}, + [2672] = {.lex_state = 25, .external_lex_state = 3}, + [2673] = {.lex_state = 25, .external_lex_state = 3}, + [2674] = {.lex_state = 39, .external_lex_state = 2}, + [2675] = {.lex_state = 25, .external_lex_state = 3}, + [2676] = {.lex_state = 25, .external_lex_state = 3}, + [2677] = {.lex_state = 25, .external_lex_state = 3}, + [2678] = {.lex_state = 39, .external_lex_state = 5}, [2679] = {.lex_state = 39, .external_lex_state = 5}, - [2680] = {.lex_state = 39, .external_lex_state = 5}, - [2681] = {.lex_state = 39, .external_lex_state = 2}, - [2682] = {.lex_state = 39, .external_lex_state = 2}, - [2683] = {.lex_state = 39, .external_lex_state = 5}, - [2684] = {.lex_state = 39, .external_lex_state = 5}, - [2685] = {.lex_state = 39, .external_lex_state = 5}, + [2680] = {.lex_state = 25, .external_lex_state = 3}, + [2681] = {.lex_state = 25, .external_lex_state = 3}, + [2682] = {.lex_state = 25, .external_lex_state = 3}, + [2683] = {.lex_state = 25, .external_lex_state = 4}, + [2684] = {.lex_state = 25, .external_lex_state = 4}, + [2685] = {.lex_state = 39, .external_lex_state = 2}, [2686] = {.lex_state = 39, .external_lex_state = 2}, - [2687] = {.lex_state = 39, .external_lex_state = 5}, - [2688] = {.lex_state = 39, .external_lex_state = 5}, + [2687] = {.lex_state = 25, .external_lex_state = 3}, + [2688] = {.lex_state = 39, .external_lex_state = 2}, [2689] = {.lex_state = 39, .external_lex_state = 2}, - [2690] = {.lex_state = 39, .external_lex_state = 5}, - [2691] = {.lex_state = 39, .external_lex_state = 5}, - [2692] = {.lex_state = 39, .external_lex_state = 2}, - [2693] = {.lex_state = 39, .external_lex_state = 5}, - [2694] = {.lex_state = 25, .external_lex_state = 4}, - [2695] = {.lex_state = 39, .external_lex_state = 5}, - [2696] = {.lex_state = 39, .external_lex_state = 5}, - [2697] = {.lex_state = 39, .external_lex_state = 5}, - [2698] = {.lex_state = 39, .external_lex_state = 5}, - [2699] = {.lex_state = 39, .external_lex_state = 5}, - [2700] = {.lex_state = 39, .external_lex_state = 5}, - [2701] = {.lex_state = 39, .external_lex_state = 5}, - [2702] = {.lex_state = 39, .external_lex_state = 5}, - [2703] = {.lex_state = 39, .external_lex_state = 5}, + [2690] = {.lex_state = 25, .external_lex_state = 3}, + [2691] = {.lex_state = 25, .external_lex_state = 3}, + [2692] = {.lex_state = 25, .external_lex_state = 3}, + [2693] = {.lex_state = 39, .external_lex_state = 2}, + [2694] = {.lex_state = 25, .external_lex_state = 3}, + [2695] = {.lex_state = 25, .external_lex_state = 3}, + [2696] = {.lex_state = 25, .external_lex_state = 3}, + [2697] = {.lex_state = 25, .external_lex_state = 3}, + [2698] = {.lex_state = 39, .external_lex_state = 2}, + [2699] = {.lex_state = 39, .external_lex_state = 2}, + [2700] = {.lex_state = 25, .external_lex_state = 3}, + [2701] = {.lex_state = 25, .external_lex_state = 3}, + [2702] = {.lex_state = 25, .external_lex_state = 3}, + [2703] = {.lex_state = 25, .external_lex_state = 3}, [2704] = {.lex_state = 39, .external_lex_state = 5}, - [2705] = {.lex_state = 39, .external_lex_state = 5}, - [2706] = {.lex_state = 39, .external_lex_state = 5}, - [2707] = {.lex_state = 39, .external_lex_state = 5}, - [2708] = {.lex_state = 39, .external_lex_state = 2}, - [2709] = {.lex_state = 39, .external_lex_state = 2}, - [2710] = {.lex_state = 39, .external_lex_state = 5}, - [2711] = {.lex_state = 39, .external_lex_state = 2}, - [2712] = {.lex_state = 39, .external_lex_state = 5}, - [2713] = {.lex_state = 39, .external_lex_state = 5}, - [2714] = {.lex_state = 39, .external_lex_state = 5}, - [2715] = {.lex_state = 39, .external_lex_state = 5}, - [2716] = {.lex_state = 39, .external_lex_state = 5}, - [2717] = {.lex_state = 39, .external_lex_state = 5}, - [2718] = {.lex_state = 39, .external_lex_state = 2}, - [2719] = {.lex_state = 39, .external_lex_state = 5}, - [2720] = {.lex_state = 39, .external_lex_state = 5}, - [2721] = {.lex_state = 39, .external_lex_state = 5}, - [2722] = {.lex_state = 39, .external_lex_state = 5}, - [2723] = {.lex_state = 39, .external_lex_state = 5}, + [2705] = {.lex_state = 25, .external_lex_state = 3}, + [2706] = {.lex_state = 25, .external_lex_state = 3}, + [2707] = {.lex_state = 25, .external_lex_state = 4}, + [2708] = {.lex_state = 25, .external_lex_state = 3}, + [2709] = {.lex_state = 39, .external_lex_state = 5}, + [2710] = {.lex_state = 25, .external_lex_state = 3}, + [2711] = {.lex_state = 25, .external_lex_state = 4}, + [2712] = {.lex_state = 25, .external_lex_state = 3}, + [2713] = {.lex_state = 25, .external_lex_state = 3}, + [2714] = {.lex_state = 25, .external_lex_state = 3}, + [2715] = {.lex_state = 25, .external_lex_state = 3}, + [2716] = {.lex_state = 25, .external_lex_state = 3}, + [2717] = {.lex_state = 25, .external_lex_state = 3}, + [2718] = {.lex_state = 25, .external_lex_state = 3}, + [2719] = {.lex_state = 25, .external_lex_state = 3}, + [2720] = {.lex_state = 25, .external_lex_state = 3}, + [2721] = {.lex_state = 25, .external_lex_state = 3}, + [2722] = {.lex_state = 25, .external_lex_state = 3}, + [2723] = {.lex_state = 25, .external_lex_state = 3}, [2724] = {.lex_state = 39, .external_lex_state = 5}, - [2725] = {.lex_state = 39, .external_lex_state = 5}, - [2726] = {.lex_state = 39, .external_lex_state = 5}, - [2727] = {.lex_state = 39, .external_lex_state = 5}, - [2728] = {.lex_state = 39, .external_lex_state = 5}, - [2729] = {.lex_state = 39, .external_lex_state = 5}, + [2725] = {.lex_state = 25, .external_lex_state = 3}, + [2726] = {.lex_state = 25, .external_lex_state = 3}, + [2727] = {.lex_state = 25, .external_lex_state = 3}, + [2728] = {.lex_state = 25, .external_lex_state = 3}, + [2729] = {.lex_state = 25, .external_lex_state = 3}, [2730] = {.lex_state = 25, .external_lex_state = 3}, - [2731] = {.lex_state = 25, .external_lex_state = 3}, - [2732] = {.lex_state = 39, .external_lex_state = 2}, - [2733] = {.lex_state = 39, .external_lex_state = 2}, - [2734] = {.lex_state = 39, .external_lex_state = 5}, - [2735] = {.lex_state = 39, .external_lex_state = 2}, - [2736] = {.lex_state = 39, .external_lex_state = 5}, + [2731] = {.lex_state = 39, .external_lex_state = 5}, + [2732] = {.lex_state = 25, .external_lex_state = 3}, + [2733] = {.lex_state = 25, .external_lex_state = 3}, + [2734] = {.lex_state = 39, .external_lex_state = 2}, + [2735] = {.lex_state = 25, .external_lex_state = 3}, + [2736] = {.lex_state = 39, .external_lex_state = 2}, [2737] = {.lex_state = 25, .external_lex_state = 3}, [2738] = {.lex_state = 25, .external_lex_state = 3}, - [2739] = {.lex_state = 39, .external_lex_state = 2}, - [2740] = {.lex_state = 39, .external_lex_state = 2}, - [2741] = {.lex_state = 39, .external_lex_state = 5}, - [2742] = {.lex_state = 39, .external_lex_state = 5}, - [2743] = {.lex_state = 39, .external_lex_state = 5}, - [2744] = {.lex_state = 39, .external_lex_state = 5}, - [2745] = {.lex_state = 39, .external_lex_state = 2}, - [2746] = {.lex_state = 39, .external_lex_state = 5}, - [2747] = {.lex_state = 39, .external_lex_state = 2}, + [2739] = {.lex_state = 25, .external_lex_state = 3}, + [2740] = {.lex_state = 25, .external_lex_state = 3}, + [2741] = {.lex_state = 25, .external_lex_state = 3}, + [2742] = {.lex_state = 25, .external_lex_state = 3}, + [2743] = {.lex_state = 25, .external_lex_state = 3}, + [2744] = {.lex_state = 25, .external_lex_state = 3}, + [2745] = {.lex_state = 25, .external_lex_state = 3}, + [2746] = {.lex_state = 25, .external_lex_state = 3}, + [2747] = {.lex_state = 25, .external_lex_state = 3}, [2748] = {.lex_state = 25, .external_lex_state = 3}, - [2749] = {.lex_state = 39, .external_lex_state = 2}, + [2749] = {.lex_state = 25, .external_lex_state = 3}, [2750] = {.lex_state = 25, .external_lex_state = 3}, - [2751] = {.lex_state = 39, .external_lex_state = 2}, + [2751] = {.lex_state = 25, .external_lex_state = 3}, [2752] = {.lex_state = 25, .external_lex_state = 3}, [2753] = {.lex_state = 25, .external_lex_state = 3}, - [2754] = {.lex_state = 25, .external_lex_state = 3}, - [2755] = {.lex_state = 38, .external_lex_state = 5}, - [2756] = {.lex_state = 25, .external_lex_state = 3}, - [2757] = {.lex_state = 25, .external_lex_state = 4}, - [2758] = {.lex_state = 39, .external_lex_state = 2}, - [2759] = {.lex_state = 39, .external_lex_state = 2}, - [2760] = {.lex_state = 25, .external_lex_state = 3}, - [2761] = {.lex_state = 39, .external_lex_state = 5}, - [2762] = {.lex_state = 25, .external_lex_state = 3}, - [2763] = {.lex_state = 25, .external_lex_state = 4}, - [2764] = {.lex_state = 38, .external_lex_state = 5}, - [2765] = {.lex_state = 39, .external_lex_state = 5}, - [2766] = {.lex_state = 39, .external_lex_state = 2}, - [2767] = {.lex_state = 39, .external_lex_state = 5}, + [2754] = {.lex_state = 39, .external_lex_state = 5}, + [2755] = {.lex_state = 25, .external_lex_state = 3}, + [2756] = {.lex_state = 39, .external_lex_state = 2}, + [2757] = {.lex_state = 25, .external_lex_state = 3}, + [2758] = {.lex_state = 25, .external_lex_state = 3}, + [2759] = {.lex_state = 25, .external_lex_state = 3}, + [2760] = {.lex_state = 39, .external_lex_state = 2}, + [2761] = {.lex_state = 25, .external_lex_state = 3}, + [2762] = {.lex_state = 39, .external_lex_state = 2}, + [2763] = {.lex_state = 25, .external_lex_state = 3}, + [2764] = {.lex_state = 39, .external_lex_state = 2}, + [2765] = {.lex_state = 25, .external_lex_state = 3}, + [2766] = {.lex_state = 25, .external_lex_state = 3}, + [2767] = {.lex_state = 25, .external_lex_state = 3}, [2768] = {.lex_state = 25, .external_lex_state = 3}, - [2769] = {.lex_state = 39, .external_lex_state = 2}, - [2770] = {.lex_state = 39, .external_lex_state = 5}, + [2769] = {.lex_state = 25, .external_lex_state = 3}, + [2770] = {.lex_state = 25, .external_lex_state = 3}, [2771] = {.lex_state = 25, .external_lex_state = 3}, - [2772] = {.lex_state = 38, .external_lex_state = 5}, + [2772] = {.lex_state = 25, .external_lex_state = 3}, [2773] = {.lex_state = 25, .external_lex_state = 3}, - [2774] = {.lex_state = 39, .external_lex_state = 5}, - [2775] = {.lex_state = 38, .external_lex_state = 5}, + [2774] = {.lex_state = 25, .external_lex_state = 3}, + [2775] = {.lex_state = 39, .external_lex_state = 5}, [2776] = {.lex_state = 25, .external_lex_state = 3}, - [2777] = {.lex_state = 38, .external_lex_state = 2}, - [2778] = {.lex_state = 38, .external_lex_state = 5}, - [2779] = {.lex_state = 39, .external_lex_state = 5}, + [2777] = {.lex_state = 25, .external_lex_state = 3}, + [2778] = {.lex_state = 25, .external_lex_state = 3}, + [2779] = {.lex_state = 25, .external_lex_state = 3}, [2780] = {.lex_state = 25, .external_lex_state = 3}, [2781] = {.lex_state = 25, .external_lex_state = 3}, - [2782] = {.lex_state = 25, .external_lex_state = 4}, - [2783] = {.lex_state = 39, .external_lex_state = 5}, - [2784] = {.lex_state = 38, .external_lex_state = 5}, - [2785] = {.lex_state = 25, .external_lex_state = 4}, + [2782] = {.lex_state = 25, .external_lex_state = 3}, + [2783] = {.lex_state = 25, .external_lex_state = 3}, + [2784] = {.lex_state = 25, .external_lex_state = 3}, + [2785] = {.lex_state = 25, .external_lex_state = 3}, [2786] = {.lex_state = 25, .external_lex_state = 3}, [2787] = {.lex_state = 25, .external_lex_state = 3}, - [2788] = {.lex_state = 39, .external_lex_state = 2}, - [2789] = {.lex_state = 39, .external_lex_state = 2}, + [2788] = {.lex_state = 25, .external_lex_state = 3}, + [2789] = {.lex_state = 25, .external_lex_state = 3}, [2790] = {.lex_state = 25, .external_lex_state = 3}, [2791] = {.lex_state = 25, .external_lex_state = 3}, [2792] = {.lex_state = 25, .external_lex_state = 3}, - [2793] = {.lex_state = 39, .external_lex_state = 5}, + [2793] = {.lex_state = 25, .external_lex_state = 3}, [2794] = {.lex_state = 25, .external_lex_state = 3}, [2795] = {.lex_state = 25, .external_lex_state = 3}, [2796] = {.lex_state = 25, .external_lex_state = 3}, @@ -25834,13 +25596,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2798] = {.lex_state = 25, .external_lex_state = 3}, [2799] = {.lex_state = 25, .external_lex_state = 3}, [2800] = {.lex_state = 25, .external_lex_state = 3}, - [2801] = {.lex_state = 39, .external_lex_state = 5}, + [2801] = {.lex_state = 25, .external_lex_state = 3}, [2802] = {.lex_state = 25, .external_lex_state = 3}, [2803] = {.lex_state = 25, .external_lex_state = 3}, [2804] = {.lex_state = 25, .external_lex_state = 3}, [2805] = {.lex_state = 25, .external_lex_state = 3}, [2806] = {.lex_state = 25, .external_lex_state = 3}, - [2807] = {.lex_state = 25, .external_lex_state = 3}, + [2807] = {.lex_state = 39, .external_lex_state = 5}, [2808] = {.lex_state = 25, .external_lex_state = 3}, [2809] = {.lex_state = 25, .external_lex_state = 3}, [2810] = {.lex_state = 25, .external_lex_state = 3}, @@ -25853,494 +25615,494 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2817] = {.lex_state = 25, .external_lex_state = 3}, [2818] = {.lex_state = 25, .external_lex_state = 3}, [2819] = {.lex_state = 25, .external_lex_state = 3}, - [2820] = {.lex_state = 39, .external_lex_state = 2}, - [2821] = {.lex_state = 39, .external_lex_state = 2}, - [2822] = {.lex_state = 25, .external_lex_state = 3}, - [2823] = {.lex_state = 25, .external_lex_state = 3}, - [2824] = {.lex_state = 25, .external_lex_state = 3}, - [2825] = {.lex_state = 25, .external_lex_state = 3}, - [2826] = {.lex_state = 25, .external_lex_state = 3}, - [2827] = {.lex_state = 25, .external_lex_state = 3}, - [2828] = {.lex_state = 25, .external_lex_state = 3}, - [2829] = {.lex_state = 25, .external_lex_state = 3}, + [2820] = {.lex_state = 25, .external_lex_state = 3}, + [2821] = {.lex_state = 25, .external_lex_state = 3}, + [2822] = {.lex_state = 39, .external_lex_state = 2}, + [2823] = {.lex_state = 39, .external_lex_state = 5}, + [2824] = {.lex_state = 39, .external_lex_state = 5}, + [2825] = {.lex_state = 39, .external_lex_state = 2}, + [2826] = {.lex_state = 39, .external_lex_state = 5}, + [2827] = {.lex_state = 39, .external_lex_state = 5}, + [2828] = {.lex_state = 39, .external_lex_state = 5}, + [2829] = {.lex_state = 39, .external_lex_state = 5}, [2830] = {.lex_state = 25, .external_lex_state = 3}, [2831] = {.lex_state = 25, .external_lex_state = 3}, [2832] = {.lex_state = 25, .external_lex_state = 3}, - [2833] = {.lex_state = 25, .external_lex_state = 3}, - [2834] = {.lex_state = 25, .external_lex_state = 3}, - [2835] = {.lex_state = 25, .external_lex_state = 3}, + [2833] = {.lex_state = 25, .external_lex_state = 4}, + [2834] = {.lex_state = 25, .external_lex_state = 4}, + [2835] = {.lex_state = 25, .external_lex_state = 4}, [2836] = {.lex_state = 25, .external_lex_state = 3}, - [2837] = {.lex_state = 25, .external_lex_state = 3}, - [2838] = {.lex_state = 25, .external_lex_state = 3}, + [2837] = {.lex_state = 25, .external_lex_state = 4}, + [2838] = {.lex_state = 25, .external_lex_state = 4}, [2839] = {.lex_state = 25, .external_lex_state = 3}, - [2840] = {.lex_state = 25, .external_lex_state = 3}, - [2841] = {.lex_state = 25, .external_lex_state = 3}, - [2842] = {.lex_state = 25, .external_lex_state = 3}, + [2840] = {.lex_state = 25, .external_lex_state = 4}, + [2841] = {.lex_state = 25, .external_lex_state = 4}, + [2842] = {.lex_state = 25, .external_lex_state = 4}, [2843] = {.lex_state = 25, .external_lex_state = 3}, - [2844] = {.lex_state = 25, .external_lex_state = 3}, - [2845] = {.lex_state = 25, .external_lex_state = 3}, + [2844] = {.lex_state = 25, .external_lex_state = 4}, + [2845] = {.lex_state = 25, .external_lex_state = 4}, [2846] = {.lex_state = 25, .external_lex_state = 3}, [2847] = {.lex_state = 25, .external_lex_state = 3}, [2848] = {.lex_state = 25, .external_lex_state = 3}, [2849] = {.lex_state = 25, .external_lex_state = 3}, - [2850] = {.lex_state = 25, .external_lex_state = 3}, + [2850] = {.lex_state = 25, .external_lex_state = 4}, [2851] = {.lex_state = 25, .external_lex_state = 3}, - [2852] = {.lex_state = 25, .external_lex_state = 3}, + [2852] = {.lex_state = 25, .external_lex_state = 4}, [2853] = {.lex_state = 25, .external_lex_state = 3}, - [2854] = {.lex_state = 25, .external_lex_state = 3}, - [2855] = {.lex_state = 25, .external_lex_state = 3}, - [2856] = {.lex_state = 39, .external_lex_state = 2}, + [2854] = {.lex_state = 25, .external_lex_state = 4}, + [2855] = {.lex_state = 25, .external_lex_state = 4}, + [2856] = {.lex_state = 25, .external_lex_state = 3}, [2857] = {.lex_state = 25, .external_lex_state = 3}, - [2858] = {.lex_state = 25, .external_lex_state = 3}, - [2859] = {.lex_state = 25, .external_lex_state = 3}, - [2860] = {.lex_state = 25, .external_lex_state = 3}, - [2861] = {.lex_state = 25, .external_lex_state = 3}, - [2862] = {.lex_state = 39, .external_lex_state = 2}, - [2863] = {.lex_state = 39, .external_lex_state = 2}, + [2858] = {.lex_state = 25, .external_lex_state = 4}, + [2859] = {.lex_state = 25, .external_lex_state = 4}, + [2860] = {.lex_state = 25, .external_lex_state = 4}, + [2861] = {.lex_state = 25, .external_lex_state = 4}, + [2862] = {.lex_state = 25, .external_lex_state = 4}, + [2863] = {.lex_state = 25, .external_lex_state = 3}, [2864] = {.lex_state = 25, .external_lex_state = 3}, - [2865] = {.lex_state = 25, .external_lex_state = 3}, - [2866] = {.lex_state = 25, .external_lex_state = 3}, - [2867] = {.lex_state = 25, .external_lex_state = 3}, - [2868] = {.lex_state = 25, .external_lex_state = 3}, + [2865] = {.lex_state = 25, .external_lex_state = 4}, + [2866] = {.lex_state = 25, .external_lex_state = 4}, + [2867] = {.lex_state = 25, .external_lex_state = 4}, + [2868] = {.lex_state = 25, .external_lex_state = 4}, [2869] = {.lex_state = 25, .external_lex_state = 3}, [2870] = {.lex_state = 25, .external_lex_state = 3}, - [2871] = {.lex_state = 25, .external_lex_state = 3}, - [2872] = {.lex_state = 25, .external_lex_state = 3}, - [2873] = {.lex_state = 25, .external_lex_state = 3}, - [2874] = {.lex_state = 25, .external_lex_state = 3}, - [2875] = {.lex_state = 25, .external_lex_state = 3}, - [2876] = {.lex_state = 25, .external_lex_state = 3}, - [2877] = {.lex_state = 25, .external_lex_state = 3}, - [2878] = {.lex_state = 25, .external_lex_state = 3}, - [2879] = {.lex_state = 25, .external_lex_state = 3}, - [2880] = {.lex_state = 25, .external_lex_state = 3}, - [2881] = {.lex_state = 25, .external_lex_state = 3}, - [2882] = {.lex_state = 25, .external_lex_state = 3}, - [2883] = {.lex_state = 25, .external_lex_state = 3}, - [2884] = {.lex_state = 25, .external_lex_state = 3}, + [2871] = {.lex_state = 25, .external_lex_state = 4}, + [2872] = {.lex_state = 25, .external_lex_state = 4}, + [2873] = {.lex_state = 25, .external_lex_state = 4}, + [2874] = {.lex_state = 25, .external_lex_state = 4}, + [2875] = {.lex_state = 25, .external_lex_state = 4}, + [2876] = {.lex_state = 25, .external_lex_state = 4}, + [2877] = {.lex_state = 25, .external_lex_state = 4}, + [2878] = {.lex_state = 25, .external_lex_state = 4}, + [2879] = {.lex_state = 25, .external_lex_state = 4}, + [2880] = {.lex_state = 25, .external_lex_state = 4}, + [2881] = {.lex_state = 25, .external_lex_state = 4}, + [2882] = {.lex_state = 25, .external_lex_state = 4}, + [2883] = {.lex_state = 25, .external_lex_state = 4}, + [2884] = {.lex_state = 25, .external_lex_state = 4}, [2885] = {.lex_state = 25, .external_lex_state = 3}, - [2886] = {.lex_state = 25, .external_lex_state = 3}, + [2886] = {.lex_state = 25, .external_lex_state = 4}, [2887] = {.lex_state = 25, .external_lex_state = 3}, - [2888] = {.lex_state = 25, .external_lex_state = 3}, + [2888] = {.lex_state = 25, .external_lex_state = 4}, [2889] = {.lex_state = 25, .external_lex_state = 3}, - [2890] = {.lex_state = 25, .external_lex_state = 3}, + [2890] = {.lex_state = 25, .external_lex_state = 4}, [2891] = {.lex_state = 25, .external_lex_state = 3}, [2892] = {.lex_state = 25, .external_lex_state = 3}, - [2893] = {.lex_state = 25, .external_lex_state = 3}, + [2893] = {.lex_state = 25, .external_lex_state = 4}, [2894] = {.lex_state = 25, .external_lex_state = 3}, - [2895] = {.lex_state = 25, .external_lex_state = 3}, + [2895] = {.lex_state = 25, .external_lex_state = 4}, [2896] = {.lex_state = 25, .external_lex_state = 3}, - [2897] = {.lex_state = 39, .external_lex_state = 5}, + [2897] = {.lex_state = 25, .external_lex_state = 4}, [2898] = {.lex_state = 25, .external_lex_state = 3}, [2899] = {.lex_state = 25, .external_lex_state = 3}, - [2900] = {.lex_state = 25, .external_lex_state = 3}, + [2900] = {.lex_state = 25, .external_lex_state = 4}, [2901] = {.lex_state = 25, .external_lex_state = 3}, - [2902] = {.lex_state = 39, .external_lex_state = 2}, + [2902] = {.lex_state = 25, .external_lex_state = 4}, [2903] = {.lex_state = 25, .external_lex_state = 3}, - [2904] = {.lex_state = 39, .external_lex_state = 5}, + [2904] = {.lex_state = 25, .external_lex_state = 4}, [2905] = {.lex_state = 25, .external_lex_state = 3}, - [2906] = {.lex_state = 39, .external_lex_state = 2}, - [2907] = {.lex_state = 39, .external_lex_state = 2}, - [2908] = {.lex_state = 39, .external_lex_state = 2}, - [2909] = {.lex_state = 25, .external_lex_state = 3}, + [2906] = {.lex_state = 25, .external_lex_state = 3}, + [2907] = {.lex_state = 25, .external_lex_state = 4}, + [2908] = {.lex_state = 25, .external_lex_state = 4}, + [2909] = {.lex_state = 25, .external_lex_state = 4}, [2910] = {.lex_state = 25, .external_lex_state = 4}, - [2911] = {.lex_state = 39, .external_lex_state = 5}, - [2912] = {.lex_state = 39, .external_lex_state = 5}, - [2913] = {.lex_state = 39, .external_lex_state = 5}, + [2911] = {.lex_state = 25, .external_lex_state = 3}, + [2912] = {.lex_state = 25, .external_lex_state = 4}, + [2913] = {.lex_state = 25, .external_lex_state = 4}, [2914] = {.lex_state = 25, .external_lex_state = 4}, [2915] = {.lex_state = 25, .external_lex_state = 3}, [2916] = {.lex_state = 25, .external_lex_state = 3}, - [2917] = {.lex_state = 39, .external_lex_state = 5}, + [2917] = {.lex_state = 25, .external_lex_state = 3}, [2918] = {.lex_state = 25, .external_lex_state = 3}, - [2919] = {.lex_state = 39, .external_lex_state = 2}, - [2920] = {.lex_state = 39, .external_lex_state = 2}, - [2921] = {.lex_state = 39, .external_lex_state = 2}, - [2922] = {.lex_state = 39, .external_lex_state = 2}, - [2923] = {.lex_state = 39, .external_lex_state = 2}, - [2924] = {.lex_state = 39, .external_lex_state = 2}, - [2925] = {.lex_state = 39, .external_lex_state = 2}, - [2926] = {.lex_state = 39, .external_lex_state = 5}, - [2927] = {.lex_state = 39, .external_lex_state = 5}, - [2928] = {.lex_state = 39, .external_lex_state = 5}, - [2929] = {.lex_state = 25, .external_lex_state = 3}, - [2930] = {.lex_state = 25, .external_lex_state = 3}, - [2931] = {.lex_state = 25, .external_lex_state = 3}, + [2919] = {.lex_state = 25, .external_lex_state = 4}, + [2920] = {.lex_state = 25, .external_lex_state = 4}, + [2921] = {.lex_state = 25, .external_lex_state = 4}, + [2922] = {.lex_state = 25, .external_lex_state = 4}, + [2923] = {.lex_state = 25, .external_lex_state = 3}, + [2924] = {.lex_state = 25, .external_lex_state = 3}, + [2925] = {.lex_state = 25, .external_lex_state = 3}, + [2926] = {.lex_state = 25, .external_lex_state = 3}, + [2927] = {.lex_state = 25, .external_lex_state = 3}, + [2928] = {.lex_state = 25, .external_lex_state = 3}, + [2929] = {.lex_state = 25, .external_lex_state = 4}, + [2930] = {.lex_state = 25, .external_lex_state = 4}, + [2931] = {.lex_state = 25, .external_lex_state = 4}, [2932] = {.lex_state = 25, .external_lex_state = 3}, [2933] = {.lex_state = 25, .external_lex_state = 3}, - [2934] = {.lex_state = 39, .external_lex_state = 5}, - [2935] = {.lex_state = 25, .external_lex_state = 3}, - [2936] = {.lex_state = 25, .external_lex_state = 3}, + [2934] = {.lex_state = 25, .external_lex_state = 3}, + [2935] = {.lex_state = 25, .external_lex_state = 4}, + [2936] = {.lex_state = 25, .external_lex_state = 4}, [2937] = {.lex_state = 25, .external_lex_state = 3}, - [2938] = {.lex_state = 25, .external_lex_state = 3}, - [2939] = {.lex_state = 39, .external_lex_state = 5}, - [2940] = {.lex_state = 39, .external_lex_state = 5}, + [2938] = {.lex_state = 25, .external_lex_state = 4}, + [2939] = {.lex_state = 25, .external_lex_state = 3}, + [2940] = {.lex_state = 25, .external_lex_state = 3}, [2941] = {.lex_state = 25, .external_lex_state = 4}, - [2942] = {.lex_state = 39, .external_lex_state = 5}, - [2943] = {.lex_state = 25, .external_lex_state = 4}, + [2942] = {.lex_state = 25, .external_lex_state = 3}, + [2943] = {.lex_state = 25, .external_lex_state = 3}, [2944] = {.lex_state = 25, .external_lex_state = 3}, - [2945] = {.lex_state = 25, .external_lex_state = 3}, + [2945] = {.lex_state = 25, .external_lex_state = 4}, [2946] = {.lex_state = 25, .external_lex_state = 3}, - [2947] = {.lex_state = 25, .external_lex_state = 3}, + [2947] = {.lex_state = 25, .external_lex_state = 4}, [2948] = {.lex_state = 25, .external_lex_state = 3}, - [2949] = {.lex_state = 25, .external_lex_state = 3}, - [2950] = {.lex_state = 25, .external_lex_state = 3}, - [2951] = {.lex_state = 25, .external_lex_state = 3}, - [2952] = {.lex_state = 25, .external_lex_state = 3}, - [2953] = {.lex_state = 25, .external_lex_state = 3}, - [2954] = {.lex_state = 25, .external_lex_state = 3}, - [2955] = {.lex_state = 25, .external_lex_state = 3}, + [2949] = {.lex_state = 25, .external_lex_state = 4}, + [2950] = {.lex_state = 25, .external_lex_state = 4}, + [2951] = {.lex_state = 25, .external_lex_state = 4}, + [2952] = {.lex_state = 25, .external_lex_state = 4}, + [2953] = {.lex_state = 25, .external_lex_state = 4}, + [2954] = {.lex_state = 25, .external_lex_state = 4}, + [2955] = {.lex_state = 25, .external_lex_state = 4}, [2956] = {.lex_state = 25, .external_lex_state = 3}, [2957] = {.lex_state = 25, .external_lex_state = 3}, [2958] = {.lex_state = 25, .external_lex_state = 3}, [2959] = {.lex_state = 25, .external_lex_state = 3}, - [2960] = {.lex_state = 25, .external_lex_state = 3}, + [2960] = {.lex_state = 25, .external_lex_state = 4}, [2961] = {.lex_state = 25, .external_lex_state = 3}, - [2962] = {.lex_state = 25, .external_lex_state = 3}, + [2962] = {.lex_state = 25, .external_lex_state = 4}, [2963] = {.lex_state = 25, .external_lex_state = 3}, - [2964] = {.lex_state = 25, .external_lex_state = 3}, - [2965] = {.lex_state = 25, .external_lex_state = 3}, - [2966] = {.lex_state = 39, .external_lex_state = 5}, - [2967] = {.lex_state = 25, .external_lex_state = 3}, - [2968] = {.lex_state = 25, .external_lex_state = 3}, - [2969] = {.lex_state = 25, .external_lex_state = 3}, - [2970] = {.lex_state = 25, .external_lex_state = 3}, - [2971] = {.lex_state = 39, .external_lex_state = 5}, - [2972] = {.lex_state = 25, .external_lex_state = 3}, - [2973] = {.lex_state = 25, .external_lex_state = 3}, + [2964] = {.lex_state = 39, .external_lex_state = 2}, + [2965] = {.lex_state = 25, .external_lex_state = 4}, + [2966] = {.lex_state = 25, .external_lex_state = 4}, + [2967] = {.lex_state = 25, .external_lex_state = 4}, + [2968] = {.lex_state = 25, .external_lex_state = 4}, + [2969] = {.lex_state = 25, .external_lex_state = 4}, + [2970] = {.lex_state = 25, .external_lex_state = 4}, + [2971] = {.lex_state = 25, .external_lex_state = 4}, + [2972] = {.lex_state = 25, .external_lex_state = 4}, + [2973] = {.lex_state = 25, .external_lex_state = 4}, [2974] = {.lex_state = 25, .external_lex_state = 3}, [2975] = {.lex_state = 25, .external_lex_state = 3}, - [2976] = {.lex_state = 25, .external_lex_state = 3}, - [2977] = {.lex_state = 25, .external_lex_state = 3}, + [2976] = {.lex_state = 25, .external_lex_state = 4}, + [2977] = {.lex_state = 25, .external_lex_state = 4}, [2978] = {.lex_state = 25, .external_lex_state = 3}, [2979] = {.lex_state = 25, .external_lex_state = 3}, [2980] = {.lex_state = 25, .external_lex_state = 4}, [2981] = {.lex_state = 25, .external_lex_state = 3}, - [2982] = {.lex_state = 25, .external_lex_state = 4}, - [2983] = {.lex_state = 25, .external_lex_state = 4}, - [2984] = {.lex_state = 25, .external_lex_state = 4}, + [2982] = {.lex_state = 25, .external_lex_state = 3}, + [2983] = {.lex_state = 25, .external_lex_state = 3}, + [2984] = {.lex_state = 25, .external_lex_state = 3}, [2985] = {.lex_state = 25, .external_lex_state = 4}, - [2986] = {.lex_state = 25, .external_lex_state = 4}, - [2987] = {.lex_state = 25, .external_lex_state = 3}, + [2986] = {.lex_state = 25, .external_lex_state = 3}, + [2987] = {.lex_state = 25, .external_lex_state = 4}, [2988] = {.lex_state = 25, .external_lex_state = 4}, - [2989] = {.lex_state = 25, .external_lex_state = 3}, + [2989] = {.lex_state = 25, .external_lex_state = 4}, [2990] = {.lex_state = 25, .external_lex_state = 4}, - [2991] = {.lex_state = 25, .external_lex_state = 3}, + [2991] = {.lex_state = 25, .external_lex_state = 4}, [2992] = {.lex_state = 25, .external_lex_state = 4}, [2993] = {.lex_state = 25, .external_lex_state = 4}, [2994] = {.lex_state = 25, .external_lex_state = 4}, - [2995] = {.lex_state = 25, .external_lex_state = 4}, + [2995] = {.lex_state = 25, .external_lex_state = 3}, [2996] = {.lex_state = 25, .external_lex_state = 4}, - [2997] = {.lex_state = 25, .external_lex_state = 3}, - [2998] = {.lex_state = 25, .external_lex_state = 4}, + [2997] = {.lex_state = 25, .external_lex_state = 4}, + [2998] = {.lex_state = 25, .external_lex_state = 3}, [2999] = {.lex_state = 25, .external_lex_state = 4}, [3000] = {.lex_state = 25, .external_lex_state = 4}, [3001] = {.lex_state = 25, .external_lex_state = 4}, - [3002] = {.lex_state = 25, .external_lex_state = 4}, - [3003] = {.lex_state = 25, .external_lex_state = 4}, - [3004] = {.lex_state = 25, .external_lex_state = 4}, + [3002] = {.lex_state = 25, .external_lex_state = 3}, + [3003] = {.lex_state = 25, .external_lex_state = 3}, + [3004] = {.lex_state = 38, .external_lex_state = 5}, [3005] = {.lex_state = 25, .external_lex_state = 4}, - [3006] = {.lex_state = 25, .external_lex_state = 4}, - [3007] = {.lex_state = 25, .external_lex_state = 3}, - [3008] = {.lex_state = 25, .external_lex_state = 3}, - [3009] = {.lex_state = 25, .external_lex_state = 3}, - [3010] = {.lex_state = 25, .external_lex_state = 4}, + [3006] = {.lex_state = 38, .external_lex_state = 5}, + [3007] = {.lex_state = 38, .external_lex_state = 5}, + [3008] = {.lex_state = 25, .external_lex_state = 4}, + [3009] = {.lex_state = 38, .external_lex_state = 5}, + [3010] = {.lex_state = 38, .external_lex_state = 5}, [3011] = {.lex_state = 25, .external_lex_state = 3}, [3012] = {.lex_state = 25, .external_lex_state = 3}, - [3013] = {.lex_state = 25, .external_lex_state = 3}, - [3014] = {.lex_state = 25, .external_lex_state = 4}, + [3013] = {.lex_state = 38, .external_lex_state = 5}, + [3014] = {.lex_state = 38, .external_lex_state = 5}, [3015] = {.lex_state = 25, .external_lex_state = 4}, - [3016] = {.lex_state = 25, .external_lex_state = 3}, + [3016] = {.lex_state = 38, .external_lex_state = 5}, [3017] = {.lex_state = 25, .external_lex_state = 3}, - [3018] = {.lex_state = 25, .external_lex_state = 4}, - [3019] = {.lex_state = 25, .external_lex_state = 3}, - [3020] = {.lex_state = 25, .external_lex_state = 3}, + [3018] = {.lex_state = 25, .external_lex_state = 3}, + [3019] = {.lex_state = 38, .external_lex_state = 5}, + [3020] = {.lex_state = 25, .external_lex_state = 4}, [3021] = {.lex_state = 25, .external_lex_state = 3}, - [3022] = {.lex_state = 25, .external_lex_state = 3}, - [3023] = {.lex_state = 25, .external_lex_state = 3}, - [3024] = {.lex_state = 25, .external_lex_state = 4}, - [3025] = {.lex_state = 25, .external_lex_state = 4}, - [3026] = {.lex_state = 25, .external_lex_state = 3}, - [3027] = {.lex_state = 25, .external_lex_state = 3}, + [3022] = {.lex_state = 38, .external_lex_state = 5}, + [3023] = {.lex_state = 25, .external_lex_state = 4}, + [3024] = {.lex_state = 38, .external_lex_state = 5}, + [3025] = {.lex_state = 38, .external_lex_state = 5}, + [3026] = {.lex_state = 38, .external_lex_state = 5}, + [3027] = {.lex_state = 38, .external_lex_state = 5}, [3028] = {.lex_state = 25, .external_lex_state = 3}, - [3029] = {.lex_state = 25, .external_lex_state = 4}, + [3029] = {.lex_state = 25, .external_lex_state = 3}, [3030] = {.lex_state = 25, .external_lex_state = 3}, - [3031] = {.lex_state = 25, .external_lex_state = 4}, - [3032] = {.lex_state = 25, .external_lex_state = 4}, - [3033] = {.lex_state = 25, .external_lex_state = 3}, - [3034] = {.lex_state = 25, .external_lex_state = 4}, - [3035] = {.lex_state = 25, .external_lex_state = 4}, + [3031] = {.lex_state = 38, .external_lex_state = 5}, + [3032] = {.lex_state = 38, .external_lex_state = 5}, + [3033] = {.lex_state = 38, .external_lex_state = 5}, + [3034] = {.lex_state = 38, .external_lex_state = 5}, + [3035] = {.lex_state = 38, .external_lex_state = 5}, [3036] = {.lex_state = 25, .external_lex_state = 3}, - [3037] = {.lex_state = 25, .external_lex_state = 4}, - [3038] = {.lex_state = 25, .external_lex_state = 4}, - [3039] = {.lex_state = 25, .external_lex_state = 4}, - [3040] = {.lex_state = 25, .external_lex_state = 4}, - [3041] = {.lex_state = 25, .external_lex_state = 4}, - [3042] = {.lex_state = 25, .external_lex_state = 4}, - [3043] = {.lex_state = 39, .external_lex_state = 2}, - [3044] = {.lex_state = 25, .external_lex_state = 3}, - [3045] = {.lex_state = 25, .external_lex_state = 4}, - [3046] = {.lex_state = 25, .external_lex_state = 4}, - [3047] = {.lex_state = 25, .external_lex_state = 4}, + [3037] = {.lex_state = 25, .external_lex_state = 3}, + [3038] = {.lex_state = 39, .external_lex_state = 2}, + [3039] = {.lex_state = 25, .external_lex_state = 3}, + [3040] = {.lex_state = 39, .external_lex_state = 2}, + [3041] = {.lex_state = 39, .external_lex_state = 2}, + [3042] = {.lex_state = 38, .external_lex_state = 5}, + [3043] = {.lex_state = 38, .external_lex_state = 5}, + [3044] = {.lex_state = 25, .external_lex_state = 4}, + [3045] = {.lex_state = 25, .external_lex_state = 3}, + [3046] = {.lex_state = 38, .external_lex_state = 5}, + [3047] = {.lex_state = 38, .external_lex_state = 5}, [3048] = {.lex_state = 25, .external_lex_state = 4}, [3049] = {.lex_state = 25, .external_lex_state = 3}, - [3050] = {.lex_state = 25, .external_lex_state = 3}, + [3050] = {.lex_state = 25, .external_lex_state = 4}, [3051] = {.lex_state = 25, .external_lex_state = 3}, [3052] = {.lex_state = 25, .external_lex_state = 3}, [3053] = {.lex_state = 25, .external_lex_state = 3}, [3054] = {.lex_state = 25, .external_lex_state = 3}, [3055] = {.lex_state = 25, .external_lex_state = 4}, - [3056] = {.lex_state = 25, .external_lex_state = 4}, - [3057] = {.lex_state = 25, .external_lex_state = 4}, + [3056] = {.lex_state = 25, .external_lex_state = 3}, + [3057] = {.lex_state = 25, .external_lex_state = 3}, [3058] = {.lex_state = 25, .external_lex_state = 3}, - [3059] = {.lex_state = 25, .external_lex_state = 4}, + [3059] = {.lex_state = 38, .external_lex_state = 5}, [3060] = {.lex_state = 25, .external_lex_state = 4}, - [3061] = {.lex_state = 25, .external_lex_state = 4}, - [3062] = {.lex_state = 25, .external_lex_state = 3}, + [3061] = {.lex_state = 25, .external_lex_state = 3}, + [3062] = {.lex_state = 38, .external_lex_state = 5}, [3063] = {.lex_state = 25, .external_lex_state = 4}, - [3064] = {.lex_state = 25, .external_lex_state = 4}, - [3065] = {.lex_state = 25, .external_lex_state = 3}, - [3066] = {.lex_state = 25, .external_lex_state = 3}, - [3067] = {.lex_state = 25, .external_lex_state = 4}, - [3068] = {.lex_state = 25, .external_lex_state = 4}, + [3064] = {.lex_state = 38, .external_lex_state = 5}, + [3065] = {.lex_state = 38, .external_lex_state = 5}, + [3066] = {.lex_state = 25, .external_lex_state = 4}, + [3067] = {.lex_state = 38, .external_lex_state = 5}, + [3068] = {.lex_state = 25, .external_lex_state = 3}, [3069] = {.lex_state = 25, .external_lex_state = 4}, - [3070] = {.lex_state = 25, .external_lex_state = 4}, + [3070] = {.lex_state = 25, .external_lex_state = 3}, [3071] = {.lex_state = 25, .external_lex_state = 4}, - [3072] = {.lex_state = 25, .external_lex_state = 4}, + [3072] = {.lex_state = 25, .external_lex_state = 3}, [3073] = {.lex_state = 25, .external_lex_state = 3}, - [3074] = {.lex_state = 25, .external_lex_state = 4}, - [3075] = {.lex_state = 25, .external_lex_state = 4}, - [3076] = {.lex_state = 25, .external_lex_state = 3}, + [3074] = {.lex_state = 25, .external_lex_state = 3}, + [3075] = {.lex_state = 25, .external_lex_state = 3}, + [3076] = {.lex_state = 25, .external_lex_state = 4}, [3077] = {.lex_state = 25, .external_lex_state = 3}, [3078] = {.lex_state = 25, .external_lex_state = 4}, - [3079] = {.lex_state = 25, .external_lex_state = 4}, - [3080] = {.lex_state = 25, .external_lex_state = 4}, + [3079] = {.lex_state = 25, .external_lex_state = 3}, + [3080] = {.lex_state = 25, .external_lex_state = 3}, [3081] = {.lex_state = 25, .external_lex_state = 3}, [3082] = {.lex_state = 25, .external_lex_state = 3}, - [3083] = {.lex_state = 25, .external_lex_state = 4}, + [3083] = {.lex_state = 25, .external_lex_state = 3}, [3084] = {.lex_state = 25, .external_lex_state = 3}, [3085] = {.lex_state = 25, .external_lex_state = 3}, - [3086] = {.lex_state = 25, .external_lex_state = 4}, - [3087] = {.lex_state = 25, .external_lex_state = 4}, - [3088] = {.lex_state = 25, .external_lex_state = 4}, - [3089] = {.lex_state = 25, .external_lex_state = 4}, - [3090] = {.lex_state = 25, .external_lex_state = 4}, - [3091] = {.lex_state = 25, .external_lex_state = 4}, + [3086] = {.lex_state = 25, .external_lex_state = 3}, + [3087] = {.lex_state = 25, .external_lex_state = 3}, + [3088] = {.lex_state = 25, .external_lex_state = 3}, + [3089] = {.lex_state = 25, .external_lex_state = 3}, + [3090] = {.lex_state = 25, .external_lex_state = 3}, + [3091] = {.lex_state = 25, .external_lex_state = 3}, [3092] = {.lex_state = 25, .external_lex_state = 3}, [3093] = {.lex_state = 25, .external_lex_state = 3}, [3094] = {.lex_state = 25, .external_lex_state = 3}, - [3095] = {.lex_state = 25, .external_lex_state = 4}, - [3096] = {.lex_state = 25, .external_lex_state = 3}, + [3095] = {.lex_state = 25, .external_lex_state = 3}, + [3096] = {.lex_state = 25, .external_lex_state = 4}, [3097] = {.lex_state = 25, .external_lex_state = 4}, [3098] = {.lex_state = 25, .external_lex_state = 3}, - [3099] = {.lex_state = 25, .external_lex_state = 4}, + [3099] = {.lex_state = 38, .external_lex_state = 5}, [3100] = {.lex_state = 25, .external_lex_state = 3}, - [3101] = {.lex_state = 25, .external_lex_state = 3}, + [3101] = {.lex_state = 38, .external_lex_state = 5}, [3102] = {.lex_state = 25, .external_lex_state = 3}, [3103] = {.lex_state = 25, .external_lex_state = 3}, - [3104] = {.lex_state = 25, .external_lex_state = 4}, + [3104] = {.lex_state = 25, .external_lex_state = 3}, [3105] = {.lex_state = 25, .external_lex_state = 3}, [3106] = {.lex_state = 25, .external_lex_state = 3}, [3107] = {.lex_state = 25, .external_lex_state = 3}, [3108] = {.lex_state = 25, .external_lex_state = 3}, - [3109] = {.lex_state = 25, .external_lex_state = 3}, - [3110] = {.lex_state = 25, .external_lex_state = 3}, - [3111] = {.lex_state = 25, .external_lex_state = 4}, + [3109] = {.lex_state = 38, .external_lex_state = 5}, + [3110] = {.lex_state = 39, .external_lex_state = 2}, + [3111] = {.lex_state = 39, .external_lex_state = 2}, [3112] = {.lex_state = 25, .external_lex_state = 3}, [3113] = {.lex_state = 25, .external_lex_state = 4}, - [3114] = {.lex_state = 25, .external_lex_state = 4}, - [3115] = {.lex_state = 25, .external_lex_state = 4}, - [3116] = {.lex_state = 25, .external_lex_state = 4}, + [3114] = {.lex_state = 38, .external_lex_state = 5}, + [3115] = {.lex_state = 25, .external_lex_state = 3}, + [3116] = {.lex_state = 38, .external_lex_state = 5}, [3117] = {.lex_state = 25, .external_lex_state = 4}, - [3118] = {.lex_state = 25, .external_lex_state = 4}, + [3118] = {.lex_state = 25, .external_lex_state = 3}, [3119] = {.lex_state = 25, .external_lex_state = 4}, - [3120] = {.lex_state = 25, .external_lex_state = 4}, - [3121] = {.lex_state = 25, .external_lex_state = 4}, + [3120] = {.lex_state = 25, .external_lex_state = 3}, + [3121] = {.lex_state = 38, .external_lex_state = 5}, [3122] = {.lex_state = 25, .external_lex_state = 4}, [3123] = {.lex_state = 25, .external_lex_state = 3}, [3124] = {.lex_state = 25, .external_lex_state = 3}, - [3125] = {.lex_state = 25, .external_lex_state = 3}, - [3126] = {.lex_state = 25, .external_lex_state = 3}, - [3127] = {.lex_state = 25, .external_lex_state = 3}, - [3128] = {.lex_state = 25, .external_lex_state = 4}, - [3129] = {.lex_state = 25, .external_lex_state = 4}, + [3125] = {.lex_state = 38, .external_lex_state = 5}, + [3126] = {.lex_state = 38, .external_lex_state = 5}, + [3127] = {.lex_state = 25, .external_lex_state = 4}, + [3128] = {.lex_state = 25, .external_lex_state = 3}, + [3129] = {.lex_state = 25, .external_lex_state = 3}, [3130] = {.lex_state = 25, .external_lex_state = 3}, [3131] = {.lex_state = 25, .external_lex_state = 3}, - [3132] = {.lex_state = 25, .external_lex_state = 3}, - [3133] = {.lex_state = 25, .external_lex_state = 4}, + [3132] = {.lex_state = 38, .external_lex_state = 5}, + [3133] = {.lex_state = 38, .external_lex_state = 5}, [3134] = {.lex_state = 25, .external_lex_state = 3}, - [3135] = {.lex_state = 25, .external_lex_state = 4}, - [3136] = {.lex_state = 25, .external_lex_state = 4}, - [3137] = {.lex_state = 25, .external_lex_state = 4}, - [3138] = {.lex_state = 25, .external_lex_state = 4}, + [3135] = {.lex_state = 38, .external_lex_state = 5}, + [3136] = {.lex_state = 38, .external_lex_state = 5}, + [3137] = {.lex_state = 38, .external_lex_state = 5}, + [3138] = {.lex_state = 38, .external_lex_state = 5}, [3139] = {.lex_state = 25, .external_lex_state = 4}, - [3140] = {.lex_state = 25, .external_lex_state = 4}, - [3141] = {.lex_state = 25, .external_lex_state = 4}, - [3142] = {.lex_state = 25, .external_lex_state = 4}, - [3143] = {.lex_state = 25, .external_lex_state = 4}, - [3144] = {.lex_state = 25, .external_lex_state = 4}, + [3140] = {.lex_state = 38, .external_lex_state = 5}, + [3141] = {.lex_state = 38, .external_lex_state = 5}, + [3142] = {.lex_state = 38, .external_lex_state = 5}, + [3143] = {.lex_state = 38, .external_lex_state = 5}, + [3144] = {.lex_state = 25, .external_lex_state = 3}, [3145] = {.lex_state = 25, .external_lex_state = 3}, - [3146] = {.lex_state = 25, .external_lex_state = 4}, - [3147] = {.lex_state = 25, .external_lex_state = 4}, - [3148] = {.lex_state = 25, .external_lex_state = 3}, - [3149] = {.lex_state = 25, .external_lex_state = 4}, - [3150] = {.lex_state = 25, .external_lex_state = 4}, - [3151] = {.lex_state = 25, .external_lex_state = 3}, + [3146] = {.lex_state = 25, .external_lex_state = 3}, + [3147] = {.lex_state = 38, .external_lex_state = 5}, + [3148] = {.lex_state = 38, .external_lex_state = 5}, + [3149] = {.lex_state = 25, .external_lex_state = 3}, + [3150] = {.lex_state = 25, .external_lex_state = 3}, + [3151] = {.lex_state = 38, .external_lex_state = 5}, [3152] = {.lex_state = 25, .external_lex_state = 3}, - [3153] = {.lex_state = 25, .external_lex_state = 3}, + [3153] = {.lex_state = 38, .external_lex_state = 5}, [3154] = {.lex_state = 38, .external_lex_state = 5}, - [3155] = {.lex_state = 38, .external_lex_state = 5}, + [3155] = {.lex_state = 25, .external_lex_state = 4}, [3156] = {.lex_state = 38, .external_lex_state = 5}, - [3157] = {.lex_state = 38, .external_lex_state = 5}, + [3157] = {.lex_state = 25, .external_lex_state = 4}, [3158] = {.lex_state = 25, .external_lex_state = 4}, - [3159] = {.lex_state = 38, .external_lex_state = 5}, - [3160] = {.lex_state = 25, .external_lex_state = 3}, - [3161] = {.lex_state = 38, .external_lex_state = 5}, - [3162] = {.lex_state = 39, .external_lex_state = 2}, - [3163] = {.lex_state = 38, .external_lex_state = 5}, - [3164] = {.lex_state = 38, .external_lex_state = 5}, + [3159] = {.lex_state = 25, .external_lex_state = 4}, + [3160] = {.lex_state = 25, .external_lex_state = 4}, + [3161] = {.lex_state = 25, .external_lex_state = 4}, + [3162] = {.lex_state = 25, .external_lex_state = 4}, + [3163] = {.lex_state = 25, .external_lex_state = 4}, + [3164] = {.lex_state = 25, .external_lex_state = 4}, [3165] = {.lex_state = 25, .external_lex_state = 4}, - [3166] = {.lex_state = 25, .external_lex_state = 3}, + [3166] = {.lex_state = 25, .external_lex_state = 4}, [3167] = {.lex_state = 25, .external_lex_state = 4}, [3168] = {.lex_state = 25, .external_lex_state = 3}, - [3169] = {.lex_state = 38, .external_lex_state = 5}, - [3170] = {.lex_state = 25, .external_lex_state = 3}, - [3171] = {.lex_state = 38, .external_lex_state = 5}, - [3172] = {.lex_state = 25, .external_lex_state = 3}, - [3173] = {.lex_state = 38, .external_lex_state = 5}, - [3174] = {.lex_state = 25, .external_lex_state = 3}, - [3175] = {.lex_state = 25, .external_lex_state = 3}, - [3176] = {.lex_state = 38, .external_lex_state = 5}, - [3177] = {.lex_state = 38, .external_lex_state = 5}, + [3169] = {.lex_state = 39, .external_lex_state = 2}, + [3170] = {.lex_state = 25, .external_lex_state = 4}, + [3171] = {.lex_state = 25, .external_lex_state = 4}, + [3172] = {.lex_state = 25, .external_lex_state = 4}, + [3173] = {.lex_state = 25, .external_lex_state = 4}, + [3174] = {.lex_state = 39, .external_lex_state = 2}, + [3175] = {.lex_state = 25, .external_lex_state = 4}, + [3176] = {.lex_state = 23, .external_lex_state = 3}, + [3177] = {.lex_state = 25, .external_lex_state = 4}, [3178] = {.lex_state = 25, .external_lex_state = 3}, - [3179] = {.lex_state = 38, .external_lex_state = 5}, - [3180] = {.lex_state = 38, .external_lex_state = 5}, - [3181] = {.lex_state = 38, .external_lex_state = 5}, - [3182] = {.lex_state = 25, .external_lex_state = 4}, + [3179] = {.lex_state = 25, .external_lex_state = 4}, + [3180] = {.lex_state = 25, .external_lex_state = 4}, + [3181] = {.lex_state = 25, .external_lex_state = 4}, + [3182] = {.lex_state = 25, .external_lex_state = 3}, [3183] = {.lex_state = 25, .external_lex_state = 3}, - [3184] = {.lex_state = 38, .external_lex_state = 5}, - [3185] = {.lex_state = 38, .external_lex_state = 5}, - [3186] = {.lex_state = 38, .external_lex_state = 5}, - [3187] = {.lex_state = 38, .external_lex_state = 5}, + [3184] = {.lex_state = 25, .external_lex_state = 4}, + [3185] = {.lex_state = 25, .external_lex_state = 4}, + [3186] = {.lex_state = 25, .external_lex_state = 4}, + [3187] = {.lex_state = 25, .external_lex_state = 4}, [3188] = {.lex_state = 25, .external_lex_state = 4}, - [3189] = {.lex_state = 25, .external_lex_state = 3}, - [3190] = {.lex_state = 38, .external_lex_state = 5}, - [3191] = {.lex_state = 25, .external_lex_state = 3}, - [3192] = {.lex_state = 25, .external_lex_state = 3}, - [3193] = {.lex_state = 38, .external_lex_state = 5}, - [3194] = {.lex_state = 25, .external_lex_state = 3}, - [3195] = {.lex_state = 25, .external_lex_state = 3}, - [3196] = {.lex_state = 25, .external_lex_state = 3}, - [3197] = {.lex_state = 25, .external_lex_state = 3}, - [3198] = {.lex_state = 25, .external_lex_state = 3}, - [3199] = {.lex_state = 25, .external_lex_state = 3}, - [3200] = {.lex_state = 25, .external_lex_state = 3}, - [3201] = {.lex_state = 25, .external_lex_state = 3}, - [3202] = {.lex_state = 25, .external_lex_state = 3}, - [3203] = {.lex_state = 25, .external_lex_state = 3}, + [3189] = {.lex_state = 25, .external_lex_state = 4}, + [3190] = {.lex_state = 25, .external_lex_state = 4}, + [3191] = {.lex_state = 25, .external_lex_state = 4}, + [3192] = {.lex_state = 25, .external_lex_state = 4}, + [3193] = {.lex_state = 25, .external_lex_state = 4}, + [3194] = {.lex_state = 25, .external_lex_state = 4}, + [3195] = {.lex_state = 25, .external_lex_state = 4}, + [3196] = {.lex_state = 25, .external_lex_state = 4}, + [3197] = {.lex_state = 25, .external_lex_state = 4}, + [3198] = {.lex_state = 25, .external_lex_state = 4}, + [3199] = {.lex_state = 25, .external_lex_state = 4}, + [3200] = {.lex_state = 25, .external_lex_state = 4}, + [3201] = {.lex_state = 25, .external_lex_state = 4}, + [3202] = {.lex_state = 25, .external_lex_state = 4}, + [3203] = {.lex_state = 25, .external_lex_state = 4}, [3204] = {.lex_state = 25, .external_lex_state = 4}, - [3205] = {.lex_state = 38, .external_lex_state = 5}, + [3205] = {.lex_state = 25, .external_lex_state = 4}, [3206] = {.lex_state = 25, .external_lex_state = 4}, - [3207] = {.lex_state = 25, .external_lex_state = 3}, - [3208] = {.lex_state = 25, .external_lex_state = 3}, - [3209] = {.lex_state = 25, .external_lex_state = 3}, - [3210] = {.lex_state = 25, .external_lex_state = 3}, - [3211] = {.lex_state = 25, .external_lex_state = 3}, - [3212] = {.lex_state = 25, .external_lex_state = 3}, - [3213] = {.lex_state = 25, .external_lex_state = 3}, - [3214] = {.lex_state = 25, .external_lex_state = 3}, - [3215] = {.lex_state = 25, .external_lex_state = 3}, - [3216] = {.lex_state = 25, .external_lex_state = 3}, - [3217] = {.lex_state = 25, .external_lex_state = 3}, - [3218] = {.lex_state = 25, .external_lex_state = 3}, + [3207] = {.lex_state = 25, .external_lex_state = 4}, + [3208] = {.lex_state = 25, .external_lex_state = 4}, + [3209] = {.lex_state = 25, .external_lex_state = 4}, + [3210] = {.lex_state = 25, .external_lex_state = 4}, + [3211] = {.lex_state = 25, .external_lex_state = 4}, + [3212] = {.lex_state = 25, .external_lex_state = 4}, + [3213] = {.lex_state = 25, .external_lex_state = 4}, + [3214] = {.lex_state = 25, .external_lex_state = 4}, + [3215] = {.lex_state = 25, .external_lex_state = 4}, + [3216] = {.lex_state = 25, .external_lex_state = 4}, + [3217] = {.lex_state = 25, .external_lex_state = 4}, + [3218] = {.lex_state = 25, .external_lex_state = 4}, [3219] = {.lex_state = 25, .external_lex_state = 4}, - [3220] = {.lex_state = 38, .external_lex_state = 5}, - [3221] = {.lex_state = 38, .external_lex_state = 5}, - [3222] = {.lex_state = 38, .external_lex_state = 5}, - [3223] = {.lex_state = 25, .external_lex_state = 3}, - [3224] = {.lex_state = 25, .external_lex_state = 3}, + [3220] = {.lex_state = 25, .external_lex_state = 4}, + [3221] = {.lex_state = 25, .external_lex_state = 4}, + [3222] = {.lex_state = 25, .external_lex_state = 4}, + [3223] = {.lex_state = 38, .external_lex_state = 2}, + [3224] = {.lex_state = 25, .external_lex_state = 4}, [3225] = {.lex_state = 25, .external_lex_state = 4}, - [3226] = {.lex_state = 25, .external_lex_state = 3}, - [3227] = {.lex_state = 25, .external_lex_state = 4}, - [3228] = {.lex_state = 38, .external_lex_state = 5}, - [3229] = {.lex_state = 38, .external_lex_state = 5}, - [3230] = {.lex_state = 25, .external_lex_state = 3}, - [3231] = {.lex_state = 38, .external_lex_state = 5}, - [3232] = {.lex_state = 38, .external_lex_state = 5}, - [3233] = {.lex_state = 25, .external_lex_state = 3}, - [3234] = {.lex_state = 38, .external_lex_state = 5}, - [3235] = {.lex_state = 25, .external_lex_state = 3}, - [3236] = {.lex_state = 38, .external_lex_state = 5}, - [3237] = {.lex_state = 38, .external_lex_state = 5}, - [3238] = {.lex_state = 38, .external_lex_state = 5}, - [3239] = {.lex_state = 25, .external_lex_state = 3}, - [3240] = {.lex_state = 38, .external_lex_state = 5}, + [3226] = {.lex_state = 25, .external_lex_state = 4}, + [3227] = {.lex_state = 38, .external_lex_state = 2}, + [3228] = {.lex_state = 38, .external_lex_state = 2}, + [3229] = {.lex_state = 25, .external_lex_state = 4}, + [3230] = {.lex_state = 25, .external_lex_state = 4}, + [3231] = {.lex_state = 25, .external_lex_state = 4}, + [3232] = {.lex_state = 25, .external_lex_state = 4}, + [3233] = {.lex_state = 25, .external_lex_state = 4}, + [3234] = {.lex_state = 25, .external_lex_state = 4}, + [3235] = {.lex_state = 25, .external_lex_state = 4}, + [3236] = {.lex_state = 25, .external_lex_state = 4}, + [3237] = {.lex_state = 25, .external_lex_state = 4}, + [3238] = {.lex_state = 25, .external_lex_state = 4}, + [3239] = {.lex_state = 25, .external_lex_state = 4}, + [3240] = {.lex_state = 25, .external_lex_state = 4}, [3241] = {.lex_state = 25, .external_lex_state = 4}, [3242] = {.lex_state = 25, .external_lex_state = 4}, - [3243] = {.lex_state = 25, .external_lex_state = 4}, + [3243] = {.lex_state = 25, .external_lex_state = 3}, [3244] = {.lex_state = 25, .external_lex_state = 3}, - [3245] = {.lex_state = 38, .external_lex_state = 5}, + [3245] = {.lex_state = 25, .external_lex_state = 4}, [3246] = {.lex_state = 25, .external_lex_state = 3}, - [3247] = {.lex_state = 39, .external_lex_state = 2}, - [3248] = {.lex_state = 25, .external_lex_state = 3}, - [3249] = {.lex_state = 38, .external_lex_state = 5}, - [3250] = {.lex_state = 25, .external_lex_state = 3}, + [3247] = {.lex_state = 25, .external_lex_state = 3}, + [3248] = {.lex_state = 25, .external_lex_state = 4}, + [3249] = {.lex_state = 25, .external_lex_state = 4}, + [3250] = {.lex_state = 25, .external_lex_state = 4}, [3251] = {.lex_state = 25, .external_lex_state = 4}, - [3252] = {.lex_state = 38, .external_lex_state = 5}, + [3252] = {.lex_state = 25, .external_lex_state = 4}, [3253] = {.lex_state = 25, .external_lex_state = 4}, - [3254] = {.lex_state = 38, .external_lex_state = 5}, - [3255] = {.lex_state = 38, .external_lex_state = 5}, - [3256] = {.lex_state = 25, .external_lex_state = 3}, - [3257] = {.lex_state = 25, .external_lex_state = 3}, + [3254] = {.lex_state = 25, .external_lex_state = 4}, + [3255] = {.lex_state = 25, .external_lex_state = 4}, + [3256] = {.lex_state = 25, .external_lex_state = 4}, + [3257] = {.lex_state = 25, .external_lex_state = 4}, [3258] = {.lex_state = 25, .external_lex_state = 3}, - [3259] = {.lex_state = 25, .external_lex_state = 3}, - [3260] = {.lex_state = 25, .external_lex_state = 3}, - [3261] = {.lex_state = 25, .external_lex_state = 3}, - [3262] = {.lex_state = 25, .external_lex_state = 3}, + [3259] = {.lex_state = 25, .external_lex_state = 4}, + [3260] = {.lex_state = 25, .external_lex_state = 4}, + [3261] = {.lex_state = 25, .external_lex_state = 4}, + [3262] = {.lex_state = 25, .external_lex_state = 4}, [3263] = {.lex_state = 25, .external_lex_state = 3}, - [3264] = {.lex_state = 25, .external_lex_state = 3}, - [3265] = {.lex_state = 25, .external_lex_state = 3}, - [3266] = {.lex_state = 38, .external_lex_state = 5}, - [3267] = {.lex_state = 38, .external_lex_state = 5}, - [3268] = {.lex_state = 25, .external_lex_state = 3}, - [3269] = {.lex_state = 25, .external_lex_state = 3}, + [3264] = {.lex_state = 25, .external_lex_state = 4}, + [3265] = {.lex_state = 25, .external_lex_state = 4}, + [3266] = {.lex_state = 25, .external_lex_state = 4}, + [3267] = {.lex_state = 25, .external_lex_state = 4}, + [3268] = {.lex_state = 25, .external_lex_state = 4}, + [3269] = {.lex_state = 25, .external_lex_state = 4}, [3270] = {.lex_state = 25, .external_lex_state = 4}, - [3271] = {.lex_state = 38, .external_lex_state = 5}, + [3271] = {.lex_state = 25, .external_lex_state = 4}, [3272] = {.lex_state = 25, .external_lex_state = 4}, [3273] = {.lex_state = 25, .external_lex_state = 4}, - [3274] = {.lex_state = 38, .external_lex_state = 5}, - [3275] = {.lex_state = 38, .external_lex_state = 5}, - [3276] = {.lex_state = 38, .external_lex_state = 5}, - [3277] = {.lex_state = 38, .external_lex_state = 5}, + [3274] = {.lex_state = 25, .external_lex_state = 4}, + [3275] = {.lex_state = 25, .external_lex_state = 4}, + [3276] = {.lex_state = 25, .external_lex_state = 4}, + [3277] = {.lex_state = 25, .external_lex_state = 4}, [3278] = {.lex_state = 25, .external_lex_state = 4}, - [3279] = {.lex_state = 25, .external_lex_state = 3}, - [3280] = {.lex_state = 25, .external_lex_state = 3}, + [3279] = {.lex_state = 25, .external_lex_state = 4}, + [3280] = {.lex_state = 25, .external_lex_state = 4}, [3281] = {.lex_state = 39, .external_lex_state = 2}, [3282] = {.lex_state = 25, .external_lex_state = 3}, [3283] = {.lex_state = 25, .external_lex_state = 3}, - [3284] = {.lex_state = 25, .external_lex_state = 4}, - [3285] = {.lex_state = 38, .external_lex_state = 5}, + [3284] = {.lex_state = 25, .external_lex_state = 3}, + [3285] = {.lex_state = 25, .external_lex_state = 4}, [3286] = {.lex_state = 25, .external_lex_state = 4}, [3287] = {.lex_state = 25, .external_lex_state = 4}, - [3288] = {.lex_state = 38, .external_lex_state = 5}, + [3288] = {.lex_state = 25, .external_lex_state = 4}, [3289] = {.lex_state = 25, .external_lex_state = 4}, - [3290] = {.lex_state = 25, .external_lex_state = 3}, - [3291] = {.lex_state = 25, .external_lex_state = 3}, - [3292] = {.lex_state = 39, .external_lex_state = 2}, - [3293] = {.lex_state = 25, .external_lex_state = 3}, + [3290] = {.lex_state = 25, .external_lex_state = 4}, + [3291] = {.lex_state = 25, .external_lex_state = 4}, + [3292] = {.lex_state = 25, .external_lex_state = 4}, + [3293] = {.lex_state = 25, .external_lex_state = 4}, [3294] = {.lex_state = 25, .external_lex_state = 4}, - [3295] = {.lex_state = 25, .external_lex_state = 3}, - [3296] = {.lex_state = 25, .external_lex_state = 3}, - [3297] = {.lex_state = 39, .external_lex_state = 2}, - [3298] = {.lex_state = 38, .external_lex_state = 5}, - [3299] = {.lex_state = 38, .external_lex_state = 5}, - [3300] = {.lex_state = 25, .external_lex_state = 3}, - [3301] = {.lex_state = 38, .external_lex_state = 5}, - [3302] = {.lex_state = 25, .external_lex_state = 3}, - [3303] = {.lex_state = 25, .external_lex_state = 3}, + [3295] = {.lex_state = 25, .external_lex_state = 4}, + [3296] = {.lex_state = 25, .external_lex_state = 4}, + [3297] = {.lex_state = 25, .external_lex_state = 4}, + [3298] = {.lex_state = 25, .external_lex_state = 4}, + [3299] = {.lex_state = 25, .external_lex_state = 4}, + [3300] = {.lex_state = 25, .external_lex_state = 4}, + [3301] = {.lex_state = 25, .external_lex_state = 4}, + [3302] = {.lex_state = 25, .external_lex_state = 4}, + [3303] = {.lex_state = 39, .external_lex_state = 2}, [3304] = {.lex_state = 25, .external_lex_state = 4}, - [3305] = {.lex_state = 23, .external_lex_state = 3}, - [3306] = {.lex_state = 25, .external_lex_state = 4}, - [3307] = {.lex_state = 25, .external_lex_state = 3}, + [3305] = {.lex_state = 39, .external_lex_state = 2}, + [3306] = {.lex_state = 39, .external_lex_state = 2}, + [3307] = {.lex_state = 25, .external_lex_state = 4}, [3308] = {.lex_state = 25, .external_lex_state = 4}, [3309] = {.lex_state = 25, .external_lex_state = 4}, [3310] = {.lex_state = 25, .external_lex_state = 4}, @@ -26352,1392 +26114,1392 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3316] = {.lex_state = 25, .external_lex_state = 4}, [3317] = {.lex_state = 25, .external_lex_state = 4}, [3318] = {.lex_state = 25, .external_lex_state = 4}, - [3319] = {.lex_state = 25, .external_lex_state = 4}, + [3319] = {.lex_state = 38, .external_lex_state = 2}, [3320] = {.lex_state = 25, .external_lex_state = 4}, [3321] = {.lex_state = 25, .external_lex_state = 4}, [3322] = {.lex_state = 25, .external_lex_state = 4}, [3323] = {.lex_state = 25, .external_lex_state = 4}, [3324] = {.lex_state = 25, .external_lex_state = 4}, [3325] = {.lex_state = 25, .external_lex_state = 4}, - [3326] = {.lex_state = 39, .external_lex_state = 2}, + [3326] = {.lex_state = 25, .external_lex_state = 4}, [3327] = {.lex_state = 25, .external_lex_state = 4}, - [3328] = {.lex_state = 25, .external_lex_state = 3}, - [3329] = {.lex_state = 25, .external_lex_state = 3}, - [3330] = {.lex_state = 39, .external_lex_state = 2}, - [3331] = {.lex_state = 39, .external_lex_state = 2}, + [3328] = {.lex_state = 25, .external_lex_state = 4}, + [3329] = {.lex_state = 25, .external_lex_state = 4}, + [3330] = {.lex_state = 25, .external_lex_state = 4}, + [3331] = {.lex_state = 25, .external_lex_state = 4}, [3332] = {.lex_state = 25, .external_lex_state = 4}, [3333] = {.lex_state = 25, .external_lex_state = 4}, [3334] = {.lex_state = 25, .external_lex_state = 4}, [3335] = {.lex_state = 38, .external_lex_state = 2}, [3336] = {.lex_state = 25, .external_lex_state = 4}, - [3337] = {.lex_state = 39, .external_lex_state = 2}, - [3338] = {.lex_state = 25, .external_lex_state = 4}, + [3337] = {.lex_state = 25, .external_lex_state = 4}, + [3338] = {.lex_state = 38, .external_lex_state = 2}, [3339] = {.lex_state = 25, .external_lex_state = 4}, - [3340] = {.lex_state = 25, .external_lex_state = 4}, - [3341] = {.lex_state = 25, .external_lex_state = 4}, - [3342] = {.lex_state = 25, .external_lex_state = 4}, + [3340] = {.lex_state = 39, .external_lex_state = 2}, + [3341] = {.lex_state = 25, .external_lex_state = 3}, + [3342] = {.lex_state = 25, .external_lex_state = 3}, [3343] = {.lex_state = 25, .external_lex_state = 3}, - [3344] = {.lex_state = 25, .external_lex_state = 4}, - [3345] = {.lex_state = 25, .external_lex_state = 4}, - [3346] = {.lex_state = 25, .external_lex_state = 4}, - [3347] = {.lex_state = 25, .external_lex_state = 3}, + [3344] = {.lex_state = 39, .external_lex_state = 2}, + [3345] = {.lex_state = 39, .external_lex_state = 2}, + [3346] = {.lex_state = 39, .external_lex_state = 2}, + [3347] = {.lex_state = 38, .external_lex_state = 2}, [3348] = {.lex_state = 25, .external_lex_state = 4}, [3349] = {.lex_state = 25, .external_lex_state = 4}, [3350] = {.lex_state = 25, .external_lex_state = 4}, [3351] = {.lex_state = 25, .external_lex_state = 4}, [3352] = {.lex_state = 25, .external_lex_state = 4}, - [3353] = {.lex_state = 39, .external_lex_state = 2}, + [3353] = {.lex_state = 25, .external_lex_state = 4}, [3354] = {.lex_state = 25, .external_lex_state = 4}, [3355] = {.lex_state = 25, .external_lex_state = 4}, - [3356] = {.lex_state = 39, .external_lex_state = 2}, + [3356] = {.lex_state = 25, .external_lex_state = 4}, [3357] = {.lex_state = 25, .external_lex_state = 4}, [3358] = {.lex_state = 25, .external_lex_state = 4}, - [3359] = {.lex_state = 25, .external_lex_state = 4}, - [3360] = {.lex_state = 39, .external_lex_state = 2}, + [3359] = {.lex_state = 25, .external_lex_state = 3}, + [3360] = {.lex_state = 25, .external_lex_state = 3}, [3361] = {.lex_state = 25, .external_lex_state = 4}, [3362] = {.lex_state = 25, .external_lex_state = 4}, [3363] = {.lex_state = 38, .external_lex_state = 2}, - [3364] = {.lex_state = 25, .external_lex_state = 4}, - [3365] = {.lex_state = 25, .external_lex_state = 4}, - [3366] = {.lex_state = 38, .external_lex_state = 2}, - [3367] = {.lex_state = 25, .external_lex_state = 4}, + [3364] = {.lex_state = 25, .external_lex_state = 3}, + [3365] = {.lex_state = 25, .external_lex_state = 3}, + [3366] = {.lex_state = 25, .external_lex_state = 3}, + [3367] = {.lex_state = 25, .external_lex_state = 3}, [3368] = {.lex_state = 25, .external_lex_state = 4}, - [3369] = {.lex_state = 25, .external_lex_state = 4}, - [3370] = {.lex_state = 25, .external_lex_state = 4}, - [3371] = {.lex_state = 25, .external_lex_state = 4}, + [3369] = {.lex_state = 25, .external_lex_state = 3}, + [3370] = {.lex_state = 25, .external_lex_state = 3}, + [3371] = {.lex_state = 25, .external_lex_state = 3}, [3372] = {.lex_state = 25, .external_lex_state = 4}, - [3373] = {.lex_state = 25, .external_lex_state = 4}, - [3374] = {.lex_state = 25, .external_lex_state = 4}, + [3373] = {.lex_state = 39, .external_lex_state = 2}, + [3374] = {.lex_state = 25, .external_lex_state = 3}, [3375] = {.lex_state = 25, .external_lex_state = 4}, - [3376] = {.lex_state = 25, .external_lex_state = 4}, - [3377] = {.lex_state = 25, .external_lex_state = 4}, + [3376] = {.lex_state = 25, .external_lex_state = 3}, + [3377] = {.lex_state = 25, .external_lex_state = 3}, [3378] = {.lex_state = 25, .external_lex_state = 4}, - [3379] = {.lex_state = 25, .external_lex_state = 4}, - [3380] = {.lex_state = 25, .external_lex_state = 3}, + [3379] = {.lex_state = 25, .external_lex_state = 3}, + [3380] = {.lex_state = 25, .external_lex_state = 4}, [3381] = {.lex_state = 25, .external_lex_state = 4}, - [3382] = {.lex_state = 25, .external_lex_state = 4}, - [3383] = {.lex_state = 25, .external_lex_state = 4}, + [3382] = {.lex_state = 25, .external_lex_state = 3}, + [3383] = {.lex_state = 25, .external_lex_state = 3}, [3384] = {.lex_state = 25, .external_lex_state = 3}, [3385] = {.lex_state = 25, .external_lex_state = 4}, - [3386] = {.lex_state = 25, .external_lex_state = 4}, - [3387] = {.lex_state = 25, .external_lex_state = 4}, - [3388] = {.lex_state = 25, .external_lex_state = 4}, - [3389] = {.lex_state = 25, .external_lex_state = 4}, - [3390] = {.lex_state = 25, .external_lex_state = 4}, - [3391] = {.lex_state = 25, .external_lex_state = 4}, - [3392] = {.lex_state = 25, .external_lex_state = 4}, - [3393] = {.lex_state = 25, .external_lex_state = 4}, - [3394] = {.lex_state = 25, .external_lex_state = 4}, + [3386] = {.lex_state = 25, .external_lex_state = 3}, + [3387] = {.lex_state = 25, .external_lex_state = 3}, + [3388] = {.lex_state = 25, .external_lex_state = 3}, + [3389] = {.lex_state = 25, .external_lex_state = 3}, + [3390] = {.lex_state = 25, .external_lex_state = 3}, + [3391] = {.lex_state = 25, .external_lex_state = 3}, + [3392] = {.lex_state = 39, .external_lex_state = 2}, + [3393] = {.lex_state = 25, .external_lex_state = 3}, + [3394] = {.lex_state = 25, .external_lex_state = 3}, [3395] = {.lex_state = 25, .external_lex_state = 4}, - [3396] = {.lex_state = 38, .external_lex_state = 2}, + [3396] = {.lex_state = 25, .external_lex_state = 3}, [3397] = {.lex_state = 25, .external_lex_state = 4}, - [3398] = {.lex_state = 25, .external_lex_state = 4}, + [3398] = {.lex_state = 25, .external_lex_state = 3}, [3399] = {.lex_state = 25, .external_lex_state = 4}, [3400] = {.lex_state = 25, .external_lex_state = 4}, [3401] = {.lex_state = 25, .external_lex_state = 4}, - [3402] = {.lex_state = 25, .external_lex_state = 4}, - [3403] = {.lex_state = 25, .external_lex_state = 4}, - [3404] = {.lex_state = 25, .external_lex_state = 4}, + [3402] = {.lex_state = 25, .external_lex_state = 3}, + [3403] = {.lex_state = 25, .external_lex_state = 3}, + [3404] = {.lex_state = 25, .external_lex_state = 3}, [3405] = {.lex_state = 25, .external_lex_state = 4}, - [3406] = {.lex_state = 25, .external_lex_state = 4}, + [3406] = {.lex_state = 25, .external_lex_state = 3}, [3407] = {.lex_state = 25, .external_lex_state = 4}, - [3408] = {.lex_state = 25, .external_lex_state = 4}, + [3408] = {.lex_state = 25, .external_lex_state = 3}, [3409] = {.lex_state = 25, .external_lex_state = 4}, - [3410] = {.lex_state = 25, .external_lex_state = 4}, + [3410] = {.lex_state = 25, .external_lex_state = 3}, [3411] = {.lex_state = 25, .external_lex_state = 4}, - [3412] = {.lex_state = 25, .external_lex_state = 3}, + [3412] = {.lex_state = 25, .external_lex_state = 4}, [3413] = {.lex_state = 25, .external_lex_state = 4}, - [3414] = {.lex_state = 25, .external_lex_state = 4}, + [3414] = {.lex_state = 25, .external_lex_state = 3}, [3415] = {.lex_state = 25, .external_lex_state = 3}, - [3416] = {.lex_state = 25, .external_lex_state = 3}, - [3417] = {.lex_state = 25, .external_lex_state = 3}, + [3416] = {.lex_state = 25, .external_lex_state = 4}, + [3417] = {.lex_state = 39, .external_lex_state = 2}, [3418] = {.lex_state = 25, .external_lex_state = 4}, [3419] = {.lex_state = 25, .external_lex_state = 4}, - [3420] = {.lex_state = 25, .external_lex_state = 4}, + [3420] = {.lex_state = 25, .external_lex_state = 3}, [3421] = {.lex_state = 25, .external_lex_state = 4}, [3422] = {.lex_state = 25, .external_lex_state = 4}, - [3423] = {.lex_state = 25, .external_lex_state = 4}, + [3423] = {.lex_state = 25, .external_lex_state = 3}, [3424] = {.lex_state = 25, .external_lex_state = 4}, [3425] = {.lex_state = 25, .external_lex_state = 4}, - [3426] = {.lex_state = 25, .external_lex_state = 4}, + [3426] = {.lex_state = 25, .external_lex_state = 3}, [3427] = {.lex_state = 25, .external_lex_state = 4}, [3428] = {.lex_state = 25, .external_lex_state = 4}, - [3429] = {.lex_state = 25, .external_lex_state = 3}, + [3429] = {.lex_state = 25, .external_lex_state = 4}, [3430] = {.lex_state = 25, .external_lex_state = 4}, - [3431] = {.lex_state = 25, .external_lex_state = 4}, + [3431] = {.lex_state = 39, .external_lex_state = 2}, [3432] = {.lex_state = 25, .external_lex_state = 4}, - [3433] = {.lex_state = 25, .external_lex_state = 4}, - [3434] = {.lex_state = 25, .external_lex_state = 4}, + [3433] = {.lex_state = 25, .external_lex_state = 3}, + [3434] = {.lex_state = 39, .external_lex_state = 2}, [3435] = {.lex_state = 25, .external_lex_state = 4}, - [3436] = {.lex_state = 25, .external_lex_state = 4}, - [3437] = {.lex_state = 25, .external_lex_state = 4}, - [3438] = {.lex_state = 25, .external_lex_state = 4}, - [3439] = {.lex_state = 25, .external_lex_state = 4}, - [3440] = {.lex_state = 25, .external_lex_state = 3}, - [3441] = {.lex_state = 25, .external_lex_state = 3}, + [3436] = {.lex_state = 25, .external_lex_state = 3}, + [3437] = {.lex_state = 39, .external_lex_state = 2}, + [3438] = {.lex_state = 25, .external_lex_state = 3}, + [3439] = {.lex_state = 39, .external_lex_state = 2}, + [3440] = {.lex_state = 26, .external_lex_state = 4}, + [3441] = {.lex_state = 25, .external_lex_state = 4}, [3442] = {.lex_state = 25, .external_lex_state = 3}, - [3443] = {.lex_state = 25, .external_lex_state = 4}, - [3444] = {.lex_state = 25, .external_lex_state = 4}, - [3445] = {.lex_state = 25, .external_lex_state = 4}, + [3443] = {.lex_state = 25, .external_lex_state = 3}, + [3444] = {.lex_state = 25, .external_lex_state = 3}, + [3445] = {.lex_state = 25, .external_lex_state = 3}, [3446] = {.lex_state = 25, .external_lex_state = 4}, - [3447] = {.lex_state = 25, .external_lex_state = 4}, - [3448] = {.lex_state = 25, .external_lex_state = 4}, - [3449] = {.lex_state = 25, .external_lex_state = 4}, - [3450] = {.lex_state = 25, .external_lex_state = 4}, - [3451] = {.lex_state = 25, .external_lex_state = 4}, + [3447] = {.lex_state = 25, .external_lex_state = 3}, + [3448] = {.lex_state = 25, .external_lex_state = 3}, + [3449] = {.lex_state = 25, .external_lex_state = 3}, + [3450] = {.lex_state = 25, .external_lex_state = 3}, + [3451] = {.lex_state = 25, .external_lex_state = 3}, [3452] = {.lex_state = 25, .external_lex_state = 4}, - [3453] = {.lex_state = 25, .external_lex_state = 4}, - [3454] = {.lex_state = 25, .external_lex_state = 4}, - [3455] = {.lex_state = 25, .external_lex_state = 4}, + [3453] = {.lex_state = 25, .external_lex_state = 3}, + [3454] = {.lex_state = 25, .external_lex_state = 3}, + [3455] = {.lex_state = 25, .external_lex_state = 3}, [3456] = {.lex_state = 25, .external_lex_state = 4}, - [3457] = {.lex_state = 25, .external_lex_state = 4}, - [3458] = {.lex_state = 25, .external_lex_state = 4}, - [3459] = {.lex_state = 25, .external_lex_state = 4}, + [3457] = {.lex_state = 39, .external_lex_state = 2}, + [3458] = {.lex_state = 25, .external_lex_state = 3}, + [3459] = {.lex_state = 25, .external_lex_state = 3}, [3460] = {.lex_state = 25, .external_lex_state = 4}, - [3461] = {.lex_state = 38, .external_lex_state = 2}, - [3462] = {.lex_state = 39, .external_lex_state = 2}, - [3463] = {.lex_state = 25, .external_lex_state = 4}, - [3464] = {.lex_state = 25, .external_lex_state = 4}, - [3465] = {.lex_state = 25, .external_lex_state = 4}, - [3466] = {.lex_state = 25, .external_lex_state = 4}, - [3467] = {.lex_state = 25, .external_lex_state = 4}, - [3468] = {.lex_state = 38, .external_lex_state = 2}, + [3461] = {.lex_state = 25, .external_lex_state = 3}, + [3462] = {.lex_state = 25, .external_lex_state = 3}, + [3463] = {.lex_state = 25, .external_lex_state = 3}, + [3464] = {.lex_state = 25, .external_lex_state = 3}, + [3465] = {.lex_state = 25, .external_lex_state = 3}, + [3466] = {.lex_state = 25, .external_lex_state = 3}, + [3467] = {.lex_state = 39, .external_lex_state = 2}, + [3468] = {.lex_state = 25, .external_lex_state = 4}, [3469] = {.lex_state = 25, .external_lex_state = 4}, [3470] = {.lex_state = 25, .external_lex_state = 3}, - [3471] = {.lex_state = 25, .external_lex_state = 4}, - [3472] = {.lex_state = 38, .external_lex_state = 2}, + [3471] = {.lex_state = 25, .external_lex_state = 3}, + [3472] = {.lex_state = 25, .external_lex_state = 3}, [3473] = {.lex_state = 25, .external_lex_state = 4}, - [3474] = {.lex_state = 25, .external_lex_state = 4}, - [3475] = {.lex_state = 25, .external_lex_state = 4}, - [3476] = {.lex_state = 25, .external_lex_state = 4}, - [3477] = {.lex_state = 25, .external_lex_state = 4}, - [3478] = {.lex_state = 25, .external_lex_state = 4}, - [3479] = {.lex_state = 25, .external_lex_state = 4}, - [3480] = {.lex_state = 25, .external_lex_state = 4}, - [3481] = {.lex_state = 25, .external_lex_state = 4}, - [3482] = {.lex_state = 25, .external_lex_state = 4}, - [3483] = {.lex_state = 25, .external_lex_state = 4}, - [3484] = {.lex_state = 25, .external_lex_state = 4}, - [3485] = {.lex_state = 25, .external_lex_state = 4}, + [3474] = {.lex_state = 25, .external_lex_state = 3}, + [3475] = {.lex_state = 25, .external_lex_state = 3}, + [3476] = {.lex_state = 25, .external_lex_state = 3}, + [3477] = {.lex_state = 25, .external_lex_state = 3}, + [3478] = {.lex_state = 25, .external_lex_state = 3}, + [3479] = {.lex_state = 25, .external_lex_state = 3}, + [3480] = {.lex_state = 39, .external_lex_state = 2}, + [3481] = {.lex_state = 39, .external_lex_state = 2}, + [3482] = {.lex_state = 25, .external_lex_state = 3}, + [3483] = {.lex_state = 25, .external_lex_state = 3}, + [3484] = {.lex_state = 25, .external_lex_state = 3}, + [3485] = {.lex_state = 25, .external_lex_state = 3}, [3486] = {.lex_state = 25, .external_lex_state = 4}, [3487] = {.lex_state = 25, .external_lex_state = 4}, [3488] = {.lex_state = 25, .external_lex_state = 4}, - [3489] = {.lex_state = 25, .external_lex_state = 4}, - [3490] = {.lex_state = 25, .external_lex_state = 4}, + [3489] = {.lex_state = 25, .external_lex_state = 3}, + [3490] = {.lex_state = 39, .external_lex_state = 2}, [3491] = {.lex_state = 25, .external_lex_state = 4}, - [3492] = {.lex_state = 25, .external_lex_state = 4}, + [3492] = {.lex_state = 39, .external_lex_state = 2}, [3493] = {.lex_state = 25, .external_lex_state = 4}, [3494] = {.lex_state = 25, .external_lex_state = 4}, - [3495] = {.lex_state = 25, .external_lex_state = 4}, - [3496] = {.lex_state = 25, .external_lex_state = 4}, - [3497] = {.lex_state = 25, .external_lex_state = 4}, - [3498] = {.lex_state = 25, .external_lex_state = 3}, - [3499] = {.lex_state = 25, .external_lex_state = 4}, - [3500] = {.lex_state = 25, .external_lex_state = 4}, - [3501] = {.lex_state = 25, .external_lex_state = 4}, - [3502] = {.lex_state = 39, .external_lex_state = 2}, - [3503] = {.lex_state = 25, .external_lex_state = 4}, + [3495] = {.lex_state = 25, .external_lex_state = 3}, + [3496] = {.lex_state = 25, .external_lex_state = 3}, + [3497] = {.lex_state = 25, .external_lex_state = 3}, + [3498] = {.lex_state = 23, .external_lex_state = 4}, + [3499] = {.lex_state = 25, .external_lex_state = 3}, + [3500] = {.lex_state = 25, .external_lex_state = 3}, + [3501] = {.lex_state = 25, .external_lex_state = 3}, + [3502] = {.lex_state = 25, .external_lex_state = 3}, + [3503] = {.lex_state = 25, .external_lex_state = 3}, [3504] = {.lex_state = 25, .external_lex_state = 4}, [3505] = {.lex_state = 25, .external_lex_state = 3}, - [3506] = {.lex_state = 25, .external_lex_state = 4}, - [3507] = {.lex_state = 25, .external_lex_state = 4}, + [3506] = {.lex_state = 39, .external_lex_state = 2}, + [3507] = {.lex_state = 25, .external_lex_state = 3}, [3508] = {.lex_state = 25, .external_lex_state = 4}, - [3509] = {.lex_state = 25, .external_lex_state = 4}, - [3510] = {.lex_state = 39, .external_lex_state = 2}, - [3511] = {.lex_state = 25, .external_lex_state = 4}, - [3512] = {.lex_state = 25, .external_lex_state = 3}, - [3513] = {.lex_state = 25, .external_lex_state = 4}, + [3509] = {.lex_state = 39, .external_lex_state = 2}, + [3510] = {.lex_state = 25, .external_lex_state = 3}, + [3511] = {.lex_state = 25, .external_lex_state = 3}, + [3512] = {.lex_state = 25, .external_lex_state = 4}, + [3513] = {.lex_state = 25, .external_lex_state = 3}, [3514] = {.lex_state = 39, .external_lex_state = 2}, [3515] = {.lex_state = 25, .external_lex_state = 4}, - [3516] = {.lex_state = 39, .external_lex_state = 2}, - [3517] = {.lex_state = 25, .external_lex_state = 4}, + [3516] = {.lex_state = 38, .external_lex_state = 2}, + [3517] = {.lex_state = 25, .external_lex_state = 3}, [3518] = {.lex_state = 25, .external_lex_state = 4}, [3519] = {.lex_state = 25, .external_lex_state = 4}, - [3520] = {.lex_state = 25, .external_lex_state = 4}, - [3521] = {.lex_state = 25, .external_lex_state = 4}, + [3520] = {.lex_state = 25, .external_lex_state = 3}, + [3521] = {.lex_state = 39, .external_lex_state = 2}, [3522] = {.lex_state = 25, .external_lex_state = 3}, [3523] = {.lex_state = 25, .external_lex_state = 3}, - [3524] = {.lex_state = 25, .external_lex_state = 4}, + [3524] = {.lex_state = 25, .external_lex_state = 3}, [3525] = {.lex_state = 25, .external_lex_state = 4}, - [3526] = {.lex_state = 25, .external_lex_state = 4}, + [3526] = {.lex_state = 39, .external_lex_state = 2}, [3527] = {.lex_state = 25, .external_lex_state = 4}, [3528] = {.lex_state = 25, .external_lex_state = 4}, [3529] = {.lex_state = 25, .external_lex_state = 4}, - [3530] = {.lex_state = 25, .external_lex_state = 3}, - [3531] = {.lex_state = 39, .external_lex_state = 2}, + [3530] = {.lex_state = 25, .external_lex_state = 4}, + [3531] = {.lex_state = 25, .external_lex_state = 3}, [3532] = {.lex_state = 25, .external_lex_state = 4}, - [3533] = {.lex_state = 25, .external_lex_state = 4}, + [3533] = {.lex_state = 39, .external_lex_state = 2}, [3534] = {.lex_state = 25, .external_lex_state = 3}, - [3535] = {.lex_state = 25, .external_lex_state = 4}, - [3536] = {.lex_state = 25, .external_lex_state = 4}, - [3537] = {.lex_state = 25, .external_lex_state = 4}, + [3535] = {.lex_state = 25, .external_lex_state = 3}, + [3536] = {.lex_state = 38, .external_lex_state = 2}, + [3537] = {.lex_state = 39, .external_lex_state = 2}, [3538] = {.lex_state = 25, .external_lex_state = 4}, [3539] = {.lex_state = 25, .external_lex_state = 3}, - [3540] = {.lex_state = 25, .external_lex_state = 4}, + [3540] = {.lex_state = 25, .external_lex_state = 3}, [3541] = {.lex_state = 25, .external_lex_state = 4}, [3542] = {.lex_state = 25, .external_lex_state = 3}, [3543] = {.lex_state = 25, .external_lex_state = 3}, [3544] = {.lex_state = 25, .external_lex_state = 4}, - [3545] = {.lex_state = 25, .external_lex_state = 3}, - [3546] = {.lex_state = 25, .external_lex_state = 4}, + [3545] = {.lex_state = 25, .external_lex_state = 4}, + [3546] = {.lex_state = 25, .external_lex_state = 3}, [3547] = {.lex_state = 25, .external_lex_state = 4}, - [3548] = {.lex_state = 39, .external_lex_state = 2}, + [3548] = {.lex_state = 25, .external_lex_state = 4}, [3549] = {.lex_state = 25, .external_lex_state = 3}, - [3550] = {.lex_state = 25, .external_lex_state = 4}, - [3551] = {.lex_state = 25, .external_lex_state = 4}, - [3552] = {.lex_state = 25, .external_lex_state = 4}, - [3553] = {.lex_state = 39, .external_lex_state = 2}, + [3550] = {.lex_state = 25, .external_lex_state = 3}, + [3551] = {.lex_state = 39, .external_lex_state = 2}, + [3552] = {.lex_state = 25, .external_lex_state = 3}, + [3553] = {.lex_state = 25, .external_lex_state = 3}, [3554] = {.lex_state = 25, .external_lex_state = 3}, - [3555] = {.lex_state = 25, .external_lex_state = 4}, - [3556] = {.lex_state = 25, .external_lex_state = 4}, - [3557] = {.lex_state = 39, .external_lex_state = 2}, - [3558] = {.lex_state = 25, .external_lex_state = 3}, + [3555] = {.lex_state = 25, .external_lex_state = 3}, + [3556] = {.lex_state = 25, .external_lex_state = 3}, + [3557] = {.lex_state = 25, .external_lex_state = 4}, + [3558] = {.lex_state = 25, .external_lex_state = 4}, [3559] = {.lex_state = 25, .external_lex_state = 4}, [3560] = {.lex_state = 25, .external_lex_state = 4}, - [3561] = {.lex_state = 39, .external_lex_state = 2}, - [3562] = {.lex_state = 25, .external_lex_state = 3}, + [3561] = {.lex_state = 25, .external_lex_state = 4}, + [3562] = {.lex_state = 39, .external_lex_state = 2}, [3563] = {.lex_state = 25, .external_lex_state = 3}, - [3564] = {.lex_state = 25, .external_lex_state = 3}, - [3565] = {.lex_state = 25, .external_lex_state = 3}, + [3564] = {.lex_state = 39, .external_lex_state = 2}, + [3565] = {.lex_state = 25, .external_lex_state = 4}, [3566] = {.lex_state = 25, .external_lex_state = 3}, [3567] = {.lex_state = 25, .external_lex_state = 3}, [3568] = {.lex_state = 25, .external_lex_state = 3}, - [3569] = {.lex_state = 25, .external_lex_state = 4}, + [3569] = {.lex_state = 25, .external_lex_state = 3}, [3570] = {.lex_state = 25, .external_lex_state = 4}, - [3571] = {.lex_state = 25, .external_lex_state = 3}, - [3572] = {.lex_state = 38, .external_lex_state = 2}, + [3571] = {.lex_state = 39, .external_lex_state = 2}, + [3572] = {.lex_state = 25, .external_lex_state = 4}, [3573] = {.lex_state = 25, .external_lex_state = 3}, - [3574] = {.lex_state = 25, .external_lex_state = 4}, - [3575] = {.lex_state = 25, .external_lex_state = 4}, - [3576] = {.lex_state = 25, .external_lex_state = 4}, + [3574] = {.lex_state = 25, .external_lex_state = 3}, + [3575] = {.lex_state = 25, .external_lex_state = 3}, + [3576] = {.lex_state = 25, .external_lex_state = 3}, [3577] = {.lex_state = 25, .external_lex_state = 4}, - [3578] = {.lex_state = 25, .external_lex_state = 4}, - [3579] = {.lex_state = 39, .external_lex_state = 2}, + [3578] = {.lex_state = 25, .external_lex_state = 3}, + [3579] = {.lex_state = 25, .external_lex_state = 4}, [3580] = {.lex_state = 25, .external_lex_state = 4}, - [3581] = {.lex_state = 25, .external_lex_state = 3}, + [3581] = {.lex_state = 38, .external_lex_state = 2}, [3582] = {.lex_state = 25, .external_lex_state = 3}, - [3583] = {.lex_state = 39, .external_lex_state = 2}, - [3584] = {.lex_state = 25, .external_lex_state = 3}, + [3583] = {.lex_state = 25, .external_lex_state = 4}, + [3584] = {.lex_state = 25, .external_lex_state = 4}, [3585] = {.lex_state = 25, .external_lex_state = 4}, [3586] = {.lex_state = 25, .external_lex_state = 3}, [3587] = {.lex_state = 25, .external_lex_state = 3}, - [3588] = {.lex_state = 25, .external_lex_state = 4}, - [3589] = {.lex_state = 25, .external_lex_state = 4}, + [3588] = {.lex_state = 25, .external_lex_state = 3}, + [3589] = {.lex_state = 25, .external_lex_state = 3}, [3590] = {.lex_state = 25, .external_lex_state = 4}, - [3591] = {.lex_state = 25, .external_lex_state = 4}, + [3591] = {.lex_state = 25, .external_lex_state = 3}, [3592] = {.lex_state = 25, .external_lex_state = 4}, - [3593] = {.lex_state = 39, .external_lex_state = 2}, - [3594] = {.lex_state = 25, .external_lex_state = 3}, + [3593] = {.lex_state = 25, .external_lex_state = 3}, + [3594] = {.lex_state = 39, .external_lex_state = 2}, [3595] = {.lex_state = 39, .external_lex_state = 2}, - [3596] = {.lex_state = 25, .external_lex_state = 4}, - [3597] = {.lex_state = 25, .external_lex_state = 4}, - [3598] = {.lex_state = 25, .external_lex_state = 4}, + [3596] = {.lex_state = 25, .external_lex_state = 3}, + [3597] = {.lex_state = 25, .external_lex_state = 3}, + [3598] = {.lex_state = 25, .external_lex_state = 3}, [3599] = {.lex_state = 25, .external_lex_state = 3}, [3600] = {.lex_state = 25, .external_lex_state = 4}, [3601] = {.lex_state = 25, .external_lex_state = 4}, - [3602] = {.lex_state = 25, .external_lex_state = 4}, - [3603] = {.lex_state = 25, .external_lex_state = 3}, + [3602] = {.lex_state = 25, .external_lex_state = 3}, + [3603] = {.lex_state = 25, .external_lex_state = 4}, [3604] = {.lex_state = 25, .external_lex_state = 4}, - [3605] = {.lex_state = 25, .external_lex_state = 3}, + [3605] = {.lex_state = 25, .external_lex_state = 4}, [3606] = {.lex_state = 25, .external_lex_state = 3}, - [3607] = {.lex_state = 39, .external_lex_state = 2}, + [3607] = {.lex_state = 25, .external_lex_state = 4}, [3608] = {.lex_state = 25, .external_lex_state = 3}, [3609] = {.lex_state = 25, .external_lex_state = 4}, [3610] = {.lex_state = 39, .external_lex_state = 2}, - [3611] = {.lex_state = 39, .external_lex_state = 2}, + [3611] = {.lex_state = 25, .external_lex_state = 4}, [3612] = {.lex_state = 25, .external_lex_state = 4}, [3613] = {.lex_state = 25, .external_lex_state = 4}, - [3614] = {.lex_state = 25, .external_lex_state = 4}, - [3615] = {.lex_state = 25, .external_lex_state = 3}, - [3616] = {.lex_state = 25, .external_lex_state = 4}, - [3617] = {.lex_state = 23, .external_lex_state = 4}, + [3614] = {.lex_state = 25, .external_lex_state = 3}, + [3615] = {.lex_state = 25, .external_lex_state = 4}, + [3616] = {.lex_state = 25, .external_lex_state = 3}, + [3617] = {.lex_state = 39, .external_lex_state = 2}, [3618] = {.lex_state = 39, .external_lex_state = 2}, [3619] = {.lex_state = 25, .external_lex_state = 3}, - [3620] = {.lex_state = 39, .external_lex_state = 2}, - [3621] = {.lex_state = 25, .external_lex_state = 4}, - [3622] = {.lex_state = 39, .external_lex_state = 2}, - [3623] = {.lex_state = 25, .external_lex_state = 3}, - [3624] = {.lex_state = 39, .external_lex_state = 2}, - [3625] = {.lex_state = 25, .external_lex_state = 4}, - [3626] = {.lex_state = 25, .external_lex_state = 3}, + [3620] = {.lex_state = 25, .external_lex_state = 3}, + [3621] = {.lex_state = 25, .external_lex_state = 3}, + [3622] = {.lex_state = 38, .external_lex_state = 2}, + [3623] = {.lex_state = 39, .external_lex_state = 2}, + [3624] = {.lex_state = 25, .external_lex_state = 4}, + [3625] = {.lex_state = 25, .external_lex_state = 3}, + [3626] = {.lex_state = 39, .external_lex_state = 2}, [3627] = {.lex_state = 39, .external_lex_state = 2}, - [3628] = {.lex_state = 25, .external_lex_state = 4}, + [3628] = {.lex_state = 39, .external_lex_state = 2}, [3629] = {.lex_state = 39, .external_lex_state = 2}, - [3630] = {.lex_state = 25, .external_lex_state = 3}, - [3631] = {.lex_state = 38, .external_lex_state = 2}, - [3632] = {.lex_state = 25, .external_lex_state = 3}, + [3630] = {.lex_state = 39, .external_lex_state = 2}, + [3631] = {.lex_state = 25, .external_lex_state = 3}, + [3632] = {.lex_state = 39, .external_lex_state = 2}, [3633] = {.lex_state = 25, .external_lex_state = 3}, - [3634] = {.lex_state = 25, .external_lex_state = 3}, - [3635] = {.lex_state = 25, .external_lex_state = 4}, - [3636] = {.lex_state = 25, .external_lex_state = 3}, - [3637] = {.lex_state = 25, .external_lex_state = 3}, - [3638] = {.lex_state = 25, .external_lex_state = 3}, - [3639] = {.lex_state = 25, .external_lex_state = 3}, - [3640] = {.lex_state = 25, .external_lex_state = 4}, - [3641] = {.lex_state = 25, .external_lex_state = 3}, - [3642] = {.lex_state = 25, .external_lex_state = 3}, - [3643] = {.lex_state = 25, .external_lex_state = 3}, - [3644] = {.lex_state = 25, .external_lex_state = 3}, + [3634] = {.lex_state = 39, .external_lex_state = 2}, + [3635] = {.lex_state = 25, .external_lex_state = 3}, + [3636] = {.lex_state = 25, .external_lex_state = 4}, + [3637] = {.lex_state = 38, .external_lex_state = 2}, + [3638] = {.lex_state = 39, .external_lex_state = 2}, + [3639] = {.lex_state = 39, .external_lex_state = 2}, + [3640] = {.lex_state = 25, .external_lex_state = 3}, + [3641] = {.lex_state = 25, .external_lex_state = 4}, + [3642] = {.lex_state = 39, .external_lex_state = 2}, + [3643] = {.lex_state = 38, .external_lex_state = 2}, + [3644] = {.lex_state = 39, .external_lex_state = 2}, [3645] = {.lex_state = 25, .external_lex_state = 3}, - [3646] = {.lex_state = 25, .external_lex_state = 3}, - [3647] = {.lex_state = 25, .external_lex_state = 3}, - [3648] = {.lex_state = 25, .external_lex_state = 3}, - [3649] = {.lex_state = 25, .external_lex_state = 3}, - [3650] = {.lex_state = 25, .external_lex_state = 3}, - [3651] = {.lex_state = 25, .external_lex_state = 3}, - [3652] = {.lex_state = 38, .external_lex_state = 2}, - [3653] = {.lex_state = 39, .external_lex_state = 2}, + [3646] = {.lex_state = 65, .external_lex_state = 2}, + [3647] = {.lex_state = 85, .external_lex_state = 2}, + [3648] = {.lex_state = 30, .external_lex_state = 3}, + [3649] = {.lex_state = 39, .external_lex_state = 2}, + [3650] = {.lex_state = 39, .external_lex_state = 2}, + [3651] = {.lex_state = 39, .external_lex_state = 2}, + [3652] = {.lex_state = 39, .external_lex_state = 2}, + [3653] = {.lex_state = 65, .external_lex_state = 2}, [3654] = {.lex_state = 25, .external_lex_state = 3}, [3655] = {.lex_state = 25, .external_lex_state = 3}, [3656] = {.lex_state = 25, .external_lex_state = 3}, [3657] = {.lex_state = 25, .external_lex_state = 3}, - [3658] = {.lex_state = 25, .external_lex_state = 3}, + [3658] = {.lex_state = 39, .external_lex_state = 2}, [3659] = {.lex_state = 25, .external_lex_state = 3}, [3660] = {.lex_state = 25, .external_lex_state = 3}, [3661] = {.lex_state = 25, .external_lex_state = 3}, [3662] = {.lex_state = 25, .external_lex_state = 3}, - [3663] = {.lex_state = 25, .external_lex_state = 3}, - [3664] = {.lex_state = 25, .external_lex_state = 3}, - [3665] = {.lex_state = 25, .external_lex_state = 3}, + [3663] = {.lex_state = 38, .external_lex_state = 2}, + [3664] = {.lex_state = 39, .external_lex_state = 2}, + [3665] = {.lex_state = 39, .external_lex_state = 2}, [3666] = {.lex_state = 25, .external_lex_state = 3}, [3667] = {.lex_state = 39, .external_lex_state = 2}, - [3668] = {.lex_state = 25, .external_lex_state = 3}, - [3669] = {.lex_state = 25, .external_lex_state = 3}, - [3670] = {.lex_state = 25, .external_lex_state = 3}, - [3671] = {.lex_state = 25, .external_lex_state = 4}, + [3668] = {.lex_state = 39, .external_lex_state = 2}, + [3669] = {.lex_state = 39, .external_lex_state = 2}, + [3670] = {.lex_state = 39, .external_lex_state = 2}, + [3671] = {.lex_state = 25, .external_lex_state = 3}, [3672] = {.lex_state = 25, .external_lex_state = 3}, - [3673] = {.lex_state = 39, .external_lex_state = 2}, - [3674] = {.lex_state = 25, .external_lex_state = 3}, - [3675] = {.lex_state = 39, .external_lex_state = 2}, - [3676] = {.lex_state = 25, .external_lex_state = 3}, - [3677] = {.lex_state = 25, .external_lex_state = 3}, - [3678] = {.lex_state = 25, .external_lex_state = 4}, + [3673] = {.lex_state = 25, .external_lex_state = 3}, + [3674] = {.lex_state = 39, .external_lex_state = 2}, + [3675] = {.lex_state = 25, .external_lex_state = 3}, + [3676] = {.lex_state = 39, .external_lex_state = 2}, + [3677] = {.lex_state = 39, .external_lex_state = 2}, + [3678] = {.lex_state = 25, .external_lex_state = 3}, [3679] = {.lex_state = 25, .external_lex_state = 3}, - [3680] = {.lex_state = 25, .external_lex_state = 3}, - [3681] = {.lex_state = 25, .external_lex_state = 4}, + [3680] = {.lex_state = 39, .external_lex_state = 2}, + [3681] = {.lex_state = 25, .external_lex_state = 3}, [3682] = {.lex_state = 25, .external_lex_state = 3}, [3683] = {.lex_state = 25, .external_lex_state = 3}, - [3684] = {.lex_state = 25, .external_lex_state = 3}, - [3685] = {.lex_state = 26, .external_lex_state = 4}, + [3684] = {.lex_state = 39, .external_lex_state = 2}, + [3685] = {.lex_state = 25, .external_lex_state = 4}, [3686] = {.lex_state = 25, .external_lex_state = 3}, - [3687] = {.lex_state = 25, .external_lex_state = 4}, - [3688] = {.lex_state = 25, .external_lex_state = 3}, - [3689] = {.lex_state = 25, .external_lex_state = 3}, - [3690] = {.lex_state = 25, .external_lex_state = 3}, - [3691] = {.lex_state = 25, .external_lex_state = 3}, - [3692] = {.lex_state = 25, .external_lex_state = 3}, + [3687] = {.lex_state = 39, .external_lex_state = 2}, + [3688] = {.lex_state = 39, .external_lex_state = 2}, + [3689] = {.lex_state = 39, .external_lex_state = 2}, + [3690] = {.lex_state = 39, .external_lex_state = 2}, + [3691] = {.lex_state = 39, .external_lex_state = 2}, + [3692] = {.lex_state = 39, .external_lex_state = 2}, [3693] = {.lex_state = 25, .external_lex_state = 3}, [3694] = {.lex_state = 25, .external_lex_state = 3}, [3695] = {.lex_state = 25, .external_lex_state = 3}, [3696] = {.lex_state = 25, .external_lex_state = 3}, [3697] = {.lex_state = 25, .external_lex_state = 3}, - [3698] = {.lex_state = 25, .external_lex_state = 3}, - [3699] = {.lex_state = 25, .external_lex_state = 3}, - [3700] = {.lex_state = 25, .external_lex_state = 3}, + [3698] = {.lex_state = 39, .external_lex_state = 2}, + [3699] = {.lex_state = 39, .external_lex_state = 2}, + [3700] = {.lex_state = 65, .external_lex_state = 2}, [3701] = {.lex_state = 25, .external_lex_state = 3}, [3702] = {.lex_state = 25, .external_lex_state = 3}, [3703] = {.lex_state = 25, .external_lex_state = 3}, - [3704] = {.lex_state = 25, .external_lex_state = 4}, + [3704] = {.lex_state = 25, .external_lex_state = 3}, [3705] = {.lex_state = 25, .external_lex_state = 3}, - [3706] = {.lex_state = 25, .external_lex_state = 3}, - [3707] = {.lex_state = 25, .external_lex_state = 3}, - [3708] = {.lex_state = 25, .external_lex_state = 3}, + [3706] = {.lex_state = 39, .external_lex_state = 2}, + [3707] = {.lex_state = 39, .external_lex_state = 2}, + [3708] = {.lex_state = 39, .external_lex_state = 2}, [3709] = {.lex_state = 25, .external_lex_state = 3}, - [3710] = {.lex_state = 25, .external_lex_state = 3}, - [3711] = {.lex_state = 25, .external_lex_state = 4}, - [3712] = {.lex_state = 25, .external_lex_state = 3}, - [3713] = {.lex_state = 25, .external_lex_state = 3}, - [3714] = {.lex_state = 25, .external_lex_state = 3}, + [3710] = {.lex_state = 39, .external_lex_state = 2}, + [3711] = {.lex_state = 25, .external_lex_state = 3}, + [3712] = {.lex_state = 39, .external_lex_state = 2}, + [3713] = {.lex_state = 39, .external_lex_state = 2}, + [3714] = {.lex_state = 39, .external_lex_state = 2}, [3715] = {.lex_state = 25, .external_lex_state = 3}, - [3716] = {.lex_state = 25, .external_lex_state = 4}, + [3716] = {.lex_state = 25, .external_lex_state = 3}, [3717] = {.lex_state = 25, .external_lex_state = 3}, [3718] = {.lex_state = 25, .external_lex_state = 3}, [3719] = {.lex_state = 25, .external_lex_state = 3}, - [3720] = {.lex_state = 25, .external_lex_state = 4}, - [3721] = {.lex_state = 25, .external_lex_state = 3}, - [3722] = {.lex_state = 25, .external_lex_state = 4}, - [3723] = {.lex_state = 25, .external_lex_state = 4}, - [3724] = {.lex_state = 39, .external_lex_state = 2}, - [3725] = {.lex_state = 25, .external_lex_state = 4}, + [3720] = {.lex_state = 25, .external_lex_state = 3}, + [3721] = {.lex_state = 39, .external_lex_state = 2}, + [3722] = {.lex_state = 39, .external_lex_state = 2}, + [3723] = {.lex_state = 25, .external_lex_state = 3}, + [3724] = {.lex_state = 25, .external_lex_state = 3}, + [3725] = {.lex_state = 25, .external_lex_state = 3}, [3726] = {.lex_state = 25, .external_lex_state = 3}, [3727] = {.lex_state = 25, .external_lex_state = 3}, - [3728] = {.lex_state = 25, .external_lex_state = 3}, - [3729] = {.lex_state = 25, .external_lex_state = 3}, - [3730] = {.lex_state = 25, .external_lex_state = 3}, - [3731] = {.lex_state = 25, .external_lex_state = 3}, - [3732] = {.lex_state = 25, .external_lex_state = 3}, - [3733] = {.lex_state = 25, .external_lex_state = 4}, - [3734] = {.lex_state = 25, .external_lex_state = 4}, - [3735] = {.lex_state = 25, .external_lex_state = 4}, - [3736] = {.lex_state = 25, .external_lex_state = 4}, - [3737] = {.lex_state = 25, .external_lex_state = 3}, - [3738] = {.lex_state = 39, .external_lex_state = 2}, + [3728] = {.lex_state = 39, .external_lex_state = 2}, + [3729] = {.lex_state = 39, .external_lex_state = 2}, + [3730] = {.lex_state = 25, .external_lex_state = 4}, + [3731] = {.lex_state = 85, .external_lex_state = 5}, + [3732] = {.lex_state = 39, .external_lex_state = 2}, + [3733] = {.lex_state = 39, .external_lex_state = 2}, + [3734] = {.lex_state = 25, .external_lex_state = 3}, + [3735] = {.lex_state = 39, .external_lex_state = 2}, + [3736] = {.lex_state = 84, .external_lex_state = 2}, + [3737] = {.lex_state = 80, .external_lex_state = 2}, + [3738] = {.lex_state = 25, .external_lex_state = 4}, [3739] = {.lex_state = 25, .external_lex_state = 3}, - [3740] = {.lex_state = 39, .external_lex_state = 2}, - [3741] = {.lex_state = 25, .external_lex_state = 3}, - [3742] = {.lex_state = 25, .external_lex_state = 4}, - [3743] = {.lex_state = 25, .external_lex_state = 3}, - [3744] = {.lex_state = 25, .external_lex_state = 3}, - [3745] = {.lex_state = 25, .external_lex_state = 3}, - [3746] = {.lex_state = 25, .external_lex_state = 4}, - [3747] = {.lex_state = 25, .external_lex_state = 4}, - [3748] = {.lex_state = 25, .external_lex_state = 3}, - [3749] = {.lex_state = 25, .external_lex_state = 4}, - [3750] = {.lex_state = 25, .external_lex_state = 4}, - [3751] = {.lex_state = 25, .external_lex_state = 4}, - [3752] = {.lex_state = 25, .external_lex_state = 4}, + [3740] = {.lex_state = 80, .external_lex_state = 2}, + [3741] = {.lex_state = 39, .external_lex_state = 2}, + [3742] = {.lex_state = 39, .external_lex_state = 2}, + [3743] = {.lex_state = 39, .external_lex_state = 2}, + [3744] = {.lex_state = 39, .external_lex_state = 2}, + [3745] = {.lex_state = 39, .external_lex_state = 2}, + [3746] = {.lex_state = 25, .external_lex_state = 3}, + [3747] = {.lex_state = 39, .external_lex_state = 2}, + [3748] = {.lex_state = 39, .external_lex_state = 2}, + [3749] = {.lex_state = 39, .external_lex_state = 2}, + [3750] = {.lex_state = 25, .external_lex_state = 3}, + [3751] = {.lex_state = 25, .external_lex_state = 3}, + [3752] = {.lex_state = 25, .external_lex_state = 3}, [3753] = {.lex_state = 25, .external_lex_state = 3}, [3754] = {.lex_state = 25, .external_lex_state = 3}, - [3755] = {.lex_state = 25, .external_lex_state = 4}, - [3756] = {.lex_state = 25, .external_lex_state = 4}, - [3757] = {.lex_state = 25, .external_lex_state = 4}, - [3758] = {.lex_state = 25, .external_lex_state = 4}, - [3759] = {.lex_state = 25, .external_lex_state = 3}, - [3760] = {.lex_state = 25, .external_lex_state = 3}, - [3761] = {.lex_state = 25, .external_lex_state = 4}, + [3755] = {.lex_state = 25, .external_lex_state = 3}, + [3756] = {.lex_state = 39, .external_lex_state = 2}, + [3757] = {.lex_state = 39, .external_lex_state = 2}, + [3758] = {.lex_state = 39, .external_lex_state = 2}, + [3759] = {.lex_state = 39, .external_lex_state = 2}, + [3760] = {.lex_state = 39, .external_lex_state = 2}, + [3761] = {.lex_state = 85, .external_lex_state = 5}, [3762] = {.lex_state = 25, .external_lex_state = 3}, [3763] = {.lex_state = 39, .external_lex_state = 2}, [3764] = {.lex_state = 39, .external_lex_state = 2}, - [3765] = {.lex_state = 25, .external_lex_state = 3}, + [3765] = {.lex_state = 39, .external_lex_state = 2}, [3766] = {.lex_state = 39, .external_lex_state = 2}, [3767] = {.lex_state = 39, .external_lex_state = 2}, - [3768] = {.lex_state = 39, .external_lex_state = 2}, - [3769] = {.lex_state = 25, .external_lex_state = 3}, - [3770] = {.lex_state = 25, .external_lex_state = 3}, - [3771] = {.lex_state = 25, .external_lex_state = 3}, - [3772] = {.lex_state = 25, .external_lex_state = 3}, - [3773] = {.lex_state = 25, .external_lex_state = 3}, + [3768] = {.lex_state = 80, .external_lex_state = 2}, + [3769] = {.lex_state = 84, .external_lex_state = 5}, + [3770] = {.lex_state = 39, .external_lex_state = 2}, + [3771] = {.lex_state = 39, .external_lex_state = 2}, + [3772] = {.lex_state = 38, .external_lex_state = 2}, + [3773] = {.lex_state = 39, .external_lex_state = 2}, [3774] = {.lex_state = 39, .external_lex_state = 2}, - [3775] = {.lex_state = 25, .external_lex_state = 3}, + [3775] = {.lex_state = 39, .external_lex_state = 2}, [3776] = {.lex_state = 39, .external_lex_state = 2}, - [3777] = {.lex_state = 25, .external_lex_state = 4}, - [3778] = {.lex_state = 25, .external_lex_state = 3}, - [3779] = {.lex_state = 25, .external_lex_state = 3}, + [3777] = {.lex_state = 39, .external_lex_state = 2}, + [3778] = {.lex_state = 39, .external_lex_state = 2}, + [3779] = {.lex_state = 39, .external_lex_state = 2}, [3780] = {.lex_state = 39, .external_lex_state = 2}, - [3781] = {.lex_state = 39, .external_lex_state = 2}, - [3782] = {.lex_state = 65, .external_lex_state = 2}, - [3783] = {.lex_state = 39, .external_lex_state = 2}, - [3784] = {.lex_state = 25, .external_lex_state = 3}, - [3785] = {.lex_state = 25, .external_lex_state = 3}, - [3786] = {.lex_state = 39, .external_lex_state = 2}, + [3781] = {.lex_state = 25, .external_lex_state = 3}, + [3782] = {.lex_state = 39, .external_lex_state = 2}, + [3783] = {.lex_state = 80, .external_lex_state = 2}, + [3784] = {.lex_state = 39, .external_lex_state = 2}, + [3785] = {.lex_state = 38, .external_lex_state = 2}, + [3786] = {.lex_state = 25, .external_lex_state = 3}, [3787] = {.lex_state = 85, .external_lex_state = 2}, - [3788] = {.lex_state = 30, .external_lex_state = 3}, - [3789] = {.lex_state = 39, .external_lex_state = 2}, - [3790] = {.lex_state = 25, .external_lex_state = 3}, - [3791] = {.lex_state = 25, .external_lex_state = 3}, - [3792] = {.lex_state = 39, .external_lex_state = 2}, - [3793] = {.lex_state = 39, .external_lex_state = 2}, + [3788] = {.lex_state = 85, .external_lex_state = 2}, + [3789] = {.lex_state = 25, .external_lex_state = 3}, + [3790] = {.lex_state = 39, .external_lex_state = 2}, + [3791] = {.lex_state = 39, .external_lex_state = 2}, + [3792] = {.lex_state = 26, .external_lex_state = 3}, + [3793] = {.lex_state = 38, .external_lex_state = 2}, [3794] = {.lex_state = 39, .external_lex_state = 2}, - [3795] = {.lex_state = 39, .external_lex_state = 2}, - [3796] = {.lex_state = 25, .external_lex_state = 3}, + [3795] = {.lex_state = 25, .external_lex_state = 3}, + [3796] = {.lex_state = 38, .external_lex_state = 2}, [3797] = {.lex_state = 39, .external_lex_state = 2}, [3798] = {.lex_state = 39, .external_lex_state = 2}, [3799] = {.lex_state = 39, .external_lex_state = 2}, [3800] = {.lex_state = 39, .external_lex_state = 2}, - [3801] = {.lex_state = 39, .external_lex_state = 2}, + [3801] = {.lex_state = 84, .external_lex_state = 5}, [3802] = {.lex_state = 39, .external_lex_state = 2}, - [3803] = {.lex_state = 25, .external_lex_state = 3}, - [3804] = {.lex_state = 25, .external_lex_state = 3}, + [3803] = {.lex_state = 80, .external_lex_state = 5}, + [3804] = {.lex_state = 39, .external_lex_state = 2}, [3805] = {.lex_state = 25, .external_lex_state = 3}, [3806] = {.lex_state = 25, .external_lex_state = 3}, - [3807] = {.lex_state = 25, .external_lex_state = 3}, - [3808] = {.lex_state = 25, .external_lex_state = 3}, - [3809] = {.lex_state = 25, .external_lex_state = 3}, + [3807] = {.lex_state = 80, .external_lex_state = 2}, + [3808] = {.lex_state = 87, .external_lex_state = 2}, + [3809] = {.lex_state = 39, .external_lex_state = 2}, [3810] = {.lex_state = 25, .external_lex_state = 3}, - [3811] = {.lex_state = 25, .external_lex_state = 3}, - [3812] = {.lex_state = 38, .external_lex_state = 2}, - [3813] = {.lex_state = 25, .external_lex_state = 3}, - [3814] = {.lex_state = 25, .external_lex_state = 3}, - [3815] = {.lex_state = 38, .external_lex_state = 2}, - [3816] = {.lex_state = 25, .external_lex_state = 3}, - [3817] = {.lex_state = 25, .external_lex_state = 3}, - [3818] = {.lex_state = 25, .external_lex_state = 3}, - [3819] = {.lex_state = 25, .external_lex_state = 3}, + [3811] = {.lex_state = 38, .external_lex_state = 2}, + [3812] = {.lex_state = 39, .external_lex_state = 2}, + [3813] = {.lex_state = 39, .external_lex_state = 2}, + [3814] = {.lex_state = 39, .external_lex_state = 2}, + [3815] = {.lex_state = 39, .external_lex_state = 2}, + [3816] = {.lex_state = 39, .external_lex_state = 2}, + [3817] = {.lex_state = 39, .external_lex_state = 2}, + [3818] = {.lex_state = 39, .external_lex_state = 2}, + [3819] = {.lex_state = 39, .external_lex_state = 2}, [3820] = {.lex_state = 39, .external_lex_state = 2}, [3821] = {.lex_state = 39, .external_lex_state = 2}, [3822] = {.lex_state = 39, .external_lex_state = 2}, [3823] = {.lex_state = 39, .external_lex_state = 2}, [3824] = {.lex_state = 39, .external_lex_state = 2}, [3825] = {.lex_state = 39, .external_lex_state = 2}, - [3826] = {.lex_state = 25, .external_lex_state = 3}, + [3826] = {.lex_state = 39, .external_lex_state = 2}, [3827] = {.lex_state = 39, .external_lex_state = 2}, - [3828] = {.lex_state = 25, .external_lex_state = 3}, + [3828] = {.lex_state = 39, .external_lex_state = 2}, [3829] = {.lex_state = 39, .external_lex_state = 2}, - [3830] = {.lex_state = 25, .external_lex_state = 3}, - [3831] = {.lex_state = 25, .external_lex_state = 4}, - [3832] = {.lex_state = 39, .external_lex_state = 2}, - [3833] = {.lex_state = 39, .external_lex_state = 2}, - [3834] = {.lex_state = 25, .external_lex_state = 3}, - [3835] = {.lex_state = 25, .external_lex_state = 3}, - [3836] = {.lex_state = 25, .external_lex_state = 3}, - [3837] = {.lex_state = 38, .external_lex_state = 2}, - [3838] = {.lex_state = 25, .external_lex_state = 3}, + [3830] = {.lex_state = 39, .external_lex_state = 2}, + [3831] = {.lex_state = 39, .external_lex_state = 2}, + [3832] = {.lex_state = 25, .external_lex_state = 3}, + [3833] = {.lex_state = 79, .external_lex_state = 2}, + [3834] = {.lex_state = 79, .external_lex_state = 2}, + [3835] = {.lex_state = 39, .external_lex_state = 2}, + [3836] = {.lex_state = 39, .external_lex_state = 2}, + [3837] = {.lex_state = 80, .external_lex_state = 5}, + [3838] = {.lex_state = 39, .external_lex_state = 2}, [3839] = {.lex_state = 39, .external_lex_state = 2}, - [3840] = {.lex_state = 25, .external_lex_state = 3}, - [3841] = {.lex_state = 25, .external_lex_state = 4}, - [3842] = {.lex_state = 39, .external_lex_state = 2}, - [3843] = {.lex_state = 25, .external_lex_state = 3}, - [3844] = {.lex_state = 25, .external_lex_state = 3}, - [3845] = {.lex_state = 39, .external_lex_state = 2}, + [3840] = {.lex_state = 80, .external_lex_state = 5}, + [3841] = {.lex_state = 39, .external_lex_state = 2}, + [3842] = {.lex_state = 38, .external_lex_state = 2}, + [3843] = {.lex_state = 39, .external_lex_state = 2}, + [3844] = {.lex_state = 87, .external_lex_state = 5}, + [3845] = {.lex_state = 87, .external_lex_state = 5}, [3846] = {.lex_state = 39, .external_lex_state = 2}, [3847] = {.lex_state = 39, .external_lex_state = 2}, - [3848] = {.lex_state = 25, .external_lex_state = 3}, - [3849] = {.lex_state = 39, .external_lex_state = 2}, - [3850] = {.lex_state = 39, .external_lex_state = 2}, - [3851] = {.lex_state = 25, .external_lex_state = 3}, - [3852] = {.lex_state = 25, .external_lex_state = 3}, - [3853] = {.lex_state = 65, .external_lex_state = 2}, - [3854] = {.lex_state = 38, .external_lex_state = 2}, - [3855] = {.lex_state = 39, .external_lex_state = 2}, - [3856] = {.lex_state = 25, .external_lex_state = 3}, - [3857] = {.lex_state = 25, .external_lex_state = 4}, - [3858] = {.lex_state = 25, .external_lex_state = 3}, - [3859] = {.lex_state = 39, .external_lex_state = 2}, - [3860] = {.lex_state = 65, .external_lex_state = 2}, - [3861] = {.lex_state = 25, .external_lex_state = 3}, - [3862] = {.lex_state = 39, .external_lex_state = 2}, + [3848] = {.lex_state = 87, .external_lex_state = 2}, + [3849] = {.lex_state = 25, .external_lex_state = 3}, + [3850] = {.lex_state = 87, .external_lex_state = 2}, + [3851] = {.lex_state = 80, .external_lex_state = 5}, + [3852] = {.lex_state = 80, .external_lex_state = 5}, + [3853] = {.lex_state = 80, .external_lex_state = 5}, + [3854] = {.lex_state = 80, .external_lex_state = 5}, + [3855] = {.lex_state = 87, .external_lex_state = 2}, + [3856] = {.lex_state = 80, .external_lex_state = 5}, + [3857] = {.lex_state = 87, .external_lex_state = 2}, + [3858] = {.lex_state = 87, .external_lex_state = 2}, + [3859] = {.lex_state = 80, .external_lex_state = 5}, + [3860] = {.lex_state = 25, .external_lex_state = 3}, + [3861] = {.lex_state = 80, .external_lex_state = 5}, + [3862] = {.lex_state = 79, .external_lex_state = 5}, [3863] = {.lex_state = 25, .external_lex_state = 3}, - [3864] = {.lex_state = 25, .external_lex_state = 3}, - [3865] = {.lex_state = 39, .external_lex_state = 2}, - [3866] = {.lex_state = 39, .external_lex_state = 2}, - [3867] = {.lex_state = 39, .external_lex_state = 2}, - [3868] = {.lex_state = 25, .external_lex_state = 4}, - [3869] = {.lex_state = 39, .external_lex_state = 2}, - [3870] = {.lex_state = 39, .external_lex_state = 2}, - [3871] = {.lex_state = 80, .external_lex_state = 2}, - [3872] = {.lex_state = 39, .external_lex_state = 2}, - [3873] = {.lex_state = 25, .external_lex_state = 3}, - [3874] = {.lex_state = 25, .external_lex_state = 3}, - [3875] = {.lex_state = 39, .external_lex_state = 2}, - [3876] = {.lex_state = 25, .external_lex_state = 3}, - [3877] = {.lex_state = 39, .external_lex_state = 2}, - [3878] = {.lex_state = 25, .external_lex_state = 3}, - [3879] = {.lex_state = 25, .external_lex_state = 3}, - [3880] = {.lex_state = 25, .external_lex_state = 3}, - [3881] = {.lex_state = 25, .external_lex_state = 4}, - [3882] = {.lex_state = 85, .external_lex_state = 5}, - [3883] = {.lex_state = 25, .external_lex_state = 3}, + [3864] = {.lex_state = 80, .external_lex_state = 2}, + [3865] = {.lex_state = 80, .external_lex_state = 5}, + [3866] = {.lex_state = 25, .external_lex_state = 3}, + [3867] = {.lex_state = 25, .external_lex_state = 3}, + [3868] = {.lex_state = 80, .external_lex_state = 5}, + [3869] = {.lex_state = 25, .external_lex_state = 3}, + [3870] = {.lex_state = 80, .external_lex_state = 2}, + [3871] = {.lex_state = 86, .external_lex_state = 2}, + [3872] = {.lex_state = 80, .external_lex_state = 5}, + [3873] = {.lex_state = 80, .external_lex_state = 5}, + [3874] = {.lex_state = 79, .external_lex_state = 5}, + [3875] = {.lex_state = 79, .external_lex_state = 2}, + [3876] = {.lex_state = 86, .external_lex_state = 5}, + [3877] = {.lex_state = 79, .external_lex_state = 2}, + [3878] = {.lex_state = 80, .external_lex_state = 2}, + [3879] = {.lex_state = 80, .external_lex_state = 2}, + [3880] = {.lex_state = 79, .external_lex_state = 5}, + [3881] = {.lex_state = 80, .external_lex_state = 5}, + [3882] = {.lex_state = 86, .external_lex_state = 5}, + [3883] = {.lex_state = 80, .external_lex_state = 5}, [3884] = {.lex_state = 25, .external_lex_state = 3}, - [3885] = {.lex_state = 39, .external_lex_state = 2}, - [3886] = {.lex_state = 25, .external_lex_state = 3}, - [3887] = {.lex_state = 84, .external_lex_state = 2}, - [3888] = {.lex_state = 39, .external_lex_state = 2}, - [3889] = {.lex_state = 80, .external_lex_state = 2}, - [3890] = {.lex_state = 39, .external_lex_state = 2}, - [3891] = {.lex_state = 25, .external_lex_state = 3}, - [3892] = {.lex_state = 39, .external_lex_state = 2}, - [3893] = {.lex_state = 25, .external_lex_state = 3}, - [3894] = {.lex_state = 39, .external_lex_state = 2}, - [3895] = {.lex_state = 39, .external_lex_state = 2}, - [3896] = {.lex_state = 25, .external_lex_state = 3}, - [3897] = {.lex_state = 39, .external_lex_state = 2}, - [3898] = {.lex_state = 25, .external_lex_state = 3}, - [3899] = {.lex_state = 39, .external_lex_state = 2}, - [3900] = {.lex_state = 85, .external_lex_state = 5}, - [3901] = {.lex_state = 39, .external_lex_state = 2}, - [3902] = {.lex_state = 25, .external_lex_state = 3}, - [3903] = {.lex_state = 39, .external_lex_state = 2}, - [3904] = {.lex_state = 39, .external_lex_state = 2}, - [3905] = {.lex_state = 39, .external_lex_state = 2}, - [3906] = {.lex_state = 39, .external_lex_state = 2}, - [3907] = {.lex_state = 39, .external_lex_state = 2}, - [3908] = {.lex_state = 25, .external_lex_state = 3}, - [3909] = {.lex_state = 39, .external_lex_state = 2}, - [3910] = {.lex_state = 87, .external_lex_state = 2}, - [3911] = {.lex_state = 25, .external_lex_state = 3}, + [3885] = {.lex_state = 80, .external_lex_state = 5}, + [3886] = {.lex_state = 80, .external_lex_state = 5}, + [3887] = {.lex_state = 25, .external_lex_state = 3}, + [3888] = {.lex_state = 80, .external_lex_state = 5}, + [3889] = {.lex_state = 25, .external_lex_state = 3}, + [3890] = {.lex_state = 79, .external_lex_state = 2}, + [3891] = {.lex_state = 84, .external_lex_state = 2}, + [3892] = {.lex_state = 80, .external_lex_state = 5}, + [3893] = {.lex_state = 80, .external_lex_state = 5}, + [3894] = {.lex_state = 84, .external_lex_state = 2}, + [3895] = {.lex_state = 80, .external_lex_state = 5}, + [3896] = {.lex_state = 80, .external_lex_state = 5}, + [3897] = {.lex_state = 80, .external_lex_state = 2}, + [3898] = {.lex_state = 80, .external_lex_state = 2}, + [3899] = {.lex_state = 79, .external_lex_state = 5}, + [3900] = {.lex_state = 86, .external_lex_state = 2}, + [3901] = {.lex_state = 79, .external_lex_state = 2}, + [3902] = {.lex_state = 79, .external_lex_state = 5}, + [3903] = {.lex_state = 79, .external_lex_state = 5}, + [3904] = {.lex_state = 79, .external_lex_state = 5}, + [3905] = {.lex_state = 86, .external_lex_state = 2}, + [3906] = {.lex_state = 79, .external_lex_state = 5}, + [3907] = {.lex_state = 80, .external_lex_state = 2}, + [3908] = {.lex_state = 80, .external_lex_state = 2}, + [3909] = {.lex_state = 79, .external_lex_state = 5}, + [3910] = {.lex_state = 80, .external_lex_state = 2}, + [3911] = {.lex_state = 80, .external_lex_state = 2}, [3912] = {.lex_state = 80, .external_lex_state = 2}, - [3913] = {.lex_state = 26, .external_lex_state = 3}, - [3914] = {.lex_state = 39, .external_lex_state = 2}, - [3915] = {.lex_state = 39, .external_lex_state = 2}, - [3916] = {.lex_state = 39, .external_lex_state = 2}, - [3917] = {.lex_state = 80, .external_lex_state = 2}, - [3918] = {.lex_state = 39, .external_lex_state = 2}, - [3919] = {.lex_state = 39, .external_lex_state = 2}, - [3920] = {.lex_state = 39, .external_lex_state = 2}, - [3921] = {.lex_state = 39, .external_lex_state = 2}, + [3913] = {.lex_state = 80, .external_lex_state = 2}, + [3914] = {.lex_state = 80, .external_lex_state = 2}, + [3915] = {.lex_state = 80, .external_lex_state = 2}, + [3916] = {.lex_state = 79, .external_lex_state = 5}, + [3917] = {.lex_state = 79, .external_lex_state = 5}, + [3918] = {.lex_state = 79, .external_lex_state = 5}, + [3919] = {.lex_state = 80, .external_lex_state = 2}, + [3920] = {.lex_state = 80, .external_lex_state = 2}, + [3921] = {.lex_state = 80, .external_lex_state = 2}, [3922] = {.lex_state = 80, .external_lex_state = 2}, - [3923] = {.lex_state = 39, .external_lex_state = 2}, - [3924] = {.lex_state = 39, .external_lex_state = 2}, - [3925] = {.lex_state = 39, .external_lex_state = 2}, - [3926] = {.lex_state = 39, .external_lex_state = 2}, - [3927] = {.lex_state = 39, .external_lex_state = 2}, - [3928] = {.lex_state = 25, .external_lex_state = 3}, - [3929] = {.lex_state = 39, .external_lex_state = 2}, - [3930] = {.lex_state = 38, .external_lex_state = 2}, - [3931] = {.lex_state = 39, .external_lex_state = 2}, - [3932] = {.lex_state = 39, .external_lex_state = 2}, - [3933] = {.lex_state = 39, .external_lex_state = 2}, - [3934] = {.lex_state = 39, .external_lex_state = 2}, - [3935] = {.lex_state = 39, .external_lex_state = 2}, - [3936] = {.lex_state = 38, .external_lex_state = 2}, - [3937] = {.lex_state = 39, .external_lex_state = 2}, - [3938] = {.lex_state = 85, .external_lex_state = 2}, - [3939] = {.lex_state = 39, .external_lex_state = 2}, - [3940] = {.lex_state = 39, .external_lex_state = 2}, - [3941] = {.lex_state = 39, .external_lex_state = 2}, - [3942] = {.lex_state = 87, .external_lex_state = 5}, - [3943] = {.lex_state = 39, .external_lex_state = 2}, - [3944] = {.lex_state = 87, .external_lex_state = 5}, - [3945] = {.lex_state = 39, .external_lex_state = 2}, - [3946] = {.lex_state = 38, .external_lex_state = 2}, - [3947] = {.lex_state = 39, .external_lex_state = 2}, - [3948] = {.lex_state = 39, .external_lex_state = 2}, - [3949] = {.lex_state = 39, .external_lex_state = 2}, - [3950] = {.lex_state = 39, .external_lex_state = 2}, - [3951] = {.lex_state = 39, .external_lex_state = 2}, - [3952] = {.lex_state = 80, .external_lex_state = 5}, - [3953] = {.lex_state = 39, .external_lex_state = 2}, - [3954] = {.lex_state = 84, .external_lex_state = 5}, - [3955] = {.lex_state = 39, .external_lex_state = 2}, - [3956] = {.lex_state = 38, .external_lex_state = 2}, - [3957] = {.lex_state = 39, .external_lex_state = 2}, - [3958] = {.lex_state = 84, .external_lex_state = 5}, - [3959] = {.lex_state = 39, .external_lex_state = 2}, - [3960] = {.lex_state = 39, .external_lex_state = 2}, - [3961] = {.lex_state = 39, .external_lex_state = 2}, - [3962] = {.lex_state = 79, .external_lex_state = 2}, - [3963] = {.lex_state = 80, .external_lex_state = 5}, - [3964] = {.lex_state = 85, .external_lex_state = 2}, - [3965] = {.lex_state = 39, .external_lex_state = 2}, - [3966] = {.lex_state = 39, .external_lex_state = 2}, - [3967] = {.lex_state = 39, .external_lex_state = 2}, - [3968] = {.lex_state = 79, .external_lex_state = 2}, - [3969] = {.lex_state = 39, .external_lex_state = 2}, - [3970] = {.lex_state = 39, .external_lex_state = 2}, - [3971] = {.lex_state = 25, .external_lex_state = 3}, - [3972] = {.lex_state = 25, .external_lex_state = 3}, - [3973] = {.lex_state = 39, .external_lex_state = 2}, - [3974] = {.lex_state = 25, .external_lex_state = 3}, - [3975] = {.lex_state = 25, .external_lex_state = 3}, - [3976] = {.lex_state = 80, .external_lex_state = 5}, - [3977] = {.lex_state = 39, .external_lex_state = 2}, - [3978] = {.lex_state = 39, .external_lex_state = 2}, - [3979] = {.lex_state = 39, .external_lex_state = 2}, - [3980] = {.lex_state = 39, .external_lex_state = 2}, - [3981] = {.lex_state = 39, .external_lex_state = 2}, - [3982] = {.lex_state = 39, .external_lex_state = 2}, - [3983] = {.lex_state = 39, .external_lex_state = 2}, - [3984] = {.lex_state = 39, .external_lex_state = 2}, - [3985] = {.lex_state = 39, .external_lex_state = 2}, - [3986] = {.lex_state = 25, .external_lex_state = 3}, - [3987] = {.lex_state = 39, .external_lex_state = 2}, - [3988] = {.lex_state = 39, .external_lex_state = 2}, - [3989] = {.lex_state = 39, .external_lex_state = 2}, - [3990] = {.lex_state = 39, .external_lex_state = 2}, - [3991] = {.lex_state = 25, .external_lex_state = 3}, - [3992] = {.lex_state = 38, .external_lex_state = 2}, - [3993] = {.lex_state = 39, .external_lex_state = 2}, - [3994] = {.lex_state = 38, .external_lex_state = 2}, - [3995] = {.lex_state = 80, .external_lex_state = 5}, - [3996] = {.lex_state = 80, .external_lex_state = 5}, - [3997] = {.lex_state = 25, .external_lex_state = 3}, - [3998] = {.lex_state = 79, .external_lex_state = 5}, - [3999] = {.lex_state = 86, .external_lex_state = 5}, - [4000] = {.lex_state = 25, .external_lex_state = 3}, - [4001] = {.lex_state = 79, .external_lex_state = 5}, + [3923] = {.lex_state = 80, .external_lex_state = 2}, + [3924] = {.lex_state = 80, .external_lex_state = 2}, + [3925] = {.lex_state = 80, .external_lex_state = 2}, + [3926] = {.lex_state = 80, .external_lex_state = 2}, + [3927] = {.lex_state = 80, .external_lex_state = 2}, + [3928] = {.lex_state = 80, .external_lex_state = 2}, + [3929] = {.lex_state = 80, .external_lex_state = 2}, + [3930] = {.lex_state = 80, .external_lex_state = 2}, + [3931] = {.lex_state = 80, .external_lex_state = 2}, + [3932] = {.lex_state = 80, .external_lex_state = 2}, + [3933] = {.lex_state = 80, .external_lex_state = 2}, + [3934] = {.lex_state = 80, .external_lex_state = 2}, + [3935] = {.lex_state = 80, .external_lex_state = 2}, + [3936] = {.lex_state = 80, .external_lex_state = 2}, + [3937] = {.lex_state = 80, .external_lex_state = 2}, + [3938] = {.lex_state = 80, .external_lex_state = 2}, + [3939] = {.lex_state = 80, .external_lex_state = 2}, + [3940] = {.lex_state = 79, .external_lex_state = 5}, + [3941] = {.lex_state = 79, .external_lex_state = 5}, + [3942] = {.lex_state = 79, .external_lex_state = 5}, + [3943] = {.lex_state = 80, .external_lex_state = 2}, + [3944] = {.lex_state = 80, .external_lex_state = 2}, + [3945] = {.lex_state = 80, .external_lex_state = 2}, + [3946] = {.lex_state = 80, .external_lex_state = 2}, + [3947] = {.lex_state = 80, .external_lex_state = 2}, + [3948] = {.lex_state = 80, .external_lex_state = 2}, + [3949] = {.lex_state = 80, .external_lex_state = 2}, + [3950] = {.lex_state = 79, .external_lex_state = 5}, + [3951] = {.lex_state = 80, .external_lex_state = 2}, + [3952] = {.lex_state = 80, .external_lex_state = 2}, + [3953] = {.lex_state = 80, .external_lex_state = 2}, + [3954] = {.lex_state = 80, .external_lex_state = 2}, + [3955] = {.lex_state = 80, .external_lex_state = 2}, + [3956] = {.lex_state = 80, .external_lex_state = 2}, + [3957] = {.lex_state = 80, .external_lex_state = 2}, + [3958] = {.lex_state = 79, .external_lex_state = 2}, + [3959] = {.lex_state = 79, .external_lex_state = 2}, + [3960] = {.lex_state = 80, .external_lex_state = 2}, + [3961] = {.lex_state = 80, .external_lex_state = 2}, + [3962] = {.lex_state = 80, .external_lex_state = 2}, + [3963] = {.lex_state = 80, .external_lex_state = 2}, + [3964] = {.lex_state = 80, .external_lex_state = 2}, + [3965] = {.lex_state = 80, .external_lex_state = 2}, + [3966] = {.lex_state = 80, .external_lex_state = 2}, + [3967] = {.lex_state = 79, .external_lex_state = 5}, + [3968] = {.lex_state = 86, .external_lex_state = 2}, + [3969] = {.lex_state = 80, .external_lex_state = 2}, + [3970] = {.lex_state = 80, .external_lex_state = 2}, + [3971] = {.lex_state = 80, .external_lex_state = 2}, + [3972] = {.lex_state = 80, .external_lex_state = 2}, + [3973] = {.lex_state = 80, .external_lex_state = 2}, + [3974] = {.lex_state = 80, .external_lex_state = 2}, + [3975] = {.lex_state = 80, .external_lex_state = 2}, + [3976] = {.lex_state = 80, .external_lex_state = 2}, + [3977] = {.lex_state = 80, .external_lex_state = 2}, + [3978] = {.lex_state = 80, .external_lex_state = 2}, + [3979] = {.lex_state = 80, .external_lex_state = 2}, + [3980] = {.lex_state = 80, .external_lex_state = 2}, + [3981] = {.lex_state = 80, .external_lex_state = 2}, + [3982] = {.lex_state = 80, .external_lex_state = 2}, + [3983] = {.lex_state = 80, .external_lex_state = 2}, + [3984] = {.lex_state = 80, .external_lex_state = 2}, + [3985] = {.lex_state = 80, .external_lex_state = 2}, + [3986] = {.lex_state = 79, .external_lex_state = 5}, + [3987] = {.lex_state = 80, .external_lex_state = 2}, + [3988] = {.lex_state = 80, .external_lex_state = 2}, + [3989] = {.lex_state = 80, .external_lex_state = 2}, + [3990] = {.lex_state = 80, .external_lex_state = 2}, + [3991] = {.lex_state = 80, .external_lex_state = 2}, + [3992] = {.lex_state = 80, .external_lex_state = 2}, + [3993] = {.lex_state = 80, .external_lex_state = 2}, + [3994] = {.lex_state = 80, .external_lex_state = 2}, + [3995] = {.lex_state = 80, .external_lex_state = 2}, + [3996] = {.lex_state = 80, .external_lex_state = 2}, + [3997] = {.lex_state = 80, .external_lex_state = 2}, + [3998] = {.lex_state = 80, .external_lex_state = 2}, + [3999] = {.lex_state = 80, .external_lex_state = 2}, + [4000] = {.lex_state = 80, .external_lex_state = 2}, + [4001] = {.lex_state = 80, .external_lex_state = 2}, [4002] = {.lex_state = 80, .external_lex_state = 2}, - [4003] = {.lex_state = 79, .external_lex_state = 2}, - [4004] = {.lex_state = 25, .external_lex_state = 3}, - [4005] = {.lex_state = 87, .external_lex_state = 2}, - [4006] = {.lex_state = 79, .external_lex_state = 2}, - [4007] = {.lex_state = 80, .external_lex_state = 5}, - [4008] = {.lex_state = 80, .external_lex_state = 5}, - [4009] = {.lex_state = 80, .external_lex_state = 5}, - [4010] = {.lex_state = 80, .external_lex_state = 5}, - [4011] = {.lex_state = 25, .external_lex_state = 3}, - [4012] = {.lex_state = 80, .external_lex_state = 5}, - [4013] = {.lex_state = 80, .external_lex_state = 2}, + [4003] = {.lex_state = 80, .external_lex_state = 2}, + [4004] = {.lex_state = 80, .external_lex_state = 2}, + [4005] = {.lex_state = 86, .external_lex_state = 2}, + [4006] = {.lex_state = 86, .external_lex_state = 2}, + [4007] = {.lex_state = 79, .external_lex_state = 5}, + [4008] = {.lex_state = 80, .external_lex_state = 2}, + [4009] = {.lex_state = 80, .external_lex_state = 2}, + [4010] = {.lex_state = 80, .external_lex_state = 2}, + [4011] = {.lex_state = 80, .external_lex_state = 2}, + [4012] = {.lex_state = 80, .external_lex_state = 2}, + [4013] = {.lex_state = 79, .external_lex_state = 5}, [4014] = {.lex_state = 80, .external_lex_state = 2}, - [4015] = {.lex_state = 79, .external_lex_state = 2}, - [4016] = {.lex_state = 80, .external_lex_state = 5}, - [4017] = {.lex_state = 84, .external_lex_state = 2}, - [4018] = {.lex_state = 84, .external_lex_state = 2}, - [4019] = {.lex_state = 80, .external_lex_state = 5}, - [4020] = {.lex_state = 80, .external_lex_state = 5}, - [4021] = {.lex_state = 25, .external_lex_state = 3}, - [4022] = {.lex_state = 87, .external_lex_state = 2}, - [4023] = {.lex_state = 87, .external_lex_state = 2}, - [4024] = {.lex_state = 25, .external_lex_state = 3}, - [4025] = {.lex_state = 80, .external_lex_state = 5}, - [4026] = {.lex_state = 86, .external_lex_state = 2}, - [4027] = {.lex_state = 25, .external_lex_state = 3}, + [4015] = {.lex_state = 80, .external_lex_state = 2}, + [4016] = {.lex_state = 80, .external_lex_state = 2}, + [4017] = {.lex_state = 80, .external_lex_state = 2}, + [4018] = {.lex_state = 80, .external_lex_state = 2}, + [4019] = {.lex_state = 80, .external_lex_state = 2}, + [4020] = {.lex_state = 80, .external_lex_state = 2}, + [4021] = {.lex_state = 80, .external_lex_state = 2}, + [4022] = {.lex_state = 80, .external_lex_state = 2}, + [4023] = {.lex_state = 80, .external_lex_state = 2}, + [4024] = {.lex_state = 80, .external_lex_state = 2}, + [4025] = {.lex_state = 80, .external_lex_state = 2}, + [4026] = {.lex_state = 80, .external_lex_state = 2}, + [4027] = {.lex_state = 79, .external_lex_state = 5}, [4028] = {.lex_state = 80, .external_lex_state = 2}, - [4029] = {.lex_state = 80, .external_lex_state = 5}, - [4030] = {.lex_state = 80, .external_lex_state = 5}, - [4031] = {.lex_state = 80, .external_lex_state = 5}, - [4032] = {.lex_state = 80, .external_lex_state = 5}, - [4033] = {.lex_state = 80, .external_lex_state = 5}, - [4034] = {.lex_state = 79, .external_lex_state = 5}, - [4035] = {.lex_state = 25, .external_lex_state = 3}, - [4036] = {.lex_state = 80, .external_lex_state = 5}, - [4037] = {.lex_state = 80, .external_lex_state = 5}, - [4038] = {.lex_state = 80, .external_lex_state = 5}, - [4039] = {.lex_state = 87, .external_lex_state = 2}, - [4040] = {.lex_state = 25, .external_lex_state = 3}, - [4041] = {.lex_state = 80, .external_lex_state = 5}, - [4042] = {.lex_state = 87, .external_lex_state = 2}, - [4043] = {.lex_state = 86, .external_lex_state = 5}, + [4029] = {.lex_state = 80, .external_lex_state = 2}, + [4030] = {.lex_state = 80, .external_lex_state = 2}, + [4031] = {.lex_state = 80, .external_lex_state = 2}, + [4032] = {.lex_state = 80, .external_lex_state = 2}, + [4033] = {.lex_state = 80, .external_lex_state = 2}, + [4034] = {.lex_state = 80, .external_lex_state = 2}, + [4035] = {.lex_state = 80, .external_lex_state = 2}, + [4036] = {.lex_state = 80, .external_lex_state = 2}, + [4037] = {.lex_state = 80, .external_lex_state = 2}, + [4038] = {.lex_state = 80, .external_lex_state = 2}, + [4039] = {.lex_state = 80, .external_lex_state = 2}, + [4040] = {.lex_state = 80, .external_lex_state = 2}, + [4041] = {.lex_state = 80, .external_lex_state = 2}, + [4042] = {.lex_state = 80, .external_lex_state = 2}, + [4043] = {.lex_state = 80, .external_lex_state = 2}, [4044] = {.lex_state = 80, .external_lex_state = 2}, - [4045] = {.lex_state = 80, .external_lex_state = 2}, + [4045] = {.lex_state = 79, .external_lex_state = 5}, [4046] = {.lex_state = 79, .external_lex_state = 5}, - [4047] = {.lex_state = 79, .external_lex_state = 5}, - [4048] = {.lex_state = 86, .external_lex_state = 2}, + [4047] = {.lex_state = 80, .external_lex_state = 2}, + [4048] = {.lex_state = 80, .external_lex_state = 2}, [4049] = {.lex_state = 80, .external_lex_state = 2}, - [4050] = {.lex_state = 80, .external_lex_state = 2}, - [4051] = {.lex_state = 80, .external_lex_state = 2}, - [4052] = {.lex_state = 80, .external_lex_state = 2}, - [4053] = {.lex_state = 80, .external_lex_state = 2}, - [4054] = {.lex_state = 80, .external_lex_state = 2}, - [4055] = {.lex_state = 79, .external_lex_state = 5}, - [4056] = {.lex_state = 80, .external_lex_state = 2}, - [4057] = {.lex_state = 80, .external_lex_state = 2}, - [4058] = {.lex_state = 80, .external_lex_state = 2}, - [4059] = {.lex_state = 79, .external_lex_state = 5}, - [4060] = {.lex_state = 80, .external_lex_state = 2}, - [4061] = {.lex_state = 80, .external_lex_state = 2}, - [4062] = {.lex_state = 80, .external_lex_state = 2}, - [4063] = {.lex_state = 80, .external_lex_state = 2}, - [4064] = {.lex_state = 80, .external_lex_state = 2}, - [4065] = {.lex_state = 80, .external_lex_state = 2}, - [4066] = {.lex_state = 80, .external_lex_state = 2}, - [4067] = {.lex_state = 80, .external_lex_state = 2}, - [4068] = {.lex_state = 80, .external_lex_state = 2}, - [4069] = {.lex_state = 80, .external_lex_state = 2}, - [4070] = {.lex_state = 80, .external_lex_state = 2}, - [4071] = {.lex_state = 86, .external_lex_state = 2}, - [4072] = {.lex_state = 80, .external_lex_state = 2}, - [4073] = {.lex_state = 79, .external_lex_state = 5}, - [4074] = {.lex_state = 80, .external_lex_state = 2}, - [4075] = {.lex_state = 80, .external_lex_state = 2}, - [4076] = {.lex_state = 80, .external_lex_state = 2}, - [4077] = {.lex_state = 80, .external_lex_state = 2}, - [4078] = {.lex_state = 80, .external_lex_state = 2}, - [4079] = {.lex_state = 80, .external_lex_state = 2}, - [4080] = {.lex_state = 80, .external_lex_state = 2}, - [4081] = {.lex_state = 80, .external_lex_state = 2}, - [4082] = {.lex_state = 80, .external_lex_state = 2}, - [4083] = {.lex_state = 86, .external_lex_state = 2}, - [4084] = {.lex_state = 80, .external_lex_state = 2}, - [4085] = {.lex_state = 80, .external_lex_state = 2}, - [4086] = {.lex_state = 80, .external_lex_state = 2}, - [4087] = {.lex_state = 80, .external_lex_state = 2}, - [4088] = {.lex_state = 80, .external_lex_state = 2}, - [4089] = {.lex_state = 80, .external_lex_state = 2}, - [4090] = {.lex_state = 80, .external_lex_state = 2}, - [4091] = {.lex_state = 80, .external_lex_state = 2}, - [4092] = {.lex_state = 80, .external_lex_state = 2}, - [4093] = {.lex_state = 80, .external_lex_state = 2}, - [4094] = {.lex_state = 80, .external_lex_state = 2}, - [4095] = {.lex_state = 80, .external_lex_state = 2}, - [4096] = {.lex_state = 80, .external_lex_state = 2}, - [4097] = {.lex_state = 80, .external_lex_state = 2}, - [4098] = {.lex_state = 80, .external_lex_state = 2}, - [4099] = {.lex_state = 80, .external_lex_state = 2}, - [4100] = {.lex_state = 80, .external_lex_state = 2}, - [4101] = {.lex_state = 80, .external_lex_state = 2}, - [4102] = {.lex_state = 80, .external_lex_state = 2}, - [4103] = {.lex_state = 80, .external_lex_state = 2}, - [4104] = {.lex_state = 80, .external_lex_state = 2}, - [4105] = {.lex_state = 80, .external_lex_state = 2}, - [4106] = {.lex_state = 80, .external_lex_state = 2}, - [4107] = {.lex_state = 80, .external_lex_state = 2}, - [4108] = {.lex_state = 79, .external_lex_state = 5}, - [4109] = {.lex_state = 79, .external_lex_state = 5}, - [4110] = {.lex_state = 86, .external_lex_state = 2}, - [4111] = {.lex_state = 80, .external_lex_state = 2}, - [4112] = {.lex_state = 80, .external_lex_state = 2}, - [4113] = {.lex_state = 80, .external_lex_state = 2}, - [4114] = {.lex_state = 80, .external_lex_state = 2}, - [4115] = {.lex_state = 80, .external_lex_state = 2}, - [4116] = {.lex_state = 80, .external_lex_state = 2}, - [4117] = {.lex_state = 80, .external_lex_state = 2}, - [4118] = {.lex_state = 80, .external_lex_state = 2}, - [4119] = {.lex_state = 80, .external_lex_state = 2}, - [4120] = {.lex_state = 80, .external_lex_state = 2}, - [4121] = {.lex_state = 80, .external_lex_state = 2}, - [4122] = {.lex_state = 79, .external_lex_state = 5}, - [4123] = {.lex_state = 80, .external_lex_state = 2}, - [4124] = {.lex_state = 80, .external_lex_state = 2}, - [4125] = {.lex_state = 80, .external_lex_state = 2}, - [4126] = {.lex_state = 79, .external_lex_state = 5}, - [4127] = {.lex_state = 79, .external_lex_state = 5}, - [4128] = {.lex_state = 80, .external_lex_state = 2}, - [4129] = {.lex_state = 80, .external_lex_state = 2}, - [4130] = {.lex_state = 80, .external_lex_state = 2}, - [4131] = {.lex_state = 80, .external_lex_state = 2}, - [4132] = {.lex_state = 80, .external_lex_state = 2}, - [4133] = {.lex_state = 80, .external_lex_state = 2}, - [4134] = {.lex_state = 80, .external_lex_state = 2}, - [4135] = {.lex_state = 79, .external_lex_state = 5}, - [4136] = {.lex_state = 80, .external_lex_state = 2}, - [4137] = {.lex_state = 80, .external_lex_state = 2}, - [4138] = {.lex_state = 80, .external_lex_state = 2}, - [4139] = {.lex_state = 80, .external_lex_state = 2}, - [4140] = {.lex_state = 80, .external_lex_state = 2}, - [4141] = {.lex_state = 80, .external_lex_state = 2}, - [4142] = {.lex_state = 80, .external_lex_state = 2}, - [4143] = {.lex_state = 80, .external_lex_state = 2}, - [4144] = {.lex_state = 80, .external_lex_state = 2}, - [4145] = {.lex_state = 80, .external_lex_state = 2}, - [4146] = {.lex_state = 80, .external_lex_state = 2}, - [4147] = {.lex_state = 80, .external_lex_state = 2}, - [4148] = {.lex_state = 80, .external_lex_state = 2}, - [4149] = {.lex_state = 80, .external_lex_state = 2}, - [4150] = {.lex_state = 80, .external_lex_state = 2}, - [4151] = {.lex_state = 80, .external_lex_state = 2}, - [4152] = {.lex_state = 80, .external_lex_state = 2}, - [4153] = {.lex_state = 80, .external_lex_state = 2}, - [4154] = {.lex_state = 80, .external_lex_state = 2}, - [4155] = {.lex_state = 80, .external_lex_state = 2}, - [4156] = {.lex_state = 80, .external_lex_state = 2}, - [4157] = {.lex_state = 80, .external_lex_state = 2}, - [4158] = {.lex_state = 80, .external_lex_state = 2}, - [4159] = {.lex_state = 80, .external_lex_state = 2}, - [4160] = {.lex_state = 80, .external_lex_state = 2}, - [4161] = {.lex_state = 80, .external_lex_state = 2}, - [4162] = {.lex_state = 80, .external_lex_state = 2}, - [4163] = {.lex_state = 80, .external_lex_state = 2}, - [4164] = {.lex_state = 80, .external_lex_state = 2}, - [4165] = {.lex_state = 80, .external_lex_state = 2}, - [4166] = {.lex_state = 80, .external_lex_state = 2}, - [4167] = {.lex_state = 80, .external_lex_state = 2}, - [4168] = {.lex_state = 80, .external_lex_state = 2}, - [4169] = {.lex_state = 80, .external_lex_state = 2}, - [4170] = {.lex_state = 80, .external_lex_state = 2}, + [4050] = {.lex_state = 79, .external_lex_state = 2}, + [4051] = {.lex_state = 79, .external_lex_state = 2}, + [4052] = {.lex_state = 79, .external_lex_state = 2}, + [4053] = {.lex_state = 79, .external_lex_state = 2}, + [4054] = {.lex_state = 79, .external_lex_state = 2}, + [4055] = {.lex_state = 79, .external_lex_state = 2}, + [4056] = {.lex_state = 79, .external_lex_state = 2}, + [4057] = {.lex_state = 79, .external_lex_state = 2}, + [4058] = {.lex_state = 79, .external_lex_state = 2}, + [4059] = {.lex_state = 79, .external_lex_state = 2}, + [4060] = {.lex_state = 79, .external_lex_state = 2}, + [4061] = {.lex_state = 79, .external_lex_state = 2}, + [4062] = {.lex_state = 79, .external_lex_state = 2}, + [4063] = {.lex_state = 79, .external_lex_state = 2}, + [4064] = {.lex_state = 79, .external_lex_state = 2}, + [4065] = {.lex_state = 79, .external_lex_state = 2}, + [4066] = {.lex_state = 79, .external_lex_state = 2}, + [4067] = {.lex_state = 79, .external_lex_state = 2}, + [4068] = {.lex_state = 79, .external_lex_state = 2}, + [4069] = {.lex_state = 79, .external_lex_state = 2}, + [4070] = {.lex_state = 79, .external_lex_state = 2}, + [4071] = {.lex_state = 79, .external_lex_state = 2}, + [4072] = {.lex_state = 79, .external_lex_state = 2}, + [4073] = {.lex_state = 79, .external_lex_state = 2}, + [4074] = {.lex_state = 79, .external_lex_state = 2}, + [4075] = {.lex_state = 79, .external_lex_state = 2}, + [4076] = {.lex_state = 79, .external_lex_state = 2}, + [4077] = {.lex_state = 79, .external_lex_state = 2}, + [4078] = {.lex_state = 79, .external_lex_state = 2}, + [4079] = {.lex_state = 79, .external_lex_state = 2}, + [4080] = {.lex_state = 79, .external_lex_state = 2}, + [4081] = {.lex_state = 79, .external_lex_state = 2}, + [4082] = {.lex_state = 79, .external_lex_state = 2}, + [4083] = {.lex_state = 79, .external_lex_state = 2}, + [4084] = {.lex_state = 79, .external_lex_state = 2}, + [4085] = {.lex_state = 79, .external_lex_state = 2}, + [4086] = {.lex_state = 79, .external_lex_state = 2}, + [4087] = {.lex_state = 79, .external_lex_state = 2}, + [4088] = {.lex_state = 79, .external_lex_state = 2}, + [4089] = {.lex_state = 79, .external_lex_state = 2}, + [4090] = {.lex_state = 79, .external_lex_state = 2}, + [4091] = {.lex_state = 79, .external_lex_state = 2}, + [4092] = {.lex_state = 79, .external_lex_state = 2}, + [4093] = {.lex_state = 79, .external_lex_state = 2}, + [4094] = {.lex_state = 79, .external_lex_state = 2}, + [4095] = {.lex_state = 79, .external_lex_state = 2}, + [4096] = {.lex_state = 79, .external_lex_state = 2}, + [4097] = {.lex_state = 79, .external_lex_state = 2}, + [4098] = {.lex_state = 79, .external_lex_state = 2}, + [4099] = {.lex_state = 79, .external_lex_state = 2}, + [4100] = {.lex_state = 79, .external_lex_state = 2}, + [4101] = {.lex_state = 79, .external_lex_state = 2}, + [4102] = {.lex_state = 79, .external_lex_state = 2}, + [4103] = {.lex_state = 79, .external_lex_state = 2}, + [4104] = {.lex_state = 79, .external_lex_state = 2}, + [4105] = {.lex_state = 79, .external_lex_state = 2}, + [4106] = {.lex_state = 79, .external_lex_state = 2}, + [4107] = {.lex_state = 79, .external_lex_state = 2}, + [4108] = {.lex_state = 79, .external_lex_state = 2}, + [4109] = {.lex_state = 79, .external_lex_state = 2}, + [4110] = {.lex_state = 79, .external_lex_state = 2}, + [4111] = {.lex_state = 79, .external_lex_state = 2}, + [4112] = {.lex_state = 79, .external_lex_state = 2}, + [4113] = {.lex_state = 79, .external_lex_state = 2}, + [4114] = {.lex_state = 79, .external_lex_state = 2}, + [4115] = {.lex_state = 79, .external_lex_state = 2}, + [4116] = {.lex_state = 79, .external_lex_state = 2}, + [4117] = {.lex_state = 79, .external_lex_state = 2}, + [4118] = {.lex_state = 79, .external_lex_state = 2}, + [4119] = {.lex_state = 79, .external_lex_state = 2}, + [4120] = {.lex_state = 79, .external_lex_state = 2}, + [4121] = {.lex_state = 79, .external_lex_state = 2}, + [4122] = {.lex_state = 79, .external_lex_state = 2}, + [4123] = {.lex_state = 79, .external_lex_state = 2}, + [4124] = {.lex_state = 79, .external_lex_state = 2}, + [4125] = {.lex_state = 79, .external_lex_state = 2}, + [4126] = {.lex_state = 79, .external_lex_state = 2}, + [4127] = {.lex_state = 79, .external_lex_state = 2}, + [4128] = {.lex_state = 79, .external_lex_state = 2}, + [4129] = {.lex_state = 79, .external_lex_state = 2}, + [4130] = {.lex_state = 79, .external_lex_state = 2}, + [4131] = {.lex_state = 79, .external_lex_state = 2}, + [4132] = {.lex_state = 79, .external_lex_state = 2}, + [4133] = {.lex_state = 79, .external_lex_state = 2}, + [4134] = {.lex_state = 79, .external_lex_state = 2}, + [4135] = {.lex_state = 79, .external_lex_state = 2}, + [4136] = {.lex_state = 79, .external_lex_state = 2}, + [4137] = {.lex_state = 79, .external_lex_state = 2}, + [4138] = {.lex_state = 79, .external_lex_state = 2}, + [4139] = {.lex_state = 79, .external_lex_state = 2}, + [4140] = {.lex_state = 79, .external_lex_state = 2}, + [4141] = {.lex_state = 79, .external_lex_state = 2}, + [4142] = {.lex_state = 79, .external_lex_state = 2}, + [4143] = {.lex_state = 79, .external_lex_state = 2}, + [4144] = {.lex_state = 79, .external_lex_state = 2}, + [4145] = {.lex_state = 79, .external_lex_state = 2}, + [4146] = {.lex_state = 79, .external_lex_state = 2}, + [4147] = {.lex_state = 79, .external_lex_state = 2}, + [4148] = {.lex_state = 79, .external_lex_state = 2}, + [4149] = {.lex_state = 65, .external_lex_state = 2}, + [4150] = {.lex_state = 79, .external_lex_state = 2}, + [4151] = {.lex_state = 79, .external_lex_state = 2}, + [4152] = {.lex_state = 79, .external_lex_state = 2}, + [4153] = {.lex_state = 79, .external_lex_state = 2}, + [4154] = {.lex_state = 79, .external_lex_state = 2}, + [4155] = {.lex_state = 79, .external_lex_state = 2}, + [4156] = {.lex_state = 79, .external_lex_state = 2}, + [4157] = {.lex_state = 79, .external_lex_state = 2}, + [4158] = {.lex_state = 79, .external_lex_state = 2}, + [4159] = {.lex_state = 79, .external_lex_state = 2}, + [4160] = {.lex_state = 79, .external_lex_state = 2}, + [4161] = {.lex_state = 79, .external_lex_state = 2}, + [4162] = {.lex_state = 79, .external_lex_state = 2}, + [4163] = {.lex_state = 79, .external_lex_state = 2}, + [4164] = {.lex_state = 79, .external_lex_state = 2}, + [4165] = {.lex_state = 79, .external_lex_state = 2}, + [4166] = {.lex_state = 79, .external_lex_state = 2}, + [4167] = {.lex_state = 79, .external_lex_state = 2}, + [4168] = {.lex_state = 79, .external_lex_state = 2}, + [4169] = {.lex_state = 79, .external_lex_state = 2}, + [4170] = {.lex_state = 79, .external_lex_state = 2}, [4171] = {.lex_state = 79, .external_lex_state = 2}, [4172] = {.lex_state = 79, .external_lex_state = 2}, - [4173] = {.lex_state = 80, .external_lex_state = 2}, - [4174] = {.lex_state = 80, .external_lex_state = 2}, - [4175] = {.lex_state = 80, .external_lex_state = 2}, - [4176] = {.lex_state = 80, .external_lex_state = 2}, - [4177] = {.lex_state = 80, .external_lex_state = 2}, - [4178] = {.lex_state = 80, .external_lex_state = 2}, - [4179] = {.lex_state = 80, .external_lex_state = 2}, - [4180] = {.lex_state = 80, .external_lex_state = 2}, - [4181] = {.lex_state = 86, .external_lex_state = 2}, - [4182] = {.lex_state = 79, .external_lex_state = 5}, - [4183] = {.lex_state = 79, .external_lex_state = 5}, - [4184] = {.lex_state = 79, .external_lex_state = 5}, - [4185] = {.lex_state = 80, .external_lex_state = 2}, - [4186] = {.lex_state = 79, .external_lex_state = 5}, - [4187] = {.lex_state = 79, .external_lex_state = 5}, - [4188] = {.lex_state = 80, .external_lex_state = 2}, - [4189] = {.lex_state = 79, .external_lex_state = 5}, + [4173] = {.lex_state = 79, .external_lex_state = 2}, + [4174] = {.lex_state = 79, .external_lex_state = 2}, + [4175] = {.lex_state = 79, .external_lex_state = 2}, + [4176] = {.lex_state = 79, .external_lex_state = 2}, + [4177] = {.lex_state = 79, .external_lex_state = 2}, + [4178] = {.lex_state = 79, .external_lex_state = 2}, + [4179] = {.lex_state = 79, .external_lex_state = 2}, + [4180] = {.lex_state = 79, .external_lex_state = 2}, + [4181] = {.lex_state = 79, .external_lex_state = 2}, + [4182] = {.lex_state = 79, .external_lex_state = 2}, + [4183] = {.lex_state = 79, .external_lex_state = 2}, + [4184] = {.lex_state = 79, .external_lex_state = 2}, + [4185] = {.lex_state = 79, .external_lex_state = 2}, + [4186] = {.lex_state = 79, .external_lex_state = 2}, + [4187] = {.lex_state = 79, .external_lex_state = 2}, + [4188] = {.lex_state = 79, .external_lex_state = 2}, + [4189] = {.lex_state = 79, .external_lex_state = 2}, [4190] = {.lex_state = 79, .external_lex_state = 2}, - [4191] = {.lex_state = 80, .external_lex_state = 2}, - [4192] = {.lex_state = 80, .external_lex_state = 2}, - [4193] = {.lex_state = 80, .external_lex_state = 2}, - [4194] = {.lex_state = 80, .external_lex_state = 2}, - [4195] = {.lex_state = 80, .external_lex_state = 2}, - [4196] = {.lex_state = 80, .external_lex_state = 2}, - [4197] = {.lex_state = 80, .external_lex_state = 2}, - [4198] = {.lex_state = 79, .external_lex_state = 5}, - [4199] = {.lex_state = 80, .external_lex_state = 2}, - [4200] = {.lex_state = 80, .external_lex_state = 2}, - [4201] = {.lex_state = 80, .external_lex_state = 2}, - [4202] = {.lex_state = 80, .external_lex_state = 2}, - [4203] = {.lex_state = 80, .external_lex_state = 2}, - [4204] = {.lex_state = 80, .external_lex_state = 2}, - [4205] = {.lex_state = 80, .external_lex_state = 2}, - [4206] = {.lex_state = 80, .external_lex_state = 2}, - [4207] = {.lex_state = 80, .external_lex_state = 2}, - [4208] = {.lex_state = 80, .external_lex_state = 2}, - [4209] = {.lex_state = 80, .external_lex_state = 2}, - [4210] = {.lex_state = 79, .external_lex_state = 5}, - [4211] = {.lex_state = 80, .external_lex_state = 2}, - [4212] = {.lex_state = 80, .external_lex_state = 2}, - [4213] = {.lex_state = 80, .external_lex_state = 2}, - [4214] = {.lex_state = 80, .external_lex_state = 2}, - [4215] = {.lex_state = 79, .external_lex_state = 5}, - [4216] = {.lex_state = 80, .external_lex_state = 2}, - [4217] = {.lex_state = 80, .external_lex_state = 2}, - [4218] = {.lex_state = 80, .external_lex_state = 2}, - [4219] = {.lex_state = 80, .external_lex_state = 2}, - [4220] = {.lex_state = 80, .external_lex_state = 2}, - [4221] = {.lex_state = 80, .external_lex_state = 2}, - [4222] = {.lex_state = 80, .external_lex_state = 2}, - [4223] = {.lex_state = 80, .external_lex_state = 2}, - [4224] = {.lex_state = 80, .external_lex_state = 2}, - [4225] = {.lex_state = 80, .external_lex_state = 2}, - [4226] = {.lex_state = 80, .external_lex_state = 2}, - [4227] = {.lex_state = 80, .external_lex_state = 2}, - [4228] = {.lex_state = 80, .external_lex_state = 2}, - [4229] = {.lex_state = 80, .external_lex_state = 2}, - [4230] = {.lex_state = 80, .external_lex_state = 2}, - [4231] = {.lex_state = 80, .external_lex_state = 2}, - [4232] = {.lex_state = 80, .external_lex_state = 2}, - [4233] = {.lex_state = 80, .external_lex_state = 2}, + [4191] = {.lex_state = 79, .external_lex_state = 2}, + [4192] = {.lex_state = 79, .external_lex_state = 2}, + [4193] = {.lex_state = 79, .external_lex_state = 2}, + [4194] = {.lex_state = 79, .external_lex_state = 2}, + [4195] = {.lex_state = 79, .external_lex_state = 2}, + [4196] = {.lex_state = 79, .external_lex_state = 2}, + [4197] = {.lex_state = 79, .external_lex_state = 2}, + [4198] = {.lex_state = 79, .external_lex_state = 2}, + [4199] = {.lex_state = 79, .external_lex_state = 2}, + [4200] = {.lex_state = 79, .external_lex_state = 2}, + [4201] = {.lex_state = 79, .external_lex_state = 2}, + [4202] = {.lex_state = 79, .external_lex_state = 2}, + [4203] = {.lex_state = 79, .external_lex_state = 2}, + [4204] = {.lex_state = 79, .external_lex_state = 2}, + [4205] = {.lex_state = 79, .external_lex_state = 2}, + [4206] = {.lex_state = 79, .external_lex_state = 2}, + [4207] = {.lex_state = 79, .external_lex_state = 2}, + [4208] = {.lex_state = 79, .external_lex_state = 2}, + [4209] = {.lex_state = 79, .external_lex_state = 2}, + [4210] = {.lex_state = 79, .external_lex_state = 2}, + [4211] = {.lex_state = 79, .external_lex_state = 2}, + [4212] = {.lex_state = 79, .external_lex_state = 2}, + [4213] = {.lex_state = 79, .external_lex_state = 2}, + [4214] = {.lex_state = 79, .external_lex_state = 2}, + [4215] = {.lex_state = 79, .external_lex_state = 2}, + [4216] = {.lex_state = 79, .external_lex_state = 2}, + [4217] = {.lex_state = 79, .external_lex_state = 2}, + [4218] = {.lex_state = 79, .external_lex_state = 2}, + [4219] = {.lex_state = 79, .external_lex_state = 2}, + [4220] = {.lex_state = 79, .external_lex_state = 2}, + [4221] = {.lex_state = 79, .external_lex_state = 2}, + [4222] = {.lex_state = 79, .external_lex_state = 2}, + [4223] = {.lex_state = 79, .external_lex_state = 2}, + [4224] = {.lex_state = 79, .external_lex_state = 2}, + [4225] = {.lex_state = 79, .external_lex_state = 2}, + [4226] = {.lex_state = 79, .external_lex_state = 2}, + [4227] = {.lex_state = 79, .external_lex_state = 2}, + [4228] = {.lex_state = 79, .external_lex_state = 2}, + [4229] = {.lex_state = 79, .external_lex_state = 2}, + [4230] = {.lex_state = 79, .external_lex_state = 2}, + [4231] = {.lex_state = 79, .external_lex_state = 2}, + [4232] = {.lex_state = 79, .external_lex_state = 2}, + [4233] = {.lex_state = 79, .external_lex_state = 2}, [4234] = {.lex_state = 79, .external_lex_state = 2}, - [4235] = {.lex_state = 79, .external_lex_state = 2}, - [4236] = {.lex_state = 79, .external_lex_state = 2}, + [4235] = {.lex_state = 77, .external_lex_state = 2}, + [4236] = {.lex_state = 63, .external_lex_state = 2}, [4237] = {.lex_state = 79, .external_lex_state = 2}, [4238] = {.lex_state = 79, .external_lex_state = 2}, - [4239] = {.lex_state = 79, .external_lex_state = 2}, - [4240] = {.lex_state = 79, .external_lex_state = 2}, - [4241] = {.lex_state = 79, .external_lex_state = 2}, - [4242] = {.lex_state = 79, .external_lex_state = 2}, - [4243] = {.lex_state = 79, .external_lex_state = 2}, - [4244] = {.lex_state = 79, .external_lex_state = 2}, - [4245] = {.lex_state = 79, .external_lex_state = 2}, - [4246] = {.lex_state = 79, .external_lex_state = 2}, - [4247] = {.lex_state = 79, .external_lex_state = 2}, - [4248] = {.lex_state = 79, .external_lex_state = 2}, - [4249] = {.lex_state = 79, .external_lex_state = 2}, - [4250] = {.lex_state = 79, .external_lex_state = 2}, - [4251] = {.lex_state = 79, .external_lex_state = 2}, - [4252] = {.lex_state = 79, .external_lex_state = 2}, - [4253] = {.lex_state = 79, .external_lex_state = 2}, - [4254] = {.lex_state = 79, .external_lex_state = 2}, - [4255] = {.lex_state = 79, .external_lex_state = 2}, - [4256] = {.lex_state = 79, .external_lex_state = 2}, - [4257] = {.lex_state = 79, .external_lex_state = 2}, - [4258] = {.lex_state = 79, .external_lex_state = 2}, - [4259] = {.lex_state = 79, .external_lex_state = 2}, - [4260] = {.lex_state = 79, .external_lex_state = 2}, + [4239] = {.lex_state = 380, .external_lex_state = 2}, + [4240] = {.lex_state = 380, .external_lex_state = 2}, + [4241] = {.lex_state = 380, .external_lex_state = 2}, + [4242] = {.lex_state = 380, .external_lex_state = 2}, + [4243] = {.lex_state = 380, .external_lex_state = 2}, + [4244] = {.lex_state = 380, .external_lex_state = 2}, + [4245] = {.lex_state = 380, .external_lex_state = 2}, + [4246] = {.lex_state = 380, .external_lex_state = 2}, + [4247] = {.lex_state = 380, .external_lex_state = 2}, + [4248] = {.lex_state = 380, .external_lex_state = 2}, + [4249] = {.lex_state = 380, .external_lex_state = 2}, + [4250] = {.lex_state = 63, .external_lex_state = 2}, + [4251] = {.lex_state = 380, .external_lex_state = 2}, + [4252] = {.lex_state = 380, .external_lex_state = 2}, + [4253] = {.lex_state = 380, .external_lex_state = 2}, + [4254] = {.lex_state = 380, .external_lex_state = 2}, + [4255] = {.lex_state = 380, .external_lex_state = 2}, + [4256] = {.lex_state = 65, .external_lex_state = 2}, + [4257] = {.lex_state = 63, .external_lex_state = 5}, + [4258] = {.lex_state = 65, .external_lex_state = 2}, + [4259] = {.lex_state = 65, .external_lex_state = 2}, + [4260] = {.lex_state = 65, .external_lex_state = 2}, [4261] = {.lex_state = 65, .external_lex_state = 2}, - [4262] = {.lex_state = 79, .external_lex_state = 2}, - [4263] = {.lex_state = 79, .external_lex_state = 2}, - [4264] = {.lex_state = 79, .external_lex_state = 2}, - [4265] = {.lex_state = 79, .external_lex_state = 2}, - [4266] = {.lex_state = 79, .external_lex_state = 2}, - [4267] = {.lex_state = 79, .external_lex_state = 2}, - [4268] = {.lex_state = 79, .external_lex_state = 2}, - [4269] = {.lex_state = 79, .external_lex_state = 2}, - [4270] = {.lex_state = 79, .external_lex_state = 2}, - [4271] = {.lex_state = 79, .external_lex_state = 2}, - [4272] = {.lex_state = 79, .external_lex_state = 2}, - [4273] = {.lex_state = 79, .external_lex_state = 2}, - [4274] = {.lex_state = 79, .external_lex_state = 2}, - [4275] = {.lex_state = 79, .external_lex_state = 2}, - [4276] = {.lex_state = 79, .external_lex_state = 2}, - [4277] = {.lex_state = 79, .external_lex_state = 2}, - [4278] = {.lex_state = 79, .external_lex_state = 2}, - [4279] = {.lex_state = 79, .external_lex_state = 2}, - [4280] = {.lex_state = 79, .external_lex_state = 2}, - [4281] = {.lex_state = 79, .external_lex_state = 2}, - [4282] = {.lex_state = 79, .external_lex_state = 2}, - [4283] = {.lex_state = 79, .external_lex_state = 2}, - [4284] = {.lex_state = 79, .external_lex_state = 2}, - [4285] = {.lex_state = 79, .external_lex_state = 2}, - [4286] = {.lex_state = 79, .external_lex_state = 2}, - [4287] = {.lex_state = 79, .external_lex_state = 2}, - [4288] = {.lex_state = 79, .external_lex_state = 2}, - [4289] = {.lex_state = 79, .external_lex_state = 2}, - [4290] = {.lex_state = 79, .external_lex_state = 2}, - [4291] = {.lex_state = 79, .external_lex_state = 2}, - [4292] = {.lex_state = 79, .external_lex_state = 2}, - [4293] = {.lex_state = 79, .external_lex_state = 2}, - [4294] = {.lex_state = 79, .external_lex_state = 2}, - [4295] = {.lex_state = 79, .external_lex_state = 2}, - [4296] = {.lex_state = 79, .external_lex_state = 2}, - [4297] = {.lex_state = 79, .external_lex_state = 2}, - [4298] = {.lex_state = 79, .external_lex_state = 2}, - [4299] = {.lex_state = 79, .external_lex_state = 2}, - [4300] = {.lex_state = 79, .external_lex_state = 2}, - [4301] = {.lex_state = 79, .external_lex_state = 2}, - [4302] = {.lex_state = 79, .external_lex_state = 2}, - [4303] = {.lex_state = 79, .external_lex_state = 2}, - [4304] = {.lex_state = 79, .external_lex_state = 2}, - [4305] = {.lex_state = 79, .external_lex_state = 2}, - [4306] = {.lex_state = 79, .external_lex_state = 2}, - [4307] = {.lex_state = 79, .external_lex_state = 2}, - [4308] = {.lex_state = 79, .external_lex_state = 2}, - [4309] = {.lex_state = 79, .external_lex_state = 2}, - [4310] = {.lex_state = 79, .external_lex_state = 2}, - [4311] = {.lex_state = 79, .external_lex_state = 2}, - [4312] = {.lex_state = 79, .external_lex_state = 2}, - [4313] = {.lex_state = 79, .external_lex_state = 2}, - [4314] = {.lex_state = 79, .external_lex_state = 2}, - [4315] = {.lex_state = 79, .external_lex_state = 2}, - [4316] = {.lex_state = 79, .external_lex_state = 2}, - [4317] = {.lex_state = 79, .external_lex_state = 2}, - [4318] = {.lex_state = 79, .external_lex_state = 2}, - [4319] = {.lex_state = 79, .external_lex_state = 2}, - [4320] = {.lex_state = 79, .external_lex_state = 2}, - [4321] = {.lex_state = 79, .external_lex_state = 2}, - [4322] = {.lex_state = 79, .external_lex_state = 2}, - [4323] = {.lex_state = 79, .external_lex_state = 2}, - [4324] = {.lex_state = 79, .external_lex_state = 2}, - [4325] = {.lex_state = 79, .external_lex_state = 2}, - [4326] = {.lex_state = 79, .external_lex_state = 2}, - [4327] = {.lex_state = 79, .external_lex_state = 2}, - [4328] = {.lex_state = 79, .external_lex_state = 2}, - [4329] = {.lex_state = 79, .external_lex_state = 2}, - [4330] = {.lex_state = 79, .external_lex_state = 2}, - [4331] = {.lex_state = 79, .external_lex_state = 2}, - [4332] = {.lex_state = 79, .external_lex_state = 2}, - [4333] = {.lex_state = 79, .external_lex_state = 2}, - [4334] = {.lex_state = 79, .external_lex_state = 2}, - [4335] = {.lex_state = 79, .external_lex_state = 2}, - [4336] = {.lex_state = 79, .external_lex_state = 2}, - [4337] = {.lex_state = 79, .external_lex_state = 2}, - [4338] = {.lex_state = 79, .external_lex_state = 2}, - [4339] = {.lex_state = 79, .external_lex_state = 2}, - [4340] = {.lex_state = 79, .external_lex_state = 2}, - [4341] = {.lex_state = 79, .external_lex_state = 2}, - [4342] = {.lex_state = 79, .external_lex_state = 2}, - [4343] = {.lex_state = 79, .external_lex_state = 2}, - [4344] = {.lex_state = 79, .external_lex_state = 2}, - [4345] = {.lex_state = 79, .external_lex_state = 2}, - [4346] = {.lex_state = 79, .external_lex_state = 2}, - [4347] = {.lex_state = 79, .external_lex_state = 2}, - [4348] = {.lex_state = 79, .external_lex_state = 2}, - [4349] = {.lex_state = 79, .external_lex_state = 2}, - [4350] = {.lex_state = 79, .external_lex_state = 2}, - [4351] = {.lex_state = 79, .external_lex_state = 2}, - [4352] = {.lex_state = 79, .external_lex_state = 2}, - [4353] = {.lex_state = 79, .external_lex_state = 2}, - [4354] = {.lex_state = 79, .external_lex_state = 2}, - [4355] = {.lex_state = 79, .external_lex_state = 2}, - [4356] = {.lex_state = 79, .external_lex_state = 2}, - [4357] = {.lex_state = 79, .external_lex_state = 2}, - [4358] = {.lex_state = 79, .external_lex_state = 2}, - [4359] = {.lex_state = 79, .external_lex_state = 2}, - [4360] = {.lex_state = 79, .external_lex_state = 2}, - [4361] = {.lex_state = 79, .external_lex_state = 2}, - [4362] = {.lex_state = 79, .external_lex_state = 2}, - [4363] = {.lex_state = 79, .external_lex_state = 2}, - [4364] = {.lex_state = 79, .external_lex_state = 2}, - [4365] = {.lex_state = 79, .external_lex_state = 2}, - [4366] = {.lex_state = 79, .external_lex_state = 2}, - [4367] = {.lex_state = 79, .external_lex_state = 2}, - [4368] = {.lex_state = 79, .external_lex_state = 2}, - [4369] = {.lex_state = 79, .external_lex_state = 2}, - [4370] = {.lex_state = 79, .external_lex_state = 2}, - [4371] = {.lex_state = 79, .external_lex_state = 2}, - [4372] = {.lex_state = 79, .external_lex_state = 2}, - [4373] = {.lex_state = 79, .external_lex_state = 2}, - [4374] = {.lex_state = 79, .external_lex_state = 2}, - [4375] = {.lex_state = 79, .external_lex_state = 2}, - [4376] = {.lex_state = 79, .external_lex_state = 2}, - [4377] = {.lex_state = 79, .external_lex_state = 2}, - [4378] = {.lex_state = 79, .external_lex_state = 2}, - [4379] = {.lex_state = 79, .external_lex_state = 2}, - [4380] = {.lex_state = 79, .external_lex_state = 2}, - [4381] = {.lex_state = 79, .external_lex_state = 2}, - [4382] = {.lex_state = 79, .external_lex_state = 2}, - [4383] = {.lex_state = 79, .external_lex_state = 2}, - [4384] = {.lex_state = 79, .external_lex_state = 2}, - [4385] = {.lex_state = 79, .external_lex_state = 2}, - [4386] = {.lex_state = 79, .external_lex_state = 2}, - [4387] = {.lex_state = 79, .external_lex_state = 2}, - [4388] = {.lex_state = 79, .external_lex_state = 2}, - [4389] = {.lex_state = 79, .external_lex_state = 2}, - [4390] = {.lex_state = 79, .external_lex_state = 2}, - [4391] = {.lex_state = 79, .external_lex_state = 2}, - [4392] = {.lex_state = 79, .external_lex_state = 2}, - [4393] = {.lex_state = 79, .external_lex_state = 2}, - [4394] = {.lex_state = 79, .external_lex_state = 2}, - [4395] = {.lex_state = 79, .external_lex_state = 2}, - [4396] = {.lex_state = 79, .external_lex_state = 2}, - [4397] = {.lex_state = 79, .external_lex_state = 2}, - [4398] = {.lex_state = 79, .external_lex_state = 2}, - [4399] = {.lex_state = 79, .external_lex_state = 2}, - [4400] = {.lex_state = 79, .external_lex_state = 2}, - [4401] = {.lex_state = 79, .external_lex_state = 2}, - [4402] = {.lex_state = 79, .external_lex_state = 2}, - [4403] = {.lex_state = 79, .external_lex_state = 2}, - [4404] = {.lex_state = 79, .external_lex_state = 2}, - [4405] = {.lex_state = 79, .external_lex_state = 2}, - [4406] = {.lex_state = 79, .external_lex_state = 2}, - [4407] = {.lex_state = 79, .external_lex_state = 2}, - [4408] = {.lex_state = 79, .external_lex_state = 2}, - [4409] = {.lex_state = 79, .external_lex_state = 2}, - [4410] = {.lex_state = 79, .external_lex_state = 2}, - [4411] = {.lex_state = 79, .external_lex_state = 2}, - [4412] = {.lex_state = 79, .external_lex_state = 2}, - [4413] = {.lex_state = 79, .external_lex_state = 2}, - [4414] = {.lex_state = 79, .external_lex_state = 2}, - [4415] = {.lex_state = 79, .external_lex_state = 2}, - [4416] = {.lex_state = 79, .external_lex_state = 2}, - [4417] = {.lex_state = 79, .external_lex_state = 2}, - [4418] = {.lex_state = 79, .external_lex_state = 2}, - [4419] = {.lex_state = 79, .external_lex_state = 2}, - [4420] = {.lex_state = 79, .external_lex_state = 2}, - [4421] = {.lex_state = 79, .external_lex_state = 2}, - [4422] = {.lex_state = 79, .external_lex_state = 2}, - [4423] = {.lex_state = 79, .external_lex_state = 2}, - [4424] = {.lex_state = 79, .external_lex_state = 2}, - [4425] = {.lex_state = 79, .external_lex_state = 2}, - [4426] = {.lex_state = 79, .external_lex_state = 2}, - [4427] = {.lex_state = 79, .external_lex_state = 2}, - [4428] = {.lex_state = 79, .external_lex_state = 2}, - [4429] = {.lex_state = 79, .external_lex_state = 2}, - [4430] = {.lex_state = 79, .external_lex_state = 2}, - [4431] = {.lex_state = 79, .external_lex_state = 2}, - [4432] = {.lex_state = 79, .external_lex_state = 2}, - [4433] = {.lex_state = 79, .external_lex_state = 2}, - [4434] = {.lex_state = 79, .external_lex_state = 2}, - [4435] = {.lex_state = 79, .external_lex_state = 2}, - [4436] = {.lex_state = 79, .external_lex_state = 2}, - [4437] = {.lex_state = 79, .external_lex_state = 2}, - [4438] = {.lex_state = 79, .external_lex_state = 2}, - [4439] = {.lex_state = 79, .external_lex_state = 2}, - [4440] = {.lex_state = 79, .external_lex_state = 2}, - [4441] = {.lex_state = 79, .external_lex_state = 2}, - [4442] = {.lex_state = 79, .external_lex_state = 2}, - [4443] = {.lex_state = 79, .external_lex_state = 2}, - [4444] = {.lex_state = 79, .external_lex_state = 2}, - [4445] = {.lex_state = 79, .external_lex_state = 2}, - [4446] = {.lex_state = 79, .external_lex_state = 2}, - [4447] = {.lex_state = 79, .external_lex_state = 2}, - [4448] = {.lex_state = 79, .external_lex_state = 2}, - [4449] = {.lex_state = 79, .external_lex_state = 2}, - [4450] = {.lex_state = 79, .external_lex_state = 2}, - [4451] = {.lex_state = 79, .external_lex_state = 2}, - [4452] = {.lex_state = 79, .external_lex_state = 2}, - [4453] = {.lex_state = 79, .external_lex_state = 2}, - [4454] = {.lex_state = 79, .external_lex_state = 2}, - [4455] = {.lex_state = 79, .external_lex_state = 2}, - [4456] = {.lex_state = 79, .external_lex_state = 2}, - [4457] = {.lex_state = 77, .external_lex_state = 2}, - [4458] = {.lex_state = 63, .external_lex_state = 2}, - [4459] = {.lex_state = 79, .external_lex_state = 2}, - [4460] = {.lex_state = 380, .external_lex_state = 2}, - [4461] = {.lex_state = 63, .external_lex_state = 2}, - [4462] = {.lex_state = 380, .external_lex_state = 2}, - [4463] = {.lex_state = 380, .external_lex_state = 2}, - [4464] = {.lex_state = 380, .external_lex_state = 2}, - [4465] = {.lex_state = 380, .external_lex_state = 2}, - [4466] = {.lex_state = 380, .external_lex_state = 2}, - [4467] = {.lex_state = 380, .external_lex_state = 2}, - [4468] = {.lex_state = 380, .external_lex_state = 2}, - [4469] = {.lex_state = 380, .external_lex_state = 2}, - [4470] = {.lex_state = 380, .external_lex_state = 2}, - [4471] = {.lex_state = 380, .external_lex_state = 2}, - [4472] = {.lex_state = 380, .external_lex_state = 2}, + [4262] = {.lex_state = 65, .external_lex_state = 2}, + [4263] = {.lex_state = 65, .external_lex_state = 2}, + [4264] = {.lex_state = 65, .external_lex_state = 2}, + [4265] = {.lex_state = 65, .external_lex_state = 2}, + [4266] = {.lex_state = 65, .external_lex_state = 2}, + [4267] = {.lex_state = 65, .external_lex_state = 2}, + [4268] = {.lex_state = 63, .external_lex_state = 2}, + [4269] = {.lex_state = 65, .external_lex_state = 2}, + [4270] = {.lex_state = 65, .external_lex_state = 2}, + [4271] = {.lex_state = 63, .external_lex_state = 2}, + [4272] = {.lex_state = 89, .external_lex_state = 2}, + [4273] = {.lex_state = 63, .external_lex_state = 2}, + [4274] = {.lex_state = 63, .external_lex_state = 2}, + [4275] = {.lex_state = 63, .external_lex_state = 2}, + [4276] = {.lex_state = 63, .external_lex_state = 2}, + [4277] = {.lex_state = 63, .external_lex_state = 2}, + [4278] = {.lex_state = 63, .external_lex_state = 2}, + [4279] = {.lex_state = 63, .external_lex_state = 2}, + [4280] = {.lex_state = 63, .external_lex_state = 2}, + [4281] = {.lex_state = 63, .external_lex_state = 2}, + [4282] = {.lex_state = 63, .external_lex_state = 2}, + [4283] = {.lex_state = 63, .external_lex_state = 2}, + [4284] = {.lex_state = 63, .external_lex_state = 2}, + [4285] = {.lex_state = 63, .external_lex_state = 2}, + [4286] = {.lex_state = 63, .external_lex_state = 2}, + [4287] = {.lex_state = 63, .external_lex_state = 2}, + [4288] = {.lex_state = 56, .external_lex_state = 2}, + [4289] = {.lex_state = 56, .external_lex_state = 2}, + [4290] = {.lex_state = 56, .external_lex_state = 2}, + [4291] = {.lex_state = 56, .external_lex_state = 2}, + [4292] = {.lex_state = 56, .external_lex_state = 2}, + [4293] = {.lex_state = 56, .external_lex_state = 2}, + [4294] = {.lex_state = 55, .external_lex_state = 2}, + [4295] = {.lex_state = 55, .external_lex_state = 2}, + [4296] = {.lex_state = 56, .external_lex_state = 2}, + [4297] = {.lex_state = 56, .external_lex_state = 2}, + [4298] = {.lex_state = 56, .external_lex_state = 2}, + [4299] = {.lex_state = 56, .external_lex_state = 2}, + [4300] = {.lex_state = 56, .external_lex_state = 2}, + [4301] = {.lex_state = 56, .external_lex_state = 2}, + [4302] = {.lex_state = 55, .external_lex_state = 5}, + [4303] = {.lex_state = 56, .external_lex_state = 2}, + [4304] = {.lex_state = 56, .external_lex_state = 2}, + [4305] = {.lex_state = 55, .external_lex_state = 2}, + [4306] = {.lex_state = 56, .external_lex_state = 2}, + [4307] = {.lex_state = 56, .external_lex_state = 2}, + [4308] = {.lex_state = 56, .external_lex_state = 2}, + [4309] = {.lex_state = 56, .external_lex_state = 2}, + [4310] = {.lex_state = 56, .external_lex_state = 2}, + [4311] = {.lex_state = 56, .external_lex_state = 2}, + [4312] = {.lex_state = 56, .external_lex_state = 2}, + [4313] = {.lex_state = 56, .external_lex_state = 2}, + [4314] = {.lex_state = 56, .external_lex_state = 2}, + [4315] = {.lex_state = 56, .external_lex_state = 2}, + [4316] = {.lex_state = 56, .external_lex_state = 2}, + [4317] = {.lex_state = 56, .external_lex_state = 2}, + [4318] = {.lex_state = 56, .external_lex_state = 2}, + [4319] = {.lex_state = 56, .external_lex_state = 2}, + [4320] = {.lex_state = 56, .external_lex_state = 2}, + [4321] = {.lex_state = 56, .external_lex_state = 2}, + [4322] = {.lex_state = 56, .external_lex_state = 2}, + [4323] = {.lex_state = 56, .external_lex_state = 2}, + [4324] = {.lex_state = 56, .external_lex_state = 2}, + [4325] = {.lex_state = 56, .external_lex_state = 2}, + [4326] = {.lex_state = 56, .external_lex_state = 2}, + [4327] = {.lex_state = 56, .external_lex_state = 2}, + [4328] = {.lex_state = 56, .external_lex_state = 2}, + [4329] = {.lex_state = 55, .external_lex_state = 5}, + [4330] = {.lex_state = 56, .external_lex_state = 2}, + [4331] = {.lex_state = 56, .external_lex_state = 2}, + [4332] = {.lex_state = 56, .external_lex_state = 2}, + [4333] = {.lex_state = 60, .external_lex_state = 2}, + [4334] = {.lex_state = 60, .external_lex_state = 2}, + [4335] = {.lex_state = 55, .external_lex_state = 2}, + [4336] = {.lex_state = 60, .external_lex_state = 2}, + [4337] = {.lex_state = 60, .external_lex_state = 2}, + [4338] = {.lex_state = 60, .external_lex_state = 2}, + [4339] = {.lex_state = 60, .external_lex_state = 2}, + [4340] = {.lex_state = 60, .external_lex_state = 2}, + [4341] = {.lex_state = 55, .external_lex_state = 2}, + [4342] = {.lex_state = 55, .external_lex_state = 2}, + [4343] = {.lex_state = 55, .external_lex_state = 2}, + [4344] = {.lex_state = 55, .external_lex_state = 2}, + [4345] = {.lex_state = 56, .external_lex_state = 2}, + [4346] = {.lex_state = 56, .external_lex_state = 5}, + [4347] = {.lex_state = 55, .external_lex_state = 2}, + [4348] = {.lex_state = 55, .external_lex_state = 2}, + [4349] = {.lex_state = 55, .external_lex_state = 2}, + [4350] = {.lex_state = 55, .external_lex_state = 2}, + [4351] = {.lex_state = 56, .external_lex_state = 2}, + [4352] = {.lex_state = 55, .external_lex_state = 2}, + [4353] = {.lex_state = 56, .external_lex_state = 2}, + [4354] = {.lex_state = 55, .external_lex_state = 2}, + [4355] = {.lex_state = 55, .external_lex_state = 2}, + [4356] = {.lex_state = 55, .external_lex_state = 2}, + [4357] = {.lex_state = 56, .external_lex_state = 5}, + [4358] = {.lex_state = 56, .external_lex_state = 2}, + [4359] = {.lex_state = 55, .external_lex_state = 2}, + [4360] = {.lex_state = 56, .external_lex_state = 5}, + [4361] = {.lex_state = 55, .external_lex_state = 2}, + [4362] = {.lex_state = 55, .external_lex_state = 2}, + [4363] = {.lex_state = 55, .external_lex_state = 2}, + [4364] = {.lex_state = 55, .external_lex_state = 2}, + [4365] = {.lex_state = 55, .external_lex_state = 2}, + [4366] = {.lex_state = 55, .external_lex_state = 2}, + [4367] = {.lex_state = 55, .external_lex_state = 2}, + [4368] = {.lex_state = 55, .external_lex_state = 2}, + [4369] = {.lex_state = 55, .external_lex_state = 2}, + [4370] = {.lex_state = 55, .external_lex_state = 2}, + [4371] = {.lex_state = 55, .external_lex_state = 2}, + [4372] = {.lex_state = 56, .external_lex_state = 5}, + [4373] = {.lex_state = 54, .external_lex_state = 2}, + [4374] = {.lex_state = 55, .external_lex_state = 2}, + [4375] = {.lex_state = 380, .external_lex_state = 2}, + [4376] = {.lex_state = 54, .external_lex_state = 2}, + [4377] = {.lex_state = 54, .external_lex_state = 2}, + [4378] = {.lex_state = 55, .external_lex_state = 2}, + [4379] = {.lex_state = 54, .external_lex_state = 2}, + [4380] = {.lex_state = 54, .external_lex_state = 2}, + [4381] = {.lex_state = 55, .external_lex_state = 2}, + [4382] = {.lex_state = 55, .external_lex_state = 2}, + [4383] = {.lex_state = 55, .external_lex_state = 2}, + [4384] = {.lex_state = 380, .external_lex_state = 2}, + [4385] = {.lex_state = 380, .external_lex_state = 2}, + [4386] = {.lex_state = 55, .external_lex_state = 2}, + [4387] = {.lex_state = 54, .external_lex_state = 2}, + [4388] = {.lex_state = 54, .external_lex_state = 2}, + [4389] = {.lex_state = 54, .external_lex_state = 2}, + [4390] = {.lex_state = 56, .external_lex_state = 5}, + [4391] = {.lex_state = 56, .external_lex_state = 5}, + [4392] = {.lex_state = 380, .external_lex_state = 2}, + [4393] = {.lex_state = 56, .external_lex_state = 5}, + [4394] = {.lex_state = 56, .external_lex_state = 5}, + [4395] = {.lex_state = 56, .external_lex_state = 6}, + [4396] = {.lex_state = 56, .external_lex_state = 6}, + [4397] = {.lex_state = 56, .external_lex_state = 6}, + [4398] = {.lex_state = 55, .external_lex_state = 2}, + [4399] = {.lex_state = 55, .external_lex_state = 2}, + [4400] = {.lex_state = 55, .external_lex_state = 2}, + [4401] = {.lex_state = 380, .external_lex_state = 2}, + [4402] = {.lex_state = 55, .external_lex_state = 2}, + [4403] = {.lex_state = 56, .external_lex_state = 5}, + [4404] = {.lex_state = 56, .external_lex_state = 5}, + [4405] = {.lex_state = 56, .external_lex_state = 5}, + [4406] = {.lex_state = 56, .external_lex_state = 5}, + [4407] = {.lex_state = 55, .external_lex_state = 2}, + [4408] = {.lex_state = 55, .external_lex_state = 2}, + [4409] = {.lex_state = 56, .external_lex_state = 5}, + [4410] = {.lex_state = 55, .external_lex_state = 2}, + [4411] = {.lex_state = 56, .external_lex_state = 5}, + [4412] = {.lex_state = 56, .external_lex_state = 5}, + [4413] = {.lex_state = 56, .external_lex_state = 5}, + [4414] = {.lex_state = 56, .external_lex_state = 5}, + [4415] = {.lex_state = 56, .external_lex_state = 5}, + [4416] = {.lex_state = 55, .external_lex_state = 2}, + [4417] = {.lex_state = 56, .external_lex_state = 5}, + [4418] = {.lex_state = 55, .external_lex_state = 2}, + [4419] = {.lex_state = 56, .external_lex_state = 5}, + [4420] = {.lex_state = 54, .external_lex_state = 2}, + [4421] = {.lex_state = 55, .external_lex_state = 2}, + [4422] = {.lex_state = 54, .external_lex_state = 2}, + [4423] = {.lex_state = 54, .external_lex_state = 2}, + [4424] = {.lex_state = 55, .external_lex_state = 2}, + [4425] = {.lex_state = 55, .external_lex_state = 2}, + [4426] = {.lex_state = 54, .external_lex_state = 2}, + [4427] = {.lex_state = 56, .external_lex_state = 5}, + [4428] = {.lex_state = 55, .external_lex_state = 2}, + [4429] = {.lex_state = 56, .external_lex_state = 5}, + [4430] = {.lex_state = 55, .external_lex_state = 2}, + [4431] = {.lex_state = 55, .external_lex_state = 2}, + [4432] = {.lex_state = 380, .external_lex_state = 2}, + [4433] = {.lex_state = 55, .external_lex_state = 2}, + [4434] = {.lex_state = 55, .external_lex_state = 2}, + [4435] = {.lex_state = 55, .external_lex_state = 2}, + [4436] = {.lex_state = 55, .external_lex_state = 2}, + [4437] = {.lex_state = 55, .external_lex_state = 2}, + [4438] = {.lex_state = 56, .external_lex_state = 5}, + [4439] = {.lex_state = 380, .external_lex_state = 2}, + [4440] = {.lex_state = 55, .external_lex_state = 2}, + [4441] = {.lex_state = 56, .external_lex_state = 5}, + [4442] = {.lex_state = 56, .external_lex_state = 5}, + [4443] = {.lex_state = 56, .external_lex_state = 5}, + [4444] = {.lex_state = 56, .external_lex_state = 5}, + [4445] = {.lex_state = 54, .external_lex_state = 2}, + [4446] = {.lex_state = 55, .external_lex_state = 2}, + [4447] = {.lex_state = 55, .external_lex_state = 2}, + [4448] = {.lex_state = 56, .external_lex_state = 5}, + [4449] = {.lex_state = 55, .external_lex_state = 2}, + [4450] = {.lex_state = 55, .external_lex_state = 2}, + [4451] = {.lex_state = 54, .external_lex_state = 2}, + [4452] = {.lex_state = 54, .external_lex_state = 2}, + [4453] = {.lex_state = 54, .external_lex_state = 2}, + [4454] = {.lex_state = 56, .external_lex_state = 5}, + [4455] = {.lex_state = 55, .external_lex_state = 2}, + [4456] = {.lex_state = 55, .external_lex_state = 2}, + [4457] = {.lex_state = 56, .external_lex_state = 5}, + [4458] = {.lex_state = 56, .external_lex_state = 5}, + [4459] = {.lex_state = 56, .external_lex_state = 5}, + [4460] = {.lex_state = 56, .external_lex_state = 5}, + [4461] = {.lex_state = 56, .external_lex_state = 5}, + [4462] = {.lex_state = 56, .external_lex_state = 5}, + [4463] = {.lex_state = 56, .external_lex_state = 5}, + [4464] = {.lex_state = 54, .external_lex_state = 2}, + [4465] = {.lex_state = 55, .external_lex_state = 2}, + [4466] = {.lex_state = 55, .external_lex_state = 2}, + [4467] = {.lex_state = 54, .external_lex_state = 2}, + [4468] = {.lex_state = 54, .external_lex_state = 2}, + [4469] = {.lex_state = 55, .external_lex_state = 2}, + [4470] = {.lex_state = 54, .external_lex_state = 2}, + [4471] = {.lex_state = 55, .external_lex_state = 2}, + [4472] = {.lex_state = 55, .external_lex_state = 2}, [4473] = {.lex_state = 380, .external_lex_state = 2}, - [4474] = {.lex_state = 380, .external_lex_state = 2}, + [4474] = {.lex_state = 56, .external_lex_state = 5}, [4475] = {.lex_state = 380, .external_lex_state = 2}, - [4476] = {.lex_state = 380, .external_lex_state = 2}, - [4477] = {.lex_state = 65, .external_lex_state = 2}, - [4478] = {.lex_state = 63, .external_lex_state = 2}, - [4479] = {.lex_state = 65, .external_lex_state = 2}, - [4480] = {.lex_state = 65, .external_lex_state = 2}, - [4481] = {.lex_state = 65, .external_lex_state = 2}, - [4482] = {.lex_state = 65, .external_lex_state = 2}, - [4483] = {.lex_state = 63, .external_lex_state = 5}, - [4484] = {.lex_state = 65, .external_lex_state = 2}, - [4485] = {.lex_state = 65, .external_lex_state = 2}, - [4486] = {.lex_state = 65, .external_lex_state = 2}, - [4487] = {.lex_state = 65, .external_lex_state = 2}, - [4488] = {.lex_state = 65, .external_lex_state = 2}, - [4489] = {.lex_state = 65, .external_lex_state = 2}, - [4490] = {.lex_state = 65, .external_lex_state = 2}, - [4491] = {.lex_state = 65, .external_lex_state = 2}, - [4492] = {.lex_state = 63, .external_lex_state = 2}, - [4493] = {.lex_state = 89, .external_lex_state = 2}, - [4494] = {.lex_state = 63, .external_lex_state = 2}, - [4495] = {.lex_state = 63, .external_lex_state = 2}, - [4496] = {.lex_state = 63, .external_lex_state = 2}, - [4497] = {.lex_state = 63, .external_lex_state = 2}, - [4498] = {.lex_state = 63, .external_lex_state = 2}, - [4499] = {.lex_state = 63, .external_lex_state = 2}, - [4500] = {.lex_state = 63, .external_lex_state = 2}, - [4501] = {.lex_state = 63, .external_lex_state = 2}, - [4502] = {.lex_state = 63, .external_lex_state = 2}, - [4503] = {.lex_state = 63, .external_lex_state = 2}, - [4504] = {.lex_state = 63, .external_lex_state = 2}, - [4505] = {.lex_state = 63, .external_lex_state = 2}, - [4506] = {.lex_state = 63, .external_lex_state = 2}, - [4507] = {.lex_state = 63, .external_lex_state = 2}, - [4508] = {.lex_state = 63, .external_lex_state = 2}, - [4509] = {.lex_state = 56, .external_lex_state = 2}, - [4510] = {.lex_state = 56, .external_lex_state = 2}, - [4511] = {.lex_state = 56, .external_lex_state = 2}, - [4512] = {.lex_state = 56, .external_lex_state = 2}, - [4513] = {.lex_state = 56, .external_lex_state = 2}, - [4514] = {.lex_state = 56, .external_lex_state = 2}, - [4515] = {.lex_state = 55, .external_lex_state = 2}, - [4516] = {.lex_state = 55, .external_lex_state = 2}, - [4517] = {.lex_state = 56, .external_lex_state = 2}, - [4518] = {.lex_state = 56, .external_lex_state = 2}, - [4519] = {.lex_state = 56, .external_lex_state = 2}, - [4520] = {.lex_state = 56, .external_lex_state = 2}, - [4521] = {.lex_state = 56, .external_lex_state = 2}, - [4522] = {.lex_state = 56, .external_lex_state = 2}, - [4523] = {.lex_state = 56, .external_lex_state = 2}, - [4524] = {.lex_state = 56, .external_lex_state = 2}, - [4525] = {.lex_state = 56, .external_lex_state = 2}, - [4526] = {.lex_state = 56, .external_lex_state = 2}, - [4527] = {.lex_state = 56, .external_lex_state = 2}, - [4528] = {.lex_state = 56, .external_lex_state = 2}, - [4529] = {.lex_state = 56, .external_lex_state = 2}, - [4530] = {.lex_state = 56, .external_lex_state = 2}, - [4531] = {.lex_state = 55, .external_lex_state = 5}, - [4532] = {.lex_state = 56, .external_lex_state = 2}, - [4533] = {.lex_state = 56, .external_lex_state = 2}, - [4534] = {.lex_state = 56, .external_lex_state = 2}, - [4535] = {.lex_state = 56, .external_lex_state = 2}, - [4536] = {.lex_state = 56, .external_lex_state = 2}, + [4476] = {.lex_state = 56, .external_lex_state = 5}, + [4477] = {.lex_state = 55, .external_lex_state = 2}, + [4478] = {.lex_state = 55, .external_lex_state = 2}, + [4479] = {.lex_state = 55, .external_lex_state = 2}, + [4480] = {.lex_state = 55, .external_lex_state = 2}, + [4481] = {.lex_state = 55, .external_lex_state = 2}, + [4482] = {.lex_state = 55, .external_lex_state = 2}, + [4483] = {.lex_state = 54, .external_lex_state = 5}, + [4484] = {.lex_state = 54, .external_lex_state = 5}, + [4485] = {.lex_state = 54, .external_lex_state = 5}, + [4486] = {.lex_state = 54, .external_lex_state = 5}, + [4487] = {.lex_state = 54, .external_lex_state = 5}, + [4488] = {.lex_state = 90, .external_lex_state = 2}, + [4489] = {.lex_state = 54, .external_lex_state = 5}, + [4490] = {.lex_state = 61, .external_lex_state = 2}, + [4491] = {.lex_state = 54, .external_lex_state = 5}, + [4492] = {.lex_state = 54, .external_lex_state = 5}, + [4493] = {.lex_state = 61, .external_lex_state = 2}, + [4494] = {.lex_state = 61, .external_lex_state = 2}, + [4495] = {.lex_state = 61, .external_lex_state = 2}, + [4496] = {.lex_state = 54, .external_lex_state = 5}, + [4497] = {.lex_state = 54, .external_lex_state = 5}, + [4498] = {.lex_state = 54, .external_lex_state = 5}, + [4499] = {.lex_state = 54, .external_lex_state = 5}, + [4500] = {.lex_state = 56, .external_lex_state = 5}, + [4501] = {.lex_state = 54, .external_lex_state = 5}, + [4502] = {.lex_state = 90, .external_lex_state = 2}, + [4503] = {.lex_state = 54, .external_lex_state = 5}, + [4504] = {.lex_state = 54, .external_lex_state = 5}, + [4505] = {.lex_state = 54, .external_lex_state = 5}, + [4506] = {.lex_state = 54, .external_lex_state = 5}, + [4507] = {.lex_state = 54, .external_lex_state = 5}, + [4508] = {.lex_state = 61, .external_lex_state = 2}, + [4509] = {.lex_state = 54, .external_lex_state = 5}, + [4510] = {.lex_state = 61, .external_lex_state = 2}, + [4511] = {.lex_state = 54, .external_lex_state = 5}, + [4512] = {.lex_state = 61, .external_lex_state = 2}, + [4513] = {.lex_state = 54, .external_lex_state = 2}, + [4514] = {.lex_state = 54, .external_lex_state = 5}, + [4515] = {.lex_state = 90, .external_lex_state = 2}, + [4516] = {.lex_state = 54, .external_lex_state = 5}, + [4517] = {.lex_state = 90, .external_lex_state = 2}, + [4518] = {.lex_state = 54, .external_lex_state = 5}, + [4519] = {.lex_state = 54, .external_lex_state = 5}, + [4520] = {.lex_state = 54, .external_lex_state = 5}, + [4521] = {.lex_state = 54, .external_lex_state = 5}, + [4522] = {.lex_state = 54, .external_lex_state = 5}, + [4523] = {.lex_state = 90, .external_lex_state = 2}, + [4524] = {.lex_state = 54, .external_lex_state = 5}, + [4525] = {.lex_state = 54, .external_lex_state = 5}, + [4526] = {.lex_state = 56, .external_lex_state = 6}, + [4527] = {.lex_state = 56, .external_lex_state = 6}, + [4528] = {.lex_state = 54, .external_lex_state = 5}, + [4529] = {.lex_state = 56, .external_lex_state = 5}, + [4530] = {.lex_state = 54, .external_lex_state = 5}, + [4531] = {.lex_state = 56, .external_lex_state = 5}, + [4532] = {.lex_state = 56, .external_lex_state = 5}, + [4533] = {.lex_state = 54, .external_lex_state = 5}, + [4534] = {.lex_state = 56, .external_lex_state = 5}, + [4535] = {.lex_state = 54, .external_lex_state = 5}, + [4536] = {.lex_state = 54, .external_lex_state = 5}, [4537] = {.lex_state = 56, .external_lex_state = 2}, - [4538] = {.lex_state = 56, .external_lex_state = 2}, - [4539] = {.lex_state = 56, .external_lex_state = 2}, - [4540] = {.lex_state = 55, .external_lex_state = 5}, - [4541] = {.lex_state = 56, .external_lex_state = 2}, - [4542] = {.lex_state = 56, .external_lex_state = 2}, - [4543] = {.lex_state = 56, .external_lex_state = 2}, - [4544] = {.lex_state = 55, .external_lex_state = 2}, - [4545] = {.lex_state = 56, .external_lex_state = 2}, - [4546] = {.lex_state = 56, .external_lex_state = 2}, - [4547] = {.lex_state = 56, .external_lex_state = 2}, - [4548] = {.lex_state = 56, .external_lex_state = 2}, - [4549] = {.lex_state = 56, .external_lex_state = 2}, - [4550] = {.lex_state = 56, .external_lex_state = 2}, - [4551] = {.lex_state = 56, .external_lex_state = 2}, - [4552] = {.lex_state = 56, .external_lex_state = 2}, - [4553] = {.lex_state = 56, .external_lex_state = 2}, - [4554] = {.lex_state = 60, .external_lex_state = 2}, - [4555] = {.lex_state = 60, .external_lex_state = 2}, - [4556] = {.lex_state = 60, .external_lex_state = 2}, - [4557] = {.lex_state = 60, .external_lex_state = 2}, - [4558] = {.lex_state = 60, .external_lex_state = 2}, - [4559] = {.lex_state = 60, .external_lex_state = 2}, - [4560] = {.lex_state = 55, .external_lex_state = 2}, - [4561] = {.lex_state = 60, .external_lex_state = 2}, - [4562] = {.lex_state = 55, .external_lex_state = 2}, - [4563] = {.lex_state = 55, .external_lex_state = 2}, - [4564] = {.lex_state = 55, .external_lex_state = 2}, - [4565] = {.lex_state = 55, .external_lex_state = 2}, - [4566] = {.lex_state = 56, .external_lex_state = 2}, - [4567] = {.lex_state = 55, .external_lex_state = 2}, - [4568] = {.lex_state = 55, .external_lex_state = 2}, - [4569] = {.lex_state = 55, .external_lex_state = 2}, - [4570] = {.lex_state = 55, .external_lex_state = 2}, - [4571] = {.lex_state = 55, .external_lex_state = 2}, - [4572] = {.lex_state = 56, .external_lex_state = 2}, - [4573] = {.lex_state = 55, .external_lex_state = 2}, - [4574] = {.lex_state = 56, .external_lex_state = 2}, - [4575] = {.lex_state = 56, .external_lex_state = 5}, - [4576] = {.lex_state = 55, .external_lex_state = 2}, - [4577] = {.lex_state = 55, .external_lex_state = 2}, - [4578] = {.lex_state = 55, .external_lex_state = 2}, - [4579] = {.lex_state = 56, .external_lex_state = 5}, - [4580] = {.lex_state = 55, .external_lex_state = 2}, - [4581] = {.lex_state = 55, .external_lex_state = 2}, - [4582] = {.lex_state = 55, .external_lex_state = 2}, - [4583] = {.lex_state = 56, .external_lex_state = 5}, - [4584] = {.lex_state = 56, .external_lex_state = 2}, - [4585] = {.lex_state = 55, .external_lex_state = 2}, - [4586] = {.lex_state = 55, .external_lex_state = 2}, - [4587] = {.lex_state = 55, .external_lex_state = 2}, - [4588] = {.lex_state = 55, .external_lex_state = 2}, - [4589] = {.lex_state = 55, .external_lex_state = 2}, - [4590] = {.lex_state = 55, .external_lex_state = 2}, - [4591] = {.lex_state = 55, .external_lex_state = 2}, - [4592] = {.lex_state = 55, .external_lex_state = 2}, - [4593] = {.lex_state = 55, .external_lex_state = 2}, - [4594] = {.lex_state = 54, .external_lex_state = 2}, - [4595] = {.lex_state = 55, .external_lex_state = 2}, - [4596] = {.lex_state = 56, .external_lex_state = 5}, - [4597] = {.lex_state = 55, .external_lex_state = 2}, - [4598] = {.lex_state = 56, .external_lex_state = 5}, - [4599] = {.lex_state = 55, .external_lex_state = 2}, - [4600] = {.lex_state = 55, .external_lex_state = 2}, - [4601] = {.lex_state = 55, .external_lex_state = 2}, - [4602] = {.lex_state = 55, .external_lex_state = 2}, - [4603] = {.lex_state = 380, .external_lex_state = 2}, - [4604] = {.lex_state = 55, .external_lex_state = 2}, - [4605] = {.lex_state = 380, .external_lex_state = 2}, - [4606] = {.lex_state = 54, .external_lex_state = 2}, - [4607] = {.lex_state = 55, .external_lex_state = 2}, - [4608] = {.lex_state = 56, .external_lex_state = 5}, - [4609] = {.lex_state = 55, .external_lex_state = 2}, - [4610] = {.lex_state = 55, .external_lex_state = 2}, - [4611] = {.lex_state = 55, .external_lex_state = 2}, - [4612] = {.lex_state = 55, .external_lex_state = 2}, - [4613] = {.lex_state = 55, .external_lex_state = 2}, - [4614] = {.lex_state = 380, .external_lex_state = 2}, - [4615] = {.lex_state = 55, .external_lex_state = 2}, - [4616] = {.lex_state = 380, .external_lex_state = 2}, - [4617] = {.lex_state = 55, .external_lex_state = 2}, - [4618] = {.lex_state = 55, .external_lex_state = 2}, - [4619] = {.lex_state = 56, .external_lex_state = 5}, - [4620] = {.lex_state = 55, .external_lex_state = 2}, - [4621] = {.lex_state = 55, .external_lex_state = 2}, - [4622] = {.lex_state = 55, .external_lex_state = 2}, - [4623] = {.lex_state = 55, .external_lex_state = 2}, - [4624] = {.lex_state = 55, .external_lex_state = 2}, - [4625] = {.lex_state = 56, .external_lex_state = 5}, - [4626] = {.lex_state = 54, .external_lex_state = 2}, - [4627] = {.lex_state = 54, .external_lex_state = 2}, - [4628] = {.lex_state = 54, .external_lex_state = 2}, - [4629] = {.lex_state = 56, .external_lex_state = 5}, - [4630] = {.lex_state = 55, .external_lex_state = 2}, - [4631] = {.lex_state = 55, .external_lex_state = 2}, - [4632] = {.lex_state = 56, .external_lex_state = 5}, - [4633] = {.lex_state = 380, .external_lex_state = 2}, - [4634] = {.lex_state = 55, .external_lex_state = 2}, - [4635] = {.lex_state = 54, .external_lex_state = 2}, - [4636] = {.lex_state = 56, .external_lex_state = 5}, - [4637] = {.lex_state = 54, .external_lex_state = 2}, - [4638] = {.lex_state = 55, .external_lex_state = 2}, - [4639] = {.lex_state = 56, .external_lex_state = 5}, - [4640] = {.lex_state = 54, .external_lex_state = 2}, - [4641] = {.lex_state = 54, .external_lex_state = 2}, - [4642] = {.lex_state = 55, .external_lex_state = 2}, - [4643] = {.lex_state = 54, .external_lex_state = 2}, - [4644] = {.lex_state = 54, .external_lex_state = 2}, - [4645] = {.lex_state = 380, .external_lex_state = 2}, - [4646] = {.lex_state = 54, .external_lex_state = 2}, - [4647] = {.lex_state = 55, .external_lex_state = 2}, - [4648] = {.lex_state = 55, .external_lex_state = 2}, - [4649] = {.lex_state = 56, .external_lex_state = 5}, - [4650] = {.lex_state = 56, .external_lex_state = 5}, - [4651] = {.lex_state = 54, .external_lex_state = 2}, - [4652] = {.lex_state = 55, .external_lex_state = 2}, - [4653] = {.lex_state = 56, .external_lex_state = 5}, - [4654] = {.lex_state = 54, .external_lex_state = 2}, - [4655] = {.lex_state = 56, .external_lex_state = 5}, - [4656] = {.lex_state = 55, .external_lex_state = 2}, - [4657] = {.lex_state = 56, .external_lex_state = 5}, - [4658] = {.lex_state = 56, .external_lex_state = 5}, - [4659] = {.lex_state = 55, .external_lex_state = 2}, - [4660] = {.lex_state = 380, .external_lex_state = 2}, - [4661] = {.lex_state = 55, .external_lex_state = 2}, - [4662] = {.lex_state = 56, .external_lex_state = 5}, - [4663] = {.lex_state = 56, .external_lex_state = 5}, - [4664] = {.lex_state = 56, .external_lex_state = 5}, - [4665] = {.lex_state = 54, .external_lex_state = 2}, - [4666] = {.lex_state = 56, .external_lex_state = 5}, - [4667] = {.lex_state = 56, .external_lex_state = 5}, - [4668] = {.lex_state = 54, .external_lex_state = 2}, - [4669] = {.lex_state = 55, .external_lex_state = 2}, - [4670] = {.lex_state = 55, .external_lex_state = 2}, - [4671] = {.lex_state = 56, .external_lex_state = 5}, - [4672] = {.lex_state = 54, .external_lex_state = 2}, - [4673] = {.lex_state = 56, .external_lex_state = 5}, - [4674] = {.lex_state = 56, .external_lex_state = 5}, - [4675] = {.lex_state = 55, .external_lex_state = 2}, - [4676] = {.lex_state = 55, .external_lex_state = 2}, - [4677] = {.lex_state = 56, .external_lex_state = 5}, - [4678] = {.lex_state = 56, .external_lex_state = 5}, - [4679] = {.lex_state = 54, .external_lex_state = 2}, - [4680] = {.lex_state = 56, .external_lex_state = 5}, - [4681] = {.lex_state = 55, .external_lex_state = 2}, - [4682] = {.lex_state = 55, .external_lex_state = 2}, - [4683] = {.lex_state = 55, .external_lex_state = 2}, - [4684] = {.lex_state = 56, .external_lex_state = 5}, - [4685] = {.lex_state = 56, .external_lex_state = 5}, - [4686] = {.lex_state = 380, .external_lex_state = 2}, - [4687] = {.lex_state = 55, .external_lex_state = 2}, - [4688] = {.lex_state = 56, .external_lex_state = 5}, - [4689] = {.lex_state = 380, .external_lex_state = 2}, - [4690] = {.lex_state = 56, .external_lex_state = 5}, - [4691] = {.lex_state = 54, .external_lex_state = 2}, - [4692] = {.lex_state = 56, .external_lex_state = 5}, - [4693] = {.lex_state = 56, .external_lex_state = 6}, - [4694] = {.lex_state = 55, .external_lex_state = 2}, - [4695] = {.lex_state = 56, .external_lex_state = 6}, - [4696] = {.lex_state = 56, .external_lex_state = 6}, - [4697] = {.lex_state = 55, .external_lex_state = 2}, - [4698] = {.lex_state = 56, .external_lex_state = 5}, - [4699] = {.lex_state = 55, .external_lex_state = 2}, - [4700] = {.lex_state = 56, .external_lex_state = 5}, - [4701] = {.lex_state = 54, .external_lex_state = 2}, - [4702] = {.lex_state = 56, .external_lex_state = 5}, - [4703] = {.lex_state = 56, .external_lex_state = 5}, - [4704] = {.lex_state = 54, .external_lex_state = 5}, + [4538] = {.lex_state = 54, .external_lex_state = 5}, + [4539] = {.lex_state = 56, .external_lex_state = 5}, + [4540] = {.lex_state = 56, .external_lex_state = 6}, + [4541] = {.lex_state = 56, .external_lex_state = 6}, + [4542] = {.lex_state = 56, .external_lex_state = 6}, + [4543] = {.lex_state = 56, .external_lex_state = 6}, + [4544] = {.lex_state = 56, .external_lex_state = 6}, + [4545] = {.lex_state = 56, .external_lex_state = 6}, + [4546] = {.lex_state = 56, .external_lex_state = 6}, + [4547] = {.lex_state = 56, .external_lex_state = 6}, + [4548] = {.lex_state = 56, .external_lex_state = 6}, + [4549] = {.lex_state = 56, .external_lex_state = 6}, + [4550] = {.lex_state = 56, .external_lex_state = 6}, + [4551] = {.lex_state = 56, .external_lex_state = 6}, + [4552] = {.lex_state = 56, .external_lex_state = 6}, + [4553] = {.lex_state = 56, .external_lex_state = 6}, + [4554] = {.lex_state = 54, .external_lex_state = 5}, + [4555] = {.lex_state = 54, .external_lex_state = 5}, + [4556] = {.lex_state = 54, .external_lex_state = 5}, + [4557] = {.lex_state = 54, .external_lex_state = 5}, + [4558] = {.lex_state = 54, .external_lex_state = 5}, + [4559] = {.lex_state = 54, .external_lex_state = 5}, + [4560] = {.lex_state = 54, .external_lex_state = 5}, + [4561] = {.lex_state = 54, .external_lex_state = 5}, + [4562] = {.lex_state = 56, .external_lex_state = 6}, + [4563] = {.lex_state = 56, .external_lex_state = 6}, + [4564] = {.lex_state = 56, .external_lex_state = 6}, + [4565] = {.lex_state = 56, .external_lex_state = 5}, + [4566] = {.lex_state = 56, .external_lex_state = 6}, + [4567] = {.lex_state = 56, .external_lex_state = 5}, + [4568] = {.lex_state = 56, .external_lex_state = 6}, + [4569] = {.lex_state = 56, .external_lex_state = 5}, + [4570] = {.lex_state = 54, .external_lex_state = 5}, + [4571] = {.lex_state = 54, .external_lex_state = 5}, + [4572] = {.lex_state = 54, .external_lex_state = 5}, + [4573] = {.lex_state = 56, .external_lex_state = 6}, + [4574] = {.lex_state = 54, .external_lex_state = 5}, + [4575] = {.lex_state = 56, .external_lex_state = 6}, + [4576] = {.lex_state = 56, .external_lex_state = 6}, + [4577] = {.lex_state = 56, .external_lex_state = 6}, + [4578] = {.lex_state = 56, .external_lex_state = 6}, + [4579] = {.lex_state = 56, .external_lex_state = 6}, + [4580] = {.lex_state = 56, .external_lex_state = 5}, + [4581] = {.lex_state = 54, .external_lex_state = 5}, + [4582] = {.lex_state = 54, .external_lex_state = 5}, + [4583] = {.lex_state = 54, .external_lex_state = 5}, + [4584] = {.lex_state = 56, .external_lex_state = 6}, + [4585] = {.lex_state = 56, .external_lex_state = 6}, + [4586] = {.lex_state = 54, .external_lex_state = 5}, + [4587] = {.lex_state = 56, .external_lex_state = 6}, + [4588] = {.lex_state = 54, .external_lex_state = 5}, + [4589] = {.lex_state = 56, .external_lex_state = 6}, + [4590] = {.lex_state = 56, .external_lex_state = 6}, + [4591] = {.lex_state = 56, .external_lex_state = 6}, + [4592] = {.lex_state = 56, .external_lex_state = 6}, + [4593] = {.lex_state = 56, .external_lex_state = 6}, + [4594] = {.lex_state = 54, .external_lex_state = 5}, + [4595] = {.lex_state = 54, .external_lex_state = 5}, + [4596] = {.lex_state = 54, .external_lex_state = 5}, + [4597] = {.lex_state = 54, .external_lex_state = 5}, + [4598] = {.lex_state = 54, .external_lex_state = 5}, + [4599] = {.lex_state = 54, .external_lex_state = 5}, + [4600] = {.lex_state = 54, .external_lex_state = 5}, + [4601] = {.lex_state = 54, .external_lex_state = 5}, + [4602] = {.lex_state = 54, .external_lex_state = 5}, + [4603] = {.lex_state = 54, .external_lex_state = 5}, + [4604] = {.lex_state = 54, .external_lex_state = 5}, + [4605] = {.lex_state = 54, .external_lex_state = 5}, + [4606] = {.lex_state = 60, .external_lex_state = 2}, + [4607] = {.lex_state = 54, .external_lex_state = 5}, + [4608] = {.lex_state = 54, .external_lex_state = 5}, + [4609] = {.lex_state = 54, .external_lex_state = 5}, + [4610] = {.lex_state = 54, .external_lex_state = 5}, + [4611] = {.lex_state = 60, .external_lex_state = 2}, + [4612] = {.lex_state = 54, .external_lex_state = 5}, + [4613] = {.lex_state = 54, .external_lex_state = 5}, + [4614] = {.lex_state = 54, .external_lex_state = 5}, + [4615] = {.lex_state = 56, .external_lex_state = 6}, + [4616] = {.lex_state = 54, .external_lex_state = 5}, + [4617] = {.lex_state = 54, .external_lex_state = 5}, + [4618] = {.lex_state = 54, .external_lex_state = 5}, + [4619] = {.lex_state = 54, .external_lex_state = 5}, + [4620] = {.lex_state = 54, .external_lex_state = 5}, + [4621] = {.lex_state = 54, .external_lex_state = 5}, + [4622] = {.lex_state = 60, .external_lex_state = 2}, + [4623] = {.lex_state = 60, .external_lex_state = 2}, + [4624] = {.lex_state = 54, .external_lex_state = 5}, + [4625] = {.lex_state = 60, .external_lex_state = 2}, + [4626] = {.lex_state = 60, .external_lex_state = 2}, + [4627] = {.lex_state = 54, .external_lex_state = 5}, + [4628] = {.lex_state = 54, .external_lex_state = 5}, + [4629] = {.lex_state = 54, .external_lex_state = 5}, + [4630] = {.lex_state = 54, .external_lex_state = 5}, + [4631] = {.lex_state = 54, .external_lex_state = 5}, + [4632] = {.lex_state = 54, .external_lex_state = 5}, + [4633] = {.lex_state = 54, .external_lex_state = 5}, + [4634] = {.lex_state = 54, .external_lex_state = 5}, + [4635] = {.lex_state = 54, .external_lex_state = 5}, + [4636] = {.lex_state = 54, .external_lex_state = 5}, + [4637] = {.lex_state = 54, .external_lex_state = 5}, + [4638] = {.lex_state = 54, .external_lex_state = 5}, + [4639] = {.lex_state = 54, .external_lex_state = 5}, + [4640] = {.lex_state = 54, .external_lex_state = 5}, + [4641] = {.lex_state = 54, .external_lex_state = 5}, + [4642] = {.lex_state = 60, .external_lex_state = 2}, + [4643] = {.lex_state = 54, .external_lex_state = 5}, + [4644] = {.lex_state = 54, .external_lex_state = 5}, + [4645] = {.lex_state = 54, .external_lex_state = 5}, + [4646] = {.lex_state = 55, .external_lex_state = 2}, + [4647] = {.lex_state = 54, .external_lex_state = 5}, + [4648] = {.lex_state = 54, .external_lex_state = 5}, + [4649] = {.lex_state = 54, .external_lex_state = 5}, + [4650] = {.lex_state = 54, .external_lex_state = 5}, + [4651] = {.lex_state = 54, .external_lex_state = 5}, + [4652] = {.lex_state = 54, .external_lex_state = 5}, + [4653] = {.lex_state = 54, .external_lex_state = 5}, + [4654] = {.lex_state = 54, .external_lex_state = 5}, + [4655] = {.lex_state = 54, .external_lex_state = 5}, + [4656] = {.lex_state = 54, .external_lex_state = 5}, + [4657] = {.lex_state = 54, .external_lex_state = 5}, + [4658] = {.lex_state = 54, .external_lex_state = 5}, + [4659] = {.lex_state = 54, .external_lex_state = 5}, + [4660] = {.lex_state = 56, .external_lex_state = 6}, + [4661] = {.lex_state = 56, .external_lex_state = 6}, + [4662] = {.lex_state = 54, .external_lex_state = 5}, + [4663] = {.lex_state = 56, .external_lex_state = 6}, + [4664] = {.lex_state = 54, .external_lex_state = 5}, + [4665] = {.lex_state = 56, .external_lex_state = 6}, + [4666] = {.lex_state = 54, .external_lex_state = 5}, + [4667] = {.lex_state = 56, .external_lex_state = 6}, + [4668] = {.lex_state = 54, .external_lex_state = 5}, + [4669] = {.lex_state = 54, .external_lex_state = 5}, + [4670] = {.lex_state = 54, .external_lex_state = 5}, + [4671] = {.lex_state = 56, .external_lex_state = 6}, + [4672] = {.lex_state = 54, .external_lex_state = 5}, + [4673] = {.lex_state = 54, .external_lex_state = 5}, + [4674] = {.lex_state = 54, .external_lex_state = 5}, + [4675] = {.lex_state = 54, .external_lex_state = 5}, + [4676] = {.lex_state = 54, .external_lex_state = 5}, + [4677] = {.lex_state = 56, .external_lex_state = 6}, + [4678] = {.lex_state = 56, .external_lex_state = 6}, + [4679] = {.lex_state = 54, .external_lex_state = 5}, + [4680] = {.lex_state = 54, .external_lex_state = 5}, + [4681] = {.lex_state = 54, .external_lex_state = 5}, + [4682] = {.lex_state = 54, .external_lex_state = 5}, + [4683] = {.lex_state = 54, .external_lex_state = 5}, + [4684] = {.lex_state = 54, .external_lex_state = 5}, + [4685] = {.lex_state = 54, .external_lex_state = 5}, + [4686] = {.lex_state = 54, .external_lex_state = 5}, + [4687] = {.lex_state = 54, .external_lex_state = 5}, + [4688] = {.lex_state = 54, .external_lex_state = 5}, + [4689] = {.lex_state = 54, .external_lex_state = 5}, + [4690] = {.lex_state = 54, .external_lex_state = 5}, + [4691] = {.lex_state = 54, .external_lex_state = 5}, + [4692] = {.lex_state = 60, .external_lex_state = 2}, + [4693] = {.lex_state = 54, .external_lex_state = 5}, + [4694] = {.lex_state = 54, .external_lex_state = 5}, + [4695] = {.lex_state = 54, .external_lex_state = 5}, + [4696] = {.lex_state = 54, .external_lex_state = 6}, + [4697] = {.lex_state = 54, .external_lex_state = 5}, + [4698] = {.lex_state = 54, .external_lex_state = 5}, + [4699] = {.lex_state = 54, .external_lex_state = 5}, + [4700] = {.lex_state = 54, .external_lex_state = 5}, + [4701] = {.lex_state = 54, .external_lex_state = 5}, + [4702] = {.lex_state = 54, .external_lex_state = 5}, + [4703] = {.lex_state = 54, .external_lex_state = 5}, + [4704] = {.lex_state = 56, .external_lex_state = 6}, [4705] = {.lex_state = 54, .external_lex_state = 5}, [4706] = {.lex_state = 54, .external_lex_state = 5}, [4707] = {.lex_state = 54, .external_lex_state = 5}, @@ -27745,1208 +27507,1208 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4709] = {.lex_state = 54, .external_lex_state = 5}, [4710] = {.lex_state = 54, .external_lex_state = 5}, [4711] = {.lex_state = 54, .external_lex_state = 5}, - [4712] = {.lex_state = 54, .external_lex_state = 5}, - [4713] = {.lex_state = 56, .external_lex_state = 5}, - [4714] = {.lex_state = 54, .external_lex_state = 5}, - [4715] = {.lex_state = 54, .external_lex_state = 5}, - [4716] = {.lex_state = 61, .external_lex_state = 2}, - [4717] = {.lex_state = 61, .external_lex_state = 2}, - [4718] = {.lex_state = 54, .external_lex_state = 5}, - [4719] = {.lex_state = 54, .external_lex_state = 5}, - [4720] = {.lex_state = 61, .external_lex_state = 2}, - [4721] = {.lex_state = 54, .external_lex_state = 5}, - [4722] = {.lex_state = 54, .external_lex_state = 5}, - [4723] = {.lex_state = 54, .external_lex_state = 5}, - [4724] = {.lex_state = 61, .external_lex_state = 2}, - [4725] = {.lex_state = 54, .external_lex_state = 5}, - [4726] = {.lex_state = 54, .external_lex_state = 5}, - [4727] = {.lex_state = 54, .external_lex_state = 5}, - [4728] = {.lex_state = 54, .external_lex_state = 5}, - [4729] = {.lex_state = 54, .external_lex_state = 5}, - [4730] = {.lex_state = 54, .external_lex_state = 5}, - [4731] = {.lex_state = 54, .external_lex_state = 5}, + [4712] = {.lex_state = 56, .external_lex_state = 5}, + [4713] = {.lex_state = 62, .external_lex_state = 2}, + [4714] = {.lex_state = 78, .external_lex_state = 2}, + [4715] = {.lex_state = 82, .external_lex_state = 2}, + [4716] = {.lex_state = 82, .external_lex_state = 2}, + [4717] = {.lex_state = 82, .external_lex_state = 2}, + [4718] = {.lex_state = 82, .external_lex_state = 2}, + [4719] = {.lex_state = 60, .external_lex_state = 2}, + [4720] = {.lex_state = 82, .external_lex_state = 2}, + [4721] = {.lex_state = 82, .external_lex_state = 2}, + [4722] = {.lex_state = 56, .external_lex_state = 5}, + [4723] = {.lex_state = 82, .external_lex_state = 2}, + [4724] = {.lex_state = 82, .external_lex_state = 2}, + [4725] = {.lex_state = 82, .external_lex_state = 2}, + [4726] = {.lex_state = 82, .external_lex_state = 2}, + [4727] = {.lex_state = 82, .external_lex_state = 2}, + [4728] = {.lex_state = 82, .external_lex_state = 2}, + [4729] = {.lex_state = 82, .external_lex_state = 2}, + [4730] = {.lex_state = 82, .external_lex_state = 2}, + [4731] = {.lex_state = 380, .external_lex_state = 5}, [4732] = {.lex_state = 54, .external_lex_state = 5}, - [4733] = {.lex_state = 90, .external_lex_state = 2}, - [4734] = {.lex_state = 54, .external_lex_state = 2}, - [4735] = {.lex_state = 61, .external_lex_state = 2}, - [4736] = {.lex_state = 54, .external_lex_state = 5}, - [4737] = {.lex_state = 54, .external_lex_state = 5}, - [4738] = {.lex_state = 61, .external_lex_state = 2}, - [4739] = {.lex_state = 61, .external_lex_state = 2}, - [4740] = {.lex_state = 90, .external_lex_state = 2}, - [4741] = {.lex_state = 54, .external_lex_state = 5}, - [4742] = {.lex_state = 90, .external_lex_state = 2}, - [4743] = {.lex_state = 90, .external_lex_state = 2}, - [4744] = {.lex_state = 90, .external_lex_state = 2}, - [4745] = {.lex_state = 54, .external_lex_state = 5}, + [4733] = {.lex_state = 60, .external_lex_state = 2}, + [4734] = {.lex_state = 82, .external_lex_state = 2}, + [4735] = {.lex_state = 82, .external_lex_state = 2}, + [4736] = {.lex_state = 82, .external_lex_state = 2}, + [4737] = {.lex_state = 82, .external_lex_state = 2}, + [4738] = {.lex_state = 82, .external_lex_state = 2}, + [4739] = {.lex_state = 54, .external_lex_state = 6}, + [4740] = {.lex_state = 82, .external_lex_state = 2}, + [4741] = {.lex_state = 82, .external_lex_state = 2}, + [4742] = {.lex_state = 54, .external_lex_state = 6}, + [4743] = {.lex_state = 54, .external_lex_state = 6}, + [4744] = {.lex_state = 54, .external_lex_state = 2}, + [4745] = {.lex_state = 54, .external_lex_state = 6}, [4746] = {.lex_state = 54, .external_lex_state = 5}, - [4747] = {.lex_state = 54, .external_lex_state = 5}, - [4748] = {.lex_state = 56, .external_lex_state = 6}, - [4749] = {.lex_state = 54, .external_lex_state = 5}, - [4750] = {.lex_state = 54, .external_lex_state = 5}, - [4751] = {.lex_state = 54, .external_lex_state = 5}, - [4752] = {.lex_state = 56, .external_lex_state = 6}, - [4753] = {.lex_state = 54, .external_lex_state = 5}, - [4754] = {.lex_state = 54, .external_lex_state = 5}, - [4755] = {.lex_state = 54, .external_lex_state = 5}, - [4756] = {.lex_state = 54, .external_lex_state = 5}, - [4757] = {.lex_state = 54, .external_lex_state = 5}, - [4758] = {.lex_state = 54, .external_lex_state = 5}, - [4759] = {.lex_state = 54, .external_lex_state = 5}, - [4760] = {.lex_state = 56, .external_lex_state = 6}, - [4761] = {.lex_state = 56, .external_lex_state = 6}, - [4762] = {.lex_state = 56, .external_lex_state = 2}, - [4763] = {.lex_state = 54, .external_lex_state = 5}, - [4764] = {.lex_state = 56, .external_lex_state = 6}, - [4765] = {.lex_state = 56, .external_lex_state = 5}, - [4766] = {.lex_state = 56, .external_lex_state = 6}, - [4767] = {.lex_state = 56, .external_lex_state = 6}, - [4768] = {.lex_state = 56, .external_lex_state = 6}, - [4769] = {.lex_state = 56, .external_lex_state = 6}, - [4770] = {.lex_state = 54, .external_lex_state = 5}, - [4771] = {.lex_state = 56, .external_lex_state = 6}, - [4772] = {.lex_state = 56, .external_lex_state = 6}, - [4773] = {.lex_state = 56, .external_lex_state = 6}, - [4774] = {.lex_state = 56, .external_lex_state = 6}, - [4775] = {.lex_state = 56, .external_lex_state = 6}, - [4776] = {.lex_state = 56, .external_lex_state = 6}, - [4777] = {.lex_state = 56, .external_lex_state = 5}, - [4778] = {.lex_state = 56, .external_lex_state = 6}, - [4779] = {.lex_state = 54, .external_lex_state = 5}, - [4780] = {.lex_state = 56, .external_lex_state = 6}, - [4781] = {.lex_state = 56, .external_lex_state = 6}, - [4782] = {.lex_state = 56, .external_lex_state = 6}, - [4783] = {.lex_state = 56, .external_lex_state = 6}, - [4784] = {.lex_state = 56, .external_lex_state = 6}, - [4785] = {.lex_state = 56, .external_lex_state = 6}, - [4786] = {.lex_state = 56, .external_lex_state = 6}, - [4787] = {.lex_state = 56, .external_lex_state = 6}, - [4788] = {.lex_state = 56, .external_lex_state = 6}, - [4789] = {.lex_state = 56, .external_lex_state = 6}, - [4790] = {.lex_state = 54, .external_lex_state = 5}, - [4791] = {.lex_state = 54, .external_lex_state = 5}, - [4792] = {.lex_state = 54, .external_lex_state = 5}, - [4793] = {.lex_state = 54, .external_lex_state = 5}, - [4794] = {.lex_state = 54, .external_lex_state = 5}, - [4795] = {.lex_state = 56, .external_lex_state = 6}, - [4796] = {.lex_state = 56, .external_lex_state = 5}, - [4797] = {.lex_state = 56, .external_lex_state = 5}, - [4798] = {.lex_state = 54, .external_lex_state = 5}, - [4799] = {.lex_state = 56, .external_lex_state = 5}, - [4800] = {.lex_state = 56, .external_lex_state = 6}, - [4801] = {.lex_state = 56, .external_lex_state = 5}, - [4802] = {.lex_state = 56, .external_lex_state = 6}, - [4803] = {.lex_state = 56, .external_lex_state = 5}, - [4804] = {.lex_state = 56, .external_lex_state = 6}, - [4805] = {.lex_state = 56, .external_lex_state = 6}, - [4806] = {.lex_state = 56, .external_lex_state = 5}, - [4807] = {.lex_state = 54, .external_lex_state = 5}, - [4808] = {.lex_state = 54, .external_lex_state = 5}, - [4809] = {.lex_state = 54, .external_lex_state = 5}, - [4810] = {.lex_state = 56, .external_lex_state = 5}, - [4811] = {.lex_state = 56, .external_lex_state = 6}, - [4812] = {.lex_state = 56, .external_lex_state = 6}, - [4813] = {.lex_state = 56, .external_lex_state = 6}, - [4814] = {.lex_state = 56, .external_lex_state = 6}, - [4815] = {.lex_state = 54, .external_lex_state = 5}, - [4816] = {.lex_state = 56, .external_lex_state = 6}, - [4817] = {.lex_state = 54, .external_lex_state = 5}, - [4818] = {.lex_state = 54, .external_lex_state = 5}, - [4819] = {.lex_state = 54, .external_lex_state = 5}, + [4747] = {.lex_state = 380, .external_lex_state = 5}, + [4748] = {.lex_state = 60, .external_lex_state = 2}, + [4749] = {.lex_state = 380, .external_lex_state = 5}, + [4750] = {.lex_state = 54, .external_lex_state = 6}, + [4751] = {.lex_state = 60, .external_lex_state = 2}, + [4752] = {.lex_state = 54, .external_lex_state = 2}, + [4753] = {.lex_state = 54, .external_lex_state = 6}, + [4754] = {.lex_state = 56, .external_lex_state = 2}, + [4755] = {.lex_state = 56, .external_lex_state = 2}, + [4756] = {.lex_state = 54, .external_lex_state = 2}, + [4757] = {.lex_state = 54, .external_lex_state = 2}, + [4758] = {.lex_state = 56, .external_lex_state = 2}, + [4759] = {.lex_state = 56, .external_lex_state = 2}, + [4760] = {.lex_state = 54, .external_lex_state = 2}, + [4761] = {.lex_state = 54, .external_lex_state = 2}, + [4762] = {.lex_state = 54, .external_lex_state = 2}, + [4763] = {.lex_state = 54, .external_lex_state = 6}, + [4764] = {.lex_state = 56, .external_lex_state = 2}, + [4765] = {.lex_state = 54, .external_lex_state = 2}, + [4766] = {.lex_state = 54, .external_lex_state = 2}, + [4767] = {.lex_state = 54, .external_lex_state = 6}, + [4768] = {.lex_state = 54, .external_lex_state = 5}, + [4769] = {.lex_state = 54, .external_lex_state = 2}, + [4770] = {.lex_state = 54, .external_lex_state = 2}, + [4771] = {.lex_state = 54, .external_lex_state = 2}, + [4772] = {.lex_state = 54, .external_lex_state = 6}, + [4773] = {.lex_state = 54, .external_lex_state = 6}, + [4774] = {.lex_state = 54, .external_lex_state = 6}, + [4775] = {.lex_state = 54, .external_lex_state = 2}, + [4776] = {.lex_state = 55, .external_lex_state = 2}, + [4777] = {.lex_state = 54, .external_lex_state = 2}, + [4778] = {.lex_state = 54, .external_lex_state = 2}, + [4779] = {.lex_state = 54, .external_lex_state = 2}, + [4780] = {.lex_state = 54, .external_lex_state = 2}, + [4781] = {.lex_state = 54, .external_lex_state = 2}, + [4782] = {.lex_state = 54, .external_lex_state = 2}, + [4783] = {.lex_state = 56, .external_lex_state = 2}, + [4784] = {.lex_state = 54, .external_lex_state = 2}, + [4785] = {.lex_state = 54, .external_lex_state = 2}, + [4786] = {.lex_state = 54, .external_lex_state = 2}, + [4787] = {.lex_state = 54, .external_lex_state = 2}, + [4788] = {.lex_state = 56, .external_lex_state = 2}, + [4789] = {.lex_state = 54, .external_lex_state = 6}, + [4790] = {.lex_state = 54, .external_lex_state = 6}, + [4791] = {.lex_state = 54, .external_lex_state = 6}, + [4792] = {.lex_state = 55, .external_lex_state = 2}, + [4793] = {.lex_state = 54, .external_lex_state = 2}, + [4794] = {.lex_state = 54, .external_lex_state = 2}, + [4795] = {.lex_state = 55, .external_lex_state = 2}, + [4796] = {.lex_state = 54, .external_lex_state = 2}, + [4797] = {.lex_state = 54, .external_lex_state = 6}, + [4798] = {.lex_state = 54, .external_lex_state = 6}, + [4799] = {.lex_state = 54, .external_lex_state = 2}, + [4800] = {.lex_state = 380, .external_lex_state = 2}, + [4801] = {.lex_state = 54, .external_lex_state = 2}, + [4802] = {.lex_state = 54, .external_lex_state = 6}, + [4803] = {.lex_state = 54, .external_lex_state = 6}, + [4804] = {.lex_state = 54, .external_lex_state = 6}, + [4805] = {.lex_state = 56, .external_lex_state = 2}, + [4806] = {.lex_state = 60, .external_lex_state = 2}, + [4807] = {.lex_state = 54, .external_lex_state = 2}, + [4808] = {.lex_state = 54, .external_lex_state = 6}, + [4809] = {.lex_state = 54, .external_lex_state = 2}, + [4810] = {.lex_state = 54, .external_lex_state = 2}, + [4811] = {.lex_state = 54, .external_lex_state = 2}, + [4812] = {.lex_state = 54, .external_lex_state = 6}, + [4813] = {.lex_state = 54, .external_lex_state = 6}, + [4814] = {.lex_state = 54, .external_lex_state = 5}, + [4815] = {.lex_state = 56, .external_lex_state = 2}, + [4816] = {.lex_state = 54, .external_lex_state = 5}, + [4817] = {.lex_state = 54, .external_lex_state = 2}, + [4818] = {.lex_state = 54, .external_lex_state = 2}, + [4819] = {.lex_state = 54, .external_lex_state = 2}, [4820] = {.lex_state = 54, .external_lex_state = 5}, - [4821] = {.lex_state = 54, .external_lex_state = 5}, - [4822] = {.lex_state = 60, .external_lex_state = 2}, - [4823] = {.lex_state = 54, .external_lex_state = 5}, + [4821] = {.lex_state = 54, .external_lex_state = 2}, + [4822] = {.lex_state = 54, .external_lex_state = 5}, + [4823] = {.lex_state = 54, .external_lex_state = 2}, [4824] = {.lex_state = 54, .external_lex_state = 5}, [4825] = {.lex_state = 54, .external_lex_state = 5}, [4826] = {.lex_state = 54, .external_lex_state = 5}, [4827] = {.lex_state = 54, .external_lex_state = 5}, [4828] = {.lex_state = 54, .external_lex_state = 5}, - [4829] = {.lex_state = 54, .external_lex_state = 5}, - [4830] = {.lex_state = 54, .external_lex_state = 5}, - [4831] = {.lex_state = 60, .external_lex_state = 2}, + [4829] = {.lex_state = 54, .external_lex_state = 2}, + [4830] = {.lex_state = 54, .external_lex_state = 6}, + [4831] = {.lex_state = 54, .external_lex_state = 5}, [4832] = {.lex_state = 54, .external_lex_state = 5}, - [4833] = {.lex_state = 54, .external_lex_state = 5}, - [4834] = {.lex_state = 54, .external_lex_state = 5}, - [4835] = {.lex_state = 54, .external_lex_state = 5}, - [4836] = {.lex_state = 54, .external_lex_state = 5}, - [4837] = {.lex_state = 54, .external_lex_state = 5}, - [4838] = {.lex_state = 54, .external_lex_state = 5}, - [4839] = {.lex_state = 54, .external_lex_state = 5}, - [4840] = {.lex_state = 60, .external_lex_state = 2}, - [4841] = {.lex_state = 60, .external_lex_state = 2}, - [4842] = {.lex_state = 54, .external_lex_state = 5}, - [4843] = {.lex_state = 60, .external_lex_state = 2}, - [4844] = {.lex_state = 54, .external_lex_state = 5}, - [4845] = {.lex_state = 54, .external_lex_state = 5}, - [4846] = {.lex_state = 54, .external_lex_state = 5}, - [4847] = {.lex_state = 55, .external_lex_state = 2}, - [4848] = {.lex_state = 54, .external_lex_state = 5}, - [4849] = {.lex_state = 54, .external_lex_state = 5}, - [4850] = {.lex_state = 54, .external_lex_state = 5}, - [4851] = {.lex_state = 54, .external_lex_state = 5}, - [4852] = {.lex_state = 54, .external_lex_state = 5}, - [4853] = {.lex_state = 54, .external_lex_state = 5}, - [4854] = {.lex_state = 54, .external_lex_state = 5}, - [4855] = {.lex_state = 60, .external_lex_state = 2}, - [4856] = {.lex_state = 54, .external_lex_state = 5}, - [4857] = {.lex_state = 54, .external_lex_state = 5}, - [4858] = {.lex_state = 54, .external_lex_state = 5}, - [4859] = {.lex_state = 54, .external_lex_state = 5}, - [4860] = {.lex_state = 60, .external_lex_state = 2}, - [4861] = {.lex_state = 54, .external_lex_state = 5}, - [4862] = {.lex_state = 54, .external_lex_state = 5}, + [4833] = {.lex_state = 54, .external_lex_state = 2}, + [4834] = {.lex_state = 54, .external_lex_state = 6}, + [4835] = {.lex_state = 54, .external_lex_state = 6}, + [4836] = {.lex_state = 54, .external_lex_state = 6}, + [4837] = {.lex_state = 54, .external_lex_state = 6}, + [4838] = {.lex_state = 54, .external_lex_state = 6}, + [4839] = {.lex_state = 54, .external_lex_state = 6}, + [4840] = {.lex_state = 54, .external_lex_state = 5}, + [4841] = {.lex_state = 54, .external_lex_state = 6}, + [4842] = {.lex_state = 54, .external_lex_state = 6}, + [4843] = {.lex_state = 54, .external_lex_state = 5}, + [4844] = {.lex_state = 54, .external_lex_state = 6}, + [4845] = {.lex_state = 54, .external_lex_state = 6}, + [4846] = {.lex_state = 54, .external_lex_state = 6}, + [4847] = {.lex_state = 54, .external_lex_state = 2}, + [4848] = {.lex_state = 54, .external_lex_state = 2}, + [4849] = {.lex_state = 54, .external_lex_state = 2}, + [4850] = {.lex_state = 55, .external_lex_state = 2}, + [4851] = {.lex_state = 55, .external_lex_state = 2}, + [4852] = {.lex_state = 55, .external_lex_state = 2}, + [4853] = {.lex_state = 54, .external_lex_state = 2}, + [4854] = {.lex_state = 54, .external_lex_state = 2}, + [4855] = {.lex_state = 54, .external_lex_state = 5}, + [4856] = {.lex_state = 56, .external_lex_state = 2}, + [4857] = {.lex_state = 54, .external_lex_state = 2}, + [4858] = {.lex_state = 54, .external_lex_state = 6}, + [4859] = {.lex_state = 54, .external_lex_state = 2}, + [4860] = {.lex_state = 54, .external_lex_state = 2}, + [4861] = {.lex_state = 56, .external_lex_state = 2}, + [4862] = {.lex_state = 56, .external_lex_state = 2}, [4863] = {.lex_state = 54, .external_lex_state = 5}, [4864] = {.lex_state = 54, .external_lex_state = 5}, - [4865] = {.lex_state = 54, .external_lex_state = 5}, - [4866] = {.lex_state = 54, .external_lex_state = 5}, - [4867] = {.lex_state = 54, .external_lex_state = 5}, - [4868] = {.lex_state = 54, .external_lex_state = 5}, - [4869] = {.lex_state = 54, .external_lex_state = 5}, - [4870] = {.lex_state = 54, .external_lex_state = 5}, - [4871] = {.lex_state = 54, .external_lex_state = 5}, - [4872] = {.lex_state = 56, .external_lex_state = 6}, - [4873] = {.lex_state = 54, .external_lex_state = 5}, - [4874] = {.lex_state = 54, .external_lex_state = 5}, - [4875] = {.lex_state = 56, .external_lex_state = 6}, - [4876] = {.lex_state = 54, .external_lex_state = 5}, - [4877] = {.lex_state = 54, .external_lex_state = 5}, - [4878] = {.lex_state = 56, .external_lex_state = 6}, - [4879] = {.lex_state = 54, .external_lex_state = 5}, - [4880] = {.lex_state = 54, .external_lex_state = 5}, - [4881] = {.lex_state = 54, .external_lex_state = 6}, - [4882] = {.lex_state = 54, .external_lex_state = 5}, - [4883] = {.lex_state = 56, .external_lex_state = 6}, - [4884] = {.lex_state = 60, .external_lex_state = 2}, - [4885] = {.lex_state = 54, .external_lex_state = 5}, - [4886] = {.lex_state = 56, .external_lex_state = 6}, - [4887] = {.lex_state = 54, .external_lex_state = 5}, - [4888] = {.lex_state = 54, .external_lex_state = 5}, - [4889] = {.lex_state = 56, .external_lex_state = 6}, + [4865] = {.lex_state = 380, .external_lex_state = 6}, + [4866] = {.lex_state = 56, .external_lex_state = 5}, + [4867] = {.lex_state = 380, .external_lex_state = 6}, + [4868] = {.lex_state = 54, .external_lex_state = 6}, + [4869] = {.lex_state = 54, .external_lex_state = 2}, + [4870] = {.lex_state = 54, .external_lex_state = 6}, + [4871] = {.lex_state = 380, .external_lex_state = 2}, + [4872] = {.lex_state = 54, .external_lex_state = 6}, + [4873] = {.lex_state = 54, .external_lex_state = 6}, + [4874] = {.lex_state = 54, .external_lex_state = 2}, + [4875] = {.lex_state = 54, .external_lex_state = 6}, + [4876] = {.lex_state = 54, .external_lex_state = 2}, + [4877] = {.lex_state = 54, .external_lex_state = 2}, + [4878] = {.lex_state = 54, .external_lex_state = 6}, + [4879] = {.lex_state = 54, .external_lex_state = 2}, + [4880] = {.lex_state = 56, .external_lex_state = 2}, + [4881] = {.lex_state = 54, .external_lex_state = 5}, + [4882] = {.lex_state = 54, .external_lex_state = 6}, + [4883] = {.lex_state = 54, .external_lex_state = 6}, + [4884] = {.lex_state = 54, .external_lex_state = 6}, + [4885] = {.lex_state = 54, .external_lex_state = 6}, + [4886] = {.lex_state = 54, .external_lex_state = 6}, + [4887] = {.lex_state = 54, .external_lex_state = 6}, + [4888] = {.lex_state = 54, .external_lex_state = 2}, + [4889] = {.lex_state = 54, .external_lex_state = 6}, [4890] = {.lex_state = 54, .external_lex_state = 5}, - [4891] = {.lex_state = 54, .external_lex_state = 5}, + [4891] = {.lex_state = 54, .external_lex_state = 6}, [4892] = {.lex_state = 54, .external_lex_state = 5}, - [4893] = {.lex_state = 56, .external_lex_state = 6}, - [4894] = {.lex_state = 54, .external_lex_state = 5}, + [4893] = {.lex_state = 54, .external_lex_state = 5}, + [4894] = {.lex_state = 54, .external_lex_state = 6}, [4895] = {.lex_state = 54, .external_lex_state = 5}, - [4896] = {.lex_state = 54, .external_lex_state = 5}, - [4897] = {.lex_state = 56, .external_lex_state = 6}, - [4898] = {.lex_state = 56, .external_lex_state = 6}, + [4896] = {.lex_state = 54, .external_lex_state = 2}, + [4897] = {.lex_state = 54, .external_lex_state = 6}, + [4898] = {.lex_state = 54, .external_lex_state = 6}, [4899] = {.lex_state = 54, .external_lex_state = 5}, [4900] = {.lex_state = 54, .external_lex_state = 5}, [4901] = {.lex_state = 54, .external_lex_state = 5}, [4902] = {.lex_state = 54, .external_lex_state = 5}, [4903] = {.lex_state = 54, .external_lex_state = 5}, - [4904] = {.lex_state = 54, .external_lex_state = 5}, - [4905] = {.lex_state = 54, .external_lex_state = 5}, - [4906] = {.lex_state = 54, .external_lex_state = 5}, - [4907] = {.lex_state = 54, .external_lex_state = 5}, + [4904] = {.lex_state = 54, .external_lex_state = 2}, + [4905] = {.lex_state = 54, .external_lex_state = 6}, + [4906] = {.lex_state = 54, .external_lex_state = 6}, + [4907] = {.lex_state = 380, .external_lex_state = 5}, [4908] = {.lex_state = 54, .external_lex_state = 5}, - [4909] = {.lex_state = 54, .external_lex_state = 5}, + [4909] = {.lex_state = 380, .external_lex_state = 5}, [4910] = {.lex_state = 54, .external_lex_state = 5}, [4911] = {.lex_state = 54, .external_lex_state = 5}, [4912] = {.lex_state = 54, .external_lex_state = 5}, [4913] = {.lex_state = 54, .external_lex_state = 5}, - [4914] = {.lex_state = 54, .external_lex_state = 5}, + [4914] = {.lex_state = 380, .external_lex_state = 5}, [4915] = {.lex_state = 54, .external_lex_state = 5}, - [4916] = {.lex_state = 54, .external_lex_state = 5}, + [4916] = {.lex_state = 56, .external_lex_state = 2}, [4917] = {.lex_state = 54, .external_lex_state = 5}, - [4918] = {.lex_state = 54, .external_lex_state = 5}, - [4919] = {.lex_state = 54, .external_lex_state = 5}, - [4920] = {.lex_state = 54, .external_lex_state = 5}, - [4921] = {.lex_state = 54, .external_lex_state = 5}, - [4922] = {.lex_state = 54, .external_lex_state = 5}, - [4923] = {.lex_state = 54, .external_lex_state = 5}, - [4924] = {.lex_state = 54, .external_lex_state = 5}, - [4925] = {.lex_state = 54, .external_lex_state = 5}, - [4926] = {.lex_state = 54, .external_lex_state = 5}, + [4918] = {.lex_state = 380, .external_lex_state = 5}, + [4919] = {.lex_state = 380, .external_lex_state = 5}, + [4920] = {.lex_state = 380, .external_lex_state = 5}, + [4921] = {.lex_state = 54, .external_lex_state = 6}, + [4922] = {.lex_state = 54, .external_lex_state = 6}, + [4923] = {.lex_state = 54, .external_lex_state = 6}, + [4924] = {.lex_state = 54, .external_lex_state = 6}, + [4925] = {.lex_state = 54, .external_lex_state = 6}, + [4926] = {.lex_state = 54, .external_lex_state = 6}, [4927] = {.lex_state = 54, .external_lex_state = 5}, - [4928] = {.lex_state = 54, .external_lex_state = 5}, + [4928] = {.lex_state = 54, .external_lex_state = 6}, [4929] = {.lex_state = 54, .external_lex_state = 5}, - [4930] = {.lex_state = 54, .external_lex_state = 5}, - [4931] = {.lex_state = 54, .external_lex_state = 5}, - [4932] = {.lex_state = 54, .external_lex_state = 5}, - [4933] = {.lex_state = 82, .external_lex_state = 2}, - [4934] = {.lex_state = 54, .external_lex_state = 5}, - [4935] = {.lex_state = 82, .external_lex_state = 2}, - [4936] = {.lex_state = 60, .external_lex_state = 2}, + [4930] = {.lex_state = 56, .external_lex_state = 2}, + [4931] = {.lex_state = 56, .external_lex_state = 2}, + [4932] = {.lex_state = 54, .external_lex_state = 6}, + [4933] = {.lex_state = 56, .external_lex_state = 2}, + [4934] = {.lex_state = 56, .external_lex_state = 2}, + [4935] = {.lex_state = 54, .external_lex_state = 6}, + [4936] = {.lex_state = 54, .external_lex_state = 5}, [4937] = {.lex_state = 54, .external_lex_state = 6}, - [4938] = {.lex_state = 54, .external_lex_state = 6}, + [4938] = {.lex_state = 56, .external_lex_state = 2}, [4939] = {.lex_state = 54, .external_lex_state = 6}, - [4940] = {.lex_state = 82, .external_lex_state = 2}, - [4941] = {.lex_state = 82, .external_lex_state = 2}, - [4942] = {.lex_state = 380, .external_lex_state = 5}, - [4943] = {.lex_state = 82, .external_lex_state = 2}, - [4944] = {.lex_state = 82, .external_lex_state = 2}, - [4945] = {.lex_state = 82, .external_lex_state = 2}, - [4946] = {.lex_state = 54, .external_lex_state = 6}, - [4947] = {.lex_state = 82, .external_lex_state = 2}, - [4948] = {.lex_state = 78, .external_lex_state = 2}, - [4949] = {.lex_state = 82, .external_lex_state = 2}, - [4950] = {.lex_state = 60, .external_lex_state = 2}, - [4951] = {.lex_state = 82, .external_lex_state = 2}, - [4952] = {.lex_state = 82, .external_lex_state = 2}, - [4953] = {.lex_state = 82, .external_lex_state = 2}, - [4954] = {.lex_state = 82, .external_lex_state = 2}, - [4955] = {.lex_state = 56, .external_lex_state = 5}, - [4956] = {.lex_state = 82, .external_lex_state = 2}, - [4957] = {.lex_state = 56, .external_lex_state = 5}, - [4958] = {.lex_state = 82, .external_lex_state = 2}, - [4959] = {.lex_state = 54, .external_lex_state = 6}, - [4960] = {.lex_state = 54, .external_lex_state = 2}, - [4961] = {.lex_state = 82, .external_lex_state = 2}, - [4962] = {.lex_state = 82, .external_lex_state = 2}, - [4963] = {.lex_state = 82, .external_lex_state = 2}, - [4964] = {.lex_state = 60, .external_lex_state = 2}, - [4965] = {.lex_state = 82, .external_lex_state = 2}, - [4966] = {.lex_state = 54, .external_lex_state = 5}, + [4940] = {.lex_state = 54, .external_lex_state = 2}, + [4941] = {.lex_state = 56, .external_lex_state = 5}, + [4942] = {.lex_state = 54, .external_lex_state = 5}, + [4943] = {.lex_state = 54, .external_lex_state = 5}, + [4944] = {.lex_state = 54, .external_lex_state = 2}, + [4945] = {.lex_state = 54, .external_lex_state = 2}, + [4946] = {.lex_state = 60, .external_lex_state = 2}, + [4947] = {.lex_state = 54, .external_lex_state = 5}, + [4948] = {.lex_state = 54, .external_lex_state = 2}, + [4949] = {.lex_state = 54, .external_lex_state = 2}, + [4950] = {.lex_state = 54, .external_lex_state = 2}, + [4951] = {.lex_state = 54, .external_lex_state = 6}, + [4952] = {.lex_state = 54, .external_lex_state = 6}, + [4953] = {.lex_state = 54, .external_lex_state = 2}, + [4954] = {.lex_state = 54, .external_lex_state = 5}, + [4955] = {.lex_state = 54, .external_lex_state = 5}, + [4956] = {.lex_state = 54, .external_lex_state = 5}, + [4957] = {.lex_state = 54, .external_lex_state = 5}, + [4958] = {.lex_state = 71, .external_lex_state = 2}, + [4959] = {.lex_state = 54, .external_lex_state = 5}, + [4960] = {.lex_state = 88, .external_lex_state = 2}, + [4961] = {.lex_state = 88, .external_lex_state = 2}, + [4962] = {.lex_state = 71, .external_lex_state = 2}, + [4963] = {.lex_state = 88, .external_lex_state = 2}, + [4964] = {.lex_state = 71, .external_lex_state = 2}, + [4965] = {.lex_state = 88, .external_lex_state = 2}, + [4966] = {.lex_state = 71, .external_lex_state = 2}, [4967] = {.lex_state = 380, .external_lex_state = 5}, - [4968] = {.lex_state = 62, .external_lex_state = 2}, - [4969] = {.lex_state = 82, .external_lex_state = 2}, - [4970] = {.lex_state = 380, .external_lex_state = 5}, - [4971] = {.lex_state = 82, .external_lex_state = 2}, - [4972] = {.lex_state = 54, .external_lex_state = 6}, - [4973] = {.lex_state = 54, .external_lex_state = 5}, - [4974] = {.lex_state = 56, .external_lex_state = 2}, - [4975] = {.lex_state = 54, .external_lex_state = 5}, - [4976] = {.lex_state = 54, .external_lex_state = 6}, - [4977] = {.lex_state = 54, .external_lex_state = 5}, - [4978] = {.lex_state = 54, .external_lex_state = 2}, - [4979] = {.lex_state = 54, .external_lex_state = 2}, - [4980] = {.lex_state = 54, .external_lex_state = 2}, - [4981] = {.lex_state = 54, .external_lex_state = 2}, - [4982] = {.lex_state = 54, .external_lex_state = 6}, - [4983] = {.lex_state = 54, .external_lex_state = 5}, + [4968] = {.lex_state = 88, .external_lex_state = 2}, + [4969] = {.lex_state = 380, .external_lex_state = 7}, + [4970] = {.lex_state = 71, .external_lex_state = 2}, + [4971] = {.lex_state = 54, .external_lex_state = 5}, + [4972] = {.lex_state = 54, .external_lex_state = 5}, + [4973] = {.lex_state = 380, .external_lex_state = 7}, + [4974] = {.lex_state = 71, .external_lex_state = 2}, + [4975] = {.lex_state = 88, .external_lex_state = 2}, + [4976] = {.lex_state = 380, .external_lex_state = 5}, + [4977] = {.lex_state = 380, .external_lex_state = 5}, + [4978] = {.lex_state = 60, .external_lex_state = 2}, + [4979] = {.lex_state = 380, .external_lex_state = 6}, + [4980] = {.lex_state = 56, .external_lex_state = 2}, + [4981] = {.lex_state = 56, .external_lex_state = 2}, + [4982] = {.lex_state = 380, .external_lex_state = 7}, + [4983] = {.lex_state = 380, .external_lex_state = 5}, [4984] = {.lex_state = 54, .external_lex_state = 6}, - [4985] = {.lex_state = 54, .external_lex_state = 6}, - [4986] = {.lex_state = 54, .external_lex_state = 5}, - [4987] = {.lex_state = 56, .external_lex_state = 5}, - [4988] = {.lex_state = 54, .external_lex_state = 5}, - [4989] = {.lex_state = 54, .external_lex_state = 2}, - [4990] = {.lex_state = 56, .external_lex_state = 5}, - [4991] = {.lex_state = 54, .external_lex_state = 6}, - [4992] = {.lex_state = 54, .external_lex_state = 5}, - [4993] = {.lex_state = 54, .external_lex_state = 2}, - [4994] = {.lex_state = 54, .external_lex_state = 5}, - [4995] = {.lex_state = 54, .external_lex_state = 2}, - [4996] = {.lex_state = 56, .external_lex_state = 2}, - [4997] = {.lex_state = 54, .external_lex_state = 2}, - [4998] = {.lex_state = 60, .external_lex_state = 2}, - [4999] = {.lex_state = 56, .external_lex_state = 2}, - [5000] = {.lex_state = 54, .external_lex_state = 2}, - [5001] = {.lex_state = 56, .external_lex_state = 2}, - [5002] = {.lex_state = 54, .external_lex_state = 2}, - [5003] = {.lex_state = 54, .external_lex_state = 2}, - [5004] = {.lex_state = 56, .external_lex_state = 2}, - [5005] = {.lex_state = 54, .external_lex_state = 6}, - [5006] = {.lex_state = 380, .external_lex_state = 6}, - [5007] = {.lex_state = 54, .external_lex_state = 2}, - [5008] = {.lex_state = 54, .external_lex_state = 6}, - [5009] = {.lex_state = 54, .external_lex_state = 2}, - [5010] = {.lex_state = 54, .external_lex_state = 6}, - [5011] = {.lex_state = 54, .external_lex_state = 2}, - [5012] = {.lex_state = 54, .external_lex_state = 6}, - [5013] = {.lex_state = 54, .external_lex_state = 6}, - [5014] = {.lex_state = 54, .external_lex_state = 6}, - [5015] = {.lex_state = 54, .external_lex_state = 2}, - [5016] = {.lex_state = 54, .external_lex_state = 6}, - [5017] = {.lex_state = 54, .external_lex_state = 6}, - [5018] = {.lex_state = 54, .external_lex_state = 6}, - [5019] = {.lex_state = 54, .external_lex_state = 6}, - [5020] = {.lex_state = 54, .external_lex_state = 6}, - [5021] = {.lex_state = 54, .external_lex_state = 2}, - [5022] = {.lex_state = 380, .external_lex_state = 2}, - [5023] = {.lex_state = 54, .external_lex_state = 2}, - [5024] = {.lex_state = 55, .external_lex_state = 2}, - [5025] = {.lex_state = 54, .external_lex_state = 5}, - [5026] = {.lex_state = 56, .external_lex_state = 2}, - [5027] = {.lex_state = 54, .external_lex_state = 5}, - [5028] = {.lex_state = 56, .external_lex_state = 2}, - [5029] = {.lex_state = 54, .external_lex_state = 2}, - [5030] = {.lex_state = 55, .external_lex_state = 2}, - [5031] = {.lex_state = 54, .external_lex_state = 2}, - [5032] = {.lex_state = 54, .external_lex_state = 5}, - [5033] = {.lex_state = 54, .external_lex_state = 5}, - [5034] = {.lex_state = 56, .external_lex_state = 2}, - [5035] = {.lex_state = 56, .external_lex_state = 2}, - [5036] = {.lex_state = 54, .external_lex_state = 2}, - [5037] = {.lex_state = 54, .external_lex_state = 5}, - [5038] = {.lex_state = 54, .external_lex_state = 5}, - [5039] = {.lex_state = 54, .external_lex_state = 2}, - [5040] = {.lex_state = 54, .external_lex_state = 5}, - [5041] = {.lex_state = 54, .external_lex_state = 2}, - [5042] = {.lex_state = 54, .external_lex_state = 2}, - [5043] = {.lex_state = 54, .external_lex_state = 5}, - [5044] = {.lex_state = 54, .external_lex_state = 2}, - [5045] = {.lex_state = 54, .external_lex_state = 2}, - [5046] = {.lex_state = 54, .external_lex_state = 2}, - [5047] = {.lex_state = 54, .external_lex_state = 5}, - [5048] = {.lex_state = 54, .external_lex_state = 2}, - [5049] = {.lex_state = 380, .external_lex_state = 6}, - [5050] = {.lex_state = 54, .external_lex_state = 5}, - [5051] = {.lex_state = 54, .external_lex_state = 2}, - [5052] = {.lex_state = 54, .external_lex_state = 2}, - [5053] = {.lex_state = 380, .external_lex_state = 5}, - [5054] = {.lex_state = 380, .external_lex_state = 5}, - [5055] = {.lex_state = 54, .external_lex_state = 5}, - [5056] = {.lex_state = 55, .external_lex_state = 2}, + [4985] = {.lex_state = 380, .external_lex_state = 5}, + [4986] = {.lex_state = 88, .external_lex_state = 2}, + [4987] = {.lex_state = 380, .external_lex_state = 7}, + [4988] = {.lex_state = 71, .external_lex_state = 2}, + [4989] = {.lex_state = 71, .external_lex_state = 2}, + [4990] = {.lex_state = 71, .external_lex_state = 2}, + [4991] = {.lex_state = 88, .external_lex_state = 2}, + [4992] = {.lex_state = 380, .external_lex_state = 7}, + [4993] = {.lex_state = 380, .external_lex_state = 7}, + [4994] = {.lex_state = 380, .external_lex_state = 7}, + [4995] = {.lex_state = 54, .external_lex_state = 5}, + [4996] = {.lex_state = 380, .external_lex_state = 7}, + [4997] = {.lex_state = 380, .external_lex_state = 2}, + [4998] = {.lex_state = 57, .external_lex_state = 2}, + [4999] = {.lex_state = 380, .external_lex_state = 5}, + [5000] = {.lex_state = 380, .external_lex_state = 5}, + [5001] = {.lex_state = 380, .external_lex_state = 5}, + [5002] = {.lex_state = 71, .external_lex_state = 2}, + [5003] = {.lex_state = 57, .external_lex_state = 2}, + [5004] = {.lex_state = 380, .external_lex_state = 2}, + [5005] = {.lex_state = 380, .external_lex_state = 5}, + [5006] = {.lex_state = 54, .external_lex_state = 2}, + [5007] = {.lex_state = 380, .external_lex_state = 2}, + [5008] = {.lex_state = 91, .external_lex_state = 2}, + [5009] = {.lex_state = 380, .external_lex_state = 2}, + [5010] = {.lex_state = 380, .external_lex_state = 2}, + [5011] = {.lex_state = 380, .external_lex_state = 5}, + [5012] = {.lex_state = 380, .external_lex_state = 5}, + [5013] = {.lex_state = 380, .external_lex_state = 2}, + [5014] = {.lex_state = 380, .external_lex_state = 2}, + [5015] = {.lex_state = 380, .external_lex_state = 2}, + [5016] = {.lex_state = 380, .external_lex_state = 5}, + [5017] = {.lex_state = 380, .external_lex_state = 5}, + [5018] = {.lex_state = 380, .external_lex_state = 5}, + [5019] = {.lex_state = 380, .external_lex_state = 5}, + [5020] = {.lex_state = 380, .external_lex_state = 5}, + [5021] = {.lex_state = 380, .external_lex_state = 5}, + [5022] = {.lex_state = 380, .external_lex_state = 5}, + [5023] = {.lex_state = 57, .external_lex_state = 2}, + [5024] = {.lex_state = 380, .external_lex_state = 5}, + [5025] = {.lex_state = 380, .external_lex_state = 5}, + [5026] = {.lex_state = 380, .external_lex_state = 5}, + [5027] = {.lex_state = 380, .external_lex_state = 2}, + [5028] = {.lex_state = 57, .external_lex_state = 2}, + [5029] = {.lex_state = 380, .external_lex_state = 5}, + [5030] = {.lex_state = 380, .external_lex_state = 2}, + [5031] = {.lex_state = 380, .external_lex_state = 5}, + [5032] = {.lex_state = 71, .external_lex_state = 2}, + [5033] = {.lex_state = 380, .external_lex_state = 5}, + [5034] = {.lex_state = 380, .external_lex_state = 5}, + [5035] = {.lex_state = 380, .external_lex_state = 2}, + [5036] = {.lex_state = 57, .external_lex_state = 2}, + [5037] = {.lex_state = 91, .external_lex_state = 2}, + [5038] = {.lex_state = 380, .external_lex_state = 5}, + [5039] = {.lex_state = 57, .external_lex_state = 2}, + [5040] = {.lex_state = 380, .external_lex_state = 5}, + [5041] = {.lex_state = 380, .external_lex_state = 5}, + [5042] = {.lex_state = 380, .external_lex_state = 5}, + [5043] = {.lex_state = 380, .external_lex_state = 5}, + [5044] = {.lex_state = 380, .external_lex_state = 5}, + [5045] = {.lex_state = 380, .external_lex_state = 5}, + [5046] = {.lex_state = 57, .external_lex_state = 2}, + [5047] = {.lex_state = 380, .external_lex_state = 5}, + [5048] = {.lex_state = 380, .external_lex_state = 5}, + [5049] = {.lex_state = 57, .external_lex_state = 2}, + [5050] = {.lex_state = 57, .external_lex_state = 2}, + [5051] = {.lex_state = 71, .external_lex_state = 2}, + [5052] = {.lex_state = 380, .external_lex_state = 5}, + [5053] = {.lex_state = 380, .external_lex_state = 2}, + [5054] = {.lex_state = 380, .external_lex_state = 2}, + [5055] = {.lex_state = 380, .external_lex_state = 2}, + [5056] = {.lex_state = 380, .external_lex_state = 2}, [5057] = {.lex_state = 380, .external_lex_state = 5}, - [5058] = {.lex_state = 54, .external_lex_state = 2}, - [5059] = {.lex_state = 54, .external_lex_state = 2}, - [5060] = {.lex_state = 380, .external_lex_state = 5}, - [5061] = {.lex_state = 56, .external_lex_state = 2}, - [5062] = {.lex_state = 54, .external_lex_state = 6}, - [5063] = {.lex_state = 380, .external_lex_state = 5}, - [5064] = {.lex_state = 54, .external_lex_state = 5}, - [5065] = {.lex_state = 54, .external_lex_state = 2}, - [5066] = {.lex_state = 54, .external_lex_state = 5}, - [5067] = {.lex_state = 54, .external_lex_state = 6}, - [5068] = {.lex_state = 54, .external_lex_state = 6}, - [5069] = {.lex_state = 54, .external_lex_state = 6}, - [5070] = {.lex_state = 54, .external_lex_state = 6}, - [5071] = {.lex_state = 56, .external_lex_state = 2}, - [5072] = {.lex_state = 54, .external_lex_state = 2}, - [5073] = {.lex_state = 54, .external_lex_state = 6}, - [5074] = {.lex_state = 54, .external_lex_state = 6}, - [5075] = {.lex_state = 380, .external_lex_state = 5}, - [5076] = {.lex_state = 54, .external_lex_state = 5}, - [5077] = {.lex_state = 54, .external_lex_state = 6}, - [5078] = {.lex_state = 54, .external_lex_state = 6}, - [5079] = {.lex_state = 54, .external_lex_state = 2}, - [5080] = {.lex_state = 56, .external_lex_state = 2}, - [5081] = {.lex_state = 54, .external_lex_state = 2}, - [5082] = {.lex_state = 54, .external_lex_state = 2}, - [5083] = {.lex_state = 60, .external_lex_state = 2}, - [5084] = {.lex_state = 54, .external_lex_state = 5}, - [5085] = {.lex_state = 54, .external_lex_state = 5}, - [5086] = {.lex_state = 54, .external_lex_state = 5}, - [5087] = {.lex_state = 54, .external_lex_state = 5}, - [5088] = {.lex_state = 55, .external_lex_state = 2}, - [5089] = {.lex_state = 54, .external_lex_state = 5}, - [5090] = {.lex_state = 54, .external_lex_state = 2}, - [5091] = {.lex_state = 54, .external_lex_state = 5}, - [5092] = {.lex_state = 54, .external_lex_state = 2}, - [5093] = {.lex_state = 54, .external_lex_state = 6}, - [5094] = {.lex_state = 60, .external_lex_state = 2}, - [5095] = {.lex_state = 54, .external_lex_state = 2}, - [5096] = {.lex_state = 54, .external_lex_state = 2}, - [5097] = {.lex_state = 54, .external_lex_state = 2}, - [5098] = {.lex_state = 54, .external_lex_state = 2}, - [5099] = {.lex_state = 54, .external_lex_state = 6}, - [5100] = {.lex_state = 54, .external_lex_state = 6}, - [5101] = {.lex_state = 54, .external_lex_state = 5}, - [5102] = {.lex_state = 54, .external_lex_state = 2}, - [5103] = {.lex_state = 54, .external_lex_state = 5}, - [5104] = {.lex_state = 54, .external_lex_state = 5}, - [5105] = {.lex_state = 54, .external_lex_state = 6}, - [5106] = {.lex_state = 54, .external_lex_state = 6}, - [5107] = {.lex_state = 54, .external_lex_state = 2}, - [5108] = {.lex_state = 54, .external_lex_state = 2}, - [5109] = {.lex_state = 54, .external_lex_state = 6}, - [5110] = {.lex_state = 54, .external_lex_state = 6}, - [5111] = {.lex_state = 54, .external_lex_state = 5}, - [5112] = {.lex_state = 54, .external_lex_state = 6}, - [5113] = {.lex_state = 54, .external_lex_state = 5}, - [5114] = {.lex_state = 54, .external_lex_state = 6}, - [5115] = {.lex_state = 56, .external_lex_state = 2}, - [5116] = {.lex_state = 54, .external_lex_state = 2}, - [5117] = {.lex_state = 54, .external_lex_state = 6}, - [5118] = {.lex_state = 54, .external_lex_state = 6}, - [5119] = {.lex_state = 54, .external_lex_state = 2}, - [5120] = {.lex_state = 54, .external_lex_state = 2}, - [5121] = {.lex_state = 54, .external_lex_state = 2}, - [5122] = {.lex_state = 54, .external_lex_state = 6}, - [5123] = {.lex_state = 54, .external_lex_state = 2}, - [5124] = {.lex_state = 54, .external_lex_state = 6}, - [5125] = {.lex_state = 54, .external_lex_state = 6}, - [5126] = {.lex_state = 54, .external_lex_state = 2}, - [5127] = {.lex_state = 54, .external_lex_state = 6}, - [5128] = {.lex_state = 54, .external_lex_state = 2}, - [5129] = {.lex_state = 56, .external_lex_state = 2}, - [5130] = {.lex_state = 54, .external_lex_state = 5}, - [5131] = {.lex_state = 54, .external_lex_state = 5}, - [5132] = {.lex_state = 56, .external_lex_state = 2}, - [5133] = {.lex_state = 54, .external_lex_state = 6}, - [5134] = {.lex_state = 54, .external_lex_state = 6}, - [5135] = {.lex_state = 54, .external_lex_state = 2}, - [5136] = {.lex_state = 54, .external_lex_state = 2}, - [5137] = {.lex_state = 54, .external_lex_state = 2}, - [5138] = {.lex_state = 54, .external_lex_state = 6}, - [5139] = {.lex_state = 54, .external_lex_state = 2}, - [5140] = {.lex_state = 54, .external_lex_state = 6}, - [5141] = {.lex_state = 54, .external_lex_state = 6}, - [5142] = {.lex_state = 54, .external_lex_state = 6}, - [5143] = {.lex_state = 54, .external_lex_state = 5}, - [5144] = {.lex_state = 54, .external_lex_state = 6}, - [5145] = {.lex_state = 54, .external_lex_state = 5}, - [5146] = {.lex_state = 54, .external_lex_state = 6}, - [5147] = {.lex_state = 54, .external_lex_state = 6}, - [5148] = {.lex_state = 54, .external_lex_state = 5}, - [5149] = {.lex_state = 54, .external_lex_state = 2}, - [5150] = {.lex_state = 54, .external_lex_state = 6}, - [5151] = {.lex_state = 54, .external_lex_state = 6}, - [5152] = {.lex_state = 54, .external_lex_state = 5}, - [5153] = {.lex_state = 54, .external_lex_state = 2}, - [5154] = {.lex_state = 54, .external_lex_state = 5}, - [5155] = {.lex_state = 56, .external_lex_state = 2}, - [5156] = {.lex_state = 54, .external_lex_state = 6}, - [5157] = {.lex_state = 54, .external_lex_state = 5}, - [5158] = {.lex_state = 56, .external_lex_state = 2}, + [5058] = {.lex_state = 380, .external_lex_state = 5}, + [5059] = {.lex_state = 57, .external_lex_state = 2}, + [5060] = {.lex_state = 380, .external_lex_state = 2}, + [5061] = {.lex_state = 57, .external_lex_state = 2}, + [5062] = {.lex_state = 380, .external_lex_state = 2}, + [5063] = {.lex_state = 380, .external_lex_state = 2}, + [5064] = {.lex_state = 380, .external_lex_state = 5}, + [5065] = {.lex_state = 380, .external_lex_state = 2}, + [5066] = {.lex_state = 380, .external_lex_state = 2}, + [5067] = {.lex_state = 91, .external_lex_state = 2}, + [5068] = {.lex_state = 380, .external_lex_state = 2}, + [5069] = {.lex_state = 57, .external_lex_state = 2}, + [5070] = {.lex_state = 71, .external_lex_state = 2}, + [5071] = {.lex_state = 57, .external_lex_state = 2}, + [5072] = {.lex_state = 380, .external_lex_state = 2}, + [5073] = {.lex_state = 380, .external_lex_state = 2}, + [5074] = {.lex_state = 380, .external_lex_state = 2}, + [5075] = {.lex_state = 380, .external_lex_state = 2}, + [5076] = {.lex_state = 380, .external_lex_state = 2}, + [5077] = {.lex_state = 380, .external_lex_state = 2}, + [5078] = {.lex_state = 380, .external_lex_state = 2}, + [5079] = {.lex_state = 57, .external_lex_state = 2}, + [5080] = {.lex_state = 57, .external_lex_state = 2}, + [5081] = {.lex_state = 380, .external_lex_state = 2}, + [5082] = {.lex_state = 380, .external_lex_state = 2}, + [5083] = {.lex_state = 380, .external_lex_state = 5}, + [5084] = {.lex_state = 380, .external_lex_state = 2}, + [5085] = {.lex_state = 57, .external_lex_state = 2}, + [5086] = {.lex_state = 380, .external_lex_state = 5}, + [5087] = {.lex_state = 380, .external_lex_state = 5}, + [5088] = {.lex_state = 380, .external_lex_state = 2}, + [5089] = {.lex_state = 54, .external_lex_state = 2}, + [5090] = {.lex_state = 380, .external_lex_state = 2}, + [5091] = {.lex_state = 57, .external_lex_state = 2}, + [5092] = {.lex_state = 71, .external_lex_state = 2}, + [5093] = {.lex_state = 380, .external_lex_state = 2}, + [5094] = {.lex_state = 57, .external_lex_state = 2}, + [5095] = {.lex_state = 57, .external_lex_state = 2}, + [5096] = {.lex_state = 380, .external_lex_state = 2}, + [5097] = {.lex_state = 60, .external_lex_state = 2}, + [5098] = {.lex_state = 380, .external_lex_state = 5}, + [5099] = {.lex_state = 380, .external_lex_state = 2}, + [5100] = {.lex_state = 380, .external_lex_state = 2}, + [5101] = {.lex_state = 380, .external_lex_state = 2}, + [5102] = {.lex_state = 380, .external_lex_state = 6}, + [5103] = {.lex_state = 380, .external_lex_state = 2}, + [5104] = {.lex_state = 380, .external_lex_state = 2}, + [5105] = {.lex_state = 380, .external_lex_state = 2}, + [5106] = {.lex_state = 380, .external_lex_state = 5}, + [5107] = {.lex_state = 380, .external_lex_state = 5}, + [5108] = {.lex_state = 380, .external_lex_state = 6}, + [5109] = {.lex_state = 57, .external_lex_state = 2}, + [5110] = {.lex_state = 71, .external_lex_state = 2}, + [5111] = {.lex_state = 380, .external_lex_state = 2}, + [5112] = {.lex_state = 380, .external_lex_state = 2}, + [5113] = {.lex_state = 380, .external_lex_state = 2}, + [5114] = {.lex_state = 380, .external_lex_state = 5}, + [5115] = {.lex_state = 380, .external_lex_state = 2}, + [5116] = {.lex_state = 57, .external_lex_state = 2}, + [5117] = {.lex_state = 380, .external_lex_state = 5}, + [5118] = {.lex_state = 380, .external_lex_state = 2}, + [5119] = {.lex_state = 380, .external_lex_state = 6}, + [5120] = {.lex_state = 380, .external_lex_state = 6}, + [5121] = {.lex_state = 380, .external_lex_state = 2}, + [5122] = {.lex_state = 380, .external_lex_state = 6}, + [5123] = {.lex_state = 57, .external_lex_state = 2}, + [5124] = {.lex_state = 380, .external_lex_state = 2}, + [5125] = {.lex_state = 380, .external_lex_state = 6}, + [5126] = {.lex_state = 56, .external_lex_state = 5}, + [5127] = {.lex_state = 380, .external_lex_state = 2}, + [5128] = {.lex_state = 380, .external_lex_state = 5}, + [5129] = {.lex_state = 380, .external_lex_state = 5}, + [5130] = {.lex_state = 56, .external_lex_state = 5}, + [5131] = {.lex_state = 71, .external_lex_state = 2}, + [5132] = {.lex_state = 57, .external_lex_state = 2}, + [5133] = {.lex_state = 380, .external_lex_state = 5}, + [5134] = {.lex_state = 380, .external_lex_state = 5}, + [5135] = {.lex_state = 57, .external_lex_state = 2}, + [5136] = {.lex_state = 71, .external_lex_state = 2}, + [5137] = {.lex_state = 56, .external_lex_state = 5}, + [5138] = {.lex_state = 54, .external_lex_state = 2}, + [5139] = {.lex_state = 56, .external_lex_state = 5}, + [5140] = {.lex_state = 380, .external_lex_state = 2}, + [5141] = {.lex_state = 380, .external_lex_state = 5}, + [5142] = {.lex_state = 57, .external_lex_state = 2}, + [5143] = {.lex_state = 380, .external_lex_state = 5}, + [5144] = {.lex_state = 380, .external_lex_state = 5}, + [5145] = {.lex_state = 380, .external_lex_state = 5}, + [5146] = {.lex_state = 380, .external_lex_state = 2}, + [5147] = {.lex_state = 380, .external_lex_state = 5}, + [5148] = {.lex_state = 380, .external_lex_state = 5}, + [5149] = {.lex_state = 380, .external_lex_state = 2}, + [5150] = {.lex_state = 380, .external_lex_state = 5}, + [5151] = {.lex_state = 380, .external_lex_state = 5}, + [5152] = {.lex_state = 380, .external_lex_state = 2}, + [5153] = {.lex_state = 380, .external_lex_state = 5}, + [5154] = {.lex_state = 57, .external_lex_state = 2}, + [5155] = {.lex_state = 380, .external_lex_state = 5}, + [5156] = {.lex_state = 380, .external_lex_state = 2}, + [5157] = {.lex_state = 380, .external_lex_state = 5}, + [5158] = {.lex_state = 380, .external_lex_state = 5}, [5159] = {.lex_state = 380, .external_lex_state = 2}, - [5160] = {.lex_state = 56, .external_lex_state = 2}, - [5161] = {.lex_state = 56, .external_lex_state = 2}, - [5162] = {.lex_state = 54, .external_lex_state = 6}, - [5163] = {.lex_state = 54, .external_lex_state = 2}, - [5164] = {.lex_state = 55, .external_lex_state = 2}, - [5165] = {.lex_state = 54, .external_lex_state = 6}, - [5166] = {.lex_state = 54, .external_lex_state = 6}, - [5167] = {.lex_state = 54, .external_lex_state = 2}, - [5168] = {.lex_state = 54, .external_lex_state = 6}, - [5169] = {.lex_state = 54, .external_lex_state = 5}, - [5170] = {.lex_state = 54, .external_lex_state = 6}, - [5171] = {.lex_state = 55, .external_lex_state = 2}, + [5160] = {.lex_state = 57, .external_lex_state = 2}, + [5161] = {.lex_state = 380, .external_lex_state = 2}, + [5162] = {.lex_state = 380, .external_lex_state = 5}, + [5163] = {.lex_state = 380, .external_lex_state = 5}, + [5164] = {.lex_state = 91, .external_lex_state = 2}, + [5165] = {.lex_state = 380, .external_lex_state = 5}, + [5166] = {.lex_state = 380, .external_lex_state = 5}, + [5167] = {.lex_state = 380, .external_lex_state = 5}, + [5168] = {.lex_state = 380, .external_lex_state = 5}, + [5169] = {.lex_state = 380, .external_lex_state = 5}, + [5170] = {.lex_state = 380, .external_lex_state = 5}, + [5171] = {.lex_state = 380, .external_lex_state = 5}, [5172] = {.lex_state = 54, .external_lex_state = 2}, - [5173] = {.lex_state = 54, .external_lex_state = 5}, - [5174] = {.lex_state = 54, .external_lex_state = 6}, - [5175] = {.lex_state = 54, .external_lex_state = 6}, - [5176] = {.lex_state = 54, .external_lex_state = 5}, - [5177] = {.lex_state = 54, .external_lex_state = 6}, - [5178] = {.lex_state = 54, .external_lex_state = 6}, - [5179] = {.lex_state = 380, .external_lex_state = 7}, - [5180] = {.lex_state = 56, .external_lex_state = 2}, + [5173] = {.lex_state = 380, .external_lex_state = 5}, + [5174] = {.lex_state = 380, .external_lex_state = 5}, + [5175] = {.lex_state = 380, .external_lex_state = 2}, + [5176] = {.lex_state = 380, .external_lex_state = 5}, + [5177] = {.lex_state = 380, .external_lex_state = 5}, + [5178] = {.lex_state = 57, .external_lex_state = 2}, + [5179] = {.lex_state = 380, .external_lex_state = 5}, + [5180] = {.lex_state = 380, .external_lex_state = 5}, [5181] = {.lex_state = 380, .external_lex_state = 5}, - [5182] = {.lex_state = 380, .external_lex_state = 7}, - [5183] = {.lex_state = 380, .external_lex_state = 7}, - [5184] = {.lex_state = 380, .external_lex_state = 5}, - [5185] = {.lex_state = 380, .external_lex_state = 7}, - [5186] = {.lex_state = 88, .external_lex_state = 2}, - [5187] = {.lex_state = 88, .external_lex_state = 2}, - [5188] = {.lex_state = 88, .external_lex_state = 2}, - [5189] = {.lex_state = 71, .external_lex_state = 2}, - [5190] = {.lex_state = 56, .external_lex_state = 2}, - [5191] = {.lex_state = 71, .external_lex_state = 2}, - [5192] = {.lex_state = 54, .external_lex_state = 5}, - [5193] = {.lex_state = 60, .external_lex_state = 2}, - [5194] = {.lex_state = 71, .external_lex_state = 2}, - [5195] = {.lex_state = 71, .external_lex_state = 2}, - [5196] = {.lex_state = 88, .external_lex_state = 2}, - [5197] = {.lex_state = 71, .external_lex_state = 2}, - [5198] = {.lex_state = 71, .external_lex_state = 2}, - [5199] = {.lex_state = 71, .external_lex_state = 2}, - [5200] = {.lex_state = 88, .external_lex_state = 2}, - [5201] = {.lex_state = 88, .external_lex_state = 2}, - [5202] = {.lex_state = 71, .external_lex_state = 2}, - [5203] = {.lex_state = 71, .external_lex_state = 2}, - [5204] = {.lex_state = 54, .external_lex_state = 5}, - [5205] = {.lex_state = 380, .external_lex_state = 5}, - [5206] = {.lex_state = 54, .external_lex_state = 5}, + [5182] = {.lex_state = 380, .external_lex_state = 2}, + [5183] = {.lex_state = 380, .external_lex_state = 5}, + [5184] = {.lex_state = 57, .external_lex_state = 2}, + [5185] = {.lex_state = 57, .external_lex_state = 2}, + [5186] = {.lex_state = 57, .external_lex_state = 2}, + [5187] = {.lex_state = 380, .external_lex_state = 5}, + [5188] = {.lex_state = 71, .external_lex_state = 2}, + [5189] = {.lex_state = 380, .external_lex_state = 5}, + [5190] = {.lex_state = 57, .external_lex_state = 2}, + [5191] = {.lex_state = 380, .external_lex_state = 5}, + [5192] = {.lex_state = 54, .external_lex_state = 2}, + [5193] = {.lex_state = 380, .external_lex_state = 5}, + [5194] = {.lex_state = 380, .external_lex_state = 5}, + [5195] = {.lex_state = 57, .external_lex_state = 2}, + [5196] = {.lex_state = 380, .external_lex_state = 5}, + [5197] = {.lex_state = 57, .external_lex_state = 2}, + [5198] = {.lex_state = 54, .external_lex_state = 2}, + [5199] = {.lex_state = 380, .external_lex_state = 5}, + [5200] = {.lex_state = 380, .external_lex_state = 5}, + [5201] = {.lex_state = 380, .external_lex_state = 5}, + [5202] = {.lex_state = 57, .external_lex_state = 2}, + [5203] = {.lex_state = 380, .external_lex_state = 5}, + [5204] = {.lex_state = 57, .external_lex_state = 2}, + [5205] = {.lex_state = 57, .external_lex_state = 2}, + [5206] = {.lex_state = 380, .external_lex_state = 5}, [5207] = {.lex_state = 380, .external_lex_state = 5}, - [5208] = {.lex_state = 380, .external_lex_state = 7}, - [5209] = {.lex_state = 54, .external_lex_state = 5}, - [5210] = {.lex_state = 88, .external_lex_state = 2}, - [5211] = {.lex_state = 380, .external_lex_state = 7}, - [5212] = {.lex_state = 380, .external_lex_state = 6}, - [5213] = {.lex_state = 54, .external_lex_state = 6}, - [5214] = {.lex_state = 380, .external_lex_state = 7}, - [5215] = {.lex_state = 380, .external_lex_state = 5}, - [5216] = {.lex_state = 88, .external_lex_state = 2}, - [5217] = {.lex_state = 380, .external_lex_state = 7}, + [5208] = {.lex_state = 380, .external_lex_state = 5}, + [5209] = {.lex_state = 380, .external_lex_state = 5}, + [5210] = {.lex_state = 380, .external_lex_state = 5}, + [5211] = {.lex_state = 380, .external_lex_state = 5}, + [5212] = {.lex_state = 380, .external_lex_state = 5}, + [5213] = {.lex_state = 57, .external_lex_state = 2}, + [5214] = {.lex_state = 380, .external_lex_state = 5}, + [5215] = {.lex_state = 54, .external_lex_state = 2}, + [5216] = {.lex_state = 380, .external_lex_state = 5}, + [5217] = {.lex_state = 380, .external_lex_state = 5}, [5218] = {.lex_state = 380, .external_lex_state = 5}, [5219] = {.lex_state = 380, .external_lex_state = 5}, - [5220] = {.lex_state = 380, .external_lex_state = 5}, - [5221] = {.lex_state = 380, .external_lex_state = 5}, - [5222] = {.lex_state = 380, .external_lex_state = 5}, - [5223] = {.lex_state = 380, .external_lex_state = 5}, - [5224] = {.lex_state = 380, .external_lex_state = 5}, - [5225] = {.lex_state = 57, .external_lex_state = 2}, + [5220] = {.lex_state = 56, .external_lex_state = 5}, + [5221] = {.lex_state = 56, .external_lex_state = 5}, + [5222] = {.lex_state = 57, .external_lex_state = 2}, + [5223] = {.lex_state = 54, .external_lex_state = 2}, + [5224] = {.lex_state = 56, .external_lex_state = 5}, + [5225] = {.lex_state = 380, .external_lex_state = 5}, [5226] = {.lex_state = 380, .external_lex_state = 5}, - [5227] = {.lex_state = 57, .external_lex_state = 2}, - [5228] = {.lex_state = 71, .external_lex_state = 2}, + [5227] = {.lex_state = 380, .external_lex_state = 5}, + [5228] = {.lex_state = 380, .external_lex_state = 5}, [5229] = {.lex_state = 380, .external_lex_state = 5}, [5230] = {.lex_state = 380, .external_lex_state = 5}, [5231] = {.lex_state = 380, .external_lex_state = 5}, - [5232] = {.lex_state = 380, .external_lex_state = 5}, + [5232] = {.lex_state = 57, .external_lex_state = 2}, [5233] = {.lex_state = 380, .external_lex_state = 5}, - [5234] = {.lex_state = 380, .external_lex_state = 5}, - [5235] = {.lex_state = 380, .external_lex_state = 2}, - [5236] = {.lex_state = 57, .external_lex_state = 2}, + [5234] = {.lex_state = 380, .external_lex_state = 2}, + [5235] = {.lex_state = 57, .external_lex_state = 2}, + [5236] = {.lex_state = 380, .external_lex_state = 5}, [5237] = {.lex_state = 380, .external_lex_state = 5}, - [5238] = {.lex_state = 57, .external_lex_state = 2}, - [5239] = {.lex_state = 380, .external_lex_state = 2}, + [5238] = {.lex_state = 380, .external_lex_state = 5}, + [5239] = {.lex_state = 380, .external_lex_state = 5}, [5240] = {.lex_state = 380, .external_lex_state = 5}, [5241] = {.lex_state = 380, .external_lex_state = 5}, - [5242] = {.lex_state = 54, .external_lex_state = 2}, + [5242] = {.lex_state = 380, .external_lex_state = 5}, [5243] = {.lex_state = 380, .external_lex_state = 5}, - [5244] = {.lex_state = 57, .external_lex_state = 2}, + [5244] = {.lex_state = 380, .external_lex_state = 5}, [5245] = {.lex_state = 380, .external_lex_state = 5}, - [5246] = {.lex_state = 57, .external_lex_state = 2}, + [5246] = {.lex_state = 380, .external_lex_state = 5}, [5247] = {.lex_state = 380, .external_lex_state = 5}, - [5248] = {.lex_state = 91, .external_lex_state = 2}, - [5249] = {.lex_state = 57, .external_lex_state = 2}, + [5248] = {.lex_state = 380, .external_lex_state = 5}, + [5249] = {.lex_state = 380, .external_lex_state = 5}, [5250] = {.lex_state = 380, .external_lex_state = 5}, - [5251] = {.lex_state = 380, .external_lex_state = 2}, - [5252] = {.lex_state = 380, .external_lex_state = 5}, - [5253] = {.lex_state = 71, .external_lex_state = 2}, - [5254] = {.lex_state = 56, .external_lex_state = 5}, - [5255] = {.lex_state = 54, .external_lex_state = 2}, - [5256] = {.lex_state = 56, .external_lex_state = 5}, - [5257] = {.lex_state = 380, .external_lex_state = 5}, - [5258] = {.lex_state = 380, .external_lex_state = 2}, + [5251] = {.lex_state = 57, .external_lex_state = 2}, + [5252] = {.lex_state = 66, .external_lex_state = 2}, + [5253] = {.lex_state = 91, .external_lex_state = 2}, + [5254] = {.lex_state = 380, .external_lex_state = 5}, + [5255] = {.lex_state = 57, .external_lex_state = 2}, + [5256] = {.lex_state = 380, .external_lex_state = 5}, + [5257] = {.lex_state = 57, .external_lex_state = 2}, + [5258] = {.lex_state = 380, .external_lex_state = 5}, [5259] = {.lex_state = 380, .external_lex_state = 5}, - [5260] = {.lex_state = 54, .external_lex_state = 2}, - [5261] = {.lex_state = 380, .external_lex_state = 2}, - [5262] = {.lex_state = 380, .external_lex_state = 2}, - [5263] = {.lex_state = 57, .external_lex_state = 2}, - [5264] = {.lex_state = 57, .external_lex_state = 2}, - [5265] = {.lex_state = 380, .external_lex_state = 2}, - [5266] = {.lex_state = 380, .external_lex_state = 5}, - [5267] = {.lex_state = 380, .external_lex_state = 2}, - [5268] = {.lex_state = 380, .external_lex_state = 5}, - [5269] = {.lex_state = 380, .external_lex_state = 2}, - [5270] = {.lex_state = 380, .external_lex_state = 2}, - [5271] = {.lex_state = 380, .external_lex_state = 2}, - [5272] = {.lex_state = 380, .external_lex_state = 2}, - [5273] = {.lex_state = 380, .external_lex_state = 2}, - [5274] = {.lex_state = 380, .external_lex_state = 2}, - [5275] = {.lex_state = 380, .external_lex_state = 2}, - [5276] = {.lex_state = 380, .external_lex_state = 2}, + [5260] = {.lex_state = 380, .external_lex_state = 5}, + [5261] = {.lex_state = 380, .external_lex_state = 5}, + [5262] = {.lex_state = 380, .external_lex_state = 5}, + [5263] = {.lex_state = 380, .external_lex_state = 5}, + [5264] = {.lex_state = 380, .external_lex_state = 2}, + [5265] = {.lex_state = 57, .external_lex_state = 2}, + [5266] = {.lex_state = 54, .external_lex_state = 2}, + [5267] = {.lex_state = 54, .external_lex_state = 2}, + [5268] = {.lex_state = 56, .external_lex_state = 5}, + [5269] = {.lex_state = 57, .external_lex_state = 2}, + [5270] = {.lex_state = 54, .external_lex_state = 2}, + [5271] = {.lex_state = 380, .external_lex_state = 5}, + [5272] = {.lex_state = 56, .external_lex_state = 5}, + [5273] = {.lex_state = 54, .external_lex_state = 2}, + [5274] = {.lex_state = 380, .external_lex_state = 5}, + [5275] = {.lex_state = 380, .external_lex_state = 5}, + [5276] = {.lex_state = 380, .external_lex_state = 5}, [5277] = {.lex_state = 380, .external_lex_state = 5}, [5278] = {.lex_state = 380, .external_lex_state = 5}, - [5279] = {.lex_state = 380, .external_lex_state = 2}, + [5279] = {.lex_state = 380, .external_lex_state = 5}, [5280] = {.lex_state = 380, .external_lex_state = 5}, - [5281] = {.lex_state = 380, .external_lex_state = 5}, + [5281] = {.lex_state = 57, .external_lex_state = 2}, [5282] = {.lex_state = 380, .external_lex_state = 5}, - [5283] = {.lex_state = 380, .external_lex_state = 5}, + [5283] = {.lex_state = 54, .external_lex_state = 2}, [5284] = {.lex_state = 380, .external_lex_state = 5}, - [5285] = {.lex_state = 380, .external_lex_state = 2}, - [5286] = {.lex_state = 380, .external_lex_state = 2}, - [5287] = {.lex_state = 380, .external_lex_state = 2}, - [5288] = {.lex_state = 57, .external_lex_state = 2}, - [5289] = {.lex_state = 380, .external_lex_state = 2}, - [5290] = {.lex_state = 380, .external_lex_state = 2}, + [5285] = {.lex_state = 57, .external_lex_state = 2}, + [5286] = {.lex_state = 380, .external_lex_state = 5}, + [5287] = {.lex_state = 380, .external_lex_state = 5}, + [5288] = {.lex_state = 380, .external_lex_state = 5}, + [5289] = {.lex_state = 380, .external_lex_state = 5}, + [5290] = {.lex_state = 380, .external_lex_state = 5}, [5291] = {.lex_state = 57, .external_lex_state = 2}, [5292] = {.lex_state = 380, .external_lex_state = 5}, - [5293] = {.lex_state = 380, .external_lex_state = 5}, + [5293] = {.lex_state = 380, .external_lex_state = 2}, [5294] = {.lex_state = 57, .external_lex_state = 2}, - [5295] = {.lex_state = 57, .external_lex_state = 2}, - [5296] = {.lex_state = 380, .external_lex_state = 5}, - [5297] = {.lex_state = 380, .external_lex_state = 5}, - [5298] = {.lex_state = 380, .external_lex_state = 5}, - [5299] = {.lex_state = 380, .external_lex_state = 5}, - [5300] = {.lex_state = 380, .external_lex_state = 2}, - [5301] = {.lex_state = 54, .external_lex_state = 2}, - [5302] = {.lex_state = 54, .external_lex_state = 2}, + [5295] = {.lex_state = 380, .external_lex_state = 5}, + [5296] = {.lex_state = 57, .external_lex_state = 2}, + [5297] = {.lex_state = 57, .external_lex_state = 2}, + [5298] = {.lex_state = 57, .external_lex_state = 2}, + [5299] = {.lex_state = 57, .external_lex_state = 2}, + [5300] = {.lex_state = 57, .external_lex_state = 2}, + [5301] = {.lex_state = 57, .external_lex_state = 2}, + [5302] = {.lex_state = 380, .external_lex_state = 2}, [5303] = {.lex_state = 380, .external_lex_state = 5}, - [5304] = {.lex_state = 380, .external_lex_state = 5}, - [5305] = {.lex_state = 380, .external_lex_state = 5}, + [5304] = {.lex_state = 54, .external_lex_state = 2}, + [5305] = {.lex_state = 56, .external_lex_state = 2}, [5306] = {.lex_state = 380, .external_lex_state = 5}, - [5307] = {.lex_state = 380, .external_lex_state = 2}, - [5308] = {.lex_state = 380, .external_lex_state = 2}, - [5309] = {.lex_state = 57, .external_lex_state = 2}, + [5307] = {.lex_state = 57, .external_lex_state = 2}, + [5308] = {.lex_state = 54, .external_lex_state = 2}, + [5309] = {.lex_state = 380, .external_lex_state = 6}, [5310] = {.lex_state = 380, .external_lex_state = 2}, - [5311] = {.lex_state = 91, .external_lex_state = 2}, - [5312] = {.lex_state = 380, .external_lex_state = 5}, - [5313] = {.lex_state = 380, .external_lex_state = 2}, - [5314] = {.lex_state = 380, .external_lex_state = 5}, + [5311] = {.lex_state = 380, .external_lex_state = 5}, + [5312] = {.lex_state = 57, .external_lex_state = 2}, + [5313] = {.lex_state = 21, .external_lex_state = 5}, + [5314] = {.lex_state = 380, .external_lex_state = 6}, [5315] = {.lex_state = 380, .external_lex_state = 5}, - [5316] = {.lex_state = 66, .external_lex_state = 2}, - [5317] = {.lex_state = 380, .external_lex_state = 5}, - [5318] = {.lex_state = 380, .external_lex_state = 5}, + [5316] = {.lex_state = 380, .external_lex_state = 6}, + [5317] = {.lex_state = 57, .external_lex_state = 2}, + [5318] = {.lex_state = 54, .external_lex_state = 2}, [5319] = {.lex_state = 380, .external_lex_state = 5}, - [5320] = {.lex_state = 380, .external_lex_state = 5}, + [5320] = {.lex_state = 54, .external_lex_state = 2}, [5321] = {.lex_state = 57, .external_lex_state = 2}, - [5322] = {.lex_state = 57, .external_lex_state = 2}, - [5323] = {.lex_state = 380, .external_lex_state = 5}, - [5324] = {.lex_state = 380, .external_lex_state = 5}, - [5325] = {.lex_state = 380, .external_lex_state = 5}, - [5326] = {.lex_state = 71, .external_lex_state = 2}, - [5327] = {.lex_state = 380, .external_lex_state = 5}, - [5328] = {.lex_state = 380, .external_lex_state = 5}, - [5329] = {.lex_state = 380, .external_lex_state = 2}, - [5330] = {.lex_state = 380, .external_lex_state = 5}, - [5331] = {.lex_state = 380, .external_lex_state = 5}, + [5322] = {.lex_state = 380, .external_lex_state = 6}, + [5323] = {.lex_state = 54, .external_lex_state = 2}, + [5324] = {.lex_state = 380, .external_lex_state = 6}, + [5325] = {.lex_state = 380, .external_lex_state = 6}, + [5326] = {.lex_state = 54, .external_lex_state = 2}, + [5327] = {.lex_state = 380, .external_lex_state = 2}, + [5328] = {.lex_state = 380, .external_lex_state = 6}, + [5329] = {.lex_state = 54, .external_lex_state = 2}, + [5330] = {.lex_state = 380, .external_lex_state = 2}, + [5331] = {.lex_state = 380, .external_lex_state = 2}, [5332] = {.lex_state = 57, .external_lex_state = 2}, - [5333] = {.lex_state = 380, .external_lex_state = 5}, - [5334] = {.lex_state = 380, .external_lex_state = 5}, - [5335] = {.lex_state = 380, .external_lex_state = 5}, - [5336] = {.lex_state = 380, .external_lex_state = 5}, - [5337] = {.lex_state = 54, .external_lex_state = 2}, - [5338] = {.lex_state = 380, .external_lex_state = 5}, - [5339] = {.lex_state = 380, .external_lex_state = 5}, - [5340] = {.lex_state = 380, .external_lex_state = 5}, - [5341] = {.lex_state = 380, .external_lex_state = 5}, - [5342] = {.lex_state = 54, .external_lex_state = 2}, - [5343] = {.lex_state = 380, .external_lex_state = 2}, - [5344] = {.lex_state = 380, .external_lex_state = 5}, - [5345] = {.lex_state = 380, .external_lex_state = 5}, + [5333] = {.lex_state = 380, .external_lex_state = 6}, + [5334] = {.lex_state = 71, .external_lex_state = 2}, + [5335] = {.lex_state = 57, .external_lex_state = 2}, + [5336] = {.lex_state = 380, .external_lex_state = 2}, + [5337] = {.lex_state = 57, .external_lex_state = 2}, + [5338] = {.lex_state = 56, .external_lex_state = 2}, + [5339] = {.lex_state = 54, .external_lex_state = 2}, + [5340] = {.lex_state = 380, .external_lex_state = 2}, + [5341] = {.lex_state = 54, .external_lex_state = 2}, + [5342] = {.lex_state = 57, .external_lex_state = 2}, + [5343] = {.lex_state = 57, .external_lex_state = 2}, + [5344] = {.lex_state = 380, .external_lex_state = 6}, + [5345] = {.lex_state = 21, .external_lex_state = 5}, [5346] = {.lex_state = 57, .external_lex_state = 2}, - [5347] = {.lex_state = 380, .external_lex_state = 2}, - [5348] = {.lex_state = 380, .external_lex_state = 5}, - [5349] = {.lex_state = 380, .external_lex_state = 5}, - [5350] = {.lex_state = 380, .external_lex_state = 5}, - [5351] = {.lex_state = 380, .external_lex_state = 2}, - [5352] = {.lex_state = 71, .external_lex_state = 2}, - [5353] = {.lex_state = 380, .external_lex_state = 5}, - [5354] = {.lex_state = 380, .external_lex_state = 5}, + [5347] = {.lex_state = 54, .external_lex_state = 2}, + [5348] = {.lex_state = 57, .external_lex_state = 2}, + [5349] = {.lex_state = 380, .external_lex_state = 6}, + [5350] = {.lex_state = 57, .external_lex_state = 2}, + [5351] = {.lex_state = 380, .external_lex_state = 6}, + [5352] = {.lex_state = 380, .external_lex_state = 6}, + [5353] = {.lex_state = 57, .external_lex_state = 2}, + [5354] = {.lex_state = 57, .external_lex_state = 2}, [5355] = {.lex_state = 57, .external_lex_state = 2}, - [5356] = {.lex_state = 380, .external_lex_state = 2}, - [5357] = {.lex_state = 380, .external_lex_state = 5}, - [5358] = {.lex_state = 56, .external_lex_state = 5}, - [5359] = {.lex_state = 380, .external_lex_state = 2}, - [5360] = {.lex_state = 380, .external_lex_state = 5}, - [5361] = {.lex_state = 380, .external_lex_state = 5}, - [5362] = {.lex_state = 56, .external_lex_state = 5}, + [5356] = {.lex_state = 54, .external_lex_state = 2}, + [5357] = {.lex_state = 380, .external_lex_state = 2}, + [5358] = {.lex_state = 380, .external_lex_state = 5}, + [5359] = {.lex_state = 57, .external_lex_state = 2}, + [5360] = {.lex_state = 54, .external_lex_state = 2}, + [5361] = {.lex_state = 380, .external_lex_state = 2}, + [5362] = {.lex_state = 380, .external_lex_state = 6}, [5363] = {.lex_state = 380, .external_lex_state = 5}, - [5364] = {.lex_state = 380, .external_lex_state = 2}, - [5365] = {.lex_state = 380, .external_lex_state = 5}, - [5366] = {.lex_state = 380, .external_lex_state = 2}, - [5367] = {.lex_state = 380, .external_lex_state = 2}, - [5368] = {.lex_state = 380, .external_lex_state = 5}, - [5369] = {.lex_state = 380, .external_lex_state = 5}, - [5370] = {.lex_state = 380, .external_lex_state = 5}, - [5371] = {.lex_state = 380, .external_lex_state = 5}, + [5364] = {.lex_state = 380, .external_lex_state = 5}, + [5365] = {.lex_state = 380, .external_lex_state = 2}, + [5366] = {.lex_state = 57, .external_lex_state = 2}, + [5367] = {.lex_state = 380, .external_lex_state = 6}, + [5368] = {.lex_state = 54, .external_lex_state = 2}, + [5369] = {.lex_state = 54, .external_lex_state = 2}, + [5370] = {.lex_state = 57, .external_lex_state = 2}, + [5371] = {.lex_state = 54, .external_lex_state = 2}, [5372] = {.lex_state = 380, .external_lex_state = 5}, [5373] = {.lex_state = 57, .external_lex_state = 2}, - [5374] = {.lex_state = 380, .external_lex_state = 5}, + [5374] = {.lex_state = 380, .external_lex_state = 2}, [5375] = {.lex_state = 380, .external_lex_state = 2}, - [5376] = {.lex_state = 380, .external_lex_state = 5}, - [5377] = {.lex_state = 380, .external_lex_state = 5}, - [5378] = {.lex_state = 380, .external_lex_state = 5}, - [5379] = {.lex_state = 380, .external_lex_state = 5}, - [5380] = {.lex_state = 380, .external_lex_state = 2}, - [5381] = {.lex_state = 380, .external_lex_state = 5}, - [5382] = {.lex_state = 380, .external_lex_state = 5}, - [5383] = {.lex_state = 57, .external_lex_state = 2}, - [5384] = {.lex_state = 57, .external_lex_state = 2}, - [5385] = {.lex_state = 380, .external_lex_state = 5}, - [5386] = {.lex_state = 380, .external_lex_state = 5}, - [5387] = {.lex_state = 380, .external_lex_state = 5}, - [5388] = {.lex_state = 380, .external_lex_state = 5}, - [5389] = {.lex_state = 380, .external_lex_state = 2}, + [5376] = {.lex_state = 56, .external_lex_state = 2}, + [5377] = {.lex_state = 54, .external_lex_state = 2}, + [5378] = {.lex_state = 380, .external_lex_state = 7}, + [5379] = {.lex_state = 380, .external_lex_state = 7}, + [5380] = {.lex_state = 54, .external_lex_state = 2}, + [5381] = {.lex_state = 57, .external_lex_state = 2}, + [5382] = {.lex_state = 380, .external_lex_state = 2}, + [5383] = {.lex_state = 56, .external_lex_state = 2}, + [5384] = {.lex_state = 54, .external_lex_state = 2}, + [5385] = {.lex_state = 380, .external_lex_state = 2}, + [5386] = {.lex_state = 380, .external_lex_state = 6}, + [5387] = {.lex_state = 54, .external_lex_state = 2}, + [5388] = {.lex_state = 57, .external_lex_state = 2}, + [5389] = {.lex_state = 57, .external_lex_state = 2}, [5390] = {.lex_state = 57, .external_lex_state = 2}, - [5391] = {.lex_state = 57, .external_lex_state = 2}, + [5391] = {.lex_state = 380, .external_lex_state = 2}, [5392] = {.lex_state = 380, .external_lex_state = 5}, - [5393] = {.lex_state = 380, .external_lex_state = 5}, - [5394] = {.lex_state = 54, .external_lex_state = 2}, + [5393] = {.lex_state = 54, .external_lex_state = 2}, + [5394] = {.lex_state = 380, .external_lex_state = 2}, [5395] = {.lex_state = 380, .external_lex_state = 5}, [5396] = {.lex_state = 380, .external_lex_state = 5}, - [5397] = {.lex_state = 380, .external_lex_state = 2}, - [5398] = {.lex_state = 56, .external_lex_state = 5}, - [5399] = {.lex_state = 380, .external_lex_state = 2}, - [5400] = {.lex_state = 380, .external_lex_state = 5}, + [5397] = {.lex_state = 380, .external_lex_state = 5}, + [5398] = {.lex_state = 54, .external_lex_state = 2}, + [5399] = {.lex_state = 57, .external_lex_state = 2}, + [5400] = {.lex_state = 57, .external_lex_state = 2}, [5401] = {.lex_state = 380, .external_lex_state = 5}, - [5402] = {.lex_state = 91, .external_lex_state = 2}, + [5402] = {.lex_state = 57, .external_lex_state = 2}, [5403] = {.lex_state = 380, .external_lex_state = 5}, - [5404] = {.lex_state = 380, .external_lex_state = 5}, + [5404] = {.lex_state = 380, .external_lex_state = 6}, [5405] = {.lex_state = 54, .external_lex_state = 2}, - [5406] = {.lex_state = 54, .external_lex_state = 2}, - [5407] = {.lex_state = 56, .external_lex_state = 5}, - [5408] = {.lex_state = 57, .external_lex_state = 2}, - [5409] = {.lex_state = 57, .external_lex_state = 2}, - [5410] = {.lex_state = 380, .external_lex_state = 5}, - [5411] = {.lex_state = 380, .external_lex_state = 5}, - [5412] = {.lex_state = 57, .external_lex_state = 2}, - [5413] = {.lex_state = 71, .external_lex_state = 2}, - [5414] = {.lex_state = 380, .external_lex_state = 5}, - [5415] = {.lex_state = 54, .external_lex_state = 2}, - [5416] = {.lex_state = 380, .external_lex_state = 2}, - [5417] = {.lex_state = 380, .external_lex_state = 5}, - [5418] = {.lex_state = 380, .external_lex_state = 2}, - [5419] = {.lex_state = 380, .external_lex_state = 5}, - [5420] = {.lex_state = 57, .external_lex_state = 2}, - [5421] = {.lex_state = 380, .external_lex_state = 5}, - [5422] = {.lex_state = 57, .external_lex_state = 2}, + [5406] = {.lex_state = 380, .external_lex_state = 5}, + [5407] = {.lex_state = 54, .external_lex_state = 2}, + [5408] = {.lex_state = 380, .external_lex_state = 6}, + [5409] = {.lex_state = 54, .external_lex_state = 2}, + [5410] = {.lex_state = 54, .external_lex_state = 2}, + [5411] = {.lex_state = 380, .external_lex_state = 2}, + [5412] = {.lex_state = 54, .external_lex_state = 2}, + [5413] = {.lex_state = 54, .external_lex_state = 2}, + [5414] = {.lex_state = 54, .external_lex_state = 2}, + [5415] = {.lex_state = 57, .external_lex_state = 2}, + [5416] = {.lex_state = 71, .external_lex_state = 2}, + [5417] = {.lex_state = 380, .external_lex_state = 2}, + [5418] = {.lex_state = 380, .external_lex_state = 6}, + [5419] = {.lex_state = 54, .external_lex_state = 2}, + [5420] = {.lex_state = 54, .external_lex_state = 2}, + [5421] = {.lex_state = 56, .external_lex_state = 2}, + [5422] = {.lex_state = 54, .external_lex_state = 2}, [5423] = {.lex_state = 380, .external_lex_state = 2}, - [5424] = {.lex_state = 380, .external_lex_state = 2}, - [5425] = {.lex_state = 380, .external_lex_state = 5}, - [5426] = {.lex_state = 380, .external_lex_state = 2}, - [5427] = {.lex_state = 380, .external_lex_state = 2}, - [5428] = {.lex_state = 380, .external_lex_state = 2}, - [5429] = {.lex_state = 380, .external_lex_state = 5}, - [5430] = {.lex_state = 60, .external_lex_state = 2}, - [5431] = {.lex_state = 380, .external_lex_state = 2}, - [5432] = {.lex_state = 57, .external_lex_state = 2}, - [5433] = {.lex_state = 57, .external_lex_state = 2}, - [5434] = {.lex_state = 54, .external_lex_state = 2}, - [5435] = {.lex_state = 380, .external_lex_state = 5}, - [5436] = {.lex_state = 380, .external_lex_state = 5}, - [5437] = {.lex_state = 380, .external_lex_state = 5}, - [5438] = {.lex_state = 380, .external_lex_state = 5}, - [5439] = {.lex_state = 380, .external_lex_state = 5}, - [5440] = {.lex_state = 380, .external_lex_state = 5}, - [5441] = {.lex_state = 380, .external_lex_state = 5}, + [5424] = {.lex_state = 54, .external_lex_state = 2}, + [5425] = {.lex_state = 57, .external_lex_state = 2}, + [5426] = {.lex_state = 380, .external_lex_state = 5}, + [5427] = {.lex_state = 380, .external_lex_state = 5}, + [5428] = {.lex_state = 57, .external_lex_state = 2}, + [5429] = {.lex_state = 380, .external_lex_state = 6}, + [5430] = {.lex_state = 54, .external_lex_state = 2}, + [5431] = {.lex_state = 57, .external_lex_state = 2}, + [5432] = {.lex_state = 54, .external_lex_state = 2}, + [5433] = {.lex_state = 54, .external_lex_state = 2}, + [5434] = {.lex_state = 380, .external_lex_state = 2}, + [5435] = {.lex_state = 380, .external_lex_state = 7}, + [5436] = {.lex_state = 380, .external_lex_state = 6}, + [5437] = {.lex_state = 54, .external_lex_state = 2}, + [5438] = {.lex_state = 380, .external_lex_state = 2}, + [5439] = {.lex_state = 57, .external_lex_state = 2}, + [5440] = {.lex_state = 380, .external_lex_state = 2}, + [5441] = {.lex_state = 380, .external_lex_state = 6}, [5442] = {.lex_state = 380, .external_lex_state = 5}, - [5443] = {.lex_state = 380, .external_lex_state = 5}, - [5444] = {.lex_state = 380, .external_lex_state = 5}, - [5445] = {.lex_state = 380, .external_lex_state = 5}, - [5446] = {.lex_state = 57, .external_lex_state = 2}, - [5447] = {.lex_state = 380, .external_lex_state = 2}, - [5448] = {.lex_state = 380, .external_lex_state = 2}, + [5443] = {.lex_state = 380, .external_lex_state = 6}, + [5444] = {.lex_state = 57, .external_lex_state = 2}, + [5445] = {.lex_state = 78, .external_lex_state = 2}, + [5446] = {.lex_state = 380, .external_lex_state = 2}, + [5447] = {.lex_state = 57, .external_lex_state = 2}, + [5448] = {.lex_state = 380, .external_lex_state = 6}, [5449] = {.lex_state = 380, .external_lex_state = 5}, [5450] = {.lex_state = 380, .external_lex_state = 5}, - [5451] = {.lex_state = 380, .external_lex_state = 5}, - [5452] = {.lex_state = 380, .external_lex_state = 5}, + [5451] = {.lex_state = 54, .external_lex_state = 2}, + [5452] = {.lex_state = 78, .external_lex_state = 2}, [5453] = {.lex_state = 380, .external_lex_state = 2}, - [5454] = {.lex_state = 380, .external_lex_state = 2}, + [5454] = {.lex_state = 380, .external_lex_state = 6}, [5455] = {.lex_state = 380, .external_lex_state = 2}, - [5456] = {.lex_state = 380, .external_lex_state = 2}, + [5456] = {.lex_state = 57, .external_lex_state = 2}, [5457] = {.lex_state = 380, .external_lex_state = 5}, - [5458] = {.lex_state = 380, .external_lex_state = 5}, - [5459] = {.lex_state = 380, .external_lex_state = 2}, - [5460] = {.lex_state = 380, .external_lex_state = 5}, - [5461] = {.lex_state = 380, .external_lex_state = 5}, - [5462] = {.lex_state = 56, .external_lex_state = 5}, - [5463] = {.lex_state = 380, .external_lex_state = 5}, - [5464] = {.lex_state = 57, .external_lex_state = 2}, - [5465] = {.lex_state = 91, .external_lex_state = 2}, - [5466] = {.lex_state = 380, .external_lex_state = 5}, - [5467] = {.lex_state = 57, .external_lex_state = 2}, + [5458] = {.lex_state = 54, .external_lex_state = 2}, + [5459] = {.lex_state = 57, .external_lex_state = 2}, + [5460] = {.lex_state = 380, .external_lex_state = 6}, + [5461] = {.lex_state = 54, .external_lex_state = 2}, + [5462] = {.lex_state = 380, .external_lex_state = 5}, + [5463] = {.lex_state = 56, .external_lex_state = 2}, + [5464] = {.lex_state = 54, .external_lex_state = 2}, + [5465] = {.lex_state = 57, .external_lex_state = 2}, + [5466] = {.lex_state = 57, .external_lex_state = 2}, + [5467] = {.lex_state = 54, .external_lex_state = 2}, [5468] = {.lex_state = 57, .external_lex_state = 2}, - [5469] = {.lex_state = 71, .external_lex_state = 2}, - [5470] = {.lex_state = 71, .external_lex_state = 2}, + [5469] = {.lex_state = 57, .external_lex_state = 2}, + [5470] = {.lex_state = 380, .external_lex_state = 2}, [5471] = {.lex_state = 380, .external_lex_state = 5}, - [5472] = {.lex_state = 57, .external_lex_state = 2}, - [5473] = {.lex_state = 380, .external_lex_state = 5}, - [5474] = {.lex_state = 380, .external_lex_state = 5}, - [5475] = {.lex_state = 56, .external_lex_state = 5}, - [5476] = {.lex_state = 57, .external_lex_state = 2}, - [5477] = {.lex_state = 54, .external_lex_state = 2}, - [5478] = {.lex_state = 57, .external_lex_state = 2}, + [5472] = {.lex_state = 54, .external_lex_state = 2}, + [5473] = {.lex_state = 57, .external_lex_state = 2}, + [5474] = {.lex_state = 380, .external_lex_state = 2}, + [5475] = {.lex_state = 380, .external_lex_state = 2}, + [5476] = {.lex_state = 380, .external_lex_state = 2}, + [5477] = {.lex_state = 380, .external_lex_state = 5}, + [5478] = {.lex_state = 380, .external_lex_state = 5}, [5479] = {.lex_state = 57, .external_lex_state = 2}, - [5480] = {.lex_state = 57, .external_lex_state = 2}, - [5481] = {.lex_state = 57, .external_lex_state = 2}, - [5482] = {.lex_state = 57, .external_lex_state = 2}, - [5483] = {.lex_state = 380, .external_lex_state = 5}, - [5484] = {.lex_state = 57, .external_lex_state = 2}, - [5485] = {.lex_state = 380, .external_lex_state = 5}, - [5486] = {.lex_state = 380, .external_lex_state = 6}, - [5487] = {.lex_state = 380, .external_lex_state = 6}, - [5488] = {.lex_state = 57, .external_lex_state = 2}, - [5489] = {.lex_state = 380, .external_lex_state = 6}, - [5490] = {.lex_state = 71, .external_lex_state = 2}, + [5480] = {.lex_state = 380, .external_lex_state = 5}, + [5481] = {.lex_state = 380, .external_lex_state = 5}, + [5482] = {.lex_state = 380, .external_lex_state = 2}, + [5483] = {.lex_state = 57, .external_lex_state = 2}, + [5484] = {.lex_state = 380, .external_lex_state = 2}, + [5485] = {.lex_state = 380, .external_lex_state = 6}, + [5486] = {.lex_state = 57, .external_lex_state = 2}, + [5487] = {.lex_state = 380, .external_lex_state = 5}, + [5488] = {.lex_state = 380, .external_lex_state = 5}, + [5489] = {.lex_state = 380, .external_lex_state = 2}, + [5490] = {.lex_state = 380, .external_lex_state = 2}, [5491] = {.lex_state = 380, .external_lex_state = 5}, - [5492] = {.lex_state = 57, .external_lex_state = 2}, - [5493] = {.lex_state = 380, .external_lex_state = 6}, - [5494] = {.lex_state = 57, .external_lex_state = 2}, - [5495] = {.lex_state = 56, .external_lex_state = 5}, - [5496] = {.lex_state = 57, .external_lex_state = 2}, + [5492] = {.lex_state = 380, .external_lex_state = 5}, + [5493] = {.lex_state = 380, .external_lex_state = 5}, + [5494] = {.lex_state = 380, .external_lex_state = 2}, + [5495] = {.lex_state = 57, .external_lex_state = 2}, + [5496] = {.lex_state = 380, .external_lex_state = 5}, [5497] = {.lex_state = 380, .external_lex_state = 6}, - [5498] = {.lex_state = 57, .external_lex_state = 2}, - [5499] = {.lex_state = 380, .external_lex_state = 2}, + [5498] = {.lex_state = 54, .external_lex_state = 2}, + [5499] = {.lex_state = 57, .external_lex_state = 2}, [5500] = {.lex_state = 380, .external_lex_state = 5}, - [5501] = {.lex_state = 380, .external_lex_state = 5}, + [5501] = {.lex_state = 57, .external_lex_state = 2}, [5502] = {.lex_state = 380, .external_lex_state = 5}, [5503] = {.lex_state = 380, .external_lex_state = 5}, - [5504] = {.lex_state = 380, .external_lex_state = 2}, - [5505] = {.lex_state = 380, .external_lex_state = 2}, - [5506] = {.lex_state = 380, .external_lex_state = 2}, - [5507] = {.lex_state = 91, .external_lex_state = 2}, - [5508] = {.lex_state = 380, .external_lex_state = 6}, - [5509] = {.lex_state = 57, .external_lex_state = 2}, + [5504] = {.lex_state = 380, .external_lex_state = 5}, + [5505] = {.lex_state = 380, .external_lex_state = 5}, + [5506] = {.lex_state = 380, .external_lex_state = 6}, + [5507] = {.lex_state = 380, .external_lex_state = 7}, + [5508] = {.lex_state = 380, .external_lex_state = 5}, + [5509] = {.lex_state = 380, .external_lex_state = 7}, [5510] = {.lex_state = 380, .external_lex_state = 5}, [5511] = {.lex_state = 380, .external_lex_state = 5}, - [5512] = {.lex_state = 71, .external_lex_state = 2}, - [5513] = {.lex_state = 380, .external_lex_state = 2}, - [5514] = {.lex_state = 380, .external_lex_state = 2}, - [5515] = {.lex_state = 57, .external_lex_state = 2}, - [5516] = {.lex_state = 380, .external_lex_state = 6}, - [5517] = {.lex_state = 57, .external_lex_state = 2}, - [5518] = {.lex_state = 57, .external_lex_state = 2}, - [5519] = {.lex_state = 57, .external_lex_state = 2}, - [5520] = {.lex_state = 380, .external_lex_state = 6}, - [5521] = {.lex_state = 56, .external_lex_state = 2}, - [5522] = {.lex_state = 57, .external_lex_state = 2}, + [5512] = {.lex_state = 380, .external_lex_state = 6}, + [5513] = {.lex_state = 380, .external_lex_state = 5}, + [5514] = {.lex_state = 380, .external_lex_state = 5}, + [5515] = {.lex_state = 380, .external_lex_state = 5}, + [5516] = {.lex_state = 54, .external_lex_state = 2}, + [5517] = {.lex_state = 56, .external_lex_state = 2}, + [5518] = {.lex_state = 380, .external_lex_state = 5}, + [5519] = {.lex_state = 380, .external_lex_state = 5}, + [5520] = {.lex_state = 54, .external_lex_state = 2}, + [5521] = {.lex_state = 54, .external_lex_state = 2}, + [5522] = {.lex_state = 380, .external_lex_state = 8}, [5523] = {.lex_state = 54, .external_lex_state = 2}, - [5524] = {.lex_state = 57, .external_lex_state = 2}, - [5525] = {.lex_state = 54, .external_lex_state = 2}, - [5526] = {.lex_state = 57, .external_lex_state = 2}, - [5527] = {.lex_state = 57, .external_lex_state = 2}, - [5528] = {.lex_state = 57, .external_lex_state = 2}, - [5529] = {.lex_state = 57, .external_lex_state = 2}, + [5524] = {.lex_state = 54, .external_lex_state = 2}, + [5525] = {.lex_state = 380, .external_lex_state = 5}, + [5526] = {.lex_state = 380, .external_lex_state = 5}, + [5527] = {.lex_state = 380, .external_lex_state = 5}, + [5528] = {.lex_state = 380, .external_lex_state = 5}, + [5529] = {.lex_state = 54, .external_lex_state = 2}, [5530] = {.lex_state = 380, .external_lex_state = 5}, - [5531] = {.lex_state = 380, .external_lex_state = 6}, + [5531] = {.lex_state = 380, .external_lex_state = 2}, [5532] = {.lex_state = 380, .external_lex_state = 6}, - [5533] = {.lex_state = 54, .external_lex_state = 2}, - [5534] = {.lex_state = 57, .external_lex_state = 2}, + [5533] = {.lex_state = 380, .external_lex_state = 5}, + [5534] = {.lex_state = 54, .external_lex_state = 2}, [5535] = {.lex_state = 380, .external_lex_state = 6}, - [5536] = {.lex_state = 380, .external_lex_state = 2}, - [5537] = {.lex_state = 380, .external_lex_state = 5}, - [5538] = {.lex_state = 57, .external_lex_state = 2}, - [5539] = {.lex_state = 380, .external_lex_state = 2}, - [5540] = {.lex_state = 380, .external_lex_state = 5}, + [5536] = {.lex_state = 380, .external_lex_state = 5}, + [5537] = {.lex_state = 54, .external_lex_state = 2}, + [5538] = {.lex_state = 54, .external_lex_state = 2}, + [5539] = {.lex_state = 380, .external_lex_state = 8}, + [5540] = {.lex_state = 380, .external_lex_state = 8}, [5541] = {.lex_state = 380, .external_lex_state = 5}, - [5542] = {.lex_state = 57, .external_lex_state = 2}, - [5543] = {.lex_state = 57, .external_lex_state = 2}, + [5542] = {.lex_state = 380, .external_lex_state = 5}, + [5543] = {.lex_state = 380, .external_lex_state = 2}, [5544] = {.lex_state = 380, .external_lex_state = 5}, - [5545] = {.lex_state = 380, .external_lex_state = 5}, + [5545] = {.lex_state = 54, .external_lex_state = 5}, [5546] = {.lex_state = 54, .external_lex_state = 2}, - [5547] = {.lex_state = 57, .external_lex_state = 2}, - [5548] = {.lex_state = 380, .external_lex_state = 5}, - [5549] = {.lex_state = 380, .external_lex_state = 7}, - [5550] = {.lex_state = 380, .external_lex_state = 5}, - [5551] = {.lex_state = 57, .external_lex_state = 2}, + [5547] = {.lex_state = 380, .external_lex_state = 5}, + [5548] = {.lex_state = 54, .external_lex_state = 5}, + [5549] = {.lex_state = 380, .external_lex_state = 6}, + [5550] = {.lex_state = 380, .external_lex_state = 6}, + [5551] = {.lex_state = 380, .external_lex_state = 5}, [5552] = {.lex_state = 54, .external_lex_state = 2}, - [5553] = {.lex_state = 57, .external_lex_state = 2}, - [5554] = {.lex_state = 380, .external_lex_state = 6}, - [5555] = {.lex_state = 21, .external_lex_state = 5}, - [5556] = {.lex_state = 57, .external_lex_state = 2}, - [5557] = {.lex_state = 54, .external_lex_state = 2}, - [5558] = {.lex_state = 380, .external_lex_state = 5}, - [5559] = {.lex_state = 57, .external_lex_state = 2}, - [5560] = {.lex_state = 57, .external_lex_state = 2}, - [5561] = {.lex_state = 54, .external_lex_state = 2}, - [5562] = {.lex_state = 57, .external_lex_state = 2}, - [5563] = {.lex_state = 380, .external_lex_state = 6}, - [5564] = {.lex_state = 380, .external_lex_state = 2}, - [5565] = {.lex_state = 56, .external_lex_state = 2}, - [5566] = {.lex_state = 54, .external_lex_state = 2}, - [5567] = {.lex_state = 380, .external_lex_state = 6}, - [5568] = {.lex_state = 57, .external_lex_state = 2}, - [5569] = {.lex_state = 21, .external_lex_state = 5}, - [5570] = {.lex_state = 57, .external_lex_state = 2}, - [5571] = {.lex_state = 54, .external_lex_state = 2}, - [5572] = {.lex_state = 57, .external_lex_state = 2}, - [5573] = {.lex_state = 54, .external_lex_state = 2}, - [5574] = {.lex_state = 380, .external_lex_state = 2}, - [5575] = {.lex_state = 380, .external_lex_state = 5}, + [5553] = {.lex_state = 380, .external_lex_state = 5}, + [5554] = {.lex_state = 380, .external_lex_state = 5}, + [5555] = {.lex_state = 380, .external_lex_state = 5}, + [5556] = {.lex_state = 380, .external_lex_state = 2}, + [5557] = {.lex_state = 380, .external_lex_state = 5}, + [5558] = {.lex_state = 380, .external_lex_state = 6}, + [5559] = {.lex_state = 380, .external_lex_state = 5}, + [5560] = {.lex_state = 380, .external_lex_state = 6}, + [5561] = {.lex_state = 54, .external_lex_state = 5}, + [5562] = {.lex_state = 54, .external_lex_state = 2}, + [5563] = {.lex_state = 380, .external_lex_state = 5}, + [5564] = {.lex_state = 380, .external_lex_state = 5}, + [5565] = {.lex_state = 380, .external_lex_state = 6}, + [5566] = {.lex_state = 380, .external_lex_state = 5}, + [5567] = {.lex_state = 380, .external_lex_state = 5}, + [5568] = {.lex_state = 380, .external_lex_state = 5}, + [5569] = {.lex_state = 54, .external_lex_state = 2}, + [5570] = {.lex_state = 380, .external_lex_state = 5}, + [5571] = {.lex_state = 380, .external_lex_state = 5}, + [5572] = {.lex_state = 54, .external_lex_state = 2}, + [5573] = {.lex_state = 380, .external_lex_state = 5}, + [5574] = {.lex_state = 71, .external_lex_state = 2}, + [5575] = {.lex_state = 54, .external_lex_state = 2}, [5576] = {.lex_state = 380, .external_lex_state = 6}, - [5577] = {.lex_state = 57, .external_lex_state = 2}, - [5578] = {.lex_state = 57, .external_lex_state = 2}, - [5579] = {.lex_state = 57, .external_lex_state = 2}, - [5580] = {.lex_state = 380, .external_lex_state = 6}, - [5581] = {.lex_state = 380, .external_lex_state = 5}, - [5582] = {.lex_state = 54, .external_lex_state = 2}, - [5583] = {.lex_state = 380, .external_lex_state = 2}, - [5584] = {.lex_state = 380, .external_lex_state = 2}, - [5585] = {.lex_state = 380, .external_lex_state = 2}, + [5577] = {.lex_state = 54, .external_lex_state = 2}, + [5578] = {.lex_state = 380, .external_lex_state = 5}, + [5579] = {.lex_state = 380, .external_lex_state = 5}, + [5580] = {.lex_state = 54, .external_lex_state = 2}, + [5581] = {.lex_state = 54, .external_lex_state = 2}, + [5582] = {.lex_state = 380, .external_lex_state = 5}, + [5583] = {.lex_state = 380, .external_lex_state = 5}, + [5584] = {.lex_state = 54, .external_lex_state = 2}, + [5585] = {.lex_state = 380, .external_lex_state = 5}, [5586] = {.lex_state = 380, .external_lex_state = 5}, - [5587] = {.lex_state = 57, .external_lex_state = 2}, - [5588] = {.lex_state = 57, .external_lex_state = 2}, - [5589] = {.lex_state = 57, .external_lex_state = 2}, - [5590] = {.lex_state = 380, .external_lex_state = 5}, + [5587] = {.lex_state = 380, .external_lex_state = 5}, + [5588] = {.lex_state = 54, .external_lex_state = 2}, + [5589] = {.lex_state = 380, .external_lex_state = 5}, + [5590] = {.lex_state = 54, .external_lex_state = 2}, [5591] = {.lex_state = 54, .external_lex_state = 2}, - [5592] = {.lex_state = 57, .external_lex_state = 2}, - [5593] = {.lex_state = 57, .external_lex_state = 2}, - [5594] = {.lex_state = 380, .external_lex_state = 6}, - [5595] = {.lex_state = 380, .external_lex_state = 2}, - [5596] = {.lex_state = 380, .external_lex_state = 6}, + [5592] = {.lex_state = 54, .external_lex_state = 2}, + [5593] = {.lex_state = 380, .external_lex_state = 5}, + [5594] = {.lex_state = 380, .external_lex_state = 5}, + [5595] = {.lex_state = 54, .external_lex_state = 2}, + [5596] = {.lex_state = 380, .external_lex_state = 5}, [5597] = {.lex_state = 54, .external_lex_state = 2}, - [5598] = {.lex_state = 56, .external_lex_state = 2}, - [5599] = {.lex_state = 380, .external_lex_state = 6}, - [5600] = {.lex_state = 71, .external_lex_state = 2}, + [5598] = {.lex_state = 57, .external_lex_state = 2}, + [5599] = {.lex_state = 54, .external_lex_state = 2}, + [5600] = {.lex_state = 380, .external_lex_state = 5}, [5601] = {.lex_state = 380, .external_lex_state = 5}, - [5602] = {.lex_state = 380, .external_lex_state = 6}, - [5603] = {.lex_state = 380, .external_lex_state = 6}, - [5604] = {.lex_state = 57, .external_lex_state = 2}, - [5605] = {.lex_state = 57, .external_lex_state = 2}, - [5606] = {.lex_state = 78, .external_lex_state = 2}, - [5607] = {.lex_state = 380, .external_lex_state = 2}, - [5608] = {.lex_state = 57, .external_lex_state = 2}, - [5609] = {.lex_state = 54, .external_lex_state = 2}, - [5610] = {.lex_state = 54, .external_lex_state = 2}, - [5611] = {.lex_state = 78, .external_lex_state = 2}, - [5612] = {.lex_state = 380, .external_lex_state = 6}, - [5613] = {.lex_state = 380, .external_lex_state = 2}, + [5602] = {.lex_state = 380, .external_lex_state = 5}, + [5603] = {.lex_state = 380, .external_lex_state = 5}, + [5604] = {.lex_state = 380, .external_lex_state = 5}, + [5605] = {.lex_state = 380, .external_lex_state = 5}, + [5606] = {.lex_state = 380, .external_lex_state = 5}, + [5607] = {.lex_state = 380, .external_lex_state = 5}, + [5608] = {.lex_state = 54, .external_lex_state = 5}, + [5609] = {.lex_state = 380, .external_lex_state = 5}, + [5610] = {.lex_state = 380, .external_lex_state = 5}, + [5611] = {.lex_state = 380, .external_lex_state = 5}, + [5612] = {.lex_state = 54, .external_lex_state = 5}, + [5613] = {.lex_state = 380, .external_lex_state = 5}, [5614] = {.lex_state = 380, .external_lex_state = 6}, [5615] = {.lex_state = 380, .external_lex_state = 5}, - [5616] = {.lex_state = 380, .external_lex_state = 2}, - [5617] = {.lex_state = 57, .external_lex_state = 2}, - [5618] = {.lex_state = 56, .external_lex_state = 2}, - [5619] = {.lex_state = 54, .external_lex_state = 2}, - [5620] = {.lex_state = 57, .external_lex_state = 2}, - [5621] = {.lex_state = 57, .external_lex_state = 2}, - [5622] = {.lex_state = 57, .external_lex_state = 2}, - [5623] = {.lex_state = 380, .external_lex_state = 2}, - [5624] = {.lex_state = 57, .external_lex_state = 2}, - [5625] = {.lex_state = 57, .external_lex_state = 2}, - [5626] = {.lex_state = 54, .external_lex_state = 2}, - [5627] = {.lex_state = 54, .external_lex_state = 2}, - [5628] = {.lex_state = 380, .external_lex_state = 2}, - [5629] = {.lex_state = 380, .external_lex_state = 5}, - [5630] = {.lex_state = 380, .external_lex_state = 2}, + [5616] = {.lex_state = 54, .external_lex_state = 2}, + [5617] = {.lex_state = 380, .external_lex_state = 5}, + [5618] = {.lex_state = 380, .external_lex_state = 2}, + [5619] = {.lex_state = 380, .external_lex_state = 2}, + [5620] = {.lex_state = 380, .external_lex_state = 5}, + [5621] = {.lex_state = 380, .external_lex_state = 5}, + [5622] = {.lex_state = 380, .external_lex_state = 6}, + [5623] = {.lex_state = 380, .external_lex_state = 5}, + [5624] = {.lex_state = 380, .external_lex_state = 5}, + [5625] = {.lex_state = 54, .external_lex_state = 5}, + [5626] = {.lex_state = 380, .external_lex_state = 5}, + [5627] = {.lex_state = 380, .external_lex_state = 6}, + [5628] = {.lex_state = 54, .external_lex_state = 2}, + [5629] = {.lex_state = 380, .external_lex_state = 2}, + [5630] = {.lex_state = 54, .external_lex_state = 2}, [5631] = {.lex_state = 380, .external_lex_state = 5}, - [5632] = {.lex_state = 380, .external_lex_state = 6}, - [5633] = {.lex_state = 380, .external_lex_state = 5}, - [5634] = {.lex_state = 380, .external_lex_state = 2}, - [5635] = {.lex_state = 380, .external_lex_state = 2}, + [5632] = {.lex_state = 380, .external_lex_state = 5}, + [5633] = {.lex_state = 71, .external_lex_state = 2}, + [5634] = {.lex_state = 380, .external_lex_state = 8}, + [5635] = {.lex_state = 380, .external_lex_state = 6}, [5636] = {.lex_state = 380, .external_lex_state = 5}, [5637] = {.lex_state = 54, .external_lex_state = 2}, - [5638] = {.lex_state = 56, .external_lex_state = 2}, - [5639] = {.lex_state = 380, .external_lex_state = 6}, - [5640] = {.lex_state = 54, .external_lex_state = 2}, - [5641] = {.lex_state = 380, .external_lex_state = 6}, - [5642] = {.lex_state = 57, .external_lex_state = 2}, + [5638] = {.lex_state = 380, .external_lex_state = 5}, + [5639] = {.lex_state = 54, .external_lex_state = 2}, + [5640] = {.lex_state = 380, .external_lex_state = 5}, + [5641] = {.lex_state = 380, .external_lex_state = 5}, + [5642] = {.lex_state = 380, .external_lex_state = 5}, [5643] = {.lex_state = 54, .external_lex_state = 2}, - [5644] = {.lex_state = 54, .external_lex_state = 2}, + [5644] = {.lex_state = 380, .external_lex_state = 5}, [5645] = {.lex_state = 380, .external_lex_state = 5}, - [5646] = {.lex_state = 380, .external_lex_state = 6}, - [5647] = {.lex_state = 57, .external_lex_state = 2}, - [5648] = {.lex_state = 380, .external_lex_state = 6}, + [5646] = {.lex_state = 380, .external_lex_state = 5}, + [5647] = {.lex_state = 380, .external_lex_state = 5}, + [5648] = {.lex_state = 380, .external_lex_state = 5}, [5649] = {.lex_state = 380, .external_lex_state = 5}, - [5650] = {.lex_state = 380, .external_lex_state = 2}, - [5651] = {.lex_state = 54, .external_lex_state = 2}, - [5652] = {.lex_state = 380, .external_lex_state = 5}, - [5653] = {.lex_state = 380, .external_lex_state = 2}, + [5650] = {.lex_state = 380, .external_lex_state = 5}, + [5651] = {.lex_state = 380, .external_lex_state = 5}, + [5652] = {.lex_state = 57, .external_lex_state = 2}, + [5653] = {.lex_state = 380, .external_lex_state = 5}, [5654] = {.lex_state = 54, .external_lex_state = 2}, - [5655] = {.lex_state = 54, .external_lex_state = 2}, - [5656] = {.lex_state = 380, .external_lex_state = 2}, - [5657] = {.lex_state = 380, .external_lex_state = 5}, + [5655] = {.lex_state = 380, .external_lex_state = 5}, + [5656] = {.lex_state = 380, .external_lex_state = 5}, + [5657] = {.lex_state = 54, .external_lex_state = 2}, [5658] = {.lex_state = 380, .external_lex_state = 5}, - [5659] = {.lex_state = 54, .external_lex_state = 2}, - [5660] = {.lex_state = 380, .external_lex_state = 5}, - [5661] = {.lex_state = 380, .external_lex_state = 2}, - [5662] = {.lex_state = 57, .external_lex_state = 2}, - [5663] = {.lex_state = 57, .external_lex_state = 2}, + [5659] = {.lex_state = 380, .external_lex_state = 2}, + [5660] = {.lex_state = 57, .external_lex_state = 2}, + [5661] = {.lex_state = 56, .external_lex_state = 2}, + [5662] = {.lex_state = 54, .external_lex_state = 2}, + [5663] = {.lex_state = 380, .external_lex_state = 5}, [5664] = {.lex_state = 380, .external_lex_state = 5}, - [5665] = {.lex_state = 380, .external_lex_state = 5}, + [5665] = {.lex_state = 380, .external_lex_state = 2}, [5666] = {.lex_state = 380, .external_lex_state = 5}, - [5667] = {.lex_state = 380, .external_lex_state = 5}, - [5668] = {.lex_state = 380, .external_lex_state = 5}, - [5669] = {.lex_state = 54, .external_lex_state = 2}, - [5670] = {.lex_state = 57, .external_lex_state = 2}, + [5667] = {.lex_state = 54, .external_lex_state = 2}, + [5668] = {.lex_state = 54, .external_lex_state = 2}, + [5669] = {.lex_state = 380, .external_lex_state = 5}, + [5670] = {.lex_state = 54, .external_lex_state = 5}, [5671] = {.lex_state = 380, .external_lex_state = 5}, - [5672] = {.lex_state = 380, .external_lex_state = 5}, - [5673] = {.lex_state = 380, .external_lex_state = 5}, - [5674] = {.lex_state = 380, .external_lex_state = 5}, - [5675] = {.lex_state = 380, .external_lex_state = 5}, - [5676] = {.lex_state = 71, .external_lex_state = 2}, + [5672] = {.lex_state = 54, .external_lex_state = 2}, + [5673] = {.lex_state = 54, .external_lex_state = 5}, + [5674] = {.lex_state = 380, .external_lex_state = 2}, + [5675] = {.lex_state = 380, .external_lex_state = 6}, + [5676] = {.lex_state = 380, .external_lex_state = 5}, [5677] = {.lex_state = 380, .external_lex_state = 5}, - [5678] = {.lex_state = 380, .external_lex_state = 5}, - [5679] = {.lex_state = 380, .external_lex_state = 5}, - [5680] = {.lex_state = 54, .external_lex_state = 2}, - [5681] = {.lex_state = 380, .external_lex_state = 5}, - [5682] = {.lex_state = 380, .external_lex_state = 2}, + [5678] = {.lex_state = 380, .external_lex_state = 2}, + [5679] = {.lex_state = 380, .external_lex_state = 2}, + [5680] = {.lex_state = 380, .external_lex_state = 2}, + [5681] = {.lex_state = 380, .external_lex_state = 6}, + [5682] = {.lex_state = 54, .external_lex_state = 5}, [5683] = {.lex_state = 380, .external_lex_state = 6}, - [5684] = {.lex_state = 380, .external_lex_state = 5}, - [5685] = {.lex_state = 380, .external_lex_state = 5}, - [5686] = {.lex_state = 380, .external_lex_state = 5}, + [5684] = {.lex_state = 54, .external_lex_state = 2}, + [5685] = {.lex_state = 54, .external_lex_state = 2}, + [5686] = {.lex_state = 54, .external_lex_state = 2}, [5687] = {.lex_state = 380, .external_lex_state = 5}, - [5688] = {.lex_state = 54, .external_lex_state = 2}, + [5688] = {.lex_state = 380, .external_lex_state = 5}, [5689] = {.lex_state = 380, .external_lex_state = 5}, - [5690] = {.lex_state = 54, .external_lex_state = 2}, - [5691] = {.lex_state = 54, .external_lex_state = 2}, - [5692] = {.lex_state = 380, .external_lex_state = 7}, - [5693] = {.lex_state = 54, .external_lex_state = 2}, - [5694] = {.lex_state = 380, .external_lex_state = 2}, - [5695] = {.lex_state = 57, .external_lex_state = 2}, - [5696] = {.lex_state = 57, .external_lex_state = 2}, - [5697] = {.lex_state = 380, .external_lex_state = 2}, - [5698] = {.lex_state = 380, .external_lex_state = 2}, - [5699] = {.lex_state = 57, .external_lex_state = 2}, + [5690] = {.lex_state = 380, .external_lex_state = 2}, + [5691] = {.lex_state = 380, .external_lex_state = 2}, + [5692] = {.lex_state = 54, .external_lex_state = 2}, + [5693] = {.lex_state = 71, .external_lex_state = 2}, + [5694] = {.lex_state = 380, .external_lex_state = 6}, + [5695] = {.lex_state = 380, .external_lex_state = 5}, + [5696] = {.lex_state = 56, .external_lex_state = 2}, + [5697] = {.lex_state = 56, .external_lex_state = 2}, + [5698] = {.lex_state = 380, .external_lex_state = 5}, + [5699] = {.lex_state = 54, .external_lex_state = 2}, [5700] = {.lex_state = 54, .external_lex_state = 2}, - [5701] = {.lex_state = 380, .external_lex_state = 2}, - [5702] = {.lex_state = 380, .external_lex_state = 2}, - [5703] = {.lex_state = 54, .external_lex_state = 2}, + [5701] = {.lex_state = 54, .external_lex_state = 2}, + [5702] = {.lex_state = 380, .external_lex_state = 5}, + [5703] = {.lex_state = 380, .external_lex_state = 6}, [5704] = {.lex_state = 380, .external_lex_state = 5}, [5705] = {.lex_state = 380, .external_lex_state = 5}, - [5706] = {.lex_state = 380, .external_lex_state = 5}, - [5707] = {.lex_state = 380, .external_lex_state = 2}, - [5708] = {.lex_state = 57, .external_lex_state = 2}, - [5709] = {.lex_state = 380, .external_lex_state = 7}, + [5706] = {.lex_state = 71, .external_lex_state = 2}, + [5707] = {.lex_state = 380, .external_lex_state = 5}, + [5708] = {.lex_state = 380, .external_lex_state = 2}, + [5709] = {.lex_state = 380, .external_lex_state = 2}, [5710] = {.lex_state = 380, .external_lex_state = 5}, - [5711] = {.lex_state = 380, .external_lex_state = 2}, + [5711] = {.lex_state = 54, .external_lex_state = 2}, [5712] = {.lex_state = 54, .external_lex_state = 2}, - [5713] = {.lex_state = 54, .external_lex_state = 2}, - [5714] = {.lex_state = 56, .external_lex_state = 2}, - [5715] = {.lex_state = 380, .external_lex_state = 2}, + [5713] = {.lex_state = 380, .external_lex_state = 5}, + [5714] = {.lex_state = 380, .external_lex_state = 5}, + [5715] = {.lex_state = 380, .external_lex_state = 5}, [5716] = {.lex_state = 54, .external_lex_state = 2}, - [5717] = {.lex_state = 54, .external_lex_state = 2}, - [5718] = {.lex_state = 54, .external_lex_state = 2}, + [5717] = {.lex_state = 380, .external_lex_state = 5}, + [5718] = {.lex_state = 380, .external_lex_state = 5}, [5719] = {.lex_state = 54, .external_lex_state = 2}, - [5720] = {.lex_state = 54, .external_lex_state = 2}, - [5721] = {.lex_state = 57, .external_lex_state = 2}, - [5722] = {.lex_state = 57, .external_lex_state = 2}, - [5723] = {.lex_state = 57, .external_lex_state = 2}, - [5724] = {.lex_state = 380, .external_lex_state = 2}, - [5725] = {.lex_state = 380, .external_lex_state = 2}, + [5720] = {.lex_state = 21, .external_lex_state = 5}, + [5721] = {.lex_state = 54, .external_lex_state = 2}, + [5722] = {.lex_state = 380, .external_lex_state = 5}, + [5723] = {.lex_state = 54, .external_lex_state = 2}, + [5724] = {.lex_state = 54, .external_lex_state = 2}, + [5725] = {.lex_state = 54, .external_lex_state = 2}, [5726] = {.lex_state = 380, .external_lex_state = 5}, [5727] = {.lex_state = 54, .external_lex_state = 2}, - [5728] = {.lex_state = 380, .external_lex_state = 7}, - [5729] = {.lex_state = 380, .external_lex_state = 7}, - [5730] = {.lex_state = 380, .external_lex_state = 2}, - [5731] = {.lex_state = 54, .external_lex_state = 2}, - [5732] = {.lex_state = 56, .external_lex_state = 2}, + [5728] = {.lex_state = 380, .external_lex_state = 6}, + [5729] = {.lex_state = 21, .external_lex_state = 5}, + [5730] = {.lex_state = 71, .external_lex_state = 2}, + [5731] = {.lex_state = 380, .external_lex_state = 5}, + [5732] = {.lex_state = 54, .external_lex_state = 2}, [5733] = {.lex_state = 54, .external_lex_state = 2}, - [5734] = {.lex_state = 380, .external_lex_state = 6}, - [5735] = {.lex_state = 380, .external_lex_state = 6}, - [5736] = {.lex_state = 380, .external_lex_state = 6}, - [5737] = {.lex_state = 380, .external_lex_state = 2}, - [5738] = {.lex_state = 380, .external_lex_state = 6}, - [5739] = {.lex_state = 54, .external_lex_state = 2}, - [5740] = {.lex_state = 380, .external_lex_state = 6}, - [5741] = {.lex_state = 380, .external_lex_state = 6}, - [5742] = {.lex_state = 54, .external_lex_state = 2}, - [5743] = {.lex_state = 54, .external_lex_state = 5}, - [5744] = {.lex_state = 54, .external_lex_state = 2}, - [5745] = {.lex_state = 380, .external_lex_state = 5}, + [5734] = {.lex_state = 380, .external_lex_state = 5}, + [5735] = {.lex_state = 54, .external_lex_state = 2}, + [5736] = {.lex_state = 380, .external_lex_state = 5}, + [5737] = {.lex_state = 380, .external_lex_state = 5}, + [5738] = {.lex_state = 380, .external_lex_state = 2}, + [5739] = {.lex_state = 380, .external_lex_state = 5}, + [5740] = {.lex_state = 380, .external_lex_state = 5}, + [5741] = {.lex_state = 380, .external_lex_state = 5}, + [5742] = {.lex_state = 380, .external_lex_state = 5}, + [5743] = {.lex_state = 380, .external_lex_state = 2}, + [5744] = {.lex_state = 380, .external_lex_state = 2}, + [5745] = {.lex_state = 54, .external_lex_state = 2}, [5746] = {.lex_state = 380, .external_lex_state = 5}, - [5747] = {.lex_state = 56, .external_lex_state = 2}, - [5748] = {.lex_state = 57, .external_lex_state = 2}, - [5749] = {.lex_state = 380, .external_lex_state = 5}, - [5750] = {.lex_state = 380, .external_lex_state = 5}, + [5747] = {.lex_state = 54, .external_lex_state = 2}, + [5748] = {.lex_state = 54, .external_lex_state = 2}, + [5749] = {.lex_state = 54, .external_lex_state = 2}, + [5750] = {.lex_state = 71, .external_lex_state = 2}, [5751] = {.lex_state = 380, .external_lex_state = 5}, - [5752] = {.lex_state = 54, .external_lex_state = 2}, - [5753] = {.lex_state = 380, .external_lex_state = 5}, - [5754] = {.lex_state = 54, .external_lex_state = 2}, - [5755] = {.lex_state = 380, .external_lex_state = 5}, - [5756] = {.lex_state = 380, .external_lex_state = 5}, - [5757] = {.lex_state = 380, .external_lex_state = 2}, - [5758] = {.lex_state = 380, .external_lex_state = 5}, + [5752] = {.lex_state = 54, .external_lex_state = 5}, + [5753] = {.lex_state = 54, .external_lex_state = 2}, + [5754] = {.lex_state = 380, .external_lex_state = 5}, + [5755] = {.lex_state = 54, .external_lex_state = 2}, + [5756] = {.lex_state = 54, .external_lex_state = 2}, + [5757] = {.lex_state = 380, .external_lex_state = 5}, + [5758] = {.lex_state = 54, .external_lex_state = 2}, [5759] = {.lex_state = 380, .external_lex_state = 5}, - [5760] = {.lex_state = 54, .external_lex_state = 2}, + [5760] = {.lex_state = 56, .external_lex_state = 2}, [5761] = {.lex_state = 380, .external_lex_state = 5}, - [5762] = {.lex_state = 380, .external_lex_state = 5}, - [5763] = {.lex_state = 380, .external_lex_state = 2}, - [5764] = {.lex_state = 54, .external_lex_state = 2}, - [5765] = {.lex_state = 54, .external_lex_state = 2}, - [5766] = {.lex_state = 380, .external_lex_state = 5}, - [5767] = {.lex_state = 54, .external_lex_state = 2}, + [5762] = {.lex_state = 54, .external_lex_state = 2}, + [5763] = {.lex_state = 380, .external_lex_state = 5}, + [5764] = {.lex_state = 54, .external_lex_state = 5}, + [5765] = {.lex_state = 380, .external_lex_state = 5}, + [5766] = {.lex_state = 54, .external_lex_state = 2}, + [5767] = {.lex_state = 380, .external_lex_state = 6}, [5768] = {.lex_state = 380, .external_lex_state = 5}, - [5769] = {.lex_state = 57, .external_lex_state = 2}, - [5770] = {.lex_state = 380, .external_lex_state = 5}, + [5769] = {.lex_state = 380, .external_lex_state = 2}, + [5770] = {.lex_state = 54, .external_lex_state = 5}, [5771] = {.lex_state = 380, .external_lex_state = 5}, [5772] = {.lex_state = 380, .external_lex_state = 5}, - [5773] = {.lex_state = 54, .external_lex_state = 2}, - [5774] = {.lex_state = 380, .external_lex_state = 5}, - [5775] = {.lex_state = 54, .external_lex_state = 2}, - [5776] = {.lex_state = 54, .external_lex_state = 2}, - [5777] = {.lex_state = 54, .external_lex_state = 2}, - [5778] = {.lex_state = 380, .external_lex_state = 5}, - [5779] = {.lex_state = 54, .external_lex_state = 2}, - [5780] = {.lex_state = 380, .external_lex_state = 5}, - [5781] = {.lex_state = 380, .external_lex_state = 5}, - [5782] = {.lex_state = 54, .external_lex_state = 2}, + [5773] = {.lex_state = 54, .external_lex_state = 5}, + [5774] = {.lex_state = 54, .external_lex_state = 2}, + [5775] = {.lex_state = 380, .external_lex_state = 6}, + [5776] = {.lex_state = 380, .external_lex_state = 5}, + [5777] = {.lex_state = 380, .external_lex_state = 5}, + [5778] = {.lex_state = 54, .external_lex_state = 2}, + [5779] = {.lex_state = 380, .external_lex_state = 5}, + [5780] = {.lex_state = 380, .external_lex_state = 2}, + [5781] = {.lex_state = 380, .external_lex_state = 6}, + [5782] = {.lex_state = 380, .external_lex_state = 5}, [5783] = {.lex_state = 380, .external_lex_state = 2}, [5784] = {.lex_state = 380, .external_lex_state = 5}, - [5785] = {.lex_state = 380, .external_lex_state = 8}, + [5785] = {.lex_state = 380, .external_lex_state = 5}, [5786] = {.lex_state = 380, .external_lex_state = 2}, - [5787] = {.lex_state = 380, .external_lex_state = 5}, - [5788] = {.lex_state = 380, .external_lex_state = 5}, - [5789] = {.lex_state = 54, .external_lex_state = 2}, - [5790] = {.lex_state = 56, .external_lex_state = 2}, + [5787] = {.lex_state = 380, .external_lex_state = 6}, + [5788] = {.lex_state = 54, .external_lex_state = 5}, + [5789] = {.lex_state = 380, .external_lex_state = 6}, + [5790] = {.lex_state = 380, .external_lex_state = 5}, [5791] = {.lex_state = 380, .external_lex_state = 5}, - [5792] = {.lex_state = 56, .external_lex_state = 2}, + [5792] = {.lex_state = 54, .external_lex_state = 2}, [5793] = {.lex_state = 380, .external_lex_state = 5}, [5794] = {.lex_state = 54, .external_lex_state = 2}, [5795] = {.lex_state = 54, .external_lex_state = 2}, [5796] = {.lex_state = 380, .external_lex_state = 5}, [5797] = {.lex_state = 380, .external_lex_state = 5}, [5798] = {.lex_state = 54, .external_lex_state = 2}, - [5799] = {.lex_state = 380, .external_lex_state = 5}, - [5800] = {.lex_state = 380, .external_lex_state = 5}, - [5801] = {.lex_state = 57, .external_lex_state = 2}, + [5799] = {.lex_state = 71, .external_lex_state = 2}, + [5800] = {.lex_state = 380, .external_lex_state = 6}, + [5801] = {.lex_state = 380, .external_lex_state = 2}, [5802] = {.lex_state = 380, .external_lex_state = 5}, [5803] = {.lex_state = 380, .external_lex_state = 5}, - [5804] = {.lex_state = 380, .external_lex_state = 5}, - [5805] = {.lex_state = 54, .external_lex_state = 2}, + [5804] = {.lex_state = 380, .external_lex_state = 2}, + [5805] = {.lex_state = 380, .external_lex_state = 2}, [5806] = {.lex_state = 380, .external_lex_state = 5}, - [5807] = {.lex_state = 380, .external_lex_state = 2}, - [5808] = {.lex_state = 56, .external_lex_state = 2}, + [5807] = {.lex_state = 380, .external_lex_state = 5}, + [5808] = {.lex_state = 380, .external_lex_state = 2}, [5809] = {.lex_state = 380, .external_lex_state = 5}, - [5810] = {.lex_state = 54, .external_lex_state = 2}, + [5810] = {.lex_state = 380, .external_lex_state = 2}, [5811] = {.lex_state = 54, .external_lex_state = 2}, [5812] = {.lex_state = 380, .external_lex_state = 5}, [5813] = {.lex_state = 380, .external_lex_state = 5}, - [5814] = {.lex_state = 380, .external_lex_state = 5}, - [5815] = {.lex_state = 55, .external_lex_state = 2}, + [5814] = {.lex_state = 380, .external_lex_state = 6}, + [5815] = {.lex_state = 380, .external_lex_state = 2}, [5816] = {.lex_state = 380, .external_lex_state = 5}, - [5817] = {.lex_state = 54, .external_lex_state = 2}, - [5818] = {.lex_state = 380, .external_lex_state = 5}, + [5817] = {.lex_state = 54, .external_lex_state = 5}, + [5818] = {.lex_state = 54, .external_lex_state = 5}, [5819] = {.lex_state = 54, .external_lex_state = 2}, - [5820] = {.lex_state = 380, .external_lex_state = 5}, - [5821] = {.lex_state = 380, .external_lex_state = 5}, + [5820] = {.lex_state = 54, .external_lex_state = 2}, + [5821] = {.lex_state = 380, .external_lex_state = 8}, [5822] = {.lex_state = 380, .external_lex_state = 5}, - [5823] = {.lex_state = 380, .external_lex_state = 5}, - [5824] = {.lex_state = 57, .external_lex_state = 2}, - [5825] = {.lex_state = 54, .external_lex_state = 2}, + [5823] = {.lex_state = 54, .external_lex_state = 2}, + [5824] = {.lex_state = 380, .external_lex_state = 5}, + [5825] = {.lex_state = 380, .external_lex_state = 5}, [5826] = {.lex_state = 380, .external_lex_state = 5}, - [5827] = {.lex_state = 54, .external_lex_state = 2}, + [5827] = {.lex_state = 380, .external_lex_state = 5}, [5828] = {.lex_state = 380, .external_lex_state = 5}, - [5829] = {.lex_state = 54, .external_lex_state = 2}, - [5830] = {.lex_state = 380, .external_lex_state = 5}, - [5831] = {.lex_state = 380, .external_lex_state = 5}, + [5829] = {.lex_state = 380, .external_lex_state = 5}, + [5830] = {.lex_state = 380, .external_lex_state = 8}, + [5831] = {.lex_state = 54, .external_lex_state = 2}, [5832] = {.lex_state = 380, .external_lex_state = 5}, - [5833] = {.lex_state = 380, .external_lex_state = 5}, - [5834] = {.lex_state = 380, .external_lex_state = 5}, - [5835] = {.lex_state = 380, .external_lex_state = 5}, - [5836] = {.lex_state = 56, .external_lex_state = 2}, + [5833] = {.lex_state = 56, .external_lex_state = 2}, + [5834] = {.lex_state = 54, .external_lex_state = 2}, + [5835] = {.lex_state = 54, .external_lex_state = 2}, + [5836] = {.lex_state = 54, .external_lex_state = 2}, [5837] = {.lex_state = 380, .external_lex_state = 5}, - [5838] = {.lex_state = 380, .external_lex_state = 8}, - [5839] = {.lex_state = 380, .external_lex_state = 5}, + [5838] = {.lex_state = 380, .external_lex_state = 5}, + [5839] = {.lex_state = 380, .external_lex_state = 2}, [5840] = {.lex_state = 380, .external_lex_state = 5}, [5841] = {.lex_state = 54, .external_lex_state = 2}, [5842] = {.lex_state = 380, .external_lex_state = 5}, - [5843] = {.lex_state = 54, .external_lex_state = 2}, - [5844] = {.lex_state = 54, .external_lex_state = 2}, - [5845] = {.lex_state = 54, .external_lex_state = 2}, + [5843] = {.lex_state = 380, .external_lex_state = 5}, + [5844] = {.lex_state = 380, .external_lex_state = 5}, + [5845] = {.lex_state = 380, .external_lex_state = 5}, [5846] = {.lex_state = 380, .external_lex_state = 5}, [5847] = {.lex_state = 380, .external_lex_state = 5}, - [5848] = {.lex_state = 380, .external_lex_state = 5}, - [5849] = {.lex_state = 54, .external_lex_state = 2}, - [5850] = {.lex_state = 380, .external_lex_state = 5}, - [5851] = {.lex_state = 380, .external_lex_state = 5}, - [5852] = {.lex_state = 380, .external_lex_state = 5}, - [5853] = {.lex_state = 380, .external_lex_state = 5}, - [5854] = {.lex_state = 54, .external_lex_state = 2}, - [5855] = {.lex_state = 380, .external_lex_state = 5}, - [5856] = {.lex_state = 380, .external_lex_state = 5}, - [5857] = {.lex_state = 21, .external_lex_state = 5}, + [5848] = {.lex_state = 54, .external_lex_state = 2}, + [5849] = {.lex_state = 54, .external_lex_state = 5}, + [5850] = {.lex_state = 71, .external_lex_state = 2}, + [5851] = {.lex_state = 54, .external_lex_state = 5}, + [5852] = {.lex_state = 54, .external_lex_state = 5}, + [5853] = {.lex_state = 71, .external_lex_state = 2}, + [5854] = {.lex_state = 380, .external_lex_state = 6}, + [5855] = {.lex_state = 380, .external_lex_state = 8}, + [5856] = {.lex_state = 380, .external_lex_state = 2}, + [5857] = {.lex_state = 54, .external_lex_state = 2}, [5858] = {.lex_state = 54, .external_lex_state = 2}, - [5859] = {.lex_state = 54, .external_lex_state = 2}, + [5859] = {.lex_state = 380, .external_lex_state = 2}, [5860] = {.lex_state = 380, .external_lex_state = 5}, - [5861] = {.lex_state = 380, .external_lex_state = 5}, - [5862] = {.lex_state = 54, .external_lex_state = 2}, - [5863] = {.lex_state = 54, .external_lex_state = 2}, - [5864] = {.lex_state = 56, .external_lex_state = 2}, - [5865] = {.lex_state = 380, .external_lex_state = 5}, - [5866] = {.lex_state = 54, .external_lex_state = 2}, - [5867] = {.lex_state = 54, .external_lex_state = 2}, - [5868] = {.lex_state = 380, .external_lex_state = 5}, - [5869] = {.lex_state = 54, .external_lex_state = 2}, - [5870] = {.lex_state = 380, .external_lex_state = 8}, - [5871] = {.lex_state = 54, .external_lex_state = 2}, - [5872] = {.lex_state = 54, .external_lex_state = 2}, - [5873] = {.lex_state = 380, .external_lex_state = 5}, + [5861] = {.lex_state = 54, .external_lex_state = 2}, + [5862] = {.lex_state = 380, .external_lex_state = 2}, + [5863] = {.lex_state = 380, .external_lex_state = 6}, + [5864] = {.lex_state = 54, .external_lex_state = 5}, + [5865] = {.lex_state = 54, .external_lex_state = 2}, + [5866] = {.lex_state = 380, .external_lex_state = 5}, + [5867] = {.lex_state = 380, .external_lex_state = 6}, + [5868] = {.lex_state = 54, .external_lex_state = 2}, + [5869] = {.lex_state = 380, .external_lex_state = 5}, + [5870] = {.lex_state = 380, .external_lex_state = 5}, + [5871] = {.lex_state = 57, .external_lex_state = 2}, + [5872] = {.lex_state = 380, .external_lex_state = 5}, + [5873] = {.lex_state = 54, .external_lex_state = 2}, [5874] = {.lex_state = 380, .external_lex_state = 5}, [5875] = {.lex_state = 54, .external_lex_state = 2}, - [5876] = {.lex_state = 54, .external_lex_state = 2}, + [5876] = {.lex_state = 380, .external_lex_state = 5}, [5877] = {.lex_state = 380, .external_lex_state = 5}, - [5878] = {.lex_state = 380, .external_lex_state = 8}, - [5879] = {.lex_state = 380, .external_lex_state = 2}, + [5878] = {.lex_state = 380, .external_lex_state = 6}, + [5879] = {.lex_state = 380, .external_lex_state = 5}, [5880] = {.lex_state = 380, .external_lex_state = 5}, - [5881] = {.lex_state = 54, .external_lex_state = 2}, + [5881] = {.lex_state = 380, .external_lex_state = 5}, [5882] = {.lex_state = 54, .external_lex_state = 2}, [5883] = {.lex_state = 54, .external_lex_state = 2}, - [5884] = {.lex_state = 380, .external_lex_state = 5}, - [5885] = {.lex_state = 380, .external_lex_state = 5}, - [5886] = {.lex_state = 380, .external_lex_state = 2}, + [5884] = {.lex_state = 54, .external_lex_state = 2}, + [5885] = {.lex_state = 54, .external_lex_state = 5}, + [5886] = {.lex_state = 71, .external_lex_state = 2}, [5887] = {.lex_state = 380, .external_lex_state = 5}, - [5888] = {.lex_state = 54, .external_lex_state = 2}, + [5888] = {.lex_state = 380, .external_lex_state = 6}, [5889] = {.lex_state = 380, .external_lex_state = 5}, [5890] = {.lex_state = 54, .external_lex_state = 2}, - [5891] = {.lex_state = 380, .external_lex_state = 8}, - [5892] = {.lex_state = 54, .external_lex_state = 2}, + [5891] = {.lex_state = 380, .external_lex_state = 5}, + [5892] = {.lex_state = 380, .external_lex_state = 8}, [5893] = {.lex_state = 380, .external_lex_state = 5}, - [5894] = {.lex_state = 380, .external_lex_state = 2}, - [5895] = {.lex_state = 54, .external_lex_state = 2}, + [5894] = {.lex_state = 380, .external_lex_state = 5}, + [5895] = {.lex_state = 380, .external_lex_state = 5}, [5896] = {.lex_state = 380, .external_lex_state = 5}, [5897] = {.lex_state = 380, .external_lex_state = 5}, [5898] = {.lex_state = 380, .external_lex_state = 5}, [5899] = {.lex_state = 380, .external_lex_state = 5}, - [5900] = {.lex_state = 54, .external_lex_state = 2}, + [5900] = {.lex_state = 380, .external_lex_state = 5}, [5901] = {.lex_state = 380, .external_lex_state = 5}, - [5902] = {.lex_state = 54, .external_lex_state = 2}, - [5903] = {.lex_state = 380, .external_lex_state = 2}, - [5904] = {.lex_state = 380, .external_lex_state = 5}, + [5902] = {.lex_state = 380, .external_lex_state = 5}, + [5903] = {.lex_state = 380, .external_lex_state = 5}, + [5904] = {.lex_state = 21, .external_lex_state = 5}, [5905] = {.lex_state = 380, .external_lex_state = 5}, [5906] = {.lex_state = 380, .external_lex_state = 5}, - [5907] = {.lex_state = 54, .external_lex_state = 2}, + [5907] = {.lex_state = 380, .external_lex_state = 5}, [5908] = {.lex_state = 380, .external_lex_state = 5}, [5909] = {.lex_state = 380, .external_lex_state = 5}, - [5910] = {.lex_state = 380, .external_lex_state = 5}, + [5910] = {.lex_state = 54, .external_lex_state = 2}, [5911] = {.lex_state = 380, .external_lex_state = 5}, [5912] = {.lex_state = 380, .external_lex_state = 5}, - [5913] = {.lex_state = 54, .external_lex_state = 2}, + [5913] = {.lex_state = 380, .external_lex_state = 5}, [5914] = {.lex_state = 380, .external_lex_state = 5}, [5915] = {.lex_state = 380, .external_lex_state = 5}, [5916] = {.lex_state = 380, .external_lex_state = 5}, @@ -28956,1456 +28718,1456 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5920] = {.lex_state = 380, .external_lex_state = 5}, [5921] = {.lex_state = 380, .external_lex_state = 5}, [5922] = {.lex_state = 380, .external_lex_state = 5}, - [5923] = {.lex_state = 54, .external_lex_state = 2}, + [5923] = {.lex_state = 380, .external_lex_state = 5}, [5924] = {.lex_state = 380, .external_lex_state = 5}, - [5925] = {.lex_state = 54, .external_lex_state = 2}, - [5926] = {.lex_state = 380, .external_lex_state = 2}, - [5927] = {.lex_state = 54, .external_lex_state = 2}, + [5925] = {.lex_state = 380, .external_lex_state = 5}, + [5926] = {.lex_state = 380, .external_lex_state = 5}, + [5927] = {.lex_state = 380, .external_lex_state = 5}, [5928] = {.lex_state = 54, .external_lex_state = 2}, [5929] = {.lex_state = 380, .external_lex_state = 5}, - [5930] = {.lex_state = 54, .external_lex_state = 2}, - [5931] = {.lex_state = 380, .external_lex_state = 5}, + [5930] = {.lex_state = 380, .external_lex_state = 5}, + [5931] = {.lex_state = 54, .external_lex_state = 2}, [5932] = {.lex_state = 380, .external_lex_state = 5}, - [5933] = {.lex_state = 54, .external_lex_state = 5}, + [5933] = {.lex_state = 380, .external_lex_state = 5}, [5934] = {.lex_state = 380, .external_lex_state = 5}, [5935] = {.lex_state = 380, .external_lex_state = 5}, - [5936] = {.lex_state = 380, .external_lex_state = 5}, - [5937] = {.lex_state = 380, .external_lex_state = 5}, - [5938] = {.lex_state = 380, .external_lex_state = 5}, - [5939] = {.lex_state = 380, .external_lex_state = 5}, + [5936] = {.lex_state = 54, .external_lex_state = 2}, + [5937] = {.lex_state = 380, .external_lex_state = 2}, + [5938] = {.lex_state = 54, .external_lex_state = 2}, + [5939] = {.lex_state = 54, .external_lex_state = 2}, [5940] = {.lex_state = 380, .external_lex_state = 5}, - [5941] = {.lex_state = 380, .external_lex_state = 8}, - [5942] = {.lex_state = 380, .external_lex_state = 5}, - [5943] = {.lex_state = 380, .external_lex_state = 2}, - [5944] = {.lex_state = 380, .external_lex_state = 2}, + [5941] = {.lex_state = 380, .external_lex_state = 5}, + [5942] = {.lex_state = 380, .external_lex_state = 6}, + [5943] = {.lex_state = 380, .external_lex_state = 5}, + [5944] = {.lex_state = 54, .external_lex_state = 2}, [5945] = {.lex_state = 380, .external_lex_state = 5}, [5946] = {.lex_state = 380, .external_lex_state = 5}, - [5947] = {.lex_state = 380, .external_lex_state = 5}, + [5947] = {.lex_state = 54, .external_lex_state = 2}, [5948] = {.lex_state = 380, .external_lex_state = 5}, [5949] = {.lex_state = 380, .external_lex_state = 5}, - [5950] = {.lex_state = 380, .external_lex_state = 5}, - [5951] = {.lex_state = 380, .external_lex_state = 6}, + [5950] = {.lex_state = 380, .external_lex_state = 8}, + [5951] = {.lex_state = 380, .external_lex_state = 5}, [5952] = {.lex_state = 380, .external_lex_state = 5}, - [5953] = {.lex_state = 54, .external_lex_state = 5}, - [5954] = {.lex_state = 71, .external_lex_state = 2}, - [5955] = {.lex_state = 380, .external_lex_state = 6}, - [5956] = {.lex_state = 21, .external_lex_state = 5}, - [5957] = {.lex_state = 380, .external_lex_state = 5}, + [5953] = {.lex_state = 380, .external_lex_state = 2}, + [5954] = {.lex_state = 54, .external_lex_state = 2}, + [5955] = {.lex_state = 380, .external_lex_state = 5}, + [5956] = {.lex_state = 380, .external_lex_state = 5}, + [5957] = {.lex_state = 54, .external_lex_state = 2}, [5958] = {.lex_state = 380, .external_lex_state = 5}, - [5959] = {.lex_state = 380, .external_lex_state = 5}, - [5960] = {.lex_state = 380, .external_lex_state = 6}, - [5961] = {.lex_state = 380, .external_lex_state = 2}, + [5959] = {.lex_state = 380, .external_lex_state = 2}, + [5960] = {.lex_state = 380, .external_lex_state = 5}, + [5961] = {.lex_state = 380, .external_lex_state = 5}, [5962] = {.lex_state = 380, .external_lex_state = 5}, - [5963] = {.lex_state = 71, .external_lex_state = 2}, + [5963] = {.lex_state = 380, .external_lex_state = 5}, [5964] = {.lex_state = 380, .external_lex_state = 5}, [5965] = {.lex_state = 380, .external_lex_state = 5}, [5966] = {.lex_state = 380, .external_lex_state = 5}, - [5967] = {.lex_state = 380, .external_lex_state = 2}, + [5967] = {.lex_state = 54, .external_lex_state = 2}, [5968] = {.lex_state = 380, .external_lex_state = 5}, - [5969] = {.lex_state = 380, .external_lex_state = 2}, - [5970] = {.lex_state = 54, .external_lex_state = 2}, - [5971] = {.lex_state = 380, .external_lex_state = 6}, + [5969] = {.lex_state = 54, .external_lex_state = 2}, + [5970] = {.lex_state = 380, .external_lex_state = 5}, + [5971] = {.lex_state = 54, .external_lex_state = 2}, [5972] = {.lex_state = 380, .external_lex_state = 5}, - [5973] = {.lex_state = 54, .external_lex_state = 5}, - [5974] = {.lex_state = 380, .external_lex_state = 5}, + [5973] = {.lex_state = 54, .external_lex_state = 2}, + [5974] = {.lex_state = 54, .external_lex_state = 2}, [5975] = {.lex_state = 380, .external_lex_state = 5}, - [5976] = {.lex_state = 380, .external_lex_state = 5}, - [5977] = {.lex_state = 54, .external_lex_state = 2}, + [5976] = {.lex_state = 54, .external_lex_state = 2}, + [5977] = {.lex_state = 380, .external_lex_state = 5}, [5978] = {.lex_state = 380, .external_lex_state = 5}, - [5979] = {.lex_state = 380, .external_lex_state = 5}, - [5980] = {.lex_state = 380, .external_lex_state = 5}, - [5981] = {.lex_state = 380, .external_lex_state = 2}, - [5982] = {.lex_state = 54, .external_lex_state = 2}, - [5983] = {.lex_state = 380, .external_lex_state = 6}, - [5984] = {.lex_state = 380, .external_lex_state = 5}, - [5985] = {.lex_state = 380, .external_lex_state = 2}, + [5979] = {.lex_state = 54, .external_lex_state = 2}, + [5980] = {.lex_state = 54, .external_lex_state = 2}, + [5981] = {.lex_state = 54, .external_lex_state = 2}, + [5982] = {.lex_state = 380, .external_lex_state = 5}, + [5983] = {.lex_state = 380, .external_lex_state = 5}, + [5984] = {.lex_state = 380, .external_lex_state = 2}, + [5985] = {.lex_state = 380, .external_lex_state = 5}, [5986] = {.lex_state = 380, .external_lex_state = 2}, - [5987] = {.lex_state = 54, .external_lex_state = 2}, + [5987] = {.lex_state = 380, .external_lex_state = 5}, [5988] = {.lex_state = 380, .external_lex_state = 5}, [5989] = {.lex_state = 380, .external_lex_state = 5}, - [5990] = {.lex_state = 54, .external_lex_state = 2}, + [5990] = {.lex_state = 55, .external_lex_state = 2}, [5991] = {.lex_state = 380, .external_lex_state = 5}, [5992] = {.lex_state = 380, .external_lex_state = 5}, [5993] = {.lex_state = 380, .external_lex_state = 5}, - [5994] = {.lex_state = 54, .external_lex_state = 2}, - [5995] = {.lex_state = 54, .external_lex_state = 2}, - [5996] = {.lex_state = 380, .external_lex_state = 6}, + [5994] = {.lex_state = 380, .external_lex_state = 5}, + [5995] = {.lex_state = 380, .external_lex_state = 5}, + [5996] = {.lex_state = 380, .external_lex_state = 5}, [5997] = {.lex_state = 380, .external_lex_state = 5}, - [5998] = {.lex_state = 54, .external_lex_state = 5}, + [5998] = {.lex_state = 54, .external_lex_state = 2}, [5999] = {.lex_state = 380, .external_lex_state = 5}, - [6000] = {.lex_state = 380, .external_lex_state = 2}, - [6001] = {.lex_state = 380, .external_lex_state = 2}, - [6002] = {.lex_state = 54, .external_lex_state = 5}, - [6003] = {.lex_state = 380, .external_lex_state = 6}, - [6004] = {.lex_state = 54, .external_lex_state = 2}, + [6000] = {.lex_state = 54, .external_lex_state = 2}, + [6001] = {.lex_state = 380, .external_lex_state = 5}, + [6002] = {.lex_state = 380, .external_lex_state = 5}, + [6003] = {.lex_state = 54, .external_lex_state = 2}, + [6004] = {.lex_state = 380, .external_lex_state = 5}, [6005] = {.lex_state = 380, .external_lex_state = 5}, [6006] = {.lex_state = 380, .external_lex_state = 5}, - [6007] = {.lex_state = 54, .external_lex_state = 2}, - [6008] = {.lex_state = 54, .external_lex_state = 5}, - [6009] = {.lex_state = 54, .external_lex_state = 2}, + [6007] = {.lex_state = 380, .external_lex_state = 5}, + [6008] = {.lex_state = 380, .external_lex_state = 5}, + [6009] = {.lex_state = 380, .external_lex_state = 5}, [6010] = {.lex_state = 380, .external_lex_state = 5}, [6011] = {.lex_state = 380, .external_lex_state = 5}, - [6012] = {.lex_state = 380, .external_lex_state = 5}, - [6013] = {.lex_state = 54, .external_lex_state = 5}, - [6014] = {.lex_state = 71, .external_lex_state = 2}, + [6012] = {.lex_state = 54, .external_lex_state = 2}, + [6013] = {.lex_state = 380, .external_lex_state = 5}, + [6014] = {.lex_state = 380, .external_lex_state = 5}, [6015] = {.lex_state = 380, .external_lex_state = 5}, [6016] = {.lex_state = 380, .external_lex_state = 5}, - [6017] = {.lex_state = 380, .external_lex_state = 6}, - [6018] = {.lex_state = 380, .external_lex_state = 5}, + [6017] = {.lex_state = 57, .external_lex_state = 2}, + [6018] = {.lex_state = 56, .external_lex_state = 2}, [6019] = {.lex_state = 380, .external_lex_state = 5}, [6020] = {.lex_state = 380, .external_lex_state = 5}, [6021] = {.lex_state = 380, .external_lex_state = 5}, - [6022] = {.lex_state = 54, .external_lex_state = 2}, - [6023] = {.lex_state = 380, .external_lex_state = 5}, - [6024] = {.lex_state = 380, .external_lex_state = 6}, - [6025] = {.lex_state = 380, .external_lex_state = 5}, + [6022] = {.lex_state = 380, .external_lex_state = 5}, + [6023] = {.lex_state = 54, .external_lex_state = 2}, + [6024] = {.lex_state = 380, .external_lex_state = 5}, + [6025] = {.lex_state = 54, .external_lex_state = 2}, [6026] = {.lex_state = 380, .external_lex_state = 5}, [6027] = {.lex_state = 380, .external_lex_state = 5}, [6028] = {.lex_state = 380, .external_lex_state = 5}, [6029] = {.lex_state = 380, .external_lex_state = 5}, - [6030] = {.lex_state = 380, .external_lex_state = 2}, - [6031] = {.lex_state = 380, .external_lex_state = 5}, + [6030] = {.lex_state = 380, .external_lex_state = 5}, + [6031] = {.lex_state = 54, .external_lex_state = 5}, [6032] = {.lex_state = 380, .external_lex_state = 5}, [6033] = {.lex_state = 380, .external_lex_state = 5}, [6034] = {.lex_state = 380, .external_lex_state = 5}, - [6035] = {.lex_state = 380, .external_lex_state = 5}, - [6036] = {.lex_state = 54, .external_lex_state = 2}, - [6037] = {.lex_state = 380, .external_lex_state = 5}, - [6038] = {.lex_state = 380, .external_lex_state = 6}, - [6039] = {.lex_state = 380, .external_lex_state = 5}, + [6035] = {.lex_state = 380, .external_lex_state = 2}, + [6036] = {.lex_state = 380, .external_lex_state = 5}, + [6037] = {.lex_state = 54, .external_lex_state = 5}, + [6038] = {.lex_state = 54, .external_lex_state = 2}, + [6039] = {.lex_state = 380, .external_lex_state = 6}, [6040] = {.lex_state = 380, .external_lex_state = 5}, [6041] = {.lex_state = 380, .external_lex_state = 5}, [6042] = {.lex_state = 380, .external_lex_state = 5}, - [6043] = {.lex_state = 380, .external_lex_state = 2}, + [6043] = {.lex_state = 380, .external_lex_state = 5}, [6044] = {.lex_state = 380, .external_lex_state = 5}, [6045] = {.lex_state = 380, .external_lex_state = 2}, - [6046] = {.lex_state = 380, .external_lex_state = 8}, - [6047] = {.lex_state = 54, .external_lex_state = 5}, - [6048] = {.lex_state = 380, .external_lex_state = 5}, - [6049] = {.lex_state = 54, .external_lex_state = 2}, - [6050] = {.lex_state = 380, .external_lex_state = 2}, - [6051] = {.lex_state = 54, .external_lex_state = 5}, - [6052] = {.lex_state = 380, .external_lex_state = 6}, - [6053] = {.lex_state = 54, .external_lex_state = 2}, - [6054] = {.lex_state = 54, .external_lex_state = 2}, - [6055] = {.lex_state = 380, .external_lex_state = 2}, - [6056] = {.lex_state = 380, .external_lex_state = 6}, - [6057] = {.lex_state = 54, .external_lex_state = 5}, - [6058] = {.lex_state = 380, .external_lex_state = 6}, - [6059] = {.lex_state = 54, .external_lex_state = 2}, - [6060] = {.lex_state = 54, .external_lex_state = 2}, - [6061] = {.lex_state = 71, .external_lex_state = 2}, - [6062] = {.lex_state = 380, .external_lex_state = 6}, - [6063] = {.lex_state = 54, .external_lex_state = 2}, + [6046] = {.lex_state = 54, .external_lex_state = 2}, + [6047] = {.lex_state = 380, .external_lex_state = 5}, + [6048] = {.lex_state = 380, .external_lex_state = 6}, + [6049] = {.lex_state = 54, .external_lex_state = 5}, + [6050] = {.lex_state = 380, .external_lex_state = 5}, + [6051] = {.lex_state = 380, .external_lex_state = 6}, + [6052] = {.lex_state = 54, .external_lex_state = 2}, + [6053] = {.lex_state = 380, .external_lex_state = 5}, + [6054] = {.lex_state = 380, .external_lex_state = 5}, + [6055] = {.lex_state = 380, .external_lex_state = 8}, + [6056] = {.lex_state = 380, .external_lex_state = 5}, + [6057] = {.lex_state = 380, .external_lex_state = 2}, + [6058] = {.lex_state = 380, .external_lex_state = 5}, + [6059] = {.lex_state = 380, .external_lex_state = 5}, + [6060] = {.lex_state = 380, .external_lex_state = 5}, + [6061] = {.lex_state = 380, .external_lex_state = 5}, + [6062] = {.lex_state = 54, .external_lex_state = 2}, + [6063] = {.lex_state = 57, .external_lex_state = 2}, [6064] = {.lex_state = 380, .external_lex_state = 5}, - [6065] = {.lex_state = 380, .external_lex_state = 2}, - [6066] = {.lex_state = 54, .external_lex_state = 2}, - [6067] = {.lex_state = 54, .external_lex_state = 2}, - [6068] = {.lex_state = 380, .external_lex_state = 5}, + [6065] = {.lex_state = 54, .external_lex_state = 2}, + [6066] = {.lex_state = 380, .external_lex_state = 5}, + [6067] = {.lex_state = 56, .external_lex_state = 5}, + [6068] = {.lex_state = 56, .external_lex_state = 5}, [6069] = {.lex_state = 380, .external_lex_state = 5}, [6070] = {.lex_state = 71, .external_lex_state = 2}, - [6071] = {.lex_state = 380, .external_lex_state = 6}, - [6072] = {.lex_state = 54, .external_lex_state = 2}, + [6071] = {.lex_state = 380, .external_lex_state = 5}, + [6072] = {.lex_state = 380, .external_lex_state = 6}, [6073] = {.lex_state = 380, .external_lex_state = 5}, - [6074] = {.lex_state = 54, .external_lex_state = 5}, - [6075] = {.lex_state = 54, .external_lex_state = 2}, + [6074] = {.lex_state = 54, .external_lex_state = 2}, + [6075] = {.lex_state = 380, .external_lex_state = 5}, [6076] = {.lex_state = 380, .external_lex_state = 5}, [6077] = {.lex_state = 380, .external_lex_state = 5}, - [6078] = {.lex_state = 54, .external_lex_state = 2}, + [6078] = {.lex_state = 380, .external_lex_state = 5}, [6079] = {.lex_state = 380, .external_lex_state = 5}, - [6080] = {.lex_state = 380, .external_lex_state = 6}, + [6080] = {.lex_state = 380, .external_lex_state = 5}, [6081] = {.lex_state = 380, .external_lex_state = 5}, - [6082] = {.lex_state = 380, .external_lex_state = 2}, - [6083] = {.lex_state = 380, .external_lex_state = 5}, + [6082] = {.lex_state = 380, .external_lex_state = 5}, + [6083] = {.lex_state = 380, .external_lex_state = 8}, [6084] = {.lex_state = 54, .external_lex_state = 2}, - [6085] = {.lex_state = 54, .external_lex_state = 2}, - [6086] = {.lex_state = 54, .external_lex_state = 5}, - [6087] = {.lex_state = 54, .external_lex_state = 5}, - [6088] = {.lex_state = 380, .external_lex_state = 6}, - [6089] = {.lex_state = 380, .external_lex_state = 5}, - [6090] = {.lex_state = 54, .external_lex_state = 2}, - [6091] = {.lex_state = 54, .external_lex_state = 2}, - [6092] = {.lex_state = 57, .external_lex_state = 2}, - [6093] = {.lex_state = 380, .external_lex_state = 5}, - [6094] = {.lex_state = 380, .external_lex_state = 5}, - [6095] = {.lex_state = 380, .external_lex_state = 2}, + [6085] = {.lex_state = 380, .external_lex_state = 5}, + [6086] = {.lex_state = 380, .external_lex_state = 5}, + [6087] = {.lex_state = 380, .external_lex_state = 2}, + [6088] = {.lex_state = 380, .external_lex_state = 5}, + [6089] = {.lex_state = 54, .external_lex_state = 2}, + [6090] = {.lex_state = 380, .external_lex_state = 6}, + [6091] = {.lex_state = 380, .external_lex_state = 5}, + [6092] = {.lex_state = 380, .external_lex_state = 5}, + [6093] = {.lex_state = 64, .external_lex_state = 9}, + [6094] = {.lex_state = 64, .external_lex_state = 9}, + [6095] = {.lex_state = 380, .external_lex_state = 5}, [6096] = {.lex_state = 380, .external_lex_state = 5}, - [6097] = {.lex_state = 380, .external_lex_state = 6}, - [6098] = {.lex_state = 380, .external_lex_state = 5}, - [6099] = {.lex_state = 54, .external_lex_state = 5}, - [6100] = {.lex_state = 380, .external_lex_state = 6}, - [6101] = {.lex_state = 380, .external_lex_state = 5}, - [6102] = {.lex_state = 380, .external_lex_state = 5}, - [6103] = {.lex_state = 54, .external_lex_state = 2}, - [6104] = {.lex_state = 21, .external_lex_state = 5}, + [6097] = {.lex_state = 380, .external_lex_state = 5}, + [6098] = {.lex_state = 67, .external_lex_state = 9}, + [6099] = {.lex_state = 54, .external_lex_state = 2}, + [6100] = {.lex_state = 54, .external_lex_state = 2}, + [6101] = {.lex_state = 54, .external_lex_state = 2}, + [6102] = {.lex_state = 380, .external_lex_state = 2}, + [6103] = {.lex_state = 380, .external_lex_state = 2}, + [6104] = {.lex_state = 380, .external_lex_state = 2}, [6105] = {.lex_state = 54, .external_lex_state = 2}, - [6106] = {.lex_state = 71, .external_lex_state = 2}, - [6107] = {.lex_state = 380, .external_lex_state = 6}, - [6108] = {.lex_state = 380, .external_lex_state = 5}, - [6109] = {.lex_state = 54, .external_lex_state = 5}, - [6110] = {.lex_state = 380, .external_lex_state = 5}, + [6106] = {.lex_state = 21, .external_lex_state = 5}, + [6107] = {.lex_state = 64, .external_lex_state = 9}, + [6108] = {.lex_state = 67, .external_lex_state = 9}, + [6109] = {.lex_state = 380, .external_lex_state = 2}, + [6110] = {.lex_state = 57, .external_lex_state = 2}, [6111] = {.lex_state = 380, .external_lex_state = 5}, - [6112] = {.lex_state = 380, .external_lex_state = 6}, - [6113] = {.lex_state = 380, .external_lex_state = 5}, - [6114] = {.lex_state = 54, .external_lex_state = 2}, - [6115] = {.lex_state = 54, .external_lex_state = 2}, + [6112] = {.lex_state = 380, .external_lex_state = 5}, + [6113] = {.lex_state = 380, .external_lex_state = 2}, + [6114] = {.lex_state = 64, .external_lex_state = 9}, + [6115] = {.lex_state = 67, .external_lex_state = 9}, [6116] = {.lex_state = 380, .external_lex_state = 5}, [6117] = {.lex_state = 54, .external_lex_state = 2}, [6118] = {.lex_state = 54, .external_lex_state = 2}, - [6119] = {.lex_state = 380, .external_lex_state = 6}, - [6120] = {.lex_state = 380, .external_lex_state = 5}, + [6119] = {.lex_state = 1, .external_lex_state = 2}, + [6120] = {.lex_state = 380, .external_lex_state = 2}, [6121] = {.lex_state = 54, .external_lex_state = 2}, [6122] = {.lex_state = 54, .external_lex_state = 2}, - [6123] = {.lex_state = 54, .external_lex_state = 2}, - [6124] = {.lex_state = 54, .external_lex_state = 5}, + [6123] = {.lex_state = 380, .external_lex_state = 2}, + [6124] = {.lex_state = 380, .external_lex_state = 2}, [6125] = {.lex_state = 54, .external_lex_state = 2}, [6126] = {.lex_state = 380, .external_lex_state = 5}, - [6127] = {.lex_state = 380, .external_lex_state = 5}, - [6128] = {.lex_state = 380, .external_lex_state = 5}, + [6127] = {.lex_state = 54, .external_lex_state = 2}, + [6128] = {.lex_state = 57, .external_lex_state = 2}, [6129] = {.lex_state = 380, .external_lex_state = 5}, - [6130] = {.lex_state = 380, .external_lex_state = 2}, - [6131] = {.lex_state = 380, .external_lex_state = 5}, - [6132] = {.lex_state = 380, .external_lex_state = 5}, - [6133] = {.lex_state = 380, .external_lex_state = 5}, - [6134] = {.lex_state = 380, .external_lex_state = 5}, + [6130] = {.lex_state = 380, .external_lex_state = 5}, + [6131] = {.lex_state = 54, .external_lex_state = 2}, + [6132] = {.lex_state = 54, .external_lex_state = 2}, + [6133] = {.lex_state = 54, .external_lex_state = 2}, + [6134] = {.lex_state = 54, .external_lex_state = 2}, [6135] = {.lex_state = 54, .external_lex_state = 2}, - [6136] = {.lex_state = 380, .external_lex_state = 5}, - [6137] = {.lex_state = 380, .external_lex_state = 5}, - [6138] = {.lex_state = 380, .external_lex_state = 5}, - [6139] = {.lex_state = 54, .external_lex_state = 2}, + [6136] = {.lex_state = 56, .external_lex_state = 2}, + [6137] = {.lex_state = 380, .external_lex_state = 7}, + [6138] = {.lex_state = 380, .external_lex_state = 2}, + [6139] = {.lex_state = 380, .external_lex_state = 2}, [6140] = {.lex_state = 380, .external_lex_state = 5}, - [6141] = {.lex_state = 380, .external_lex_state = 5}, + [6141] = {.lex_state = 1, .external_lex_state = 2}, [6142] = {.lex_state = 54, .external_lex_state = 2}, - [6143] = {.lex_state = 380, .external_lex_state = 5}, - [6144] = {.lex_state = 54, .external_lex_state = 2}, - [6145] = {.lex_state = 380, .external_lex_state = 5}, - [6146] = {.lex_state = 54, .external_lex_state = 2}, - [6147] = {.lex_state = 54, .external_lex_state = 2}, - [6148] = {.lex_state = 54, .external_lex_state = 2}, - [6149] = {.lex_state = 380, .external_lex_state = 5}, - [6150] = {.lex_state = 54, .external_lex_state = 2}, - [6151] = {.lex_state = 54, .external_lex_state = 2}, + [6143] = {.lex_state = 380, .external_lex_state = 2}, + [6144] = {.lex_state = 380, .external_lex_state = 5}, + [6145] = {.lex_state = 64, .external_lex_state = 9}, + [6146] = {.lex_state = 67, .external_lex_state = 9}, + [6147] = {.lex_state = 380, .external_lex_state = 5}, + [6148] = {.lex_state = 64, .external_lex_state = 9}, + [6149] = {.lex_state = 67, .external_lex_state = 9}, + [6150] = {.lex_state = 380, .external_lex_state = 5}, + [6151] = {.lex_state = 380, .external_lex_state = 5}, [6152] = {.lex_state = 380, .external_lex_state = 5}, - [6153] = {.lex_state = 54, .external_lex_state = 2}, + [6153] = {.lex_state = 380, .external_lex_state = 5}, [6154] = {.lex_state = 380, .external_lex_state = 5}, - [6155] = {.lex_state = 380, .external_lex_state = 5}, - [6156] = {.lex_state = 54, .external_lex_state = 2}, - [6157] = {.lex_state = 380, .external_lex_state = 5}, + [6155] = {.lex_state = 54, .external_lex_state = 2}, + [6156] = {.lex_state = 380, .external_lex_state = 5}, + [6157] = {.lex_state = 1, .external_lex_state = 2}, [6158] = {.lex_state = 380, .external_lex_state = 5}, [6159] = {.lex_state = 380, .external_lex_state = 5}, - [6160] = {.lex_state = 380, .external_lex_state = 5}, + [6160] = {.lex_state = 380, .external_lex_state = 2}, [6161] = {.lex_state = 380, .external_lex_state = 5}, - [6162] = {.lex_state = 380, .external_lex_state = 5}, + [6162] = {.lex_state = 380, .external_lex_state = 2}, [6163] = {.lex_state = 380, .external_lex_state = 5}, [6164] = {.lex_state = 380, .external_lex_state = 5}, - [6165] = {.lex_state = 380, .external_lex_state = 5}, + [6165] = {.lex_state = 54, .external_lex_state = 2}, [6166] = {.lex_state = 54, .external_lex_state = 2}, - [6167] = {.lex_state = 380, .external_lex_state = 5}, - [6168] = {.lex_state = 380, .external_lex_state = 5}, - [6169] = {.lex_state = 54, .external_lex_state = 2}, + [6167] = {.lex_state = 54, .external_lex_state = 2}, + [6168] = {.lex_state = 380, .external_lex_state = 2}, + [6169] = {.lex_state = 380, .external_lex_state = 2}, [6170] = {.lex_state = 380, .external_lex_state = 2}, - [6171] = {.lex_state = 380, .external_lex_state = 5}, - [6172] = {.lex_state = 380, .external_lex_state = 5}, - [6173] = {.lex_state = 380, .external_lex_state = 5}, - [6174] = {.lex_state = 380, .external_lex_state = 8}, - [6175] = {.lex_state = 380, .external_lex_state = 8}, - [6176] = {.lex_state = 380, .external_lex_state = 5}, - [6177] = {.lex_state = 380, .external_lex_state = 8}, - [6178] = {.lex_state = 54, .external_lex_state = 2}, - [6179] = {.lex_state = 54, .external_lex_state = 2}, - [6180] = {.lex_state = 380, .external_lex_state = 5}, - [6181] = {.lex_state = 380, .external_lex_state = 2}, - [6182] = {.lex_state = 380, .external_lex_state = 5}, - [6183] = {.lex_state = 380, .external_lex_state = 5}, - [6184] = {.lex_state = 54, .external_lex_state = 2}, - [6185] = {.lex_state = 54, .external_lex_state = 5}, - [6186] = {.lex_state = 54, .external_lex_state = 5}, - [6187] = {.lex_state = 380, .external_lex_state = 5}, - [6188] = {.lex_state = 380, .external_lex_state = 6}, - [6189] = {.lex_state = 380, .external_lex_state = 5}, - [6190] = {.lex_state = 380, .external_lex_state = 5}, - [6191] = {.lex_state = 71, .external_lex_state = 2}, - [6192] = {.lex_state = 380, .external_lex_state = 5}, - [6193] = {.lex_state = 380, .external_lex_state = 2}, - [6194] = {.lex_state = 380, .external_lex_state = 5}, - [6195] = {.lex_state = 380, .external_lex_state = 5}, - [6196] = {.lex_state = 380, .external_lex_state = 6}, - [6197] = {.lex_state = 380, .external_lex_state = 5}, - [6198] = {.lex_state = 380, .external_lex_state = 5}, - [6199] = {.lex_state = 380, .external_lex_state = 5}, - [6200] = {.lex_state = 71, .external_lex_state = 2}, - [6201] = {.lex_state = 380, .external_lex_state = 5}, - [6202] = {.lex_state = 54, .external_lex_state = 5}, + [6171] = {.lex_state = 380, .external_lex_state = 2}, + [6172] = {.lex_state = 380, .external_lex_state = 6}, + [6173] = {.lex_state = 56, .external_lex_state = 2}, + [6174] = {.lex_state = 380, .external_lex_state = 2}, + [6175] = {.lex_state = 67, .external_lex_state = 9}, + [6176] = {.lex_state = 64, .external_lex_state = 9}, + [6177] = {.lex_state = 67, .external_lex_state = 9}, + [6178] = {.lex_state = 64, .external_lex_state = 9}, + [6179] = {.lex_state = 380, .external_lex_state = 2}, + [6180] = {.lex_state = 54, .external_lex_state = 2}, + [6181] = {.lex_state = 67, .external_lex_state = 9}, + [6182] = {.lex_state = 64, .external_lex_state = 9}, + [6183] = {.lex_state = 67, .external_lex_state = 9}, + [6184] = {.lex_state = 64, .external_lex_state = 9}, + [6185] = {.lex_state = 67, .external_lex_state = 9}, + [6186] = {.lex_state = 64, .external_lex_state = 9}, + [6187] = {.lex_state = 67, .external_lex_state = 9}, + [6188] = {.lex_state = 64, .external_lex_state = 9}, + [6189] = {.lex_state = 54, .external_lex_state = 2}, + [6190] = {.lex_state = 67, .external_lex_state = 9}, + [6191] = {.lex_state = 64, .external_lex_state = 9}, + [6192] = {.lex_state = 54, .external_lex_state = 2}, + [6193] = {.lex_state = 67, .external_lex_state = 9}, + [6194] = {.lex_state = 64, .external_lex_state = 9}, + [6195] = {.lex_state = 67, .external_lex_state = 9}, + [6196] = {.lex_state = 64, .external_lex_state = 9}, + [6197] = {.lex_state = 67, .external_lex_state = 9}, + [6198] = {.lex_state = 64, .external_lex_state = 9}, + [6199] = {.lex_state = 67, .external_lex_state = 9}, + [6200] = {.lex_state = 64, .external_lex_state = 9}, + [6201] = {.lex_state = 67, .external_lex_state = 9}, + [6202] = {.lex_state = 64, .external_lex_state = 9}, [6203] = {.lex_state = 380, .external_lex_state = 5}, - [6204] = {.lex_state = 54, .external_lex_state = 2}, - [6205] = {.lex_state = 380, .external_lex_state = 6}, - [6206] = {.lex_state = 380, .external_lex_state = 5}, - [6207] = {.lex_state = 380, .external_lex_state = 5}, - [6208] = {.lex_state = 380, .external_lex_state = 5}, - [6209] = {.lex_state = 380, .external_lex_state = 5}, - [6210] = {.lex_state = 380, .external_lex_state = 5}, - [6211] = {.lex_state = 380, .external_lex_state = 5}, - [6212] = {.lex_state = 71, .external_lex_state = 2}, - [6213] = {.lex_state = 380, .external_lex_state = 5}, - [6214] = {.lex_state = 54, .external_lex_state = 2}, - [6215] = {.lex_state = 380, .external_lex_state = 5}, - [6216] = {.lex_state = 380, .external_lex_state = 5}, - [6217] = {.lex_state = 380, .external_lex_state = 5}, + [6204] = {.lex_state = 380, .external_lex_state = 2}, + [6205] = {.lex_state = 380, .external_lex_state = 2}, + [6206] = {.lex_state = 54, .external_lex_state = 2}, + [6207] = {.lex_state = 67, .external_lex_state = 9}, + [6208] = {.lex_state = 64, .external_lex_state = 9}, + [6209] = {.lex_state = 67, .external_lex_state = 9}, + [6210] = {.lex_state = 64, .external_lex_state = 9}, + [6211] = {.lex_state = 54, .external_lex_state = 2}, + [6212] = {.lex_state = 56, .external_lex_state = 2}, + [6213] = {.lex_state = 67, .external_lex_state = 9}, + [6214] = {.lex_state = 64, .external_lex_state = 9}, + [6215] = {.lex_state = 67, .external_lex_state = 9}, + [6216] = {.lex_state = 64, .external_lex_state = 9}, + [6217] = {.lex_state = 83, .external_lex_state = 2}, [6218] = {.lex_state = 380, .external_lex_state = 5}, - [6219] = {.lex_state = 380, .external_lex_state = 5}, + [6219] = {.lex_state = 380, .external_lex_state = 2}, [6220] = {.lex_state = 380, .external_lex_state = 5}, - [6221] = {.lex_state = 71, .external_lex_state = 2}, - [6222] = {.lex_state = 380, .external_lex_state = 5}, - [6223] = {.lex_state = 380, .external_lex_state = 6}, + [6221] = {.lex_state = 380, .external_lex_state = 2}, + [6222] = {.lex_state = 57, .external_lex_state = 2}, + [6223] = {.lex_state = 380, .external_lex_state = 5}, [6224] = {.lex_state = 380, .external_lex_state = 5}, - [6225] = {.lex_state = 57, .external_lex_state = 2}, - [6226] = {.lex_state = 380, .external_lex_state = 5}, - [6227] = {.lex_state = 380, .external_lex_state = 2}, - [6228] = {.lex_state = 380, .external_lex_state = 5}, - [6229] = {.lex_state = 380, .external_lex_state = 5}, + [6225] = {.lex_state = 380, .external_lex_state = 5}, + [6226] = {.lex_state = 67, .external_lex_state = 9}, + [6227] = {.lex_state = 64, .external_lex_state = 9}, + [6228] = {.lex_state = 67, .external_lex_state = 9}, + [6229] = {.lex_state = 64, .external_lex_state = 9}, [6230] = {.lex_state = 380, .external_lex_state = 5}, - [6231] = {.lex_state = 380, .external_lex_state = 6}, + [6231] = {.lex_state = 380, .external_lex_state = 5}, [6232] = {.lex_state = 380, .external_lex_state = 5}, - [6233] = {.lex_state = 71, .external_lex_state = 2}, - [6234] = {.lex_state = 380, .external_lex_state = 6}, - [6235] = {.lex_state = 380, .external_lex_state = 6}, - [6236] = {.lex_state = 54, .external_lex_state = 2}, + [6233] = {.lex_state = 380, .external_lex_state = 5}, + [6234] = {.lex_state = 380, .external_lex_state = 5}, + [6235] = {.lex_state = 380, .external_lex_state = 5}, + [6236] = {.lex_state = 380, .external_lex_state = 5}, [6237] = {.lex_state = 380, .external_lex_state = 5}, - [6238] = {.lex_state = 380, .external_lex_state = 2}, + [6238] = {.lex_state = 380, .external_lex_state = 5}, [6239] = {.lex_state = 380, .external_lex_state = 5}, - [6240] = {.lex_state = 380, .external_lex_state = 2}, - [6241] = {.lex_state = 380, .external_lex_state = 5}, - [6242] = {.lex_state = 380, .external_lex_state = 6}, - [6243] = {.lex_state = 380, .external_lex_state = 2}, - [6244] = {.lex_state = 380, .external_lex_state = 5}, - [6245] = {.lex_state = 380, .external_lex_state = 6}, - [6246] = {.lex_state = 380, .external_lex_state = 5}, + [6240] = {.lex_state = 67, .external_lex_state = 9}, + [6241] = {.lex_state = 23, .external_lex_state = 2}, + [6242] = {.lex_state = 64, .external_lex_state = 9}, + [6243] = {.lex_state = 23, .external_lex_state = 2}, + [6244] = {.lex_state = 67, .external_lex_state = 9}, + [6245] = {.lex_state = 64, .external_lex_state = 9}, + [6246] = {.lex_state = 54, .external_lex_state = 2}, [6247] = {.lex_state = 380, .external_lex_state = 5}, - [6248] = {.lex_state = 380, .external_lex_state = 5}, - [6249] = {.lex_state = 380, .external_lex_state = 2}, + [6248] = {.lex_state = 54, .external_lex_state = 2}, + [6249] = {.lex_state = 57, .external_lex_state = 2}, [6250] = {.lex_state = 380, .external_lex_state = 5}, [6251] = {.lex_state = 380, .external_lex_state = 5}, - [6252] = {.lex_state = 56, .external_lex_state = 5}, + [6252] = {.lex_state = 380, .external_lex_state = 5}, [6253] = {.lex_state = 380, .external_lex_state = 5}, - [6254] = {.lex_state = 380, .external_lex_state = 5}, - [6255] = {.lex_state = 56, .external_lex_state = 5}, - [6256] = {.lex_state = 380, .external_lex_state = 5}, + [6254] = {.lex_state = 23, .external_lex_state = 2}, + [6255] = {.lex_state = 380, .external_lex_state = 5}, + [6256] = {.lex_state = 83, .external_lex_state = 2}, [6257] = {.lex_state = 380, .external_lex_state = 5}, - [6258] = {.lex_state = 54, .external_lex_state = 2}, + [6258] = {.lex_state = 380, .external_lex_state = 5}, [6259] = {.lex_state = 380, .external_lex_state = 5}, [6260] = {.lex_state = 380, .external_lex_state = 5}, [6261] = {.lex_state = 380, .external_lex_state = 5}, - [6262] = {.lex_state = 54, .external_lex_state = 2}, - [6263] = {.lex_state = 380, .external_lex_state = 5}, - [6264] = {.lex_state = 380, .external_lex_state = 5}, - [6265] = {.lex_state = 54, .external_lex_state = 2}, - [6266] = {.lex_state = 380, .external_lex_state = 5}, - [6267] = {.lex_state = 380, .external_lex_state = 5}, + [6262] = {.lex_state = 56, .external_lex_state = 2}, + [6263] = {.lex_state = 21, .external_lex_state = 2}, + [6264] = {.lex_state = 54, .external_lex_state = 2}, + [6265] = {.lex_state = 380, .external_lex_state = 5}, + [6266] = {.lex_state = 54, .external_lex_state = 2}, + [6267] = {.lex_state = 54, .external_lex_state = 2}, [6268] = {.lex_state = 380, .external_lex_state = 5}, - [6269] = {.lex_state = 54, .external_lex_state = 2}, - [6270] = {.lex_state = 54, .external_lex_state = 2}, - [6271] = {.lex_state = 54, .external_lex_state = 2}, - [6272] = {.lex_state = 380, .external_lex_state = 5}, - [6273] = {.lex_state = 380, .external_lex_state = 5}, + [6269] = {.lex_state = 67, .external_lex_state = 9}, + [6270] = {.lex_state = 64, .external_lex_state = 9}, + [6271] = {.lex_state = 67, .external_lex_state = 9}, + [6272] = {.lex_state = 64, .external_lex_state = 9}, + [6273] = {.lex_state = 1, .external_lex_state = 2}, [6274] = {.lex_state = 380, .external_lex_state = 5}, - [6275] = {.lex_state = 54, .external_lex_state = 2}, - [6276] = {.lex_state = 54, .external_lex_state = 2}, + [6275] = {.lex_state = 380, .external_lex_state = 5}, + [6276] = {.lex_state = 380, .external_lex_state = 5}, [6277] = {.lex_state = 380, .external_lex_state = 5}, [6278] = {.lex_state = 380, .external_lex_state = 5}, [6279] = {.lex_state = 380, .external_lex_state = 5}, [6280] = {.lex_state = 380, .external_lex_state = 5}, [6281] = {.lex_state = 380, .external_lex_state = 5}, - [6282] = {.lex_state = 380, .external_lex_state = 6}, - [6283] = {.lex_state = 380, .external_lex_state = 6}, - [6284] = {.lex_state = 380, .external_lex_state = 2}, + [6282] = {.lex_state = 380, .external_lex_state = 5}, + [6283] = {.lex_state = 380, .external_lex_state = 5}, + [6284] = {.lex_state = 380, .external_lex_state = 5}, [6285] = {.lex_state = 380, .external_lex_state = 5}, [6286] = {.lex_state = 380, .external_lex_state = 5}, [6287] = {.lex_state = 380, .external_lex_state = 5}, - [6288] = {.lex_state = 54, .external_lex_state = 5}, + [6288] = {.lex_state = 54, .external_lex_state = 2}, [6289] = {.lex_state = 380, .external_lex_state = 5}, [6290] = {.lex_state = 380, .external_lex_state = 5}, [6291] = {.lex_state = 380, .external_lex_state = 5}, - [6292] = {.lex_state = 54, .external_lex_state = 5}, + [6292] = {.lex_state = 380, .external_lex_state = 5}, [6293] = {.lex_state = 380, .external_lex_state = 5}, - [6294] = {.lex_state = 380, .external_lex_state = 6}, - [6295] = {.lex_state = 380, .external_lex_state = 8}, - [6296] = {.lex_state = 380, .external_lex_state = 5}, + [6294] = {.lex_state = 57, .external_lex_state = 2}, + [6295] = {.lex_state = 56, .external_lex_state = 2}, + [6296] = {.lex_state = 380, .external_lex_state = 2}, [6297] = {.lex_state = 380, .external_lex_state = 5}, - [6298] = {.lex_state = 380, .external_lex_state = 5}, - [6299] = {.lex_state = 54, .external_lex_state = 5}, - [6300] = {.lex_state = 380, .external_lex_state = 5}, - [6301] = {.lex_state = 54, .external_lex_state = 2}, - [6302] = {.lex_state = 380, .external_lex_state = 5}, - [6303] = {.lex_state = 380, .external_lex_state = 2}, - [6304] = {.lex_state = 380, .external_lex_state = 2}, - [6305] = {.lex_state = 380, .external_lex_state = 5}, - [6306] = {.lex_state = 380, .external_lex_state = 6}, - [6307] = {.lex_state = 380, .external_lex_state = 5}, - [6308] = {.lex_state = 54, .external_lex_state = 5}, - [6309] = {.lex_state = 380, .external_lex_state = 2}, - [6310] = {.lex_state = 380, .external_lex_state = 6}, - [6311] = {.lex_state = 54, .external_lex_state = 2}, - [6312] = {.lex_state = 380, .external_lex_state = 2}, - [6313] = {.lex_state = 64, .external_lex_state = 9}, + [6298] = {.lex_state = 380, .external_lex_state = 2}, + [6299] = {.lex_state = 380, .external_lex_state = 5}, + [6300] = {.lex_state = 67, .external_lex_state = 9}, + [6301] = {.lex_state = 64, .external_lex_state = 9}, + [6302] = {.lex_state = 67, .external_lex_state = 9}, + [6303] = {.lex_state = 64, .external_lex_state = 9}, + [6304] = {.lex_state = 54, .external_lex_state = 2}, + [6305] = {.lex_state = 83, .external_lex_state = 2}, + [6306] = {.lex_state = 54, .external_lex_state = 2}, + [6307] = {.lex_state = 54, .external_lex_state = 2}, + [6308] = {.lex_state = 380, .external_lex_state = 2}, + [6309] = {.lex_state = 54, .external_lex_state = 2}, + [6310] = {.lex_state = 23, .external_lex_state = 2}, + [6311] = {.lex_state = 380, .external_lex_state = 5}, + [6312] = {.lex_state = 54, .external_lex_state = 2}, + [6313] = {.lex_state = 380, .external_lex_state = 5}, [6314] = {.lex_state = 54, .external_lex_state = 2}, - [6315] = {.lex_state = 67, .external_lex_state = 9}, - [6316] = {.lex_state = 64, .external_lex_state = 9}, - [6317] = {.lex_state = 23, .external_lex_state = 2}, - [6318] = {.lex_state = 56, .external_lex_state = 2}, - [6319] = {.lex_state = 21, .external_lex_state = 5}, - [6320] = {.lex_state = 67, .external_lex_state = 9}, - [6321] = {.lex_state = 64, .external_lex_state = 9}, - [6322] = {.lex_state = 54, .external_lex_state = 2}, - [6323] = {.lex_state = 380, .external_lex_state = 2}, + [6315] = {.lex_state = 380, .external_lex_state = 5}, + [6316] = {.lex_state = 380, .external_lex_state = 5}, + [6317] = {.lex_state = 380, .external_lex_state = 5}, + [6318] = {.lex_state = 380, .external_lex_state = 5}, + [6319] = {.lex_state = 380, .external_lex_state = 5}, + [6320] = {.lex_state = 380, .external_lex_state = 5}, + [6321] = {.lex_state = 54, .external_lex_state = 2}, + [6322] = {.lex_state = 380, .external_lex_state = 7}, + [6323] = {.lex_state = 54, .external_lex_state = 2}, [6324] = {.lex_state = 380, .external_lex_state = 2}, - [6325] = {.lex_state = 380, .external_lex_state = 5}, + [6325] = {.lex_state = 54, .external_lex_state = 2}, [6326] = {.lex_state = 54, .external_lex_state = 2}, [6327] = {.lex_state = 380, .external_lex_state = 5}, - [6328] = {.lex_state = 380, .external_lex_state = 2}, + [6328] = {.lex_state = 380, .external_lex_state = 5}, [6329] = {.lex_state = 380, .external_lex_state = 5}, - [6330] = {.lex_state = 380, .external_lex_state = 2}, + [6330] = {.lex_state = 380, .external_lex_state = 5}, [6331] = {.lex_state = 56, .external_lex_state = 2}, - [6332] = {.lex_state = 380, .external_lex_state = 5}, - [6333] = {.lex_state = 380, .external_lex_state = 2}, + [6332] = {.lex_state = 56, .external_lex_state = 2}, + [6333] = {.lex_state = 54, .external_lex_state = 2}, [6334] = {.lex_state = 380, .external_lex_state = 5}, - [6335] = {.lex_state = 380, .external_lex_state = 5}, - [6336] = {.lex_state = 380, .external_lex_state = 5}, - [6337] = {.lex_state = 54, .external_lex_state = 2}, - [6338] = {.lex_state = 380, .external_lex_state = 5}, - [6339] = {.lex_state = 380, .external_lex_state = 5}, - [6340] = {.lex_state = 380, .external_lex_state = 5}, - [6341] = {.lex_state = 380, .external_lex_state = 5}, + [6335] = {.lex_state = 83, .external_lex_state = 2}, + [6336] = {.lex_state = 380, .external_lex_state = 7}, + [6337] = {.lex_state = 380, .external_lex_state = 5}, + [6338] = {.lex_state = 67, .external_lex_state = 9}, + [6339] = {.lex_state = 64, .external_lex_state = 9}, + [6340] = {.lex_state = 67, .external_lex_state = 9}, + [6341] = {.lex_state = 64, .external_lex_state = 9}, [6342] = {.lex_state = 380, .external_lex_state = 5}, - [6343] = {.lex_state = 64, .external_lex_state = 9}, + [6343] = {.lex_state = 54, .external_lex_state = 2}, [6344] = {.lex_state = 54, .external_lex_state = 2}, - [6345] = {.lex_state = 380, .external_lex_state = 5}, - [6346] = {.lex_state = 67, .external_lex_state = 9}, - [6347] = {.lex_state = 380, .external_lex_state = 5}, + [6345] = {.lex_state = 54, .external_lex_state = 2}, + [6346] = {.lex_state = 380, .external_lex_state = 5}, + [6347] = {.lex_state = 64, .external_lex_state = 9}, [6348] = {.lex_state = 67, .external_lex_state = 9}, - [6349] = {.lex_state = 64, .external_lex_state = 9}, - [6350] = {.lex_state = 380, .external_lex_state = 2}, + [6349] = {.lex_state = 54, .external_lex_state = 2}, + [6350] = {.lex_state = 64, .external_lex_state = 9}, [6351] = {.lex_state = 67, .external_lex_state = 9}, - [6352] = {.lex_state = 64, .external_lex_state = 9}, + [6352] = {.lex_state = 380, .external_lex_state = 5}, [6353] = {.lex_state = 54, .external_lex_state = 2}, - [6354] = {.lex_state = 380, .external_lex_state = 2}, + [6354] = {.lex_state = 380, .external_lex_state = 5}, [6355] = {.lex_state = 380, .external_lex_state = 5}, - [6356] = {.lex_state = 380, .external_lex_state = 6}, + [6356] = {.lex_state = 380, .external_lex_state = 5}, [6357] = {.lex_state = 380, .external_lex_state = 5}, [6358] = {.lex_state = 380, .external_lex_state = 5}, [6359] = {.lex_state = 380, .external_lex_state = 5}, [6360] = {.lex_state = 380, .external_lex_state = 5}, [6361] = {.lex_state = 380, .external_lex_state = 5}, [6362] = {.lex_state = 380, .external_lex_state = 5}, - [6363] = {.lex_state = 380, .external_lex_state = 5}, - [6364] = {.lex_state = 380, .external_lex_state = 5}, - [6365] = {.lex_state = 380, .external_lex_state = 5}, + [6363] = {.lex_state = 54, .external_lex_state = 2}, + [6364] = {.lex_state = 54, .external_lex_state = 2}, + [6365] = {.lex_state = 67, .external_lex_state = 9}, [6366] = {.lex_state = 380, .external_lex_state = 5}, - [6367] = {.lex_state = 54, .external_lex_state = 2}, - [6368] = {.lex_state = 380, .external_lex_state = 2}, - [6369] = {.lex_state = 380, .external_lex_state = 2}, - [6370] = {.lex_state = 380, .external_lex_state = 5}, - [6371] = {.lex_state = 57, .external_lex_state = 2}, + [6367] = {.lex_state = 380, .external_lex_state = 5}, + [6368] = {.lex_state = 56, .external_lex_state = 2}, + [6369] = {.lex_state = 23, .external_lex_state = 2}, + [6370] = {.lex_state = 64, .external_lex_state = 9}, + [6371] = {.lex_state = 380, .external_lex_state = 5}, [6372] = {.lex_state = 380, .external_lex_state = 5}, - [6373] = {.lex_state = 57, .external_lex_state = 2}, - [6374] = {.lex_state = 54, .external_lex_state = 2}, - [6375] = {.lex_state = 64, .external_lex_state = 9}, - [6376] = {.lex_state = 67, .external_lex_state = 9}, - [6377] = {.lex_state = 64, .external_lex_state = 9}, - [6378] = {.lex_state = 67, .external_lex_state = 9}, - [6379] = {.lex_state = 380, .external_lex_state = 2}, - [6380] = {.lex_state = 54, .external_lex_state = 2}, - [6381] = {.lex_state = 54, .external_lex_state = 2}, + [6373] = {.lex_state = 67, .external_lex_state = 9}, + [6374] = {.lex_state = 380, .external_lex_state = 2}, + [6375] = {.lex_state = 57, .external_lex_state = 5}, + [6376] = {.lex_state = 380, .external_lex_state = 5}, + [6377] = {.lex_state = 380, .external_lex_state = 5}, + [6378] = {.lex_state = 380, .external_lex_state = 5}, + [6379] = {.lex_state = 380, .external_lex_state = 5}, + [6380] = {.lex_state = 380, .external_lex_state = 5}, + [6381] = {.lex_state = 380, .external_lex_state = 5}, [6382] = {.lex_state = 380, .external_lex_state = 5}, - [6383] = {.lex_state = 54, .external_lex_state = 2}, - [6384] = {.lex_state = 54, .external_lex_state = 2}, - [6385] = {.lex_state = 54, .external_lex_state = 2}, - [6386] = {.lex_state = 54, .external_lex_state = 2}, + [6383] = {.lex_state = 57, .external_lex_state = 5}, + [6384] = {.lex_state = 57, .external_lex_state = 5}, + [6385] = {.lex_state = 380, .external_lex_state = 2}, + [6386] = {.lex_state = 380, .external_lex_state = 2}, [6387] = {.lex_state = 380, .external_lex_state = 5}, - [6388] = {.lex_state = 56, .external_lex_state = 2}, - [6389] = {.lex_state = 56, .external_lex_state = 2}, - [6390] = {.lex_state = 380, .external_lex_state = 2}, + [6388] = {.lex_state = 380, .external_lex_state = 2}, + [6389] = {.lex_state = 380, .external_lex_state = 5}, + [6390] = {.lex_state = 380, .external_lex_state = 5}, [6391] = {.lex_state = 380, .external_lex_state = 5}, - [6392] = {.lex_state = 380, .external_lex_state = 5}, - [6393] = {.lex_state = 54, .external_lex_state = 2}, + [6392] = {.lex_state = 380, .external_lex_state = 2}, + [6393] = {.lex_state = 380, .external_lex_state = 5}, [6394] = {.lex_state = 380, .external_lex_state = 5}, - [6395] = {.lex_state = 54, .external_lex_state = 2}, + [6395] = {.lex_state = 380, .external_lex_state = 2}, [6396] = {.lex_state = 380, .external_lex_state = 5}, [6397] = {.lex_state = 380, .external_lex_state = 5}, [6398] = {.lex_state = 380, .external_lex_state = 5}, [6399] = {.lex_state = 380, .external_lex_state = 5}, - [6400] = {.lex_state = 380, .external_lex_state = 5}, + [6400] = {.lex_state = 380, .external_lex_state = 2}, [6401] = {.lex_state = 380, .external_lex_state = 5}, [6402] = {.lex_state = 380, .external_lex_state = 5}, [6403] = {.lex_state = 380, .external_lex_state = 5}, - [6404] = {.lex_state = 380, .external_lex_state = 5}, + [6404] = {.lex_state = 380, .external_lex_state = 2}, [6405] = {.lex_state = 380, .external_lex_state = 5}, [6406] = {.lex_state = 380, .external_lex_state = 5}, [6407] = {.lex_state = 380, .external_lex_state = 5}, [6408] = {.lex_state = 380, .external_lex_state = 5}, - [6409] = {.lex_state = 380, .external_lex_state = 5}, + [6409] = {.lex_state = 380, .external_lex_state = 2}, [6410] = {.lex_state = 380, .external_lex_state = 5}, - [6411] = {.lex_state = 54, .external_lex_state = 2}, + [6411] = {.lex_state = 23, .external_lex_state = 2}, [6412] = {.lex_state = 380, .external_lex_state = 5}, - [6413] = {.lex_state = 380, .external_lex_state = 5}, + [6413] = {.lex_state = 54, .external_lex_state = 2}, [6414] = {.lex_state = 380, .external_lex_state = 5}, - [6415] = {.lex_state = 64, .external_lex_state = 9}, - [6416] = {.lex_state = 67, .external_lex_state = 9}, - [6417] = {.lex_state = 56, .external_lex_state = 2}, - [6418] = {.lex_state = 64, .external_lex_state = 9}, - [6419] = {.lex_state = 67, .external_lex_state = 9}, + [6415] = {.lex_state = 380, .external_lex_state = 5}, + [6416] = {.lex_state = 380, .external_lex_state = 5}, + [6417] = {.lex_state = 380, .external_lex_state = 5}, + [6418] = {.lex_state = 380, .external_lex_state = 5}, + [6419] = {.lex_state = 380, .external_lex_state = 5}, [6420] = {.lex_state = 380, .external_lex_state = 5}, [6421] = {.lex_state = 380, .external_lex_state = 5}, [6422] = {.lex_state = 380, .external_lex_state = 5}, - [6423] = {.lex_state = 380, .external_lex_state = 5}, - [6424] = {.lex_state = 380, .external_lex_state = 5}, + [6423] = {.lex_state = 380, .external_lex_state = 2}, + [6424] = {.lex_state = 54, .external_lex_state = 2}, [6425] = {.lex_state = 380, .external_lex_state = 5}, - [6426] = {.lex_state = 67, .external_lex_state = 9}, + [6426] = {.lex_state = 380, .external_lex_state = 5}, [6427] = {.lex_state = 380, .external_lex_state = 5}, - [6428] = {.lex_state = 54, .external_lex_state = 2}, - [6429] = {.lex_state = 64, .external_lex_state = 9}, + [6428] = {.lex_state = 380, .external_lex_state = 5}, + [6429] = {.lex_state = 380, .external_lex_state = 5}, [6430] = {.lex_state = 380, .external_lex_state = 5}, - [6431] = {.lex_state = 64, .external_lex_state = 9}, - [6432] = {.lex_state = 83, .external_lex_state = 2}, - [6433] = {.lex_state = 64, .external_lex_state = 9}, - [6434] = {.lex_state = 380, .external_lex_state = 2}, - [6435] = {.lex_state = 67, .external_lex_state = 9}, - [6436] = {.lex_state = 64, .external_lex_state = 9}, - [6437] = {.lex_state = 67, .external_lex_state = 9}, + [6431] = {.lex_state = 380, .external_lex_state = 5}, + [6432] = {.lex_state = 380, .external_lex_state = 5}, + [6433] = {.lex_state = 380, .external_lex_state = 5}, + [6434] = {.lex_state = 380, .external_lex_state = 5}, + [6435] = {.lex_state = 380, .external_lex_state = 2}, + [6436] = {.lex_state = 380, .external_lex_state = 5}, + [6437] = {.lex_state = 380, .external_lex_state = 5}, [6438] = {.lex_state = 380, .external_lex_state = 5}, [6439] = {.lex_state = 380, .external_lex_state = 5}, [6440] = {.lex_state = 380, .external_lex_state = 5}, - [6441] = {.lex_state = 380, .external_lex_state = 2}, + [6441] = {.lex_state = 380, .external_lex_state = 5}, [6442] = {.lex_state = 380, .external_lex_state = 5}, - [6443] = {.lex_state = 67, .external_lex_state = 9}, - [6444] = {.lex_state = 64, .external_lex_state = 9}, - [6445] = {.lex_state = 67, .external_lex_state = 9}, - [6446] = {.lex_state = 67, .external_lex_state = 9}, - [6447] = {.lex_state = 64, .external_lex_state = 9}, + [6443] = {.lex_state = 380, .external_lex_state = 5}, + [6444] = {.lex_state = 380, .external_lex_state = 5}, + [6445] = {.lex_state = 380, .external_lex_state = 5}, + [6446] = {.lex_state = 380, .external_lex_state = 2}, + [6447] = {.lex_state = 54, .external_lex_state = 2}, [6448] = {.lex_state = 380, .external_lex_state = 5}, - [6449] = {.lex_state = 54, .external_lex_state = 2}, - [6450] = {.lex_state = 54, .external_lex_state = 2}, - [6451] = {.lex_state = 54, .external_lex_state = 2}, + [6449] = {.lex_state = 380, .external_lex_state = 5}, + [6450] = {.lex_state = 380, .external_lex_state = 5}, + [6451] = {.lex_state = 380, .external_lex_state = 5}, [6452] = {.lex_state = 380, .external_lex_state = 5}, [6453] = {.lex_state = 380, .external_lex_state = 5}, - [6454] = {.lex_state = 23, .external_lex_state = 2}, - [6455] = {.lex_state = 64, .external_lex_state = 9}, - [6456] = {.lex_state = 64, .external_lex_state = 9}, - [6457] = {.lex_state = 67, .external_lex_state = 9}, - [6458] = {.lex_state = 64, .external_lex_state = 9}, - [6459] = {.lex_state = 67, .external_lex_state = 9}, - [6460] = {.lex_state = 380, .external_lex_state = 5}, - [6461] = {.lex_state = 67, .external_lex_state = 9}, - [6462] = {.lex_state = 380, .external_lex_state = 5}, - [6463] = {.lex_state = 83, .external_lex_state = 2}, - [6464] = {.lex_state = 54, .external_lex_state = 2}, - [6465] = {.lex_state = 54, .external_lex_state = 2}, + [6454] = {.lex_state = 380, .external_lex_state = 2}, + [6455] = {.lex_state = 380, .external_lex_state = 5}, + [6456] = {.lex_state = 380, .external_lex_state = 2}, + [6457] = {.lex_state = 380, .external_lex_state = 5}, + [6458] = {.lex_state = 380, .external_lex_state = 5}, + [6459] = {.lex_state = 380, .external_lex_state = 5}, + [6460] = {.lex_state = 380, .external_lex_state = 2}, + [6461] = {.lex_state = 380, .external_lex_state = 2}, + [6462] = {.lex_state = 54, .external_lex_state = 2}, + [6463] = {.lex_state = 380, .external_lex_state = 5}, + [6464] = {.lex_state = 380, .external_lex_state = 5}, + [6465] = {.lex_state = 380, .external_lex_state = 5}, [6466] = {.lex_state = 380, .external_lex_state = 5}, - [6467] = {.lex_state = 54, .external_lex_state = 2}, - [6468] = {.lex_state = 380, .external_lex_state = 5}, + [6467] = {.lex_state = 380, .external_lex_state = 5}, + [6468] = {.lex_state = 380, .external_lex_state = 2}, [6469] = {.lex_state = 380, .external_lex_state = 5}, - [6470] = {.lex_state = 64, .external_lex_state = 9}, - [6471] = {.lex_state = 380, .external_lex_state = 5}, - [6472] = {.lex_state = 67, .external_lex_state = 9}, - [6473] = {.lex_state = 64, .external_lex_state = 9}, - [6474] = {.lex_state = 67, .external_lex_state = 9}, - [6475] = {.lex_state = 64, .external_lex_state = 9}, - [6476] = {.lex_state = 67, .external_lex_state = 9}, - [6477] = {.lex_state = 64, .external_lex_state = 9}, - [6478] = {.lex_state = 67, .external_lex_state = 9}, - [6479] = {.lex_state = 57, .external_lex_state = 2}, - [6480] = {.lex_state = 380, .external_lex_state = 5}, - [6481] = {.lex_state = 23, .external_lex_state = 2}, - [6482] = {.lex_state = 64, .external_lex_state = 9}, - [6483] = {.lex_state = 67, .external_lex_state = 9}, - [6484] = {.lex_state = 64, .external_lex_state = 9}, - [6485] = {.lex_state = 54, .external_lex_state = 2}, - [6486] = {.lex_state = 67, .external_lex_state = 9}, - [6487] = {.lex_state = 23, .external_lex_state = 2}, + [6470] = {.lex_state = 380, .external_lex_state = 5}, + [6471] = {.lex_state = 380, .external_lex_state = 2}, + [6472] = {.lex_state = 380, .external_lex_state = 5}, + [6473] = {.lex_state = 380, .external_lex_state = 5}, + [6474] = {.lex_state = 54, .external_lex_state = 2}, + [6475] = {.lex_state = 380, .external_lex_state = 5}, + [6476] = {.lex_state = 54, .external_lex_state = 2}, + [6477] = {.lex_state = 60, .external_lex_state = 2}, + [6478] = {.lex_state = 54, .external_lex_state = 2}, + [6479] = {.lex_state = 380, .external_lex_state = 2}, + [6480] = {.lex_state = 54, .external_lex_state = 2}, + [6481] = {.lex_state = 380, .external_lex_state = 5}, + [6482] = {.lex_state = 380, .external_lex_state = 5}, + [6483] = {.lex_state = 380, .external_lex_state = 2}, + [6484] = {.lex_state = 380, .external_lex_state = 2}, + [6485] = {.lex_state = 380, .external_lex_state = 2}, + [6486] = {.lex_state = 60, .external_lex_state = 2}, + [6487] = {.lex_state = 54, .external_lex_state = 2}, [6488] = {.lex_state = 380, .external_lex_state = 5}, - [6489] = {.lex_state = 64, .external_lex_state = 9}, - [6490] = {.lex_state = 67, .external_lex_state = 9}, - [6491] = {.lex_state = 64, .external_lex_state = 9}, - [6492] = {.lex_state = 54, .external_lex_state = 2}, - [6493] = {.lex_state = 67, .external_lex_state = 9}, - [6494] = {.lex_state = 64, .external_lex_state = 9}, - [6495] = {.lex_state = 67, .external_lex_state = 9}, - [6496] = {.lex_state = 380, .external_lex_state = 7}, - [6497] = {.lex_state = 54, .external_lex_state = 2}, - [6498] = {.lex_state = 67, .external_lex_state = 9}, + [6489] = {.lex_state = 380, .external_lex_state = 5}, + [6490] = {.lex_state = 380, .external_lex_state = 5}, + [6491] = {.lex_state = 21, .external_lex_state = 2}, + [6492] = {.lex_state = 380, .external_lex_state = 5}, + [6493] = {.lex_state = 380, .external_lex_state = 5}, + [6494] = {.lex_state = 380, .external_lex_state = 5}, + [6495] = {.lex_state = 380, .external_lex_state = 5}, + [6496] = {.lex_state = 380, .external_lex_state = 5}, + [6497] = {.lex_state = 380, .external_lex_state = 2}, + [6498] = {.lex_state = 380, .external_lex_state = 5}, [6499] = {.lex_state = 380, .external_lex_state = 5}, - [6500] = {.lex_state = 64, .external_lex_state = 9}, + [6500] = {.lex_state = 380, .external_lex_state = 5}, [6501] = {.lex_state = 380, .external_lex_state = 5}, - [6502] = {.lex_state = 380, .external_lex_state = 5}, - [6503] = {.lex_state = 380, .external_lex_state = 5}, + [6502] = {.lex_state = 380, .external_lex_state = 2}, + [6503] = {.lex_state = 54, .external_lex_state = 2}, [6504] = {.lex_state = 380, .external_lex_state = 5}, - [6505] = {.lex_state = 54, .external_lex_state = 2}, + [6505] = {.lex_state = 380, .external_lex_state = 5}, [6506] = {.lex_state = 380, .external_lex_state = 5}, - [6507] = {.lex_state = 54, .external_lex_state = 2}, + [6507] = {.lex_state = 380, .external_lex_state = 5}, [6508] = {.lex_state = 380, .external_lex_state = 5}, [6509] = {.lex_state = 380, .external_lex_state = 5}, - [6510] = {.lex_state = 380, .external_lex_state = 5}, - [6511] = {.lex_state = 67, .external_lex_state = 9}, - [6512] = {.lex_state = 380, .external_lex_state = 5}, - [6513] = {.lex_state = 64, .external_lex_state = 9}, - [6514] = {.lex_state = 67, .external_lex_state = 9}, - [6515] = {.lex_state = 54, .external_lex_state = 2}, - [6516] = {.lex_state = 380, .external_lex_state = 2}, - [6517] = {.lex_state = 380, .external_lex_state = 5}, - [6518] = {.lex_state = 54, .external_lex_state = 2}, - [6519] = {.lex_state = 23, .external_lex_state = 2}, - [6520] = {.lex_state = 64, .external_lex_state = 9}, - [6521] = {.lex_state = 54, .external_lex_state = 2}, - [6522] = {.lex_state = 67, .external_lex_state = 9}, - [6523] = {.lex_state = 64, .external_lex_state = 9}, - [6524] = {.lex_state = 54, .external_lex_state = 2}, - [6525] = {.lex_state = 67, .external_lex_state = 9}, - [6526] = {.lex_state = 380, .external_lex_state = 5}, + [6510] = {.lex_state = 60, .external_lex_state = 2}, + [6511] = {.lex_state = 380, .external_lex_state = 5}, + [6512] = {.lex_state = 23, .external_lex_state = 2}, + [6513] = {.lex_state = 380, .external_lex_state = 5}, + [6514] = {.lex_state = 380, .external_lex_state = 5}, + [6515] = {.lex_state = 380, .external_lex_state = 5}, + [6516] = {.lex_state = 380, .external_lex_state = 5}, + [6517] = {.lex_state = 380, .external_lex_state = 2}, + [6518] = {.lex_state = 21, .external_lex_state = 5}, + [6519] = {.lex_state = 380, .external_lex_state = 5}, + [6520] = {.lex_state = 380, .external_lex_state = 5}, + [6521] = {.lex_state = 64, .external_lex_state = 9}, + [6522] = {.lex_state = 380, .external_lex_state = 5}, + [6523] = {.lex_state = 380, .external_lex_state = 5}, + [6524] = {.lex_state = 67, .external_lex_state = 9}, + [6525] = {.lex_state = 380, .external_lex_state = 2}, + [6526] = {.lex_state = 54, .external_lex_state = 2}, [6527] = {.lex_state = 380, .external_lex_state = 5}, - [6528] = {.lex_state = 380, .external_lex_state = 2}, - [6529] = {.lex_state = 380, .external_lex_state = 5}, - [6530] = {.lex_state = 380, .external_lex_state = 2}, - [6531] = {.lex_state = 1, .external_lex_state = 2}, - [6532] = {.lex_state = 54, .external_lex_state = 2}, + [6528] = {.lex_state = 380, .external_lex_state = 5}, + [6529] = {.lex_state = 21, .external_lex_state = 5}, + [6530] = {.lex_state = 380, .external_lex_state = 5}, + [6531] = {.lex_state = 380, .external_lex_state = 5}, + [6532] = {.lex_state = 380, .external_lex_state = 2}, [6533] = {.lex_state = 380, .external_lex_state = 2}, - [6534] = {.lex_state = 54, .external_lex_state = 2}, + [6534] = {.lex_state = 380, .external_lex_state = 5}, [6535] = {.lex_state = 380, .external_lex_state = 5}, [6536] = {.lex_state = 380, .external_lex_state = 5}, - [6537] = {.lex_state = 1, .external_lex_state = 2}, - [6538] = {.lex_state = 380, .external_lex_state = 5}, + [6537] = {.lex_state = 380, .external_lex_state = 5}, + [6538] = {.lex_state = 380, .external_lex_state = 2}, [6539] = {.lex_state = 380, .external_lex_state = 5}, - [6540] = {.lex_state = 380, .external_lex_state = 5}, + [6540] = {.lex_state = 380, .external_lex_state = 2}, [6541] = {.lex_state = 380, .external_lex_state = 5}, - [6542] = {.lex_state = 380, .external_lex_state = 5}, - [6543] = {.lex_state = 83, .external_lex_state = 2}, - [6544] = {.lex_state = 64, .external_lex_state = 9}, - [6545] = {.lex_state = 380, .external_lex_state = 2}, - [6546] = {.lex_state = 67, .external_lex_state = 9}, - [6547] = {.lex_state = 380, .external_lex_state = 2}, - [6548] = {.lex_state = 54, .external_lex_state = 2}, - [6549] = {.lex_state = 54, .external_lex_state = 2}, - [6550] = {.lex_state = 380, .external_lex_state = 7}, - [6551] = {.lex_state = 56, .external_lex_state = 2}, - [6552] = {.lex_state = 54, .external_lex_state = 2}, - [6553] = {.lex_state = 54, .external_lex_state = 2}, - [6554] = {.lex_state = 54, .external_lex_state = 2}, - [6555] = {.lex_state = 54, .external_lex_state = 2}, - [6556] = {.lex_state = 380, .external_lex_state = 2}, - [6557] = {.lex_state = 380, .external_lex_state = 2}, - [6558] = {.lex_state = 56, .external_lex_state = 2}, - [6559] = {.lex_state = 380, .external_lex_state = 5}, - [6560] = {.lex_state = 380, .external_lex_state = 2}, - [6561] = {.lex_state = 54, .external_lex_state = 2}, - [6562] = {.lex_state = 380, .external_lex_state = 5}, + [6542] = {.lex_state = 380, .external_lex_state = 2}, + [6543] = {.lex_state = 380, .external_lex_state = 5}, + [6544] = {.lex_state = 380, .external_lex_state = 2}, + [6545] = {.lex_state = 380, .external_lex_state = 5}, + [6546] = {.lex_state = 380, .external_lex_state = 5}, + [6547] = {.lex_state = 380, .external_lex_state = 5}, + [6548] = {.lex_state = 380, .external_lex_state = 5}, + [6549] = {.lex_state = 380, .external_lex_state = 5}, + [6550] = {.lex_state = 380, .external_lex_state = 5}, + [6551] = {.lex_state = 380, .external_lex_state = 5}, + [6552] = {.lex_state = 380, .external_lex_state = 5}, + [6553] = {.lex_state = 380, .external_lex_state = 5}, + [6554] = {.lex_state = 380, .external_lex_state = 5}, + [6555] = {.lex_state = 380, .external_lex_state = 5}, + [6556] = {.lex_state = 380, .external_lex_state = 5}, + [6557] = {.lex_state = 380, .external_lex_state = 5}, + [6558] = {.lex_state = 57, .external_lex_state = 2}, + [6559] = {.lex_state = 21, .external_lex_state = 2}, + [6560] = {.lex_state = 380, .external_lex_state = 5}, + [6561] = {.lex_state = 380, .external_lex_state = 5}, + [6562] = {.lex_state = 23, .external_lex_state = 2}, [6563] = {.lex_state = 380, .external_lex_state = 5}, - [6564] = {.lex_state = 380, .external_lex_state = 5}, + [6564] = {.lex_state = 380, .external_lex_state = 2}, [6565] = {.lex_state = 380, .external_lex_state = 5}, - [6566] = {.lex_state = 21, .external_lex_state = 2}, - [6567] = {.lex_state = 57, .external_lex_state = 2}, - [6568] = {.lex_state = 54, .external_lex_state = 2}, - [6569] = {.lex_state = 54, .external_lex_state = 2}, - [6570] = {.lex_state = 57, .external_lex_state = 2}, - [6571] = {.lex_state = 54, .external_lex_state = 2}, + [6566] = {.lex_state = 380, .external_lex_state = 5}, + [6567] = {.lex_state = 380, .external_lex_state = 5}, + [6568] = {.lex_state = 380, .external_lex_state = 5}, + [6569] = {.lex_state = 21, .external_lex_state = 2}, + [6570] = {.lex_state = 380, .external_lex_state = 5}, + [6571] = {.lex_state = 380, .external_lex_state = 2}, [6572] = {.lex_state = 380, .external_lex_state = 5}, - [6573] = {.lex_state = 380, .external_lex_state = 2}, - [6574] = {.lex_state = 1, .external_lex_state = 2}, - [6575] = {.lex_state = 380, .external_lex_state = 2}, - [6576] = {.lex_state = 54, .external_lex_state = 2}, - [6577] = {.lex_state = 380, .external_lex_state = 5}, - [6578] = {.lex_state = 56, .external_lex_state = 2}, - [6579] = {.lex_state = 54, .external_lex_state = 2}, - [6580] = {.lex_state = 64, .external_lex_state = 9}, + [6573] = {.lex_state = 380, .external_lex_state = 5}, + [6574] = {.lex_state = 380, .external_lex_state = 5}, + [6575] = {.lex_state = 380, .external_lex_state = 5}, + [6576] = {.lex_state = 380, .external_lex_state = 5}, + [6577] = {.lex_state = 92, .external_lex_state = 2}, + [6578] = {.lex_state = 380, .external_lex_state = 5}, + [6579] = {.lex_state = 380, .external_lex_state = 5}, + [6580] = {.lex_state = 380, .external_lex_state = 5}, [6581] = {.lex_state = 380, .external_lex_state = 5}, - [6582] = {.lex_state = 83, .external_lex_state = 2}, - [6583] = {.lex_state = 67, .external_lex_state = 9}, - [6584] = {.lex_state = 380, .external_lex_state = 5}, - [6585] = {.lex_state = 380, .external_lex_state = 7}, - [6586] = {.lex_state = 380, .external_lex_state = 5}, - [6587] = {.lex_state = 380, .external_lex_state = 2}, - [6588] = {.lex_state = 380, .external_lex_state = 2}, + [6582] = {.lex_state = 380, .external_lex_state = 5}, + [6583] = {.lex_state = 380, .external_lex_state = 5}, + [6584] = {.lex_state = 23, .external_lex_state = 2}, + [6585] = {.lex_state = 57, .external_lex_state = 2}, + [6586] = {.lex_state = 21, .external_lex_state = 2}, + [6587] = {.lex_state = 23, .external_lex_state = 2}, + [6588] = {.lex_state = 380, .external_lex_state = 5}, [6589] = {.lex_state = 380, .external_lex_state = 2}, - [6590] = {.lex_state = 1, .external_lex_state = 2}, - [6591] = {.lex_state = 54, .external_lex_state = 2}, - [6592] = {.lex_state = 54, .external_lex_state = 2}, - [6593] = {.lex_state = 64, .external_lex_state = 9}, - [6594] = {.lex_state = 67, .external_lex_state = 9}, - [6595] = {.lex_state = 92, .external_lex_state = 2}, + [6590] = {.lex_state = 23, .external_lex_state = 2}, + [6591] = {.lex_state = 380, .external_lex_state = 2}, + [6592] = {.lex_state = 380, .external_lex_state = 5}, + [6593] = {.lex_state = 380, .external_lex_state = 2}, + [6594] = {.lex_state = 380, .external_lex_state = 5}, + [6595] = {.lex_state = 380, .external_lex_state = 2}, [6596] = {.lex_state = 380, .external_lex_state = 5}, - [6597] = {.lex_state = 380, .external_lex_state = 2}, - [6598] = {.lex_state = 380, .external_lex_state = 5}, - [6599] = {.lex_state = 380, .external_lex_state = 2}, - [6600] = {.lex_state = 380, .external_lex_state = 2}, - [6601] = {.lex_state = 380, .external_lex_state = 2}, - [6602] = {.lex_state = 380, .external_lex_state = 5}, + [6597] = {.lex_state = 380, .external_lex_state = 5}, + [6598] = {.lex_state = 380, .external_lex_state = 2}, + [6599] = {.lex_state = 380, .external_lex_state = 5}, + [6600] = {.lex_state = 380, .external_lex_state = 5}, + [6601] = {.lex_state = 380, .external_lex_state = 5}, + [6602] = {.lex_state = 92, .external_lex_state = 2}, [6603] = {.lex_state = 380, .external_lex_state = 5}, [6604] = {.lex_state = 380, .external_lex_state = 5}, [6605] = {.lex_state = 380, .external_lex_state = 5}, - [6606] = {.lex_state = 380, .external_lex_state = 5}, - [6607] = {.lex_state = 380, .external_lex_state = 5}, + [6606] = {.lex_state = 57, .external_lex_state = 2}, + [6607] = {.lex_state = 21, .external_lex_state = 2}, [6608] = {.lex_state = 380, .external_lex_state = 5}, - [6609] = {.lex_state = 380, .external_lex_state = 2}, + [6609] = {.lex_state = 380, .external_lex_state = 5}, [6610] = {.lex_state = 380, .external_lex_state = 5}, [6611] = {.lex_state = 380, .external_lex_state = 5}, - [6612] = {.lex_state = 380, .external_lex_state = 5}, + [6612] = {.lex_state = 380, .external_lex_state = 2}, [6613] = {.lex_state = 380, .external_lex_state = 5}, [6614] = {.lex_state = 380, .external_lex_state = 5}, - [6615] = {.lex_state = 380, .external_lex_state = 2}, - [6616] = {.lex_state = 380, .external_lex_state = 5}, + [6615] = {.lex_state = 380, .external_lex_state = 5}, + [6616] = {.lex_state = 60, .external_lex_state = 2}, [6617] = {.lex_state = 380, .external_lex_state = 5}, [6618] = {.lex_state = 380, .external_lex_state = 5}, [6619] = {.lex_state = 380, .external_lex_state = 5}, - [6620] = {.lex_state = 380, .external_lex_state = 5}, + [6620] = {.lex_state = 380, .external_lex_state = 2}, [6621] = {.lex_state = 380, .external_lex_state = 5}, [6622] = {.lex_state = 380, .external_lex_state = 5}, - [6623] = {.lex_state = 380, .external_lex_state = 2}, - [6624] = {.lex_state = 380, .external_lex_state = 5}, - [6625] = {.lex_state = 380, .external_lex_state = 5}, + [6623] = {.lex_state = 23, .external_lex_state = 2}, + [6624] = {.lex_state = 23, .external_lex_state = 2}, + [6625] = {.lex_state = 380, .external_lex_state = 2}, [6626] = {.lex_state = 380, .external_lex_state = 5}, [6627] = {.lex_state = 380, .external_lex_state = 5}, - [6628] = {.lex_state = 54, .external_lex_state = 2}, - [6629] = {.lex_state = 54, .external_lex_state = 2}, - [6630] = {.lex_state = 380, .external_lex_state = 2}, + [6628] = {.lex_state = 380, .external_lex_state = 2}, + [6629] = {.lex_state = 380, .external_lex_state = 5}, + [6630] = {.lex_state = 380, .external_lex_state = 5}, [6631] = {.lex_state = 380, .external_lex_state = 5}, - [6632] = {.lex_state = 57, .external_lex_state = 5}, - [6633] = {.lex_state = 57, .external_lex_state = 5}, - [6634] = {.lex_state = 380, .external_lex_state = 5}, + [6632] = {.lex_state = 380, .external_lex_state = 2}, + [6633] = {.lex_state = 380, .external_lex_state = 5}, + [6634] = {.lex_state = 92, .external_lex_state = 2}, [6635] = {.lex_state = 380, .external_lex_state = 5}, [6636] = {.lex_state = 380, .external_lex_state = 2}, - [6637] = {.lex_state = 54, .external_lex_state = 2}, - [6638] = {.lex_state = 57, .external_lex_state = 2}, - [6639] = {.lex_state = 380, .external_lex_state = 5}, + [6637] = {.lex_state = 380, .external_lex_state = 5}, + [6638] = {.lex_state = 380, .external_lex_state = 5}, + [6639] = {.lex_state = 380, .external_lex_state = 2}, [6640] = {.lex_state = 380, .external_lex_state = 5}, [6641] = {.lex_state = 380, .external_lex_state = 5}, - [6642] = {.lex_state = 380, .external_lex_state = 2}, - [6643] = {.lex_state = 380, .external_lex_state = 5}, + [6642] = {.lex_state = 380, .external_lex_state = 5}, + [6643] = {.lex_state = 57, .external_lex_state = 2}, [6644] = {.lex_state = 380, .external_lex_state = 5}, [6645] = {.lex_state = 380, .external_lex_state = 5}, [6646] = {.lex_state = 380, .external_lex_state = 5}, - [6647] = {.lex_state = 380, .external_lex_state = 2}, + [6647] = {.lex_state = 380, .external_lex_state = 5}, [6648] = {.lex_state = 380, .external_lex_state = 5}, - [6649] = {.lex_state = 54, .external_lex_state = 2}, - [6650] = {.lex_state = 380, .external_lex_state = 5}, - [6651] = {.lex_state = 380, .external_lex_state = 2}, + [6649] = {.lex_state = 380, .external_lex_state = 5}, + [6650] = {.lex_state = 57, .external_lex_state = 2}, + [6651] = {.lex_state = 21, .external_lex_state = 2}, [6652] = {.lex_state = 380, .external_lex_state = 5}, [6653] = {.lex_state = 380, .external_lex_state = 5}, - [6654] = {.lex_state = 380, .external_lex_state = 8}, + [6654] = {.lex_state = 380, .external_lex_state = 5}, [6655] = {.lex_state = 380, .external_lex_state = 5}, - [6656] = {.lex_state = 380, .external_lex_state = 2}, - [6657] = {.lex_state = 380, .external_lex_state = 5}, - [6658] = {.lex_state = 54, .external_lex_state = 2}, + [6656] = {.lex_state = 380, .external_lex_state = 5}, + [6657] = {.lex_state = 380, .external_lex_state = 2}, + [6658] = {.lex_state = 380, .external_lex_state = 5}, [6659] = {.lex_state = 380, .external_lex_state = 2}, - [6660] = {.lex_state = 21, .external_lex_state = 2}, + [6660] = {.lex_state = 380, .external_lex_state = 5}, [6661] = {.lex_state = 380, .external_lex_state = 2}, - [6662] = {.lex_state = 83, .external_lex_state = 2}, - [6663] = {.lex_state = 380, .external_lex_state = 5}, - [6664] = {.lex_state = 380, .external_lex_state = 2}, + [6662] = {.lex_state = 380, .external_lex_state = 5}, + [6663] = {.lex_state = 54, .external_lex_state = 2}, + [6664] = {.lex_state = 380, .external_lex_state = 5}, [6665] = {.lex_state = 380, .external_lex_state = 2}, [6666] = {.lex_state = 380, .external_lex_state = 5}, - [6667] = {.lex_state = 380, .external_lex_state = 5}, + [6667] = {.lex_state = 380, .external_lex_state = 2}, [6668] = {.lex_state = 380, .external_lex_state = 5}, - [6669] = {.lex_state = 380, .external_lex_state = 2}, - [6670] = {.lex_state = 54, .external_lex_state = 2}, - [6671] = {.lex_state = 380, .external_lex_state = 2}, + [6669] = {.lex_state = 380, .external_lex_state = 5}, + [6670] = {.lex_state = 380, .external_lex_state = 5}, + [6671] = {.lex_state = 380, .external_lex_state = 5}, [6672] = {.lex_state = 380, .external_lex_state = 5}, - [6673] = {.lex_state = 380, .external_lex_state = 5}, - [6674] = {.lex_state = 380, .external_lex_state = 2}, - [6675] = {.lex_state = 380, .external_lex_state = 5}, - [6676] = {.lex_state = 380, .external_lex_state = 5}, + [6673] = {.lex_state = 57, .external_lex_state = 5}, + [6674] = {.lex_state = 57, .external_lex_state = 5}, + [6675] = {.lex_state = 380, .external_lex_state = 2}, + [6676] = {.lex_state = 380, .external_lex_state = 2}, [6677] = {.lex_state = 380, .external_lex_state = 5}, [6678] = {.lex_state = 380, .external_lex_state = 5}, [6679] = {.lex_state = 380, .external_lex_state = 5}, - [6680] = {.lex_state = 380, .external_lex_state = 2}, - [6681] = {.lex_state = 380, .external_lex_state = 5}, - [6682] = {.lex_state = 54, .external_lex_state = 2}, + [6680] = {.lex_state = 380, .external_lex_state = 5}, + [6681] = {.lex_state = 380, .external_lex_state = 2}, + [6682] = {.lex_state = 380, .external_lex_state = 5}, [6683] = {.lex_state = 380, .external_lex_state = 5}, - [6684] = {.lex_state = 380, .external_lex_state = 2}, + [6684] = {.lex_state = 380, .external_lex_state = 5}, [6685] = {.lex_state = 380, .external_lex_state = 5}, - [6686] = {.lex_state = 380, .external_lex_state = 2}, + [6686] = {.lex_state = 380, .external_lex_state = 5}, [6687] = {.lex_state = 380, .external_lex_state = 2}, [6688] = {.lex_state = 380, .external_lex_state = 5}, - [6689] = {.lex_state = 380, .external_lex_state = 2}, + [6689] = {.lex_state = 54, .external_lex_state = 2}, [6690] = {.lex_state = 380, .external_lex_state = 5}, [6691] = {.lex_state = 380, .external_lex_state = 5}, [6692] = {.lex_state = 380, .external_lex_state = 5}, - [6693] = {.lex_state = 380, .external_lex_state = 5}, - [6694] = {.lex_state = 23, .external_lex_state = 2}, + [6693] = {.lex_state = 56, .external_lex_state = 2}, + [6694] = {.lex_state = 380, .external_lex_state = 5}, [6695] = {.lex_state = 380, .external_lex_state = 5}, - [6696] = {.lex_state = 21, .external_lex_state = 2}, - [6697] = {.lex_state = 380, .external_lex_state = 5}, + [6696] = {.lex_state = 380, .external_lex_state = 5}, + [6697] = {.lex_state = 380, .external_lex_state = 2}, [6698] = {.lex_state = 380, .external_lex_state = 5}, - [6699] = {.lex_state = 60, .external_lex_state = 2}, - [6700] = {.lex_state = 380, .external_lex_state = 2}, + [6699] = {.lex_state = 92, .external_lex_state = 2}, + [6700] = {.lex_state = 380, .external_lex_state = 5}, [6701] = {.lex_state = 380, .external_lex_state = 5}, - [6702] = {.lex_state = 380, .external_lex_state = 5}, + [6702] = {.lex_state = 54, .external_lex_state = 2}, [6703] = {.lex_state = 380, .external_lex_state = 5}, [6704] = {.lex_state = 380, .external_lex_state = 5}, [6705] = {.lex_state = 380, .external_lex_state = 5}, - [6706] = {.lex_state = 380, .external_lex_state = 5}, - [6707] = {.lex_state = 92, .external_lex_state = 2}, + [6706] = {.lex_state = 380, .external_lex_state = 2}, + [6707] = {.lex_state = 380, .external_lex_state = 2}, [6708] = {.lex_state = 380, .external_lex_state = 5}, - [6709] = {.lex_state = 60, .external_lex_state = 2}, + [6709] = {.lex_state = 380, .external_lex_state = 5}, [6710] = {.lex_state = 380, .external_lex_state = 5}, - [6711] = {.lex_state = 380, .external_lex_state = 2}, - [6712] = {.lex_state = 54, .external_lex_state = 2}, - [6713] = {.lex_state = 23, .external_lex_state = 2}, - [6714] = {.lex_state = 380, .external_lex_state = 5}, - [6715] = {.lex_state = 380, .external_lex_state = 2}, + [6711] = {.lex_state = 380, .external_lex_state = 5}, + [6712] = {.lex_state = 380, .external_lex_state = 5}, + [6713] = {.lex_state = 57, .external_lex_state = 2}, + [6714] = {.lex_state = 21, .external_lex_state = 2}, + [6715] = {.lex_state = 380, .external_lex_state = 5}, [6716] = {.lex_state = 380, .external_lex_state = 5}, [6717] = {.lex_state = 380, .external_lex_state = 5}, - [6718] = {.lex_state = 380, .external_lex_state = 5}, - [6719] = {.lex_state = 380, .external_lex_state = 2}, + [6718] = {.lex_state = 83, .external_lex_state = 2}, + [6719] = {.lex_state = 380, .external_lex_state = 5}, [6720] = {.lex_state = 380, .external_lex_state = 5}, [6721] = {.lex_state = 380, .external_lex_state = 5}, - [6722] = {.lex_state = 380, .external_lex_state = 5}, - [6723] = {.lex_state = 380, .external_lex_state = 5}, + [6722] = {.lex_state = 380, .external_lex_state = 2}, + [6723] = {.lex_state = 57, .external_lex_state = 2}, [6724] = {.lex_state = 380, .external_lex_state = 5}, - [6725] = {.lex_state = 380, .external_lex_state = 2}, + [6725] = {.lex_state = 380, .external_lex_state = 5}, [6726] = {.lex_state = 380, .external_lex_state = 5}, [6727] = {.lex_state = 380, .external_lex_state = 5}, - [6728] = {.lex_state = 380, .external_lex_state = 2}, - [6729] = {.lex_state = 21, .external_lex_state = 5}, - [6730] = {.lex_state = 64, .external_lex_state = 9}, - [6731] = {.lex_state = 54, .external_lex_state = 2}, - [6732] = {.lex_state = 1, .external_lex_state = 2}, - [6733] = {.lex_state = 54, .external_lex_state = 2}, - [6734] = {.lex_state = 67, .external_lex_state = 9}, - [6735] = {.lex_state = 54, .external_lex_state = 2}, + [6728] = {.lex_state = 380, .external_lex_state = 5}, + [6729] = {.lex_state = 380, .external_lex_state = 2}, + [6730] = {.lex_state = 380, .external_lex_state = 5}, + [6731] = {.lex_state = 380, .external_lex_state = 2}, + [6732] = {.lex_state = 380, .external_lex_state = 5}, + [6733] = {.lex_state = 380, .external_lex_state = 2}, + [6734] = {.lex_state = 380, .external_lex_state = 5}, + [6735] = {.lex_state = 57, .external_lex_state = 2}, [6736] = {.lex_state = 380, .external_lex_state = 5}, - [6737] = {.lex_state = 54, .external_lex_state = 2}, - [6738] = {.lex_state = 21, .external_lex_state = 5}, + [6737] = {.lex_state = 380, .external_lex_state = 5}, + [6738] = {.lex_state = 380, .external_lex_state = 5}, [6739] = {.lex_state = 380, .external_lex_state = 5}, [6740] = {.lex_state = 380, .external_lex_state = 5}, - [6741] = {.lex_state = 380, .external_lex_state = 2}, - [6742] = {.lex_state = 380, .external_lex_state = 2}, - [6743] = {.lex_state = 380, .external_lex_state = 5}, - [6744] = {.lex_state = 380, .external_lex_state = 5}, - [6745] = {.lex_state = 380, .external_lex_state = 5}, + [6741] = {.lex_state = 380, .external_lex_state = 5}, + [6742] = {.lex_state = 380, .external_lex_state = 5}, + [6743] = {.lex_state = 21, .external_lex_state = 5}, + [6744] = {.lex_state = 380, .external_lex_state = 2}, + [6745] = {.lex_state = 380, .external_lex_state = 2}, [6746] = {.lex_state = 380, .external_lex_state = 2}, - [6747] = {.lex_state = 60, .external_lex_state = 2}, - [6748] = {.lex_state = 380, .external_lex_state = 5}, + [6747] = {.lex_state = 57, .external_lex_state = 5}, + [6748] = {.lex_state = 57, .external_lex_state = 5}, [6749] = {.lex_state = 380, .external_lex_state = 5}, [6750] = {.lex_state = 380, .external_lex_state = 5}, - [6751] = {.lex_state = 57, .external_lex_state = 2}, - [6752] = {.lex_state = 21, .external_lex_state = 2}, - [6753] = {.lex_state = 380, .external_lex_state = 5}, + [6751] = {.lex_state = 380, .external_lex_state = 5}, + [6752] = {.lex_state = 380, .external_lex_state = 5}, + [6753] = {.lex_state = 380, .external_lex_state = 2}, [6754] = {.lex_state = 380, .external_lex_state = 5}, - [6755] = {.lex_state = 60, .external_lex_state = 2}, + [6755] = {.lex_state = 380, .external_lex_state = 2}, [6756] = {.lex_state = 380, .external_lex_state = 2}, [6757] = {.lex_state = 380, .external_lex_state = 2}, - [6758] = {.lex_state = 380, .external_lex_state = 5}, + [6758] = {.lex_state = 380, .external_lex_state = 2}, [6759] = {.lex_state = 380, .external_lex_state = 5}, - [6760] = {.lex_state = 380, .external_lex_state = 5}, + [6760] = {.lex_state = 54, .external_lex_state = 2}, [6761] = {.lex_state = 380, .external_lex_state = 5}, - [6762] = {.lex_state = 380, .external_lex_state = 2}, + [6762] = {.lex_state = 54, .external_lex_state = 2}, [6763] = {.lex_state = 380, .external_lex_state = 5}, - [6764] = {.lex_state = 92, .external_lex_state = 2}, - [6765] = {.lex_state = 380, .external_lex_state = 5}, - [6766] = {.lex_state = 380, .external_lex_state = 5}, - [6767] = {.lex_state = 380, .external_lex_state = 5}, - [6768] = {.lex_state = 380, .external_lex_state = 5}, - [6769] = {.lex_state = 23, .external_lex_state = 2}, - [6770] = {.lex_state = 380, .external_lex_state = 5}, - [6771] = {.lex_state = 57, .external_lex_state = 2}, + [6764] = {.lex_state = 54, .external_lex_state = 2}, + [6765] = {.lex_state = 380, .external_lex_state = 2}, + [6766] = {.lex_state = 54, .external_lex_state = 2}, + [6767] = {.lex_state = 380, .external_lex_state = 2}, + [6768] = {.lex_state = 380, .external_lex_state = 2}, + [6769] = {.lex_state = 380, .external_lex_state = 2}, + [6770] = {.lex_state = 380, .external_lex_state = 2}, + [6771] = {.lex_state = 380, .external_lex_state = 2}, [6772] = {.lex_state = 380, .external_lex_state = 5}, - [6773] = {.lex_state = 21, .external_lex_state = 2}, - [6774] = {.lex_state = 380, .external_lex_state = 2}, + [6773] = {.lex_state = 380, .external_lex_state = 2}, + [6774] = {.lex_state = 380, .external_lex_state = 5}, [6775] = {.lex_state = 380, .external_lex_state = 5}, [6776] = {.lex_state = 380, .external_lex_state = 5}, [6777] = {.lex_state = 380, .external_lex_state = 5}, [6778] = {.lex_state = 380, .external_lex_state = 5}, - [6779] = {.lex_state = 21, .external_lex_state = 2}, + [6779] = {.lex_state = 57, .external_lex_state = 5}, [6780] = {.lex_state = 380, .external_lex_state = 5}, [6781] = {.lex_state = 380, .external_lex_state = 5}, - [6782] = {.lex_state = 380, .external_lex_state = 2}, + [6782] = {.lex_state = 380, .external_lex_state = 5}, [6783] = {.lex_state = 380, .external_lex_state = 5}, [6784] = {.lex_state = 380, .external_lex_state = 5}, - [6785] = {.lex_state = 380, .external_lex_state = 2}, + [6785] = {.lex_state = 92, .external_lex_state = 2}, [6786] = {.lex_state = 380, .external_lex_state = 5}, - [6787] = {.lex_state = 380, .external_lex_state = 2}, - [6788] = {.lex_state = 380, .external_lex_state = 5}, + [6787] = {.lex_state = 380, .external_lex_state = 5}, + [6788] = {.lex_state = 54, .external_lex_state = 2}, [6789] = {.lex_state = 380, .external_lex_state = 5}, - [6790] = {.lex_state = 380, .external_lex_state = 2}, - [6791] = {.lex_state = 380, .external_lex_state = 5}, - [6792] = {.lex_state = 92, .external_lex_state = 2}, + [6790] = {.lex_state = 380, .external_lex_state = 5}, + [6791] = {.lex_state = 54, .external_lex_state = 2}, + [6792] = {.lex_state = 57, .external_lex_state = 2}, [6793] = {.lex_state = 380, .external_lex_state = 5}, - [6794] = {.lex_state = 380, .external_lex_state = 2}, - [6795] = {.lex_state = 380, .external_lex_state = 5}, - [6796] = {.lex_state = 380, .external_lex_state = 5}, - [6797] = {.lex_state = 380, .external_lex_state = 2}, - [6798] = {.lex_state = 380, .external_lex_state = 5}, + [6794] = {.lex_state = 57, .external_lex_state = 2}, + [6795] = {.lex_state = 21, .external_lex_state = 2}, + [6796] = {.lex_state = 380, .external_lex_state = 2}, + [6797] = {.lex_state = 380, .external_lex_state = 5}, + [6798] = {.lex_state = 23, .external_lex_state = 2}, [6799] = {.lex_state = 380, .external_lex_state = 5}, [6800] = {.lex_state = 380, .external_lex_state = 5}, - [6801] = {.lex_state = 57, .external_lex_state = 2}, - [6802] = {.lex_state = 21, .external_lex_state = 2}, - [6803] = {.lex_state = 380, .external_lex_state = 5}, - [6804] = {.lex_state = 380, .external_lex_state = 5}, - [6805] = {.lex_state = 380, .external_lex_state = 2}, - [6806] = {.lex_state = 380, .external_lex_state = 5}, - [6807] = {.lex_state = 380, .external_lex_state = 5}, - [6808] = {.lex_state = 21, .external_lex_state = 2}, - [6809] = {.lex_state = 380, .external_lex_state = 5}, - [6810] = {.lex_state = 380, .external_lex_state = 5}, - [6811] = {.lex_state = 380, .external_lex_state = 5}, - [6812] = {.lex_state = 380, .external_lex_state = 5}, - [6813] = {.lex_state = 380, .external_lex_state = 5}, - [6814] = {.lex_state = 380, .external_lex_state = 5}, - [6815] = {.lex_state = 380, .external_lex_state = 5}, - [6816] = {.lex_state = 380, .external_lex_state = 5}, + [6801] = {.lex_state = 380, .external_lex_state = 5}, + [6802] = {.lex_state = 380, .external_lex_state = 5}, + [6803] = {.lex_state = 380, .external_lex_state = 2}, + [6804] = {.lex_state = 23, .external_lex_state = 2}, + [6805] = {.lex_state = 380, .external_lex_state = 5}, + [6806] = {.lex_state = 23, .external_lex_state = 2}, + [6807] = {.lex_state = 380, .external_lex_state = 2}, + [6808] = {.lex_state = 57, .external_lex_state = 2}, + [6809] = {.lex_state = 23, .external_lex_state = 2}, + [6810] = {.lex_state = 57, .external_lex_state = 2}, + [6811] = {.lex_state = 23, .external_lex_state = 2}, + [6812] = {.lex_state = 57, .external_lex_state = 2}, + [6813] = {.lex_state = 54, .external_lex_state = 2}, + [6814] = {.lex_state = 57, .external_lex_state = 2}, + [6815] = {.lex_state = 57, .external_lex_state = 2}, + [6816] = {.lex_state = 380, .external_lex_state = 2}, [6817] = {.lex_state = 380, .external_lex_state = 5}, [6818] = {.lex_state = 380, .external_lex_state = 5}, - [6819] = {.lex_state = 23, .external_lex_state = 2}, - [6820] = {.lex_state = 380, .external_lex_state = 5}, - [6821] = {.lex_state = 380, .external_lex_state = 2}, - [6822] = {.lex_state = 380, .external_lex_state = 5}, - [6823] = {.lex_state = 380, .external_lex_state = 5}, + [6819] = {.lex_state = 380, .external_lex_state = 5}, + [6820] = {.lex_state = 57, .external_lex_state = 2}, + [6821] = {.lex_state = 380, .external_lex_state = 5}, + [6822] = {.lex_state = 23, .external_lex_state = 2}, + [6823] = {.lex_state = 380, .external_lex_state = 2}, [6824] = {.lex_state = 380, .external_lex_state = 5}, - [6825] = {.lex_state = 380, .external_lex_state = 5}, + [6825] = {.lex_state = 54, .external_lex_state = 2}, [6826] = {.lex_state = 380, .external_lex_state = 5}, - [6827] = {.lex_state = 380, .external_lex_state = 2}, - [6828] = {.lex_state = 380, .external_lex_state = 5}, - [6829] = {.lex_state = 380, .external_lex_state = 5}, - [6830] = {.lex_state = 380, .external_lex_state = 5}, - [6831] = {.lex_state = 380, .external_lex_state = 5}, - [6832] = {.lex_state = 380, .external_lex_state = 2}, + [6827] = {.lex_state = 57, .external_lex_state = 2}, + [6828] = {.lex_state = 57, .external_lex_state = 2}, + [6829] = {.lex_state = 380, .external_lex_state = 2}, + [6830] = {.lex_state = 380, .external_lex_state = 2}, + [6831] = {.lex_state = 57, .external_lex_state = 2}, + [6832] = {.lex_state = 380, .external_lex_state = 5}, [6833] = {.lex_state = 380, .external_lex_state = 5}, - [6834] = {.lex_state = 380, .external_lex_state = 2}, - [6835] = {.lex_state = 380, .external_lex_state = 2}, - [6836] = {.lex_state = 57, .external_lex_state = 2}, - [6837] = {.lex_state = 92, .external_lex_state = 2}, - [6838] = {.lex_state = 54, .external_lex_state = 2}, + [6834] = {.lex_state = 380, .external_lex_state = 5}, + [6835] = {.lex_state = 380, .external_lex_state = 5}, + [6836] = {.lex_state = 380, .external_lex_state = 5}, + [6837] = {.lex_state = 380, .external_lex_state = 2}, + [6838] = {.lex_state = 380, .external_lex_state = 5}, [6839] = {.lex_state = 380, .external_lex_state = 2}, - [6840] = {.lex_state = 380, .external_lex_state = 5}, - [6841] = {.lex_state = 380, .external_lex_state = 5}, - [6842] = {.lex_state = 380, .external_lex_state = 2}, - [6843] = {.lex_state = 380, .external_lex_state = 2}, + [6840] = {.lex_state = 380, .external_lex_state = 2}, + [6841] = {.lex_state = 380, .external_lex_state = 2}, + [6842] = {.lex_state = 380, .external_lex_state = 5}, + [6843] = {.lex_state = 380, .external_lex_state = 5}, [6844] = {.lex_state = 380, .external_lex_state = 5}, [6845] = {.lex_state = 380, .external_lex_state = 2}, - [6846] = {.lex_state = 380, .external_lex_state = 5}, - [6847] = {.lex_state = 57, .external_lex_state = 2}, - [6848] = {.lex_state = 21, .external_lex_state = 2}, + [6846] = {.lex_state = 380, .external_lex_state = 2}, + [6847] = {.lex_state = 380, .external_lex_state = 5}, + [6848] = {.lex_state = 380, .external_lex_state = 5}, [6849] = {.lex_state = 380, .external_lex_state = 5}, - [6850] = {.lex_state = 380, .external_lex_state = 2}, - [6851] = {.lex_state = 380, .external_lex_state = 5}, - [6852] = {.lex_state = 380, .external_lex_state = 2}, - [6853] = {.lex_state = 380, .external_lex_state = 2}, - [6854] = {.lex_state = 380, .external_lex_state = 5}, - [6855] = {.lex_state = 380, .external_lex_state = 5}, - [6856] = {.lex_state = 380, .external_lex_state = 2}, + [6850] = {.lex_state = 380, .external_lex_state = 5}, + [6851] = {.lex_state = 380, .external_lex_state = 2}, + [6852] = {.lex_state = 23, .external_lex_state = 2}, + [6853] = {.lex_state = 23, .external_lex_state = 2}, + [6854] = {.lex_state = 380, .external_lex_state = 2}, + [6855] = {.lex_state = 380, .external_lex_state = 2}, + [6856] = {.lex_state = 380, .external_lex_state = 5}, [6857] = {.lex_state = 380, .external_lex_state = 2}, [6858] = {.lex_state = 380, .external_lex_state = 5}, [6859] = {.lex_state = 380, .external_lex_state = 5}, - [6860] = {.lex_state = 380, .external_lex_state = 2}, + [6860] = {.lex_state = 380, .external_lex_state = 5}, [6861] = {.lex_state = 380, .external_lex_state = 5}, [6862] = {.lex_state = 380, .external_lex_state = 5}, - [6863] = {.lex_state = 380, .external_lex_state = 5}, - [6864] = {.lex_state = 380, .external_lex_state = 5}, - [6865] = {.lex_state = 380, .external_lex_state = 2}, - [6866] = {.lex_state = 380, .external_lex_state = 5}, - [6867] = {.lex_state = 380, .external_lex_state = 5}, - [6868] = {.lex_state = 380, .external_lex_state = 5}, + [6863] = {.lex_state = 380, .external_lex_state = 2}, + [6864] = {.lex_state = 57, .external_lex_state = 2}, + [6865] = {.lex_state = 380, .external_lex_state = 5}, + [6866] = {.lex_state = 71, .external_lex_state = 2}, + [6867] = {.lex_state = 380, .external_lex_state = 2}, + [6868] = {.lex_state = 380, .external_lex_state = 2}, [6869] = {.lex_state = 380, .external_lex_state = 5}, [6870] = {.lex_state = 380, .external_lex_state = 5}, [6871] = {.lex_state = 380, .external_lex_state = 5}, - [6872] = {.lex_state = 380, .external_lex_state = 5}, + [6872] = {.lex_state = 380, .external_lex_state = 2}, [6873] = {.lex_state = 380, .external_lex_state = 5}, - [6874] = {.lex_state = 380, .external_lex_state = 2}, + [6874] = {.lex_state = 380, .external_lex_state = 5}, [6875] = {.lex_state = 380, .external_lex_state = 5}, [6876] = {.lex_state = 380, .external_lex_state = 5}, [6877] = {.lex_state = 380, .external_lex_state = 5}, - [6878] = {.lex_state = 380, .external_lex_state = 2}, + [6878] = {.lex_state = 380, .external_lex_state = 5}, [6879] = {.lex_state = 380, .external_lex_state = 5}, [6880] = {.lex_state = 380, .external_lex_state = 5}, - [6881] = {.lex_state = 380, .external_lex_state = 2}, + [6881] = {.lex_state = 380, .external_lex_state = 5}, [6882] = {.lex_state = 92, .external_lex_state = 2}, [6883] = {.lex_state = 380, .external_lex_state = 2}, - [6884] = {.lex_state = 380, .external_lex_state = 2}, - [6885] = {.lex_state = 380, .external_lex_state = 5}, - [6886] = {.lex_state = 380, .external_lex_state = 2}, - [6887] = {.lex_state = 380, .external_lex_state = 5}, + [6884] = {.lex_state = 380, .external_lex_state = 5}, + [6885] = {.lex_state = 380, .external_lex_state = 2}, + [6886] = {.lex_state = 57, .external_lex_state = 2}, + [6887] = {.lex_state = 21, .external_lex_state = 2}, [6888] = {.lex_state = 380, .external_lex_state = 5}, - [6889] = {.lex_state = 380, .external_lex_state = 5}, + [6889] = {.lex_state = 57, .external_lex_state = 2}, [6890] = {.lex_state = 57, .external_lex_state = 5}, [6891] = {.lex_state = 380, .external_lex_state = 5}, - [6892] = {.lex_state = 57, .external_lex_state = 5}, + [6892] = {.lex_state = 380, .external_lex_state = 2}, [6893] = {.lex_state = 380, .external_lex_state = 5}, - [6894] = {.lex_state = 380, .external_lex_state = 5}, - [6895] = {.lex_state = 380, .external_lex_state = 5}, + [6894] = {.lex_state = 380, .external_lex_state = 2}, + [6895] = {.lex_state = 380, .external_lex_state = 2}, [6896] = {.lex_state = 380, .external_lex_state = 5}, [6897] = {.lex_state = 57, .external_lex_state = 2}, - [6898] = {.lex_state = 380, .external_lex_state = 5}, - [6899] = {.lex_state = 380, .external_lex_state = 5}, - [6900] = {.lex_state = 380, .external_lex_state = 5}, - [6901] = {.lex_state = 380, .external_lex_state = 5}, - [6902] = {.lex_state = 380, .external_lex_state = 5}, - [6903] = {.lex_state = 57, .external_lex_state = 2}, - [6904] = {.lex_state = 380, .external_lex_state = 5}, - [6905] = {.lex_state = 380, .external_lex_state = 5}, - [6906] = {.lex_state = 21, .external_lex_state = 2}, - [6907] = {.lex_state = 380, .external_lex_state = 2}, - [6908] = {.lex_state = 380, .external_lex_state = 2}, + [6898] = {.lex_state = 21, .external_lex_state = 2}, + [6899] = {.lex_state = 380, .external_lex_state = 2}, + [6900] = {.lex_state = 380, .external_lex_state = 2}, + [6901] = {.lex_state = 380, .external_lex_state = 2}, + [6902] = {.lex_state = 380, .external_lex_state = 2}, + [6903] = {.lex_state = 380, .external_lex_state = 5}, + [6904] = {.lex_state = 54, .external_lex_state = 2}, + [6905] = {.lex_state = 380, .external_lex_state = 2}, + [6906] = {.lex_state = 23, .external_lex_state = 2}, + [6907] = {.lex_state = 380, .external_lex_state = 5}, + [6908] = {.lex_state = 380, .external_lex_state = 5}, [6909] = {.lex_state = 380, .external_lex_state = 5}, [6910] = {.lex_state = 380, .external_lex_state = 2}, - [6911] = {.lex_state = 380, .external_lex_state = 2}, - [6912] = {.lex_state = 380, .external_lex_state = 2}, - [6913] = {.lex_state = 380, .external_lex_state = 2}, - [6914] = {.lex_state = 380, .external_lex_state = 5}, - [6915] = {.lex_state = 380, .external_lex_state = 5}, + [6911] = {.lex_state = 380, .external_lex_state = 5}, + [6912] = {.lex_state = 380, .external_lex_state = 5}, + [6913] = {.lex_state = 57, .external_lex_state = 5}, + [6914] = {.lex_state = 380, .external_lex_state = 2}, + [6915] = {.lex_state = 380, .external_lex_state = 2}, [6916] = {.lex_state = 380, .external_lex_state = 5}, - [6917] = {.lex_state = 380, .external_lex_state = 5}, + [6917] = {.lex_state = 83, .external_lex_state = 2}, [6918] = {.lex_state = 380, .external_lex_state = 5}, [6919] = {.lex_state = 380, .external_lex_state = 5}, - [6920] = {.lex_state = 380, .external_lex_state = 2}, + [6920] = {.lex_state = 380, .external_lex_state = 5}, [6921] = {.lex_state = 380, .external_lex_state = 5}, - [6922] = {.lex_state = 380, .external_lex_state = 2}, - [6923] = {.lex_state = 380, .external_lex_state = 2}, - [6924] = {.lex_state = 380, .external_lex_state = 2}, + [6922] = {.lex_state = 380, .external_lex_state = 5}, + [6923] = {.lex_state = 380, .external_lex_state = 5}, + [6924] = {.lex_state = 380, .external_lex_state = 5}, [6925] = {.lex_state = 380, .external_lex_state = 5}, [6926] = {.lex_state = 380, .external_lex_state = 5}, - [6927] = {.lex_state = 56, .external_lex_state = 2}, - [6928] = {.lex_state = 380, .external_lex_state = 5}, - [6929] = {.lex_state = 380, .external_lex_state = 2}, - [6930] = {.lex_state = 57, .external_lex_state = 5}, - [6931] = {.lex_state = 57, .external_lex_state = 5}, - [6932] = {.lex_state = 380, .external_lex_state = 2}, + [6927] = {.lex_state = 380, .external_lex_state = 2}, + [6928] = {.lex_state = 380, .external_lex_state = 2}, + [6929] = {.lex_state = 380, .external_lex_state = 5}, + [6930] = {.lex_state = 380, .external_lex_state = 2}, + [6931] = {.lex_state = 380, .external_lex_state = 2}, + [6932] = {.lex_state = 380, .external_lex_state = 5}, [6933] = {.lex_state = 380, .external_lex_state = 5}, [6934] = {.lex_state = 380, .external_lex_state = 5}, [6935] = {.lex_state = 380, .external_lex_state = 5}, [6936] = {.lex_state = 380, .external_lex_state = 2}, [6937] = {.lex_state = 380, .external_lex_state = 5}, - [6938] = {.lex_state = 380, .external_lex_state = 5}, - [6939] = {.lex_state = 380, .external_lex_state = 5}, - [6940] = {.lex_state = 380, .external_lex_state = 5}, + [6938] = {.lex_state = 380, .external_lex_state = 2}, + [6939] = {.lex_state = 380, .external_lex_state = 2}, + [6940] = {.lex_state = 380, .external_lex_state = 2}, [6941] = {.lex_state = 380, .external_lex_state = 2}, - [6942] = {.lex_state = 380, .external_lex_state = 5}, - [6943] = {.lex_state = 380, .external_lex_state = 2}, + [6942] = {.lex_state = 380, .external_lex_state = 2}, + [6943] = {.lex_state = 380, .external_lex_state = 5}, [6944] = {.lex_state = 380, .external_lex_state = 5}, - [6945] = {.lex_state = 54, .external_lex_state = 2}, + [6945] = {.lex_state = 380, .external_lex_state = 5}, [6946] = {.lex_state = 380, .external_lex_state = 5}, [6947] = {.lex_state = 380, .external_lex_state = 2}, [6948] = {.lex_state = 380, .external_lex_state = 5}, - [6949] = {.lex_state = 380, .external_lex_state = 5}, - [6950] = {.lex_state = 54, .external_lex_state = 2}, - [6951] = {.lex_state = 380, .external_lex_state = 2}, - [6952] = {.lex_state = 83, .external_lex_state = 2}, - [6953] = {.lex_state = 54, .external_lex_state = 2}, - [6954] = {.lex_state = 380, .external_lex_state = 5}, + [6949] = {.lex_state = 380, .external_lex_state = 2}, + [6950] = {.lex_state = 380, .external_lex_state = 2}, + [6951] = {.lex_state = 380, .external_lex_state = 5}, + [6952] = {.lex_state = 380, .external_lex_state = 5}, + [6953] = {.lex_state = 380, .external_lex_state = 5}, + [6954] = {.lex_state = 380, .external_lex_state = 2}, [6955] = {.lex_state = 380, .external_lex_state = 5}, [6956] = {.lex_state = 380, .external_lex_state = 2}, [6957] = {.lex_state = 380, .external_lex_state = 2}, - [6958] = {.lex_state = 380, .external_lex_state = 5}, - [6959] = {.lex_state = 380, .external_lex_state = 5}, - [6960] = {.lex_state = 57, .external_lex_state = 2}, + [6958] = {.lex_state = 71, .external_lex_state = 2}, + [6959] = {.lex_state = 23, .external_lex_state = 2}, + [6960] = {.lex_state = 380, .external_lex_state = 5}, [6961] = {.lex_state = 380, .external_lex_state = 5}, - [6962] = {.lex_state = 23, .external_lex_state = 2}, - [6963] = {.lex_state = 380, .external_lex_state = 5}, - [6964] = {.lex_state = 380, .external_lex_state = 5}, - [6965] = {.lex_state = 380, .external_lex_state = 5}, - [6966] = {.lex_state = 380, .external_lex_state = 5}, - [6967] = {.lex_state = 380, .external_lex_state = 2}, + [6962] = {.lex_state = 380, .external_lex_state = 5}, + [6963] = {.lex_state = 57, .external_lex_state = 5}, + [6964] = {.lex_state = 57, .external_lex_state = 5}, + [6965] = {.lex_state = 57, .external_lex_state = 5}, + [6966] = {.lex_state = 380, .external_lex_state = 2}, + [6967] = {.lex_state = 83, .external_lex_state = 2}, [6968] = {.lex_state = 380, .external_lex_state = 2}, - [6969] = {.lex_state = 380, .external_lex_state = 5}, - [6970] = {.lex_state = 54, .external_lex_state = 2}, + [6969] = {.lex_state = 380, .external_lex_state = 2}, + [6970] = {.lex_state = 380, .external_lex_state = 5}, [6971] = {.lex_state = 380, .external_lex_state = 5}, - [6972] = {.lex_state = 380, .external_lex_state = 5}, + [6972] = {.lex_state = 380, .external_lex_state = 2}, [6973] = {.lex_state = 380, .external_lex_state = 5}, - [6974] = {.lex_state = 92, .external_lex_state = 2}, - [6975] = {.lex_state = 380, .external_lex_state = 2}, - [6976] = {.lex_state = 380, .external_lex_state = 5}, + [6974] = {.lex_state = 380, .external_lex_state = 5}, + [6975] = {.lex_state = 380, .external_lex_state = 5}, + [6976] = {.lex_state = 380, .external_lex_state = 2}, [6977] = {.lex_state = 380, .external_lex_state = 5}, - [6978] = {.lex_state = 54, .external_lex_state = 2}, - [6979] = {.lex_state = 21, .external_lex_state = 5}, + [6978] = {.lex_state = 380, .external_lex_state = 5}, + [6979] = {.lex_state = 380, .external_lex_state = 2}, [6980] = {.lex_state = 380, .external_lex_state = 5}, - [6981] = {.lex_state = 380, .external_lex_state = 5}, + [6981] = {.lex_state = 380, .external_lex_state = 2}, [6982] = {.lex_state = 380, .external_lex_state = 5}, [6983] = {.lex_state = 380, .external_lex_state = 5}, - [6984] = {.lex_state = 57, .external_lex_state = 2}, - [6985] = {.lex_state = 380, .external_lex_state = 5}, - [6986] = {.lex_state = 380, .external_lex_state = 2}, - [6987] = {.lex_state = 380, .external_lex_state = 5}, - [6988] = {.lex_state = 21, .external_lex_state = 2}, - [6989] = {.lex_state = 380, .external_lex_state = 5}, - [6990] = {.lex_state = 380, .external_lex_state = 5}, - [6991] = {.lex_state = 380, .external_lex_state = 5}, - [6992] = {.lex_state = 380, .external_lex_state = 5}, - [6993] = {.lex_state = 57, .external_lex_state = 2}, - [6994] = {.lex_state = 380, .external_lex_state = 2}, - [6995] = {.lex_state = 380, .external_lex_state = 5}, - [6996] = {.lex_state = 380, .external_lex_state = 5}, - [6997] = {.lex_state = 380, .external_lex_state = 2}, - [6998] = {.lex_state = 380, .external_lex_state = 5}, - [6999] = {.lex_state = 54, .external_lex_state = 2}, - [7000] = {.lex_state = 380, .external_lex_state = 5}, - [7001] = {.lex_state = 380, .external_lex_state = 2}, - [7002] = {.lex_state = 380, .external_lex_state = 2}, - [7003] = {.lex_state = 380, .external_lex_state = 2}, - [7004] = {.lex_state = 54, .external_lex_state = 2}, - [7005] = {.lex_state = 54, .external_lex_state = 2}, + [6984] = {.lex_state = 380, .external_lex_state = 8}, + [6985] = {.lex_state = 380, .external_lex_state = 2}, + [6986] = {.lex_state = 380, .external_lex_state = 5}, + [6987] = {.lex_state = 54, .external_lex_state = 2}, + [6988] = {.lex_state = 380, .external_lex_state = 8}, + [6989] = {.lex_state = 57, .external_lex_state = 2}, + [6990] = {.lex_state = 380, .external_lex_state = 2}, + [6991] = {.lex_state = 57, .external_lex_state = 2}, + [6992] = {.lex_state = 23, .external_lex_state = 2}, + [6993] = {.lex_state = 380, .external_lex_state = 5}, + [6994] = {.lex_state = 54, .external_lex_state = 2}, + [6995] = {.lex_state = 380, .external_lex_state = 2}, + [6996] = {.lex_state = 57, .external_lex_state = 2}, + [6997] = {.lex_state = 54, .external_lex_state = 2}, + [6998] = {.lex_state = 54, .external_lex_state = 2}, + [6999] = {.lex_state = 23, .external_lex_state = 2}, + [7000] = {.lex_state = 54, .external_lex_state = 2}, + [7001] = {.lex_state = 57, .external_lex_state = 2}, + [7002] = {.lex_state = 380, .external_lex_state = 5}, + [7003] = {.lex_state = 380, .external_lex_state = 5}, + [7004] = {.lex_state = 380, .external_lex_state = 2}, + [7005] = {.lex_state = 380, .external_lex_state = 5}, [7006] = {.lex_state = 380, .external_lex_state = 5}, [7007] = {.lex_state = 54, .external_lex_state = 2}, [7008] = {.lex_state = 380, .external_lex_state = 5}, - [7009] = {.lex_state = 23, .external_lex_state = 2}, - [7010] = {.lex_state = 380, .external_lex_state = 2}, - [7011] = {.lex_state = 380, .external_lex_state = 2}, - [7012] = {.lex_state = 380, .external_lex_state = 5}, - [7013] = {.lex_state = 57, .external_lex_state = 5}, - [7014] = {.lex_state = 380, .external_lex_state = 2}, - [7015] = {.lex_state = 57, .external_lex_state = 5}, - [7016] = {.lex_state = 23, .external_lex_state = 2}, - [7017] = {.lex_state = 54, .external_lex_state = 2}, - [7018] = {.lex_state = 54, .external_lex_state = 2}, - [7019] = {.lex_state = 54, .external_lex_state = 2}, - [7020] = {.lex_state = 380, .external_lex_state = 2}, - [7021] = {.lex_state = 54, .external_lex_state = 2}, - [7022] = {.lex_state = 380, .external_lex_state = 8}, - [7023] = {.lex_state = 54, .external_lex_state = 2}, + [7009] = {.lex_state = 380, .external_lex_state = 5}, + [7010] = {.lex_state = 380, .external_lex_state = 5}, + [7011] = {.lex_state = 380, .external_lex_state = 5}, + [7012] = {.lex_state = 380, .external_lex_state = 2}, + [7013] = {.lex_state = 380, .external_lex_state = 2}, + [7014] = {.lex_state = 56, .external_lex_state = 2}, + [7015] = {.lex_state = 380, .external_lex_state = 2}, + [7016] = {.lex_state = 1, .external_lex_state = 2}, + [7017] = {.lex_state = 56, .external_lex_state = 2}, + [7018] = {.lex_state = 57, .external_lex_state = 2}, + [7019] = {.lex_state = 380, .external_lex_state = 5}, + [7020] = {.lex_state = 380, .external_lex_state = 5}, + [7021] = {.lex_state = 380, .external_lex_state = 2}, + [7022] = {.lex_state = 380, .external_lex_state = 5}, + [7023] = {.lex_state = 380, .external_lex_state = 2}, [7024] = {.lex_state = 380, .external_lex_state = 5}, - [7025] = {.lex_state = 380, .external_lex_state = 5}, + [7025] = {.lex_state = 23, .external_lex_state = 2}, [7026] = {.lex_state = 380, .external_lex_state = 2}, [7027] = {.lex_state = 380, .external_lex_state = 2}, - [7028] = {.lex_state = 380, .external_lex_state = 2}, - [7029] = {.lex_state = 54, .external_lex_state = 2}, - [7030] = {.lex_state = 380, .external_lex_state = 5}, - [7031] = {.lex_state = 23, .external_lex_state = 2}, - [7032] = {.lex_state = 380, .external_lex_state = 5}, - [7033] = {.lex_state = 380, .external_lex_state = 2}, - [7034] = {.lex_state = 380, .external_lex_state = 5}, + [7028] = {.lex_state = 380, .external_lex_state = 5}, + [7029] = {.lex_state = 380, .external_lex_state = 5}, + [7030] = {.lex_state = 380, .external_lex_state = 2}, + [7031] = {.lex_state = 380, .external_lex_state = 5}, + [7032] = {.lex_state = 380, .external_lex_state = 2}, + [7033] = {.lex_state = 380, .external_lex_state = 5}, + [7034] = {.lex_state = 23, .external_lex_state = 2}, [7035] = {.lex_state = 380, .external_lex_state = 5}, [7036] = {.lex_state = 380, .external_lex_state = 2}, - [7037] = {.lex_state = 380, .external_lex_state = 5}, - [7038] = {.lex_state = 23, .external_lex_state = 2}, - [7039] = {.lex_state = 380, .external_lex_state = 2}, - [7040] = {.lex_state = 380, .external_lex_state = 2}, - [7041] = {.lex_state = 380, .external_lex_state = 5}, - [7042] = {.lex_state = 380, .external_lex_state = 5}, + [7037] = {.lex_state = 54, .external_lex_state = 2}, + [7038] = {.lex_state = 380, .external_lex_state = 5}, + [7039] = {.lex_state = 54, .external_lex_state = 2}, + [7040] = {.lex_state = 380, .external_lex_state = 5}, + [7041] = {.lex_state = 54, .external_lex_state = 2}, + [7042] = {.lex_state = 23, .external_lex_state = 2}, [7043] = {.lex_state = 380, .external_lex_state = 2}, [7044] = {.lex_state = 380, .external_lex_state = 2}, - [7045] = {.lex_state = 380, .external_lex_state = 5}, - [7046] = {.lex_state = 380, .external_lex_state = 5}, + [7045] = {.lex_state = 92, .external_lex_state = 2}, + [7046] = {.lex_state = 23, .external_lex_state = 2}, [7047] = {.lex_state = 380, .external_lex_state = 2}, [7048] = {.lex_state = 380, .external_lex_state = 5}, - [7049] = {.lex_state = 380, .external_lex_state = 5}, - [7050] = {.lex_state = 380, .external_lex_state = 5}, - [7051] = {.lex_state = 380, .external_lex_state = 2}, - [7052] = {.lex_state = 380, .external_lex_state = 5}, - [7053] = {.lex_state = 380, .external_lex_state = 2}, + [7049] = {.lex_state = 380, .external_lex_state = 2}, + [7050] = {.lex_state = 23, .external_lex_state = 2}, + [7051] = {.lex_state = 21, .external_lex_state = 2}, + [7052] = {.lex_state = 23, .external_lex_state = 2}, + [7053] = {.lex_state = 380, .external_lex_state = 5}, [7054] = {.lex_state = 380, .external_lex_state = 5}, - [7055] = {.lex_state = 23, .external_lex_state = 2}, - [7056] = {.lex_state = 380, .external_lex_state = 2}, - [7057] = {.lex_state = 380, .external_lex_state = 2}, - [7058] = {.lex_state = 380, .external_lex_state = 2}, + [7055] = {.lex_state = 71, .external_lex_state = 2}, + [7056] = {.lex_state = 380, .external_lex_state = 5}, + [7057] = {.lex_state = 380, .external_lex_state = 5}, + [7058] = {.lex_state = 380, .external_lex_state = 5}, [7059] = {.lex_state = 380, .external_lex_state = 5}, - [7060] = {.lex_state = 380, .external_lex_state = 5}, - [7061] = {.lex_state = 380, .external_lex_state = 2}, + [7060] = {.lex_state = 380, .external_lex_state = 2}, + [7061] = {.lex_state = 380, .external_lex_state = 5}, [7062] = {.lex_state = 380, .external_lex_state = 5}, - [7063] = {.lex_state = 380, .external_lex_state = 5}, - [7064] = {.lex_state = 380, .external_lex_state = 2}, - [7065] = {.lex_state = 57, .external_lex_state = 2}, - [7066] = {.lex_state = 380, .external_lex_state = 5}, - [7067] = {.lex_state = 57, .external_lex_state = 2}, - [7068] = {.lex_state = 380, .external_lex_state = 5}, - [7069] = {.lex_state = 57, .external_lex_state = 2}, - [7070] = {.lex_state = 380, .external_lex_state = 5}, - [7071] = {.lex_state = 57, .external_lex_state = 2}, - [7072] = {.lex_state = 56, .external_lex_state = 2}, - [7073] = {.lex_state = 380, .external_lex_state = 5}, + [7063] = {.lex_state = 380, .external_lex_state = 2}, + [7064] = {.lex_state = 380, .external_lex_state = 5}, + [7065] = {.lex_state = 380, .external_lex_state = 2}, + [7066] = {.lex_state = 380, .external_lex_state = 2}, + [7067] = {.lex_state = 380, .external_lex_state = 5}, + [7068] = {.lex_state = 23, .external_lex_state = 2}, + [7069] = {.lex_state = 380, .external_lex_state = 2}, + [7070] = {.lex_state = 380, .external_lex_state = 2}, + [7071] = {.lex_state = 380, .external_lex_state = 2}, + [7072] = {.lex_state = 380, .external_lex_state = 2}, + [7073] = {.lex_state = 380, .external_lex_state = 2}, [7074] = {.lex_state = 380, .external_lex_state = 5}, - [7075] = {.lex_state = 380, .external_lex_state = 5}, + [7075] = {.lex_state = 23, .external_lex_state = 2}, [7076] = {.lex_state = 380, .external_lex_state = 5}, [7077] = {.lex_state = 380, .external_lex_state = 5}, [7078] = {.lex_state = 380, .external_lex_state = 5}, - [7079] = {.lex_state = 380, .external_lex_state = 5}, - [7080] = {.lex_state = 380, .external_lex_state = 2}, - [7081] = {.lex_state = 380, .external_lex_state = 5}, + [7079] = {.lex_state = 380, .external_lex_state = 2}, + [7080] = {.lex_state = 380, .external_lex_state = 5}, + [7081] = {.lex_state = 380, .external_lex_state = 2}, [7082] = {.lex_state = 380, .external_lex_state = 5}, [7083] = {.lex_state = 380, .external_lex_state = 5}, [7084] = {.lex_state = 380, .external_lex_state = 5}, - [7085] = {.lex_state = 380, .external_lex_state = 5}, + [7085] = {.lex_state = 380, .external_lex_state = 2}, [7086] = {.lex_state = 380, .external_lex_state = 5}, [7087] = {.lex_state = 380, .external_lex_state = 2}, - [7088] = {.lex_state = 380, .external_lex_state = 2}, - [7089] = {.lex_state = 380, .external_lex_state = 5}, - [7090] = {.lex_state = 380, .external_lex_state = 5}, - [7091] = {.lex_state = 380, .external_lex_state = 5}, - [7092] = {.lex_state = 71, .external_lex_state = 2}, - [7093] = {.lex_state = 380, .external_lex_state = 2}, - [7094] = {.lex_state = 380, .external_lex_state = 5}, - [7095] = {.lex_state = 380, .external_lex_state = 2}, - [7096] = {.lex_state = 380, .external_lex_state = 5}, - [7097] = {.lex_state = 380, .external_lex_state = 2}, - [7098] = {.lex_state = 380, .external_lex_state = 2}, - [7099] = {.lex_state = 380, .external_lex_state = 2}, + [7088] = {.lex_state = 380, .external_lex_state = 5}, + [7089] = {.lex_state = 380, .external_lex_state = 2}, + [7090] = {.lex_state = 380, .external_lex_state = 2}, + [7091] = {.lex_state = 57, .external_lex_state = 2}, + [7092] = {.lex_state = 380, .external_lex_state = 5}, + [7093] = {.lex_state = 380, .external_lex_state = 5}, + [7094] = {.lex_state = 380, .external_lex_state = 2}, + [7095] = {.lex_state = 54, .external_lex_state = 2}, + [7096] = {.lex_state = 380, .external_lex_state = 2}, + [7097] = {.lex_state = 54, .external_lex_state = 2}, + [7098] = {.lex_state = 54, .external_lex_state = 2}, + [7099] = {.lex_state = 23, .external_lex_state = 2}, [7100] = {.lex_state = 380, .external_lex_state = 5}, - [7101] = {.lex_state = 380, .external_lex_state = 5}, - [7102] = {.lex_state = 380, .external_lex_state = 5}, + [7101] = {.lex_state = 23, .external_lex_state = 2}, + [7102] = {.lex_state = 380, .external_lex_state = 2}, [7103] = {.lex_state = 380, .external_lex_state = 2}, - [7104] = {.lex_state = 23, .external_lex_state = 2}, - [7105] = {.lex_state = 380, .external_lex_state = 2}, - [7106] = {.lex_state = 380, .external_lex_state = 5}, + [7104] = {.lex_state = 380, .external_lex_state = 2}, + [7105] = {.lex_state = 380, .external_lex_state = 5}, + [7106] = {.lex_state = 380, .external_lex_state = 2}, [7107] = {.lex_state = 380, .external_lex_state = 2}, - [7108] = {.lex_state = 380, .external_lex_state = 5}, - [7109] = {.lex_state = 23, .external_lex_state = 2}, - [7110] = {.lex_state = 23, .external_lex_state = 2}, - [7111] = {.lex_state = 380, .external_lex_state = 2}, - [7112] = {.lex_state = 380, .external_lex_state = 5}, - [7113] = {.lex_state = 380, .external_lex_state = 5}, - [7114] = {.lex_state = 23, .external_lex_state = 2}, - [7115] = {.lex_state = 380, .external_lex_state = 5}, + [7108] = {.lex_state = 380, .external_lex_state = 2}, + [7109] = {.lex_state = 380, .external_lex_state = 5}, + [7110] = {.lex_state = 380, .external_lex_state = 2}, + [7111] = {.lex_state = 54, .external_lex_state = 2}, + [7112] = {.lex_state = 54, .external_lex_state = 2}, + [7113] = {.lex_state = 380, .external_lex_state = 2}, + [7114] = {.lex_state = 54, .external_lex_state = 2}, + [7115] = {.lex_state = 380, .external_lex_state = 2}, [7116] = {.lex_state = 54, .external_lex_state = 2}, - [7117] = {.lex_state = 380, .external_lex_state = 2}, - [7118] = {.lex_state = 380, .external_lex_state = 2}, - [7119] = {.lex_state = 380, .external_lex_state = 5}, - [7120] = {.lex_state = 23, .external_lex_state = 2}, + [7117] = {.lex_state = 380, .external_lex_state = 5}, + [7118] = {.lex_state = 54, .external_lex_state = 2}, + [7119] = {.lex_state = 380, .external_lex_state = 2}, + [7120] = {.lex_state = 380, .external_lex_state = 2}, [7121] = {.lex_state = 380, .external_lex_state = 2}, - [7122] = {.lex_state = 380, .external_lex_state = 5}, - [7123] = {.lex_state = 54, .external_lex_state = 2}, - [7124] = {.lex_state = 54, .external_lex_state = 2}, - [7125] = {.lex_state = 57, .external_lex_state = 2}, - [7126] = {.lex_state = 54, .external_lex_state = 2}, + [7122] = {.lex_state = 54, .external_lex_state = 2}, + [7123] = {.lex_state = 380, .external_lex_state = 5}, + [7124] = {.lex_state = 380, .external_lex_state = 2}, + [7125] = {.lex_state = 380, .external_lex_state = 2}, + [7126] = {.lex_state = 380, .external_lex_state = 2}, [7127] = {.lex_state = 380, .external_lex_state = 5}, - [7128] = {.lex_state = 23, .external_lex_state = 2}, - [7129] = {.lex_state = 57, .external_lex_state = 2}, - [7130] = {.lex_state = 21, .external_lex_state = 2}, - [7131] = {.lex_state = 54, .external_lex_state = 2}, - [7132] = {.lex_state = 57, .external_lex_state = 2}, + [7128] = {.lex_state = 380, .external_lex_state = 5}, + [7129] = {.lex_state = 380, .external_lex_state = 5}, + [7130] = {.lex_state = 380, .external_lex_state = 5}, + [7131] = {.lex_state = 380, .external_lex_state = 5}, + [7132] = {.lex_state = 380, .external_lex_state = 5}, [7133] = {.lex_state = 380, .external_lex_state = 5}, [7134] = {.lex_state = 380, .external_lex_state = 5}, [7135] = {.lex_state = 380, .external_lex_state = 2}, - [7136] = {.lex_state = 380, .external_lex_state = 2}, + [7136] = {.lex_state = 380, .external_lex_state = 5}, [7137] = {.lex_state = 380, .external_lex_state = 5}, - [7138] = {.lex_state = 380, .external_lex_state = 5}, - [7139] = {.lex_state = 380, .external_lex_state = 5}, - [7140] = {.lex_state = 380, .external_lex_state = 2}, + [7138] = {.lex_state = 380, .external_lex_state = 2}, + [7139] = {.lex_state = 21, .external_lex_state = 2}, + [7140] = {.lex_state = 57, .external_lex_state = 5}, [7141] = {.lex_state = 380, .external_lex_state = 2}, [7142] = {.lex_state = 380, .external_lex_state = 2}, - [7143] = {.lex_state = 56, .external_lex_state = 2}, - [7144] = {.lex_state = 380, .external_lex_state = 2}, - [7145] = {.lex_state = 380, .external_lex_state = 2}, - [7146] = {.lex_state = 54, .external_lex_state = 2}, + [7143] = {.lex_state = 380, .external_lex_state = 2}, + [7144] = {.lex_state = 57, .external_lex_state = 2}, + [7145] = {.lex_state = 380, .external_lex_state = 5}, + [7146] = {.lex_state = 380, .external_lex_state = 5}, [7147] = {.lex_state = 380, .external_lex_state = 2}, - [7148] = {.lex_state = 83, .external_lex_state = 2}, + [7148] = {.lex_state = 380, .external_lex_state = 2}, [7149] = {.lex_state = 380, .external_lex_state = 5}, - [7150] = {.lex_state = 380, .external_lex_state = 2}, + [7150] = {.lex_state = 380, .external_lex_state = 5}, [7151] = {.lex_state = 380, .external_lex_state = 2}, [7152] = {.lex_state = 380, .external_lex_state = 2}, - [7153] = {.lex_state = 380, .external_lex_state = 5}, - [7154] = {.lex_state = 380, .external_lex_state = 5}, - [7155] = {.lex_state = 380, .external_lex_state = 5}, - [7156] = {.lex_state = 380, .external_lex_state = 5}, - [7157] = {.lex_state = 380, .external_lex_state = 5}, + [7153] = {.lex_state = 380, .external_lex_state = 2}, + [7154] = {.lex_state = 380, .external_lex_state = 2}, + [7155] = {.lex_state = 380, .external_lex_state = 2}, + [7156] = {.lex_state = 380, .external_lex_state = 2}, + [7157] = {.lex_state = 380, .external_lex_state = 2}, [7158] = {.lex_state = 380, .external_lex_state = 5}, - [7159] = {.lex_state = 380, .external_lex_state = 5}, - [7160] = {.lex_state = 380, .external_lex_state = 2}, - [7161] = {.lex_state = 380, .external_lex_state = 5}, - [7162] = {.lex_state = 57, .external_lex_state = 2}, - [7163] = {.lex_state = 380, .external_lex_state = 2}, - [7164] = {.lex_state = 380, .external_lex_state = 5}, - [7165] = {.lex_state = 380, .external_lex_state = 5}, - [7166] = {.lex_state = 380, .external_lex_state = 5}, - [7167] = {.lex_state = 380, .external_lex_state = 5}, - [7168] = {.lex_state = 380, .external_lex_state = 5}, + [7159] = {.lex_state = 380, .external_lex_state = 2}, + [7160] = {.lex_state = 57, .external_lex_state = 2}, + [7161] = {.lex_state = 380, .external_lex_state = 2}, + [7162] = {.lex_state = 380, .external_lex_state = 2}, + [7163] = {.lex_state = 54, .external_lex_state = 2}, + [7164] = {.lex_state = 380, .external_lex_state = 2}, + [7165] = {.lex_state = 380, .external_lex_state = 2}, + [7166] = {.lex_state = 380, .external_lex_state = 2}, + [7167] = {.lex_state = 380, .external_lex_state = 2}, + [7168] = {.lex_state = 57, .external_lex_state = 2}, [7169] = {.lex_state = 380, .external_lex_state = 5}, - [7170] = {.lex_state = 380, .external_lex_state = 5}, - [7171] = {.lex_state = 380, .external_lex_state = 5}, + [7170] = {.lex_state = 380, .external_lex_state = 2}, + [7171] = {.lex_state = 380, .external_lex_state = 2}, [7172] = {.lex_state = 380, .external_lex_state = 2}, - [7173] = {.lex_state = 380, .external_lex_state = 5}, - [7174] = {.lex_state = 380, .external_lex_state = 5}, - [7175] = {.lex_state = 380, .external_lex_state = 5}, - [7176] = {.lex_state = 380, .external_lex_state = 5}, - [7177] = {.lex_state = 380, .external_lex_state = 5}, - [7178] = {.lex_state = 380, .external_lex_state = 5}, - [7179] = {.lex_state = 380, .external_lex_state = 5}, + [7173] = {.lex_state = 380, .external_lex_state = 2}, + [7174] = {.lex_state = 57, .external_lex_state = 2}, + [7175] = {.lex_state = 380, .external_lex_state = 2}, + [7176] = {.lex_state = 380, .external_lex_state = 2}, + [7177] = {.lex_state = 57, .external_lex_state = 2}, + [7178] = {.lex_state = 380, .external_lex_state = 2}, + [7179] = {.lex_state = 380, .external_lex_state = 2}, [7180] = {.lex_state = 380, .external_lex_state = 5}, - [7181] = {.lex_state = 380, .external_lex_state = 2}, - [7182] = {.lex_state = 380, .external_lex_state = 5}, + [7181] = {.lex_state = 380, .external_lex_state = 5}, + [7182] = {.lex_state = 380, .external_lex_state = 2}, [7183] = {.lex_state = 380, .external_lex_state = 5}, - [7184] = {.lex_state = 380, .external_lex_state = 5}, + [7184] = {.lex_state = 380, .external_lex_state = 2}, [7185] = {.lex_state = 380, .external_lex_state = 5}, - [7186] = {.lex_state = 380, .external_lex_state = 5}, - [7187] = {.lex_state = 380, .external_lex_state = 5}, - [7188] = {.lex_state = 380, .external_lex_state = 5}, - [7189] = {.lex_state = 380, .external_lex_state = 5}, - [7190] = {.lex_state = 380, .external_lex_state = 5}, - [7191] = {.lex_state = 380, .external_lex_state = 5}, - [7192] = {.lex_state = 21, .external_lex_state = 2}, - [7193] = {.lex_state = 380, .external_lex_state = 5}, + [7186] = {.lex_state = 57, .external_lex_state = 2}, + [7187] = {.lex_state = 380, .external_lex_state = 2}, + [7188] = {.lex_state = 380, .external_lex_state = 2}, + [7189] = {.lex_state = 380, .external_lex_state = 2}, + [7190] = {.lex_state = 380, .external_lex_state = 2}, + [7191] = {.lex_state = 380, .external_lex_state = 2}, + [7192] = {.lex_state = 380, .external_lex_state = 2}, + [7193] = {.lex_state = 380, .external_lex_state = 2}, [7194] = {.lex_state = 380, .external_lex_state = 2}, - [7195] = {.lex_state = 380, .external_lex_state = 5}, - [7196] = {.lex_state = 380, .external_lex_state = 5}, - [7197] = {.lex_state = 380, .external_lex_state = 5}, - [7198] = {.lex_state = 23, .external_lex_state = 2}, + [7195] = {.lex_state = 380, .external_lex_state = 2}, + [7196] = {.lex_state = 380, .external_lex_state = 2}, + [7197] = {.lex_state = 57, .external_lex_state = 2}, + [7198] = {.lex_state = 380, .external_lex_state = 2}, [7199] = {.lex_state = 380, .external_lex_state = 2}, - [7200] = {.lex_state = 380, .external_lex_state = 5}, + [7200] = {.lex_state = 57, .external_lex_state = 2}, [7201] = {.lex_state = 380, .external_lex_state = 2}, - [7202] = {.lex_state = 23, .external_lex_state = 2}, - [7203] = {.lex_state = 57, .external_lex_state = 2}, - [7204] = {.lex_state = 23, .external_lex_state = 2}, - [7205] = {.lex_state = 380, .external_lex_state = 5}, - [7206] = {.lex_state = 380, .external_lex_state = 5}, - [7207] = {.lex_state = 380, .external_lex_state = 5}, - [7208] = {.lex_state = 380, .external_lex_state = 5}, - [7209] = {.lex_state = 23, .external_lex_state = 2}, + [7202] = {.lex_state = 380, .external_lex_state = 2}, + [7203] = {.lex_state = 380, .external_lex_state = 2}, + [7204] = {.lex_state = 380, .external_lex_state = 5}, + [7205] = {.lex_state = 380, .external_lex_state = 2}, + [7206] = {.lex_state = 380, .external_lex_state = 2}, + [7207] = {.lex_state = 380, .external_lex_state = 2}, + [7208] = {.lex_state = 380, .external_lex_state = 2}, + [7209] = {.lex_state = 57, .external_lex_state = 2}, [7210] = {.lex_state = 380, .external_lex_state = 2}, - [7211] = {.lex_state = 54, .external_lex_state = 2}, - [7212] = {.lex_state = 380, .external_lex_state = 5}, + [7211] = {.lex_state = 380, .external_lex_state = 2}, + [7212] = {.lex_state = 380, .external_lex_state = 2}, [7213] = {.lex_state = 380, .external_lex_state = 5}, [7214] = {.lex_state = 57, .external_lex_state = 2}, - [7215] = {.lex_state = 380, .external_lex_state = 5}, + [7215] = {.lex_state = 380, .external_lex_state = 2}, [7216] = {.lex_state = 380, .external_lex_state = 5}, - [7217] = {.lex_state = 380, .external_lex_state = 5}, - [7218] = {.lex_state = 71, .external_lex_state = 2}, - [7219] = {.lex_state = 57, .external_lex_state = 2}, - [7220] = {.lex_state = 57, .external_lex_state = 5}, - [7221] = {.lex_state = 57, .external_lex_state = 5}, - [7222] = {.lex_state = 380, .external_lex_state = 5}, - [7223] = {.lex_state = 57, .external_lex_state = 2}, + [7217] = {.lex_state = 380, .external_lex_state = 2}, + [7218] = {.lex_state = 380, .external_lex_state = 2}, + [7219] = {.lex_state = 380, .external_lex_state = 5}, + [7220] = {.lex_state = 380, .external_lex_state = 5}, + [7221] = {.lex_state = 380, .external_lex_state = 2}, + [7222] = {.lex_state = 380, .external_lex_state = 2}, + [7223] = {.lex_state = 380, .external_lex_state = 2}, [7224] = {.lex_state = 380, .external_lex_state = 5}, [7225] = {.lex_state = 380, .external_lex_state = 5}, [7226] = {.lex_state = 380, .external_lex_state = 5}, - [7227] = {.lex_state = 380, .external_lex_state = 5}, + [7227] = {.lex_state = 380, .external_lex_state = 2}, [7228] = {.lex_state = 380, .external_lex_state = 2}, - [7229] = {.lex_state = 380, .external_lex_state = 5}, - [7230] = {.lex_state = 57, .external_lex_state = 5}, - [7231] = {.lex_state = 380, .external_lex_state = 5}, - [7232] = {.lex_state = 380, .external_lex_state = 5}, - [7233] = {.lex_state = 380, .external_lex_state = 2}, + [7229] = {.lex_state = 380, .external_lex_state = 2}, + [7230] = {.lex_state = 380, .external_lex_state = 2}, + [7231] = {.lex_state = 57, .external_lex_state = 2}, + [7232] = {.lex_state = 380, .external_lex_state = 2}, + [7233] = {.lex_state = 380, .external_lex_state = 5}, [7234] = {.lex_state = 380, .external_lex_state = 2}, - [7235] = {.lex_state = 380, .external_lex_state = 5}, - [7236] = {.lex_state = 57, .external_lex_state = 5}, + [7235] = {.lex_state = 380, .external_lex_state = 2}, + [7236] = {.lex_state = 380, .external_lex_state = 2}, [7237] = {.lex_state = 380, .external_lex_state = 5}, - [7238] = {.lex_state = 57, .external_lex_state = 2}, - [7239] = {.lex_state = 380, .external_lex_state = 5}, - [7240] = {.lex_state = 380, .external_lex_state = 2}, - [7241] = {.lex_state = 380, .external_lex_state = 5}, + [7238] = {.lex_state = 380, .external_lex_state = 2}, + [7239] = {.lex_state = 380, .external_lex_state = 2}, + [7240] = {.lex_state = 380, .external_lex_state = 5}, + [7241] = {.lex_state = 380, .external_lex_state = 2}, [7242] = {.lex_state = 380, .external_lex_state = 5}, - [7243] = {.lex_state = 23, .external_lex_state = 2}, - [7244] = {.lex_state = 57, .external_lex_state = 2}, + [7243] = {.lex_state = 380, .external_lex_state = 5}, + [7244] = {.lex_state = 380, .external_lex_state = 5}, [7245] = {.lex_state = 380, .external_lex_state = 5}, [7246] = {.lex_state = 380, .external_lex_state = 5}, - [7247] = {.lex_state = 380, .external_lex_state = 5}, + [7247] = {.lex_state = 380, .external_lex_state = 2}, [7248] = {.lex_state = 380, .external_lex_state = 5}, - [7249] = {.lex_state = 380, .external_lex_state = 5}, - [7250] = {.lex_state = 380, .external_lex_state = 5}, - [7251] = {.lex_state = 380, .external_lex_state = 5}, - [7252] = {.lex_state = 23, .external_lex_state = 2}, + [7249] = {.lex_state = 380, .external_lex_state = 2}, + [7250] = {.lex_state = 380, .external_lex_state = 2}, + [7251] = {.lex_state = 380, .external_lex_state = 2}, + [7252] = {.lex_state = 380, .external_lex_state = 5}, [7253] = {.lex_state = 380, .external_lex_state = 5}, - [7254] = {.lex_state = 380, .external_lex_state = 2}, - [7255] = {.lex_state = 380, .external_lex_state = 2}, - [7256] = {.lex_state = 380, .external_lex_state = 2}, - [7257] = {.lex_state = 57, .external_lex_state = 2}, - [7258] = {.lex_state = 380, .external_lex_state = 5}, - [7259] = {.lex_state = 380, .external_lex_state = 2}, - [7260] = {.lex_state = 380, .external_lex_state = 5}, - [7261] = {.lex_state = 380, .external_lex_state = 5}, - [7262] = {.lex_state = 57, .external_lex_state = 2}, - [7263] = {.lex_state = 23, .external_lex_state = 2}, + [7254] = {.lex_state = 380, .external_lex_state = 5}, + [7255] = {.lex_state = 380, .external_lex_state = 5}, + [7256] = {.lex_state = 380, .external_lex_state = 5}, + [7257] = {.lex_state = 380, .external_lex_state = 5}, + [7258] = {.lex_state = 380, .external_lex_state = 2}, + [7259] = {.lex_state = 380, .external_lex_state = 5}, + [7260] = {.lex_state = 380, .external_lex_state = 2}, + [7261] = {.lex_state = 380, .external_lex_state = 2}, + [7262] = {.lex_state = 380, .external_lex_state = 5}, + [7263] = {.lex_state = 380, .external_lex_state = 2}, [7264] = {.lex_state = 380, .external_lex_state = 2}, - [7265] = {.lex_state = 380, .external_lex_state = 5}, - [7266] = {.lex_state = 380, .external_lex_state = 5}, - [7267] = {.lex_state = 23, .external_lex_state = 2}, - [7268] = {.lex_state = 380, .external_lex_state = 5}, - [7269] = {.lex_state = 380, .external_lex_state = 2}, - [7270] = {.lex_state = 380, .external_lex_state = 2}, + [7265] = {.lex_state = 57, .external_lex_state = 2}, + [7266] = {.lex_state = 380, .external_lex_state = 2}, + [7267] = {.lex_state = 380, .external_lex_state = 2}, + [7268] = {.lex_state = 380, .external_lex_state = 2}, + [7269] = {.lex_state = 380, .external_lex_state = 5}, + [7270] = {.lex_state = 380, .external_lex_state = 5}, [7271] = {.lex_state = 380, .external_lex_state = 2}, [7272] = {.lex_state = 380, .external_lex_state = 2}, - [7273] = {.lex_state = 380, .external_lex_state = 5}, - [7274] = {.lex_state = 380, .external_lex_state = 5}, + [7273] = {.lex_state = 380, .external_lex_state = 2}, + [7274] = {.lex_state = 380, .external_lex_state = 2}, [7275] = {.lex_state = 380, .external_lex_state = 2}, [7276] = {.lex_state = 380, .external_lex_state = 2}, [7277] = {.lex_state = 380, .external_lex_state = 5}, - [7278] = {.lex_state = 380, .external_lex_state = 5}, + [7278] = {.lex_state = 380, .external_lex_state = 2}, [7279] = {.lex_state = 380, .external_lex_state = 2}, - [7280] = {.lex_state = 23, .external_lex_state = 2}, + [7280] = {.lex_state = 380, .external_lex_state = 2}, [7281] = {.lex_state = 380, .external_lex_state = 5}, - [7282] = {.lex_state = 380, .external_lex_state = 5}, - [7283] = {.lex_state = 380, .external_lex_state = 5}, + [7282] = {.lex_state = 380, .external_lex_state = 2}, + [7283] = {.lex_state = 380, .external_lex_state = 2}, [7284] = {.lex_state = 380, .external_lex_state = 2}, - [7285] = {.lex_state = 71, .external_lex_state = 2}, - [7286] = {.lex_state = 380, .external_lex_state = 5}, + [7285] = {.lex_state = 380, .external_lex_state = 2}, + [7286] = {.lex_state = 380, .external_lex_state = 2}, [7287] = {.lex_state = 380, .external_lex_state = 2}, - [7288] = {.lex_state = 380, .external_lex_state = 2}, - [7289] = {.lex_state = 380, .external_lex_state = 5}, - [7290] = {.lex_state = 57, .external_lex_state = 2}, - [7291] = {.lex_state = 380, .external_lex_state = 2}, - [7292] = {.lex_state = 23, .external_lex_state = 2}, - [7293] = {.lex_state = 380, .external_lex_state = 5}, - [7294] = {.lex_state = 54, .external_lex_state = 2}, - [7295] = {.lex_state = 380, .external_lex_state = 5}, - [7296] = {.lex_state = 54, .external_lex_state = 2}, - [7297] = {.lex_state = 380, .external_lex_state = 5}, - [7298] = {.lex_state = 54, .external_lex_state = 2}, - [7299] = {.lex_state = 380, .external_lex_state = 5}, - [7300] = {.lex_state = 380, .external_lex_state = 2}, + [7288] = {.lex_state = 380, .external_lex_state = 5}, + [7289] = {.lex_state = 380, .external_lex_state = 2}, + [7290] = {.lex_state = 380, .external_lex_state = 2}, + [7291] = {.lex_state = 380, .external_lex_state = 5}, + [7292] = {.lex_state = 380, .external_lex_state = 2}, + [7293] = {.lex_state = 380, .external_lex_state = 2}, + [7294] = {.lex_state = 380, .external_lex_state = 2}, + [7295] = {.lex_state = 380, .external_lex_state = 2}, + [7296] = {.lex_state = 380, .external_lex_state = 2}, + [7297] = {.lex_state = 380, .external_lex_state = 2}, + [7298] = {.lex_state = 380, .external_lex_state = 5}, + [7299] = {.lex_state = 57, .external_lex_state = 2}, + [7300] = {.lex_state = 380, .external_lex_state = 5}, [7301] = {.lex_state = 380, .external_lex_state = 2}, [7302] = {.lex_state = 380, .external_lex_state = 5}, - [7303] = {.lex_state = 380, .external_lex_state = 5}, + [7303] = {.lex_state = 380, .external_lex_state = 2}, [7304] = {.lex_state = 380, .external_lex_state = 2}, [7305] = {.lex_state = 380, .external_lex_state = 2}, - [7306] = {.lex_state = 54, .external_lex_state = 2}, - [7307] = {.lex_state = 54, .external_lex_state = 2}, - [7308] = {.lex_state = 54, .external_lex_state = 2}, - [7309] = {.lex_state = 23, .external_lex_state = 2}, - [7310] = {.lex_state = 380, .external_lex_state = 5}, + [7306] = {.lex_state = 380, .external_lex_state = 5}, + [7307] = {.lex_state = 380, .external_lex_state = 5}, + [7308] = {.lex_state = 380, .external_lex_state = 5}, + [7309] = {.lex_state = 57, .external_lex_state = 2}, + [7310] = {.lex_state = 380, .external_lex_state = 2}, [7311] = {.lex_state = 380, .external_lex_state = 2}, [7312] = {.lex_state = 380, .external_lex_state = 2}, - [7313] = {.lex_state = 23, .external_lex_state = 2}, - [7314] = {.lex_state = 380, .external_lex_state = 5}, - [7315] = {.lex_state = 380, .external_lex_state = 5}, + [7313] = {.lex_state = 380, .external_lex_state = 2}, + [7314] = {.lex_state = 57, .external_lex_state = 2}, + [7315] = {.lex_state = 380, .external_lex_state = 2}, [7316] = {.lex_state = 380, .external_lex_state = 2}, - [7317] = {.lex_state = 57, .external_lex_state = 2}, - [7318] = {.lex_state = 380, .external_lex_state = 5}, - [7319] = {.lex_state = 380, .external_lex_state = 5}, - [7320] = {.lex_state = 380, .external_lex_state = 5}, + [7317] = {.lex_state = 380, .external_lex_state = 2}, + [7318] = {.lex_state = 380, .external_lex_state = 2}, + [7319] = {.lex_state = 380, .external_lex_state = 2}, + [7320] = {.lex_state = 380, .external_lex_state = 2}, [7321] = {.lex_state = 380, .external_lex_state = 5}, - [7322] = {.lex_state = 380, .external_lex_state = 5}, + [7322] = {.lex_state = 380, .external_lex_state = 2}, [7323] = {.lex_state = 380, .external_lex_state = 5}, [7324] = {.lex_state = 380, .external_lex_state = 2}, - [7325] = {.lex_state = 23, .external_lex_state = 2}, + [7325] = {.lex_state = 380, .external_lex_state = 2}, [7326] = {.lex_state = 380, .external_lex_state = 5}, - [7327] = {.lex_state = 380, .external_lex_state = 5}, - [7328] = {.lex_state = 57, .external_lex_state = 5}, - [7329] = {.lex_state = 57, .external_lex_state = 5}, + [7327] = {.lex_state = 380, .external_lex_state = 2}, + [7328] = {.lex_state = 380, .external_lex_state = 5}, + [7329] = {.lex_state = 380, .external_lex_state = 2}, [7330] = {.lex_state = 380, .external_lex_state = 5}, [7331] = {.lex_state = 380, .external_lex_state = 5}, [7332] = {.lex_state = 380, .external_lex_state = 2}, [7333] = {.lex_state = 380, .external_lex_state = 5}, [7334] = {.lex_state = 380, .external_lex_state = 2}, [7335] = {.lex_state = 380, .external_lex_state = 5}, - [7336] = {.lex_state = 380, .external_lex_state = 2}, - [7337] = {.lex_state = 380, .external_lex_state = 5}, + [7336] = {.lex_state = 380, .external_lex_state = 5}, + [7337] = {.lex_state = 380, .external_lex_state = 2}, [7338] = {.lex_state = 380, .external_lex_state = 2}, - [7339] = {.lex_state = 380, .external_lex_state = 5}, + [7339] = {.lex_state = 57, .external_lex_state = 2}, [7340] = {.lex_state = 380, .external_lex_state = 5}, [7341] = {.lex_state = 380, .external_lex_state = 5}, [7342] = {.lex_state = 380, .external_lex_state = 5}, - [7343] = {.lex_state = 380, .external_lex_state = 5}, - [7344] = {.lex_state = 380, .external_lex_state = 5}, - [7345] = {.lex_state = 380, .external_lex_state = 5}, - [7346] = {.lex_state = 380, .external_lex_state = 5}, - [7347] = {.lex_state = 380, .external_lex_state = 5}, - [7348] = {.lex_state = 380, .external_lex_state = 2}, - [7349] = {.lex_state = 380, .external_lex_state = 5}, + [7343] = {.lex_state = 380, .external_lex_state = 2}, + [7344] = {.lex_state = 380, .external_lex_state = 2}, + [7345] = {.lex_state = 380, .external_lex_state = 2}, + [7346] = {.lex_state = 380, .external_lex_state = 2}, + [7347] = {.lex_state = 380, .external_lex_state = 2}, + [7348] = {.lex_state = 380, .external_lex_state = 5}, + [7349] = {.lex_state = 380, .external_lex_state = 2}, [7350] = {.lex_state = 380, .external_lex_state = 5}, [7351] = {.lex_state = 380, .external_lex_state = 5}, - [7352] = {.lex_state = 380, .external_lex_state = 5}, - [7353] = {.lex_state = 380, .external_lex_state = 2}, - [7354] = {.lex_state = 380, .external_lex_state = 5}, - [7355] = {.lex_state = 380, .external_lex_state = 5}, - [7356] = {.lex_state = 380, .external_lex_state = 2}, + [7352] = {.lex_state = 380, .external_lex_state = 2}, + [7353] = {.lex_state = 380, .external_lex_state = 5}, + [7354] = {.lex_state = 380, .external_lex_state = 2}, + [7355] = {.lex_state = 380, .external_lex_state = 2}, + [7356] = {.lex_state = 380, .external_lex_state = 5}, [7357] = {.lex_state = 380, .external_lex_state = 5}, - [7358] = {.lex_state = 23, .external_lex_state = 2}, + [7358] = {.lex_state = 380, .external_lex_state = 2}, [7359] = {.lex_state = 380, .external_lex_state = 5}, [7360] = {.lex_state = 380, .external_lex_state = 2}, [7361] = {.lex_state = 380, .external_lex_state = 5}, - [7362] = {.lex_state = 380, .external_lex_state = 5}, - [7363] = {.lex_state = 380, .external_lex_state = 2}, + [7362] = {.lex_state = 57, .external_lex_state = 2}, + [7363] = {.lex_state = 380, .external_lex_state = 5}, [7364] = {.lex_state = 380, .external_lex_state = 2}, [7365] = {.lex_state = 380, .external_lex_state = 2}, [7366] = {.lex_state = 380, .external_lex_state = 2}, [7367] = {.lex_state = 380, .external_lex_state = 2}, [7368] = {.lex_state = 380, .external_lex_state = 2}, - [7369] = {.lex_state = 380, .external_lex_state = 2}, - [7370] = {.lex_state = 380, .external_lex_state = 2}, - [7371] = {.lex_state = 380, .external_lex_state = 2}, - [7372] = {.lex_state = 380, .external_lex_state = 5}, + [7369] = {.lex_state = 380, .external_lex_state = 5}, + [7370] = {.lex_state = 380, .external_lex_state = 5}, + [7371] = {.lex_state = 380, .external_lex_state = 5}, + [7372] = {.lex_state = 380, .external_lex_state = 2}, [7373] = {.lex_state = 380, .external_lex_state = 2}, [7374] = {.lex_state = 380, .external_lex_state = 2}, [7375] = {.lex_state = 380, .external_lex_state = 2}, @@ -30416,10 +30178,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7380] = {.lex_state = 380, .external_lex_state = 2}, [7381] = {.lex_state = 380, .external_lex_state = 2}, [7382] = {.lex_state = 380, .external_lex_state = 2}, - [7383] = {.lex_state = 380, .external_lex_state = 5}, + [7383] = {.lex_state = 380, .external_lex_state = 2}, [7384] = {.lex_state = 380, .external_lex_state = 2}, - [7385] = {.lex_state = 380, .external_lex_state = 5}, - [7386] = {.lex_state = 380, .external_lex_state = 5}, + [7385] = {.lex_state = 380, .external_lex_state = 2}, + [7386] = {.lex_state = 380, .external_lex_state = 2}, [7387] = {.lex_state = 380, .external_lex_state = 2}, [7388] = {.lex_state = 380, .external_lex_state = 2}, [7389] = {.lex_state = 380, .external_lex_state = 2}, @@ -30427,26 +30189,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7391] = {.lex_state = 380, .external_lex_state = 2}, [7392] = {.lex_state = 380, .external_lex_state = 2}, [7393] = {.lex_state = 380, .external_lex_state = 2}, - [7394] = {.lex_state = 380, .external_lex_state = 5}, - [7395] = {.lex_state = 380, .external_lex_state = 5}, - [7396] = {.lex_state = 380, .external_lex_state = 2}, + [7394] = {.lex_state = 380, .external_lex_state = 2}, + [7395] = {.lex_state = 380, .external_lex_state = 2}, + [7396] = {.lex_state = 380, .external_lex_state = 5}, [7397] = {.lex_state = 380, .external_lex_state = 2}, [7398] = {.lex_state = 380, .external_lex_state = 2}, [7399] = {.lex_state = 380, .external_lex_state = 5}, - [7400] = {.lex_state = 380, .external_lex_state = 2}, + [7400] = {.lex_state = 380, .external_lex_state = 5}, [7401] = {.lex_state = 380, .external_lex_state = 2}, [7402] = {.lex_state = 380, .external_lex_state = 2}, - [7403] = {.lex_state = 380, .external_lex_state = 2}, - [7404] = {.lex_state = 380, .external_lex_state = 5}, + [7403] = {.lex_state = 57, .external_lex_state = 2}, + [7404] = {.lex_state = 380, .external_lex_state = 2}, [7405] = {.lex_state = 380, .external_lex_state = 2}, [7406] = {.lex_state = 380, .external_lex_state = 2}, - [7407] = {.lex_state = 380, .external_lex_state = 5}, - [7408] = {.lex_state = 380, .external_lex_state = 2}, - [7409] = {.lex_state = 380, .external_lex_state = 2}, - [7410] = {.lex_state = 380, .external_lex_state = 2}, - [7411] = {.lex_state = 380, .external_lex_state = 2}, - [7412] = {.lex_state = 380, .external_lex_state = 2}, - [7413] = {.lex_state = 380, .external_lex_state = 2}, + [7407] = {.lex_state = 380, .external_lex_state = 2}, + [7408] = {.lex_state = 57, .external_lex_state = 2}, + [7409] = {.lex_state = 380, .external_lex_state = 5}, + [7410] = {.lex_state = 380, .external_lex_state = 5}, + [7411] = {.lex_state = 57, .external_lex_state = 2}, + [7412] = {.lex_state = 380, .external_lex_state = 5}, + [7413] = {.lex_state = 380, .external_lex_state = 5}, [7414] = {.lex_state = 380, .external_lex_state = 2}, [7415] = {.lex_state = 380, .external_lex_state = 2}, [7416] = {.lex_state = 380, .external_lex_state = 2}, @@ -30456,118 +30218,118 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7420] = {.lex_state = 380, .external_lex_state = 2}, [7421] = {.lex_state = 380, .external_lex_state = 2}, [7422] = {.lex_state = 380, .external_lex_state = 2}, - [7423] = {.lex_state = 380, .external_lex_state = 2}, + [7423] = {.lex_state = 57, .external_lex_state = 2}, [7424] = {.lex_state = 380, .external_lex_state = 2}, - [7425] = {.lex_state = 380, .external_lex_state = 2}, + [7425] = {.lex_state = 57, .external_lex_state = 2}, [7426] = {.lex_state = 380, .external_lex_state = 2}, [7427] = {.lex_state = 380, .external_lex_state = 2}, - [7428] = {.lex_state = 380, .external_lex_state = 2}, + [7428] = {.lex_state = 57, .external_lex_state = 2}, [7429] = {.lex_state = 380, .external_lex_state = 2}, - [7430] = {.lex_state = 380, .external_lex_state = 2}, + [7430] = {.lex_state = 57, .external_lex_state = 2}, [7431] = {.lex_state = 380, .external_lex_state = 2}, [7432] = {.lex_state = 380, .external_lex_state = 2}, [7433] = {.lex_state = 380, .external_lex_state = 2}, - [7434] = {.lex_state = 380, .external_lex_state = 2}, - [7435] = {.lex_state = 57, .external_lex_state = 2}, + [7434] = {.lex_state = 57, .external_lex_state = 2}, + [7435] = {.lex_state = 380, .external_lex_state = 5}, [7436] = {.lex_state = 380, .external_lex_state = 2}, - [7437] = {.lex_state = 380, .external_lex_state = 5}, - [7438] = {.lex_state = 380, .external_lex_state = 5}, - [7439] = {.lex_state = 380, .external_lex_state = 2}, - [7440] = {.lex_state = 380, .external_lex_state = 5}, - [7441] = {.lex_state = 380, .external_lex_state = 2}, - [7442] = {.lex_state = 380, .external_lex_state = 5}, + [7437] = {.lex_state = 380, .external_lex_state = 2}, + [7438] = {.lex_state = 380, .external_lex_state = 2}, + [7439] = {.lex_state = 57, .external_lex_state = 2}, + [7440] = {.lex_state = 380, .external_lex_state = 2}, + [7441] = {.lex_state = 57, .external_lex_state = 2}, + [7442] = {.lex_state = 57, .external_lex_state = 2}, [7443] = {.lex_state = 380, .external_lex_state = 2}, [7444] = {.lex_state = 380, .external_lex_state = 2}, - [7445] = {.lex_state = 380, .external_lex_state = 2}, + [7445] = {.lex_state = 57, .external_lex_state = 2}, [7446] = {.lex_state = 380, .external_lex_state = 2}, [7447] = {.lex_state = 380, .external_lex_state = 2}, [7448] = {.lex_state = 380, .external_lex_state = 2}, - [7449] = {.lex_state = 57, .external_lex_state = 2}, + [7449] = {.lex_state = 380, .external_lex_state = 2}, [7450] = {.lex_state = 380, .external_lex_state = 2}, - [7451] = {.lex_state = 380, .external_lex_state = 5}, - [7452] = {.lex_state = 380, .external_lex_state = 2}, + [7451] = {.lex_state = 57, .external_lex_state = 2}, + [7452] = {.lex_state = 57, .external_lex_state = 2}, [7453] = {.lex_state = 380, .external_lex_state = 2}, [7454] = {.lex_state = 380, .external_lex_state = 2}, - [7455] = {.lex_state = 380, .external_lex_state = 2}, - [7456] = {.lex_state = 380, .external_lex_state = 5}, + [7455] = {.lex_state = 57, .external_lex_state = 2}, + [7456] = {.lex_state = 57, .external_lex_state = 2}, [7457] = {.lex_state = 380, .external_lex_state = 5}, - [7458] = {.lex_state = 380, .external_lex_state = 5}, + [7458] = {.lex_state = 380, .external_lex_state = 2}, [7459] = {.lex_state = 380, .external_lex_state = 2}, [7460] = {.lex_state = 380, .external_lex_state = 2}, - [7461] = {.lex_state = 380, .external_lex_state = 5}, - [7462] = {.lex_state = 380, .external_lex_state = 2}, + [7461] = {.lex_state = 57, .external_lex_state = 2}, + [7462] = {.lex_state = 54, .external_lex_state = 2}, [7463] = {.lex_state = 380, .external_lex_state = 2}, [7464] = {.lex_state = 380, .external_lex_state = 2}, [7465] = {.lex_state = 380, .external_lex_state = 2}, - [7466] = {.lex_state = 380, .external_lex_state = 2}, + [7466] = {.lex_state = 57, .external_lex_state = 2}, [7467] = {.lex_state = 380, .external_lex_state = 2}, [7468] = {.lex_state = 380, .external_lex_state = 2}, [7469] = {.lex_state = 380, .external_lex_state = 2}, - [7470] = {.lex_state = 380, .external_lex_state = 5}, - [7471] = {.lex_state = 380, .external_lex_state = 5}, + [7470] = {.lex_state = 380, .external_lex_state = 2}, + [7471] = {.lex_state = 380, .external_lex_state = 2}, [7472] = {.lex_state = 380, .external_lex_state = 2}, [7473] = {.lex_state = 380, .external_lex_state = 2}, - [7474] = {.lex_state = 380, .external_lex_state = 2}, - [7475] = {.lex_state = 380, .external_lex_state = 2}, - [7476] = {.lex_state = 380, .external_lex_state = 5}, + [7474] = {.lex_state = 380, .external_lex_state = 5}, + [7475] = {.lex_state = 57, .external_lex_state = 2}, + [7476] = {.lex_state = 380, .external_lex_state = 2}, [7477] = {.lex_state = 380, .external_lex_state = 5}, - [7478] = {.lex_state = 380, .external_lex_state = 2}, + [7478] = {.lex_state = 57, .external_lex_state = 2}, [7479] = {.lex_state = 380, .external_lex_state = 2}, [7480] = {.lex_state = 380, .external_lex_state = 2}, - [7481] = {.lex_state = 380, .external_lex_state = 5}, - [7482] = {.lex_state = 380, .external_lex_state = 5}, - [7483] = {.lex_state = 57, .external_lex_state = 2}, + [7481] = {.lex_state = 380, .external_lex_state = 2}, + [7482] = {.lex_state = 380, .external_lex_state = 2}, + [7483] = {.lex_state = 380, .external_lex_state = 2}, [7484] = {.lex_state = 380, .external_lex_state = 2}, - [7485] = {.lex_state = 380, .external_lex_state = 2}, + [7485] = {.lex_state = 380, .external_lex_state = 5}, [7486] = {.lex_state = 380, .external_lex_state = 2}, - [7487] = {.lex_state = 380, .external_lex_state = 2}, + [7487] = {.lex_state = 380, .external_lex_state = 5}, [7488] = {.lex_state = 380, .external_lex_state = 2}, [7489] = {.lex_state = 380, .external_lex_state = 2}, - [7490] = {.lex_state = 380, .external_lex_state = 2}, - [7491] = {.lex_state = 380, .external_lex_state = 2}, + [7490] = {.lex_state = 380, .external_lex_state = 5}, + [7491] = {.lex_state = 380, .external_lex_state = 5}, [7492] = {.lex_state = 380, .external_lex_state = 2}, [7493] = {.lex_state = 380, .external_lex_state = 2}, [7494] = {.lex_state = 380, .external_lex_state = 2}, - [7495] = {.lex_state = 380, .external_lex_state = 2}, - [7496] = {.lex_state = 380, .external_lex_state = 2}, + [7495] = {.lex_state = 380, .external_lex_state = 5}, + [7496] = {.lex_state = 380, .external_lex_state = 5}, [7497] = {.lex_state = 380, .external_lex_state = 2}, [7498] = {.lex_state = 380, .external_lex_state = 2}, - [7499] = {.lex_state = 380, .external_lex_state = 2}, - [7500] = {.lex_state = 380, .external_lex_state = 5}, - [7501] = {.lex_state = 380, .external_lex_state = 2}, - [7502] = {.lex_state = 380, .external_lex_state = 5}, + [7499] = {.lex_state = 57, .external_lex_state = 2}, + [7500] = {.lex_state = 380, .external_lex_state = 2}, + [7501] = {.lex_state = 57, .external_lex_state = 2}, + [7502] = {.lex_state = 380, .external_lex_state = 2}, [7503] = {.lex_state = 380, .external_lex_state = 5}, - [7504] = {.lex_state = 380, .external_lex_state = 2}, - [7505] = {.lex_state = 380, .external_lex_state = 2}, - [7506] = {.lex_state = 57, .external_lex_state = 2}, - [7507] = {.lex_state = 380, .external_lex_state = 2}, - [7508] = {.lex_state = 57, .external_lex_state = 2}, - [7509] = {.lex_state = 380, .external_lex_state = 5}, - [7510] = {.lex_state = 380, .external_lex_state = 5}, - [7511] = {.lex_state = 380, .external_lex_state = 5}, + [7504] = {.lex_state = 380, .external_lex_state = 5}, + [7505] = {.lex_state = 380, .external_lex_state = 5}, + [7506] = {.lex_state = 380, .external_lex_state = 5}, + [7507] = {.lex_state = 380, .external_lex_state = 5}, + [7508] = {.lex_state = 380, .external_lex_state = 2}, + [7509] = {.lex_state = 380, .external_lex_state = 2}, + [7510] = {.lex_state = 380, .external_lex_state = 2}, + [7511] = {.lex_state = 57, .external_lex_state = 2}, [7512] = {.lex_state = 380, .external_lex_state = 2}, - [7513] = {.lex_state = 57, .external_lex_state = 2}, - [7514] = {.lex_state = 380, .external_lex_state = 5}, + [7513] = {.lex_state = 380, .external_lex_state = 2}, + [7514] = {.lex_state = 380, .external_lex_state = 2}, [7515] = {.lex_state = 380, .external_lex_state = 2}, - [7516] = {.lex_state = 380, .external_lex_state = 5}, + [7516] = {.lex_state = 380, .external_lex_state = 2}, [7517] = {.lex_state = 380, .external_lex_state = 2}, - [7518] = {.lex_state = 380, .external_lex_state = 2}, - [7519] = {.lex_state = 380, .external_lex_state = 2}, - [7520] = {.lex_state = 380, .external_lex_state = 2}, - [7521] = {.lex_state = 57, .external_lex_state = 2}, + [7518] = {.lex_state = 57, .external_lex_state = 2}, + [7519] = {.lex_state = 57, .external_lex_state = 2}, + [7520] = {.lex_state = 380, .external_lex_state = 5}, + [7521] = {.lex_state = 380, .external_lex_state = 2}, [7522] = {.lex_state = 380, .external_lex_state = 2}, [7523] = {.lex_state = 380, .external_lex_state = 2}, [7524] = {.lex_state = 380, .external_lex_state = 2}, [7525] = {.lex_state = 380, .external_lex_state = 2}, - [7526] = {.lex_state = 380, .external_lex_state = 2}, - [7527] = {.lex_state = 380, .external_lex_state = 2}, + [7526] = {.lex_state = 57, .external_lex_state = 2}, + [7527] = {.lex_state = 380, .external_lex_state = 5}, [7528] = {.lex_state = 380, .external_lex_state = 2}, [7529] = {.lex_state = 380, .external_lex_state = 2}, - [7530] = {.lex_state = 380, .external_lex_state = 2}, - [7531] = {.lex_state = 380, .external_lex_state = 2}, + [7530] = {.lex_state = 57, .external_lex_state = 2}, + [7531] = {.lex_state = 57, .external_lex_state = 2}, [7532] = {.lex_state = 380, .external_lex_state = 2}, [7533] = {.lex_state = 380, .external_lex_state = 2}, - [7534] = {.lex_state = 380, .external_lex_state = 5}, + [7534] = {.lex_state = 380, .external_lex_state = 2}, [7535] = {.lex_state = 380, .external_lex_state = 2}, [7536] = {.lex_state = 380, .external_lex_state = 2}, [7537] = {.lex_state = 380, .external_lex_state = 2}, @@ -30575,38 +30337,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7539] = {.lex_state = 380, .external_lex_state = 2}, [7540] = {.lex_state = 380, .external_lex_state = 2}, [7541] = {.lex_state = 380, .external_lex_state = 2}, - [7542] = {.lex_state = 380, .external_lex_state = 2}, + [7542] = {.lex_state = 380, .external_lex_state = 5}, [7543] = {.lex_state = 380, .external_lex_state = 2}, [7544] = {.lex_state = 380, .external_lex_state = 2}, [7545] = {.lex_state = 380, .external_lex_state = 2}, [7546] = {.lex_state = 380, .external_lex_state = 2}, - [7547] = {.lex_state = 380, .external_lex_state = 2}, - [7548] = {.lex_state = 380, .external_lex_state = 5}, + [7547] = {.lex_state = 56, .external_lex_state = 2}, + [7548] = {.lex_state = 380, .external_lex_state = 2}, [7549] = {.lex_state = 380, .external_lex_state = 2}, - [7550] = {.lex_state = 380, .external_lex_state = 2}, + [7550] = {.lex_state = 57, .external_lex_state = 2}, [7551] = {.lex_state = 380, .external_lex_state = 2}, - [7552] = {.lex_state = 380, .external_lex_state = 5}, + [7552] = {.lex_state = 380, .external_lex_state = 2}, [7553] = {.lex_state = 380, .external_lex_state = 5}, [7554] = {.lex_state = 380, .external_lex_state = 5}, [7555] = {.lex_state = 380, .external_lex_state = 2}, [7556] = {.lex_state = 380, .external_lex_state = 2}, [7557] = {.lex_state = 380, .external_lex_state = 2}, [7558] = {.lex_state = 380, .external_lex_state = 2}, - [7559] = {.lex_state = 380, .external_lex_state = 5}, + [7559] = {.lex_state = 380, .external_lex_state = 2}, [7560] = {.lex_state = 380, .external_lex_state = 2}, - [7561] = {.lex_state = 380, .external_lex_state = 5}, - [7562] = {.lex_state = 57, .external_lex_state = 2}, + [7561] = {.lex_state = 380, .external_lex_state = 2}, + [7562] = {.lex_state = 380, .external_lex_state = 5}, [7563] = {.lex_state = 380, .external_lex_state = 2}, [7564] = {.lex_state = 380, .external_lex_state = 2}, - [7565] = {.lex_state = 380, .external_lex_state = 5}, + [7565] = {.lex_state = 380, .external_lex_state = 2}, [7566] = {.lex_state = 380, .external_lex_state = 2}, - [7567] = {.lex_state = 380, .external_lex_state = 5}, + [7567] = {.lex_state = 380, .external_lex_state = 2}, [7568] = {.lex_state = 380, .external_lex_state = 2}, [7569] = {.lex_state = 380, .external_lex_state = 2}, - [7570] = {.lex_state = 57, .external_lex_state = 2}, + [7570] = {.lex_state = 380, .external_lex_state = 2}, [7571] = {.lex_state = 380, .external_lex_state = 5}, [7572] = {.lex_state = 380, .external_lex_state = 2}, - [7573] = {.lex_state = 380, .external_lex_state = 5}, + [7573] = {.lex_state = 380, .external_lex_state = 2}, [7574] = {.lex_state = 380, .external_lex_state = 2}, [7575] = {.lex_state = 380, .external_lex_state = 2}, [7576] = {.lex_state = 380, .external_lex_state = 2}, @@ -30614,13 +30376,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7578] = {.lex_state = 380, .external_lex_state = 2}, [7579] = {.lex_state = 380, .external_lex_state = 2}, [7580] = {.lex_state = 380, .external_lex_state = 2}, - [7581] = {.lex_state = 380, .external_lex_state = 2}, + [7581] = {.lex_state = 57, .external_lex_state = 2}, [7582] = {.lex_state = 380, .external_lex_state = 2}, - [7583] = {.lex_state = 380, .external_lex_state = 2}, + [7583] = {.lex_state = 57, .external_lex_state = 2}, [7584] = {.lex_state = 380, .external_lex_state = 2}, - [7585] = {.lex_state = 57, .external_lex_state = 2}, + [7585] = {.lex_state = 380, .external_lex_state = 2}, [7586] = {.lex_state = 380, .external_lex_state = 2}, - [7587] = {.lex_state = 54, .external_lex_state = 2}, + [7587] = {.lex_state = 380, .external_lex_state = 2}, [7588] = {.lex_state = 380, .external_lex_state = 2}, [7589] = {.lex_state = 380, .external_lex_state = 2}, [7590] = {.lex_state = 380, .external_lex_state = 2}, @@ -30628,29 +30390,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7592] = {.lex_state = 380, .external_lex_state = 5}, [7593] = {.lex_state = 380, .external_lex_state = 2}, [7594] = {.lex_state = 380, .external_lex_state = 2}, - [7595] = {.lex_state = 380, .external_lex_state = 2}, + [7595] = {.lex_state = 380, .external_lex_state = 5}, [7596] = {.lex_state = 380, .external_lex_state = 2}, - [7597] = {.lex_state = 380, .external_lex_state = 5}, - [7598] = {.lex_state = 380, .external_lex_state = 5}, - [7599] = {.lex_state = 380, .external_lex_state = 5}, + [7597] = {.lex_state = 380, .external_lex_state = 2}, + [7598] = {.lex_state = 57, .external_lex_state = 2}, + [7599] = {.lex_state = 380, .external_lex_state = 2}, [7600] = {.lex_state = 380, .external_lex_state = 2}, [7601] = {.lex_state = 380, .external_lex_state = 2}, - [7602] = {.lex_state = 380, .external_lex_state = 2}, + [7602] = {.lex_state = 380, .external_lex_state = 5}, [7603] = {.lex_state = 380, .external_lex_state = 2}, - [7604] = {.lex_state = 57, .external_lex_state = 2}, + [7604] = {.lex_state = 380, .external_lex_state = 5}, [7605] = {.lex_state = 380, .external_lex_state = 2}, [7606] = {.lex_state = 380, .external_lex_state = 2}, [7607] = {.lex_state = 380, .external_lex_state = 2}, [7608] = {.lex_state = 380, .external_lex_state = 2}, [7609] = {.lex_state = 380, .external_lex_state = 2}, - [7610] = {.lex_state = 380, .external_lex_state = 5}, + [7610] = {.lex_state = 380, .external_lex_state = 2}, [7611] = {.lex_state = 380, .external_lex_state = 2}, - [7612] = {.lex_state = 380, .external_lex_state = 2}, - [7613] = {.lex_state = 380, .external_lex_state = 5}, + [7612] = {.lex_state = 380, .external_lex_state = 5}, + [7613] = {.lex_state = 380, .external_lex_state = 2}, [7614] = {.lex_state = 380, .external_lex_state = 5}, - [7615] = {.lex_state = 380, .external_lex_state = 2}, - [7616] = {.lex_state = 380, .external_lex_state = 2}, - [7617] = {.lex_state = 57, .external_lex_state = 2}, + [7615] = {.lex_state = 380, .external_lex_state = 5}, + [7616] = {.lex_state = 380, .external_lex_state = 5}, + [7617] = {.lex_state = 380, .external_lex_state = 5}, [7618] = {.lex_state = 380, .external_lex_state = 2}, [7619] = {.lex_state = 380, .external_lex_state = 2}, [7620] = {.lex_state = 380, .external_lex_state = 2}, @@ -30662,55 +30424,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7626] = {.lex_state = 380, .external_lex_state = 2}, [7627] = {.lex_state = 380, .external_lex_state = 2}, [7628] = {.lex_state = 380, .external_lex_state = 2}, - [7629] = {.lex_state = 57, .external_lex_state = 2}, + [7629] = {.lex_state = 380, .external_lex_state = 2}, [7630] = {.lex_state = 380, .external_lex_state = 2}, [7631] = {.lex_state = 380, .external_lex_state = 2}, - [7632] = {.lex_state = 380, .external_lex_state = 2}, + [7632] = {.lex_state = 380, .external_lex_state = 5}, [7633] = {.lex_state = 380, .external_lex_state = 2}, - [7634] = {.lex_state = 57, .external_lex_state = 2}, + [7634] = {.lex_state = 380, .external_lex_state = 2}, [7635] = {.lex_state = 380, .external_lex_state = 2}, [7636] = {.lex_state = 380, .external_lex_state = 2}, - [7637] = {.lex_state = 380, .external_lex_state = 5}, + [7637] = {.lex_state = 380, .external_lex_state = 2}, [7638] = {.lex_state = 380, .external_lex_state = 2}, [7639] = {.lex_state = 380, .external_lex_state = 2}, - [7640] = {.lex_state = 57, .external_lex_state = 2}, + [7640] = {.lex_state = 380, .external_lex_state = 5}, [7641] = {.lex_state = 380, .external_lex_state = 2}, [7642] = {.lex_state = 380, .external_lex_state = 2}, [7643] = {.lex_state = 380, .external_lex_state = 2}, - [7644] = {.lex_state = 380, .external_lex_state = 5}, + [7644] = {.lex_state = 380, .external_lex_state = 2}, [7645] = {.lex_state = 380, .external_lex_state = 2}, - [7646] = {.lex_state = 380, .external_lex_state = 2}, + [7646] = {.lex_state = 380, .external_lex_state = 5}, [7647] = {.lex_state = 380, .external_lex_state = 2}, [7648] = {.lex_state = 380, .external_lex_state = 2}, [7649] = {.lex_state = 380, .external_lex_state = 2}, [7650] = {.lex_state = 380, .external_lex_state = 2}, [7651] = {.lex_state = 380, .external_lex_state = 2}, [7652] = {.lex_state = 380, .external_lex_state = 2}, - [7653] = {.lex_state = 380, .external_lex_state = 2}, + [7653] = {.lex_state = 380, .external_lex_state = 5}, [7654] = {.lex_state = 380, .external_lex_state = 2}, [7655] = {.lex_state = 380, .external_lex_state = 2}, - [7656] = {.lex_state = 380, .external_lex_state = 2}, + [7656] = {.lex_state = 380, .external_lex_state = 5}, [7657] = {.lex_state = 380, .external_lex_state = 2}, [7658] = {.lex_state = 380, .external_lex_state = 2}, [7659] = {.lex_state = 380, .external_lex_state = 2}, [7660] = {.lex_state = 380, .external_lex_state = 2}, [7661] = {.lex_state = 380, .external_lex_state = 2}, - [7662] = {.lex_state = 380, .external_lex_state = 2}, + [7662] = {.lex_state = 57, .external_lex_state = 2}, [7663] = {.lex_state = 380, .external_lex_state = 2}, [7664] = {.lex_state = 380, .external_lex_state = 2}, - [7665] = {.lex_state = 57, .external_lex_state = 2}, + [7665] = {.lex_state = 380, .external_lex_state = 5}, [7666] = {.lex_state = 380, .external_lex_state = 2}, [7667] = {.lex_state = 380, .external_lex_state = 2}, [7668] = {.lex_state = 380, .external_lex_state = 2}, [7669] = {.lex_state = 380, .external_lex_state = 2}, [7670] = {.lex_state = 380, .external_lex_state = 2}, - [7671] = {.lex_state = 380, .external_lex_state = 5}, + [7671] = {.lex_state = 380, .external_lex_state = 2}, [7672] = {.lex_state = 380, .external_lex_state = 2}, - [7673] = {.lex_state = 380, .external_lex_state = 5}, + [7673] = {.lex_state = 380, .external_lex_state = 2}, [7674] = {.lex_state = 380, .external_lex_state = 2}, [7675] = {.lex_state = 380, .external_lex_state = 2}, - [7676] = {.lex_state = 380, .external_lex_state = 2}, - [7677] = {.lex_state = 380, .external_lex_state = 2}, + [7676] = {.lex_state = 380, .external_lex_state = 5}, + [7677] = {.lex_state = 1, .external_lex_state = 2}, [7678] = {.lex_state = 380, .external_lex_state = 2}, [7679] = {.lex_state = 380, .external_lex_state = 2}, [7680] = {.lex_state = 380, .external_lex_state = 2}, @@ -30719,64 +30481,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7683] = {.lex_state = 380, .external_lex_state = 5}, [7684] = {.lex_state = 380, .external_lex_state = 5}, [7685] = {.lex_state = 380, .external_lex_state = 2}, - [7686] = {.lex_state = 380, .external_lex_state = 5}, + [7686] = {.lex_state = 380, .external_lex_state = 2}, [7687] = {.lex_state = 380, .external_lex_state = 2}, [7688] = {.lex_state = 380, .external_lex_state = 2}, [7689] = {.lex_state = 380, .external_lex_state = 2}, - [7690] = {.lex_state = 380, .external_lex_state = 5}, + [7690] = {.lex_state = 380, .external_lex_state = 2}, [7691] = {.lex_state = 380, .external_lex_state = 2}, - [7692] = {.lex_state = 57, .external_lex_state = 2}, + [7692] = {.lex_state = 380, .external_lex_state = 5}, [7693] = {.lex_state = 380, .external_lex_state = 2}, [7694] = {.lex_state = 380, .external_lex_state = 5}, - [7695] = {.lex_state = 380, .external_lex_state = 5}, + [7695] = {.lex_state = 380, .external_lex_state = 2}, [7696] = {.lex_state = 380, .external_lex_state = 2}, [7697] = {.lex_state = 380, .external_lex_state = 2}, [7698] = {.lex_state = 380, .external_lex_state = 2}, - [7699] = {.lex_state = 57, .external_lex_state = 2}, + [7699] = {.lex_state = 380, .external_lex_state = 2}, [7700] = {.lex_state = 380, .external_lex_state = 2}, [7701] = {.lex_state = 380, .external_lex_state = 2}, [7702] = {.lex_state = 380, .external_lex_state = 5}, - [7703] = {.lex_state = 57, .external_lex_state = 2}, + [7703] = {.lex_state = 380, .external_lex_state = 5}, [7704] = {.lex_state = 380, .external_lex_state = 2}, - [7705] = {.lex_state = 57, .external_lex_state = 2}, + [7705] = {.lex_state = 380, .external_lex_state = 2}, [7706] = {.lex_state = 380, .external_lex_state = 2}, - [7707] = {.lex_state = 380, .external_lex_state = 2}, - [7708] = {.lex_state = 380, .external_lex_state = 2}, - [7709] = {.lex_state = 380, .external_lex_state = 5}, - [7710] = {.lex_state = 380, .external_lex_state = 5}, + [7707] = {.lex_state = 380, .external_lex_state = 5}, + [7708] = {.lex_state = 57, .external_lex_state = 2}, + [7709] = {.lex_state = 380, .external_lex_state = 2}, + [7710] = {.lex_state = 380, .external_lex_state = 2}, [7711] = {.lex_state = 380, .external_lex_state = 2}, - [7712] = {.lex_state = 54, .external_lex_state = 2}, - [7713] = {.lex_state = 380, .external_lex_state = 2}, - [7714] = {.lex_state = 380, .external_lex_state = 2}, + [7712] = {.lex_state = 380, .external_lex_state = 2}, + [7713] = {.lex_state = 57, .external_lex_state = 2}, + [7714] = {.lex_state = 380, .external_lex_state = 5}, [7715] = {.lex_state = 380, .external_lex_state = 2}, [7716] = {.lex_state = 380, .external_lex_state = 2}, - [7717] = {.lex_state = 380, .external_lex_state = 2}, + [7717] = {.lex_state = 380, .external_lex_state = 5}, [7718] = {.lex_state = 380, .external_lex_state = 2}, - [7719] = {.lex_state = 380, .external_lex_state = 2}, + [7719] = {.lex_state = 380, .external_lex_state = 5}, [7720] = {.lex_state = 380, .external_lex_state = 2}, - [7721] = {.lex_state = 380, .external_lex_state = 5}, - [7722] = {.lex_state = 380, .external_lex_state = 5}, - [7723] = {.lex_state = 57, .external_lex_state = 2}, + [7721] = {.lex_state = 380, .external_lex_state = 2}, + [7722] = {.lex_state = 380, .external_lex_state = 2}, + [7723] = {.lex_state = 380, .external_lex_state = 2}, [7724] = {.lex_state = 380, .external_lex_state = 2}, - [7725] = {.lex_state = 380, .external_lex_state = 2}, - [7726] = {.lex_state = 56, .external_lex_state = 2}, + [7725] = {.lex_state = 380, .external_lex_state = 5}, + [7726] = {.lex_state = 380, .external_lex_state = 2}, [7727] = {.lex_state = 380, .external_lex_state = 2}, - [7728] = {.lex_state = 380, .external_lex_state = 2}, + [7728] = {.lex_state = 380, .external_lex_state = 5}, [7729] = {.lex_state = 380, .external_lex_state = 2}, - [7730] = {.lex_state = 57, .external_lex_state = 2}, + [7730] = {.lex_state = 380, .external_lex_state = 2}, [7731] = {.lex_state = 380, .external_lex_state = 2}, - [7732] = {.lex_state = 380, .external_lex_state = 5}, + [7732] = {.lex_state = 380, .external_lex_state = 2}, [7733] = {.lex_state = 380, .external_lex_state = 2}, - [7734] = {.lex_state = 57, .external_lex_state = 2}, + [7734] = {.lex_state = 380, .external_lex_state = 2}, [7735] = {.lex_state = 380, .external_lex_state = 2}, - [7736] = {.lex_state = 57, .external_lex_state = 2}, + [7736] = {.lex_state = 56, .external_lex_state = 2}, [7737] = {.lex_state = 380, .external_lex_state = 2}, - [7738] = {.lex_state = 380, .external_lex_state = 5}, - [7739] = {.lex_state = 57, .external_lex_state = 2}, + [7738] = {.lex_state = 380, .external_lex_state = 2}, + [7739] = {.lex_state = 380, .external_lex_state = 2}, [7740] = {.lex_state = 380, .external_lex_state = 2}, [7741] = {.lex_state = 380, .external_lex_state = 2}, [7742] = {.lex_state = 380, .external_lex_state = 2}, - [7743] = {.lex_state = 57, .external_lex_state = 2}, + [7743] = {.lex_state = 380, .external_lex_state = 2}, [7744] = {.lex_state = 380, .external_lex_state = 2}, [7745] = {.lex_state = 380, .external_lex_state = 2}, [7746] = {.lex_state = 380, .external_lex_state = 2}, @@ -30785,7 +30547,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7749] = {.lex_state = 380, .external_lex_state = 2}, [7750] = {.lex_state = 380, .external_lex_state = 2}, [7751] = {.lex_state = 380, .external_lex_state = 2}, - [7752] = {.lex_state = 380, .external_lex_state = 5}, + [7752] = {.lex_state = 380, .external_lex_state = 2}, [7753] = {.lex_state = 380, .external_lex_state = 2}, [7754] = {.lex_state = 380, .external_lex_state = 2}, [7755] = {.lex_state = 380, .external_lex_state = 2}, @@ -30796,11 +30558,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7760] = {.lex_state = 380, .external_lex_state = 2}, [7761] = {.lex_state = 57, .external_lex_state = 2}, [7762] = {.lex_state = 380, .external_lex_state = 5}, - [7763] = {.lex_state = 380, .external_lex_state = 2}, - [7764] = {.lex_state = 57, .external_lex_state = 2}, + [7763] = {.lex_state = 380, .external_lex_state = 5}, + [7764] = {.lex_state = 380, .external_lex_state = 2}, [7765] = {.lex_state = 380, .external_lex_state = 2}, - [7766] = {.lex_state = 380, .external_lex_state = 2}, - [7767] = {.lex_state = 380, .external_lex_state = 2}, + [7766] = {.lex_state = 380, .external_lex_state = 5}, + [7767] = {.lex_state = 56, .external_lex_state = 2}, [7768] = {.lex_state = 380, .external_lex_state = 2}, [7769] = {.lex_state = 380, .external_lex_state = 2}, [7770] = {.lex_state = 380, .external_lex_state = 2}, @@ -30808,60 +30570,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7772] = {.lex_state = 380, .external_lex_state = 2}, [7773] = {.lex_state = 380, .external_lex_state = 2}, [7774] = {.lex_state = 380, .external_lex_state = 2}, - [7775] = {.lex_state = 380, .external_lex_state = 5}, - [7776] = {.lex_state = 380, .external_lex_state = 5}, + [7775] = {.lex_state = 380, .external_lex_state = 2}, + [7776] = {.lex_state = 380, .external_lex_state = 2}, [7777] = {.lex_state = 380, .external_lex_state = 2}, - [7778] = {.lex_state = 380, .external_lex_state = 5}, - [7779] = {.lex_state = 380, .external_lex_state = 5}, + [7778] = {.lex_state = 380, .external_lex_state = 2}, + [7779] = {.lex_state = 380, .external_lex_state = 2}, [7780] = {.lex_state = 380, .external_lex_state = 2}, - [7781] = {.lex_state = 380, .external_lex_state = 2}, - [7782] = {.lex_state = 380, .external_lex_state = 2}, - [7783] = {.lex_state = 380, .external_lex_state = 2}, + [7781] = {.lex_state = 1, .external_lex_state = 2}, + [7782] = {.lex_state = 380, .external_lex_state = 5}, + [7783] = {.lex_state = 380, .external_lex_state = 5}, [7784] = {.lex_state = 380, .external_lex_state = 2}, [7785] = {.lex_state = 380, .external_lex_state = 2}, - [7786] = {.lex_state = 380, .external_lex_state = 5}, + [7786] = {.lex_state = 57, .external_lex_state = 2}, [7787] = {.lex_state = 57, .external_lex_state = 2}, - [7788] = {.lex_state = 380, .external_lex_state = 5}, - [7789] = {.lex_state = 380, .external_lex_state = 2}, + [7788] = {.lex_state = 57, .external_lex_state = 2}, + [7789] = {.lex_state = 57, .external_lex_state = 2}, [7790] = {.lex_state = 380, .external_lex_state = 2}, - [7791] = {.lex_state = 380, .external_lex_state = 5}, + [7791] = {.lex_state = 380, .external_lex_state = 2}, [7792] = {.lex_state = 380, .external_lex_state = 5}, - [7793] = {.lex_state = 380, .external_lex_state = 2}, - [7794] = {.lex_state = 380, .external_lex_state = 2}, + [7793] = {.lex_state = 57, .external_lex_state = 2}, + [7794] = {.lex_state = 57, .external_lex_state = 2}, [7795] = {.lex_state = 380, .external_lex_state = 2}, [7796] = {.lex_state = 380, .external_lex_state = 2}, [7797] = {.lex_state = 380, .external_lex_state = 2}, [7798] = {.lex_state = 380, .external_lex_state = 2}, [7799] = {.lex_state = 380, .external_lex_state = 2}, [7800] = {.lex_state = 380, .external_lex_state = 2}, - [7801] = {.lex_state = 380, .external_lex_state = 5}, - [7802] = {.lex_state = 380, .external_lex_state = 5}, - [7803] = {.lex_state = 380, .external_lex_state = 5}, - [7804] = {.lex_state = 380, .external_lex_state = 5}, + [7801] = {.lex_state = 380, .external_lex_state = 2}, + [7802] = {.lex_state = 380, .external_lex_state = 2}, + [7803] = {.lex_state = 380, .external_lex_state = 2}, + [7804] = {.lex_state = 380, .external_lex_state = 2}, [7805] = {.lex_state = 380, .external_lex_state = 2}, [7806] = {.lex_state = 380, .external_lex_state = 2}, - [7807] = {.lex_state = 380, .external_lex_state = 5}, + [7807] = {.lex_state = 57, .external_lex_state = 2}, [7808] = {.lex_state = 380, .external_lex_state = 2}, - [7809] = {.lex_state = 380, .external_lex_state = 2}, + [7809] = {.lex_state = 57, .external_lex_state = 2}, [7810] = {.lex_state = 380, .external_lex_state = 2}, [7811] = {.lex_state = 380, .external_lex_state = 2}, - [7812] = {.lex_state = 380, .external_lex_state = 5}, - [7813] = {.lex_state = 380, .external_lex_state = 5}, + [7812] = {.lex_state = 380, .external_lex_state = 2}, + [7813] = {.lex_state = 57, .external_lex_state = 2}, [7814] = {.lex_state = 380, .external_lex_state = 2}, - [7815] = {.lex_state = 380, .external_lex_state = 2}, - [7816] = {.lex_state = 57, .external_lex_state = 2}, + [7815] = {.lex_state = 380, .external_lex_state = 5}, + [7816] = {.lex_state = 54, .external_lex_state = 2}, [7817] = {.lex_state = 380, .external_lex_state = 2}, - [7818] = {.lex_state = 56, .external_lex_state = 2}, + [7818] = {.lex_state = 380, .external_lex_state = 2}, [7819] = {.lex_state = 380, .external_lex_state = 2}, - [7820] = {.lex_state = 380, .external_lex_state = 5}, + [7820] = {.lex_state = 57, .external_lex_state = 2}, [7821] = {.lex_state = 380, .external_lex_state = 5}, [7822] = {.lex_state = 380, .external_lex_state = 2}, - [7823] = {.lex_state = 380, .external_lex_state = 2}, + [7823] = {.lex_state = 380, .external_lex_state = 5}, [7824] = {.lex_state = 380, .external_lex_state = 2}, [7825] = {.lex_state = 380, .external_lex_state = 2}, - [7826] = {.lex_state = 57, .external_lex_state = 2}, - [7827] = {.lex_state = 380, .external_lex_state = 2}, - [7828] = {.lex_state = 380, .external_lex_state = 2}, + [7826] = {.lex_state = 380, .external_lex_state = 2}, + [7827] = {.lex_state = 57, .external_lex_state = 2}, + [7828] = {.lex_state = 57, .external_lex_state = 2}, [7829] = {.lex_state = 380, .external_lex_state = 2}, [7830] = {.lex_state = 380, .external_lex_state = 2}, [7831] = {.lex_state = 380, .external_lex_state = 2}, @@ -30871,23 +30633,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7835] = {.lex_state = 380, .external_lex_state = 2}, [7836] = {.lex_state = 380, .external_lex_state = 2}, [7837] = {.lex_state = 380, .external_lex_state = 2}, - [7838] = {.lex_state = 56, .external_lex_state = 2}, + [7838] = {.lex_state = 380, .external_lex_state = 2}, [7839] = {.lex_state = 380, .external_lex_state = 2}, - [7840] = {.lex_state = 57, .external_lex_state = 2}, + [7840] = {.lex_state = 380, .external_lex_state = 2}, [7841] = {.lex_state = 380, .external_lex_state = 2}, [7842] = {.lex_state = 380, .external_lex_state = 2}, [7843] = {.lex_state = 380, .external_lex_state = 2}, [7844] = {.lex_state = 380, .external_lex_state = 2}, - [7845] = {.lex_state = 380, .external_lex_state = 2}, + [7845] = {.lex_state = 57, .external_lex_state = 2}, [7846] = {.lex_state = 380, .external_lex_state = 2}, - [7847] = {.lex_state = 380, .external_lex_state = 2}, + [7847] = {.lex_state = 380, .external_lex_state = 5}, [7848] = {.lex_state = 380, .external_lex_state = 2}, - [7849] = {.lex_state = 380, .external_lex_state = 5}, - [7850] = {.lex_state = 380, .external_lex_state = 5}, + [7849] = {.lex_state = 380, .external_lex_state = 2}, + [7850] = {.lex_state = 380, .external_lex_state = 2}, [7851] = {.lex_state = 380, .external_lex_state = 2}, [7852] = {.lex_state = 380, .external_lex_state = 2}, [7853] = {.lex_state = 380, .external_lex_state = 2}, - [7854] = {.lex_state = 57, .external_lex_state = 2}, + [7854] = {.lex_state = 380, .external_lex_state = 5}, [7855] = {.lex_state = 380, .external_lex_state = 2}, [7856] = {.lex_state = 380, .external_lex_state = 2}, [7857] = {.lex_state = 380, .external_lex_state = 2}, @@ -30895,100 +30657,100 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7859] = {.lex_state = 380, .external_lex_state = 2}, [7860] = {.lex_state = 380, .external_lex_state = 2}, [7861] = {.lex_state = 380, .external_lex_state = 2}, - [7862] = {.lex_state = 380, .external_lex_state = 2}, - [7863] = {.lex_state = 57, .external_lex_state = 2}, - [7864] = {.lex_state = 57, .external_lex_state = 2}, + [7862] = {.lex_state = 54, .external_lex_state = 2}, + [7863] = {.lex_state = 380, .external_lex_state = 2}, + [7864] = {.lex_state = 380, .external_lex_state = 2}, [7865] = {.lex_state = 380, .external_lex_state = 2}, - [7866] = {.lex_state = 380, .external_lex_state = 2}, - [7867] = {.lex_state = 380, .external_lex_state = 2}, + [7866] = {.lex_state = 380, .external_lex_state = 5}, + [7867] = {.lex_state = 380, .external_lex_state = 5}, [7868] = {.lex_state = 380, .external_lex_state = 2}, - [7869] = {.lex_state = 57, .external_lex_state = 2}, + [7869] = {.lex_state = 380, .external_lex_state = 2}, [7870] = {.lex_state = 380, .external_lex_state = 2}, [7871] = {.lex_state = 380, .external_lex_state = 2}, [7872] = {.lex_state = 380, .external_lex_state = 2}, [7873] = {.lex_state = 380, .external_lex_state = 2}, [7874] = {.lex_state = 380, .external_lex_state = 2}, - [7875] = {.lex_state = 380, .external_lex_state = 2}, - [7876] = {.lex_state = 380, .external_lex_state = 2}, - [7877] = {.lex_state = 57, .external_lex_state = 2}, + [7875] = {.lex_state = 380, .external_lex_state = 5}, + [7876] = {.lex_state = 380, .external_lex_state = 5}, + [7877] = {.lex_state = 380, .external_lex_state = 5}, [7878] = {.lex_state = 380, .external_lex_state = 2}, [7879] = {.lex_state = 380, .external_lex_state = 2}, - [7880] = {.lex_state = 380, .external_lex_state = 5}, + [7880] = {.lex_state = 57, .external_lex_state = 2}, [7881] = {.lex_state = 380, .external_lex_state = 2}, [7882] = {.lex_state = 380, .external_lex_state = 2}, - [7883] = {.lex_state = 380, .external_lex_state = 2}, + [7883] = {.lex_state = 54, .external_lex_state = 2}, [7884] = {.lex_state = 380, .external_lex_state = 5}, [7885] = {.lex_state = 380, .external_lex_state = 2}, - [7886] = {.lex_state = 380, .external_lex_state = 5}, + [7886] = {.lex_state = 380, .external_lex_state = 2}, [7887] = {.lex_state = 380, .external_lex_state = 2}, [7888] = {.lex_state = 380, .external_lex_state = 2}, [7889] = {.lex_state = 380, .external_lex_state = 2}, [7890] = {.lex_state = 380, .external_lex_state = 2}, - [7891] = {.lex_state = 57, .external_lex_state = 2}, - [7892] = {.lex_state = 380, .external_lex_state = 2}, + [7891] = {.lex_state = 380, .external_lex_state = 2}, + [7892] = {.lex_state = 380, .external_lex_state = 5}, [7893] = {.lex_state = 380, .external_lex_state = 2}, - [7894] = {.lex_state = 380, .external_lex_state = 5}, + [7894] = {.lex_state = 380, .external_lex_state = 2}, [7895] = {.lex_state = 380, .external_lex_state = 2}, [7896] = {.lex_state = 380, .external_lex_state = 2}, - [7897] = {.lex_state = 1, .external_lex_state = 2}, + [7897] = {.lex_state = 380, .external_lex_state = 2}, [7898] = {.lex_state = 380, .external_lex_state = 2}, [7899] = {.lex_state = 380, .external_lex_state = 2}, [7900] = {.lex_state = 380, .external_lex_state = 2}, [7901] = {.lex_state = 380, .external_lex_state = 5}, - [7902] = {.lex_state = 380, .external_lex_state = 2}, - [7903] = {.lex_state = 380, .external_lex_state = 2}, + [7902] = {.lex_state = 380, .external_lex_state = 5}, + [7903] = {.lex_state = 57, .external_lex_state = 2}, [7904] = {.lex_state = 380, .external_lex_state = 2}, [7905] = {.lex_state = 380, .external_lex_state = 2}, - [7906] = {.lex_state = 380, .external_lex_state = 2}, + [7906] = {.lex_state = 380, .external_lex_state = 5}, [7907] = {.lex_state = 380, .external_lex_state = 2}, [7908] = {.lex_state = 380, .external_lex_state = 2}, - [7909] = {.lex_state = 57, .external_lex_state = 2}, + [7909] = {.lex_state = 380, .external_lex_state = 5}, [7910] = {.lex_state = 380, .external_lex_state = 2}, - [7911] = {.lex_state = 380, .external_lex_state = 5}, - [7912] = {.lex_state = 380, .external_lex_state = 2}, + [7911] = {.lex_state = 380, .external_lex_state = 2}, + [7912] = {.lex_state = 380, .external_lex_state = 5}, [7913] = {.lex_state = 380, .external_lex_state = 5}, - [7914] = {.lex_state = 380, .external_lex_state = 2}, + [7914] = {.lex_state = 56, .external_lex_state = 2}, [7915] = {.lex_state = 380, .external_lex_state = 2}, [7916] = {.lex_state = 380, .external_lex_state = 2}, - [7917] = {.lex_state = 57, .external_lex_state = 2}, + [7917] = {.lex_state = 380, .external_lex_state = 2}, [7918] = {.lex_state = 380, .external_lex_state = 2}, - [7919] = {.lex_state = 57, .external_lex_state = 2}, - [7920] = {.lex_state = 380, .external_lex_state = 5}, + [7919] = {.lex_state = 380, .external_lex_state = 2}, + [7920] = {.lex_state = 380, .external_lex_state = 2}, [7921] = {.lex_state = 380, .external_lex_state = 2}, - [7922] = {.lex_state = 380, .external_lex_state = 5}, - [7923] = {.lex_state = 380, .external_lex_state = 5}, - [7924] = {.lex_state = 57, .external_lex_state = 2}, - [7925] = {.lex_state = 380, .external_lex_state = 2}, - [7926] = {.lex_state = 57, .external_lex_state = 2}, - [7927] = {.lex_state = 57, .external_lex_state = 2}, + [7922] = {.lex_state = 380, .external_lex_state = 2}, + [7923] = {.lex_state = 380, .external_lex_state = 2}, + [7924] = {.lex_state = 380, .external_lex_state = 2}, + [7925] = {.lex_state = 57, .external_lex_state = 2}, + [7926] = {.lex_state = 380, .external_lex_state = 2}, + [7927] = {.lex_state = 380, .external_lex_state = 5}, [7928] = {.lex_state = 380, .external_lex_state = 2}, - [7929] = {.lex_state = 380, .external_lex_state = 2}, - [7930] = {.lex_state = 380, .external_lex_state = 5}, + [7929] = {.lex_state = 380, .external_lex_state = 5}, + [7930] = {.lex_state = 380, .external_lex_state = 2}, [7931] = {.lex_state = 380, .external_lex_state = 2}, [7932] = {.lex_state = 380, .external_lex_state = 2}, - [7933] = {.lex_state = 380, .external_lex_state = 5}, + [7933] = {.lex_state = 380, .external_lex_state = 2}, [7934] = {.lex_state = 380, .external_lex_state = 2}, - [7935] = {.lex_state = 380, .external_lex_state = 5}, + [7935] = {.lex_state = 57, .external_lex_state = 2}, [7936] = {.lex_state = 380, .external_lex_state = 2}, [7937] = {.lex_state = 380, .external_lex_state = 2}, - [7938] = {.lex_state = 380, .external_lex_state = 5}, - [7939] = {.lex_state = 380, .external_lex_state = 2}, + [7938] = {.lex_state = 380, .external_lex_state = 2}, + [7939] = {.lex_state = 57, .external_lex_state = 2}, [7940] = {.lex_state = 380, .external_lex_state = 2}, [7941] = {.lex_state = 380, .external_lex_state = 2}, [7942] = {.lex_state = 380, .external_lex_state = 2}, - [7943] = {.lex_state = 380, .external_lex_state = 5}, - [7944] = {.lex_state = 380, .external_lex_state = 2}, - [7945] = {.lex_state = 380, .external_lex_state = 5}, + [7943] = {.lex_state = 380, .external_lex_state = 2}, + [7944] = {.lex_state = 56, .external_lex_state = 2}, + [7945] = {.lex_state = 380, .external_lex_state = 2}, [7946] = {.lex_state = 380, .external_lex_state = 2}, - [7947] = {.lex_state = 380, .external_lex_state = 2}, - [7948] = {.lex_state = 380, .external_lex_state = 2}, + [7947] = {.lex_state = 57, .external_lex_state = 2}, + [7948] = {.lex_state = 57, .external_lex_state = 2}, [7949] = {.lex_state = 380, .external_lex_state = 2}, [7950] = {.lex_state = 380, .external_lex_state = 2}, [7951] = {.lex_state = 380, .external_lex_state = 2}, - [7952] = {.lex_state = 380, .external_lex_state = 2}, + [7952] = {.lex_state = 57, .external_lex_state = 2}, [7953] = {.lex_state = 380, .external_lex_state = 2}, [7954] = {.lex_state = 380, .external_lex_state = 2}, - [7955] = {.lex_state = 380, .external_lex_state = 2}, + [7955] = {.lex_state = 57, .external_lex_state = 2}, [7956] = {.lex_state = 380, .external_lex_state = 2}, [7957] = {.lex_state = 380, .external_lex_state = 2}, [7958] = {.lex_state = 380, .external_lex_state = 2}, @@ -30996,70 +30758,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7960] = {.lex_state = 380, .external_lex_state = 2}, [7961] = {.lex_state = 380, .external_lex_state = 2}, [7962] = {.lex_state = 380, .external_lex_state = 2}, - [7963] = {.lex_state = 380, .external_lex_state = 2}, + [7963] = {.lex_state = 2, .external_lex_state = 10}, [7964] = {.lex_state = 380, .external_lex_state = 2}, - [7965] = {.lex_state = 57, .external_lex_state = 2}, - [7966] = {.lex_state = 380, .external_lex_state = 5}, + [7965] = {.lex_state = 380, .external_lex_state = 2}, + [7966] = {.lex_state = 380, .external_lex_state = 2}, [7967] = {.lex_state = 380, .external_lex_state = 2}, - [7968] = {.lex_state = 380, .external_lex_state = 5}, + [7968] = {.lex_state = 380, .external_lex_state = 2}, [7969] = {.lex_state = 380, .external_lex_state = 2}, - [7970] = {.lex_state = 380, .external_lex_state = 5}, - [7971] = {.lex_state = 380, .external_lex_state = 2}, - [7972] = {.lex_state = 380, .external_lex_state = 2}, + [7970] = {.lex_state = 380, .external_lex_state = 2}, + [7971] = {.lex_state = 57, .external_lex_state = 2}, + [7972] = {.lex_state = 57, .external_lex_state = 2}, [7973] = {.lex_state = 380, .external_lex_state = 2}, - [7974] = {.lex_state = 380, .external_lex_state = 2}, - [7975] = {.lex_state = 57, .external_lex_state = 2}, - [7976] = {.lex_state = 380, .external_lex_state = 5}, - [7977] = {.lex_state = 380, .external_lex_state = 2}, - [7978] = {.lex_state = 380, .external_lex_state = 5}, - [7979] = {.lex_state = 380, .external_lex_state = 2}, - [7980] = {.lex_state = 380, .external_lex_state = 5}, + [7974] = {.lex_state = 57, .external_lex_state = 2}, + [7975] = {.lex_state = 380, .external_lex_state = 2}, + [7976] = {.lex_state = 380, .external_lex_state = 2}, + [7977] = {.lex_state = 57, .external_lex_state = 2}, + [7978] = {.lex_state = 380, .external_lex_state = 2}, + [7979] = {.lex_state = 57, .external_lex_state = 2}, + [7980] = {.lex_state = 57, .external_lex_state = 2}, [7981] = {.lex_state = 57, .external_lex_state = 2}, [7982] = {.lex_state = 380, .external_lex_state = 2}, - [7983] = {.lex_state = 380, .external_lex_state = 2}, - [7984] = {.lex_state = 380, .external_lex_state = 2}, + [7983] = {.lex_state = 57, .external_lex_state = 2}, + [7984] = {.lex_state = 57, .external_lex_state = 2}, [7985] = {.lex_state = 380, .external_lex_state = 2}, [7986] = {.lex_state = 380, .external_lex_state = 2}, [7987] = {.lex_state = 380, .external_lex_state = 2}, - [7988] = {.lex_state = 380, .external_lex_state = 2}, - [7989] = {.lex_state = 380, .external_lex_state = 5}, - [7990] = {.lex_state = 380, .external_lex_state = 5}, - [7991] = {.lex_state = 380, .external_lex_state = 2}, - [7992] = {.lex_state = 380, .external_lex_state = 5}, - [7993] = {.lex_state = 380, .external_lex_state = 5}, + [7988] = {.lex_state = 81, .external_lex_state = 2}, + [7989] = {.lex_state = 57, .external_lex_state = 2}, + [7990] = {.lex_state = 57, .external_lex_state = 2}, + [7991] = {.lex_state = 57, .external_lex_state = 2}, + [7992] = {.lex_state = 57, .external_lex_state = 2}, + [7993] = {.lex_state = 380, .external_lex_state = 2}, [7994] = {.lex_state = 380, .external_lex_state = 2}, [7995] = {.lex_state = 380, .external_lex_state = 2}, - [7996] = {.lex_state = 380, .external_lex_state = 5}, - [7997] = {.lex_state = 54, .external_lex_state = 2}, - [7998] = {.lex_state = 380, .external_lex_state = 2}, - [7999] = {.lex_state = 380, .external_lex_state = 5}, + [7996] = {.lex_state = 380, .external_lex_state = 2}, + [7997] = {.lex_state = 380, .external_lex_state = 2}, + [7998] = {.lex_state = 54, .external_lex_state = 2}, + [7999] = {.lex_state = 57, .external_lex_state = 2}, [8000] = {.lex_state = 380, .external_lex_state = 2}, [8001] = {.lex_state = 380, .external_lex_state = 2}, - [8002] = {.lex_state = 380, .external_lex_state = 2}, - [8003] = {.lex_state = 380, .external_lex_state = 5}, - [8004] = {.lex_state = 380, .external_lex_state = 5}, - [8005] = {.lex_state = 380, .external_lex_state = 5}, - [8006] = {.lex_state = 380, .external_lex_state = 2}, - [8007] = {.lex_state = 380, .external_lex_state = 2}, - [8008] = {.lex_state = 380, .external_lex_state = 5}, + [8002] = {.lex_state = 57, .external_lex_state = 2}, + [8003] = {.lex_state = 380, .external_lex_state = 2}, + [8004] = {.lex_state = 380, .external_lex_state = 2}, + [8005] = {.lex_state = 57, .external_lex_state = 2}, + [8006] = {.lex_state = 57, .external_lex_state = 2}, + [8007] = {.lex_state = 57, .external_lex_state = 2}, + [8008] = {.lex_state = 57, .external_lex_state = 2}, [8009] = {.lex_state = 380, .external_lex_state = 2}, [8010] = {.lex_state = 380, .external_lex_state = 2}, - [8011] = {.lex_state = 380, .external_lex_state = 2}, + [8011] = {.lex_state = 54, .external_lex_state = 2}, [8012] = {.lex_state = 380, .external_lex_state = 2}, [8013] = {.lex_state = 380, .external_lex_state = 2}, - [8014] = {.lex_state = 380, .external_lex_state = 5}, - [8015] = {.lex_state = 57, .external_lex_state = 2}, + [8014] = {.lex_state = 57, .external_lex_state = 2}, + [8015] = {.lex_state = 380, .external_lex_state = 2}, [8016] = {.lex_state = 380, .external_lex_state = 2}, - [8017] = {.lex_state = 380, .external_lex_state = 2}, + [8017] = {.lex_state = 81, .external_lex_state = 2}, [8018] = {.lex_state = 380, .external_lex_state = 2}, - [8019] = {.lex_state = 57, .external_lex_state = 2}, - [8020] = {.lex_state = 57, .external_lex_state = 2}, + [8019] = {.lex_state = 380, .external_lex_state = 2}, + [8020] = {.lex_state = 380, .external_lex_state = 2}, [8021] = {.lex_state = 380, .external_lex_state = 2}, [8022] = {.lex_state = 380, .external_lex_state = 2}, - [8023] = {.lex_state = 57, .external_lex_state = 2}, + [8023] = {.lex_state = 2, .external_lex_state = 10}, [8024] = {.lex_state = 380, .external_lex_state = 2}, - [8025] = {.lex_state = 380, .external_lex_state = 5}, - [8026] = {.lex_state = 380, .external_lex_state = 5}, + [8025] = {.lex_state = 380, .external_lex_state = 2}, + [8026] = {.lex_state = 380, .external_lex_state = 2}, [8027] = {.lex_state = 380, .external_lex_state = 2}, [8028] = {.lex_state = 380, .external_lex_state = 2}, [8029] = {.lex_state = 380, .external_lex_state = 2}, @@ -31069,129 +30831,129 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8033] = {.lex_state = 380, .external_lex_state = 2}, [8034] = {.lex_state = 380, .external_lex_state = 2}, [8035] = {.lex_state = 380, .external_lex_state = 2}, - [8036] = {.lex_state = 380, .external_lex_state = 2}, - [8037] = {.lex_state = 380, .external_lex_state = 2}, + [8036] = {.lex_state = 57, .external_lex_state = 2}, + [8037] = {.lex_state = 57, .external_lex_state = 2}, [8038] = {.lex_state = 380, .external_lex_state = 2}, - [8039] = {.lex_state = 380, .external_lex_state = 5}, + [8039] = {.lex_state = 57, .external_lex_state = 2}, [8040] = {.lex_state = 380, .external_lex_state = 2}, [8041] = {.lex_state = 380, .external_lex_state = 2}, [8042] = {.lex_state = 380, .external_lex_state = 2}, - [8043] = {.lex_state = 380, .external_lex_state = 5}, - [8044] = {.lex_state = 380, .external_lex_state = 2}, + [8043] = {.lex_state = 380, .external_lex_state = 2}, + [8044] = {.lex_state = 2, .external_lex_state = 10}, [8045] = {.lex_state = 380, .external_lex_state = 2}, - [8046] = {.lex_state = 380, .external_lex_state = 5}, + [8046] = {.lex_state = 380, .external_lex_state = 2}, [8047] = {.lex_state = 380, .external_lex_state = 2}, - [8048] = {.lex_state = 380, .external_lex_state = 2}, - [8049] = {.lex_state = 380, .external_lex_state = 5}, + [8048] = {.lex_state = 56, .external_lex_state = 2}, + [8049] = {.lex_state = 57, .external_lex_state = 2}, [8050] = {.lex_state = 380, .external_lex_state = 2}, [8051] = {.lex_state = 380, .external_lex_state = 2}, - [8052] = {.lex_state = 380, .external_lex_state = 2}, - [8053] = {.lex_state = 380, .external_lex_state = 2}, - [8054] = {.lex_state = 380, .external_lex_state = 5}, + [8052] = {.lex_state = 57, .external_lex_state = 2}, + [8053] = {.lex_state = 57, .external_lex_state = 2}, + [8054] = {.lex_state = 380, .external_lex_state = 2}, [8055] = {.lex_state = 380, .external_lex_state = 2}, - [8056] = {.lex_state = 380, .external_lex_state = 5}, - [8057] = {.lex_state = 380, .external_lex_state = 5}, - [8058] = {.lex_state = 380, .external_lex_state = 2}, + [8056] = {.lex_state = 380, .external_lex_state = 2}, + [8057] = {.lex_state = 380, .external_lex_state = 2}, + [8058] = {.lex_state = 56, .external_lex_state = 2}, [8059] = {.lex_state = 380, .external_lex_state = 2}, [8060] = {.lex_state = 380, .external_lex_state = 2}, [8061] = {.lex_state = 380, .external_lex_state = 2}, - [8062] = {.lex_state = 380, .external_lex_state = 2}, - [8063] = {.lex_state = 380, .external_lex_state = 2}, + [8062] = {.lex_state = 56, .external_lex_state = 2}, + [8063] = {.lex_state = 57, .external_lex_state = 2}, [8064] = {.lex_state = 380, .external_lex_state = 2}, - [8065] = {.lex_state = 380, .external_lex_state = 2}, + [8065] = {.lex_state = 57, .external_lex_state = 2}, [8066] = {.lex_state = 380, .external_lex_state = 2}, [8067] = {.lex_state = 380, .external_lex_state = 2}, [8068] = {.lex_state = 380, .external_lex_state = 2}, - [8069] = {.lex_state = 380, .external_lex_state = 2}, - [8070] = {.lex_state = 380, .external_lex_state = 2}, - [8071] = {.lex_state = 380, .external_lex_state = 2}, + [8069] = {.lex_state = 57, .external_lex_state = 2}, + [8070] = {.lex_state = 57, .external_lex_state = 2}, + [8071] = {.lex_state = 57, .external_lex_state = 2}, [8072] = {.lex_state = 380, .external_lex_state = 2}, - [8073] = {.lex_state = 380, .external_lex_state = 2}, - [8074] = {.lex_state = 57, .external_lex_state = 2}, + [8073] = {.lex_state = 54, .external_lex_state = 2}, + [8074] = {.lex_state = 380, .external_lex_state = 2}, [8075] = {.lex_state = 380, .external_lex_state = 2}, [8076] = {.lex_state = 380, .external_lex_state = 2}, [8077] = {.lex_state = 380, .external_lex_state = 2}, [8078] = {.lex_state = 380, .external_lex_state = 2}, [8079] = {.lex_state = 380, .external_lex_state = 2}, - [8080] = {.lex_state = 380, .external_lex_state = 2}, - [8081] = {.lex_state = 380, .external_lex_state = 5}, - [8082] = {.lex_state = 380, .external_lex_state = 2}, + [8080] = {.lex_state = 57, .external_lex_state = 2}, + [8081] = {.lex_state = 380, .external_lex_state = 2}, + [8082] = {.lex_state = 57, .external_lex_state = 2}, [8083] = {.lex_state = 380, .external_lex_state = 2}, [8084] = {.lex_state = 380, .external_lex_state = 2}, - [8085] = {.lex_state = 54, .external_lex_state = 2}, + [8085] = {.lex_state = 380, .external_lex_state = 2}, [8086] = {.lex_state = 57, .external_lex_state = 2}, - [8087] = {.lex_state = 57, .external_lex_state = 2}, - [8088] = {.lex_state = 380, .external_lex_state = 2}, - [8089] = {.lex_state = 380, .external_lex_state = 2}, + [8087] = {.lex_state = 380, .external_lex_state = 2}, + [8088] = {.lex_state = 57, .external_lex_state = 2}, + [8089] = {.lex_state = 56, .external_lex_state = 2}, [8090] = {.lex_state = 380, .external_lex_state = 2}, [8091] = {.lex_state = 380, .external_lex_state = 2}, - [8092] = {.lex_state = 380, .external_lex_state = 5}, + [8092] = {.lex_state = 380, .external_lex_state = 2}, [8093] = {.lex_state = 380, .external_lex_state = 2}, - [8094] = {.lex_state = 380, .external_lex_state = 2}, - [8095] = {.lex_state = 1, .external_lex_state = 2}, + [8094] = {.lex_state = 54, .external_lex_state = 2}, + [8095] = {.lex_state = 57, .external_lex_state = 2}, [8096] = {.lex_state = 380, .external_lex_state = 2}, [8097] = {.lex_state = 380, .external_lex_state = 2}, [8098] = {.lex_state = 380, .external_lex_state = 2}, - [8099] = {.lex_state = 380, .external_lex_state = 5}, - [8100] = {.lex_state = 380, .external_lex_state = 5}, - [8101] = {.lex_state = 380, .external_lex_state = 5}, - [8102] = {.lex_state = 380, .external_lex_state = 5}, + [8099] = {.lex_state = 2, .external_lex_state = 10}, + [8100] = {.lex_state = 57, .external_lex_state = 2}, + [8101] = {.lex_state = 57, .external_lex_state = 2}, + [8102] = {.lex_state = 380, .external_lex_state = 2}, [8103] = {.lex_state = 57, .external_lex_state = 2}, - [8104] = {.lex_state = 57, .external_lex_state = 2}, - [8105] = {.lex_state = 380, .external_lex_state = 2}, + [8104] = {.lex_state = 56, .external_lex_state = 2}, + [8105] = {.lex_state = 57, .external_lex_state = 2}, [8106] = {.lex_state = 57, .external_lex_state = 2}, - [8107] = {.lex_state = 380, .external_lex_state = 2}, + [8107] = {.lex_state = 57, .external_lex_state = 2}, [8108] = {.lex_state = 380, .external_lex_state = 2}, [8109] = {.lex_state = 380, .external_lex_state = 2}, [8110] = {.lex_state = 380, .external_lex_state = 2}, [8111] = {.lex_state = 380, .external_lex_state = 2}, - [8112] = {.lex_state = 380, .external_lex_state = 5}, - [8113] = {.lex_state = 380, .external_lex_state = 5}, - [8114] = {.lex_state = 380, .external_lex_state = 5}, - [8115] = {.lex_state = 380, .external_lex_state = 5}, - [8116] = {.lex_state = 380, .external_lex_state = 5}, + [8112] = {.lex_state = 380, .external_lex_state = 2}, + [8113] = {.lex_state = 380, .external_lex_state = 2}, + [8114] = {.lex_state = 57, .external_lex_state = 2}, + [8115] = {.lex_state = 380, .external_lex_state = 2}, + [8116] = {.lex_state = 380, .external_lex_state = 2}, [8117] = {.lex_state = 380, .external_lex_state = 2}, [8118] = {.lex_state = 57, .external_lex_state = 2}, [8119] = {.lex_state = 57, .external_lex_state = 2}, - [8120] = {.lex_state = 380, .external_lex_state = 2}, - [8121] = {.lex_state = 380, .external_lex_state = 5}, + [8120] = {.lex_state = 57, .external_lex_state = 2}, + [8121] = {.lex_state = 380, .external_lex_state = 2}, [8122] = {.lex_state = 380, .external_lex_state = 2}, [8123] = {.lex_state = 380, .external_lex_state = 2}, - [8124] = {.lex_state = 380, .external_lex_state = 5}, + [8124] = {.lex_state = 57, .external_lex_state = 2}, [8125] = {.lex_state = 380, .external_lex_state = 2}, [8126] = {.lex_state = 380, .external_lex_state = 2}, [8127] = {.lex_state = 380, .external_lex_state = 2}, - [8128] = {.lex_state = 380, .external_lex_state = 5}, + [8128] = {.lex_state = 380, .external_lex_state = 2}, [8129] = {.lex_state = 380, .external_lex_state = 2}, - [8130] = {.lex_state = 57, .external_lex_state = 2}, + [8130] = {.lex_state = 380, .external_lex_state = 2}, [8131] = {.lex_state = 380, .external_lex_state = 2}, - [8132] = {.lex_state = 54, .external_lex_state = 2}, - [8133] = {.lex_state = 380, .external_lex_state = 2}, - [8134] = {.lex_state = 380, .external_lex_state = 2}, - [8135] = {.lex_state = 380, .external_lex_state = 2}, - [8136] = {.lex_state = 380, .external_lex_state = 2}, - [8137] = {.lex_state = 57, .external_lex_state = 2}, + [8132] = {.lex_state = 57, .external_lex_state = 2}, + [8133] = {.lex_state = 57, .external_lex_state = 2}, + [8134] = {.lex_state = 57, .external_lex_state = 2}, + [8135] = {.lex_state = 57, .external_lex_state = 2}, + [8136] = {.lex_state = 57, .external_lex_state = 2}, + [8137] = {.lex_state = 380, .external_lex_state = 2}, [8138] = {.lex_state = 380, .external_lex_state = 2}, - [8139] = {.lex_state = 57, .external_lex_state = 2}, + [8139] = {.lex_state = 380, .external_lex_state = 2}, [8140] = {.lex_state = 380, .external_lex_state = 2}, [8141] = {.lex_state = 380, .external_lex_state = 2}, - [8142] = {.lex_state = 380, .external_lex_state = 2}, - [8143] = {.lex_state = 380, .external_lex_state = 5}, - [8144] = {.lex_state = 380, .external_lex_state = 2}, + [8142] = {.lex_state = 57, .external_lex_state = 2}, + [8143] = {.lex_state = 21, .external_lex_state = 2}, + [8144] = {.lex_state = 57, .external_lex_state = 2}, [8145] = {.lex_state = 380, .external_lex_state = 2}, - [8146] = {.lex_state = 380, .external_lex_state = 2}, - [8147] = {.lex_state = 380, .external_lex_state = 2}, - [8148] = {.lex_state = 380, .external_lex_state = 5}, - [8149] = {.lex_state = 380, .external_lex_state = 5}, - [8150] = {.lex_state = 380, .external_lex_state = 2}, + [8146] = {.lex_state = 57, .external_lex_state = 2}, + [8147] = {.lex_state = 57, .external_lex_state = 2}, + [8148] = {.lex_state = 380, .external_lex_state = 2}, + [8149] = {.lex_state = 380, .external_lex_state = 2}, + [8150] = {.lex_state = 57, .external_lex_state = 2}, [8151] = {.lex_state = 380, .external_lex_state = 2}, - [8152] = {.lex_state = 380, .external_lex_state = 5}, + [8152] = {.lex_state = 57, .external_lex_state = 2}, [8153] = {.lex_state = 57, .external_lex_state = 2}, - [8154] = {.lex_state = 380, .external_lex_state = 2}, - [8155] = {.lex_state = 380, .external_lex_state = 5}, - [8156] = {.lex_state = 380, .external_lex_state = 2}, - [8157] = {.lex_state = 380, .external_lex_state = 2}, - [8158] = {.lex_state = 380, .external_lex_state = 2}, + [8154] = {.lex_state = 57, .external_lex_state = 2}, + [8155] = {.lex_state = 380, .external_lex_state = 2}, + [8156] = {.lex_state = 57, .external_lex_state = 2}, + [8157] = {.lex_state = 57, .external_lex_state = 2}, + [8158] = {.lex_state = 57, .external_lex_state = 2}, [8159] = {.lex_state = 380, .external_lex_state = 2}, [8160] = {.lex_state = 380, .external_lex_state = 2}, [8161] = {.lex_state = 380, .external_lex_state = 2}, @@ -31199,126 +30961,126 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8163] = {.lex_state = 57, .external_lex_state = 2}, [8164] = {.lex_state = 380, .external_lex_state = 2}, [8165] = {.lex_state = 380, .external_lex_state = 2}, - [8166] = {.lex_state = 380, .external_lex_state = 5}, - [8167] = {.lex_state = 380, .external_lex_state = 2}, + [8166] = {.lex_state = 380, .external_lex_state = 2}, + [8167] = {.lex_state = 2, .external_lex_state = 10}, [8168] = {.lex_state = 57, .external_lex_state = 2}, [8169] = {.lex_state = 380, .external_lex_state = 2}, [8170] = {.lex_state = 380, .external_lex_state = 2}, - [8171] = {.lex_state = 57, .external_lex_state = 2}, - [8172] = {.lex_state = 57, .external_lex_state = 2}, + [8171] = {.lex_state = 380, .external_lex_state = 2}, + [8172] = {.lex_state = 380, .external_lex_state = 2}, [8173] = {.lex_state = 380, .external_lex_state = 2}, [8174] = {.lex_state = 380, .external_lex_state = 2}, [8175] = {.lex_state = 380, .external_lex_state = 2}, [8176] = {.lex_state = 380, .external_lex_state = 2}, - [8177] = {.lex_state = 57, .external_lex_state = 2}, - [8178] = {.lex_state = 57, .external_lex_state = 2}, + [8177] = {.lex_state = 380, .external_lex_state = 2}, + [8178] = {.lex_state = 380, .external_lex_state = 2}, [8179] = {.lex_state = 380, .external_lex_state = 2}, [8180] = {.lex_state = 380, .external_lex_state = 2}, - [8181] = {.lex_state = 380, .external_lex_state = 2}, - [8182] = {.lex_state = 380, .external_lex_state = 2}, + [8181] = {.lex_state = 57, .external_lex_state = 2}, + [8182] = {.lex_state = 57, .external_lex_state = 2}, [8183] = {.lex_state = 380, .external_lex_state = 2}, [8184] = {.lex_state = 380, .external_lex_state = 2}, [8185] = {.lex_state = 380, .external_lex_state = 2}, - [8186] = {.lex_state = 380, .external_lex_state = 5}, - [8187] = {.lex_state = 380, .external_lex_state = 2}, - [8188] = {.lex_state = 56, .external_lex_state = 2}, + [8186] = {.lex_state = 380, .external_lex_state = 2}, + [8187] = {.lex_state = 56, .external_lex_state = 2}, + [8188] = {.lex_state = 380, .external_lex_state = 2}, [8189] = {.lex_state = 380, .external_lex_state = 2}, - [8190] = {.lex_state = 380, .external_lex_state = 2}, + [8190] = {.lex_state = 57, .external_lex_state = 2}, [8191] = {.lex_state = 380, .external_lex_state = 2}, [8192] = {.lex_state = 380, .external_lex_state = 2}, - [8193] = {.lex_state = 380, .external_lex_state = 5}, - [8194] = {.lex_state = 380, .external_lex_state = 5}, - [8195] = {.lex_state = 380, .external_lex_state = 2}, + [8193] = {.lex_state = 57, .external_lex_state = 2}, + [8194] = {.lex_state = 380, .external_lex_state = 2}, + [8195] = {.lex_state = 57, .external_lex_state = 2}, [8196] = {.lex_state = 380, .external_lex_state = 2}, - [8197] = {.lex_state = 57, .external_lex_state = 2}, - [8198] = {.lex_state = 380, .external_lex_state = 2}, - [8199] = {.lex_state = 380, .external_lex_state = 2}, + [8197] = {.lex_state = 380, .external_lex_state = 2}, + [8198] = {.lex_state = 57, .external_lex_state = 2}, + [8199] = {.lex_state = 57, .external_lex_state = 2}, [8200] = {.lex_state = 380, .external_lex_state = 2}, [8201] = {.lex_state = 57, .external_lex_state = 2}, [8202] = {.lex_state = 380, .external_lex_state = 2}, - [8203] = {.lex_state = 380, .external_lex_state = 2}, - [8204] = {.lex_state = 56, .external_lex_state = 2}, - [8205] = {.lex_state = 380, .external_lex_state = 2}, + [8203] = {.lex_state = 57, .external_lex_state = 2}, + [8204] = {.lex_state = 380, .external_lex_state = 2}, + [8205] = {.lex_state = 57, .external_lex_state = 2}, [8206] = {.lex_state = 380, .external_lex_state = 2}, [8207] = {.lex_state = 380, .external_lex_state = 2}, [8208] = {.lex_state = 380, .external_lex_state = 2}, - [8209] = {.lex_state = 380, .external_lex_state = 2}, - [8210] = {.lex_state = 380, .external_lex_state = 2}, + [8209] = {.lex_state = 57, .external_lex_state = 2}, + [8210] = {.lex_state = 57, .external_lex_state = 2}, [8211] = {.lex_state = 380, .external_lex_state = 2}, [8212] = {.lex_state = 380, .external_lex_state = 2}, [8213] = {.lex_state = 380, .external_lex_state = 2}, [8214] = {.lex_state = 380, .external_lex_state = 2}, - [8215] = {.lex_state = 56, .external_lex_state = 2}, + [8215] = {.lex_state = 380, .external_lex_state = 2}, [8216] = {.lex_state = 380, .external_lex_state = 2}, - [8217] = {.lex_state = 380, .external_lex_state = 2}, + [8217] = {.lex_state = 57, .external_lex_state = 2}, [8218] = {.lex_state = 380, .external_lex_state = 2}, [8219] = {.lex_state = 380, .external_lex_state = 2}, - [8220] = {.lex_state = 2, .external_lex_state = 10}, + [8220] = {.lex_state = 380, .external_lex_state = 2}, [8221] = {.lex_state = 380, .external_lex_state = 2}, - [8222] = {.lex_state = 57, .external_lex_state = 2}, - [8223] = {.lex_state = 380, .external_lex_state = 2}, - [8224] = {.lex_state = 380, .external_lex_state = 2}, - [8225] = {.lex_state = 380, .external_lex_state = 2}, + [8222] = {.lex_state = 380, .external_lex_state = 2}, + [8223] = {.lex_state = 56, .external_lex_state = 2}, + [8224] = {.lex_state = 57, .external_lex_state = 2}, + [8225] = {.lex_state = 57, .external_lex_state = 2}, [8226] = {.lex_state = 380, .external_lex_state = 2}, [8227] = {.lex_state = 380, .external_lex_state = 2}, - [8228] = {.lex_state = 57, .external_lex_state = 2}, + [8228] = {.lex_state = 380, .external_lex_state = 2}, [8229] = {.lex_state = 57, .external_lex_state = 2}, - [8230] = {.lex_state = 380, .external_lex_state = 2}, + [8230] = {.lex_state = 57, .external_lex_state = 2}, [8231] = {.lex_state = 380, .external_lex_state = 2}, - [8232] = {.lex_state = 380, .external_lex_state = 2}, + [8232] = {.lex_state = 57, .external_lex_state = 2}, [8233] = {.lex_state = 380, .external_lex_state = 2}, - [8234] = {.lex_state = 380, .external_lex_state = 2}, - [8235] = {.lex_state = 57, .external_lex_state = 2}, - [8236] = {.lex_state = 81, .external_lex_state = 2}, - [8237] = {.lex_state = 54, .external_lex_state = 2}, + [8234] = {.lex_state = 57, .external_lex_state = 2}, + [8235] = {.lex_state = 380, .external_lex_state = 2}, + [8236] = {.lex_state = 57, .external_lex_state = 2}, + [8237] = {.lex_state = 57, .external_lex_state = 2}, [8238] = {.lex_state = 57, .external_lex_state = 2}, - [8239] = {.lex_state = 380, .external_lex_state = 2}, - [8240] = {.lex_state = 380, .external_lex_state = 2}, + [8239] = {.lex_state = 57, .external_lex_state = 2}, + [8240] = {.lex_state = 57, .external_lex_state = 2}, [8241] = {.lex_state = 57, .external_lex_state = 2}, - [8242] = {.lex_state = 57, .external_lex_state = 2}, + [8242] = {.lex_state = 380, .external_lex_state = 2}, [8243] = {.lex_state = 380, .external_lex_state = 2}, - [8244] = {.lex_state = 57, .external_lex_state = 2}, - [8245] = {.lex_state = 380, .external_lex_state = 2}, - [8246] = {.lex_state = 57, .external_lex_state = 2}, + [8244] = {.lex_state = 54, .external_lex_state = 2}, + [8245] = {.lex_state = 57, .external_lex_state = 2}, + [8246] = {.lex_state = 380, .external_lex_state = 2}, [8247] = {.lex_state = 380, .external_lex_state = 2}, [8248] = {.lex_state = 380, .external_lex_state = 2}, [8249] = {.lex_state = 380, .external_lex_state = 2}, - [8250] = {.lex_state = 380, .external_lex_state = 2}, - [8251] = {.lex_state = 380, .external_lex_state = 2}, - [8252] = {.lex_state = 56, .external_lex_state = 2}, + [8250] = {.lex_state = 57, .external_lex_state = 2}, + [8251] = {.lex_state = 57, .external_lex_state = 2}, + [8252] = {.lex_state = 380, .external_lex_state = 2}, [8253] = {.lex_state = 57, .external_lex_state = 2}, [8254] = {.lex_state = 380, .external_lex_state = 2}, - [8255] = {.lex_state = 57, .external_lex_state = 2}, - [8256] = {.lex_state = 57, .external_lex_state = 2}, - [8257] = {.lex_state = 380, .external_lex_state = 2}, - [8258] = {.lex_state = 81, .external_lex_state = 2}, + [8255] = {.lex_state = 54, .external_lex_state = 2}, + [8256] = {.lex_state = 380, .external_lex_state = 2}, + [8257] = {.lex_state = 57, .external_lex_state = 2}, + [8258] = {.lex_state = 57, .external_lex_state = 2}, [8259] = {.lex_state = 57, .external_lex_state = 2}, - [8260] = {.lex_state = 54, .external_lex_state = 2}, + [8260] = {.lex_state = 380, .external_lex_state = 2}, [8261] = {.lex_state = 57, .external_lex_state = 2}, - [8262] = {.lex_state = 57, .external_lex_state = 2}, - [8263] = {.lex_state = 57, .external_lex_state = 2}, - [8264] = {.lex_state = 57, .external_lex_state = 2}, - [8265] = {.lex_state = 2, .external_lex_state = 10}, - [8266] = {.lex_state = 57, .external_lex_state = 2}, + [8262] = {.lex_state = 81, .external_lex_state = 2}, + [8263] = {.lex_state = 380, .external_lex_state = 2}, + [8264] = {.lex_state = 56, .external_lex_state = 2}, + [8265] = {.lex_state = 380, .external_lex_state = 2}, + [8266] = {.lex_state = 81, .external_lex_state = 2}, [8267] = {.lex_state = 380, .external_lex_state = 2}, - [8268] = {.lex_state = 57, .external_lex_state = 2}, + [8268] = {.lex_state = 380, .external_lex_state = 2}, [8269] = {.lex_state = 380, .external_lex_state = 2}, - [8270] = {.lex_state = 380, .external_lex_state = 2}, - [8271] = {.lex_state = 57, .external_lex_state = 2}, - [8272] = {.lex_state = 57, .external_lex_state = 2}, - [8273] = {.lex_state = 57, .external_lex_state = 2}, - [8274] = {.lex_state = 57, .external_lex_state = 2}, + [8270] = {.lex_state = 57, .external_lex_state = 2}, + [8271] = {.lex_state = 54, .external_lex_state = 2}, + [8272] = {.lex_state = 380, .external_lex_state = 2}, + [8273] = {.lex_state = 380, .external_lex_state = 2}, + [8274] = {.lex_state = 380, .external_lex_state = 2}, [8275] = {.lex_state = 380, .external_lex_state = 2}, [8276] = {.lex_state = 380, .external_lex_state = 2}, - [8277] = {.lex_state = 57, .external_lex_state = 2}, + [8277] = {.lex_state = 380, .external_lex_state = 2}, [8278] = {.lex_state = 380, .external_lex_state = 2}, [8279] = {.lex_state = 57, .external_lex_state = 2}, - [8280] = {.lex_state = 57, .external_lex_state = 2}, + [8280] = {.lex_state = 380, .external_lex_state = 2}, [8281] = {.lex_state = 57, .external_lex_state = 2}, - [8282] = {.lex_state = 2, .external_lex_state = 10}, + [8282] = {.lex_state = 380, .external_lex_state = 2}, [8283] = {.lex_state = 57, .external_lex_state = 2}, - [8284] = {.lex_state = 380, .external_lex_state = 2}, - [8285] = {.lex_state = 380, .external_lex_state = 2}, + [8284] = {.lex_state = 57, .external_lex_state = 2}, + [8285] = {.lex_state = 57, .external_lex_state = 2}, [8286] = {.lex_state = 380, .external_lex_state = 2}, [8287] = {.lex_state = 380, .external_lex_state = 2}, [8288] = {.lex_state = 380, .external_lex_state = 2}, @@ -31331,89 +31093,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8295] = {.lex_state = 380, .external_lex_state = 2}, [8296] = {.lex_state = 380, .external_lex_state = 2}, [8297] = {.lex_state = 380, .external_lex_state = 2}, - [8298] = {.lex_state = 380, .external_lex_state = 2}, + [8298] = {.lex_state = 57, .external_lex_state = 2}, [8299] = {.lex_state = 380, .external_lex_state = 2}, - [8300] = {.lex_state = 54, .external_lex_state = 2}, - [8301] = {.lex_state = 2, .external_lex_state = 10}, + [8300] = {.lex_state = 380, .external_lex_state = 2}, + [8301] = {.lex_state = 57, .external_lex_state = 2}, [8302] = {.lex_state = 380, .external_lex_state = 2}, [8303] = {.lex_state = 380, .external_lex_state = 2}, - [8304] = {.lex_state = 380, .external_lex_state = 2}, + [8304] = {.lex_state = 57, .external_lex_state = 2}, [8305] = {.lex_state = 380, .external_lex_state = 2}, [8306] = {.lex_state = 380, .external_lex_state = 2}, - [8307] = {.lex_state = 57, .external_lex_state = 2}, + [8307] = {.lex_state = 380, .external_lex_state = 2}, [8308] = {.lex_state = 57, .external_lex_state = 2}, - [8309] = {.lex_state = 57, .external_lex_state = 2}, - [8310] = {.lex_state = 57, .external_lex_state = 2}, + [8309] = {.lex_state = 380, .external_lex_state = 2}, + [8310] = {.lex_state = 380, .external_lex_state = 2}, [8311] = {.lex_state = 380, .external_lex_state = 2}, - [8312] = {.lex_state = 380, .external_lex_state = 2}, + [8312] = {.lex_state = 57, .external_lex_state = 2}, [8313] = {.lex_state = 57, .external_lex_state = 2}, [8314] = {.lex_state = 380, .external_lex_state = 2}, [8315] = {.lex_state = 380, .external_lex_state = 2}, [8316] = {.lex_state = 380, .external_lex_state = 2}, [8317] = {.lex_state = 380, .external_lex_state = 2}, - [8318] = {.lex_state = 56, .external_lex_state = 2}, + [8318] = {.lex_state = 57, .external_lex_state = 2}, [8319] = {.lex_state = 380, .external_lex_state = 2}, [8320] = {.lex_state = 57, .external_lex_state = 2}, - [8321] = {.lex_state = 57, .external_lex_state = 2}, + [8321] = {.lex_state = 380, .external_lex_state = 2}, [8322] = {.lex_state = 57, .external_lex_state = 2}, - [8323] = {.lex_state = 380, .external_lex_state = 2}, + [8323] = {.lex_state = 57, .external_lex_state = 2}, [8324] = {.lex_state = 380, .external_lex_state = 2}, [8325] = {.lex_state = 380, .external_lex_state = 2}, [8326] = {.lex_state = 380, .external_lex_state = 2}, [8327] = {.lex_state = 57, .external_lex_state = 2}, - [8328] = {.lex_state = 380, .external_lex_state = 2}, + [8328] = {.lex_state = 57, .external_lex_state = 2}, [8329] = {.lex_state = 380, .external_lex_state = 2}, - [8330] = {.lex_state = 380, .external_lex_state = 2}, + [8330] = {.lex_state = 21, .external_lex_state = 2}, [8331] = {.lex_state = 380, .external_lex_state = 2}, - [8332] = {.lex_state = 57, .external_lex_state = 2}, - [8333] = {.lex_state = 81, .external_lex_state = 2}, + [8332] = {.lex_state = 380, .external_lex_state = 2}, + [8333] = {.lex_state = 380, .external_lex_state = 2}, [8334] = {.lex_state = 380, .external_lex_state = 2}, [8335] = {.lex_state = 380, .external_lex_state = 2}, - [8336] = {.lex_state = 54, .external_lex_state = 2}, - [8337] = {.lex_state = 57, .external_lex_state = 2}, + [8336] = {.lex_state = 380, .external_lex_state = 2}, + [8337] = {.lex_state = 380, .external_lex_state = 2}, [8338] = {.lex_state = 380, .external_lex_state = 2}, [8339] = {.lex_state = 380, .external_lex_state = 2}, [8340] = {.lex_state = 380, .external_lex_state = 2}, - [8341] = {.lex_state = 380, .external_lex_state = 2}, + [8341] = {.lex_state = 57, .external_lex_state = 2}, [8342] = {.lex_state = 380, .external_lex_state = 2}, - [8343] = {.lex_state = 57, .external_lex_state = 2}, + [8343] = {.lex_state = 380, .external_lex_state = 2}, [8344] = {.lex_state = 380, .external_lex_state = 2}, - [8345] = {.lex_state = 57, .external_lex_state = 2}, - [8346] = {.lex_state = 380, .external_lex_state = 2}, + [8345] = {.lex_state = 380, .external_lex_state = 2}, + [8346] = {.lex_state = 57, .external_lex_state = 2}, [8347] = {.lex_state = 380, .external_lex_state = 2}, - [8348] = {.lex_state = 380, .external_lex_state = 2}, + [8348] = {.lex_state = 57, .external_lex_state = 2}, [8349] = {.lex_state = 380, .external_lex_state = 2}, [8350] = {.lex_state = 380, .external_lex_state = 2}, - [8351] = {.lex_state = 56, .external_lex_state = 2}, - [8352] = {.lex_state = 57, .external_lex_state = 2}, + [8351] = {.lex_state = 380, .external_lex_state = 2}, + [8352] = {.lex_state = 380, .external_lex_state = 2}, [8353] = {.lex_state = 380, .external_lex_state = 2}, - [8354] = {.lex_state = 380, .external_lex_state = 2}, - [8355] = {.lex_state = 380, .external_lex_state = 2}, + [8354] = {.lex_state = 57, .external_lex_state = 2}, + [8355] = {.lex_state = 57, .external_lex_state = 2}, [8356] = {.lex_state = 380, .external_lex_state = 2}, [8357] = {.lex_state = 380, .external_lex_state = 2}, - [8358] = {.lex_state = 57, .external_lex_state = 2}, + [8358] = {.lex_state = 380, .external_lex_state = 2}, [8359] = {.lex_state = 380, .external_lex_state = 2}, [8360] = {.lex_state = 380, .external_lex_state = 2}, [8361] = {.lex_state = 380, .external_lex_state = 2}, [8362] = {.lex_state = 380, .external_lex_state = 2}, [8363] = {.lex_state = 380, .external_lex_state = 2}, [8364] = {.lex_state = 380, .external_lex_state = 2}, - [8365] = {.lex_state = 380, .external_lex_state = 2}, + [8365] = {.lex_state = 21, .external_lex_state = 2}, [8366] = {.lex_state = 380, .external_lex_state = 2}, [8367] = {.lex_state = 57, .external_lex_state = 2}, [8368] = {.lex_state = 380, .external_lex_state = 2}, - [8369] = {.lex_state = 380, .external_lex_state = 2}, + [8369] = {.lex_state = 57, .external_lex_state = 2}, [8370] = {.lex_state = 380, .external_lex_state = 2}, [8371] = {.lex_state = 380, .external_lex_state = 2}, [8372] = {.lex_state = 57, .external_lex_state = 2}, - [8373] = {.lex_state = 57, .external_lex_state = 2}, - [8374] = {.lex_state = 380, .external_lex_state = 2}, + [8373] = {.lex_state = 380, .external_lex_state = 2}, + [8374] = {.lex_state = 57, .external_lex_state = 2}, [8375] = {.lex_state = 380, .external_lex_state = 2}, - [8376] = {.lex_state = 57, .external_lex_state = 2}, + [8376] = {.lex_state = 380, .external_lex_state = 2}, [8377] = {.lex_state = 380, .external_lex_state = 2}, [8378] = {.lex_state = 380, .external_lex_state = 2}, [8379] = {.lex_state = 57, .external_lex_state = 2}, - [8380] = {.lex_state = 380, .external_lex_state = 2}, + [8380] = {.lex_state = 57, .external_lex_state = 2}, [8381] = {.lex_state = 380, .external_lex_state = 2}, [8382] = {.lex_state = 380, .external_lex_state = 2}, [8383] = {.lex_state = 380, .external_lex_state = 2}, @@ -31422,379 +31184,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8386] = {.lex_state = 380, .external_lex_state = 2}, [8387] = {.lex_state = 380, .external_lex_state = 2}, [8388] = {.lex_state = 380, .external_lex_state = 2}, - [8389] = {.lex_state = 57, .external_lex_state = 2}, + [8389] = {.lex_state = 380, .external_lex_state = 2}, [8390] = {.lex_state = 57, .external_lex_state = 2}, [8391] = {.lex_state = 380, .external_lex_state = 2}, - [8392] = {.lex_state = 380, .external_lex_state = 2}, + [8392] = {.lex_state = 57, .external_lex_state = 2}, [8393] = {.lex_state = 380, .external_lex_state = 2}, - [8394] = {.lex_state = 57, .external_lex_state = 2}, - [8395] = {.lex_state = 380, .external_lex_state = 2}, + [8394] = {.lex_state = 380, .external_lex_state = 2}, + [8395] = {.lex_state = 57, .external_lex_state = 2}, [8396] = {.lex_state = 380, .external_lex_state = 2}, [8397] = {.lex_state = 380, .external_lex_state = 2}, [8398] = {.lex_state = 380, .external_lex_state = 2}, [8399] = {.lex_state = 57, .external_lex_state = 2}, [8400] = {.lex_state = 380, .external_lex_state = 2}, - [8401] = {.lex_state = 57, .external_lex_state = 2}, + [8401] = {.lex_state = 380, .external_lex_state = 2}, [8402] = {.lex_state = 380, .external_lex_state = 2}, [8403] = {.lex_state = 380, .external_lex_state = 2}, [8404] = {.lex_state = 57, .external_lex_state = 2}, - [8405] = {.lex_state = 380, .external_lex_state = 2}, + [8405] = {.lex_state = 57, .external_lex_state = 2}, [8406] = {.lex_state = 380, .external_lex_state = 2}, - [8407] = {.lex_state = 57, .external_lex_state = 2}, + [8407] = {.lex_state = 380, .external_lex_state = 2}, [8408] = {.lex_state = 380, .external_lex_state = 2}, - [8409] = {.lex_state = 57, .external_lex_state = 2}, - [8410] = {.lex_state = 57, .external_lex_state = 2}, - [8411] = {.lex_state = 57, .external_lex_state = 2}, - [8412] = {.lex_state = 57, .external_lex_state = 2}, - [8413] = {.lex_state = 57, .external_lex_state = 2}, + [8409] = {.lex_state = 380, .external_lex_state = 2}, + [8410] = {.lex_state = 380, .external_lex_state = 2}, + [8411] = {.lex_state = 380, .external_lex_state = 2}, + [8412] = {.lex_state = 380, .external_lex_state = 2}, + [8413] = {.lex_state = 380, .external_lex_state = 2}, [8414] = {.lex_state = 380, .external_lex_state = 2}, - [8415] = {.lex_state = 380, .external_lex_state = 2}, - [8416] = {.lex_state = 380, .external_lex_state = 2}, + [8415] = {.lex_state = 21, .external_lex_state = 2}, + [8416] = {.lex_state = 57, .external_lex_state = 2}, [8417] = {.lex_state = 380, .external_lex_state = 2}, [8418] = {.lex_state = 57, .external_lex_state = 2}, - [8419] = {.lex_state = 54, .external_lex_state = 2}, - [8420] = {.lex_state = 57, .external_lex_state = 2}, - [8421] = {.lex_state = 57, .external_lex_state = 2}, + [8419] = {.lex_state = 57, .external_lex_state = 2}, + [8420] = {.lex_state = 380, .external_lex_state = 2}, + [8421] = {.lex_state = 380, .external_lex_state = 2}, [8422] = {.lex_state = 380, .external_lex_state = 2}, [8423] = {.lex_state = 57, .external_lex_state = 2}, [8424] = {.lex_state = 380, .external_lex_state = 2}, [8425] = {.lex_state = 380, .external_lex_state = 2}, - [8426] = {.lex_state = 380, .external_lex_state = 2}, - [8427] = {.lex_state = 380, .external_lex_state = 2}, + [8426] = {.lex_state = 57, .external_lex_state = 2}, + [8427] = {.lex_state = 57, .external_lex_state = 2}, [8428] = {.lex_state = 380, .external_lex_state = 2}, [8429] = {.lex_state = 380, .external_lex_state = 2}, [8430] = {.lex_state = 380, .external_lex_state = 2}, [8431] = {.lex_state = 380, .external_lex_state = 2}, - [8432] = {.lex_state = 380, .external_lex_state = 2}, - [8433] = {.lex_state = 81, .external_lex_state = 2}, - [8434] = {.lex_state = 57, .external_lex_state = 2}, - [8435] = {.lex_state = 57, .external_lex_state = 2}, + [8432] = {.lex_state = 57, .external_lex_state = 2}, + [8433] = {.lex_state = 380, .external_lex_state = 2}, + [8434] = {.lex_state = 380, .external_lex_state = 2}, + [8435] = {.lex_state = 380, .external_lex_state = 2}, [8436] = {.lex_state = 380, .external_lex_state = 2}, [8437] = {.lex_state = 380, .external_lex_state = 2}, [8438] = {.lex_state = 57, .external_lex_state = 2}, - [8439] = {.lex_state = 57, .external_lex_state = 2}, + [8439] = {.lex_state = 380, .external_lex_state = 2}, [8440] = {.lex_state = 380, .external_lex_state = 2}, - [8441] = {.lex_state = 54, .external_lex_state = 2}, + [8441] = {.lex_state = 380, .external_lex_state = 2}, [8442] = {.lex_state = 380, .external_lex_state = 2}, - [8443] = {.lex_state = 380, .external_lex_state = 2}, - [8444] = {.lex_state = 380, .external_lex_state = 2}, + [8443] = {.lex_state = 57, .external_lex_state = 2}, + [8444] = {.lex_state = 54, .external_lex_state = 2}, [8445] = {.lex_state = 380, .external_lex_state = 2}, - [8446] = {.lex_state = 380, .external_lex_state = 2}, + [8446] = {.lex_state = 57, .external_lex_state = 2}, [8447] = {.lex_state = 57, .external_lex_state = 2}, [8448] = {.lex_state = 380, .external_lex_state = 2}, [8449] = {.lex_state = 380, .external_lex_state = 2}, - [8450] = {.lex_state = 2, .external_lex_state = 10}, - [8451] = {.lex_state = 380, .external_lex_state = 2}, - [8452] = {.lex_state = 57, .external_lex_state = 2}, + [8450] = {.lex_state = 380, .external_lex_state = 2}, + [8451] = {.lex_state = 57, .external_lex_state = 2}, + [8452] = {.lex_state = 81, .external_lex_state = 2}, [8453] = {.lex_state = 380, .external_lex_state = 2}, - [8454] = {.lex_state = 380, .external_lex_state = 2}, + [8454] = {.lex_state = 57, .external_lex_state = 2}, [8455] = {.lex_state = 57, .external_lex_state = 2}, - [8456] = {.lex_state = 380, .external_lex_state = 2}, + [8456] = {.lex_state = 57, .external_lex_state = 2}, [8457] = {.lex_state = 380, .external_lex_state = 2}, - [8458] = {.lex_state = 57, .external_lex_state = 2}, + [8458] = {.lex_state = 380, .external_lex_state = 2}, [8459] = {.lex_state = 380, .external_lex_state = 2}, - [8460] = {.lex_state = 57, .external_lex_state = 2}, + [8460] = {.lex_state = 380, .external_lex_state = 2}, [8461] = {.lex_state = 380, .external_lex_state = 2}, [8462] = {.lex_state = 380, .external_lex_state = 2}, [8463] = {.lex_state = 380, .external_lex_state = 2}, [8464] = {.lex_state = 380, .external_lex_state = 2}, - [8465] = {.lex_state = 380, .external_lex_state = 2}, - [8466] = {.lex_state = 57, .external_lex_state = 2}, + [8465] = {.lex_state = 57, .external_lex_state = 2}, + [8466] = {.lex_state = 380, .external_lex_state = 2}, [8467] = {.lex_state = 57, .external_lex_state = 2}, - [8468] = {.lex_state = 21, .external_lex_state = 2}, - [8469] = {.lex_state = 57, .external_lex_state = 2}, - [8470] = {.lex_state = 380, .external_lex_state = 2}, - [8471] = {.lex_state = 54, .external_lex_state = 2}, - [8472] = {.lex_state = 380, .external_lex_state = 2}, - [8473] = {.lex_state = 380, .external_lex_state = 2}, - [8474] = {.lex_state = 57, .external_lex_state = 2}, + [8468] = {.lex_state = 380, .external_lex_state = 2}, + [8469] = {.lex_state = 380, .external_lex_state = 2}, + [8470] = {.lex_state = 57, .external_lex_state = 2}, + [8471] = {.lex_state = 380, .external_lex_state = 2}, + [8472] = {.lex_state = 57, .external_lex_state = 2}, + [8473] = {.lex_state = 57, .external_lex_state = 2}, + [8474] = {.lex_state = 380, .external_lex_state = 2}, [8475] = {.lex_state = 380, .external_lex_state = 2}, [8476] = {.lex_state = 380, .external_lex_state = 2}, [8477] = {.lex_state = 380, .external_lex_state = 2}, - [8478] = {.lex_state = 380, .external_lex_state = 2}, + [8478] = {.lex_state = 57, .external_lex_state = 2}, [8479] = {.lex_state = 380, .external_lex_state = 2}, [8480] = {.lex_state = 57, .external_lex_state = 2}, [8481] = {.lex_state = 57, .external_lex_state = 2}, - [8482] = {.lex_state = 57, .external_lex_state = 2}, + [8482] = {.lex_state = 380, .external_lex_state = 2}, [8483] = {.lex_state = 380, .external_lex_state = 2}, - [8484] = {.lex_state = 57, .external_lex_state = 2}, - [8485] = {.lex_state = 21, .external_lex_state = 2}, - [8486] = {.lex_state = 380, .external_lex_state = 2}, + [8484] = {.lex_state = 380, .external_lex_state = 2}, + [8485] = {.lex_state = 380, .external_lex_state = 2}, + [8486] = {.lex_state = 57, .external_lex_state = 2}, [8487] = {.lex_state = 57, .external_lex_state = 2}, - [8488] = {.lex_state = 57, .external_lex_state = 2}, - [8489] = {.lex_state = 57, .external_lex_state = 2}, + [8488] = {.lex_state = 380, .external_lex_state = 2}, + [8489] = {.lex_state = 380, .external_lex_state = 2}, [8490] = {.lex_state = 57, .external_lex_state = 2}, [8491] = {.lex_state = 57, .external_lex_state = 2}, - [8492] = {.lex_state = 380, .external_lex_state = 2}, + [8492] = {.lex_state = 57, .external_lex_state = 2}, [8493] = {.lex_state = 57, .external_lex_state = 2}, [8494] = {.lex_state = 380, .external_lex_state = 2}, [8495] = {.lex_state = 57, .external_lex_state = 2}, [8496] = {.lex_state = 57, .external_lex_state = 2}, [8497] = {.lex_state = 57, .external_lex_state = 2}, - [8498] = {.lex_state = 57, .external_lex_state = 2}, + [8498] = {.lex_state = 380, .external_lex_state = 2}, [8499] = {.lex_state = 57, .external_lex_state = 2}, [8500] = {.lex_state = 57, .external_lex_state = 2}, - [8501] = {.lex_state = 380, .external_lex_state = 2}, - [8502] = {.lex_state = 57, .external_lex_state = 2}, + [8501] = {.lex_state = 57, .external_lex_state = 2}, + [8502] = {.lex_state = 380, .external_lex_state = 2}, [8503] = {.lex_state = 380, .external_lex_state = 2}, - [8504] = {.lex_state = 380, .external_lex_state = 2}, - [8505] = {.lex_state = 57, .external_lex_state = 2}, - [8506] = {.lex_state = 57, .external_lex_state = 2}, - [8507] = {.lex_state = 380, .external_lex_state = 2}, - [8508] = {.lex_state = 57, .external_lex_state = 2}, - [8509] = {.lex_state = 380, .external_lex_state = 2}, - [8510] = {.lex_state = 380, .external_lex_state = 2}, - [8511] = {.lex_state = 380, .external_lex_state = 2}, - [8512] = {.lex_state = 380, .external_lex_state = 2}, - [8513] = {.lex_state = 57, .external_lex_state = 2}, - [8514] = {.lex_state = 57, .external_lex_state = 2}, - [8515] = {.lex_state = 56, .external_lex_state = 2}, - [8516] = {.lex_state = 57, .external_lex_state = 2}, - [8517] = {.lex_state = 380, .external_lex_state = 2}, - [8518] = {.lex_state = 380, .external_lex_state = 2}, - [8519] = {.lex_state = 380, .external_lex_state = 2}, - [8520] = {.lex_state = 380, .external_lex_state = 2}, - [8521] = {.lex_state = 56, .external_lex_state = 2}, - [8522] = {.lex_state = 380, .external_lex_state = 2}, - [8523] = {.lex_state = 380, .external_lex_state = 2}, - [8524] = {.lex_state = 380, .external_lex_state = 2}, - [8525] = {.lex_state = 57, .external_lex_state = 2}, - [8526] = {.lex_state = 380, .external_lex_state = 2}, - [8527] = {.lex_state = 57, .external_lex_state = 2}, - [8528] = {.lex_state = 380, .external_lex_state = 2}, - [8529] = {.lex_state = 57, .external_lex_state = 2}, - [8530] = {.lex_state = 380, .external_lex_state = 2}, - [8531] = {.lex_state = 380, .external_lex_state = 2}, - [8532] = {.lex_state = 81, .external_lex_state = 2}, - [8533] = {.lex_state = 380, .external_lex_state = 2}, - [8534] = {.lex_state = 380, .external_lex_state = 2}, - [8535] = {.lex_state = 380, .external_lex_state = 2}, - [8536] = {.lex_state = 380, .external_lex_state = 2}, - [8537] = {.lex_state = 380, .external_lex_state = 2}, - [8538] = {.lex_state = 380, .external_lex_state = 2}, - [8539] = {.lex_state = 380, .external_lex_state = 2}, - [8540] = {.lex_state = 380, .external_lex_state = 2}, - [8541] = {.lex_state = 380, .external_lex_state = 2}, - [8542] = {.lex_state = 57, .external_lex_state = 2}, - [8543] = {.lex_state = 380, .external_lex_state = 2}, - [8544] = {.lex_state = 380, .external_lex_state = 2}, - [8545] = {.lex_state = 380, .external_lex_state = 2}, - [8546] = {.lex_state = 380, .external_lex_state = 2}, - [8547] = {.lex_state = 57, .external_lex_state = 2}, - [8548] = {.lex_state = 380, .external_lex_state = 2}, - [8549] = {.lex_state = 57, .external_lex_state = 2}, - [8550] = {.lex_state = 380, .external_lex_state = 2}, - [8551] = {.lex_state = 380, .external_lex_state = 2}, - [8552] = {.lex_state = 380, .external_lex_state = 2}, - [8553] = {.lex_state = 57, .external_lex_state = 2}, - [8554] = {.lex_state = 380, .external_lex_state = 2}, - [8555] = {.lex_state = 57, .external_lex_state = 2}, - [8556] = {.lex_state = 380, .external_lex_state = 2}, - [8557] = {.lex_state = 380, .external_lex_state = 2}, - [8558] = {.lex_state = 380, .external_lex_state = 2}, - [8559] = {.lex_state = 380, .external_lex_state = 2}, - [8560] = {.lex_state = 380, .external_lex_state = 2}, - [8561] = {.lex_state = 57, .external_lex_state = 2}, - [8562] = {.lex_state = 380, .external_lex_state = 2}, - [8563] = {.lex_state = 57, .external_lex_state = 2}, - [8564] = {.lex_state = 380, .external_lex_state = 2}, - [8565] = {.lex_state = 380, .external_lex_state = 2}, - [8566] = {.lex_state = 380, .external_lex_state = 2}, - [8567] = {.lex_state = 380, .external_lex_state = 2}, - [8568] = {.lex_state = 57, .external_lex_state = 2}, - [8569] = {.lex_state = 380, .external_lex_state = 2}, - [8570] = {.lex_state = 380, .external_lex_state = 2}, - [8571] = {.lex_state = 380, .external_lex_state = 2}, - [8572] = {.lex_state = 380, .external_lex_state = 2}, - [8573] = {.lex_state = 380, .external_lex_state = 2}, - [8574] = {.lex_state = 57, .external_lex_state = 2}, - [8575] = {.lex_state = 21, .external_lex_state = 2}, - [8576] = {.lex_state = 380, .external_lex_state = 2}, - [8577] = {.lex_state = 380, .external_lex_state = 2}, - [8578] = {.lex_state = 380, .external_lex_state = 2}, - [8579] = {.lex_state = 57, .external_lex_state = 2}, - [8580] = {.lex_state = 380, .external_lex_state = 2}, - [8581] = {.lex_state = 57, .external_lex_state = 2}, - [8582] = {.lex_state = 380, .external_lex_state = 2}, - [8583] = {.lex_state = 57, .external_lex_state = 2}, - [8584] = {.lex_state = 57, .external_lex_state = 2}, - [8585] = {.lex_state = 57, .external_lex_state = 2}, - [8586] = {.lex_state = 380, .external_lex_state = 2}, - [8587] = {.lex_state = 57, .external_lex_state = 2}, - [8588] = {.lex_state = 380, .external_lex_state = 2}, - [8589] = {.lex_state = 380, .external_lex_state = 2}, - [8590] = {.lex_state = 380, .external_lex_state = 2}, - [8591] = {.lex_state = 57, .external_lex_state = 2}, - [8592] = {.lex_state = 380, .external_lex_state = 2}, - [8593] = {.lex_state = 57, .external_lex_state = 2}, - [8594] = {.lex_state = 57, .external_lex_state = 2}, - [8595] = {.lex_state = 380, .external_lex_state = 2}, - [8596] = {.lex_state = 380, .external_lex_state = 2}, - [8597] = {.lex_state = 57, .external_lex_state = 2}, - [8598] = {.lex_state = 57, .external_lex_state = 2}, - [8599] = {.lex_state = 380, .external_lex_state = 2}, - [8600] = {.lex_state = 380, .external_lex_state = 2}, - [8601] = {.lex_state = 57, .external_lex_state = 2}, - [8602] = {.lex_state = 380, .external_lex_state = 2}, - [8603] = {.lex_state = 380, .external_lex_state = 2}, - [8604] = {.lex_state = 380, .external_lex_state = 2}, - [8605] = {.lex_state = 380, .external_lex_state = 2}, - [8606] = {.lex_state = 380, .external_lex_state = 2}, - [8607] = {.lex_state = 57, .external_lex_state = 2}, - [8608] = {.lex_state = 57, .external_lex_state = 2}, - [8609] = {.lex_state = 380, .external_lex_state = 2}, - [8610] = {.lex_state = 380, .external_lex_state = 2}, - [8611] = {.lex_state = 57, .external_lex_state = 2}, - [8612] = {.lex_state = 57, .external_lex_state = 2}, - [8613] = {.lex_state = 380, .external_lex_state = 2}, - [8614] = {.lex_state = 380, .external_lex_state = 2}, - [8615] = {.lex_state = 380, .external_lex_state = 2}, - [8616] = {.lex_state = 380, .external_lex_state = 2}, - [8617] = {.lex_state = 380, .external_lex_state = 2}, - [8618] = {.lex_state = 380, .external_lex_state = 2}, - [8619] = {.lex_state = 380, .external_lex_state = 2}, - [8620] = {.lex_state = 57, .external_lex_state = 2}, - [8621] = {.lex_state = 380, .external_lex_state = 2}, - [8622] = {.lex_state = 54, .external_lex_state = 2}, - [8623] = {.lex_state = 380, .external_lex_state = 2}, - [8624] = {.lex_state = 57, .external_lex_state = 2}, - [8625] = {.lex_state = 380, .external_lex_state = 2}, - [8626] = {.lex_state = 57, .external_lex_state = 2}, - [8627] = {.lex_state = 380, .external_lex_state = 2}, - [8628] = {.lex_state = 380, .external_lex_state = 2}, - [8629] = {.lex_state = 56, .external_lex_state = 2}, - [8630] = {.lex_state = 380, .external_lex_state = 2}, - [8631] = {.lex_state = 380, .external_lex_state = 2}, - [8632] = {.lex_state = 380, .external_lex_state = 2}, - [8633] = {.lex_state = 380, .external_lex_state = 2}, - [8634] = {.lex_state = 380, .external_lex_state = 2}, - [8635] = {.lex_state = 380, .external_lex_state = 2}, - [8636] = {.lex_state = 57, .external_lex_state = 2}, - [8637] = {.lex_state = 57, .external_lex_state = 2}, - [8638] = {.lex_state = 57, .external_lex_state = 2}, - [8639] = {.lex_state = 380, .external_lex_state = 2}, - [8640] = {.lex_state = 380, .external_lex_state = 2}, - [8641] = {.lex_state = 380, .external_lex_state = 2}, - [8642] = {.lex_state = 380, .external_lex_state = 2}, - [8643] = {.lex_state = 380, .external_lex_state = 2}, - [8644] = {.lex_state = 380, .external_lex_state = 2}, - [8645] = {.lex_state = 380, .external_lex_state = 2}, - [8646] = {.lex_state = 380, .external_lex_state = 2}, - [8647] = {.lex_state = 380, .external_lex_state = 2}, - [8648] = {.lex_state = 21, .external_lex_state = 2}, - [8649] = {.lex_state = 57, .external_lex_state = 2}, - [8650] = {.lex_state = 380, .external_lex_state = 2}, - [8651] = {.lex_state = 380, .external_lex_state = 2}, - [8652] = {.lex_state = 380, .external_lex_state = 2}, - [8653] = {.lex_state = 380, .external_lex_state = 2}, - [8654] = {.lex_state = 380, .external_lex_state = 2}, - [8655] = {.lex_state = 380, .external_lex_state = 2}, - [8656] = {.lex_state = 57, .external_lex_state = 2}, - [8657] = {.lex_state = 380, .external_lex_state = 2}, - [8658] = {.lex_state = 57, .external_lex_state = 2}, - [8659] = {.lex_state = 380, .external_lex_state = 2}, - [8660] = {.lex_state = 380, .external_lex_state = 2}, - [8661] = {.lex_state = 57, .external_lex_state = 2}, - [8662] = {.lex_state = 57, .external_lex_state = 2}, - [8663] = {.lex_state = 380, .external_lex_state = 2}, - [8664] = {.lex_state = 380, .external_lex_state = 2}, - [8665] = {.lex_state = 380, .external_lex_state = 2}, - [8666] = {.lex_state = 380, .external_lex_state = 2}, - [8667] = {.lex_state = 380, .external_lex_state = 2}, - [8668] = {.lex_state = 380, .external_lex_state = 2}, - [8669] = {.lex_state = 380, .external_lex_state = 2}, - [8670] = {.lex_state = 380, .external_lex_state = 2}, - [8671] = {.lex_state = 380, .external_lex_state = 2}, - [8672] = {.lex_state = 380, .external_lex_state = 2}, - [8673] = {.lex_state = 57, .external_lex_state = 2}, - [8674] = {.lex_state = 380, .external_lex_state = 2}, - [8675] = {.lex_state = 380, .external_lex_state = 2}, - [8676] = {.lex_state = 57, .external_lex_state = 2}, - [8677] = {.lex_state = 380, .external_lex_state = 2}, - [8678] = {.lex_state = 57, .external_lex_state = 2}, - [8679] = {.lex_state = 380, .external_lex_state = 2}, - [8680] = {.lex_state = 380, .external_lex_state = 2}, - [8681] = {.lex_state = 57, .external_lex_state = 2}, - [8682] = {.lex_state = 380, .external_lex_state = 2}, - [8683] = {.lex_state = 57, .external_lex_state = 2}, - [8684] = {.lex_state = 57, .external_lex_state = 2}, - [8685] = {.lex_state = 57, .external_lex_state = 2}, - [8686] = {.lex_state = 380, .external_lex_state = 2}, - [8687] = {.lex_state = 380, .external_lex_state = 2}, - [8688] = {.lex_state = 380, .external_lex_state = 2}, - [8689] = {.lex_state = 57, .external_lex_state = 2}, - [8690] = {.lex_state = 380, .external_lex_state = 2}, - [8691] = {.lex_state = 57, .external_lex_state = 2}, - [8692] = {.lex_state = 380, .external_lex_state = 2}, - [8693] = {.lex_state = 380, .external_lex_state = 2}, - [8694] = {.lex_state = 380, .external_lex_state = 2}, - [8695] = {.lex_state = 57, .external_lex_state = 2}, - [8696] = {.lex_state = 380, .external_lex_state = 2}, - [8697] = {.lex_state = 380, .external_lex_state = 2}, - [8698] = {.lex_state = 380, .external_lex_state = 2}, - [8699] = {.lex_state = 380, .external_lex_state = 2}, - [8700] = {.lex_state = 380, .external_lex_state = 2}, - [8701] = {.lex_state = 380, .external_lex_state = 2}, - [8702] = {.lex_state = 380, .external_lex_state = 2}, - [8703] = {.lex_state = 57, .external_lex_state = 2}, - [8704] = {.lex_state = 57, .external_lex_state = 2}, - [8705] = {.lex_state = 380, .external_lex_state = 2}, - [8706] = {.lex_state = 380, .external_lex_state = 2}, - [8707] = {.lex_state = 380, .external_lex_state = 2}, - [8708] = {.lex_state = 380, .external_lex_state = 2}, - [8709] = {.lex_state = 380, .external_lex_state = 2}, - [8710] = {.lex_state = 380, .external_lex_state = 2}, - [8711] = {.lex_state = 380, .external_lex_state = 2}, - [8712] = {.lex_state = 57, .external_lex_state = 2}, - [8713] = {.lex_state = 57, .external_lex_state = 2}, - [8714] = {.lex_state = 380, .external_lex_state = 2}, - [8715] = {.lex_state = 380, .external_lex_state = 2}, - [8716] = {.lex_state = 380, .external_lex_state = 2}, - [8717] = {.lex_state = 380, .external_lex_state = 2}, - [8718] = {.lex_state = 380, .external_lex_state = 2}, - [8719] = {.lex_state = 380, .external_lex_state = 2}, - [8720] = {.lex_state = 57, .external_lex_state = 2}, - [8721] = {.lex_state = 380, .external_lex_state = 2}, - [8722] = {.lex_state = 57, .external_lex_state = 2}, - [8723] = {.lex_state = 380, .external_lex_state = 2}, - [8724] = {.lex_state = 380, .external_lex_state = 2}, - [8725] = {.lex_state = 380, .external_lex_state = 2}, - [8726] = {.lex_state = 380, .external_lex_state = 2}, - [8727] = {.lex_state = 57, .external_lex_state = 2}, - [8728] = {.lex_state = 56, .external_lex_state = 2}, - [8729] = {.lex_state = 380, .external_lex_state = 2}, - [8730] = {.lex_state = 57, .external_lex_state = 2}, - [8731] = {.lex_state = 380, .external_lex_state = 2}, - [8732] = {.lex_state = 380, .external_lex_state = 2}, - [8733] = {.lex_state = 380, .external_lex_state = 2}, - [8734] = {.lex_state = 380, .external_lex_state = 2}, - [8735] = {.lex_state = 57, .external_lex_state = 2}, - [8736] = {.lex_state = 57, .external_lex_state = 2}, - [8737] = {.lex_state = 380, .external_lex_state = 2}, - [8738] = {.lex_state = 57, .external_lex_state = 2}, - [8739] = {.lex_state = 380, .external_lex_state = 2}, - [8740] = {.lex_state = 380, .external_lex_state = 2}, - [8741] = {.lex_state = 380, .external_lex_state = 2}, - [8742] = {.lex_state = 380, .external_lex_state = 2}, - [8743] = {.lex_state = 57, .external_lex_state = 2}, - [8744] = {.lex_state = 57, .external_lex_state = 2}, - [8745] = {.lex_state = 380, .external_lex_state = 2}, - [8746] = {.lex_state = 57, .external_lex_state = 2}, - [8747] = {.lex_state = 380, .external_lex_state = 2}, - [8748] = {.lex_state = 57, .external_lex_state = 2}, - [8749] = {.lex_state = 57, .external_lex_state = 2}, - [8750] = {.lex_state = 57, .external_lex_state = 2}, - [8751] = {.lex_state = 380, .external_lex_state = 2}, - [8752] = {.lex_state = 380, .external_lex_state = 2}, - [8753] = {.lex_state = 57, .external_lex_state = 2}, - [8754] = {.lex_state = 57, .external_lex_state = 2}, - [8755] = {.lex_state = 380, .external_lex_state = 2}, - [8756] = {.lex_state = 57, .external_lex_state = 2}, - [8757] = {.lex_state = 57, .external_lex_state = 2}, - [8758] = {.lex_state = 57, .external_lex_state = 2}, - [8759] = {.lex_state = 380, .external_lex_state = 2}, - [8760] = {.lex_state = 57, .external_lex_state = 2}, - [8761] = {(TSStateId)(-1)}, + [8504] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -31968,16 +31473,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(8733), + [sym_program] = STATE(8479), [sym_comment] = STATE(1), - [sym_ui_pragma] = STATE(4487), - [sym_ui_import] = STATE(4487), - [sym_ui_object_definition] = STATE(8729), - [sym_ui_annotated_object] = STATE(8729), - [sym_ui_annotation] = STATE(4504), - [sym_ui_nested_identifier] = STATE(6609), - [aux_sym_program_repeat1] = STATE(3860), - [aux_sym_ui_annotated_object_repeat1] = STATE(4458), + [sym_ui_pragma] = STATE(4263), + [sym_ui_import] = STATE(4263), + [sym_ui_object_definition] = STATE(8475), + [sym_ui_annotated_object] = STATE(8475), + [sym_ui_annotation] = STATE(4274), + [sym_ui_nested_identifier] = STATE(6392), + [aux_sym_program_repeat1] = STATE(3653), + [aux_sym_ui_annotated_object_repeat1] = STATE(4236), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), [anon_sym_export] = ACTIONS(11), @@ -32015,78 +31520,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(2), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6117), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(5521), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(788), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(19), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(23), @@ -32210,78 +31715,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(3), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6117), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(5521), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(788), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(19), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(23), @@ -32405,98 +31910,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(7033), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6753), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(4), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(7033), - [sym_pair] = STATE(7033), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(85), - [aux_sym_object_repeat1] = STATE(7039), - [aux_sym_object_pattern_repeat1] = STATE(6845), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6753), + [sym_pair] = STATE(6753), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(58), + [aux_sym_object_repeat1] = STATE(6756), + [aux_sym_object_pattern_repeat1] = STATE(6895), [sym_identifier] = ACTIONS(135), [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(139), @@ -32586,98 +32092,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(7033), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6753), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(5), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(7033), - [sym_pair] = STATE(7033), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(77), - [aux_sym_object_repeat1] = STATE(7039), - [aux_sym_object_pattern_repeat1] = STATE(6845), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6753), + [sym_pair] = STATE(6753), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(81), + [aux_sym_object_repeat1] = STATE(6756), + [aux_sym_object_pattern_repeat1] = STATE(6895), [sym_identifier] = ACTIONS(135), [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(139), @@ -32767,112 +32274,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(6910), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6753), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(6), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(74), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(249), - [anon_sym_export] = ACTIONS(251), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6753), + [sym_pair] = STATE(6753), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(30), + [aux_sym_object_repeat1] = STATE(6756), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(135), + [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(139), - [anon_sym_type] = ACTIONS(253), - [anon_sym_namespace] = ACTIONS(255), + [anon_sym_type] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(143), [anon_sym_LBRACE] = ACTIONS(145), [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(249), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(259), + [anon_sym_from] = ACTIONS(155), [anon_sym_with] = ACTIONS(157), [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(261), + [anon_sym_let] = ACTIONS(161), [anon_sym_const] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(151), [anon_sym_if] = ACTIONS(165), @@ -32880,7 +32388,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(259), + [anon_sym_of] = ACTIONS(155), [anon_sym_while] = ACTIONS(175), [anon_sym_do] = ACTIONS(177), [anon_sym_try] = ACTIONS(179), @@ -32896,9 +32404,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(263), + [anon_sym_async] = ACTIONS(203), [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(265), + [anon_sym_new] = ACTIONS(207), [anon_sym_using] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(151), @@ -32921,125 +32429,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(267), - [anon_sym_readonly] = ACTIONS(269), - [anon_sym_get] = ACTIONS(271), - [anon_sym_set] = ACTIONS(271), - [anon_sym_declare] = ACTIONS(273), - [anon_sym_public] = ACTIONS(275), - [anon_sym_private] = ACTIONS(275), - [anon_sym_protected] = ACTIONS(275), - [anon_sym_override] = ACTIONS(277), - [anon_sym_module] = ACTIONS(279), - [anon_sym_any] = ACTIONS(259), - [anon_sym_number] = ACTIONS(259), - [anon_sym_boolean] = ACTIONS(259), - [anon_sym_string] = ACTIONS(259), - [anon_sym_symbol] = ACTIONS(259), - [anon_sym_object] = ACTIONS(259), - [anon_sym_property] = ACTIONS(259), - [anon_sym_signal] = ACTIONS(259), - [anon_sym_on] = ACTIONS(259), - [anon_sym_required] = ACTIONS(259), - [anon_sym_component] = ACTIONS(259), + [anon_sym_static] = ACTIONS(227), + [anon_sym_readonly] = ACTIONS(229), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(231), + [anon_sym_declare] = ACTIONS(233), + [anon_sym_public] = ACTIONS(235), + [anon_sym_private] = ACTIONS(235), + [anon_sym_protected] = ACTIONS(235), + [anon_sym_override] = ACTIONS(237), + [anon_sym_module] = ACTIONS(239), + [anon_sym_any] = ACTIONS(155), + [anon_sym_number] = ACTIONS(155), + [anon_sym_boolean] = ACTIONS(155), + [anon_sym_string] = ACTIONS(155), + [anon_sym_symbol] = ACTIONS(155), + [anon_sym_object] = ACTIONS(155), + [anon_sym_property] = ACTIONS(155), + [anon_sym_signal] = ACTIONS(155), + [anon_sym_on] = ACTIONS(155), + [anon_sym_required] = ACTIONS(155), + [anon_sym_component] = ACTIONS(155), [anon_sym_abstract] = ACTIONS(241), [anon_sym_interface] = ACTIONS(243), [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(7033), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6753), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(7), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(7033), - [sym_pair] = STATE(7033), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(51), - [aux_sym_object_repeat1] = STATE(7039), - [aux_sym_object_pattern_repeat1] = STATE(6845), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6753), + [sym_pair] = STATE(6753), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(41), + [aux_sym_object_repeat1] = STATE(6756), + [aux_sym_object_pattern_repeat1] = STATE(6895), [sym_identifier] = ACTIONS(135), [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(139), @@ -33047,7 +32556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(143), [anon_sym_LBRACE] = ACTIONS(145), [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(281), + [anon_sym_RBRACE] = ACTIONS(251), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(155), @@ -33129,98 +32638,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(7033), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6753), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(8), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(7033), - [sym_pair] = STATE(7033), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6753), + [sym_pair] = STATE(6753), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), [aux_sym_statement_block_repeat1] = STATE(75), - [aux_sym_object_repeat1] = STATE(7039), - [aux_sym_object_pattern_repeat1] = STATE(6845), + [aux_sym_object_repeat1] = STATE(6756), + [aux_sym_object_pattern_repeat1] = STATE(6895), [sym_identifier] = ACTIONS(135), [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(139), @@ -33228,7 +32738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(143), [anon_sym_LBRACE] = ACTIONS(145), [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(253), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(155), @@ -33310,98 +32820,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(7033), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6753), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(9), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(7033), - [sym_pair] = STATE(7033), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(55), - [aux_sym_object_repeat1] = STATE(7039), - [aux_sym_object_pattern_repeat1] = STATE(6845), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6753), + [sym_pair] = STATE(6753), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(65), + [aux_sym_object_repeat1] = STATE(6756), + [aux_sym_object_pattern_repeat1] = STATE(6895), [sym_identifier] = ACTIONS(135), [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(139), @@ -33409,7 +32920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(143), [anon_sym_LBRACE] = ACTIONS(145), [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_RBRACE] = ACTIONS(255), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(155), @@ -33491,112 +33002,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(7033), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6927), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(10), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(7033), - [sym_pair] = STATE(7033), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(84), - [aux_sym_object_repeat1] = STATE(7039), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(135), - [anon_sym_export] = ACTIONS(137), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(43), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(257), + [anon_sym_export] = ACTIONS(259), [anon_sym_STAR] = ACTIONS(139), - [anon_sym_type] = ACTIONS(141), - [anon_sym_namespace] = ACTIONS(143), + [anon_sym_type] = ACTIONS(261), + [anon_sym_namespace] = ACTIONS(263), [anon_sym_LBRACE] = ACTIONS(145), [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(287), + [anon_sym_RBRACE] = ACTIONS(265), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(155), + [anon_sym_from] = ACTIONS(267), [anon_sym_with] = ACTIONS(157), [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), + [anon_sym_let] = ACTIONS(269), [anon_sym_const] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(151), [anon_sym_if] = ACTIONS(165), @@ -33604,7 +33116,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(155), + [anon_sym_of] = ACTIONS(267), [anon_sym_while] = ACTIONS(175), [anon_sym_do] = ACTIONS(177), [anon_sym_try] = ACTIONS(179), @@ -33620,9 +33132,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), + [anon_sym_async] = ACTIONS(271), [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(207), + [anon_sym_new] = ACTIONS(273), [anon_sym_using] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(151), @@ -33645,125 +33157,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(227), - [anon_sym_readonly] = ACTIONS(229), - [anon_sym_get] = ACTIONS(231), - [anon_sym_set] = ACTIONS(231), - [anon_sym_declare] = ACTIONS(233), - [anon_sym_public] = ACTIONS(235), - [anon_sym_private] = ACTIONS(235), - [anon_sym_protected] = ACTIONS(235), - [anon_sym_override] = ACTIONS(237), - [anon_sym_module] = ACTIONS(239), - [anon_sym_any] = ACTIONS(155), - [anon_sym_number] = ACTIONS(155), - [anon_sym_boolean] = ACTIONS(155), - [anon_sym_string] = ACTIONS(155), - [anon_sym_symbol] = ACTIONS(155), - [anon_sym_object] = ACTIONS(155), - [anon_sym_property] = ACTIONS(155), - [anon_sym_signal] = ACTIONS(155), - [anon_sym_on] = ACTIONS(155), - [anon_sym_required] = ACTIONS(155), - [anon_sym_component] = ACTIONS(155), + [anon_sym_static] = ACTIONS(275), + [anon_sym_readonly] = ACTIONS(277), + [anon_sym_get] = ACTIONS(279), + [anon_sym_set] = ACTIONS(279), + [anon_sym_declare] = ACTIONS(281), + [anon_sym_public] = ACTIONS(283), + [anon_sym_private] = ACTIONS(283), + [anon_sym_protected] = ACTIONS(283), + [anon_sym_override] = ACTIONS(285), + [anon_sym_module] = ACTIONS(287), + [anon_sym_any] = ACTIONS(267), + [anon_sym_number] = ACTIONS(267), + [anon_sym_boolean] = ACTIONS(267), + [anon_sym_string] = ACTIONS(267), + [anon_sym_symbol] = ACTIONS(267), + [anon_sym_object] = ACTIONS(267), + [anon_sym_property] = ACTIONS(267), + [anon_sym_signal] = ACTIONS(267), + [anon_sym_on] = ACTIONS(267), + [anon_sym_required] = ACTIONS(267), + [anon_sym_component] = ACTIONS(267), [anon_sym_abstract] = ACTIONS(241), [anon_sym_interface] = ACTIONS(243), [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(7033), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6753), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(11), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(7033), - [sym_pair] = STATE(7033), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(67), - [aux_sym_object_repeat1] = STATE(7039), - [aux_sym_object_pattern_repeat1] = STATE(6845), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6753), + [sym_pair] = STATE(6753), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(51), + [aux_sym_object_repeat1] = STATE(6756), + [aux_sym_object_pattern_repeat1] = STATE(6895), [sym_identifier] = ACTIONS(135), [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(139), @@ -33853,112 +33366,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(7033), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6927), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(12), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(7033), - [sym_pair] = STATE(7033), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(88), - [aux_sym_object_repeat1] = STATE(7039), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(135), - [anon_sym_export] = ACTIONS(137), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(43), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(291), + [anon_sym_export] = ACTIONS(293), [anon_sym_STAR] = ACTIONS(139), - [anon_sym_type] = ACTIONS(141), - [anon_sym_namespace] = ACTIONS(143), + [anon_sym_type] = ACTIONS(295), + [anon_sym_namespace] = ACTIONS(297), [anon_sym_LBRACE] = ACTIONS(145), [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_RBRACE] = ACTIONS(265), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(155), + [anon_sym_from] = ACTIONS(299), [anon_sym_with] = ACTIONS(157), [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(161), + [anon_sym_let] = ACTIONS(301), [anon_sym_const] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(151), [anon_sym_if] = ACTIONS(165), @@ -33966,7 +33480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(155), + [anon_sym_of] = ACTIONS(299), [anon_sym_while] = ACTIONS(175), [anon_sym_do] = ACTIONS(177), [anon_sym_try] = ACTIONS(179), @@ -33982,9 +33496,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(203), + [anon_sym_async] = ACTIONS(303), [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(207), + [anon_sym_new] = ACTIONS(305), [anon_sym_using] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(151), @@ -34007,139 +33521,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(227), - [anon_sym_readonly] = ACTIONS(229), - [anon_sym_get] = ACTIONS(231), - [anon_sym_set] = ACTIONS(231), - [anon_sym_declare] = ACTIONS(233), - [anon_sym_public] = ACTIONS(235), - [anon_sym_private] = ACTIONS(235), - [anon_sym_protected] = ACTIONS(235), - [anon_sym_override] = ACTIONS(237), - [anon_sym_module] = ACTIONS(239), - [anon_sym_any] = ACTIONS(155), - [anon_sym_number] = ACTIONS(155), - [anon_sym_boolean] = ACTIONS(155), - [anon_sym_string] = ACTIONS(155), - [anon_sym_symbol] = ACTIONS(155), - [anon_sym_object] = ACTIONS(155), - [anon_sym_property] = ACTIONS(155), - [anon_sym_signal] = ACTIONS(155), - [anon_sym_on] = ACTIONS(155), - [anon_sym_required] = ACTIONS(155), - [anon_sym_component] = ACTIONS(155), + [anon_sym_static] = ACTIONS(307), + [anon_sym_readonly] = ACTIONS(309), + [anon_sym_get] = ACTIONS(311), + [anon_sym_set] = ACTIONS(311), + [anon_sym_declare] = ACTIONS(313), + [anon_sym_public] = ACTIONS(315), + [anon_sym_private] = ACTIONS(315), + [anon_sym_protected] = ACTIONS(315), + [anon_sym_override] = ACTIONS(317), + [anon_sym_module] = ACTIONS(319), + [anon_sym_any] = ACTIONS(299), + [anon_sym_number] = ACTIONS(299), + [anon_sym_boolean] = ACTIONS(299), + [anon_sym_string] = ACTIONS(299), + [anon_sym_symbol] = ACTIONS(299), + [anon_sym_object] = ACTIONS(299), + [anon_sym_property] = ACTIONS(299), + [anon_sym_signal] = ACTIONS(299), + [anon_sym_on] = ACTIONS(299), + [anon_sym_required] = ACTIONS(299), + [anon_sym_component] = ACTIONS(299), [anon_sym_abstract] = ACTIONS(241), [anon_sym_interface] = ACTIONS(243), [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(6910), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6927), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(13), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(74), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(293), - [anon_sym_export] = ACTIONS(295), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(43), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(321), + [anon_sym_export] = ACTIONS(323), [anon_sym_STAR] = ACTIONS(139), - [anon_sym_type] = ACTIONS(297), - [anon_sym_namespace] = ACTIONS(299), + [anon_sym_type] = ACTIONS(325), + [anon_sym_namespace] = ACTIONS(327), [anon_sym_LBRACE] = ACTIONS(145), [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(265), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(301), + [anon_sym_from] = ACTIONS(329), [anon_sym_with] = ACTIONS(157), [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(303), + [anon_sym_let] = ACTIONS(331), [anon_sym_const] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(151), [anon_sym_if] = ACTIONS(165), @@ -34147,7 +33662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(301), + [anon_sym_of] = ACTIONS(329), [anon_sym_while] = ACTIONS(175), [anon_sym_do] = ACTIONS(177), [anon_sym_try] = ACTIONS(179), @@ -34163,9 +33678,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(305), + [anon_sym_async] = ACTIONS(333), [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(307), + [anon_sym_new] = ACTIONS(335), [anon_sym_using] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(151), @@ -34188,139 +33703,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(309), - [anon_sym_readonly] = ACTIONS(311), - [anon_sym_get] = ACTIONS(313), - [anon_sym_set] = ACTIONS(313), - [anon_sym_declare] = ACTIONS(315), - [anon_sym_public] = ACTIONS(317), - [anon_sym_private] = ACTIONS(317), - [anon_sym_protected] = ACTIONS(317), - [anon_sym_override] = ACTIONS(319), - [anon_sym_module] = ACTIONS(321), - [anon_sym_any] = ACTIONS(301), - [anon_sym_number] = ACTIONS(301), - [anon_sym_boolean] = ACTIONS(301), - [anon_sym_string] = ACTIONS(301), - [anon_sym_symbol] = ACTIONS(301), - [anon_sym_object] = ACTIONS(301), - [anon_sym_property] = ACTIONS(301), - [anon_sym_signal] = ACTIONS(301), - [anon_sym_on] = ACTIONS(301), - [anon_sym_required] = ACTIONS(301), - [anon_sym_component] = ACTIONS(301), + [anon_sym_static] = ACTIONS(337), + [anon_sym_readonly] = ACTIONS(339), + [anon_sym_get] = ACTIONS(341), + [anon_sym_set] = ACTIONS(341), + [anon_sym_declare] = ACTIONS(343), + [anon_sym_public] = ACTIONS(345), + [anon_sym_private] = ACTIONS(345), + [anon_sym_protected] = ACTIONS(345), + [anon_sym_override] = ACTIONS(347), + [anon_sym_module] = ACTIONS(349), + [anon_sym_any] = ACTIONS(329), + [anon_sym_number] = ACTIONS(329), + [anon_sym_boolean] = ACTIONS(329), + [anon_sym_string] = ACTIONS(329), + [anon_sym_symbol] = ACTIONS(329), + [anon_sym_object] = ACTIONS(329), + [anon_sym_property] = ACTIONS(329), + [anon_sym_signal] = ACTIONS(329), + [anon_sym_on] = ACTIONS(329), + [anon_sym_required] = ACTIONS(329), + [anon_sym_component] = ACTIONS(329), [anon_sym_abstract] = ACTIONS(241), [anon_sym_interface] = ACTIONS(243), [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8311), - [sym_spread_element] = STATE(6910), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3527), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7949), + [sym_spread_element] = STATE(6753), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3441), [sym_comment] = STATE(14), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(5301), - [sym_computed_property_name] = STATE(5255), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_accessibility_modifier] = STATE(3855), - [sym_override_modifier] = STATE(3872), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(74), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(323), - [anon_sym_export] = ACTIONS(325), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6753), + [sym_pair] = STATE(6753), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(5267), + [sym_computed_property_name] = STATE(5270), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_accessibility_modifier] = STATE(3674), + [sym_override_modifier] = STATE(3732), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(79), + [aux_sym_object_repeat1] = STATE(6756), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(135), + [anon_sym_export] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(139), - [anon_sym_type] = ACTIONS(327), - [anon_sym_namespace] = ACTIONS(329), + [anon_sym_type] = ACTIONS(141), + [anon_sym_namespace] = ACTIONS(143), [anon_sym_LBRACE] = ACTIONS(145), [anon_sym_COMMA] = ACTIONS(147), - [anon_sym_RBRACE] = ACTIONS(257), + [anon_sym_RBRACE] = ACTIONS(351), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(331), + [anon_sym_from] = ACTIONS(155), [anon_sym_with] = ACTIONS(157), [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(333), + [anon_sym_let] = ACTIONS(161), [anon_sym_const] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(151), [anon_sym_if] = ACTIONS(165), @@ -34328,7 +33844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(331), + [anon_sym_of] = ACTIONS(155), [anon_sym_while] = ACTIONS(175), [anon_sym_do] = ACTIONS(177), [anon_sym_try] = ACTIONS(179), @@ -34344,9 +33860,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(335), + [anon_sym_async] = ACTIONS(203), [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(337), + [anon_sym_new] = ACTIONS(207), [anon_sym_using] = ACTIONS(209), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(151), @@ -34369,113 +33885,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(339), - [anon_sym_readonly] = ACTIONS(341), - [anon_sym_get] = ACTIONS(343), - [anon_sym_set] = ACTIONS(343), - [anon_sym_declare] = ACTIONS(345), - [anon_sym_public] = ACTIONS(347), - [anon_sym_private] = ACTIONS(347), - [anon_sym_protected] = ACTIONS(347), - [anon_sym_override] = ACTIONS(349), - [anon_sym_module] = ACTIONS(351), - [anon_sym_any] = ACTIONS(331), - [anon_sym_number] = ACTIONS(331), - [anon_sym_boolean] = ACTIONS(331), - [anon_sym_string] = ACTIONS(331), - [anon_sym_symbol] = ACTIONS(331), - [anon_sym_object] = ACTIONS(331), - [anon_sym_property] = ACTIONS(331), - [anon_sym_signal] = ACTIONS(331), - [anon_sym_on] = ACTIONS(331), - [anon_sym_required] = ACTIONS(331), - [anon_sym_component] = ACTIONS(331), + [anon_sym_static] = ACTIONS(227), + [anon_sym_readonly] = ACTIONS(229), + [anon_sym_get] = ACTIONS(231), + [anon_sym_set] = ACTIONS(231), + [anon_sym_declare] = ACTIONS(233), + [anon_sym_public] = ACTIONS(235), + [anon_sym_private] = ACTIONS(235), + [anon_sym_protected] = ACTIONS(235), + [anon_sym_override] = ACTIONS(237), + [anon_sym_module] = ACTIONS(239), + [anon_sym_any] = ACTIONS(155), + [anon_sym_number] = ACTIONS(155), + [anon_sym_boolean] = ACTIONS(155), + [anon_sym_string] = ACTIONS(155), + [anon_sym_symbol] = ACTIONS(155), + [anon_sym_object] = ACTIONS(155), + [anon_sym_property] = ACTIONS(155), + [anon_sym_signal] = ACTIONS(155), + [anon_sym_on] = ACTIONS(155), + [anon_sym_required] = ACTIONS(155), + [anon_sym_component] = ACTIONS(155), [anon_sym_abstract] = ACTIONS(241), [anon_sym_interface] = ACTIONS(243), [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(1264), - [sym_declaration] = STATE(1264), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1264), - [sym_expression_statement] = STATE(1264), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_switch_statement] = STATE(1264), - [sym_for_statement] = STATE(1264), - [sym_for_in_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_do_statement] = STATE(1264), - [sym_try_statement] = STATE(1264), - [sym_with_statement] = STATE(1264), - [sym_break_statement] = STATE(1264), - [sym_continue_statement] = STATE(1264), - [sym_debugger_statement] = STATE(1264), - [sym_return_statement] = STATE(1264), - [sym_throw_statement] = STATE(1264), - [sym_empty_statement] = STATE(1264), - [sym_labeled_statement] = STATE(1264), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1376), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), [sym_comment] = STATE(15), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), - [aux_sym_statement_block_repeat1] = STATE(19), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), + [aux_sym_statement_block_repeat1] = STATE(18), [sym_identifier] = ACTIONS(353), [anon_sym_export] = ACTIONS(355), [anon_sym_default] = ACTIONS(357), @@ -34564,86 +34081,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(1264), - [sym_declaration] = STATE(1264), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1264), - [sym_expression_statement] = STATE(1264), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_switch_statement] = STATE(1264), - [sym_for_statement] = STATE(1264), - [sym_for_in_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_do_statement] = STATE(1264), - [sym_try_statement] = STATE(1264), - [sym_with_statement] = STATE(1264), - [sym_break_statement] = STATE(1264), - [sym_continue_statement] = STATE(1264), - [sym_debugger_statement] = STATE(1264), - [sym_return_statement] = STATE(1264), - [sym_throw_statement] = STATE(1264), - [sym_empty_statement] = STATE(1264), - [sym_labeled_statement] = STATE(1264), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1376), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), [sym_comment] = STATE(16), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), - [aux_sym_statement_block_repeat1] = STATE(19), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), + [aux_sym_statement_block_repeat1] = STATE(18), [sym_identifier] = ACTIONS(353), [anon_sym_export] = ACTIONS(355), [anon_sym_default] = ACTIONS(423), @@ -34732,85 +34250,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(1264), - [sym_declaration] = STATE(1264), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1264), - [sym_expression_statement] = STATE(1264), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_switch_statement] = STATE(1264), - [sym_for_statement] = STATE(1264), - [sym_for_in_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_do_statement] = STATE(1264), - [sym_try_statement] = STATE(1264), - [sym_with_statement] = STATE(1264), - [sym_break_statement] = STATE(1264), - [sym_continue_statement] = STATE(1264), - [sym_debugger_statement] = STATE(1264), - [sym_return_statement] = STATE(1264), - [sym_throw_statement] = STATE(1264), - [sym_empty_statement] = STATE(1264), - [sym_labeled_statement] = STATE(1264), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1376), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), [sym_comment] = STATE(17), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), [aux_sym_statement_block_repeat1] = STATE(15), [sym_identifier] = ACTIONS(353), [anon_sym_export] = ACTIONS(355), @@ -34900,93 +34419,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(1264), - [sym_declaration] = STATE(1264), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1264), - [sym_expression_statement] = STATE(1264), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_switch_statement] = STATE(1264), - [sym_for_statement] = STATE(1264), - [sym_for_in_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_do_statement] = STATE(1264), - [sym_try_statement] = STATE(1264), - [sym_with_statement] = STATE(1264), - [sym_break_statement] = STATE(1264), - [sym_continue_statement] = STATE(1264), - [sym_debugger_statement] = STATE(1264), - [sym_return_statement] = STATE(1264), - [sym_throw_statement] = STATE(1264), - [sym_empty_statement] = STATE(1264), - [sym_labeled_statement] = STATE(1264), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1376), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), [sym_comment] = STATE(18), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), + [aux_sym_statement_block_repeat1] = STATE(18), + [sym_identifier] = ACTIONS(427), + [anon_sym_export] = ACTIONS(430), + [anon_sym_default] = ACTIONS(433), + [anon_sym_type] = ACTIONS(435), + [anon_sym_namespace] = ACTIONS(438), + [anon_sym_LBRACE] = ACTIONS(441), + [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_import] = ACTIONS(447), + [anon_sym_from] = ACTIONS(450), + [anon_sym_with] = ACTIONS(453), + [anon_sym_var] = ACTIONS(456), + [anon_sym_let] = ACTIONS(459), + [anon_sym_const] = ACTIONS(462), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_if] = ACTIONS(465), + [anon_sym_switch] = ACTIONS(468), + [anon_sym_for] = ACTIONS(471), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_await] = ACTIONS(477), + [anon_sym_of] = ACTIONS(450), + [anon_sym_while] = ACTIONS(480), + [anon_sym_do] = ACTIONS(483), + [anon_sym_try] = ACTIONS(486), + [anon_sym_break] = ACTIONS(489), + [anon_sym_continue] = ACTIONS(492), + [anon_sym_debugger] = ACTIONS(495), + [anon_sym_return] = ACTIONS(498), + [anon_sym_throw] = ACTIONS(501), + [anon_sym_SEMI] = ACTIONS(504), + [anon_sym_case] = ACTIONS(433), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LTtemplate_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_class] = ACTIONS(522), + [anon_sym_async] = ACTIONS(525), + [anon_sym_function] = ACTIONS(528), + [anon_sym_new] = ACTIONS(531), + [anon_sym_using] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH_DASH] = ACTIONS(543), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(546), + [sym_number] = ACTIONS(549), + [sym_private_property_identifier] = ACTIONS(552), + [sym_this] = ACTIONS(549), + [sym_super] = ACTIONS(549), + [sym_true] = ACTIONS(549), + [sym_false] = ACTIONS(549), + [sym_null] = ACTIONS(549), + [sym_undefined] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_static] = ACTIONS(450), + [anon_sym_readonly] = ACTIONS(450), + [anon_sym_get] = ACTIONS(450), + [anon_sym_set] = ACTIONS(450), + [anon_sym_declare] = ACTIONS(561), + [anon_sym_public] = ACTIONS(450), + [anon_sym_private] = ACTIONS(450), + [anon_sym_protected] = ACTIONS(450), + [anon_sym_override] = ACTIONS(450), + [anon_sym_module] = ACTIONS(564), + [anon_sym_any] = ACTIONS(450), + [anon_sym_number] = ACTIONS(450), + [anon_sym_boolean] = ACTIONS(450), + [anon_sym_string] = ACTIONS(450), + [anon_sym_symbol] = ACTIONS(450), + [anon_sym_object] = ACTIONS(450), + [anon_sym_property] = ACTIONS(450), + [anon_sym_signal] = ACTIONS(450), + [anon_sym_on] = ACTIONS(450), + [anon_sym_required] = ACTIONS(450), + [anon_sym_component] = ACTIONS(450), + [anon_sym_abstract] = ACTIONS(567), + [anon_sym_interface] = ACTIONS(570), + [anon_sym_enum] = ACTIONS(573), + [sym_html_comment] = ACTIONS(5), + }, + [19] = { + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1376), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), + [sym_comment] = STATE(19), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), [aux_sym_statement_block_repeat1] = STATE(16), [sym_identifier] = ACTIONS(353), [anon_sym_export] = ACTIONS(355), - [anon_sym_default] = ACTIONS(427), + [anon_sym_default] = ACTIONS(576), [anon_sym_type] = ACTIONS(359), [anon_sym_namespace] = ACTIONS(361), [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(576), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(365), [anon_sym_from] = ACTIONS(367), @@ -35010,7 +34699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(395), [anon_sym_throw] = ACTIONS(397), [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_case] = ACTIONS(427), + [anon_sym_case] = ACTIONS(576), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), @@ -35067,255 +34756,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(421), [sym_html_comment] = ACTIONS(5), }, - [19] = { - [sym_export_statement] = STATE(1264), - [sym_declaration] = STATE(1264), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1264), - [sym_expression_statement] = STATE(1264), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_switch_statement] = STATE(1264), - [sym_for_statement] = STATE(1264), - [sym_for_in_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_do_statement] = STATE(1264), - [sym_try_statement] = STATE(1264), - [sym_with_statement] = STATE(1264), - [sym_break_statement] = STATE(1264), - [sym_continue_statement] = STATE(1264), - [sym_debugger_statement] = STATE(1264), - [sym_return_statement] = STATE(1264), - [sym_throw_statement] = STATE(1264), - [sym_empty_statement] = STATE(1264), - [sym_labeled_statement] = STATE(1264), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), - [sym_comment] = STATE(19), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), - [aux_sym_statement_block_repeat1] = STATE(19), - [sym_identifier] = ACTIONS(429), - [anon_sym_export] = ACTIONS(432), - [anon_sym_default] = ACTIONS(435), - [anon_sym_type] = ACTIONS(437), - [anon_sym_namespace] = ACTIONS(440), - [anon_sym_LBRACE] = ACTIONS(443), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_typeof] = ACTIONS(446), - [anon_sym_import] = ACTIONS(449), - [anon_sym_from] = ACTIONS(452), - [anon_sym_with] = ACTIONS(455), - [anon_sym_var] = ACTIONS(458), - [anon_sym_let] = ACTIONS(461), - [anon_sym_const] = ACTIONS(464), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_if] = ACTIONS(467), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_for] = ACTIONS(473), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_await] = ACTIONS(479), - [anon_sym_of] = ACTIONS(452), - [anon_sym_while] = ACTIONS(482), - [anon_sym_do] = ACTIONS(485), - [anon_sym_try] = ACTIONS(488), - [anon_sym_break] = ACTIONS(491), - [anon_sym_continue] = ACTIONS(494), - [anon_sym_debugger] = ACTIONS(497), - [anon_sym_return] = ACTIONS(500), - [anon_sym_throw] = ACTIONS(503), - [anon_sym_SEMI] = ACTIONS(506), - [anon_sym_case] = ACTIONS(435), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_LTtemplate_GT] = ACTIONS(515), - [anon_sym_DQUOTE] = ACTIONS(518), - [anon_sym_SQUOTE] = ACTIONS(521), - [anon_sym_class] = ACTIONS(524), - [anon_sym_async] = ACTIONS(527), - [anon_sym_function] = ACTIONS(530), - [anon_sym_new] = ACTIONS(533), - [anon_sym_using] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(446), - [anon_sym_DASH] = ACTIONS(446), - [anon_sym_SLASH] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_void] = ACTIONS(446), - [anon_sym_delete] = ACTIONS(446), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(548), - [sym_number] = ACTIONS(551), - [sym_private_property_identifier] = ACTIONS(554), - [sym_this] = ACTIONS(551), - [sym_super] = ACTIONS(551), - [sym_true] = ACTIONS(551), - [sym_false] = ACTIONS(551), - [sym_null] = ACTIONS(551), - [sym_undefined] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(560), - [anon_sym_static] = ACTIONS(452), - [anon_sym_readonly] = ACTIONS(452), - [anon_sym_get] = ACTIONS(452), - [anon_sym_set] = ACTIONS(452), - [anon_sym_declare] = ACTIONS(563), - [anon_sym_public] = ACTIONS(452), - [anon_sym_private] = ACTIONS(452), - [anon_sym_protected] = ACTIONS(452), - [anon_sym_override] = ACTIONS(452), - [anon_sym_module] = ACTIONS(566), - [anon_sym_any] = ACTIONS(452), - [anon_sym_number] = ACTIONS(452), - [anon_sym_boolean] = ACTIONS(452), - [anon_sym_string] = ACTIONS(452), - [anon_sym_symbol] = ACTIONS(452), - [anon_sym_object] = ACTIONS(452), - [anon_sym_property] = ACTIONS(452), - [anon_sym_signal] = ACTIONS(452), - [anon_sym_on] = ACTIONS(452), - [anon_sym_required] = ACTIONS(452), - [anon_sym_component] = ACTIONS(452), - [anon_sym_abstract] = ACTIONS(569), - [anon_sym_interface] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(575), - [sym_html_comment] = ACTIONS(5), - }, [20] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(20), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(90), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -35402,86 +34924,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(21), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(84), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -35568,86 +35091,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(22), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(24), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -35734,86 +35258,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(23), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(22), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(26), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -35900,86 +35425,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(24), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -36066,86 +35592,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(25), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(41), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -36232,86 +35759,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(26), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(25), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -36398,86 +35926,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(27), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(29), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -36564,86 +36093,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(28), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(75), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(63), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -36730,86 +36260,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(29), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(27), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -36896,86 +36427,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(30), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -37062,86 +36594,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(31), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(67), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(35), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -37228,258 +36761,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(32), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(55), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), + [sym_identifier] = ACTIONS(622), + [anon_sym_export] = ACTIONS(625), + [anon_sym_type] = ACTIONS(628), + [anon_sym_namespace] = ACTIONS(631), + [anon_sym_LBRACE] = ACTIONS(634), + [anon_sym_RBRACE] = ACTIONS(433), + [anon_sym_typeof] = ACTIONS(444), + [anon_sym_import] = ACTIONS(637), + [anon_sym_from] = ACTIONS(640), + [anon_sym_with] = ACTIONS(643), + [anon_sym_var] = ACTIONS(646), + [anon_sym_let] = ACTIONS(649), + [anon_sym_const] = ACTIONS(652), + [anon_sym_BANG] = ACTIONS(444), + [anon_sym_if] = ACTIONS(655), + [anon_sym_switch] = ACTIONS(658), + [anon_sym_for] = ACTIONS(661), + [anon_sym_LPAREN] = ACTIONS(474), + [anon_sym_await] = ACTIONS(477), + [anon_sym_of] = ACTIONS(640), + [anon_sym_while] = ACTIONS(664), + [anon_sym_do] = ACTIONS(667), + [anon_sym_try] = ACTIONS(670), + [anon_sym_break] = ACTIONS(673), + [anon_sym_continue] = ACTIONS(676), + [anon_sym_debugger] = ACTIONS(679), + [anon_sym_return] = ACTIONS(682), + [anon_sym_throw] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(507), + [anon_sym_LBRACK] = ACTIONS(510), + [anon_sym_LTtemplate_GT] = ACTIONS(513), + [anon_sym_DQUOTE] = ACTIONS(516), + [anon_sym_SQUOTE] = ACTIONS(519), + [anon_sym_class] = ACTIONS(691), + [anon_sym_async] = ACTIONS(694), + [anon_sym_function] = ACTIONS(697), + [anon_sym_new] = ACTIONS(700), + [anon_sym_using] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(444), + [anon_sym_DASH] = ACTIONS(444), + [anon_sym_SLASH] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(540), + [anon_sym_TILDE] = ACTIONS(444), + [anon_sym_void] = ACTIONS(444), + [anon_sym_delete] = ACTIONS(444), + [anon_sym_PLUS_PLUS] = ACTIONS(543), + [anon_sym_DASH_DASH] = ACTIONS(543), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(546), + [sym_number] = ACTIONS(549), + [sym_private_property_identifier] = ACTIONS(552), + [sym_this] = ACTIONS(549), + [sym_super] = ACTIONS(549), + [sym_true] = ACTIONS(549), + [sym_false] = ACTIONS(549), + [sym_null] = ACTIONS(549), + [sym_undefined] = ACTIONS(555), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_static] = ACTIONS(640), + [anon_sym_readonly] = ACTIONS(640), + [anon_sym_get] = ACTIONS(640), + [anon_sym_set] = ACTIONS(640), + [anon_sym_declare] = ACTIONS(703), + [anon_sym_public] = ACTIONS(640), + [anon_sym_private] = ACTIONS(640), + [anon_sym_protected] = ACTIONS(640), + [anon_sym_override] = ACTIONS(640), + [anon_sym_module] = ACTIONS(706), + [anon_sym_any] = ACTIONS(640), + [anon_sym_number] = ACTIONS(640), + [anon_sym_boolean] = ACTIONS(640), + [anon_sym_string] = ACTIONS(640), + [anon_sym_symbol] = ACTIONS(640), + [anon_sym_object] = ACTIONS(640), + [anon_sym_property] = ACTIONS(640), + [anon_sym_signal] = ACTIONS(640), + [anon_sym_on] = ACTIONS(640), + [anon_sym_required] = ACTIONS(640), + [anon_sym_component] = ACTIONS(640), + [anon_sym_abstract] = ACTIONS(709), + [anon_sym_interface] = ACTIONS(712), + [anon_sym_enum] = ACTIONS(715), + [sym_html_comment] = ACTIONS(5), + }, + [33] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(33), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(75), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(622), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(588), - [anon_sym_with] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(590), - [anon_sym_const] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(165), - [anon_sym_switch] = ACTIONS(167), - [anon_sym_for] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(588), - [anon_sym_while] = ACTIONS(175), - [anon_sym_do] = ACTIONS(177), - [anon_sym_try] = ACTIONS(179), - [anon_sym_break] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_debugger] = ACTIONS(185), - [anon_sym_return] = ACTIONS(187), - [anon_sym_throw] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(594), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(588), - [anon_sym_readonly] = ACTIONS(588), - [anon_sym_get] = ACTIONS(588), - [anon_sym_set] = ACTIONS(588), - [anon_sym_declare] = ACTIONS(596), - [anon_sym_public] = ACTIONS(588), - [anon_sym_private] = ACTIONS(588), - [anon_sym_protected] = ACTIONS(588), - [anon_sym_override] = ACTIONS(588), - [anon_sym_module] = ACTIONS(598), - [anon_sym_any] = ACTIONS(588), - [anon_sym_number] = ACTIONS(588), - [anon_sym_boolean] = ACTIONS(588), - [anon_sym_string] = ACTIONS(588), - [anon_sym_symbol] = ACTIONS(588), - [anon_sym_object] = ACTIONS(588), - [anon_sym_property] = ACTIONS(588), - [anon_sym_signal] = ACTIONS(588), - [anon_sym_on] = ACTIONS(588), - [anon_sym_required] = ACTIONS(588), - [anon_sym_component] = ACTIONS(588), - [anon_sym_abstract] = ACTIONS(241), - [anon_sym_interface] = ACTIONS(243), - [anon_sym_enum] = ACTIONS(245), - [sym_html_comment] = ACTIONS(5), - }, - [33] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(33), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(582), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_RBRACE] = ACTIONS(718), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -37560,92 +37095,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(34), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(626), + [anon_sym_RBRACE] = ACTIONS(720), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -37726,92 +37262,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(35), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(33), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -37892,92 +37429,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(36), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(20), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(37), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(630), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -38058,92 +37596,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(37), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_RBRACE] = ACTIONS(726), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -38224,92 +37763,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(38), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(51), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(39), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(634), + [anon_sym_RBRACE] = ACTIONS(728), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -38390,92 +37930,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(39), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(636), + [anon_sym_RBRACE] = ACTIONS(730), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -38556,92 +38097,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(40), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(37), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(65), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(638), + [anon_sym_RBRACE] = ACTIONS(732), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -38722,92 +38264,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(41), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(734), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -38888,92 +38431,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(42), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(88), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(44), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(642), + [anon_sym_RBRACE] = ACTIONS(736), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -39054,92 +38598,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(43), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(89), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(738), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -39220,92 +38765,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(44), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(39), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(740), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -39386,92 +38932,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(45), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(51), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(648), + [anon_sym_RBRACE] = ACTIONS(742), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -39552,92 +39099,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(46), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(45), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(48), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(650), + [anon_sym_RBRACE] = ACTIONS(744), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -39718,92 +39266,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(47), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(34), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(652), + [anon_sym_RBRACE] = ACTIONS(746), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -39884,92 +39433,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(48), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(47), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(654), + [anon_sym_RBRACE] = ACTIONS(748), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -40050,92 +39600,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [49] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(49), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(52), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(50), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_RBRACE] = ACTIONS(750), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -40216,92 +39767,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [50] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(50), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(658), + [anon_sym_RBRACE] = ACTIONS(752), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -40382,92 +39934,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [51] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(51), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(660), + [anon_sym_RBRACE] = ACTIONS(754), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -40548,92 +40101,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [52] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(52), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(662), + [anon_sym_RBRACE] = ACTIONS(756), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -40714,92 +40268,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [53] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(53), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(56), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(64), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(664), + [anon_sym_RBRACE] = ACTIONS(758), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -40880,92 +40435,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [54] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(54), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(58), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(55), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(666), + [anon_sym_RBRACE] = ACTIONS(760), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -41046,92 +40602,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [55] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(55), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(668), + [anon_sym_RBRACE] = ACTIONS(762), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -41212,92 +40769,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [56] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(56), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(58), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(670), + [anon_sym_RBRACE] = ACTIONS(764), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -41378,92 +40936,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [57] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(57), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(60), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(59), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(672), + [anon_sym_RBRACE] = ACTIONS(766), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -41544,92 +41103,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [58] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(58), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(674), + [anon_sym_RBRACE] = ACTIONS(768), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -41710,92 +41270,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [59] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(59), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(62), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(676), + [anon_sym_RBRACE] = ACTIONS(770), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -41876,92 +41437,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [60] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(60), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(61), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(678), + [anon_sym_RBRACE] = ACTIONS(772), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -42042,92 +41604,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(61), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(65), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(680), + [anon_sym_RBRACE] = ACTIONS(774), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -42208,92 +41771,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(62), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(68), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(682), + [anon_sym_RBRACE] = ACTIONS(776), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -42374,92 +41938,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(63), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(50), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(778), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -42540,92 +42105,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(64), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(30), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(686), + [anon_sym_RBRACE] = ACTIONS(780), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -42706,92 +42272,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(65), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(688), + [anon_sym_RBRACE] = ACTIONS(782), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -42872,92 +42439,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [66] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(66), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(85), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(79), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_RBRACE] = ACTIONS(784), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -43038,92 +42606,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(67), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(43), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(786), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -43204,92 +42773,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(68), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(788), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -43370,92 +42940,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(69), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(78), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(88), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(696), + [anon_sym_RBRACE] = ACTIONS(790), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -43536,92 +43107,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(70), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(74), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(71), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(792), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -43702,92 +43274,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(71), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(68), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(794), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -43868,92 +43441,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(72), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(73), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(796), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -44034,92 +43608,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(73), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(72), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(798), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -44200,92 +43775,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(74), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(76), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(800), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -44366,92 +43942,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [75] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(75), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(802), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -44532,92 +44109,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [76] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(76), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(34), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(804), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -44698,92 +44276,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [77] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(77), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(30), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(806), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -44864,92 +44443,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [78] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(78), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_RBRACE] = ACTIONS(808), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -45030,92 +44610,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(79), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(87), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_RBRACE] = ACTIONS(810), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -45196,92 +44777,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [80] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(80), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(41), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(91), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(812), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -45362,92 +44944,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(81), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_RBRACE] = ACTIONS(814), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -45528,258 +45111,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [82] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(82), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), - [sym_identifier] = ACTIONS(722), - [anon_sym_export] = ACTIONS(725), - [anon_sym_type] = ACTIONS(728), - [anon_sym_namespace] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(734), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_typeof] = ACTIONS(446), - [anon_sym_import] = ACTIONS(737), - [anon_sym_from] = ACTIONS(740), - [anon_sym_with] = ACTIONS(743), - [anon_sym_var] = ACTIONS(746), - [anon_sym_let] = ACTIONS(749), - [anon_sym_const] = ACTIONS(752), - [anon_sym_BANG] = ACTIONS(446), - [anon_sym_if] = ACTIONS(755), - [anon_sym_switch] = ACTIONS(758), - [anon_sym_for] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(476), - [anon_sym_await] = ACTIONS(479), - [anon_sym_of] = ACTIONS(740), - [anon_sym_while] = ACTIONS(764), - [anon_sym_do] = ACTIONS(767), - [anon_sym_try] = ACTIONS(770), - [anon_sym_break] = ACTIONS(773), - [anon_sym_continue] = ACTIONS(776), - [anon_sym_debugger] = ACTIONS(779), - [anon_sym_return] = ACTIONS(782), - [anon_sym_throw] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(788), - [anon_sym_yield] = ACTIONS(509), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_LTtemplate_GT] = ACTIONS(515), - [anon_sym_DQUOTE] = ACTIONS(518), - [anon_sym_SQUOTE] = ACTIONS(521), - [anon_sym_class] = ACTIONS(791), - [anon_sym_async] = ACTIONS(794), - [anon_sym_function] = ACTIONS(797), - [anon_sym_new] = ACTIONS(800), - [anon_sym_using] = ACTIONS(536), - [anon_sym_PLUS] = ACTIONS(446), - [anon_sym_DASH] = ACTIONS(446), - [anon_sym_SLASH] = ACTIONS(539), - [anon_sym_LT] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(446), - [anon_sym_void] = ACTIONS(446), - [anon_sym_delete] = ACTIONS(446), - [anon_sym_PLUS_PLUS] = ACTIONS(545), - [anon_sym_DASH_DASH] = ACTIONS(545), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(548), - [sym_number] = ACTIONS(551), - [sym_private_property_identifier] = ACTIONS(554), - [sym_this] = ACTIONS(551), - [sym_super] = ACTIONS(551), - [sym_true] = ACTIONS(551), - [sym_false] = ACTIONS(551), - [sym_null] = ACTIONS(551), - [sym_undefined] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(560), - [anon_sym_static] = ACTIONS(740), - [anon_sym_readonly] = ACTIONS(740), - [anon_sym_get] = ACTIONS(740), - [anon_sym_set] = ACTIONS(740), - [anon_sym_declare] = ACTIONS(803), - [anon_sym_public] = ACTIONS(740), - [anon_sym_private] = ACTIONS(740), - [anon_sym_protected] = ACTIONS(740), - [anon_sym_override] = ACTIONS(740), - [anon_sym_module] = ACTIONS(806), - [anon_sym_any] = ACTIONS(740), - [anon_sym_number] = ACTIONS(740), - [anon_sym_boolean] = ACTIONS(740), - [anon_sym_string] = ACTIONS(740), - [anon_sym_symbol] = ACTIONS(740), - [anon_sym_object] = ACTIONS(740), - [anon_sym_property] = ACTIONS(740), - [anon_sym_signal] = ACTIONS(740), - [anon_sym_on] = ACTIONS(740), - [anon_sym_required] = ACTIONS(740), - [anon_sym_component] = ACTIONS(740), - [anon_sym_abstract] = ACTIONS(809), - [anon_sym_interface] = ACTIONS(812), - [anon_sym_enum] = ACTIONS(815), - [sym_html_comment] = ACTIONS(5), - }, - [83] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(83), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(81), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(78), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(818), + [anon_sym_RBRACE] = ACTIONS(816), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -45859,93 +45277,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(84), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [83] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(83), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(820), + [anon_sym_RBRACE] = ACTIONS(818), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -46025,93 +45444,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, - [85] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(85), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [84] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(84), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(83), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(822), + [anon_sym_RBRACE] = ACTIONS(820), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -46191,93 +45611,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(86), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(77), + [85] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(85), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_RBRACE] = ACTIONS(822), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -46357,93 +45778,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, - [87] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(87), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [86] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(86), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(85), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), [anon_sym_namespace] = ACTIONS(584), [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [87] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(87), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(52), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_RBRACE] = ACTIONS(826), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(153), [anon_sym_from] = ACTIONS(588), @@ -46524,86 +46113,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [88] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(88), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -46690,86 +46280,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [89] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(89), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(81), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -46856,86 +46447,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [90] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(90), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(24), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -47022,86 +46614,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [91] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(91), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(82), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(32), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -47188,86 +46781,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [92] = { - [sym_export_statement] = STATE(1750), - [sym_declaration] = STATE(1750), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1750), - [sym_expression_statement] = STATE(1750), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1750), - [sym_if_statement] = STATE(1750), - [sym_switch_statement] = STATE(1750), - [sym_for_statement] = STATE(1750), - [sym_for_in_statement] = STATE(1750), - [sym_while_statement] = STATE(1750), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1750), - [sym_with_statement] = STATE(1750), - [sym_break_statement] = STATE(1750), - [sym_continue_statement] = STATE(1750), - [sym_debugger_statement] = STATE(1750), - [sym_return_statement] = STATE(1750), - [sym_throw_statement] = STATE(1750), - [sym_empty_statement] = STATE(1750), - [sym_labeled_statement] = STATE(1750), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1604), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(92), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [aux_sym_statement_block_repeat1] = STATE(91), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [aux_sym_statement_block_repeat1] = STATE(21), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -47354,85 +46948,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_export_statement] = STATE(1080), - [sym_declaration] = STATE(1080), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1080), - [sym_expression_statement] = STATE(1080), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_statement_block] = STATE(1080), - [sym_if_statement] = STATE(1080), - [sym_switch_statement] = STATE(1080), - [sym_for_statement] = STATE(1080), - [sym_for_in_statement] = STATE(1080), - [sym_while_statement] = STATE(1080), - [sym_do_statement] = STATE(1080), - [sym_try_statement] = STATE(1080), - [sym_with_statement] = STATE(1080), - [sym_break_statement] = STATE(1080), - [sym_continue_statement] = STATE(1080), - [sym_debugger_statement] = STATE(1080), - [sym_return_statement] = STATE(1080), - [sym_throw_statement] = STATE(1080), - [sym_empty_statement] = STATE(1080), - [sym_labeled_statement] = STATE(1080), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7559), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(7650), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), [sym_comment] = STATE(93), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5661), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), [sym_identifier] = ACTIONS(838), [anon_sym_export] = ACTIONS(840), [anon_sym_type] = ACTIONS(842), @@ -47518,85 +47113,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_export_statement] = STATE(8254), - [sym_declaration] = STATE(8254), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(8254), - [sym_expression_statement] = STATE(8254), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(8254), - [sym_if_statement] = STATE(8254), - [sym_switch_statement] = STATE(8254), - [sym_for_statement] = STATE(8254), - [sym_for_in_statement] = STATE(8254), - [sym_while_statement] = STATE(8254), - [sym_do_statement] = STATE(8254), - [sym_try_statement] = STATE(8254), - [sym_with_statement] = STATE(8254), - [sym_break_statement] = STATE(8254), - [sym_continue_statement] = STATE(8254), - [sym_debugger_statement] = STATE(8254), - [sym_return_statement] = STATE(8254), - [sym_throw_statement] = STATE(8254), - [sym_empty_statement] = STATE(8254), - [sym_labeled_statement] = STATE(8254), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1357), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), [sym_comment] = STATE(94), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), + [sym_identifier] = ACTIONS(353), + [anon_sym_export] = ACTIONS(355), + [anon_sym_type] = ACTIONS(359), + [anon_sym_namespace] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(365), + [anon_sym_from] = ACTIONS(367), + [anon_sym_with] = ACTIONS(369), + [anon_sym_var] = ACTIONS(371), + [anon_sym_let] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_for] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(367), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_try] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_debugger] = ACTIONS(393), + [anon_sym_return] = ACTIONS(395), + [anon_sym_throw] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(403), + [anon_sym_async] = ACTIONS(405), + [anon_sym_function] = ACTIONS(407), + [anon_sym_new] = ACTIONS(409), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(367), + [anon_sym_readonly] = ACTIONS(367), + [anon_sym_get] = ACTIONS(367), + [anon_sym_set] = ACTIONS(367), + [anon_sym_declare] = ACTIONS(413), + [anon_sym_public] = ACTIONS(367), + [anon_sym_private] = ACTIONS(367), + [anon_sym_protected] = ACTIONS(367), + [anon_sym_override] = ACTIONS(367), + [anon_sym_module] = ACTIONS(415), + [anon_sym_any] = ACTIONS(367), + [anon_sym_number] = ACTIONS(367), + [anon_sym_boolean] = ACTIONS(367), + [anon_sym_string] = ACTIONS(367), + [anon_sym_symbol] = ACTIONS(367), + [anon_sym_object] = ACTIONS(367), + [anon_sym_property] = ACTIONS(367), + [anon_sym_signal] = ACTIONS(367), + [anon_sym_on] = ACTIONS(367), + [anon_sym_required] = ACTIONS(367), + [anon_sym_component] = ACTIONS(367), + [anon_sym_abstract] = ACTIONS(417), + [anon_sym_interface] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(421), + [sym_html_comment] = ACTIONS(5), + }, + [95] = { + [sym_export_statement] = STATE(4080), + [sym_declaration] = STATE(4080), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(4080), + [sym_statement] = STATE(4201), + [sym_expression_statement] = STATE(4080), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_statement_block] = STATE(4080), + [sym_if_statement] = STATE(4080), + [sym_switch_statement] = STATE(4080), + [sym_for_statement] = STATE(4080), + [sym_for_in_statement] = STATE(4080), + [sym_while_statement] = STATE(4080), + [sym_do_statement] = STATE(4080), + [sym_try_statement] = STATE(4080), + [sym_with_statement] = STATE(4080), + [sym_break_statement] = STATE(4080), + [sym_continue_statement] = STATE(4080), + [sym_debugger_statement] = STATE(4080), + [sym_return_statement] = STATE(4080), + [sym_throw_statement] = STATE(4080), + [sym_empty_statement] = STATE(4080), + [sym_labeled_statement] = STATE(4080), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(4079), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(4079), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(4079), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), + [sym_comment] = STATE(95), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(4079), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(1767), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5365), [sym_identifier] = ACTIONS(902), [anon_sym_export] = ACTIONS(904), [anon_sym_type] = ACTIONS(906), @@ -47681,86 +47442,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(964), [sym_html_comment] = ACTIONS(5), }, - [95] = { - [sym_export_statement] = STATE(4217), - [sym_declaration] = STATE(4217), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4217), - [sym_expression_statement] = STATE(4217), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_statement_block] = STATE(4217), - [sym_if_statement] = STATE(4217), - [sym_switch_statement] = STATE(4217), - [sym_for_statement] = STATE(4217), - [sym_for_in_statement] = STATE(4217), - [sym_while_statement] = STATE(4217), - [sym_do_statement] = STATE(4217), - [sym_try_statement] = STATE(4217), - [sym_with_statement] = STATE(4217), - [sym_break_statement] = STATE(4217), - [sym_continue_statement] = STATE(4217), - [sym_debugger_statement] = STATE(4217), - [sym_return_statement] = STATE(4217), - [sym_throw_statement] = STATE(4217), - [sym_empty_statement] = STATE(4217), - [sym_labeled_statement] = STATE(4217), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7500), - [sym_string] = STATE(3749), - [sym_comment] = STATE(95), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5737), + [96] = { + [sym_export_statement] = STATE(1069), + [sym_declaration] = STATE(1069), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1069), + [sym_statement] = STATE(1202), + [sym_expression_statement] = STATE(1069), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_statement_block] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_for_in_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_with_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_debugger_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_empty_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(3548), + [sym_comment] = STATE(96), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5489), [sym_identifier] = ACTIONS(966), [anon_sym_export] = ACTIONS(968), [anon_sym_type] = ACTIONS(970), @@ -47845,86 +47607,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_export_statement] = STATE(4415), - [sym_declaration] = STATE(4415), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4415), - [sym_expression_statement] = STATE(4415), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_statement_block] = STATE(4415), - [sym_if_statement] = STATE(4415), - [sym_switch_statement] = STATE(4415), - [sym_for_statement] = STATE(4415), - [sym_for_in_statement] = STATE(4415), - [sym_while_statement] = STATE(4415), - [sym_do_statement] = STATE(4415), - [sym_try_statement] = STATE(4415), - [sym_with_statement] = STATE(4415), - [sym_break_statement] = STATE(4415), - [sym_continue_statement] = STATE(4415), - [sym_debugger_statement] = STATE(4415), - [sym_return_statement] = STATE(4415), - [sym_throw_statement] = STATE(4415), - [sym_empty_statement] = STATE(4415), - [sym_labeled_statement] = STATE(4415), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4255), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4255), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4255), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), - [sym_comment] = STATE(96), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4255), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(1909), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5725), + [97] = { + [sym_export_statement] = STATE(1506), + [sym_declaration] = STATE(1506), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1506), + [sym_statement] = STATE(1406), + [sym_expression_statement] = STATE(1506), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_statement_block] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_switch_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_for_in_statement] = STATE(1506), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_with_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_debugger_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_statement] = STATE(1506), + [sym_empty_statement] = STATE(1506), + [sym_labeled_statement] = STATE(1506), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7815), + [sym_string] = STATE(3548), + [sym_comment] = STATE(97), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5336), [sym_identifier] = ACTIONS(1030), [anon_sym_export] = ACTIONS(1032), [anon_sym_type] = ACTIONS(1034), @@ -48009,123 +47772,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_export_statement] = STATE(4431), - [sym_declaration] = STATE(4434), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4442), - [sym_expression_statement] = STATE(4443), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_statement_block] = STATE(4444), - [sym_if_statement] = STATE(4445), - [sym_switch_statement] = STATE(4446), - [sym_for_statement] = STATE(4448), - [sym_for_in_statement] = STATE(4407), - [sym_while_statement] = STATE(4406), - [sym_do_statement] = STATE(4377), - [sym_try_statement] = STATE(4357), - [sym_with_statement] = STATE(4356), - [sym_break_statement] = STATE(4347), - [sym_continue_statement] = STATE(4345), - [sym_debugger_statement] = STATE(4342), - [sym_return_statement] = STATE(4340), - [sym_throw_statement] = STATE(4295), - [sym_empty_statement] = STATE(4249), - [sym_labeled_statement] = STATE(4246), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4255), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4255), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4255), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), - [sym_comment] = STATE(97), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4255), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(1909), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5725), - [sym_identifier] = ACTIONS(1030), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1034), - [anon_sym_namespace] = ACTIONS(1036), - [anon_sym_LBRACE] = ACTIONS(1038), + [98] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(7634), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(98), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(1040), - [anon_sym_from] = ACTIONS(1042), - [anon_sym_with] = ACTIONS(1044), - [anon_sym_var] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(1048), - [anon_sym_const] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), - [anon_sym_for] = ACTIONS(1056), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1042), - [anon_sym_while] = ACTIONS(1058), - [anon_sym_do] = ACTIONS(1060), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1066), - [anon_sym_debugger] = ACTIONS(1068), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_throw] = ACTIONS(1072), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1076), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(1080), - [anon_sym_new] = ACTIONS(1082), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -48147,276 +47911,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1042), - [anon_sym_readonly] = ACTIONS(1042), - [anon_sym_get] = ACTIONS(1042), - [anon_sym_set] = ACTIONS(1042), - [anon_sym_declare] = ACTIONS(1084), - [anon_sym_public] = ACTIONS(1042), - [anon_sym_private] = ACTIONS(1042), - [anon_sym_protected] = ACTIONS(1042), - [anon_sym_override] = ACTIONS(1042), - [anon_sym_module] = ACTIONS(1086), - [anon_sym_any] = ACTIONS(1042), - [anon_sym_number] = ACTIONS(1042), - [anon_sym_boolean] = ACTIONS(1042), - [anon_sym_string] = ACTIONS(1042), - [anon_sym_symbol] = ACTIONS(1042), - [anon_sym_object] = ACTIONS(1042), - [anon_sym_property] = ACTIONS(1042), - [anon_sym_signal] = ACTIONS(1042), - [anon_sym_on] = ACTIONS(1042), - [anon_sym_required] = ACTIONS(1042), - [anon_sym_component] = ACTIONS(1042), - [anon_sym_abstract] = ACTIONS(1088), - [anon_sym_interface] = ACTIONS(1090), - [anon_sym_enum] = ACTIONS(1092), - [sym_html_comment] = ACTIONS(5), - }, - [98] = { - [sym_export_statement] = STATE(1443), - [sym_declaration] = STATE(1442), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1429), - [sym_expression_statement] = STATE(1420), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1418), - [sym_if_statement] = STATE(1417), - [sym_switch_statement] = STATE(1416), - [sym_for_statement] = STATE(1414), - [sym_for_in_statement] = STATE(1463), - [sym_while_statement] = STATE(1460), - [sym_do_statement] = STATE(1458), - [sym_try_statement] = STATE(1455), - [sym_with_statement] = STATE(1454), - [sym_break_statement] = STATE(1453), - [sym_continue_statement] = STATE(1445), - [sym_debugger_statement] = STATE(1441), - [sym_return_statement] = STATE(1439), - [sym_throw_statement] = STATE(1438), - [sym_empty_statement] = STATE(1432), - [sym_labeled_statement] = STATE(1431), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), - [sym_comment] = STATE(98), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), - [sym_identifier] = ACTIONS(353), - [anon_sym_export] = ACTIONS(355), - [anon_sym_type] = ACTIONS(359), - [anon_sym_namespace] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(365), - [anon_sym_from] = ACTIONS(367), - [anon_sym_with] = ACTIONS(369), - [anon_sym_var] = ACTIONS(371), - [anon_sym_let] = ACTIONS(373), - [anon_sym_const] = ACTIONS(375), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(377), - [anon_sym_switch] = ACTIONS(379), - [anon_sym_for] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(367), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_try] = ACTIONS(387), - [anon_sym_break] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_debugger] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_throw] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(403), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(407), - [anon_sym_new] = ACTIONS(409), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(367), - [anon_sym_readonly] = ACTIONS(367), - [anon_sym_get] = ACTIONS(367), - [anon_sym_set] = ACTIONS(367), - [anon_sym_declare] = ACTIONS(413), - [anon_sym_public] = ACTIONS(367), - [anon_sym_private] = ACTIONS(367), - [anon_sym_protected] = ACTIONS(367), - [anon_sym_override] = ACTIONS(367), - [anon_sym_module] = ACTIONS(415), - [anon_sym_any] = ACTIONS(367), - [anon_sym_number] = ACTIONS(367), - [anon_sym_boolean] = ACTIONS(367), - [anon_sym_string] = ACTIONS(367), - [anon_sym_symbol] = ACTIONS(367), - [anon_sym_object] = ACTIONS(367), - [anon_sym_property] = ACTIONS(367), - [anon_sym_signal] = ACTIONS(367), - [anon_sym_on] = ACTIONS(367), - [anon_sym_required] = ACTIONS(367), - [anon_sym_component] = ACTIONS(367), - [anon_sym_abstract] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(421), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_export_statement] = STATE(4389), - [sym_declaration] = STATE(4389), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4389), - [sym_expression_statement] = STATE(4389), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_statement_block] = STATE(4389), - [sym_if_statement] = STATE(4389), - [sym_switch_statement] = STATE(4389), - [sym_for_statement] = STATE(4389), - [sym_for_in_statement] = STATE(4389), - [sym_while_statement] = STATE(4389), - [sym_do_statement] = STATE(4389), - [sym_try_statement] = STATE(4389), - [sym_with_statement] = STATE(4389), - [sym_break_statement] = STATE(4389), - [sym_continue_statement] = STATE(4389), - [sym_debugger_statement] = STATE(4389), - [sym_return_statement] = STATE(4389), - [sym_throw_statement] = STATE(4389), - [sym_empty_statement] = STATE(4389), - [sym_labeled_statement] = STATE(4389), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4255), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4255), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4255), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1506), + [sym_declaration] = STATE(1506), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1506), + [sym_statement] = STATE(1520), + [sym_expression_statement] = STATE(1506), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_statement_block] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_switch_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_for_in_statement] = STATE(1506), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_with_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_debugger_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_statement] = STATE(1506), + [sym_empty_statement] = STATE(1506), + [sym_labeled_statement] = STATE(1506), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7815), + [sym_string] = STATE(3548), [sym_comment] = STATE(99), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4255), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(1909), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5725), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5336), [sym_identifier] = ACTIONS(1030), [anon_sym_export] = ACTIONS(1032), [anon_sym_type] = ACTIONS(1034), @@ -48502,85 +48103,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_export_statement] = STATE(1506), - [sym_declaration] = STATE(1507), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1508), - [sym_expression_statement] = STATE(1512), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_statement_block] = STATE(1515), - [sym_if_statement] = STATE(1516), - [sym_switch_statement] = STATE(1517), - [sym_for_statement] = STATE(1526), - [sym_for_in_statement] = STATE(1530), - [sym_while_statement] = STATE(1538), - [sym_do_statement] = STATE(1548), - [sym_try_statement] = STATE(1549), - [sym_with_statement] = STATE(1550), - [sym_break_statement] = STATE(1551), - [sym_continue_statement] = STATE(1556), - [sym_debugger_statement] = STATE(1558), - [sym_return_statement] = STATE(1559), - [sym_throw_statement] = STATE(1562), - [sym_empty_statement] = STATE(1563), - [sym_labeled_statement] = STATE(1564), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8194), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(3971), + [sym_declaration] = STATE(3971), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(3971), + [sym_statement] = STATE(4035), + [sym_expression_statement] = STATE(3971), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_statement_block] = STATE(3971), + [sym_if_statement] = STATE(3971), + [sym_switch_statement] = STATE(3971), + [sym_for_statement] = STATE(3971), + [sym_for_in_statement] = STATE(3971), + [sym_while_statement] = STATE(3971), + [sym_do_statement] = STATE(3971), + [sym_try_statement] = STATE(3971), + [sym_with_statement] = STATE(3971), + [sym_break_statement] = STATE(3971), + [sym_continue_statement] = STATE(3971), + [sym_debugger_statement] = STATE(3971), + [sym_return_statement] = STATE(3971), + [sym_throw_statement] = STATE(3971), + [sym_empty_statement] = STATE(3971), + [sym_labeled_statement] = STATE(3971), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(3548), [sym_comment] = STATE(100), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5711), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5310), [sym_identifier] = ACTIONS(1094), [anon_sym_export] = ACTIONS(1096), [anon_sym_type] = ACTIONS(1098), @@ -48666,122 +48268,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_export_statement] = STATE(8405), - [sym_declaration] = STATE(8405), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(8405), - [sym_expression_statement] = STATE(8405), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(8405), - [sym_if_statement] = STATE(8405), - [sym_switch_statement] = STATE(8405), - [sym_for_statement] = STATE(8405), - [sym_for_in_statement] = STATE(8405), - [sym_while_statement] = STATE(8405), - [sym_do_statement] = STATE(8405), - [sym_try_statement] = STATE(8405), - [sym_with_statement] = STATE(8405), - [sym_break_statement] = STATE(8405), - [sym_continue_statement] = STATE(8405), - [sym_debugger_statement] = STATE(8405), - [sym_return_statement] = STATE(8405), - [sym_throw_statement] = STATE(8405), - [sym_empty_statement] = STATE(8405), - [sym_labeled_statement] = STATE(8405), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(3971), + [sym_declaration] = STATE(3971), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(3971), + [sym_statement] = STATE(3870), + [sym_expression_statement] = STATE(3971), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_statement_block] = STATE(3971), + [sym_if_statement] = STATE(3971), + [sym_switch_statement] = STATE(3971), + [sym_for_statement] = STATE(3971), + [sym_for_in_statement] = STATE(3971), + [sym_while_statement] = STATE(3971), + [sym_do_statement] = STATE(3971), + [sym_try_statement] = STATE(3971), + [sym_with_statement] = STATE(3971), + [sym_break_statement] = STATE(3971), + [sym_continue_statement] = STATE(3971), + [sym_debugger_statement] = STATE(3971), + [sym_return_statement] = STATE(3971), + [sym_throw_statement] = STATE(3971), + [sym_empty_statement] = STATE(3971), + [sym_labeled_statement] = STATE(3971), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(3548), [sym_comment] = STATE(101), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5310), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(912), - [anon_sym_from] = ACTIONS(914), - [anon_sym_with] = ACTIONS(916), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(922), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_for] = ACTIONS(928), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(914), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(940), - [anon_sym_return] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -48803,149 +48406,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_property] = ACTIONS(914), - [anon_sym_signal] = ACTIONS(914), - [anon_sym_on] = ACTIONS(914), - [anon_sym_required] = ACTIONS(914), - [anon_sym_component] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_export_statement] = STATE(7839), - [sym_declaration] = STATE(7839), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(7839), - [sym_expression_statement] = STATE(7839), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(7839), - [sym_if_statement] = STATE(7839), - [sym_switch_statement] = STATE(7839), - [sym_for_statement] = STATE(7839), - [sym_for_in_statement] = STATE(7839), - [sym_while_statement] = STATE(7839), - [sym_do_statement] = STATE(7839), - [sym_try_statement] = STATE(7839), - [sym_with_statement] = STATE(7839), - [sym_break_statement] = STATE(7839), - [sym_continue_statement] = STATE(7839), - [sym_debugger_statement] = STATE(7839), - [sym_return_statement] = STATE(7839), - [sym_throw_statement] = STATE(7839), - [sym_empty_statement] = STATE(7839), - [sym_labeled_statement] = STATE(7839), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1069), + [sym_declaration] = STATE(1069), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1069), + [sym_statement] = STATE(1081), + [sym_expression_statement] = STATE(1069), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_statement_block] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_for_in_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_with_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_debugger_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_empty_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(3548), [sym_comment] = STATE(102), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(912), - [anon_sym_from] = ACTIONS(914), - [anon_sym_with] = ACTIONS(916), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(922), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_for] = ACTIONS(928), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(914), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(940), - [anon_sym_return] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -48967,112 +48571,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_property] = ACTIONS(914), - [anon_sym_signal] = ACTIONS(914), - [anon_sym_on] = ACTIONS(914), - [anon_sym_required] = ACTIONS(914), - [anon_sym_component] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, [103] = { - [sym_export_statement] = STATE(7160), - [sym_declaration] = STATE(7160), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(7160), - [sym_expression_statement] = STATE(7160), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(7160), - [sym_if_statement] = STATE(7160), - [sym_switch_statement] = STATE(7160), - [sym_for_statement] = STATE(7160), - [sym_for_in_statement] = STATE(7160), - [sym_while_statement] = STATE(7160), - [sym_do_statement] = STATE(7160), - [sym_try_statement] = STATE(7160), - [sym_with_statement] = STATE(7160), - [sym_break_statement] = STATE(7160), - [sym_continue_statement] = STATE(7160), - [sym_debugger_statement] = STATE(7160), - [sym_return_statement] = STATE(7160), - [sym_throw_statement] = STATE(7160), - [sym_empty_statement] = STATE(7160), - [sym_labeled_statement] = STATE(7160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(4080), + [sym_declaration] = STATE(4080), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(4080), + [sym_statement] = STATE(4167), + [sym_expression_statement] = STATE(4080), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_statement_block] = STATE(4080), + [sym_if_statement] = STATE(4080), + [sym_switch_statement] = STATE(4080), + [sym_for_statement] = STATE(4080), + [sym_for_in_statement] = STATE(4080), + [sym_while_statement] = STATE(4080), + [sym_do_statement] = STATE(4080), + [sym_try_statement] = STATE(4080), + [sym_with_statement] = STATE(4080), + [sym_break_statement] = STATE(4080), + [sym_continue_statement] = STATE(4080), + [sym_debugger_statement] = STATE(4080), + [sym_return_statement] = STATE(4080), + [sym_throw_statement] = STATE(4080), + [sym_empty_statement] = STATE(4080), + [sym_labeled_statement] = STATE(4080), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(4079), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(4079), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(4079), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(103), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(4079), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(1767), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5365), [sym_identifier] = ACTIONS(902), [anon_sym_export] = ACTIONS(904), [anon_sym_type] = ACTIONS(906), @@ -49158,85 +48763,746 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [104] = { - [sym_export_statement] = STATE(4348), - [sym_declaration] = STATE(4348), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4348), - [sym_expression_statement] = STATE(4348), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_statement_block] = STATE(4348), - [sym_if_statement] = STATE(4348), - [sym_switch_statement] = STATE(4348), - [sym_for_statement] = STATE(4348), - [sym_for_in_statement] = STATE(4348), - [sym_while_statement] = STATE(4348), - [sym_do_statement] = STATE(4348), - [sym_try_statement] = STATE(4348), - [sym_with_statement] = STATE(4348), - [sym_break_statement] = STATE(4348), - [sym_continue_statement] = STATE(4348), - [sym_debugger_statement] = STATE(4348), - [sym_return_statement] = STATE(4348), - [sym_throw_statement] = STATE(4348), - [sym_empty_statement] = STATE(4348), - [sym_labeled_statement] = STATE(4348), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4255), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4255), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4255), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(8078), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), [sym_comment] = STATE(104), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4255), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(1909), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5725), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [105] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1606), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(105), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [106] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1655), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(106), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [107] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1600), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(107), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), + [sym_html_comment] = ACTIONS(5), + }, + [108] = { + [sym_export_statement] = STATE(1506), + [sym_declaration] = STATE(1506), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1506), + [sym_statement] = STATE(1422), + [sym_expression_statement] = STATE(1506), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_statement_block] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_switch_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_for_in_statement] = STATE(1506), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_with_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_debugger_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_statement] = STATE(1506), + [sym_empty_statement] = STATE(1506), + [sym_labeled_statement] = STATE(1506), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7815), + [sym_string] = STATE(3548), + [sym_comment] = STATE(108), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5336), [sym_identifier] = ACTIONS(1030), [anon_sym_export] = ACTIONS(1032), [anon_sym_type] = ACTIONS(1034), @@ -49321,123 +49587,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_export_statement] = STATE(4112), - [sym_declaration] = STATE(4112), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4112), - [sym_expression_statement] = STATE(4112), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_statement_block] = STATE(4112), - [sym_if_statement] = STATE(4112), - [sym_switch_statement] = STATE(4112), - [sym_for_statement] = STATE(4112), - [sym_for_in_statement] = STATE(4112), - [sym_while_statement] = STATE(4112), - [sym_do_statement] = STATE(4112), - [sym_try_statement] = STATE(4112), - [sym_with_statement] = STATE(4112), - [sym_break_statement] = STATE(4112), - [sym_continue_statement] = STATE(4112), - [sym_debugger_statement] = STATE(4112), - [sym_return_statement] = STATE(4112), - [sym_throw_statement] = STATE(4112), - [sym_empty_statement] = STATE(4112), - [sym_labeled_statement] = STATE(4112), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7500), - [sym_string] = STATE(3749), - [sym_comment] = STATE(105), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5737), - [sym_identifier] = ACTIONS(966), - [anon_sym_export] = ACTIONS(968), - [anon_sym_type] = ACTIONS(970), - [anon_sym_namespace] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), + [109] = { + [sym_export_statement] = STATE(3971), + [sym_declaration] = STATE(3971), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(3971), + [sym_statement] = STATE(3915), + [sym_expression_statement] = STATE(3971), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_statement_block] = STATE(3971), + [sym_if_statement] = STATE(3971), + [sym_switch_statement] = STATE(3971), + [sym_for_statement] = STATE(3971), + [sym_for_in_statement] = STATE(3971), + [sym_while_statement] = STATE(3971), + [sym_do_statement] = STATE(3971), + [sym_try_statement] = STATE(3971), + [sym_with_statement] = STATE(3971), + [sym_break_statement] = STATE(3971), + [sym_continue_statement] = STATE(3971), + [sym_debugger_statement] = STATE(3971), + [sym_return_statement] = STATE(3971), + [sym_throw_statement] = STATE(3971), + [sym_empty_statement] = STATE(3971), + [sym_labeled_statement] = STATE(3971), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(3548), + [sym_comment] = STATE(109), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5310), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(976), - [anon_sym_from] = ACTIONS(978), - [anon_sym_with] = ACTIONS(980), - [anon_sym_var] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_const] = ACTIONS(986), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_for] = ACTIONS(992), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(978), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(996), - [anon_sym_try] = ACTIONS(998), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_debugger] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_throw] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1012), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(1016), - [anon_sym_new] = ACTIONS(1018), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -49459,112 +49726,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(978), - [anon_sym_readonly] = ACTIONS(978), - [anon_sym_get] = ACTIONS(978), - [anon_sym_set] = ACTIONS(978), - [anon_sym_declare] = ACTIONS(1020), - [anon_sym_public] = ACTIONS(978), - [anon_sym_private] = ACTIONS(978), - [anon_sym_protected] = ACTIONS(978), - [anon_sym_override] = ACTIONS(978), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(978), - [anon_sym_number] = ACTIONS(978), - [anon_sym_boolean] = ACTIONS(978), - [anon_sym_string] = ACTIONS(978), - [anon_sym_symbol] = ACTIONS(978), - [anon_sym_object] = ACTIONS(978), - [anon_sym_property] = ACTIONS(978), - [anon_sym_signal] = ACTIONS(978), - [anon_sym_on] = ACTIONS(978), - [anon_sym_required] = ACTIONS(978), - [anon_sym_component] = ACTIONS(978), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_interface] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_export_statement] = STATE(4222), - [sym_declaration] = STATE(4223), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4224), - [sym_expression_statement] = STATE(4225), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_statement_block] = STATE(4226), - [sym_if_statement] = STATE(4227), - [sym_switch_statement] = STATE(4228), - [sym_for_statement] = STATE(4229), - [sym_for_in_statement] = STATE(4230), - [sym_while_statement] = STATE(4231), - [sym_do_statement] = STATE(4232), - [sym_try_statement] = STATE(4233), - [sym_with_statement] = STATE(4045), - [sym_break_statement] = STATE(4194), - [sym_continue_statement] = STATE(4195), - [sym_debugger_statement] = STATE(4196), - [sym_return_statement] = STATE(4197), - [sym_throw_statement] = STATE(4199), - [sym_empty_statement] = STATE(4200), - [sym_labeled_statement] = STATE(4201), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7500), - [sym_string] = STATE(3749), - [sym_comment] = STATE(106), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5737), + [110] = { + [sym_export_statement] = STATE(1069), + [sym_declaration] = STATE(1069), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1069), + [sym_statement] = STATE(1189), + [sym_expression_statement] = STATE(1069), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_statement_block] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_for_in_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_with_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_debugger_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_empty_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(3548), + [sym_comment] = STATE(110), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5489), [sym_identifier] = ACTIONS(966), [anon_sym_export] = ACTIONS(968), [anon_sym_type] = ACTIONS(970), @@ -49649,414 +49917,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_export_statement] = STATE(1061), - [sym_declaration] = STATE(1061), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1061), - [sym_expression_statement] = STATE(1061), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_statement_block] = STATE(1061), - [sym_if_statement] = STATE(1061), - [sym_switch_statement] = STATE(1061), - [sym_for_statement] = STATE(1061), - [sym_for_in_statement] = STATE(1061), - [sym_while_statement] = STATE(1061), - [sym_do_statement] = STATE(1061), - [sym_try_statement] = STATE(1061), - [sym_with_statement] = STATE(1061), - [sym_break_statement] = STATE(1061), - [sym_continue_statement] = STATE(1061), - [sym_debugger_statement] = STATE(1061), - [sym_return_statement] = STATE(1061), - [sym_throw_statement] = STATE(1061), - [sym_empty_statement] = STATE(1061), - [sym_labeled_statement] = STATE(1061), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7559), - [sym_string] = STATE(3749), - [sym_comment] = STATE(107), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5661), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(848), - [anon_sym_from] = ACTIONS(850), - [anon_sym_with] = ACTIONS(852), - [anon_sym_var] = ACTIONS(854), - [anon_sym_let] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(850), - [anon_sym_while] = ACTIONS(866), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_break] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(878), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(890), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), - [anon_sym_declare] = ACTIONS(892), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(894), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), - [anon_sym_property] = ACTIONS(850), - [anon_sym_signal] = ACTIONS(850), - [anon_sym_on] = ACTIONS(850), - [anon_sym_required] = ACTIONS(850), - [anon_sym_component] = ACTIONS(850), - [anon_sym_abstract] = ACTIONS(896), - [anon_sym_interface] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(900), - [sym_html_comment] = ACTIONS(5), - }, - [108] = { - [sym_export_statement] = STATE(8453), - [sym_declaration] = STATE(8453), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(8453), - [sym_expression_statement] = STATE(8453), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(8453), - [sym_if_statement] = STATE(8453), - [sym_switch_statement] = STATE(8453), - [sym_for_statement] = STATE(8453), - [sym_for_in_statement] = STATE(8453), - [sym_while_statement] = STATE(8453), - [sym_do_statement] = STATE(8453), - [sym_try_statement] = STATE(8453), - [sym_with_statement] = STATE(8453), - [sym_break_statement] = STATE(8453), - [sym_continue_statement] = STATE(8453), - [sym_debugger_statement] = STATE(8453), - [sym_return_statement] = STATE(8453), - [sym_throw_statement] = STATE(8453), - [sym_empty_statement] = STATE(8453), - [sym_labeled_statement] = STATE(8453), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(108), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(912), - [anon_sym_from] = ACTIONS(914), - [anon_sym_with] = ACTIONS(916), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_for] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(914), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(940), - [anon_sym_return] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_property] = ACTIONS(914), - [anon_sym_signal] = ACTIONS(914), - [anon_sym_on] = ACTIONS(914), - [anon_sym_required] = ACTIONS(914), - [anon_sym_component] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), - [sym_html_comment] = ACTIONS(5), - }, - [109] = { - [sym_export_statement] = STATE(1566), - [sym_declaration] = STATE(1566), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1566), - [sym_expression_statement] = STATE(1566), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_statement_block] = STATE(1566), - [sym_if_statement] = STATE(1566), - [sym_switch_statement] = STATE(1566), - [sym_for_statement] = STATE(1566), - [sym_for_in_statement] = STATE(1566), - [sym_while_statement] = STATE(1566), - [sym_do_statement] = STATE(1566), - [sym_try_statement] = STATE(1566), - [sym_with_statement] = STATE(1566), - [sym_break_statement] = STATE(1566), - [sym_continue_statement] = STATE(1566), - [sym_debugger_statement] = STATE(1566), - [sym_return_statement] = STATE(1566), - [sym_throw_statement] = STATE(1566), - [sym_empty_statement] = STATE(1566), - [sym_labeled_statement] = STATE(1566), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8194), - [sym_string] = STATE(3749), - [sym_comment] = STATE(109), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5711), + [111] = { + [sym_export_statement] = STATE(3971), + [sym_declaration] = STATE(3971), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(3971), + [sym_statement] = STATE(3929), + [sym_expression_statement] = STATE(3971), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_statement_block] = STATE(3971), + [sym_if_statement] = STATE(3971), + [sym_switch_statement] = STATE(3971), + [sym_for_statement] = STATE(3971), + [sym_for_in_statement] = STATE(3971), + [sym_while_statement] = STATE(3971), + [sym_do_statement] = STATE(3971), + [sym_try_statement] = STATE(3971), + [sym_with_statement] = STATE(3971), + [sym_break_statement] = STATE(3971), + [sym_continue_statement] = STATE(3971), + [sym_debugger_statement] = STATE(3971), + [sym_return_statement] = STATE(3971), + [sym_throw_statement] = STATE(3971), + [sym_empty_statement] = STATE(3971), + [sym_labeled_statement] = STATE(3971), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(3548), + [sym_comment] = STATE(111), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5310), [sym_identifier] = ACTIONS(1094), [anon_sym_export] = ACTIONS(1096), [anon_sym_type] = ACTIONS(1098), @@ -50141,86 +50082,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1156), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_export_statement] = STATE(1318), - [sym_declaration] = STATE(1318), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1318), - [sym_expression_statement] = STATE(1318), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1318), - [sym_if_statement] = STATE(1318), - [sym_switch_statement] = STATE(1318), - [sym_for_statement] = STATE(1318), - [sym_for_in_statement] = STATE(1318), - [sym_while_statement] = STATE(1318), - [sym_do_statement] = STATE(1318), - [sym_try_statement] = STATE(1318), - [sym_with_statement] = STATE(1318), - [sym_break_statement] = STATE(1318), - [sym_continue_statement] = STATE(1318), - [sym_debugger_statement] = STATE(1318), - [sym_return_statement] = STATE(1318), - [sym_throw_statement] = STATE(1318), - [sym_empty_statement] = STATE(1318), - [sym_labeled_statement] = STATE(1318), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), - [sym_comment] = STATE(110), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), + [112] = { + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1317), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), + [sym_comment] = STATE(112), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), [sym_identifier] = ACTIONS(353), [anon_sym_export] = ACTIONS(355), [anon_sym_type] = ACTIONS(359), @@ -50305,123 +50247,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(421), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_export_statement] = STATE(8335), - [sym_declaration] = STATE(8335), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(8335), - [sym_expression_statement] = STATE(8335), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(8335), - [sym_if_statement] = STATE(8335), - [sym_switch_statement] = STATE(8335), - [sym_for_statement] = STATE(8335), - [sym_for_in_statement] = STATE(8335), - [sym_while_statement] = STATE(8335), - [sym_do_statement] = STATE(8335), - [sym_try_statement] = STATE(8335), - [sym_with_statement] = STATE(8335), - [sym_break_statement] = STATE(8335), - [sym_continue_statement] = STATE(8335), - [sym_debugger_statement] = STATE(8335), - [sym_return_statement] = STATE(8335), - [sym_throw_statement] = STATE(8335), - [sym_empty_statement] = STATE(8335), - [sym_labeled_statement] = STATE(8335), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(111), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), + [113] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1644), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(113), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(912), - [anon_sym_from] = ACTIONS(914), - [anon_sym_with] = ACTIONS(916), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_for] = ACTIONS(928), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(914), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(940), - [anon_sym_return] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -50443,112 +50386,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_property] = ACTIONS(914), - [anon_sym_signal] = ACTIONS(914), - [anon_sym_on] = ACTIONS(914), - [anon_sym_required] = ACTIONS(914), - [anon_sym_component] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_export_statement] = STATE(1312), - [sym_declaration] = STATE(1312), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1312), - [sym_expression_statement] = STATE(1312), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1312), - [sym_if_statement] = STATE(1312), - [sym_switch_statement] = STATE(1312), - [sym_for_statement] = STATE(1312), - [sym_for_in_statement] = STATE(1312), - [sym_while_statement] = STATE(1312), - [sym_do_statement] = STATE(1312), - [sym_try_statement] = STATE(1312), - [sym_with_statement] = STATE(1312), - [sym_break_statement] = STATE(1312), - [sym_continue_statement] = STATE(1312), - [sym_debugger_statement] = STATE(1312), - [sym_return_statement] = STATE(1312), - [sym_throw_statement] = STATE(1312), - [sym_empty_statement] = STATE(1312), - [sym_labeled_statement] = STATE(1312), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), - [sym_comment] = STATE(112), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), + [114] = { + [sym_export_statement] = STATE(3971), + [sym_declaration] = STATE(3971), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(3971), + [sym_statement] = STATE(4024), + [sym_expression_statement] = STATE(3971), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_statement_block] = STATE(3971), + [sym_if_statement] = STATE(3971), + [sym_switch_statement] = STATE(3971), + [sym_for_statement] = STATE(3971), + [sym_for_in_statement] = STATE(3971), + [sym_while_statement] = STATE(3971), + [sym_do_statement] = STATE(3971), + [sym_try_statement] = STATE(3971), + [sym_with_statement] = STATE(3971), + [sym_break_statement] = STATE(3971), + [sym_continue_statement] = STATE(3971), + [sym_debugger_statement] = STATE(3971), + [sym_return_statement] = STATE(3971), + [sym_throw_statement] = STATE(3971), + [sym_empty_statement] = STATE(3971), + [sym_labeled_statement] = STATE(3971), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(3548), + [sym_comment] = STATE(114), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5310), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [115] = { + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1320), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), + [sym_comment] = STATE(115), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), [sym_identifier] = ACTIONS(353), [anon_sym_export] = ACTIONS(355), [anon_sym_type] = ACTIONS(359), @@ -50633,86 +50742,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(421), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_export_statement] = STATE(1472), - [sym_declaration] = STATE(1472), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1472), - [sym_expression_statement] = STATE(1472), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_statement_block] = STATE(1472), - [sym_if_statement] = STATE(1472), - [sym_switch_statement] = STATE(1472), - [sym_for_statement] = STATE(1472), - [sym_for_in_statement] = STATE(1472), - [sym_while_statement] = STATE(1472), - [sym_do_statement] = STATE(1472), - [sym_try_statement] = STATE(1472), - [sym_with_statement] = STATE(1472), - [sym_break_statement] = STATE(1472), - [sym_continue_statement] = STATE(1472), - [sym_debugger_statement] = STATE(1472), - [sym_return_statement] = STATE(1472), - [sym_throw_statement] = STATE(1472), - [sym_empty_statement] = STATE(1472), - [sym_labeled_statement] = STATE(1472), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8194), - [sym_string] = STATE(3749), - [sym_comment] = STATE(113), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5711), + [116] = { + [sym_export_statement] = STATE(3971), + [sym_declaration] = STATE(3971), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(3971), + [sym_statement] = STATE(4034), + [sym_expression_statement] = STATE(3971), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_statement_block] = STATE(3971), + [sym_if_statement] = STATE(3971), + [sym_switch_statement] = STATE(3971), + [sym_for_statement] = STATE(3971), + [sym_for_in_statement] = STATE(3971), + [sym_while_statement] = STATE(3971), + [sym_do_statement] = STATE(3971), + [sym_try_statement] = STATE(3971), + [sym_with_statement] = STATE(3971), + [sym_break_statement] = STATE(3971), + [sym_continue_statement] = STATE(3971), + [sym_debugger_statement] = STATE(3971), + [sym_return_statement] = STATE(3971), + [sym_throw_statement] = STATE(3971), + [sym_empty_statement] = STATE(3971), + [sym_labeled_statement] = STATE(3971), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(3548), + [sym_comment] = STATE(116), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5310), [sym_identifier] = ACTIONS(1094), [anon_sym_export] = ACTIONS(1096), [anon_sym_type] = ACTIONS(1098), @@ -50797,123 +50907,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1156), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_export_statement] = STATE(1120), - [sym_declaration] = STATE(1120), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1120), - [sym_expression_statement] = STATE(1120), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_statement_block] = STATE(1120), - [sym_if_statement] = STATE(1120), - [sym_switch_statement] = STATE(1120), - [sym_for_statement] = STATE(1120), - [sym_for_in_statement] = STATE(1120), - [sym_while_statement] = STATE(1120), - [sym_do_statement] = STATE(1120), - [sym_try_statement] = STATE(1120), - [sym_with_statement] = STATE(1120), - [sym_break_statement] = STATE(1120), - [sym_continue_statement] = STATE(1120), - [sym_debugger_statement] = STATE(1120), - [sym_return_statement] = STATE(1120), - [sym_throw_statement] = STATE(1120), - [sym_empty_statement] = STATE(1120), - [sym_labeled_statement] = STATE(1120), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7559), - [sym_string] = STATE(3749), - [sym_comment] = STATE(114), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5661), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), + [117] = { + [sym_export_statement] = STATE(1506), + [sym_declaration] = STATE(1506), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1506), + [sym_statement] = STATE(1446), + [sym_expression_statement] = STATE(1506), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_statement_block] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_switch_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_for_in_statement] = STATE(1506), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_with_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_debugger_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_statement] = STATE(1506), + [sym_empty_statement] = STATE(1506), + [sym_labeled_statement] = STATE(1506), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7815), + [sym_string] = STATE(3548), + [sym_comment] = STATE(117), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5336), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(848), - [anon_sym_from] = ACTIONS(850), - [anon_sym_with] = ACTIONS(852), - [anon_sym_var] = ACTIONS(854), - [anon_sym_let] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(850), - [anon_sym_while] = ACTIONS(866), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_break] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(878), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(890), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -50935,112 +51046,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), - [anon_sym_declare] = ACTIONS(892), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(894), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), - [anon_sym_property] = ACTIONS(850), - [anon_sym_signal] = ACTIONS(850), - [anon_sym_on] = ACTIONS(850), - [anon_sym_required] = ACTIONS(850), - [anon_sym_component] = ACTIONS(850), - [anon_sym_abstract] = ACTIONS(896), - [anon_sym_interface] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(900), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_export_statement] = STATE(4160), - [sym_declaration] = STATE(4158), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4157), - [sym_expression_statement] = STATE(4155), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_statement_block] = STATE(4154), - [sym_if_statement] = STATE(4153), - [sym_switch_statement] = STATE(4152), - [sym_for_statement] = STATE(4151), - [sym_for_in_statement] = STATE(4150), - [sym_while_statement] = STATE(4148), - [sym_do_statement] = STATE(4147), - [sym_try_statement] = STATE(4146), - [sym_with_statement] = STATE(4144), - [sym_break_statement] = STATE(4142), - [sym_continue_statement] = STATE(4132), - [sym_debugger_statement] = STATE(4131), - [sym_return_statement] = STATE(4130), - [sym_throw_statement] = STATE(4129), - [sym_empty_statement] = STATE(4128), - [sym_labeled_statement] = STATE(4124), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7500), - [sym_string] = STATE(3749), - [sym_comment] = STATE(115), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5737), + [118] = { + [sym_export_statement] = STATE(1069), + [sym_declaration] = STATE(1069), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1069), + [sym_statement] = STATE(1087), + [sym_expression_statement] = STATE(1069), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_statement_block] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_for_in_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_with_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_debugger_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_empty_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(3548), + [sym_comment] = STATE(118), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5489), [sym_identifier] = ACTIONS(966), [anon_sym_export] = ACTIONS(968), [anon_sym_type] = ACTIONS(970), @@ -51125,123 +51237,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_export_statement] = STATE(1543), - [sym_declaration] = STATE(1541), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1540), - [sym_expression_statement] = STATE(1539), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_statement_block] = STATE(1537), - [sym_if_statement] = STATE(1536), - [sym_switch_statement] = STATE(1535), - [sym_for_statement] = STATE(1531), - [sym_for_in_statement] = STATE(1533), - [sym_while_statement] = STATE(1532), - [sym_do_statement] = STATE(1525), - [sym_try_statement] = STATE(1529), - [sym_with_statement] = STATE(1528), - [sym_break_statement] = STATE(1465), - [sym_continue_statement] = STATE(1466), - [sym_debugger_statement] = STATE(1467), - [sym_return_statement] = STATE(1468), - [sym_throw_statement] = STATE(1469), - [sym_empty_statement] = STATE(1470), - [sym_labeled_statement] = STATE(1471), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8194), - [sym_string] = STATE(3749), - [sym_comment] = STATE(116), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5711), - [sym_identifier] = ACTIONS(1094), - [anon_sym_export] = ACTIONS(1096), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), + [119] = { + [sym_export_statement] = STATE(4080), + [sym_declaration] = STATE(4080), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(4080), + [sym_statement] = STATE(4066), + [sym_expression_statement] = STATE(4080), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_statement_block] = STATE(4080), + [sym_if_statement] = STATE(4080), + [sym_switch_statement] = STATE(4080), + [sym_for_statement] = STATE(4080), + [sym_for_in_statement] = STATE(4080), + [sym_while_statement] = STATE(4080), + [sym_do_statement] = STATE(4080), + [sym_try_statement] = STATE(4080), + [sym_with_statement] = STATE(4080), + [sym_break_statement] = STATE(4080), + [sym_continue_statement] = STATE(4080), + [sym_debugger_statement] = STATE(4080), + [sym_return_statement] = STATE(4080), + [sym_throw_statement] = STATE(4080), + [sym_empty_statement] = STATE(4080), + [sym_labeled_statement] = STATE(4080), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(4079), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(4079), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(4079), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), + [sym_comment] = STATE(119), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(4079), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(1767), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5365), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_with] = ACTIONS(1108), - [anon_sym_var] = ACTIONS(1110), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1114), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_try] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_debugger] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(1144), - [anon_sym_new] = ACTIONS(1146), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -51263,149 +51376,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1150), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_object] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_interface] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_export_statement] = STATE(1547), - [sym_declaration] = STATE(1547), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1547), - [sym_expression_statement] = STATE(1547), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_statement_block] = STATE(1547), - [sym_if_statement] = STATE(1547), - [sym_switch_statement] = STATE(1547), - [sym_for_statement] = STATE(1547), - [sym_for_in_statement] = STATE(1547), - [sym_while_statement] = STATE(1547), - [sym_do_statement] = STATE(1547), - [sym_try_statement] = STATE(1547), - [sym_with_statement] = STATE(1547), - [sym_break_statement] = STATE(1547), - [sym_continue_statement] = STATE(1547), - [sym_debugger_statement] = STATE(1547), - [sym_return_statement] = STATE(1547), - [sym_throw_statement] = STATE(1547), - [sym_empty_statement] = STATE(1547), - [sym_labeled_statement] = STATE(1547), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8194), - [sym_string] = STATE(3749), - [sym_comment] = STATE(117), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5711), - [sym_identifier] = ACTIONS(1094), - [anon_sym_export] = ACTIONS(1096), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), + [120] = { + [sym_export_statement] = STATE(4080), + [sym_declaration] = STATE(4080), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(4080), + [sym_statement] = STATE(4121), + [sym_expression_statement] = STATE(4080), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_statement_block] = STATE(4080), + [sym_if_statement] = STATE(4080), + [sym_switch_statement] = STATE(4080), + [sym_for_statement] = STATE(4080), + [sym_for_in_statement] = STATE(4080), + [sym_while_statement] = STATE(4080), + [sym_do_statement] = STATE(4080), + [sym_try_statement] = STATE(4080), + [sym_with_statement] = STATE(4080), + [sym_break_statement] = STATE(4080), + [sym_continue_statement] = STATE(4080), + [sym_debugger_statement] = STATE(4080), + [sym_return_statement] = STATE(4080), + [sym_throw_statement] = STATE(4080), + [sym_empty_statement] = STATE(4080), + [sym_labeled_statement] = STATE(4080), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(4079), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(4079), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(4079), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), + [sym_comment] = STATE(120), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(4079), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(1767), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5365), + [sym_identifier] = ACTIONS(902), + [anon_sym_export] = ACTIONS(904), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_with] = ACTIONS(1108), - [anon_sym_var] = ACTIONS(1110), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1114), + [anon_sym_import] = ACTIONS(912), + [anon_sym_from] = ACTIONS(914), + [anon_sym_with] = ACTIONS(916), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(920), + [anon_sym_const] = ACTIONS(922), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), + [anon_sym_for] = ACTIONS(928), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_try] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_debugger] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_of] = ACTIONS(914), + [anon_sym_while] = ACTIONS(930), + [anon_sym_do] = ACTIONS(932), + [anon_sym_try] = ACTIONS(934), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(938), + [anon_sym_debugger] = ACTIONS(940), + [anon_sym_return] = ACTIONS(942), + [anon_sym_throw] = ACTIONS(944), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(1144), - [anon_sym_new] = ACTIONS(1146), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(950), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(954), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -51427,112 +51541,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1150), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_object] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_interface] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(914), + [anon_sym_readonly] = ACTIONS(914), + [anon_sym_get] = ACTIONS(914), + [anon_sym_set] = ACTIONS(914), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(914), + [anon_sym_private] = ACTIONS(914), + [anon_sym_protected] = ACTIONS(914), + [anon_sym_override] = ACTIONS(914), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(914), + [anon_sym_number] = ACTIONS(914), + [anon_sym_boolean] = ACTIONS(914), + [anon_sym_string] = ACTIONS(914), + [anon_sym_symbol] = ACTIONS(914), + [anon_sym_object] = ACTIONS(914), + [anon_sym_property] = ACTIONS(914), + [anon_sym_signal] = ACTIONS(914), + [anon_sym_on] = ACTIONS(914), + [anon_sym_required] = ACTIONS(914), + [anon_sym_component] = ACTIONS(914), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), [sym_html_comment] = ACTIONS(5), }, - [118] = { - [sym_export_statement] = STATE(4203), - [sym_declaration] = STATE(4203), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4203), - [sym_expression_statement] = STATE(4203), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_statement_block] = STATE(4203), - [sym_if_statement] = STATE(4203), - [sym_switch_statement] = STATE(4203), - [sym_for_statement] = STATE(4203), - [sym_for_in_statement] = STATE(4203), - [sym_while_statement] = STATE(4203), - [sym_do_statement] = STATE(4203), - [sym_try_statement] = STATE(4203), - [sym_with_statement] = STATE(4203), - [sym_break_statement] = STATE(4203), - [sym_continue_statement] = STATE(4203), - [sym_debugger_statement] = STATE(4203), - [sym_return_statement] = STATE(4203), - [sym_throw_statement] = STATE(4203), - [sym_empty_statement] = STATE(4203), - [sym_labeled_statement] = STATE(4203), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7500), - [sym_string] = STATE(3749), - [sym_comment] = STATE(118), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5737), + [121] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(8122), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(121), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [122] = { + [sym_export_statement] = STATE(1069), + [sym_declaration] = STATE(1069), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1069), + [sym_statement] = STATE(1092), + [sym_expression_statement] = STATE(1069), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_statement_block] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_for_in_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_with_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_debugger_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_empty_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(3548), + [sym_comment] = STATE(122), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5489), [sym_identifier] = ACTIONS(966), [anon_sym_export] = ACTIONS(968), [anon_sym_type] = ACTIONS(970), @@ -51617,250 +51897,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, - [119] = { - [sym_export_statement] = STATE(1592), - [sym_declaration] = STATE(1592), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1592), - [sym_expression_statement] = STATE(1592), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_statement_block] = STATE(1592), - [sym_if_statement] = STATE(1592), - [sym_switch_statement] = STATE(1592), - [sym_for_statement] = STATE(1592), - [sym_for_in_statement] = STATE(1592), - [sym_while_statement] = STATE(1592), - [sym_do_statement] = STATE(1592), - [sym_try_statement] = STATE(1592), - [sym_with_statement] = STATE(1592), - [sym_break_statement] = STATE(1592), - [sym_continue_statement] = STATE(1592), - [sym_debugger_statement] = STATE(1592), - [sym_return_statement] = STATE(1592), - [sym_throw_statement] = STATE(1592), - [sym_empty_statement] = STATE(1592), - [sym_labeled_statement] = STATE(1592), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8194), - [sym_string] = STATE(3749), - [sym_comment] = STATE(119), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5711), - [sym_identifier] = ACTIONS(1094), - [anon_sym_export] = ACTIONS(1096), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_with] = ACTIONS(1108), - [anon_sym_var] = ACTIONS(1110), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_try] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_debugger] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(1144), - [anon_sym_new] = ACTIONS(1146), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1150), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_object] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_interface] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), - [sym_html_comment] = ACTIONS(5), - }, - [120] = { - [sym_export_statement] = STATE(1030), - [sym_declaration] = STATE(1030), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1030), - [sym_expression_statement] = STATE(1030), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_statement_block] = STATE(1030), - [sym_if_statement] = STATE(1030), - [sym_switch_statement] = STATE(1030), - [sym_for_statement] = STATE(1030), - [sym_for_in_statement] = STATE(1030), - [sym_while_statement] = STATE(1030), - [sym_do_statement] = STATE(1030), - [sym_try_statement] = STATE(1030), - [sym_with_statement] = STATE(1030), - [sym_break_statement] = STATE(1030), - [sym_continue_statement] = STATE(1030), - [sym_debugger_statement] = STATE(1030), - [sym_return_statement] = STATE(1030), - [sym_throw_statement] = STATE(1030), - [sym_empty_statement] = STATE(1030), - [sym_labeled_statement] = STATE(1030), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7559), - [sym_string] = STATE(3749), - [sym_comment] = STATE(120), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5661), + [123] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(8196), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(123), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), [sym_identifier] = ACTIONS(838), [anon_sym_export] = ACTIONS(840), [anon_sym_type] = ACTIONS(842), @@ -51945,86 +52062,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, - [121] = { - [sym_export_statement] = STATE(1350), - [sym_declaration] = STATE(1350), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1350), - [sym_expression_statement] = STATE(1350), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_statement_block] = STATE(1350), - [sym_if_statement] = STATE(1350), - [sym_switch_statement] = STATE(1350), - [sym_for_statement] = STATE(1350), - [sym_for_in_statement] = STATE(1350), - [sym_while_statement] = STATE(1350), - [sym_do_statement] = STATE(1350), - [sym_try_statement] = STATE(1350), - [sym_with_statement] = STATE(1350), - [sym_break_statement] = STATE(1350), - [sym_continue_statement] = STATE(1350), - [sym_debugger_statement] = STATE(1350), - [sym_return_statement] = STATE(1350), - [sym_throw_statement] = STATE(1350), - [sym_empty_statement] = STATE(1350), - [sym_labeled_statement] = STATE(1350), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8194), - [sym_string] = STATE(3749), - [sym_comment] = STATE(121), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5711), + [124] = { + [sym_export_statement] = STATE(3971), + [sym_declaration] = STATE(3971), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(3971), + [sym_statement] = STATE(3982), + [sym_expression_statement] = STATE(3971), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_statement_block] = STATE(3971), + [sym_if_statement] = STATE(3971), + [sym_switch_statement] = STATE(3971), + [sym_for_statement] = STATE(3971), + [sym_for_in_statement] = STATE(3971), + [sym_while_statement] = STATE(3971), + [sym_do_statement] = STATE(3971), + [sym_try_statement] = STATE(3971), + [sym_with_statement] = STATE(3971), + [sym_break_statement] = STATE(3971), + [sym_continue_statement] = STATE(3971), + [sym_debugger_statement] = STATE(3971), + [sym_return_statement] = STATE(3971), + [sym_throw_statement] = STATE(3971), + [sym_empty_statement] = STATE(3971), + [sym_labeled_statement] = STATE(3971), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(3548), + [sym_comment] = STATE(124), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5310), [sym_identifier] = ACTIONS(1094), [anon_sym_export] = ACTIONS(1096), [anon_sym_type] = ACTIONS(1098), @@ -52109,86 +52227,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1156), [sym_html_comment] = ACTIONS(5), }, - [122] = { - [sym_export_statement] = STATE(4054), - [sym_declaration] = STATE(4054), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4054), - [sym_expression_statement] = STATE(4054), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_statement_block] = STATE(4054), - [sym_if_statement] = STATE(4054), - [sym_switch_statement] = STATE(4054), - [sym_for_statement] = STATE(4054), - [sym_for_in_statement] = STATE(4054), - [sym_while_statement] = STATE(4054), - [sym_do_statement] = STATE(4054), - [sym_try_statement] = STATE(4054), - [sym_with_statement] = STATE(4054), - [sym_break_statement] = STATE(4054), - [sym_continue_statement] = STATE(4054), - [sym_debugger_statement] = STATE(4054), - [sym_return_statement] = STATE(4054), - [sym_throw_statement] = STATE(4054), - [sym_empty_statement] = STATE(4054), - [sym_labeled_statement] = STATE(4054), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7500), - [sym_string] = STATE(3749), - [sym_comment] = STATE(122), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5737), + [125] = { + [sym_export_statement] = STATE(1069), + [sym_declaration] = STATE(1069), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1069), + [sym_statement] = STATE(1210), + [sym_expression_statement] = STATE(1069), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_statement_block] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_for_in_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_with_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_debugger_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_empty_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(3548), + [sym_comment] = STATE(125), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5489), [sym_identifier] = ACTIONS(966), [anon_sym_export] = ACTIONS(968), [anon_sym_type] = ACTIONS(970), @@ -52273,123 +52392,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, - [123] = { - [sym_export_statement] = STATE(1135), - [sym_declaration] = STATE(1154), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1166), - [sym_expression_statement] = STATE(1167), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_statement_block] = STATE(1177), - [sym_if_statement] = STATE(1180), - [sym_switch_statement] = STATE(1183), - [sym_for_statement] = STATE(1186), - [sym_for_in_statement] = STATE(1193), - [sym_while_statement] = STATE(1194), - [sym_do_statement] = STATE(1196), - [sym_try_statement] = STATE(1197), - [sym_with_statement] = STATE(1198), - [sym_break_statement] = STATE(1199), - [sym_continue_statement] = STATE(1204), - [sym_debugger_statement] = STATE(1205), - [sym_return_statement] = STATE(1206), - [sym_throw_statement] = STATE(1213), - [sym_empty_statement] = STATE(1215), - [sym_labeled_statement] = STATE(1220), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7559), - [sym_string] = STATE(3749), - [sym_comment] = STATE(123), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5661), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), + [126] = { + [sym_export_statement] = STATE(1069), + [sym_declaration] = STATE(1069), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1069), + [sym_statement] = STATE(1017), + [sym_expression_statement] = STATE(1069), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_statement_block] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_for_in_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_with_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_debugger_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_empty_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(3548), + [sym_comment] = STATE(126), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(848), - [anon_sym_from] = ACTIONS(850), - [anon_sym_with] = ACTIONS(852), - [anon_sym_var] = ACTIONS(854), - [anon_sym_let] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(850), - [anon_sym_while] = ACTIONS(866), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_break] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(878), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(890), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -52411,112 +52531,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), - [anon_sym_declare] = ACTIONS(892), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(894), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), - [anon_sym_property] = ACTIONS(850), - [anon_sym_signal] = ACTIONS(850), - [anon_sym_on] = ACTIONS(850), - [anon_sym_required] = ACTIONS(850), - [anon_sym_component] = ACTIONS(850), - [anon_sym_abstract] = ACTIONS(896), - [anon_sym_interface] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(900), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_export_statement] = STATE(1427), - [sym_declaration] = STATE(1427), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1427), - [sym_expression_statement] = STATE(1427), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1427), - [sym_if_statement] = STATE(1427), - [sym_switch_statement] = STATE(1427), - [sym_for_statement] = STATE(1427), - [sym_for_in_statement] = STATE(1427), - [sym_while_statement] = STATE(1427), - [sym_do_statement] = STATE(1427), - [sym_try_statement] = STATE(1427), - [sym_with_statement] = STATE(1427), - [sym_break_statement] = STATE(1427), - [sym_continue_statement] = STATE(1427), - [sym_debugger_statement] = STATE(1427), - [sym_return_statement] = STATE(1427), - [sym_throw_statement] = STATE(1427), - [sym_empty_statement] = STATE(1427), - [sym_labeled_statement] = STATE(1427), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), - [sym_comment] = STATE(124), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), + [127] = { + [sym_export_statement] = STATE(3971), + [sym_declaration] = STATE(3971), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(3971), + [sym_statement] = STATE(3864), + [sym_expression_statement] = STATE(3971), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_statement_block] = STATE(3971), + [sym_if_statement] = STATE(3971), + [sym_switch_statement] = STATE(3971), + [sym_for_statement] = STATE(3971), + [sym_for_in_statement] = STATE(3971), + [sym_while_statement] = STATE(3971), + [sym_do_statement] = STATE(3971), + [sym_try_statement] = STATE(3971), + [sym_with_statement] = STATE(3971), + [sym_break_statement] = STATE(3971), + [sym_continue_statement] = STATE(3971), + [sym_debugger_statement] = STATE(3971), + [sym_return_statement] = STATE(3971), + [sym_throw_statement] = STATE(3971), + [sym_empty_statement] = STATE(3971), + [sym_labeled_statement] = STATE(3971), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(3548), + [sym_comment] = STATE(127), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5310), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), + [sym_html_comment] = ACTIONS(5), + }, + [128] = { + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1337), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), + [sym_comment] = STATE(128), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), [sym_identifier] = ACTIONS(353), [anon_sym_export] = ACTIONS(355), [anon_sym_type] = ACTIONS(359), @@ -52601,86 +52887,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(421), [sym_html_comment] = ACTIONS(5), }, - [125] = { - [sym_export_statement] = STATE(4067), - [sym_declaration] = STATE(4067), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4067), - [sym_expression_statement] = STATE(4067), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_statement_block] = STATE(4067), - [sym_if_statement] = STATE(4067), - [sym_switch_statement] = STATE(4067), - [sym_for_statement] = STATE(4067), - [sym_for_in_statement] = STATE(4067), - [sym_while_statement] = STATE(4067), - [sym_do_statement] = STATE(4067), - [sym_try_statement] = STATE(4067), - [sym_with_statement] = STATE(4067), - [sym_break_statement] = STATE(4067), - [sym_continue_statement] = STATE(4067), - [sym_debugger_statement] = STATE(4067), - [sym_return_statement] = STATE(4067), - [sym_throw_statement] = STATE(4067), - [sym_empty_statement] = STATE(4067), - [sym_labeled_statement] = STATE(4067), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7500), - [sym_string] = STATE(3749), - [sym_comment] = STATE(125), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5737), + [129] = { + [sym_export_statement] = STATE(1069), + [sym_declaration] = STATE(1069), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1069), + [sym_statement] = STATE(1016), + [sym_expression_statement] = STATE(1069), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_statement_block] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_for_in_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_with_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_debugger_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_empty_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(3548), + [sym_comment] = STATE(129), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5489), [sym_identifier] = ACTIONS(966), [anon_sym_export] = ACTIONS(968), [anon_sym_type] = ACTIONS(970), @@ -52765,451 +53052,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_export_statement] = STATE(7814), - [sym_declaration] = STATE(7814), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(7814), - [sym_expression_statement] = STATE(7814), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(7814), - [sym_if_statement] = STATE(7814), - [sym_switch_statement] = STATE(7814), - [sym_for_statement] = STATE(7814), - [sym_for_in_statement] = STATE(7814), - [sym_while_statement] = STATE(7814), - [sym_do_statement] = STATE(7814), - [sym_try_statement] = STATE(7814), - [sym_with_statement] = STATE(7814), - [sym_break_statement] = STATE(7814), - [sym_continue_statement] = STATE(7814), - [sym_debugger_statement] = STATE(7814), - [sym_return_statement] = STATE(7814), - [sym_throw_statement] = STATE(7814), - [sym_empty_statement] = STATE(7814), - [sym_labeled_statement] = STATE(7814), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(126), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), + [130] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(7570), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(130), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(912), - [anon_sym_from] = ACTIONS(914), - [anon_sym_with] = ACTIONS(916), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(922), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_for] = ACTIONS(928), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(914), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(940), - [anon_sym_return] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_property] = ACTIONS(914), - [anon_sym_signal] = ACTIONS(914), - [anon_sym_on] = ACTIONS(914), - [anon_sym_required] = ACTIONS(914), - [anon_sym_component] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), - [sym_html_comment] = ACTIONS(5), - }, - [127] = { - [sym_export_statement] = STATE(7633), - [sym_declaration] = STATE(7632), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(7630), - [sym_expression_statement] = STATE(7626), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(7618), - [sym_if_statement] = STATE(7616), - [sym_switch_statement] = STATE(7609), - [sym_for_statement] = STATE(7608), - [sym_for_in_statement] = STATE(7605), - [sym_while_statement] = STATE(7603), - [sym_do_statement] = STATE(7507), - [sym_try_statement] = STATE(7595), - [sym_with_statement] = STATE(7594), - [sym_break_statement] = STATE(7590), - [sym_continue_statement] = STATE(7589), - [sym_debugger_statement] = STATE(7586), - [sym_return_statement] = STATE(7582), - [sym_throw_statement] = STATE(7580), - [sym_empty_statement] = STATE(7578), - [sym_labeled_statement] = STATE(7577), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(127), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(912), - [anon_sym_from] = ACTIONS(914), - [anon_sym_with] = ACTIONS(916), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_for] = ACTIONS(928), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(914), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(940), - [anon_sym_return] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(946), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_property] = ACTIONS(914), - [anon_sym_signal] = ACTIONS(914), - [anon_sym_on] = ACTIONS(914), - [anon_sym_required] = ACTIONS(914), - [anon_sym_component] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), - [sym_html_comment] = ACTIONS(5), - }, - [128] = { - [sym_export_statement] = STATE(1048), - [sym_declaration] = STATE(1048), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1048), - [sym_expression_statement] = STATE(1048), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_statement_block] = STATE(1048), - [sym_if_statement] = STATE(1048), - [sym_switch_statement] = STATE(1048), - [sym_for_statement] = STATE(1048), - [sym_for_in_statement] = STATE(1048), - [sym_while_statement] = STATE(1048), - [sym_do_statement] = STATE(1048), - [sym_try_statement] = STATE(1048), - [sym_with_statement] = STATE(1048), - [sym_break_statement] = STATE(1048), - [sym_continue_statement] = STATE(1048), - [sym_debugger_statement] = STATE(1048), - [sym_return_statement] = STATE(1048), - [sym_throw_statement] = STATE(1048), - [sym_empty_statement] = STATE(1048), - [sym_labeled_statement] = STATE(1048), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7559), - [sym_string] = STATE(3749), - [sym_comment] = STATE(128), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5661), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(848), - [anon_sym_from] = ACTIONS(850), - [anon_sym_with] = ACTIONS(852), - [anon_sym_var] = ACTIONS(854), - [anon_sym_let] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(850), - [anon_sym_while] = ACTIONS(866), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_break] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(878), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(890), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -53257,414 +53217,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_export_statement] = STATE(1692), - [sym_declaration] = STATE(1693), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1694), - [sym_expression_statement] = STATE(1695), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1696), - [sym_if_statement] = STATE(1697), - [sym_switch_statement] = STATE(1698), - [sym_for_statement] = STATE(1699), - [sym_for_in_statement] = STATE(1704), - [sym_while_statement] = STATE(1707), - [sym_do_statement] = STATE(1708), - [sym_try_statement] = STATE(1711), - [sym_with_statement] = STATE(1712), - [sym_break_statement] = STATE(1714), - [sym_continue_statement] = STATE(1715), - [sym_debugger_statement] = STATE(1672), - [sym_return_statement] = STATE(1722), - [sym_throw_statement] = STATE(1725), - [sym_empty_statement] = STATE(1726), - [sym_labeled_statement] = STATE(1729), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(129), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(582), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(588), - [anon_sym_with] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(590), - [anon_sym_const] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(165), - [anon_sym_switch] = ACTIONS(167), - [anon_sym_for] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(588), - [anon_sym_while] = ACTIONS(175), - [anon_sym_do] = ACTIONS(177), - [anon_sym_try] = ACTIONS(179), - [anon_sym_break] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_debugger] = ACTIONS(185), - [anon_sym_return] = ACTIONS(187), - [anon_sym_throw] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(594), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(588), - [anon_sym_readonly] = ACTIONS(588), - [anon_sym_get] = ACTIONS(588), - [anon_sym_set] = ACTIONS(588), - [anon_sym_declare] = ACTIONS(596), - [anon_sym_public] = ACTIONS(588), - [anon_sym_private] = ACTIONS(588), - [anon_sym_protected] = ACTIONS(588), - [anon_sym_override] = ACTIONS(588), - [anon_sym_module] = ACTIONS(598), - [anon_sym_any] = ACTIONS(588), - [anon_sym_number] = ACTIONS(588), - [anon_sym_boolean] = ACTIONS(588), - [anon_sym_string] = ACTIONS(588), - [anon_sym_symbol] = ACTIONS(588), - [anon_sym_object] = ACTIONS(588), - [anon_sym_property] = ACTIONS(588), - [anon_sym_signal] = ACTIONS(588), - [anon_sym_on] = ACTIONS(588), - [anon_sym_required] = ACTIONS(588), - [anon_sym_component] = ACTIONS(588), - [anon_sym_abstract] = ACTIONS(241), - [anon_sym_interface] = ACTIONS(243), - [anon_sym_enum] = ACTIONS(245), - [sym_html_comment] = ACTIONS(5), - }, - [130] = { - [sym_export_statement] = STATE(1294), - [sym_declaration] = STATE(1294), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1294), - [sym_expression_statement] = STATE(1294), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1294), - [sym_if_statement] = STATE(1294), - [sym_switch_statement] = STATE(1294), - [sym_for_statement] = STATE(1294), - [sym_for_in_statement] = STATE(1294), - [sym_while_statement] = STATE(1294), - [sym_do_statement] = STATE(1294), - [sym_try_statement] = STATE(1294), - [sym_with_statement] = STATE(1294), - [sym_break_statement] = STATE(1294), - [sym_continue_statement] = STATE(1294), - [sym_debugger_statement] = STATE(1294), - [sym_return_statement] = STATE(1294), - [sym_throw_statement] = STATE(1294), - [sym_empty_statement] = STATE(1294), - [sym_labeled_statement] = STATE(1294), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), - [sym_comment] = STATE(130), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), - [sym_identifier] = ACTIONS(353), - [anon_sym_export] = ACTIONS(355), - [anon_sym_type] = ACTIONS(359), - [anon_sym_namespace] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(365), - [anon_sym_from] = ACTIONS(367), - [anon_sym_with] = ACTIONS(369), - [anon_sym_var] = ACTIONS(371), - [anon_sym_let] = ACTIONS(373), - [anon_sym_const] = ACTIONS(375), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(377), - [anon_sym_switch] = ACTIONS(379), - [anon_sym_for] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(367), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_try] = ACTIONS(387), - [anon_sym_break] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_debugger] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_throw] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(403), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(407), - [anon_sym_new] = ACTIONS(409), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(367), - [anon_sym_readonly] = ACTIONS(367), - [anon_sym_get] = ACTIONS(367), - [anon_sym_set] = ACTIONS(367), - [anon_sym_declare] = ACTIONS(413), - [anon_sym_public] = ACTIONS(367), - [anon_sym_private] = ACTIONS(367), - [anon_sym_protected] = ACTIONS(367), - [anon_sym_override] = ACTIONS(367), - [anon_sym_module] = ACTIONS(415), - [anon_sym_any] = ACTIONS(367), - [anon_sym_number] = ACTIONS(367), - [anon_sym_boolean] = ACTIONS(367), - [anon_sym_string] = ACTIONS(367), - [anon_sym_symbol] = ACTIONS(367), - [anon_sym_object] = ACTIONS(367), - [anon_sym_property] = ACTIONS(367), - [anon_sym_signal] = ACTIONS(367), - [anon_sym_on] = ACTIONS(367), - [anon_sym_required] = ACTIONS(367), - [anon_sym_component] = ACTIONS(367), - [anon_sym_abstract] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(421), - [sym_html_comment] = ACTIONS(5), - }, [131] = { - [sym_export_statement] = STATE(1273), - [sym_declaration] = STATE(1273), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1273), - [sym_expression_statement] = STATE(1273), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_statement_block] = STATE(1273), - [sym_if_statement] = STATE(1273), - [sym_switch_statement] = STATE(1273), - [sym_for_statement] = STATE(1273), - [sym_for_in_statement] = STATE(1273), - [sym_while_statement] = STATE(1273), - [sym_do_statement] = STATE(1273), - [sym_try_statement] = STATE(1273), - [sym_with_statement] = STATE(1273), - [sym_break_statement] = STATE(1273), - [sym_continue_statement] = STATE(1273), - [sym_debugger_statement] = STATE(1273), - [sym_return_statement] = STATE(1273), - [sym_throw_statement] = STATE(1273), - [sym_empty_statement] = STATE(1273), - [sym_labeled_statement] = STATE(1273), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8194), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(3971), + [sym_declaration] = STATE(3971), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(3971), + [sym_statement] = STATE(4042), + [sym_expression_statement] = STATE(3971), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_statement_block] = STATE(3971), + [sym_if_statement] = STATE(3971), + [sym_switch_statement] = STATE(3971), + [sym_for_statement] = STATE(3971), + [sym_for_in_statement] = STATE(3971), + [sym_while_statement] = STATE(3971), + [sym_do_statement] = STATE(3971), + [sym_try_statement] = STATE(3971), + [sym_with_statement] = STATE(3971), + [sym_break_statement] = STATE(3971), + [sym_continue_statement] = STATE(3971), + [sym_debugger_statement] = STATE(3971), + [sym_return_statement] = STATE(3971), + [sym_throw_statement] = STATE(3971), + [sym_empty_statement] = STATE(3971), + [sym_labeled_statement] = STATE(3971), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(3548), [sym_comment] = STATE(131), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5711), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5310), [sym_identifier] = ACTIONS(1094), [anon_sym_export] = ACTIONS(1096), [anon_sym_type] = ACTIONS(1098), @@ -53750,122 +53383,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_export_statement] = STATE(1326), - [sym_declaration] = STATE(1336), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1338), - [sym_expression_statement] = STATE(1346), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1349), - [sym_if_statement] = STATE(1260), - [sym_switch_statement] = STATE(1363), - [sym_for_statement] = STATE(1365), - [sym_for_in_statement] = STATE(1366), - [sym_while_statement] = STATE(1367), - [sym_do_statement] = STATE(1369), - [sym_try_statement] = STATE(1371), - [sym_with_statement] = STATE(1381), - [sym_break_statement] = STATE(1382), - [sym_continue_statement] = STATE(1384), - [sym_debugger_statement] = STATE(1385), - [sym_return_statement] = STATE(1387), - [sym_throw_statement] = STATE(1388), - [sym_empty_statement] = STATE(1389), - [sym_labeled_statement] = STATE(1390), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(8151), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), [sym_comment] = STATE(132), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), - [sym_identifier] = ACTIONS(353), - [anon_sym_export] = ACTIONS(355), - [anon_sym_type] = ACTIONS(359), - [anon_sym_namespace] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(365), - [anon_sym_from] = ACTIONS(367), - [anon_sym_with] = ACTIONS(369), - [anon_sym_var] = ACTIONS(371), - [anon_sym_let] = ACTIONS(373), - [anon_sym_const] = ACTIONS(375), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(377), - [anon_sym_switch] = ACTIONS(379), - [anon_sym_for] = ACTIONS(381), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(367), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_try] = ACTIONS(387), - [anon_sym_break] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_debugger] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_throw] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(403), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(407), - [anon_sym_new] = ACTIONS(409), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -53887,276 +53521,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(367), - [anon_sym_readonly] = ACTIONS(367), - [anon_sym_get] = ACTIONS(367), - [anon_sym_set] = ACTIONS(367), - [anon_sym_declare] = ACTIONS(413), - [anon_sym_public] = ACTIONS(367), - [anon_sym_private] = ACTIONS(367), - [anon_sym_protected] = ACTIONS(367), - [anon_sym_override] = ACTIONS(367), - [anon_sym_module] = ACTIONS(415), - [anon_sym_any] = ACTIONS(367), - [anon_sym_number] = ACTIONS(367), - [anon_sym_boolean] = ACTIONS(367), - [anon_sym_string] = ACTIONS(367), - [anon_sym_symbol] = ACTIONS(367), - [anon_sym_object] = ACTIONS(367), - [anon_sym_property] = ACTIONS(367), - [anon_sym_signal] = ACTIONS(367), - [anon_sym_on] = ACTIONS(367), - [anon_sym_required] = ACTIONS(367), - [anon_sym_component] = ACTIONS(367), - [anon_sym_abstract] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(421), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_export_statement] = STATE(1391), - [sym_declaration] = STATE(1391), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1391), - [sym_expression_statement] = STATE(1391), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1391), - [sym_if_statement] = STATE(1391), - [sym_switch_statement] = STATE(1391), - [sym_for_statement] = STATE(1391), - [sym_for_in_statement] = STATE(1391), - [sym_while_statement] = STATE(1391), - [sym_do_statement] = STATE(1391), - [sym_try_statement] = STATE(1391), - [sym_with_statement] = STATE(1391), - [sym_break_statement] = STATE(1391), - [sym_continue_statement] = STATE(1391), - [sym_debugger_statement] = STATE(1391), - [sym_return_statement] = STATE(1391), - [sym_throw_statement] = STATE(1391), - [sym_empty_statement] = STATE(1391), - [sym_labeled_statement] = STATE(1391), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1675), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(133), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), - [sym_identifier] = ACTIONS(353), - [anon_sym_export] = ACTIONS(355), - [anon_sym_type] = ACTIONS(359), - [anon_sym_namespace] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(365), - [anon_sym_from] = ACTIONS(367), - [anon_sym_with] = ACTIONS(369), - [anon_sym_var] = ACTIONS(371), - [anon_sym_let] = ACTIONS(373), - [anon_sym_const] = ACTIONS(375), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(377), - [anon_sym_switch] = ACTIONS(379), - [anon_sym_for] = ACTIONS(381), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(367), - [anon_sym_while] = ACTIONS(383), - [anon_sym_do] = ACTIONS(385), - [anon_sym_try] = ACTIONS(387), - [anon_sym_break] = ACTIONS(389), - [anon_sym_continue] = ACTIONS(391), - [anon_sym_debugger] = ACTIONS(393), - [anon_sym_return] = ACTIONS(395), - [anon_sym_throw] = ACTIONS(397), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(403), - [anon_sym_async] = ACTIONS(405), - [anon_sym_function] = ACTIONS(407), - [anon_sym_new] = ACTIONS(409), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(367), - [anon_sym_readonly] = ACTIONS(367), - [anon_sym_get] = ACTIONS(367), - [anon_sym_set] = ACTIONS(367), - [anon_sym_declare] = ACTIONS(413), - [anon_sym_public] = ACTIONS(367), - [anon_sym_private] = ACTIONS(367), - [anon_sym_protected] = ACTIONS(367), - [anon_sym_override] = ACTIONS(367), - [anon_sym_module] = ACTIONS(415), - [anon_sym_any] = ACTIONS(367), - [anon_sym_number] = ACTIONS(367), - [anon_sym_boolean] = ACTIONS(367), - [anon_sym_string] = ACTIONS(367), - [anon_sym_symbol] = ACTIONS(367), - [anon_sym_object] = ACTIONS(367), - [anon_sym_property] = ACTIONS(367), - [anon_sym_signal] = ACTIONS(367), - [anon_sym_on] = ACTIONS(367), - [anon_sym_required] = ACTIONS(367), - [anon_sym_component] = ACTIONS(367), - [anon_sym_abstract] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(421), - [sym_html_comment] = ACTIONS(5), - }, - [134] = { - [sym_export_statement] = STATE(1719), - [sym_declaration] = STATE(1719), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1719), - [sym_expression_statement] = STATE(1719), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1719), - [sym_if_statement] = STATE(1719), - [sym_switch_statement] = STATE(1719), - [sym_for_statement] = STATE(1719), - [sym_for_in_statement] = STATE(1719), - [sym_while_statement] = STATE(1719), - [sym_do_statement] = STATE(1719), - [sym_try_statement] = STATE(1719), - [sym_with_statement] = STATE(1719), - [sym_break_statement] = STATE(1719), - [sym_continue_statement] = STATE(1719), - [sym_debugger_statement] = STATE(1719), - [sym_return_statement] = STATE(1719), - [sym_throw_statement] = STATE(1719), - [sym_empty_statement] = STATE(1719), - [sym_labeled_statement] = STATE(1719), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(134), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -54241,123 +53712,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, - [135] = { - [sym_export_statement] = STATE(8397), - [sym_declaration] = STATE(8397), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(8397), - [sym_expression_statement] = STATE(8397), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(8397), - [sym_if_statement] = STATE(8397), - [sym_switch_statement] = STATE(8397), - [sym_for_statement] = STATE(8397), - [sym_for_in_statement] = STATE(8397), - [sym_while_statement] = STATE(8397), - [sym_do_statement] = STATE(8397), - [sym_try_statement] = STATE(8397), - [sym_with_statement] = STATE(8397), - [sym_break_statement] = STATE(8397), - [sym_continue_statement] = STATE(8397), - [sym_debugger_statement] = STATE(8397), - [sym_return_statement] = STATE(8397), - [sym_throw_statement] = STATE(8397), - [sym_empty_statement] = STATE(8397), - [sym_labeled_statement] = STATE(8397), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(135), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), + [134] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(8148), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(134), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(912), - [anon_sym_from] = ACTIONS(914), - [anon_sym_with] = ACTIONS(916), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(922), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_for] = ACTIONS(928), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(914), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(940), - [anon_sym_return] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -54379,112 +53851,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_property] = ACTIONS(914), - [anon_sym_signal] = ACTIONS(914), - [anon_sym_on] = ACTIONS(914), - [anon_sym_required] = ACTIONS(914), - [anon_sym_component] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, - [136] = { - [sym_export_statement] = STATE(1731), - [sym_declaration] = STATE(1731), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1731), - [sym_expression_statement] = STATE(1731), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1731), - [sym_if_statement] = STATE(1731), - [sym_switch_statement] = STATE(1731), - [sym_for_statement] = STATE(1731), - [sym_for_in_statement] = STATE(1731), - [sym_while_statement] = STATE(1731), - [sym_do_statement] = STATE(1731), - [sym_try_statement] = STATE(1731), - [sym_with_statement] = STATE(1731), - [sym_break_statement] = STATE(1731), - [sym_continue_statement] = STATE(1731), - [sym_debugger_statement] = STATE(1731), - [sym_return_statement] = STATE(1731), - [sym_throw_statement] = STATE(1731), - [sym_empty_statement] = STATE(1731), - [sym_labeled_statement] = STATE(1731), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(136), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), + [135] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1598), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(135), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -54569,250 +54042,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_export_statement] = STATE(1644), - [sym_declaration] = STATE(1644), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1644), - [sym_expression_statement] = STATE(1644), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_statement_block] = STATE(1644), - [sym_if_statement] = STATE(1644), - [sym_switch_statement] = STATE(1644), - [sym_for_statement] = STATE(1644), - [sym_for_in_statement] = STATE(1644), - [sym_while_statement] = STATE(1644), - [sym_do_statement] = STATE(1644), - [sym_try_statement] = STATE(1644), - [sym_with_statement] = STATE(1644), - [sym_break_statement] = STATE(1644), - [sym_continue_statement] = STATE(1644), - [sym_debugger_statement] = STATE(1644), - [sym_return_statement] = STATE(1644), - [sym_throw_statement] = STATE(1644), - [sym_empty_statement] = STATE(1644), - [sym_labeled_statement] = STATE(1644), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8194), - [sym_string] = STATE(3749), - [sym_comment] = STATE(137), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5711), - [sym_identifier] = ACTIONS(1094), - [anon_sym_export] = ACTIONS(1096), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_with] = ACTIONS(1108), - [anon_sym_var] = ACTIONS(1110), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1120), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_try] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_debugger] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1138), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(1144), - [anon_sym_new] = ACTIONS(1146), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1150), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_object] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_interface] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), - [sym_html_comment] = ACTIONS(5), - }, - [138] = { - [sym_export_statement] = STATE(4028), - [sym_declaration] = STATE(4028), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4028), - [sym_expression_statement] = STATE(4028), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_statement_block] = STATE(4028), - [sym_if_statement] = STATE(4028), - [sym_switch_statement] = STATE(4028), - [sym_for_statement] = STATE(4028), - [sym_for_in_statement] = STATE(4028), - [sym_while_statement] = STATE(4028), - [sym_do_statement] = STATE(4028), - [sym_try_statement] = STATE(4028), - [sym_with_statement] = STATE(4028), - [sym_break_statement] = STATE(4028), - [sym_continue_statement] = STATE(4028), - [sym_debugger_statement] = STATE(4028), - [sym_return_statement] = STATE(4028), - [sym_throw_statement] = STATE(4028), - [sym_empty_statement] = STATE(4028), - [sym_labeled_statement] = STATE(4028), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7500), - [sym_string] = STATE(3749), - [sym_comment] = STATE(138), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5737), + [136] = { + [sym_export_statement] = STATE(1069), + [sym_declaration] = STATE(1069), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1069), + [sym_statement] = STATE(1192), + [sym_expression_statement] = STATE(1069), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_statement_block] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_for_in_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_with_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_debugger_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_empty_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(3548), + [sym_comment] = STATE(136), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5489), [sym_identifier] = ACTIONS(966), [anon_sym_export] = ACTIONS(968), [anon_sym_type] = ACTIONS(970), @@ -54897,287 +54207,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, - [139] = { - [sym_export_statement] = STATE(1107), - [sym_declaration] = STATE(1107), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1107), - [sym_expression_statement] = STATE(1107), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_statement_block] = STATE(1107), - [sym_if_statement] = STATE(1107), - [sym_switch_statement] = STATE(1107), - [sym_for_statement] = STATE(1107), - [sym_for_in_statement] = STATE(1107), - [sym_while_statement] = STATE(1107), - [sym_do_statement] = STATE(1107), - [sym_try_statement] = STATE(1107), - [sym_with_statement] = STATE(1107), - [sym_break_statement] = STATE(1107), - [sym_continue_statement] = STATE(1107), - [sym_debugger_statement] = STATE(1107), - [sym_return_statement] = STATE(1107), - [sym_throw_statement] = STATE(1107), - [sym_empty_statement] = STATE(1107), - [sym_labeled_statement] = STATE(1107), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7559), - [sym_string] = STATE(3749), - [sym_comment] = STATE(139), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5661), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(848), - [anon_sym_from] = ACTIONS(850), - [anon_sym_with] = ACTIONS(852), - [anon_sym_var] = ACTIONS(854), - [anon_sym_let] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(850), - [anon_sym_while] = ACTIONS(866), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_break] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(878), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(890), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), - [anon_sym_declare] = ACTIONS(892), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(894), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), - [anon_sym_property] = ACTIONS(850), - [anon_sym_signal] = ACTIONS(850), - [anon_sym_on] = ACTIONS(850), - [anon_sym_required] = ACTIONS(850), - [anon_sym_component] = ACTIONS(850), - [anon_sym_abstract] = ACTIONS(896), - [anon_sym_interface] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(900), - [sym_html_comment] = ACTIONS(5), - }, - [140] = { - [sym_export_statement] = STATE(1176), - [sym_declaration] = STATE(1176), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1176), - [sym_expression_statement] = STATE(1176), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_statement_block] = STATE(1176), - [sym_if_statement] = STATE(1176), - [sym_switch_statement] = STATE(1176), - [sym_for_statement] = STATE(1176), - [sym_for_in_statement] = STATE(1176), - [sym_while_statement] = STATE(1176), - [sym_do_statement] = STATE(1176), - [sym_try_statement] = STATE(1176), - [sym_with_statement] = STATE(1176), - [sym_break_statement] = STATE(1176), - [sym_continue_statement] = STATE(1176), - [sym_debugger_statement] = STATE(1176), - [sym_return_statement] = STATE(1176), - [sym_throw_statement] = STATE(1176), - [sym_empty_statement] = STATE(1176), - [sym_labeled_statement] = STATE(1176), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7559), - [sym_string] = STATE(3749), - [sym_comment] = STATE(140), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5661), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), + [137] = { + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1654), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), + [sym_comment] = STATE(137), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), + [sym_identifier] = ACTIONS(578), + [anon_sym_export] = ACTIONS(580), + [anon_sym_type] = ACTIONS(582), + [anon_sym_namespace] = ACTIONS(584), + [anon_sym_LBRACE] = ACTIONS(145), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(848), - [anon_sym_from] = ACTIONS(850), - [anon_sym_with] = ACTIONS(852), - [anon_sym_var] = ACTIONS(854), - [anon_sym_let] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), + [anon_sym_import] = ACTIONS(153), + [anon_sym_from] = ACTIONS(588), + [anon_sym_with] = ACTIONS(157), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(590), + [anon_sym_const] = ACTIONS(163), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), + [anon_sym_if] = ACTIONS(165), + [anon_sym_switch] = ACTIONS(167), + [anon_sym_for] = ACTIONS(169), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(850), - [anon_sym_while] = ACTIONS(866), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_break] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(878), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_of] = ACTIONS(588), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(177), + [anon_sym_try] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_debugger] = ACTIONS(185), + [anon_sym_return] = ACTIONS(187), + [anon_sym_throw] = ACTIONS(189), + [anon_sym_SEMI] = ACTIONS(191), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(890), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(592), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(594), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -55199,112 +54346,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), - [anon_sym_declare] = ACTIONS(892), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(894), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), - [anon_sym_property] = ACTIONS(850), - [anon_sym_signal] = ACTIONS(850), - [anon_sym_on] = ACTIONS(850), - [anon_sym_required] = ACTIONS(850), - [anon_sym_component] = ACTIONS(850), - [anon_sym_abstract] = ACTIONS(896), - [anon_sym_interface] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(900), + [anon_sym_static] = ACTIONS(588), + [anon_sym_readonly] = ACTIONS(588), + [anon_sym_get] = ACTIONS(588), + [anon_sym_set] = ACTIONS(588), + [anon_sym_declare] = ACTIONS(596), + [anon_sym_public] = ACTIONS(588), + [anon_sym_private] = ACTIONS(588), + [anon_sym_protected] = ACTIONS(588), + [anon_sym_override] = ACTIONS(588), + [anon_sym_module] = ACTIONS(598), + [anon_sym_any] = ACTIONS(588), + [anon_sym_number] = ACTIONS(588), + [anon_sym_boolean] = ACTIONS(588), + [anon_sym_string] = ACTIONS(588), + [anon_sym_symbol] = ACTIONS(588), + [anon_sym_object] = ACTIONS(588), + [anon_sym_property] = ACTIONS(588), + [anon_sym_signal] = ACTIONS(588), + [anon_sym_on] = ACTIONS(588), + [anon_sym_required] = ACTIONS(588), + [anon_sym_component] = ACTIONS(588), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, - [141] = { - [sym_export_statement] = STATE(4386), - [sym_declaration] = STATE(4386), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4386), - [sym_expression_statement] = STATE(4386), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_statement_block] = STATE(4386), - [sym_if_statement] = STATE(4386), - [sym_switch_statement] = STATE(4386), - [sym_for_statement] = STATE(4386), - [sym_for_in_statement] = STATE(4386), - [sym_while_statement] = STATE(4386), - [sym_do_statement] = STATE(4386), - [sym_try_statement] = STATE(4386), - [sym_with_statement] = STATE(4386), - [sym_break_statement] = STATE(4386), - [sym_continue_statement] = STATE(4386), - [sym_debugger_statement] = STATE(4386), - [sym_return_statement] = STATE(4386), - [sym_throw_statement] = STATE(4386), - [sym_empty_statement] = STATE(4386), - [sym_labeled_statement] = STATE(4386), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4255), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4255), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4255), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), - [sym_comment] = STATE(141), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4255), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(1909), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5725), + [138] = { + [sym_export_statement] = STATE(1506), + [sym_declaration] = STATE(1506), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1506), + [sym_statement] = STATE(1463), + [sym_expression_statement] = STATE(1506), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_statement_block] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_switch_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_for_in_statement] = STATE(1506), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_with_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_debugger_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_statement] = STATE(1506), + [sym_empty_statement] = STATE(1506), + [sym_labeled_statement] = STATE(1506), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7815), + [sym_string] = STATE(3548), + [sym_comment] = STATE(138), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5336), [sym_identifier] = ACTIONS(1030), [anon_sym_export] = ACTIONS(1032), [anon_sym_type] = ACTIONS(1034), @@ -55389,123 +54537,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, - [142] = { - [sym_export_statement] = STATE(1221), - [sym_declaration] = STATE(1221), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1221), - [sym_expression_statement] = STATE(1221), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_statement_block] = STATE(1221), - [sym_if_statement] = STATE(1221), - [sym_switch_statement] = STATE(1221), - [sym_for_statement] = STATE(1221), - [sym_for_in_statement] = STATE(1221), - [sym_while_statement] = STATE(1221), - [sym_do_statement] = STATE(1221), - [sym_try_statement] = STATE(1221), - [sym_with_statement] = STATE(1221), - [sym_break_statement] = STATE(1221), - [sym_continue_statement] = STATE(1221), - [sym_debugger_statement] = STATE(1221), - [sym_return_statement] = STATE(1221), - [sym_throw_statement] = STATE(1221), - [sym_empty_statement] = STATE(1221), - [sym_labeled_statement] = STATE(1221), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7559), - [sym_string] = STATE(3749), - [sym_comment] = STATE(142), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5661), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), + [139] = { + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1356), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), + [sym_comment] = STATE(139), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), + [sym_identifier] = ACTIONS(353), + [anon_sym_export] = ACTIONS(355), + [anon_sym_type] = ACTIONS(359), + [anon_sym_namespace] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(363), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(848), - [anon_sym_from] = ACTIONS(850), - [anon_sym_with] = ACTIONS(852), - [anon_sym_var] = ACTIONS(854), - [anon_sym_let] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), + [anon_sym_import] = ACTIONS(365), + [anon_sym_from] = ACTIONS(367), + [anon_sym_with] = ACTIONS(369), + [anon_sym_var] = ACTIONS(371), + [anon_sym_let] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), + [anon_sym_if] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_for] = ACTIONS(381), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(850), - [anon_sym_while] = ACTIONS(866), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_break] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(878), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_of] = ACTIONS(367), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_try] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_debugger] = ACTIONS(393), + [anon_sym_return] = ACTIONS(395), + [anon_sym_throw] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(399), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(890), + [anon_sym_class] = ACTIONS(403), + [anon_sym_async] = ACTIONS(405), + [anon_sym_function] = ACTIONS(407), + [anon_sym_new] = ACTIONS(409), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -55527,149 +54676,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), - [anon_sym_declare] = ACTIONS(892), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(894), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), - [anon_sym_property] = ACTIONS(850), - [anon_sym_signal] = ACTIONS(850), - [anon_sym_on] = ACTIONS(850), - [anon_sym_required] = ACTIONS(850), - [anon_sym_component] = ACTIONS(850), - [anon_sym_abstract] = ACTIONS(896), - [anon_sym_interface] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(900), - [sym_html_comment] = ACTIONS(5), - }, - [143] = { - [sym_export_statement] = STATE(1629), - [sym_declaration] = STATE(1629), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1629), - [sym_expression_statement] = STATE(1629), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_statement_block] = STATE(1629), - [sym_if_statement] = STATE(1629), - [sym_switch_statement] = STATE(1629), - [sym_for_statement] = STATE(1629), - [sym_for_in_statement] = STATE(1629), - [sym_while_statement] = STATE(1629), - [sym_do_statement] = STATE(1629), - [sym_try_statement] = STATE(1629), - [sym_with_statement] = STATE(1629), - [sym_break_statement] = STATE(1629), - [sym_continue_statement] = STATE(1629), - [sym_debugger_statement] = STATE(1629), - [sym_return_statement] = STATE(1629), - [sym_throw_statement] = STATE(1629), - [sym_empty_statement] = STATE(1629), - [sym_labeled_statement] = STATE(1629), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8194), - [sym_string] = STATE(3749), - [sym_comment] = STATE(143), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5711), - [sym_identifier] = ACTIONS(1094), - [anon_sym_export] = ACTIONS(1096), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), + [anon_sym_static] = ACTIONS(367), + [anon_sym_readonly] = ACTIONS(367), + [anon_sym_get] = ACTIONS(367), + [anon_sym_set] = ACTIONS(367), + [anon_sym_declare] = ACTIONS(413), + [anon_sym_public] = ACTIONS(367), + [anon_sym_private] = ACTIONS(367), + [anon_sym_protected] = ACTIONS(367), + [anon_sym_override] = ACTIONS(367), + [anon_sym_module] = ACTIONS(415), + [anon_sym_any] = ACTIONS(367), + [anon_sym_number] = ACTIONS(367), + [anon_sym_boolean] = ACTIONS(367), + [anon_sym_string] = ACTIONS(367), + [anon_sym_symbol] = ACTIONS(367), + [anon_sym_object] = ACTIONS(367), + [anon_sym_property] = ACTIONS(367), + [anon_sym_signal] = ACTIONS(367), + [anon_sym_on] = ACTIONS(367), + [anon_sym_required] = ACTIONS(367), + [anon_sym_component] = ACTIONS(367), + [anon_sym_abstract] = ACTIONS(417), + [anon_sym_interface] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(421), + [sym_html_comment] = ACTIONS(5), + }, + [140] = { + [sym_export_statement] = STATE(1506), + [sym_declaration] = STATE(1506), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1506), + [sym_statement] = STATE(1496), + [sym_expression_statement] = STATE(1506), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_statement_block] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_switch_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_for_in_statement] = STATE(1506), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_with_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_debugger_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_statement] = STATE(1506), + [sym_empty_statement] = STATE(1506), + [sym_labeled_statement] = STATE(1506), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7815), + [sym_string] = STATE(3548), + [sym_comment] = STATE(140), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5336), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(1104), - [anon_sym_from] = ACTIONS(1106), - [anon_sym_with] = ACTIONS(1108), - [anon_sym_var] = ACTIONS(1110), - [anon_sym_let] = ACTIONS(1112), - [anon_sym_const] = ACTIONS(1114), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1116), - [anon_sym_switch] = ACTIONS(1118), - [anon_sym_for] = ACTIONS(1120), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1106), - [anon_sym_while] = ACTIONS(1122), - [anon_sym_do] = ACTIONS(1124), - [anon_sym_try] = ACTIONS(1126), - [anon_sym_break] = ACTIONS(1128), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_debugger] = ACTIONS(1132), - [anon_sym_return] = ACTIONS(1134), - [anon_sym_throw] = ACTIONS(1136), - [anon_sym_SEMI] = ACTIONS(1138), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_async] = ACTIONS(1142), - [anon_sym_function] = ACTIONS(1144), - [anon_sym_new] = ACTIONS(1146), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -55691,149 +54841,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1106), - [anon_sym_readonly] = ACTIONS(1106), - [anon_sym_get] = ACTIONS(1106), - [anon_sym_set] = ACTIONS(1106), - [anon_sym_declare] = ACTIONS(1148), - [anon_sym_public] = ACTIONS(1106), - [anon_sym_private] = ACTIONS(1106), - [anon_sym_protected] = ACTIONS(1106), - [anon_sym_override] = ACTIONS(1106), - [anon_sym_module] = ACTIONS(1150), - [anon_sym_any] = ACTIONS(1106), - [anon_sym_number] = ACTIONS(1106), - [anon_sym_boolean] = ACTIONS(1106), - [anon_sym_string] = ACTIONS(1106), - [anon_sym_symbol] = ACTIONS(1106), - [anon_sym_object] = ACTIONS(1106), - [anon_sym_property] = ACTIONS(1106), - [anon_sym_signal] = ACTIONS(1106), - [anon_sym_on] = ACTIONS(1106), - [anon_sym_required] = ACTIONS(1106), - [anon_sym_component] = ACTIONS(1106), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_interface] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, - [144] = { - [sym_export_statement] = STATE(1227), - [sym_declaration] = STATE(1226), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1225), - [sym_expression_statement] = STATE(1216), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_statement_block] = STATE(1212), - [sym_if_statement] = STATE(1210), - [sym_switch_statement] = STATE(1209), - [sym_for_statement] = STATE(1208), - [sym_for_in_statement] = STATE(1207), - [sym_while_statement] = STATE(1203), - [sym_do_statement] = STATE(1202), - [sym_try_statement] = STATE(1201), - [sym_with_statement] = STATE(1195), - [sym_break_statement] = STATE(1192), - [sym_continue_statement] = STATE(1191), - [sym_debugger_statement] = STATE(1190), - [sym_return_statement] = STATE(1189), - [sym_throw_statement] = STATE(1188), - [sym_empty_statement] = STATE(1187), - [sym_labeled_statement] = STATE(1185), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7559), - [sym_string] = STATE(3749), - [sym_comment] = STATE(144), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5661), - [sym_identifier] = ACTIONS(838), - [anon_sym_export] = ACTIONS(840), - [anon_sym_type] = ACTIONS(842), - [anon_sym_namespace] = ACTIONS(844), - [anon_sym_LBRACE] = ACTIONS(846), + [141] = { + [sym_export_statement] = STATE(1506), + [sym_declaration] = STATE(1506), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1506), + [sym_statement] = STATE(1515), + [sym_expression_statement] = STATE(1506), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_statement_block] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_switch_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_for_in_statement] = STATE(1506), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_with_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_debugger_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_statement] = STATE(1506), + [sym_empty_statement] = STATE(1506), + [sym_labeled_statement] = STATE(1506), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7815), + [sym_string] = STATE(3548), + [sym_comment] = STATE(141), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5336), + [sym_identifier] = ACTIONS(1030), + [anon_sym_export] = ACTIONS(1032), + [anon_sym_type] = ACTIONS(1034), + [anon_sym_namespace] = ACTIONS(1036), + [anon_sym_LBRACE] = ACTIONS(1038), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(848), - [anon_sym_from] = ACTIONS(850), - [anon_sym_with] = ACTIONS(852), - [anon_sym_var] = ACTIONS(854), - [anon_sym_let] = ACTIONS(856), - [anon_sym_const] = ACTIONS(858), + [anon_sym_import] = ACTIONS(1040), + [anon_sym_from] = ACTIONS(1042), + [anon_sym_with] = ACTIONS(1044), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(1048), + [anon_sym_const] = ACTIONS(1050), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(860), - [anon_sym_switch] = ACTIONS(862), - [anon_sym_for] = ACTIONS(864), + [anon_sym_if] = ACTIONS(1052), + [anon_sym_switch] = ACTIONS(1054), + [anon_sym_for] = ACTIONS(1056), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(850), - [anon_sym_while] = ACTIONS(866), - [anon_sym_do] = ACTIONS(868), - [anon_sym_try] = ACTIONS(870), - [anon_sym_break] = ACTIONS(872), - [anon_sym_continue] = ACTIONS(874), - [anon_sym_debugger] = ACTIONS(876), - [anon_sym_return] = ACTIONS(878), - [anon_sym_throw] = ACTIONS(880), - [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_of] = ACTIONS(1042), + [anon_sym_while] = ACTIONS(1058), + [anon_sym_do] = ACTIONS(1060), + [anon_sym_try] = ACTIONS(1062), + [anon_sym_break] = ACTIONS(1064), + [anon_sym_continue] = ACTIONS(1066), + [anon_sym_debugger] = ACTIONS(1068), + [anon_sym_return] = ACTIONS(1070), + [anon_sym_throw] = ACTIONS(1072), + [anon_sym_SEMI] = ACTIONS(1074), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(886), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(890), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(1078), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1082), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -55855,112 +55006,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(850), - [anon_sym_readonly] = ACTIONS(850), - [anon_sym_get] = ACTIONS(850), - [anon_sym_set] = ACTIONS(850), - [anon_sym_declare] = ACTIONS(892), - [anon_sym_public] = ACTIONS(850), - [anon_sym_private] = ACTIONS(850), - [anon_sym_protected] = ACTIONS(850), - [anon_sym_override] = ACTIONS(850), - [anon_sym_module] = ACTIONS(894), - [anon_sym_any] = ACTIONS(850), - [anon_sym_number] = ACTIONS(850), - [anon_sym_boolean] = ACTIONS(850), - [anon_sym_string] = ACTIONS(850), - [anon_sym_symbol] = ACTIONS(850), - [anon_sym_object] = ACTIONS(850), - [anon_sym_property] = ACTIONS(850), - [anon_sym_signal] = ACTIONS(850), - [anon_sym_on] = ACTIONS(850), - [anon_sym_required] = ACTIONS(850), - [anon_sym_component] = ACTIONS(850), - [anon_sym_abstract] = ACTIONS(896), - [anon_sym_interface] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(900), + [anon_sym_static] = ACTIONS(1042), + [anon_sym_readonly] = ACTIONS(1042), + [anon_sym_get] = ACTIONS(1042), + [anon_sym_set] = ACTIONS(1042), + [anon_sym_declare] = ACTIONS(1084), + [anon_sym_public] = ACTIONS(1042), + [anon_sym_private] = ACTIONS(1042), + [anon_sym_protected] = ACTIONS(1042), + [anon_sym_override] = ACTIONS(1042), + [anon_sym_module] = ACTIONS(1086), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), + [anon_sym_object] = ACTIONS(1042), + [anon_sym_property] = ACTIONS(1042), + [anon_sym_signal] = ACTIONS(1042), + [anon_sym_on] = ACTIONS(1042), + [anon_sym_required] = ACTIONS(1042), + [anon_sym_component] = ACTIONS(1042), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, - [145] = { - [sym_export_statement] = STATE(7376), - [sym_declaration] = STATE(7376), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(7376), - [sym_expression_statement] = STATE(7376), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(7376), - [sym_if_statement] = STATE(7376), - [sym_switch_statement] = STATE(7376), - [sym_for_statement] = STATE(7376), - [sym_for_in_statement] = STATE(7376), - [sym_while_statement] = STATE(7376), - [sym_do_statement] = STATE(7376), - [sym_try_statement] = STATE(7376), - [sym_with_statement] = STATE(7376), - [sym_break_statement] = STATE(7376), - [sym_continue_statement] = STATE(7376), - [sym_debugger_statement] = STATE(7376), - [sym_return_statement] = STATE(7376), - [sym_throw_statement] = STATE(7376), - [sym_empty_statement] = STATE(7376), - [sym_labeled_statement] = STATE(7376), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(145), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), + [142] = { + [sym_export_statement] = STATE(4080), + [sym_declaration] = STATE(4080), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(4080), + [sym_statement] = STATE(4205), + [sym_expression_statement] = STATE(4080), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_statement_block] = STATE(4080), + [sym_if_statement] = STATE(4080), + [sym_switch_statement] = STATE(4080), + [sym_for_statement] = STATE(4080), + [sym_for_in_statement] = STATE(4080), + [sym_while_statement] = STATE(4080), + [sym_do_statement] = STATE(4080), + [sym_try_statement] = STATE(4080), + [sym_with_statement] = STATE(4080), + [sym_break_statement] = STATE(4080), + [sym_continue_statement] = STATE(4080), + [sym_debugger_statement] = STATE(4080), + [sym_return_statement] = STATE(4080), + [sym_throw_statement] = STATE(4080), + [sym_empty_statement] = STATE(4080), + [sym_labeled_statement] = STATE(4080), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(4079), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(4079), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(4079), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), + [sym_comment] = STATE(142), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(4079), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(1767), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5365), [sym_identifier] = ACTIONS(902), [anon_sym_export] = ACTIONS(904), [anon_sym_type] = ACTIONS(906), @@ -56045,123 +55197,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(964), [sym_html_comment] = ACTIONS(5), }, - [146] = { - [sym_export_statement] = STATE(4143), - [sym_declaration] = STATE(4143), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4143), - [sym_expression_statement] = STATE(4143), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_statement_block] = STATE(4143), - [sym_if_statement] = STATE(4143), - [sym_switch_statement] = STATE(4143), - [sym_for_statement] = STATE(4143), - [sym_for_in_statement] = STATE(4143), - [sym_while_statement] = STATE(4143), - [sym_do_statement] = STATE(4143), - [sym_try_statement] = STATE(4143), - [sym_with_statement] = STATE(4143), - [sym_break_statement] = STATE(4143), - [sym_continue_statement] = STATE(4143), - [sym_debugger_statement] = STATE(4143), - [sym_return_statement] = STATE(4143), - [sym_throw_statement] = STATE(4143), - [sym_empty_statement] = STATE(4143), - [sym_labeled_statement] = STATE(4143), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7500), - [sym_string] = STATE(3749), - [sym_comment] = STATE(146), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5737), - [sym_identifier] = ACTIONS(966), - [anon_sym_export] = ACTIONS(968), - [anon_sym_type] = ACTIONS(970), - [anon_sym_namespace] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), + [143] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(7997), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(143), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(976), - [anon_sym_from] = ACTIONS(978), - [anon_sym_with] = ACTIONS(980), - [anon_sym_var] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_const] = ACTIONS(986), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_for] = ACTIONS(992), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(978), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(996), - [anon_sym_try] = ACTIONS(998), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_debugger] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_throw] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1012), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(1016), - [anon_sym_new] = ACTIONS(1018), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -56183,149 +55336,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(978), - [anon_sym_readonly] = ACTIONS(978), - [anon_sym_get] = ACTIONS(978), - [anon_sym_set] = ACTIONS(978), - [anon_sym_declare] = ACTIONS(1020), - [anon_sym_public] = ACTIONS(978), - [anon_sym_private] = ACTIONS(978), - [anon_sym_protected] = ACTIONS(978), - [anon_sym_override] = ACTIONS(978), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(978), - [anon_sym_number] = ACTIONS(978), - [anon_sym_boolean] = ACTIONS(978), - [anon_sym_string] = ACTIONS(978), - [anon_sym_symbol] = ACTIONS(978), - [anon_sym_object] = ACTIONS(978), - [anon_sym_property] = ACTIONS(978), - [anon_sym_signal] = ACTIONS(978), - [anon_sym_on] = ACTIONS(978), - [anon_sym_required] = ACTIONS(978), - [anon_sym_component] = ACTIONS(978), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_interface] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, - [147] = { - [sym_export_statement] = STATE(7475), - [sym_declaration] = STATE(7475), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(7475), - [sym_expression_statement] = STATE(7475), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(7475), - [sym_if_statement] = STATE(7475), - [sym_switch_statement] = STATE(7475), - [sym_for_statement] = STATE(7475), - [sym_for_in_statement] = STATE(7475), - [sym_while_statement] = STATE(7475), - [sym_do_statement] = STATE(7475), - [sym_try_statement] = STATE(7475), - [sym_with_statement] = STATE(7475), - [sym_break_statement] = STATE(7475), - [sym_continue_statement] = STATE(7475), - [sym_debugger_statement] = STATE(7475), - [sym_return_statement] = STATE(7475), - [sym_throw_statement] = STATE(7475), - [sym_empty_statement] = STATE(7475), - [sym_labeled_statement] = STATE(7475), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(147), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), + [144] = { + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1360), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), + [sym_comment] = STATE(144), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), + [sym_identifier] = ACTIONS(353), + [anon_sym_export] = ACTIONS(355), + [anon_sym_type] = ACTIONS(359), + [anon_sym_namespace] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(363), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(912), - [anon_sym_from] = ACTIONS(914), - [anon_sym_with] = ACTIONS(916), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(922), + [anon_sym_import] = ACTIONS(365), + [anon_sym_from] = ACTIONS(367), + [anon_sym_with] = ACTIONS(369), + [anon_sym_var] = ACTIONS(371), + [anon_sym_let] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_for] = ACTIONS(928), + [anon_sym_if] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_for] = ACTIONS(381), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(914), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(940), - [anon_sym_return] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_of] = ACTIONS(367), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_try] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_debugger] = ACTIONS(393), + [anon_sym_return] = ACTIONS(395), + [anon_sym_throw] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(399), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), + [anon_sym_class] = ACTIONS(403), + [anon_sym_async] = ACTIONS(405), + [anon_sym_function] = ACTIONS(407), + [anon_sym_new] = ACTIONS(409), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -56347,112 +55501,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_property] = ACTIONS(914), - [anon_sym_signal] = ACTIONS(914), - [anon_sym_on] = ACTIONS(914), - [anon_sym_required] = ACTIONS(914), - [anon_sym_component] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), + [anon_sym_static] = ACTIONS(367), + [anon_sym_readonly] = ACTIONS(367), + [anon_sym_get] = ACTIONS(367), + [anon_sym_set] = ACTIONS(367), + [anon_sym_declare] = ACTIONS(413), + [anon_sym_public] = ACTIONS(367), + [anon_sym_private] = ACTIONS(367), + [anon_sym_protected] = ACTIONS(367), + [anon_sym_override] = ACTIONS(367), + [anon_sym_module] = ACTIONS(415), + [anon_sym_any] = ACTIONS(367), + [anon_sym_number] = ACTIONS(367), + [anon_sym_boolean] = ACTIONS(367), + [anon_sym_string] = ACTIONS(367), + [anon_sym_symbol] = ACTIONS(367), + [anon_sym_object] = ACTIONS(367), + [anon_sym_property] = ACTIONS(367), + [anon_sym_signal] = ACTIONS(367), + [anon_sym_on] = ACTIONS(367), + [anon_sym_required] = ACTIONS(367), + [anon_sym_component] = ACTIONS(367), + [anon_sym_abstract] = ACTIONS(417), + [anon_sym_interface] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(421), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_export_statement] = STATE(7900), - [sym_declaration] = STATE(7900), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(7900), - [sym_expression_statement] = STATE(7900), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(7900), - [sym_if_statement] = STATE(7900), - [sym_switch_statement] = STATE(7900), - [sym_for_statement] = STATE(7900), - [sym_for_in_statement] = STATE(7900), - [sym_while_statement] = STATE(7900), - [sym_do_statement] = STATE(7900), - [sym_try_statement] = STATE(7900), - [sym_with_statement] = STATE(7900), - [sym_break_statement] = STATE(7900), - [sym_continue_statement] = STATE(7900), - [sym_debugger_statement] = STATE(7900), - [sym_return_statement] = STATE(7900), - [sym_throw_statement] = STATE(7900), - [sym_empty_statement] = STATE(7900), - [sym_labeled_statement] = STATE(7900), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(148), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), + [145] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(7437), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(145), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [146] = { + [sym_export_statement] = STATE(4080), + [sym_declaration] = STATE(4080), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(4080), + [sym_statement] = STATE(4103), + [sym_expression_statement] = STATE(4080), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_statement_block] = STATE(4080), + [sym_if_statement] = STATE(4080), + [sym_switch_statement] = STATE(4080), + [sym_for_statement] = STATE(4080), + [sym_for_in_statement] = STATE(4080), + [sym_while_statement] = STATE(4080), + [sym_do_statement] = STATE(4080), + [sym_try_statement] = STATE(4080), + [sym_with_statement] = STATE(4080), + [sym_break_statement] = STATE(4080), + [sym_continue_statement] = STATE(4080), + [sym_debugger_statement] = STATE(4080), + [sym_return_statement] = STATE(4080), + [sym_throw_statement] = STATE(4080), + [sym_empty_statement] = STATE(4080), + [sym_labeled_statement] = STATE(4080), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(4079), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(4079), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(4079), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), + [sym_comment] = STATE(146), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(4079), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(1767), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5365), [sym_identifier] = ACTIONS(902), [anon_sym_export] = ACTIONS(904), [anon_sym_type] = ACTIONS(906), @@ -56537,250 +55857,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(964), [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_export_statement] = STATE(1682), - [sym_declaration] = STATE(1682), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1682), - [sym_expression_statement] = STATE(1682), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1682), - [sym_if_statement] = STATE(1682), - [sym_switch_statement] = STATE(1682), - [sym_for_statement] = STATE(1682), - [sym_for_in_statement] = STATE(1682), - [sym_while_statement] = STATE(1682), - [sym_do_statement] = STATE(1682), - [sym_try_statement] = STATE(1682), - [sym_with_statement] = STATE(1682), - [sym_break_statement] = STATE(1682), - [sym_continue_statement] = STATE(1682), - [sym_debugger_statement] = STATE(1682), - [sym_return_statement] = STATE(1682), - [sym_throw_statement] = STATE(1682), - [sym_empty_statement] = STATE(1682), - [sym_labeled_statement] = STATE(1682), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(149), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(582), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(588), - [anon_sym_with] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(590), - [anon_sym_const] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(165), - [anon_sym_switch] = ACTIONS(167), - [anon_sym_for] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(588), - [anon_sym_while] = ACTIONS(175), - [anon_sym_do] = ACTIONS(177), - [anon_sym_try] = ACTIONS(179), - [anon_sym_break] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_debugger] = ACTIONS(185), - [anon_sym_return] = ACTIONS(187), - [anon_sym_throw] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(594), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(588), - [anon_sym_readonly] = ACTIONS(588), - [anon_sym_get] = ACTIONS(588), - [anon_sym_set] = ACTIONS(588), - [anon_sym_declare] = ACTIONS(596), - [anon_sym_public] = ACTIONS(588), - [anon_sym_private] = ACTIONS(588), - [anon_sym_protected] = ACTIONS(588), - [anon_sym_override] = ACTIONS(588), - [anon_sym_module] = ACTIONS(598), - [anon_sym_any] = ACTIONS(588), - [anon_sym_number] = ACTIONS(588), - [anon_sym_boolean] = ACTIONS(588), - [anon_sym_string] = ACTIONS(588), - [anon_sym_symbol] = ACTIONS(588), - [anon_sym_object] = ACTIONS(588), - [anon_sym_property] = ACTIONS(588), - [anon_sym_signal] = ACTIONS(588), - [anon_sym_on] = ACTIONS(588), - [anon_sym_required] = ACTIONS(588), - [anon_sym_component] = ACTIONS(588), - [anon_sym_abstract] = ACTIONS(241), - [anon_sym_interface] = ACTIONS(243), - [anon_sym_enum] = ACTIONS(245), - [sym_html_comment] = ACTIONS(5), - }, - [150] = { - [sym_export_statement] = STATE(4455), - [sym_declaration] = STATE(4455), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4455), - [sym_expression_statement] = STATE(4455), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_statement_block] = STATE(4455), - [sym_if_statement] = STATE(4455), - [sym_switch_statement] = STATE(4455), - [sym_for_statement] = STATE(4455), - [sym_for_in_statement] = STATE(4455), - [sym_while_statement] = STATE(4455), - [sym_do_statement] = STATE(4455), - [sym_try_statement] = STATE(4455), - [sym_with_statement] = STATE(4455), - [sym_break_statement] = STATE(4455), - [sym_continue_statement] = STATE(4455), - [sym_debugger_statement] = STATE(4455), - [sym_return_statement] = STATE(4455), - [sym_throw_statement] = STATE(4455), - [sym_empty_statement] = STATE(4455), - [sym_labeled_statement] = STATE(4455), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4255), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4255), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4255), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), - [sym_comment] = STATE(150), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4255), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(1909), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5725), + [147] = { + [sym_export_statement] = STATE(1506), + [sym_declaration] = STATE(1506), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1506), + [sym_statement] = STATE(1466), + [sym_expression_statement] = STATE(1506), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_statement_block] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_switch_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_for_in_statement] = STATE(1506), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_with_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_debugger_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_statement] = STATE(1506), + [sym_empty_statement] = STATE(1506), + [sym_labeled_statement] = STATE(1506), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7815), + [sym_string] = STATE(3548), + [sym_comment] = STATE(147), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5336), [sym_identifier] = ACTIONS(1030), [anon_sym_export] = ACTIONS(1032), [anon_sym_type] = ACTIONS(1034), @@ -56865,86 +56022,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_export_statement] = STATE(4391), - [sym_declaration] = STATE(4391), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4391), - [sym_expression_statement] = STATE(4391), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_statement_block] = STATE(4391), - [sym_if_statement] = STATE(4391), - [sym_switch_statement] = STATE(4391), - [sym_for_statement] = STATE(4391), - [sym_for_in_statement] = STATE(4391), - [sym_while_statement] = STATE(4391), - [sym_do_statement] = STATE(4391), - [sym_try_statement] = STATE(4391), - [sym_with_statement] = STATE(4391), - [sym_break_statement] = STATE(4391), - [sym_continue_statement] = STATE(4391), - [sym_debugger_statement] = STATE(4391), - [sym_return_statement] = STATE(4391), - [sym_throw_statement] = STATE(4391), - [sym_empty_statement] = STATE(4391), - [sym_labeled_statement] = STATE(4391), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4255), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4255), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4255), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), - [sym_comment] = STATE(151), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4255), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(1909), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5725), + [148] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(7338), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(148), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [149] = { + [sym_export_statement] = STATE(1506), + [sym_declaration] = STATE(1506), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1506), + [sym_statement] = STATE(1229), + [sym_expression_statement] = STATE(1506), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_statement_block] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_switch_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_for_in_statement] = STATE(1506), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_with_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_debugger_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_statement] = STATE(1506), + [sym_empty_statement] = STATE(1506), + [sym_labeled_statement] = STATE(1506), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7815), + [sym_string] = STATE(3548), + [sym_comment] = STATE(149), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5336), [sym_identifier] = ACTIONS(1030), [anon_sym_export] = ACTIONS(1032), [anon_sym_type] = ACTIONS(1034), @@ -57029,86 +56352,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_export_statement] = STATE(1284), - [sym_declaration] = STATE(1284), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1284), - [sym_expression_statement] = STATE(1284), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_statement_block] = STATE(1284), - [sym_if_statement] = STATE(1284), - [sym_switch_statement] = STATE(1284), - [sym_for_statement] = STATE(1284), - [sym_for_in_statement] = STATE(1284), - [sym_while_statement] = STATE(1284), - [sym_do_statement] = STATE(1284), - [sym_try_statement] = STATE(1284), - [sym_with_statement] = STATE(1284), - [sym_break_statement] = STATE(1284), - [sym_continue_statement] = STATE(1284), - [sym_debugger_statement] = STATE(1284), - [sym_return_statement] = STATE(1284), - [sym_throw_statement] = STATE(1284), - [sym_empty_statement] = STATE(1284), - [sym_labeled_statement] = STATE(1284), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7399), - [sym_string] = STATE(3749), - [sym_comment] = STATE(152), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5682), + [150] = { + [sym_export_statement] = STATE(1069), + [sym_declaration] = STATE(1069), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1069), + [sym_statement] = STATE(1134), + [sym_expression_statement] = STATE(1069), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_statement_block] = STATE(1069), + [sym_if_statement] = STATE(1069), + [sym_switch_statement] = STATE(1069), + [sym_for_statement] = STATE(1069), + [sym_for_in_statement] = STATE(1069), + [sym_while_statement] = STATE(1069), + [sym_do_statement] = STATE(1069), + [sym_try_statement] = STATE(1069), + [sym_with_statement] = STATE(1069), + [sym_break_statement] = STATE(1069), + [sym_continue_statement] = STATE(1069), + [sym_debugger_statement] = STATE(1069), + [sym_return_statement] = STATE(1069), + [sym_throw_statement] = STATE(1069), + [sym_empty_statement] = STATE(1069), + [sym_labeled_statement] = STATE(1069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7302), + [sym_string] = STATE(3548), + [sym_comment] = STATE(150), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5489), + [sym_identifier] = ACTIONS(966), + [anon_sym_export] = ACTIONS(968), + [anon_sym_type] = ACTIONS(970), + [anon_sym_namespace] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(976), + [anon_sym_from] = ACTIONS(978), + [anon_sym_with] = ACTIONS(980), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(984), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(988), + [anon_sym_switch] = ACTIONS(990), + [anon_sym_for] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(978), + [anon_sym_while] = ACTIONS(994), + [anon_sym_do] = ACTIONS(996), + [anon_sym_try] = ACTIONS(998), + [anon_sym_break] = ACTIONS(1000), + [anon_sym_continue] = ACTIONS(1002), + [anon_sym_debugger] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1006), + [anon_sym_throw] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1010), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(1014), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1018), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(978), + [anon_sym_readonly] = ACTIONS(978), + [anon_sym_get] = ACTIONS(978), + [anon_sym_set] = ACTIONS(978), + [anon_sym_declare] = ACTIONS(1020), + [anon_sym_public] = ACTIONS(978), + [anon_sym_private] = ACTIONS(978), + [anon_sym_protected] = ACTIONS(978), + [anon_sym_override] = ACTIONS(978), + [anon_sym_module] = ACTIONS(1022), + [anon_sym_any] = ACTIONS(978), + [anon_sym_number] = ACTIONS(978), + [anon_sym_boolean] = ACTIONS(978), + [anon_sym_string] = ACTIONS(978), + [anon_sym_symbol] = ACTIONS(978), + [anon_sym_object] = ACTIONS(978), + [anon_sym_property] = ACTIONS(978), + [anon_sym_signal] = ACTIONS(978), + [anon_sym_on] = ACTIONS(978), + [anon_sym_required] = ACTIONS(978), + [anon_sym_component] = ACTIONS(978), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), + [sym_html_comment] = ACTIONS(5), + }, + [151] = { + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1339), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), + [sym_comment] = STATE(151), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), [sym_identifier] = ACTIONS(353), [anon_sym_export] = ACTIONS(355), [anon_sym_type] = ACTIONS(359), @@ -57193,123 +56682,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(421), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_export_statement] = STATE(8142), - [sym_declaration] = STATE(8142), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(8142), - [sym_expression_statement] = STATE(8142), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(8142), - [sym_if_statement] = STATE(8142), - [sym_switch_statement] = STATE(8142), - [sym_for_statement] = STATE(8142), - [sym_for_in_statement] = STATE(8142), - [sym_while_statement] = STATE(8142), - [sym_do_statement] = STATE(8142), - [sym_try_statement] = STATE(8142), - [sym_with_statement] = STATE(8142), - [sym_break_statement] = STATE(8142), - [sym_continue_statement] = STATE(8142), - [sym_debugger_statement] = STATE(8142), - [sym_return_statement] = STATE(8142), - [sym_throw_statement] = STATE(8142), - [sym_empty_statement] = STATE(8142), - [sym_labeled_statement] = STATE(8142), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(153), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), + [152] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(6589), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(152), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(912), - [anon_sym_from] = ACTIONS(914), - [anon_sym_with] = ACTIONS(916), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(922), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_for] = ACTIONS(928), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(914), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(940), - [anon_sym_return] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -57331,149 +56821,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_property] = ACTIONS(914), - [anon_sym_signal] = ACTIONS(914), - [anon_sym_on] = ACTIONS(914), - [anon_sym_required] = ACTIONS(914), - [anon_sym_component] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, - [154] = { - [sym_export_statement] = STATE(8582), - [sym_declaration] = STATE(8582), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(8582), - [sym_expression_statement] = STATE(8582), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(8582), - [sym_if_statement] = STATE(8582), - [sym_switch_statement] = STATE(8582), - [sym_for_statement] = STATE(8582), - [sym_for_in_statement] = STATE(8582), - [sym_while_statement] = STATE(8582), - [sym_do_statement] = STATE(8582), - [sym_try_statement] = STATE(8582), - [sym_with_statement] = STATE(8582), - [sym_break_statement] = STATE(8582), - [sym_continue_statement] = STATE(8582), - [sym_debugger_statement] = STATE(8582), - [sym_return_statement] = STATE(8582), - [sym_throw_statement] = STATE(8582), - [sym_empty_statement] = STATE(8582), - [sym_labeled_statement] = STATE(8582), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(154), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(906), - [anon_sym_namespace] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(910), + [153] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(7508), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(153), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(912), - [anon_sym_from] = ACTIONS(914), - [anon_sym_with] = ACTIONS(916), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(920), - [anon_sym_const] = ACTIONS(922), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(924), - [anon_sym_switch] = ACTIONS(926), - [anon_sym_for] = ACTIONS(928), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(914), - [anon_sym_while] = ACTIONS(930), - [anon_sym_do] = ACTIONS(932), - [anon_sym_try] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_debugger] = ACTIONS(940), - [anon_sym_return] = ACTIONS(942), - [anon_sym_throw] = ACTIONS(944), - [anon_sym_SEMI] = ACTIONS(946), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(954), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -57495,276 +56986,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(914), - [anon_sym_readonly] = ACTIONS(914), - [anon_sym_get] = ACTIONS(914), - [anon_sym_set] = ACTIONS(914), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(914), - [anon_sym_private] = ACTIONS(914), - [anon_sym_protected] = ACTIONS(914), - [anon_sym_override] = ACTIONS(914), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(914), - [anon_sym_number] = ACTIONS(914), - [anon_sym_boolean] = ACTIONS(914), - [anon_sym_string] = ACTIONS(914), - [anon_sym_symbol] = ACTIONS(914), - [anon_sym_object] = ACTIONS(914), - [anon_sym_property] = ACTIONS(914), - [anon_sym_signal] = ACTIONS(914), - [anon_sym_on] = ACTIONS(914), - [anon_sym_required] = ACTIONS(914), - [anon_sym_component] = ACTIONS(914), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), - [sym_html_comment] = ACTIONS(5), - }, - [155] = { - [sym_export_statement] = STATE(1804), - [sym_declaration] = STATE(1803), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1802), - [sym_expression_statement] = STATE(1801), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1659), - [sym_if_statement] = STATE(1798), - [sym_switch_statement] = STATE(1797), - [sym_for_statement] = STATE(1796), - [sym_for_in_statement] = STATE(1794), - [sym_while_statement] = STATE(1791), - [sym_do_statement] = STATE(1790), - [sym_try_statement] = STATE(1788), - [sym_with_statement] = STATE(1786), - [sym_break_statement] = STATE(1784), - [sym_continue_statement] = STATE(1782), - [sym_debugger_statement] = STATE(1781), - [sym_return_statement] = STATE(1780), - [sym_throw_statement] = STATE(1777), - [sym_empty_statement] = STATE(1775), - [sym_labeled_statement] = STATE(1774), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(155), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(582), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(588), - [anon_sym_with] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(590), - [anon_sym_const] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(165), - [anon_sym_switch] = ACTIONS(167), - [anon_sym_for] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(588), - [anon_sym_while] = ACTIONS(175), - [anon_sym_do] = ACTIONS(177), - [anon_sym_try] = ACTIONS(179), - [anon_sym_break] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_debugger] = ACTIONS(185), - [anon_sym_return] = ACTIONS(187), - [anon_sym_throw] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(594), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(588), - [anon_sym_readonly] = ACTIONS(588), - [anon_sym_get] = ACTIONS(588), - [anon_sym_set] = ACTIONS(588), - [anon_sym_declare] = ACTIONS(596), - [anon_sym_public] = ACTIONS(588), - [anon_sym_private] = ACTIONS(588), - [anon_sym_protected] = ACTIONS(588), - [anon_sym_override] = ACTIONS(588), - [anon_sym_module] = ACTIONS(598), - [anon_sym_any] = ACTIONS(588), - [anon_sym_number] = ACTIONS(588), - [anon_sym_boolean] = ACTIONS(588), - [anon_sym_string] = ACTIONS(588), - [anon_sym_symbol] = ACTIONS(588), - [anon_sym_object] = ACTIONS(588), - [anon_sym_property] = ACTIONS(588), - [anon_sym_signal] = ACTIONS(588), - [anon_sym_on] = ACTIONS(588), - [anon_sym_required] = ACTIONS(588), - [anon_sym_component] = ACTIONS(588), - [anon_sym_abstract] = ACTIONS(241), - [anon_sym_interface] = ACTIONS(243), - [anon_sym_enum] = ACTIONS(245), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_export_statement] = STATE(4387), - [sym_declaration] = STATE(4388), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4393), - [sym_expression_statement] = STATE(4394), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_statement_block] = STATE(4318), - [sym_if_statement] = STATE(4385), - [sym_switch_statement] = STATE(4241), - [sym_for_statement] = STATE(4244), - [sym_for_in_statement] = STATE(4301), - [sym_while_statement] = STATE(4308), - [sym_do_statement] = STATE(4330), - [sym_try_statement] = STATE(4333), - [sym_with_statement] = STATE(4358), - [sym_break_statement] = STATE(4359), - [sym_continue_statement] = STATE(4392), - [sym_debugger_statement] = STATE(4396), - [sym_return_statement] = STATE(4399), - [sym_throw_statement] = STATE(4454), - [sym_empty_statement] = STATE(4441), - [sym_labeled_statement] = STATE(4440), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4255), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4255), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4255), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), - [sym_comment] = STATE(156), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4255), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(1909), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5725), + [154] = { + [sym_export_statement] = STATE(1506), + [sym_declaration] = STATE(1506), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1506), + [sym_statement] = STATE(1378), + [sym_expression_statement] = STATE(1506), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_statement_block] = STATE(1506), + [sym_if_statement] = STATE(1506), + [sym_switch_statement] = STATE(1506), + [sym_for_statement] = STATE(1506), + [sym_for_in_statement] = STATE(1506), + [sym_while_statement] = STATE(1506), + [sym_do_statement] = STATE(1506), + [sym_try_statement] = STATE(1506), + [sym_with_statement] = STATE(1506), + [sym_break_statement] = STATE(1506), + [sym_continue_statement] = STATE(1506), + [sym_debugger_statement] = STATE(1506), + [sym_return_statement] = STATE(1506), + [sym_throw_statement] = STATE(1506), + [sym_empty_statement] = STATE(1506), + [sym_labeled_statement] = STATE(1506), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7815), + [sym_string] = STATE(3548), + [sym_comment] = STATE(154), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5336), [sym_identifier] = ACTIONS(1030), [anon_sym_export] = ACTIONS(1032), [anon_sym_type] = ACTIONS(1034), @@ -57849,123 +57177,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_export_statement] = STATE(1741), - [sym_declaration] = STATE(1741), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1741), - [sym_expression_statement] = STATE(1741), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1741), - [sym_if_statement] = STATE(1741), - [sym_switch_statement] = STATE(1741), - [sym_for_statement] = STATE(1741), - [sym_for_in_statement] = STATE(1741), - [sym_while_statement] = STATE(1741), - [sym_do_statement] = STATE(1741), - [sym_try_statement] = STATE(1741), - [sym_with_statement] = STATE(1741), - [sym_break_statement] = STATE(1741), - [sym_continue_statement] = STATE(1741), - [sym_debugger_statement] = STATE(1741), - [sym_return_statement] = STATE(1741), - [sym_throw_statement] = STATE(1741), - [sym_empty_statement] = STATE(1741), - [sym_labeled_statement] = STATE(1741), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), - [sym_comment] = STATE(157), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(582), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(145), + [155] = { + [sym_export_statement] = STATE(3971), + [sym_declaration] = STATE(3971), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(3971), + [sym_statement] = STATE(3970), + [sym_expression_statement] = STATE(3971), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_statement_block] = STATE(3971), + [sym_if_statement] = STATE(3971), + [sym_switch_statement] = STATE(3971), + [sym_for_statement] = STATE(3971), + [sym_for_in_statement] = STATE(3971), + [sym_while_statement] = STATE(3971), + [sym_do_statement] = STATE(3971), + [sym_try_statement] = STATE(3971), + [sym_with_statement] = STATE(3971), + [sym_break_statement] = STATE(3971), + [sym_continue_statement] = STATE(3971), + [sym_debugger_statement] = STATE(3971), + [sym_return_statement] = STATE(3971), + [sym_throw_statement] = STATE(3971), + [sym_empty_statement] = STATE(3971), + [sym_labeled_statement] = STATE(3971), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2862), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7145), + [sym_string] = STATE(3548), + [sym_comment] = STATE(155), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5310), + [sym_identifier] = ACTIONS(1094), + [anon_sym_export] = ACTIONS(1096), + [anon_sym_type] = ACTIONS(1098), + [anon_sym_namespace] = ACTIONS(1100), + [anon_sym_LBRACE] = ACTIONS(1102), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(588), - [anon_sym_with] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(590), - [anon_sym_const] = ACTIONS(163), + [anon_sym_import] = ACTIONS(1104), + [anon_sym_from] = ACTIONS(1106), + [anon_sym_with] = ACTIONS(1108), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(1112), + [anon_sym_const] = ACTIONS(1114), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(165), - [anon_sym_switch] = ACTIONS(167), - [anon_sym_for] = ACTIONS(169), + [anon_sym_if] = ACTIONS(1116), + [anon_sym_switch] = ACTIONS(1118), + [anon_sym_for] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(588), - [anon_sym_while] = ACTIONS(175), - [anon_sym_do] = ACTIONS(177), - [anon_sym_try] = ACTIONS(179), - [anon_sym_break] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_debugger] = ACTIONS(185), - [anon_sym_return] = ACTIONS(187), - [anon_sym_throw] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_of] = ACTIONS(1106), + [anon_sym_while] = ACTIONS(1122), + [anon_sym_do] = ACTIONS(1124), + [anon_sym_try] = ACTIONS(1126), + [anon_sym_break] = ACTIONS(1128), + [anon_sym_continue] = ACTIONS(1130), + [anon_sym_debugger] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1134), + [anon_sym_throw] = ACTIONS(1136), + [anon_sym_SEMI] = ACTIONS(1138), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(594), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1146), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -57987,112 +57316,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(588), - [anon_sym_readonly] = ACTIONS(588), - [anon_sym_get] = ACTIONS(588), - [anon_sym_set] = ACTIONS(588), - [anon_sym_declare] = ACTIONS(596), - [anon_sym_public] = ACTIONS(588), - [anon_sym_private] = ACTIONS(588), - [anon_sym_protected] = ACTIONS(588), - [anon_sym_override] = ACTIONS(588), - [anon_sym_module] = ACTIONS(598), - [anon_sym_any] = ACTIONS(588), - [anon_sym_number] = ACTIONS(588), - [anon_sym_boolean] = ACTIONS(588), - [anon_sym_string] = ACTIONS(588), - [anon_sym_symbol] = ACTIONS(588), - [anon_sym_object] = ACTIONS(588), - [anon_sym_property] = ACTIONS(588), - [anon_sym_signal] = ACTIONS(588), - [anon_sym_on] = ACTIONS(588), - [anon_sym_required] = ACTIONS(588), - [anon_sym_component] = ACTIONS(588), - [anon_sym_abstract] = ACTIONS(241), - [anon_sym_interface] = ACTIONS(243), - [anon_sym_enum] = ACTIONS(245), + [anon_sym_static] = ACTIONS(1106), + [anon_sym_readonly] = ACTIONS(1106), + [anon_sym_get] = ACTIONS(1106), + [anon_sym_set] = ACTIONS(1106), + [anon_sym_declare] = ACTIONS(1148), + [anon_sym_public] = ACTIONS(1106), + [anon_sym_private] = ACTIONS(1106), + [anon_sym_protected] = ACTIONS(1106), + [anon_sym_override] = ACTIONS(1106), + [anon_sym_module] = ACTIONS(1150), + [anon_sym_any] = ACTIONS(1106), + [anon_sym_number] = ACTIONS(1106), + [anon_sym_boolean] = ACTIONS(1106), + [anon_sym_string] = ACTIONS(1106), + [anon_sym_symbol] = ACTIONS(1106), + [anon_sym_object] = ACTIONS(1106), + [anon_sym_property] = ACTIONS(1106), + [anon_sym_signal] = ACTIONS(1106), + [anon_sym_on] = ACTIONS(1106), + [anon_sym_required] = ACTIONS(1106), + [anon_sym_component] = ACTIONS(1106), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_export_statement] = STATE(8270), - [sym_declaration] = STATE(8270), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(8270), - [sym_expression_statement] = STATE(8270), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(8270), - [sym_if_statement] = STATE(8270), - [sym_switch_statement] = STATE(8270), - [sym_for_statement] = STATE(8270), - [sym_for_in_statement] = STATE(8270), - [sym_while_statement] = STATE(8270), - [sym_do_statement] = STATE(8270), - [sym_try_statement] = STATE(8270), - [sym_with_statement] = STATE(8270), - [sym_break_statement] = STATE(8270), - [sym_continue_statement] = STATE(8270), - [sym_debugger_statement] = STATE(8270), - [sym_return_statement] = STATE(8270), - [sym_throw_statement] = STATE(8270), - [sym_empty_statement] = STATE(8270), - [sym_labeled_statement] = STATE(8270), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(158), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), + [156] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(7850), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(156), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, + [157] = { + [sym_export_statement] = STATE(4080), + [sym_declaration] = STATE(4080), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(4080), + [sym_statement] = STATE(4111), + [sym_expression_statement] = STATE(4080), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_statement_block] = STATE(4080), + [sym_if_statement] = STATE(4080), + [sym_switch_statement] = STATE(4080), + [sym_for_statement] = STATE(4080), + [sym_for_in_statement] = STATE(4080), + [sym_while_statement] = STATE(4080), + [sym_do_statement] = STATE(4080), + [sym_try_statement] = STATE(4080), + [sym_with_statement] = STATE(4080), + [sym_break_statement] = STATE(4080), + [sym_continue_statement] = STATE(4080), + [sym_debugger_statement] = STATE(4080), + [sym_return_statement] = STATE(4080), + [sym_throw_statement] = STATE(4080), + [sym_empty_statement] = STATE(4080), + [sym_labeled_statement] = STATE(4080), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(4079), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(4079), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(4079), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), + [sym_comment] = STATE(157), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(4079), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(1767), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5365), [sym_identifier] = ACTIONS(902), [anon_sym_export] = ACTIONS(904), [anon_sym_type] = ACTIONS(906), @@ -58177,123 +57672,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(964), [sym_html_comment] = ACTIONS(5), }, + [158] = { + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(7985), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), + [sym_comment] = STATE(158), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), + [sym_html_comment] = ACTIONS(5), + }, [159] = { - [sym_export_statement] = STATE(1675), - [sym_declaration] = STATE(1675), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1675), - [sym_expression_statement] = STATE(1675), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1675), - [sym_if_statement] = STATE(1675), - [sym_switch_statement] = STATE(1675), - [sym_for_statement] = STATE(1675), - [sym_for_in_statement] = STATE(1675), - [sym_while_statement] = STATE(1675), - [sym_do_statement] = STATE(1675), - [sym_try_statement] = STATE(1675), - [sym_with_statement] = STATE(1675), - [sym_break_statement] = STATE(1675), - [sym_continue_statement] = STATE(1675), - [sym_debugger_statement] = STATE(1675), - [sym_return_statement] = STATE(1675), - [sym_throw_statement] = STATE(1675), - [sym_empty_statement] = STATE(1675), - [sym_labeled_statement] = STATE(1675), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(7292), + [sym_declaration] = STATE(7292), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(7292), + [sym_statement] = STATE(7895), + [sym_expression_statement] = STATE(7292), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_statement_block] = STATE(7292), + [sym_if_statement] = STATE(7292), + [sym_switch_statement] = STATE(7292), + [sym_for_statement] = STATE(7292), + [sym_for_in_statement] = STATE(7292), + [sym_while_statement] = STATE(7292), + [sym_do_statement] = STATE(7292), + [sym_try_statement] = STATE(7292), + [sym_with_statement] = STATE(7292), + [sym_break_statement] = STATE(7292), + [sym_continue_statement] = STATE(7292), + [sym_debugger_statement] = STATE(7292), + [sym_return_statement] = STATE(7292), + [sym_throw_statement] = STATE(7292), + [sym_empty_statement] = STATE(7292), + [sym_labeled_statement] = STATE(7292), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2989), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7875), + [sym_string] = STATE(3548), [sym_comment] = STATE(159), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), - [sym_identifier] = ACTIONS(578), - [anon_sym_export] = ACTIONS(580), - [anon_sym_type] = ACTIONS(582), - [anon_sym_namespace] = ACTIONS(584), - [anon_sym_LBRACE] = ACTIONS(145), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5474), + [sym_identifier] = ACTIONS(838), + [anon_sym_export] = ACTIONS(840), + [anon_sym_type] = ACTIONS(842), + [anon_sym_namespace] = ACTIONS(844), + [anon_sym_LBRACE] = ACTIONS(846), [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(153), - [anon_sym_from] = ACTIONS(588), - [anon_sym_with] = ACTIONS(157), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(590), - [anon_sym_const] = ACTIONS(163), + [anon_sym_import] = ACTIONS(848), + [anon_sym_from] = ACTIONS(850), + [anon_sym_with] = ACTIONS(852), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(856), + [anon_sym_const] = ACTIONS(858), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(165), - [anon_sym_switch] = ACTIONS(167), - [anon_sym_for] = ACTIONS(169), + [anon_sym_if] = ACTIONS(860), + [anon_sym_switch] = ACTIONS(862), + [anon_sym_for] = ACTIONS(864), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(588), - [anon_sym_while] = ACTIONS(175), - [anon_sym_do] = ACTIONS(177), - [anon_sym_try] = ACTIONS(179), - [anon_sym_break] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_debugger] = ACTIONS(185), - [anon_sym_return] = ACTIONS(187), - [anon_sym_throw] = ACTIONS(189), - [anon_sym_SEMI] = ACTIONS(191), + [anon_sym_of] = ACTIONS(850), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(868), + [anon_sym_try] = ACTIONS(870), + [anon_sym_break] = ACTIONS(872), + [anon_sym_continue] = ACTIONS(874), + [anon_sym_debugger] = ACTIONS(876), + [anon_sym_return] = ACTIONS(878), + [anon_sym_throw] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(882), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(592), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(594), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(890), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), [anon_sym_DASH] = ACTIONS(151), @@ -58315,112 +57976,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(588), - [anon_sym_readonly] = ACTIONS(588), - [anon_sym_get] = ACTIONS(588), - [anon_sym_set] = ACTIONS(588), - [anon_sym_declare] = ACTIONS(596), - [anon_sym_public] = ACTIONS(588), - [anon_sym_private] = ACTIONS(588), - [anon_sym_protected] = ACTIONS(588), - [anon_sym_override] = ACTIONS(588), - [anon_sym_module] = ACTIONS(598), - [anon_sym_any] = ACTIONS(588), - [anon_sym_number] = ACTIONS(588), - [anon_sym_boolean] = ACTIONS(588), - [anon_sym_string] = ACTIONS(588), - [anon_sym_symbol] = ACTIONS(588), - [anon_sym_object] = ACTIONS(588), - [anon_sym_property] = ACTIONS(588), - [anon_sym_signal] = ACTIONS(588), - [anon_sym_on] = ACTIONS(588), - [anon_sym_required] = ACTIONS(588), - [anon_sym_component] = ACTIONS(588), - [anon_sym_abstract] = ACTIONS(241), - [anon_sym_interface] = ACTIONS(243), - [anon_sym_enum] = ACTIONS(245), + [anon_sym_static] = ACTIONS(850), + [anon_sym_readonly] = ACTIONS(850), + [anon_sym_get] = ACTIONS(850), + [anon_sym_set] = ACTIONS(850), + [anon_sym_declare] = ACTIONS(892), + [anon_sym_public] = ACTIONS(850), + [anon_sym_private] = ACTIONS(850), + [anon_sym_protected] = ACTIONS(850), + [anon_sym_override] = ACTIONS(850), + [anon_sym_module] = ACTIONS(894), + [anon_sym_any] = ACTIONS(850), + [anon_sym_number] = ACTIONS(850), + [anon_sym_boolean] = ACTIONS(850), + [anon_sym_string] = ACTIONS(850), + [anon_sym_symbol] = ACTIONS(850), + [anon_sym_object] = ACTIONS(850), + [anon_sym_property] = ACTIONS(850), + [anon_sym_signal] = ACTIONS(850), + [anon_sym_on] = ACTIONS(850), + [anon_sym_required] = ACTIONS(850), + [anon_sym_component] = ACTIONS(850), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, [160] = { - [sym_export_statement] = STATE(1691), - [sym_declaration] = STATE(1691), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(1691), - [sym_expression_statement] = STATE(1691), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_statement_block] = STATE(1691), - [sym_if_statement] = STATE(1691), - [sym_switch_statement] = STATE(1691), - [sym_for_statement] = STATE(1691), - [sym_for_in_statement] = STATE(1691), - [sym_while_statement] = STATE(1691), - [sym_do_statement] = STATE(1691), - [sym_try_statement] = STATE(1691), - [sym_with_statement] = STATE(1691), - [sym_break_statement] = STATE(1691), - [sym_continue_statement] = STATE(1691), - [sym_debugger_statement] = STATE(1691), - [sym_return_statement] = STATE(1691), - [sym_throw_statement] = STATE(1691), - [sym_empty_statement] = STATE(1691), - [sym_labeled_statement] = STATE(1691), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8004), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(1605), + [sym_declaration] = STATE(1605), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1605), + [sym_statement] = STATE(1601), + [sym_expression_statement] = STATE(1605), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_statement_block] = STATE(1605), + [sym_if_statement] = STATE(1605), + [sym_switch_statement] = STATE(1605), + [sym_for_statement] = STATE(1605), + [sym_for_in_statement] = STATE(1605), + [sym_while_statement] = STATE(1605), + [sym_do_statement] = STATE(1605), + [sym_try_statement] = STATE(1605), + [sym_with_statement] = STATE(1605), + [sym_break_statement] = STATE(1605), + [sym_continue_statement] = STATE(1605), + [sym_debugger_statement] = STATE(1605), + [sym_return_statement] = STATE(1605), + [sym_throw_statement] = STATE(1605), + [sym_empty_statement] = STATE(1605), + [sym_labeled_statement] = STATE(1605), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7665), + [sym_string] = STATE(3548), [sym_comment] = STATE(160), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5724), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5327), [sym_identifier] = ACTIONS(578), [anon_sym_export] = ACTIONS(580), [anon_sym_type] = ACTIONS(582), @@ -58506,249 +58168,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [161] = { - [sym_export_statement] = STATE(4002), - [sym_declaration] = STATE(4002), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(4002), - [sym_expression_statement] = STATE(4002), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_statement_block] = STATE(4002), - [sym_if_statement] = STATE(4002), - [sym_switch_statement] = STATE(4002), - [sym_for_statement] = STATE(4002), - [sym_for_in_statement] = STATE(4002), - [sym_while_statement] = STATE(4002), - [sym_do_statement] = STATE(4002), - [sym_try_statement] = STATE(4002), - [sym_with_statement] = STATE(4002), - [sym_break_statement] = STATE(4002), - [sym_continue_statement] = STATE(4002), - [sym_debugger_statement] = STATE(4002), - [sym_return_statement] = STATE(4002), - [sym_throw_statement] = STATE(4002), - [sym_empty_statement] = STATE(4002), - [sym_labeled_statement] = STATE(4002), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3116), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7500), - [sym_string] = STATE(3749), + [sym_export_statement] = STATE(4080), + [sym_declaration] = STATE(4080), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(4080), + [sym_statement] = STATE(4118), + [sym_expression_statement] = STATE(4080), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_statement_block] = STATE(4080), + [sym_if_statement] = STATE(4080), + [sym_switch_statement] = STATE(4080), + [sym_for_statement] = STATE(4080), + [sym_for_in_statement] = STATE(4080), + [sym_while_statement] = STATE(4080), + [sym_do_statement] = STATE(4080), + [sym_try_statement] = STATE(4080), + [sym_with_statement] = STATE(4080), + [sym_break_statement] = STATE(4080), + [sym_continue_statement] = STATE(4080), + [sym_debugger_statement] = STATE(4080), + [sym_return_statement] = STATE(4080), + [sym_throw_statement] = STATE(4080), + [sym_empty_statement] = STATE(4080), + [sym_labeled_statement] = STATE(4080), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(4079), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(4079), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(4079), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(161), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5737), - [sym_identifier] = ACTIONS(966), - [anon_sym_export] = ACTIONS(968), - [anon_sym_type] = ACTIONS(970), - [anon_sym_namespace] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(976), - [anon_sym_from] = ACTIONS(978), - [anon_sym_with] = ACTIONS(980), - [anon_sym_var] = ACTIONS(982), - [anon_sym_let] = ACTIONS(984), - [anon_sym_const] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(988), - [anon_sym_switch] = ACTIONS(990), - [anon_sym_for] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(978), - [anon_sym_while] = ACTIONS(994), - [anon_sym_do] = ACTIONS(996), - [anon_sym_try] = ACTIONS(998), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1002), - [anon_sym_debugger] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1006), - [anon_sym_throw] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1012), - [anon_sym_async] = ACTIONS(1014), - [anon_sym_function] = ACTIONS(1016), - [anon_sym_new] = ACTIONS(1018), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(978), - [anon_sym_readonly] = ACTIONS(978), - [anon_sym_get] = ACTIONS(978), - [anon_sym_set] = ACTIONS(978), - [anon_sym_declare] = ACTIONS(1020), - [anon_sym_public] = ACTIONS(978), - [anon_sym_private] = ACTIONS(978), - [anon_sym_protected] = ACTIONS(978), - [anon_sym_override] = ACTIONS(978), - [anon_sym_module] = ACTIONS(1022), - [anon_sym_any] = ACTIONS(978), - [anon_sym_number] = ACTIONS(978), - [anon_sym_boolean] = ACTIONS(978), - [anon_sym_string] = ACTIONS(978), - [anon_sym_symbol] = ACTIONS(978), - [anon_sym_object] = ACTIONS(978), - [anon_sym_property] = ACTIONS(978), - [anon_sym_signal] = ACTIONS(978), - [anon_sym_on] = ACTIONS(978), - [anon_sym_required] = ACTIONS(978), - [anon_sym_component] = ACTIONS(978), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_interface] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1028), - [sym_html_comment] = ACTIONS(5), - }, - [162] = { - [sym_export_statement] = STATE(7879), - [sym_declaration] = STATE(7876), - [sym_import] = STATE(5160), - [sym_import_statement] = STATE(7875), - [sym_expression_statement] = STATE(7874), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_statement_block] = STATE(7873), - [sym_if_statement] = STATE(7872), - [sym_switch_statement] = STATE(7871), - [sym_for_statement] = STATE(7870), - [sym_for_in_statement] = STATE(7867), - [sym_while_statement] = STATE(7866), - [sym_do_statement] = STATE(7862), - [sym_try_statement] = STATE(7861), - [sym_with_statement] = STATE(7858), - [sym_break_statement] = STATE(7857), - [sym_continue_statement] = STATE(7856), - [sym_debugger_statement] = STATE(7855), - [sym_return_statement] = STATE(7793), - [sym_throw_statement] = STATE(7848), - [sym_empty_statement] = STATE(7847), - [sym_labeled_statement] = STATE(7841), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3097), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7673), - [sym_string] = STATE(3749), - [sym_comment] = STATE(162), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5697), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(4079), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(1767), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5365), [sym_identifier] = ACTIONS(902), [anon_sym_export] = ACTIONS(904), [anon_sym_type] = ACTIONS(906), @@ -58833,88 +58332,253 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(964), [sym_html_comment] = ACTIONS(5), }, + [162] = { + [sym_export_statement] = STATE(1373), + [sym_declaration] = STATE(1373), + [sym_import] = STATE(4938), + [sym_import_statement] = STATE(1373), + [sym_statement] = STATE(1366), + [sym_expression_statement] = STATE(1373), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_statement_block] = STATE(1373), + [sym_if_statement] = STATE(1373), + [sym_switch_statement] = STATE(1373), + [sym_for_statement] = STATE(1373), + [sym_for_in_statement] = STATE(1373), + [sym_while_statement] = STATE(1373), + [sym_do_statement] = STATE(1373), + [sym_try_statement] = STATE(1373), + [sym_with_statement] = STATE(1373), + [sym_break_statement] = STATE(1373), + [sym_continue_statement] = STATE(1373), + [sym_debugger_statement] = STATE(1373), + [sym_return_statement] = STATE(1373), + [sym_throw_statement] = STATE(1373), + [sym_empty_statement] = STATE(1373), + [sym_labeled_statement] = STATE(1373), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2992), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7823), + [sym_string] = STATE(3548), + [sym_comment] = STATE(162), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5423), + [sym_identifier] = ACTIONS(353), + [anon_sym_export] = ACTIONS(355), + [anon_sym_type] = ACTIONS(359), + [anon_sym_namespace] = ACTIONS(361), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(365), + [anon_sym_from] = ACTIONS(367), + [anon_sym_with] = ACTIONS(369), + [anon_sym_var] = ACTIONS(371), + [anon_sym_let] = ACTIONS(373), + [anon_sym_const] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_if] = ACTIONS(377), + [anon_sym_switch] = ACTIONS(379), + [anon_sym_for] = ACTIONS(381), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(367), + [anon_sym_while] = ACTIONS(383), + [anon_sym_do] = ACTIONS(385), + [anon_sym_try] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_debugger] = ACTIONS(393), + [anon_sym_return] = ACTIONS(395), + [anon_sym_throw] = ACTIONS(397), + [anon_sym_SEMI] = ACTIONS(399), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(403), + [anon_sym_async] = ACTIONS(405), + [anon_sym_function] = ACTIONS(407), + [anon_sym_new] = ACTIONS(409), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(367), + [anon_sym_readonly] = ACTIONS(367), + [anon_sym_get] = ACTIONS(367), + [anon_sym_set] = ACTIONS(367), + [anon_sym_declare] = ACTIONS(413), + [anon_sym_public] = ACTIONS(367), + [anon_sym_private] = ACTIONS(367), + [anon_sym_protected] = ACTIONS(367), + [anon_sym_override] = ACTIONS(367), + [anon_sym_module] = ACTIONS(415), + [anon_sym_any] = ACTIONS(367), + [anon_sym_number] = ACTIONS(367), + [anon_sym_boolean] = ACTIONS(367), + [anon_sym_string] = ACTIONS(367), + [anon_sym_symbol] = ACTIONS(367), + [anon_sym_object] = ACTIONS(367), + [anon_sym_property] = ACTIONS(367), + [anon_sym_signal] = ACTIONS(367), + [anon_sym_on] = ACTIONS(367), + [anon_sym_required] = ACTIONS(367), + [anon_sym_component] = ACTIONS(367), + [anon_sym_abstract] = ACTIONS(417), + [anon_sym_interface] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(421), + [sym_html_comment] = ACTIONS(5), + }, [163] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(163), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5981), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7058), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5804), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6981), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), [sym_identifier] = ACTIONS(1158), [anon_sym_export] = ACTIONS(1160), [anon_sym_STAR] = ACTIONS(23), @@ -58997,94 +58661,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [164] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(164), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5981), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7121), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5804), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6981), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), [sym_identifier] = ACTIONS(1158), [anon_sym_export] = ACTIONS(1160), [anon_sym_STAR] = ACTIONS(23), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1166), [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -59096,7 +58760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1208), + [anon_sym_RBRACK] = ACTIONS(1206), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -59160,87 +58824,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [165] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(165), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5981), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7058), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5804), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6981), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), [sym_identifier] = ACTIONS(1158), [anon_sym_export] = ACTIONS(1160), [anon_sym_STAR] = ACTIONS(23), @@ -59259,7 +58923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1210), + [anon_sym_RBRACK] = ACTIONS(1208), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -59323,413 +58987,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [166] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), [sym_comment] = STATE(166), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5981), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7058), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(1158), - [anon_sym_export] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1168), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1212), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1182), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1192), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(94), - [sym_number] = ACTIONS(96), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(1198), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(96), - [sym_false] = ACTIONS(96), - [sym_null] = ACTIONS(96), - [sym_undefined] = ACTIONS(1200), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_declare] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1160), - [anon_sym_private] = ACTIONS(1160), - [anon_sym_protected] = ACTIONS(1160), - [anon_sym_override] = ACTIONS(1160), - [anon_sym_module] = ACTIONS(1160), - [anon_sym_any] = ACTIONS(1204), - [anon_sym_number] = ACTIONS(1204), - [anon_sym_boolean] = ACTIONS(1204), - [anon_sym_string] = ACTIONS(1204), - [anon_sym_symbol] = ACTIONS(1204), - [anon_sym_object] = ACTIONS(1204), - [anon_sym_property] = ACTIONS(1160), - [anon_sym_signal] = ACTIONS(1160), - [anon_sym_on] = ACTIONS(1160), - [anon_sym_required] = ACTIONS(1160), - [anon_sym_component] = ACTIONS(1160), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [167] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(7051), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), [sym_comment] = STATE(167), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5981), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7058), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7057), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(1158), - [anon_sym_export] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1164), - [anon_sym_COMMA] = ACTIONS(1166), - [anon_sym_typeof] = ACTIONS(1168), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1214), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1182), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1186), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1188), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1192), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(94), - [sym_number] = ACTIONS(96), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(1198), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(96), - [sym_false] = ACTIONS(96), - [sym_null] = ACTIONS(96), - [sym_undefined] = ACTIONS(1200), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_declare] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1160), - [anon_sym_private] = ACTIONS(1160), - [anon_sym_protected] = ACTIONS(1160), - [anon_sym_override] = ACTIONS(1160), - [anon_sym_module] = ACTIONS(1160), - [anon_sym_any] = ACTIONS(1204), - [anon_sym_number] = ACTIONS(1204), - [anon_sym_boolean] = ACTIONS(1204), - [anon_sym_string] = ACTIONS(1204), - [anon_sym_symbol] = ACTIONS(1204), - [anon_sym_object] = ACTIONS(1204), - [anon_sym_property] = ACTIONS(1160), - [anon_sym_signal] = ACTIONS(1160), - [anon_sym_on] = ACTIONS(1160), - [anon_sym_required] = ACTIONS(1160), - [anon_sym_component] = ACTIONS(1160), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [168] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), [sym_comment] = STATE(168), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1245), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -59771,8 +59435,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), @@ -59782,117 +59446,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_QMARK] = ACTIONS(1247), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(7051), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(169), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5981), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7058), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7057), - [aux_sym_array_pattern_repeat1] = STATE(6860), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5804), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6981), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), [sym_identifier] = ACTIONS(1158), [anon_sym_export] = ACTIONS(1160), [anon_sym_STAR] = ACTIONS(23), @@ -59911,7 +59575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1247), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -59975,87 +59639,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [170] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(170), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5981), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7058), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5804), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6981), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), [sym_identifier] = ACTIONS(1158), [anon_sym_export] = ACTIONS(1160), [anon_sym_STAR] = ACTIONS(23), @@ -60074,7 +59738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1251), + [anon_sym_RBRACK] = ACTIONS(1249), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -60138,413 +59802,413 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [171] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3068), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6765), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(171), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_typeof] = ACTIONS(87), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5804), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6981), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6768), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1166), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(48), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_RBRACK] = ACTIONS(1251), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1180), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1192), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1200), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_QMARK] = ACTIONS(1247), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1204), + [anon_sym_number] = ACTIONS(1204), + [anon_sym_boolean] = ACTIONS(1204), + [anon_sym_string] = ACTIONS(1204), + [anon_sym_symbol] = ACTIONS(1204), + [anon_sym_object] = ACTIONS(1204), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, [172] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(172), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_typeof] = ACTIONS(87), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5804), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7094), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(1158), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1164), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(48), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_RBRACK] = ACTIONS(1255), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1180), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1186), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1192), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(1198), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1200), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_QMARK] = ACTIONS(1247), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1202), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1204), + [anon_sym_number] = ACTIONS(1204), + [anon_sym_boolean] = ACTIONS(1204), + [anon_sym_string] = ACTIONS(1204), + [anon_sym_symbol] = ACTIONS(1204), + [anon_sym_object] = ACTIONS(1204), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, [173] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(173), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5981), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7058), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5804), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6981), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), [sym_identifier] = ACTIONS(1158), [anon_sym_export] = ACTIONS(1160), [anon_sym_STAR] = ACTIONS(23), @@ -60627,250 +60291,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [174] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(174), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(48), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1218), - [anon_sym_readonly] = ACTIONS(1218), - [anon_sym_get] = ACTIONS(1218), - [anon_sym_set] = ACTIONS(1218), - [anon_sym_QMARK] = ACTIONS(1247), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [175] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), - [sym_comment] = STATE(175), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5981), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7058), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5804), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6981), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), [sym_identifier] = ACTIONS(1158), [anon_sym_export] = ACTIONS(1160), [anon_sym_STAR] = ACTIONS(23), @@ -60889,7 +60390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_RBRACK] = ACTIONS(1259), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -60952,88 +60453,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, + [175] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), + [sym_comment] = STATE(175), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1235), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1239), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, [176] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3068), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6765), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(176), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5981), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7058), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5804), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6981), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6768), + [aux_sym_array_pattern_repeat1] = STATE(6901), [sym_identifier] = ACTIONS(1158), [anon_sym_export] = ACTIONS(1160), [anon_sym_STAR] = ACTIONS(23), @@ -61116,53 +60780,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [177] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(177), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5805), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5979), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(28), @@ -61278,53 +60942,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(178), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6117), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6023), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(28), @@ -61440,53 +61104,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(179), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6090), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5971), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(28), @@ -61602,73 +61266,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(180), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6117), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5521), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(25), + [anon_sym_EQ] = ACTIONS(128), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(131), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(21), [anon_sym_let] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_RPAREN] = ACTIONS(131), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(21), - [anon_sym_COLON] = ACTIONS(34), + [anon_sym_COLON] = ACTIONS(131), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1272), [anon_sym_LTtemplate_GT] = ACTIONS(54), @@ -61679,7 +61343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(62), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(1275), [anon_sym_using] = ACTIONS(70), @@ -61730,7 +61394,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1280), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1287), + [sym_this] = ACTIONS(1291), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -61764,53 +61428,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(181), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6178), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5973), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(28), @@ -61892,7 +61556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1280), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1291), + [sym_this] = ACTIONS(1293), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -61926,53 +61590,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(182), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6072), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5745), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(28), @@ -62054,7 +61718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1280), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1293), + [sym_this] = ACTIONS(1295), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -62088,73 +61752,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(183), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6276), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5521), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(21), - [anon_sym_EQ] = ACTIONS(128), + [anon_sym_EQ] = ACTIONS(25), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(34), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(21), [anon_sym_let] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(43), [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(34), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(21), - [anon_sym_COLON] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(34), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1272), [anon_sym_LTtemplate_GT] = ACTIONS(54), @@ -62165,7 +61829,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(62), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(1275), [anon_sym_using] = ACTIONS(70), @@ -62216,7 +61880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1280), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1295), + [sym_this] = ACTIONS(1291), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -62250,53 +61914,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(184), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6271), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5747), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(28), @@ -62412,51 +62076,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(185), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), @@ -62533,8 +62197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -62573,86 +62237,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(186), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1321), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(25), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(34), - [anon_sym_RBRACE] = ACTIONS(34), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_RPAREN] = ACTIONS(1321), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1321), - [anon_sym_COLON] = ACTIONS(34), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(1321), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1321), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1331), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -62694,8 +62358,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -62707,113 +62371,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(1321), - [anon_sym_get] = ACTIONS(1321), - [anon_sym_set] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(131), - [anon_sym_declare] = ACTIONS(1321), - [anon_sym_public] = ACTIONS(1321), - [anon_sym_private] = ACTIONS(1321), - [anon_sym_protected] = ACTIONS(1321), - [anon_sym_override] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_any] = ACTIONS(1321), - [anon_sym_number] = ACTIONS(1321), - [anon_sym_boolean] = ACTIONS(1321), - [anon_sym_string] = ACTIONS(1321), - [anon_sym_symbol] = ACTIONS(1321), - [anon_sym_object] = ACTIONS(1321), - [anon_sym_property] = ACTIONS(1321), - [anon_sym_signal] = ACTIONS(1321), - [anon_sym_on] = ACTIONS(1321), - [anon_sym_required] = ACTIONS(1321), - [anon_sym_component] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1321), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(187), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(25), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(34), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(34), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_COLON] = ACTIONS(1335), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(34), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_RBRACK] = ACTIONS(1335), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1333), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1335), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -62855,8 +62519,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -62868,113 +62532,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_QMARK] = ACTIONS(1335), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(188), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1321), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(25), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(34), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(28), + [anon_sym_RPAREN] = ACTIONS(34), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1321), - [anon_sym_COLON] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(34), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1333), [anon_sym_function] = ACTIONS(64), [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1331), + [anon_sym_new] = ACTIONS(1335), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -63016,8 +62679,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -63029,111 +62692,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(1321), - [anon_sym_get] = ACTIONS(1321), - [anon_sym_set] = ACTIONS(1321), - [anon_sym_declare] = ACTIONS(1321), - [anon_sym_public] = ACTIONS(1321), - [anon_sym_private] = ACTIONS(1321), - [anon_sym_protected] = ACTIONS(1321), - [anon_sym_override] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_any] = ACTIONS(1321), - [anon_sym_number] = ACTIONS(1321), - [anon_sym_boolean] = ACTIONS(1321), - [anon_sym_string] = ACTIONS(1321), - [anon_sym_symbol] = ACTIONS(1321), - [anon_sym_object] = ACTIONS(1321), - [anon_sym_property] = ACTIONS(1321), - [anon_sym_signal] = ACTIONS(1321), - [anon_sym_on] = ACTIONS(1321), - [anon_sym_required] = ACTIONS(1321), - [anon_sym_component] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(189), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1321), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(25), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1337), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_RPAREN] = ACTIONS(28), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1321), - [anon_sym_COLON] = ACTIONS(34), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1333), [anon_sym_function] = ACTIONS(64), [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1331), + [anon_sym_new] = ACTIONS(1335), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -63175,8 +62840,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -63188,101 +62853,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(1321), - [anon_sym_get] = ACTIONS(1321), - [anon_sym_set] = ACTIONS(1321), - [anon_sym_QMARK] = ACTIONS(131), - [anon_sym_declare] = ACTIONS(1321), - [anon_sym_public] = ACTIONS(1321), - [anon_sym_private] = ACTIONS(1321), - [anon_sym_protected] = ACTIONS(1321), - [anon_sym_override] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_any] = ACTIONS(1321), - [anon_sym_number] = ACTIONS(1321), - [anon_sym_boolean] = ACTIONS(1321), - [anon_sym_string] = ACTIONS(1321), - [anon_sym_symbol] = ACTIONS(1321), - [anon_sym_object] = ACTIONS(1321), - [anon_sym_property] = ACTIONS(1321), - [anon_sym_signal] = ACTIONS(1321), - [anon_sym_on] = ACTIONS(1321), - [anon_sym_required] = ACTIONS(1321), - [anon_sym_component] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2752), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(7957), + [sym_string] = STATE(3535), [sym_comment] = STATE(190), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1321), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym__type] = STATE(6189), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1339), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1341), + [anon_sym_typeof] = ACTIONS(1343), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1347), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1180), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1182), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(1349), + [anon_sym_DASH] = ACTIONS(1349), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1192), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1351), + [sym_number] = ACTIONS(1353), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(1355), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1353), + [sym_false] = ACTIONS(1353), + [sym_null] = ACTIONS(1353), + [sym_undefined] = ACTIONS(1357), + [anon_sym_AT] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1361), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1363), + [anon_sym_private] = ACTIONS(1363), + [anon_sym_protected] = ACTIONS(1363), + [anon_sym_override] = ACTIONS(1365), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1367), + [anon_sym_number] = ACTIONS(1367), + [anon_sym_boolean] = ACTIONS(1367), + [anon_sym_string] = ACTIONS(1367), + [anon_sym_symbol] = ACTIONS(1367), + [anon_sym_object] = ACTIONS(1367), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [191] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(191), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_RPAREN] = ACTIONS(28), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1321), + [anon_sym_of] = ACTIONS(1301), [anon_sym_COLON] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), @@ -63290,11 +63114,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1331), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -63336,8 +63160,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -63349,100 +63173,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(1321), - [anon_sym_get] = ACTIONS(1321), - [anon_sym_set] = ACTIONS(1321), - [anon_sym_declare] = ACTIONS(1321), - [anon_sym_public] = ACTIONS(1321), - [anon_sym_private] = ACTIONS(1321), - [anon_sym_protected] = ACTIONS(1321), - [anon_sym_override] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_any] = ACTIONS(1321), - [anon_sym_number] = ACTIONS(1321), - [anon_sym_boolean] = ACTIONS(1321), - [anon_sym_string] = ACTIONS(1321), - [anon_sym_symbol] = ACTIONS(1321), - [anon_sym_object] = ACTIONS(1321), - [anon_sym_property] = ACTIONS(1321), - [anon_sym_signal] = ACTIONS(1321), - [anon_sym_on] = ACTIONS(1321), - [anon_sym_required] = ACTIONS(1321), - [anon_sym_component] = ACTIONS(1321), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [191] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(191), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [192] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(192), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1337), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_RPAREN] = ACTIONS(28), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_of] = ACTIONS(1325), [anon_sym_COLON] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), @@ -63450,11 +63274,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1333), [anon_sym_function] = ACTIONS(64), [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1335), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -63496,8 +63320,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -63509,271 +63333,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [192] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2890), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8209), - [sym_string] = STATE(3603), - [sym_comment] = STATE(192), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym__type] = STATE(6344), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(1339), - [anon_sym_export] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1341), - [anon_sym_typeof] = ACTIONS(1343), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_RPAREN] = ACTIONS(1345), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1347), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1182), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1192), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1351), - [sym_number] = ACTIONS(1353), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(1355), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(1353), - [sym_false] = ACTIONS(1353), - [sym_null] = ACTIONS(1353), - [sym_undefined] = ACTIONS(1357), - [anon_sym_AT] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_declare] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1363), - [anon_sym_protected] = ACTIONS(1363), - [anon_sym_override] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1160), - [anon_sym_any] = ACTIONS(1367), - [anon_sym_number] = ACTIONS(1367), - [anon_sym_boolean] = ACTIONS(1367), - [anon_sym_string] = ACTIONS(1367), - [anon_sym_symbol] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(1367), - [anon_sym_property] = ACTIONS(1160), - [anon_sym_signal] = ACTIONS(1160), - [anon_sym_on] = ACTIONS(1160), - [anon_sym_required] = ACTIONS(1160), - [anon_sym_component] = ACTIONS(1160), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym_html_comment] = ACTIONS(5), - }, [193] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2787), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8319), - [sym_string] = STATE(3603), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2831), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8188), + [sym_string] = STATE(3535), [sym_comment] = STATE(193), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym__type] = STATE(6344), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(379), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym__type] = STATE(6248), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(1339), [anon_sym_export] = ACTIONS(1160), [anon_sym_STAR] = ACTIONS(23), @@ -63855,85 +63519,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2890), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8209), - [sym_string] = STATE(3603), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2831), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8188), + [sym_string] = STATE(3535), [sym_comment] = STATE(194), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym__type] = STATE(6548), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(379), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym__type] = STATE(6189), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(1339), [anon_sym_export] = ACTIONS(1160), [anon_sym_STAR] = ACTIONS(23), @@ -64015,84 +63679,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [195] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), [sym_comment] = STATE(195), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1212), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1371), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -64134,8 +63798,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), @@ -64145,272 +63809,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [196] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3279), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8523), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(196), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym__type] = STATE(6364), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(788), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(32), + [anon_sym_typeof] = ACTIONS(37), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(52), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(62), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(82), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_new] = ACTIONS(68), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(80), + [anon_sym_DASH] = ACTIONS(80), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1280), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1373), [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(104), + [anon_sym_AT] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(112), + [anon_sym_number] = ACTIONS(112), + [anon_sym_boolean] = ACTIONS(112), + [anon_sym_string] = ACTIONS(112), + [anon_sym_symbol] = ACTIONS(112), + [anon_sym_object] = ACTIONS(112), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, [197] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(197), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym__type] = STATE(6122), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(788), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(32), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(52), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(68), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(80), + [anon_sym_DASH] = ACTIONS(80), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1373), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(104), + [anon_sym_AT] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(112), + [anon_sym_number] = ACTIONS(112), + [anon_sym_boolean] = ACTIONS(112), + [anon_sym_string] = ACTIONS(112), + [anon_sym_symbol] = ACTIONS(112), + [anon_sym_object] = ACTIONS(112), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [198] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), + [sym_comment] = STATE(198), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym__type] = STATE(6323), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(788), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(32), + [anon_sym_typeof] = ACTIONS(37), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(52), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(68), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(80), + [anon_sym_DASH] = ACTIONS(80), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1373), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(104), + [anon_sym_AT] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(1375), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(112), + [anon_sym_number] = ACTIONS(112), + [anon_sym_boolean] = ACTIONS(112), + [anon_sym_string] = ACTIONS(112), + [anon_sym_symbol] = ACTIONS(112), + [anon_sym_object] = ACTIONS(112), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_html_comment] = ACTIONS(5), + }, + [199] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), + [sym_comment] = STATE(199), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1212), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1392), + [anon_sym_COLON] = ACTIONS(1381), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -64452,8 +64434,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), @@ -64463,113 +64445,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [198] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(198), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [200] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), + [sym_comment] = STATE(200), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1383), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -64596,7 +64578,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -64611,124 +64593,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [199] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), - [sym_comment] = STATE(199), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [201] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), + [sym_comment] = STATE(201), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1212), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1394), + [anon_sym_COLON] = ACTIONS(1385), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -64770,8 +64752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), @@ -64781,273 +64763,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [200] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), - [sym_comment] = STATE(200), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym__type] = STATE(6518), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(19), - [anon_sym_export] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(32), - [anon_sym_typeof] = ACTIONS(37), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_RPAREN] = ACTIONS(1345), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(52), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(68), - [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(80), - [anon_sym_DASH] = ACTIONS(80), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(89), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(94), - [sym_number] = ACTIONS(96), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1396), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(96), - [sym_false] = ACTIONS(96), - [sym_null] = ACTIONS(96), - [sym_undefined] = ACTIONS(104), - [anon_sym_AT] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(1398), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(112), - [anon_sym_number] = ACTIONS(112), - [anon_sym_boolean] = ACTIONS(112), - [anon_sym_string] = ACTIONS(112), - [anon_sym_symbol] = ACTIONS(112), - [anon_sym_object] = ACTIONS(112), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym_html_comment] = ACTIONS(5), - }, - [201] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), - [sym_comment] = STATE(201), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [202] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3039), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8164), + [sym_string] = STATE(2894), + [sym_comment] = STATE(202), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_typeof] = ACTIONS(87), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(48), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_await] = ACTIONS(1172), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), + [anon_sym_of] = ACTIONS(1389), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1404), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1396), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), - [anon_sym_using] = ACTIONS(70), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -65071,12 +64894,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(28), [anon_sym_CARET] = ACTIONS(28), [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(82), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(1277), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -65085,127 +64908,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(28), [anon_sym_QMARK_QMARK] = ACTIONS(28), [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [anon_sym_BQUOTE] = ACTIONS(1280), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [202] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(202), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [203] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), + [sym_comment] = STATE(203), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(128), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_COLON] = ACTIONS(131), + [anon_sym_of] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1408), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -65232,7 +65055,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -65247,124 +65070,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1301), - [anon_sym_readonly] = ACTIONS(1301), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), - [anon_sym_QMARK] = ACTIONS(131), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [203] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), - [sym_comment] = STATE(203), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [204] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), + [sym_comment] = STATE(204), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1212), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_COLON] = ACTIONS(1410), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -65406,8 +65229,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), @@ -65417,113 +65240,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), - [sym_comment] = STATE(204), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [205] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), + [sym_comment] = STATE(205), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1212), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_COLON] = ACTIONS(1412), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -65565,8 +65388,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), @@ -65576,113 +65399,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [205] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), - [sym_comment] = STATE(205), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym__type] = STATE(6548), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(379), + [206] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), + [sym_comment] = STATE(206), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym__type] = STATE(6248), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(788), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(19), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(23), @@ -65719,13 +65542,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(89), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(94), [sym_number] = ACTIONS(96), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1396), + [sym_this] = ACTIONS(1373), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(96), [sym_false] = ACTIONS(96), @@ -65733,15 +65556,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(104), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(1398), + [anon_sym_readonly] = ACTIONS(1375), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_QMARK] = ACTIONS(110), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(112), [anon_sym_number] = ACTIONS(112), @@ -65763,85 +65586,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [206] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), - [sym_comment] = STATE(206), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [207] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), + [sym_comment] = STATE(207), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1212), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1410), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -65883,8 +65706,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), @@ -65894,113 +65717,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [207] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), - [sym_comment] = STATE(207), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [208] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), + [sym_comment] = STATE(208), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), + [anon_sym_type] = ACTIONS(1212), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -66042,8 +65865,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), @@ -66053,272 +65876,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [208] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), - [sym_comment] = STATE(208), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym__type] = STATE(6380), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(19), - [anon_sym_export] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(32), - [anon_sym_typeof] = ACTIONS(37), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_RPAREN] = ACTIONS(1345), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(52), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(68), - [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(80), - [anon_sym_DASH] = ACTIONS(80), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(89), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(94), - [sym_number] = ACTIONS(96), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1396), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(96), - [sym_false] = ACTIONS(96), - [sym_null] = ACTIONS(96), - [sym_undefined] = ACTIONS(104), - [anon_sym_AT] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(1398), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(112), - [anon_sym_number] = ACTIONS(112), - [anon_sym_boolean] = ACTIONS(112), - [anon_sym_string] = ACTIONS(112), - [anon_sym_symbol] = ACTIONS(112), - [anon_sym_object] = ACTIONS(112), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym_html_comment] = ACTIONS(5), - }, [209] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(209), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(128), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(131), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(131), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1218), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1412), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(131), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -66345,7 +66009,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -66360,283 +66024,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(131), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(210), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym__type] = STATE(6344), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(19), - [anon_sym_export] = ACTIONS(21), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(32), - [anon_sym_typeof] = ACTIONS(37), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_const] = ACTIONS(41), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(52), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(68), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(80), - [anon_sym_DASH] = ACTIONS(80), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(89), + [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(94), - [sym_number] = ACTIONS(96), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1396), + [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(96), - [sym_false] = ACTIONS(96), - [sym_null] = ACTIONS(96), - [sym_undefined] = ACTIONS(104), - [anon_sym_AT] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(1398), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(112), - [anon_sym_number] = ACTIONS(112), - [anon_sym_boolean] = ACTIONS(112), - [anon_sym_string] = ACTIONS(112), - [anon_sym_symbol] = ACTIONS(112), - [anon_sym_object] = ACTIONS(112), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(211), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(6243), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym__type] = STATE(6374), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(379), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5531), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym__type] = STATE(6189), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(788), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(19), [anon_sym_export] = ACTIONS(21), [anon_sym_STAR] = ACTIONS(23), @@ -66673,13 +66337,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(89), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(94), [sym_number] = ACTIONS(96), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1396), + [sym_this] = ACTIONS(1373), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(96), [sym_false] = ACTIONS(96), @@ -66687,15 +66351,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(104), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(1398), + [anon_sym_readonly] = ACTIONS(1375), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_QMARK] = ACTIONS(110), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(112), [anon_sym_number] = ACTIONS(112), @@ -66718,84 +66382,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(212), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1321), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1418), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(131), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1321), - [anon_sym_COLON] = ACTIONS(1335), + [anon_sym_of] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1423), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1425), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1331), + [anon_sym_new] = ACTIONS(1429), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -66837,8 +66501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -66850,109 +66514,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(1321), - [anon_sym_get] = ACTIONS(1321), - [anon_sym_set] = ACTIONS(1321), - [anon_sym_declare] = ACTIONS(1321), - [anon_sym_public] = ACTIONS(1321), - [anon_sym_private] = ACTIONS(1321), - [anon_sym_protected] = ACTIONS(1321), - [anon_sym_override] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_any] = ACTIONS(1321), - [anon_sym_number] = ACTIONS(1321), - [anon_sym_boolean] = ACTIONS(1321), - [anon_sym_string] = ACTIONS(1321), - [anon_sym_symbol] = ACTIONS(1321), - [anon_sym_object] = ACTIONS(1321), - [anon_sym_property] = ACTIONS(1321), - [anon_sym_signal] = ACTIONS(1321), - [anon_sym_on] = ACTIONS(1321), - [anon_sym_required] = ACTIONS(1321), - [anon_sym_component] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), [sym_comment] = STATE(213), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1210), + [anon_sym_export] = ACTIONS(1212), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1212), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1212), + [anon_sym_let] = ACTIONS(1212), [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_of] = ACTIONS(1434), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1235), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -66979,7 +66643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -66994,123 +66658,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1212), + [anon_sym_readonly] = ACTIONS(1212), + [anon_sym_get] = ACTIONS(1212), + [anon_sym_set] = ACTIONS(1212), + [anon_sym_declare] = ACTIONS(1212), + [anon_sym_public] = ACTIONS(1212), + [anon_sym_private] = ACTIONS(1212), + [anon_sym_protected] = ACTIONS(1212), + [anon_sym_override] = ACTIONS(1212), + [anon_sym_module] = ACTIONS(1212), + [anon_sym_any] = ACTIONS(1212), + [anon_sym_number] = ACTIONS(1212), + [anon_sym_boolean] = ACTIONS(1212), + [anon_sym_string] = ACTIONS(1212), + [anon_sym_symbol] = ACTIONS(1212), + [anon_sym_object] = ACTIONS(1212), + [anon_sym_property] = ACTIONS(1212), + [anon_sym_signal] = ACTIONS(1212), + [anon_sym_on] = ACTIONS(1212), + [anon_sym_required] = ACTIONS(1212), + [anon_sym_component] = ACTIONS(1212), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(214), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1216), - [anon_sym_export] = ACTIONS(1218), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1218), - [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(1337), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1436), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1218), - [anon_sym_let] = ACTIONS(1218), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_of] = ACTIONS(1422), - [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1325), + [anon_sym_COLON] = ACTIONS(1321), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(1436), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1235), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1333), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1241), + [anon_sym_new] = ACTIONS(1335), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -67137,7 +66802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -67152,124 +66817,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1218), - [anon_sym_signal] = ACTIONS(1218), - [anon_sym_on] = ACTIONS(1218), - [anon_sym_required] = ACTIONS(1218), - [anon_sym_component] = ACTIONS(1218), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(215), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1321), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1321), + [anon_sym_type] = ACTIONS(1325), [anon_sym_EQ] = ACTIONS(1337), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1321), + [anon_sym_of] = ACTIONS(1325), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(1436), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1333), [anon_sym_function] = ACTIONS(64), [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1331), + [anon_sym_new] = ACTIONS(1335), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -67311,8 +66975,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -67324,109 +66988,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(1321), - [anon_sym_get] = ACTIONS(1321), - [anon_sym_set] = ACTIONS(1321), - [anon_sym_declare] = ACTIONS(1321), - [anon_sym_public] = ACTIONS(1321), - [anon_sym_private] = ACTIONS(1321), - [anon_sym_protected] = ACTIONS(1321), - [anon_sym_override] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_any] = ACTIONS(1321), - [anon_sym_number] = ACTIONS(1321), - [anon_sym_boolean] = ACTIONS(1321), - [anon_sym_string] = ACTIONS(1321), - [anon_sym_symbol] = ACTIONS(1321), - [anon_sym_object] = ACTIONS(1321), - [anon_sym_property] = ACTIONS(1321), - [anon_sym_signal] = ACTIONS(1321), - [anon_sym_on] = ACTIONS(1321), - [anon_sym_required] = ACTIONS(1321), - [anon_sym_component] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), [sym_comment] = STATE(216), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1424), - [anon_sym_export] = ACTIONS(1426), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1441), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), + [anon_sym_from] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1426), + [anon_sym_of] = ACTIONS(1441), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1417), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1449), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1434), + [anon_sym_new] = ACTIONS(1451), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -67453,7 +67117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -67468,8 +67132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), @@ -67479,112 +67143,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_override] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - [anon_sym_object] = ACTIONS(1426), - [anon_sym_property] = ACTIONS(1426), - [anon_sym_signal] = ACTIONS(1426), - [anon_sym_on] = ACTIONS(1426), - [anon_sym_required] = ACTIONS(1426), - [anon_sym_component] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), + [anon_sym_property] = ACTIONS(1441), + [anon_sym_signal] = ACTIONS(1441), + [anon_sym_on] = ACTIONS(1441), + [anon_sym_required] = ACTIONS(1441), + [anon_sym_component] = ACTIONS(1441), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(217), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1424), - [anon_sym_export] = ACTIONS(1426), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1426), - [anon_sym_let] = ACTIONS(1426), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1426), + [anon_sym_of] = ACTIONS(1301), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1432), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1449), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1434), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -67611,7 +67275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -67626,124 +67290,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_override] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - [anon_sym_object] = ACTIONS(1426), - [anon_sym_property] = ACTIONS(1426), - [anon_sym_signal] = ACTIONS(1426), - [anon_sym_on] = ACTIONS(1426), - [anon_sym_required] = ACTIONS(1426), - [anon_sym_component] = ACTIONS(1426), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), [sym_comment] = STATE(218), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1440), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1441), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), + [anon_sym_from] = ACTIONS(1441), + [anon_sym_let] = ACTIONS(1441), [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1440), - [anon_sym_COLON] = ACTIONS(1447), + [anon_sym_of] = ACTIONS(1441), + [anon_sym_SEMI] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1449), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1453), + [anon_sym_new] = ACTIONS(1451), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -67770,7 +67433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -67785,98 +67448,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_readonly] = ACTIONS(1440), - [anon_sym_get] = ACTIONS(1440), - [anon_sym_set] = ACTIONS(1440), - [anon_sym_declare] = ACTIONS(1440), - [anon_sym_public] = ACTIONS(1440), - [anon_sym_private] = ACTIONS(1440), - [anon_sym_protected] = ACTIONS(1440), - [anon_sym_override] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_number] = ACTIONS(1440), - [anon_sym_boolean] = ACTIONS(1440), - [anon_sym_string] = ACTIONS(1440), - [anon_sym_symbol] = ACTIONS(1440), - [anon_sym_object] = ACTIONS(1440), - [anon_sym_property] = ACTIONS(1440), - [anon_sym_signal] = ACTIONS(1440), - [anon_sym_on] = ACTIONS(1440), - [anon_sym_required] = ACTIONS(1440), - [anon_sym_component] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1441), + [anon_sym_readonly] = ACTIONS(1441), + [anon_sym_get] = ACTIONS(1441), + [anon_sym_set] = ACTIONS(1441), + [anon_sym_declare] = ACTIONS(1441), + [anon_sym_public] = ACTIONS(1441), + [anon_sym_private] = ACTIONS(1441), + [anon_sym_protected] = ACTIONS(1441), + [anon_sym_override] = ACTIONS(1441), + [anon_sym_module] = ACTIONS(1441), + [anon_sym_any] = ACTIONS(1441), + [anon_sym_number] = ACTIONS(1441), + [anon_sym_boolean] = ACTIONS(1441), + [anon_sym_string] = ACTIONS(1441), + [anon_sym_symbol] = ACTIONS(1441), + [anon_sym_object] = ACTIONS(1441), + [anon_sym_property] = ACTIONS(1441), + [anon_sym_signal] = ACTIONS(1441), + [anon_sym_on] = ACTIONS(1441), + [anon_sym_required] = ACTIONS(1441), + [anon_sym_component] = ACTIONS(1441), [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(219), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1301), @@ -67886,12 +67551,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), @@ -67941,8 +67605,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -67976,56 +67640,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(1301), [anon_sym_component] = ACTIONS(1301), [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), + [anon_sym_implements] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), [sym_comment] = STATE(220), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1457), [anon_sym_export] = ACTIONS(1459), [anon_sym_STAR] = ACTIONS(28), @@ -68033,7 +67697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1459), @@ -68048,15 +67712,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1465), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -68098,8 +67762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), @@ -68109,7 +67773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1459), [anon_sym_readonly] = ACTIONS(1459), @@ -68138,83 +67802,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(221), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1440), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1471), + [anon_sym_export] = ACTIONS(1473), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), + [anon_sym_from] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1440), - [anon_sym_COLON] = ACTIONS(1447), + [anon_sym_of] = ACTIONS(1473), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1479), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_EQ_GT] = ACTIONS(1455), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1453), + [anon_sym_new] = ACTIONS(1481), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -68241,7 +67904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -68256,8 +67919,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -68269,108 +67932,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_readonly] = ACTIONS(1440), - [anon_sym_get] = ACTIONS(1440), - [anon_sym_set] = ACTIONS(1440), - [anon_sym_declare] = ACTIONS(1440), - [anon_sym_public] = ACTIONS(1440), - [anon_sym_private] = ACTIONS(1440), - [anon_sym_protected] = ACTIONS(1440), - [anon_sym_override] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_number] = ACTIONS(1440), - [anon_sym_boolean] = ACTIONS(1440), - [anon_sym_string] = ACTIONS(1440), - [anon_sym_symbol] = ACTIONS(1440), - [anon_sym_object] = ACTIONS(1440), - [anon_sym_property] = ACTIONS(1440), - [anon_sym_signal] = ACTIONS(1440), - [anon_sym_on] = ACTIONS(1440), - [anon_sym_required] = ACTIONS(1440), - [anon_sym_component] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_readonly] = ACTIONS(1473), + [anon_sym_get] = ACTIONS(1473), + [anon_sym_set] = ACTIONS(1473), + [anon_sym_declare] = ACTIONS(1473), + [anon_sym_public] = ACTIONS(1473), + [anon_sym_private] = ACTIONS(1473), + [anon_sym_protected] = ACTIONS(1473), + [anon_sym_override] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_number] = ACTIONS(1473), + [anon_sym_boolean] = ACTIONS(1473), + [anon_sym_string] = ACTIONS(1473), + [anon_sym_symbol] = ACTIONS(1473), + [anon_sym_object] = ACTIONS(1473), + [anon_sym_property] = ACTIONS(1473), + [anon_sym_signal] = ACTIONS(1473), + [anon_sym_on] = ACTIONS(1473), + [anon_sym_required] = ACTIONS(1473), + [anon_sym_component] = ACTIONS(1473), [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2396), - [sym_expression] = STATE(3863), - [sym_primary_expression] = STATE(3072), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2396), - [sym_subscript_expression] = STATE(2396), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(222), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2396), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1457), - [anon_sym_export] = ACTIONS(1459), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1459), - [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1418), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(131), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1459), - [anon_sym_let] = ACTIONS(1459), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1459), - [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1416), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1231), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1425), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1467), + [anon_sym_new] = ACTIONS(1429), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -68397,7 +68062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -68412,123 +68077,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1245), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1459), - [anon_sym_readonly] = ACTIONS(1459), - [anon_sym_get] = ACTIONS(1459), - [anon_sym_set] = ACTIONS(1459), - [anon_sym_declare] = ACTIONS(1459), - [anon_sym_public] = ACTIONS(1459), - [anon_sym_private] = ACTIONS(1459), - [anon_sym_protected] = ACTIONS(1459), - [anon_sym_override] = ACTIONS(1459), - [anon_sym_module] = ACTIONS(1459), - [anon_sym_any] = ACTIONS(1459), - [anon_sym_number] = ACTIONS(1459), - [anon_sym_boolean] = ACTIONS(1459), - [anon_sym_string] = ACTIONS(1459), - [anon_sym_symbol] = ACTIONS(1459), - [anon_sym_object] = ACTIONS(1459), - [anon_sym_property] = ACTIONS(1459), - [anon_sym_signal] = ACTIONS(1459), - [anon_sym_on] = ACTIONS(1459), - [anon_sym_required] = ACTIONS(1459), - [anon_sym_component] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(223), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6000), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7961), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1319), - [anon_sym_export] = ACTIONS(1321), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1321), - [anon_sym_EQ] = ACTIONS(25), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1485), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1323), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(34), - [anon_sym_RBRACE] = ACTIONS(34), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1321), - [anon_sym_let] = ACTIONS(1321), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1321), + [anon_sym_of] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1487), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1329), + [anon_sym_async] = ACTIONS(1425), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1331), + [anon_sym_new] = ACTIONS(1429), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -68570,8 +68234,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -68583,108 +68247,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1321), - [anon_sym_readonly] = ACTIONS(1321), - [anon_sym_get] = ACTIONS(1321), - [anon_sym_set] = ACTIONS(1321), - [anon_sym_declare] = ACTIONS(1321), - [anon_sym_public] = ACTIONS(1321), - [anon_sym_private] = ACTIONS(1321), - [anon_sym_protected] = ACTIONS(1321), - [anon_sym_override] = ACTIONS(1321), - [anon_sym_module] = ACTIONS(1321), - [anon_sym_any] = ACTIONS(1321), - [anon_sym_number] = ACTIONS(1321), - [anon_sym_boolean] = ACTIONS(1321), - [anon_sym_string] = ACTIONS(1321), - [anon_sym_symbol] = ACTIONS(1321), - [anon_sym_object] = ACTIONS(1321), - [anon_sym_property] = ACTIONS(1321), - [anon_sym_signal] = ACTIONS(1321), - [anon_sym_on] = ACTIONS(1321), - [anon_sym_required] = ACTIONS(1321), - [anon_sym_component] = ACTIONS(1321), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(224), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1471), + [anon_sym_export] = ACTIONS(1473), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1473), + [anon_sym_let] = ACTIONS(1473), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_of] = ACTIONS(1473), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1479), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1471), + [anon_sym_EQ_GT] = ACTIONS(1455), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1481), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -68711,7 +68375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -68726,8 +68390,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -68739,109 +68403,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1473), + [anon_sym_readonly] = ACTIONS(1473), + [anon_sym_get] = ACTIONS(1473), + [anon_sym_set] = ACTIONS(1473), + [anon_sym_declare] = ACTIONS(1473), + [anon_sym_public] = ACTIONS(1473), + [anon_sym_private] = ACTIONS(1473), + [anon_sym_protected] = ACTIONS(1473), + [anon_sym_override] = ACTIONS(1473), + [anon_sym_module] = ACTIONS(1473), + [anon_sym_any] = ACTIONS(1473), + [anon_sym_number] = ACTIONS(1473), + [anon_sym_boolean] = ACTIONS(1473), + [anon_sym_string] = ACTIONS(1473), + [anon_sym_symbol] = ACTIONS(1473), + [anon_sym_object] = ACTIONS(1473), + [anon_sym_property] = ACTIONS(1473), + [anon_sym_signal] = ACTIONS(1473), + [anon_sym_on] = ACTIONS(1473), + [anon_sym_required] = ACTIONS(1473), + [anon_sym_component] = ACTIONS(1473), [anon_sym_satisfies] = ACTIONS(28), [anon_sym_implements] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(225), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1475), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5743), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7704), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1323), + [anon_sym_export] = ACTIONS(1325), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1325), + [anon_sym_EQ] = ACTIONS(25), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1327), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(34), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), + [anon_sym_from] = ACTIONS(1325), + [anon_sym_let] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1475), + [anon_sym_of] = ACTIONS(1325), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(1333), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1471), + [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1335), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -68868,7 +68533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -68883,8 +68548,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -68896,98 +68561,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [anon_sym_property] = ACTIONS(1475), - [anon_sym_signal] = ACTIONS(1475), - [anon_sym_on] = ACTIONS(1475), - [anon_sym_required] = ACTIONS(1475), - [anon_sym_component] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1325), + [anon_sym_readonly] = ACTIONS(1325), + [anon_sym_get] = ACTIONS(1325), + [anon_sym_set] = ACTIONS(1325), + [anon_sym_declare] = ACTIONS(1325), + [anon_sym_public] = ACTIONS(1325), + [anon_sym_private] = ACTIONS(1325), + [anon_sym_protected] = ACTIONS(1325), + [anon_sym_override] = ACTIONS(1325), + [anon_sym_module] = ACTIONS(1325), + [anon_sym_any] = ACTIONS(1325), + [anon_sym_number] = ACTIONS(1325), + [anon_sym_boolean] = ACTIONS(1325), + [anon_sym_string] = ACTIONS(1325), + [anon_sym_symbol] = ACTIONS(1325), + [anon_sym_object] = ACTIONS(1325), + [anon_sym_property] = ACTIONS(1325), + [anon_sym_signal] = ACTIONS(1325), + [anon_sym_on] = ACTIONS(1325), + [anon_sym_required] = ACTIONS(1325), + [anon_sym_component] = ACTIONS(1325), [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_implements] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [226] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(226), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1440), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1485), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1440), - [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_of] = ACTIONS(1416), + [anon_sym_COLON] = ACTIONS(1423), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), @@ -68995,11 +68659,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1425), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1453), + [anon_sym_new] = ACTIONS(1429), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -69041,8 +68705,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -69054,109 +68718,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_readonly] = ACTIONS(1440), - [anon_sym_get] = ACTIONS(1440), - [anon_sym_set] = ACTIONS(1440), - [anon_sym_declare] = ACTIONS(1440), - [anon_sym_public] = ACTIONS(1440), - [anon_sym_private] = ACTIONS(1440), - [anon_sym_protected] = ACTIONS(1440), - [anon_sym_override] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_number] = ACTIONS(1440), - [anon_sym_boolean] = ACTIONS(1440), - [anon_sym_string] = ACTIONS(1440), - [anon_sym_symbol] = ACTIONS(1440), - [anon_sym_object] = ACTIONS(1440), - [anon_sym_property] = ACTIONS(1440), - [anon_sym_signal] = ACTIONS(1440), - [anon_sym_on] = ACTIONS(1440), - [anon_sym_required] = ACTIONS(1440), - [anon_sym_component] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2236), + [sym_expression] = STATE(3661), + [sym_primary_expression] = STATE(2907), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2236), + [sym_subscript_expression] = STATE(2236), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3548), [sym_comment] = STATE(227), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1440), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2236), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1457), + [anon_sym_export] = ACTIONS(1459), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1459), + [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_namespace] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), + [anon_sym_from] = ACTIONS(1459), + [anon_sym_let] = ACTIONS(1459), [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1440), + [anon_sym_of] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1465), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1453), + [anon_sym_new] = ACTIONS(1469), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -69183,7 +68846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -69198,121 +68861,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1239), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_readonly] = ACTIONS(1440), - [anon_sym_get] = ACTIONS(1440), - [anon_sym_set] = ACTIONS(1440), - [anon_sym_declare] = ACTIONS(1440), - [anon_sym_public] = ACTIONS(1440), - [anon_sym_private] = ACTIONS(1440), - [anon_sym_protected] = ACTIONS(1440), - [anon_sym_override] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_number] = ACTIONS(1440), - [anon_sym_boolean] = ACTIONS(1440), - [anon_sym_string] = ACTIONS(1440), - [anon_sym_symbol] = ACTIONS(1440), - [anon_sym_object] = ACTIONS(1440), - [anon_sym_property] = ACTIONS(1440), - [anon_sym_signal] = ACTIONS(1440), - [anon_sym_on] = ACTIONS(1440), - [anon_sym_required] = ACTIONS(1440), - [anon_sym_component] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1459), + [anon_sym_readonly] = ACTIONS(1459), + [anon_sym_get] = ACTIONS(1459), + [anon_sym_set] = ACTIONS(1459), + [anon_sym_declare] = ACTIONS(1459), + [anon_sym_public] = ACTIONS(1459), + [anon_sym_private] = ACTIONS(1459), + [anon_sym_protected] = ACTIONS(1459), + [anon_sym_override] = ACTIONS(1459), + [anon_sym_module] = ACTIONS(1459), + [anon_sym_any] = ACTIONS(1459), + [anon_sym_number] = ACTIONS(1459), + [anon_sym_boolean] = ACTIONS(1459), + [anon_sym_string] = ACTIONS(1459), + [anon_sym_symbol] = ACTIONS(1459), + [anon_sym_object] = ACTIONS(1459), + [anon_sym_property] = ACTIONS(1459), + [anon_sym_signal] = ACTIONS(1459), + [anon_sym_on] = ACTIONS(1459), + [anon_sym_required] = ACTIONS(1459), + [anon_sym_component] = ACTIONS(1459), [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [228] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(228), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1473), - [anon_sym_export] = ACTIONS(1475), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1475), - [anon_sym_let] = ACTIONS(1475), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1475), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_SEMI] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1225), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1481), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1471), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1483), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -69339,7 +69003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -69354,8 +69018,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -69367,83 +69031,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1475), - [anon_sym_readonly] = ACTIONS(1475), - [anon_sym_get] = ACTIONS(1475), - [anon_sym_set] = ACTIONS(1475), - [anon_sym_declare] = ACTIONS(1475), - [anon_sym_public] = ACTIONS(1475), - [anon_sym_private] = ACTIONS(1475), - [anon_sym_protected] = ACTIONS(1475), - [anon_sym_override] = ACTIONS(1475), - [anon_sym_module] = ACTIONS(1475), - [anon_sym_any] = ACTIONS(1475), - [anon_sym_number] = ACTIONS(1475), - [anon_sym_boolean] = ACTIONS(1475), - [anon_sym_string] = ACTIONS(1475), - [anon_sym_symbol] = ACTIONS(1475), - [anon_sym_object] = ACTIONS(1475), - [anon_sym_property] = ACTIONS(1475), - [anon_sym_signal] = ACTIONS(1475), - [anon_sym_on] = ACTIONS(1475), - [anon_sym_required] = ACTIONS(1475), - [anon_sym_component] = ACTIONS(1475), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_implements] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(229), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -69456,7 +69120,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(1301), - [anon_sym_COLON] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1321), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), @@ -69467,7 +69131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1489), + [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), @@ -69511,8 +69175,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -69550,56 +69214,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(230), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -69623,7 +69287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), @@ -69667,8 +69331,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -69706,80 +69370,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(231), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1491), - [anon_sym_export] = ACTIONS(1493), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1489), + [anon_sym_export] = ACTIONS(1491), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), + [anon_sym_from] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1493), + [anon_sym_of] = ACTIONS(1491), [anon_sym_COLON] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1501), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1489), + [anon_sym_EQ_GT] = ACTIONS(1503), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(1505), [anon_sym_using] = ACTIONS(70), @@ -69823,8 +69487,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -69836,109 +69500,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_readonly] = ACTIONS(1493), - [anon_sym_get] = ACTIONS(1493), - [anon_sym_set] = ACTIONS(1493), - [anon_sym_declare] = ACTIONS(1493), - [anon_sym_public] = ACTIONS(1493), - [anon_sym_private] = ACTIONS(1493), - [anon_sym_protected] = ACTIONS(1493), - [anon_sym_override] = ACTIONS(1493), - [anon_sym_module] = ACTIONS(1493), - [anon_sym_any] = ACTIONS(1493), - [anon_sym_number] = ACTIONS(1493), - [anon_sym_boolean] = ACTIONS(1493), - [anon_sym_string] = ACTIONS(1493), - [anon_sym_symbol] = ACTIONS(1493), - [anon_sym_object] = ACTIONS(1493), - [anon_sym_property] = ACTIONS(1493), - [anon_sym_signal] = ACTIONS(1493), - [anon_sym_on] = ACTIONS(1493), - [anon_sym_required] = ACTIONS(1493), - [anon_sym_component] = ACTIONS(1493), + [anon_sym_static] = ACTIONS(1491), + [anon_sym_readonly] = ACTIONS(1491), + [anon_sym_get] = ACTIONS(1491), + [anon_sym_set] = ACTIONS(1491), + [anon_sym_declare] = ACTIONS(1491), + [anon_sym_public] = ACTIONS(1491), + [anon_sym_private] = ACTIONS(1491), + [anon_sym_protected] = ACTIONS(1491), + [anon_sym_override] = ACTIONS(1491), + [anon_sym_module] = ACTIONS(1491), + [anon_sym_any] = ACTIONS(1491), + [anon_sym_number] = ACTIONS(1491), + [anon_sym_boolean] = ACTIONS(1491), + [anon_sym_string] = ACTIONS(1491), + [anon_sym_symbol] = ACTIONS(1491), + [anon_sym_object] = ACTIONS(1491), + [anon_sym_property] = ACTIONS(1491), + [anon_sym_signal] = ACTIONS(1491), + [anon_sym_on] = ACTIONS(1491), + [anon_sym_required] = ACTIONS(1491), + [anon_sym_component] = ACTIONS(1491), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [232] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3039), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8164), + [sym_string] = STATE(2894), [sym_comment] = STATE(232), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1440), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(87), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_await] = ACTIONS(1172), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1440), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1396), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1453), - [anon_sym_using] = ACTIONS(70), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -69962,12 +69626,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(28), [anon_sym_CARET] = ACTIONS(28), [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_SLASH] = ACTIONS(82), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(1277), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -69976,124 +69640,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(28), [anon_sym_QMARK_QMARK] = ACTIONS(28), [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_DASH_DASH] = ACTIONS(1403), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), + [anon_sym_BQUOTE] = ACTIONS(1280), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_readonly] = ACTIONS(1440), - [anon_sym_get] = ACTIONS(1440), - [anon_sym_set] = ACTIONS(1440), - [anon_sym_declare] = ACTIONS(1440), - [anon_sym_public] = ACTIONS(1440), - [anon_sym_private] = ACTIONS(1440), - [anon_sym_protected] = ACTIONS(1440), - [anon_sym_override] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_number] = ACTIONS(1440), - [anon_sym_boolean] = ACTIONS(1440), - [anon_sym_string] = ACTIONS(1440), - [anon_sym_symbol] = ACTIONS(1440), - [anon_sym_object] = ACTIONS(1440), - [anon_sym_property] = ACTIONS(1440), - [anon_sym_signal] = ACTIONS(1440), - [anon_sym_on] = ACTIONS(1440), - [anon_sym_required] = ACTIONS(1440), - [anon_sym_component] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(233), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1485), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_COLON] = ACTIONS(1335), + [anon_sym_of] = ACTIONS(1416), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1425), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1429), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -70135,8 +69799,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -70148,109 +69812,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3279), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8523), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(234), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1414), + [anon_sym_export] = ACTIONS(1416), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_EQ] = ACTIONS(1485), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_namespace] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1377), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_await] = ACTIONS(1172), + [anon_sym_from] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1380), + [anon_sym_of] = ACTIONS(1416), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1425), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -70274,12 +69938,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(28), [anon_sym_CARET] = ACTIONS(28), [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [anon_sym_SLASH] = ACTIONS(82), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(1277), + [anon_sym_LT] = ACTIONS(85), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -70288,124 +69952,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(28), [anon_sym_QMARK_QMARK] = ACTIONS(28), [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1387), - [anon_sym_DASH_DASH] = ACTIONS(1387), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1280), + [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_readonly] = ACTIONS(1416), + [anon_sym_get] = ACTIONS(1416), + [anon_sym_set] = ACTIONS(1416), + [anon_sym_declare] = ACTIONS(1416), + [anon_sym_public] = ACTIONS(1416), + [anon_sym_private] = ACTIONS(1416), + [anon_sym_protected] = ACTIONS(1416), + [anon_sym_override] = ACTIONS(1416), + [anon_sym_module] = ACTIONS(1416), + [anon_sym_any] = ACTIONS(1416), + [anon_sym_number] = ACTIONS(1416), + [anon_sym_boolean] = ACTIONS(1416), + [anon_sym_string] = ACTIONS(1416), + [anon_sym_symbol] = ACTIONS(1416), + [anon_sym_object] = ACTIONS(1416), + [anon_sym_property] = ACTIONS(1416), + [anon_sym_signal] = ACTIONS(1416), + [anon_sym_on] = ACTIONS(1416), + [anon_sym_required] = ACTIONS(1416), + [anon_sym_component] = ACTIONS(1416), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(235), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1438), - [anon_sym_export] = ACTIONS(1440), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1489), + [anon_sym_export] = ACTIONS(1491), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_namespace] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1440), - [anon_sym_let] = ACTIONS(1440), + [anon_sym_from] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1491), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1440), + [anon_sym_of] = ACTIONS(1491), + [anon_sym_COLON] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1449), + [anon_sym_async] = ACTIONS(1501), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_EQ_GT] = ACTIONS(1503), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1453), + [anon_sym_new] = ACTIONS(1505), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -70447,8 +70111,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -70460,108 +70124,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1440), - [anon_sym_readonly] = ACTIONS(1440), - [anon_sym_get] = ACTIONS(1440), - [anon_sym_set] = ACTIONS(1440), - [anon_sym_declare] = ACTIONS(1440), - [anon_sym_public] = ACTIONS(1440), - [anon_sym_private] = ACTIONS(1440), - [anon_sym_protected] = ACTIONS(1440), - [anon_sym_override] = ACTIONS(1440), - [anon_sym_module] = ACTIONS(1440), - [anon_sym_any] = ACTIONS(1440), - [anon_sym_number] = ACTIONS(1440), - [anon_sym_boolean] = ACTIONS(1440), - [anon_sym_string] = ACTIONS(1440), - [anon_sym_symbol] = ACTIONS(1440), - [anon_sym_object] = ACTIONS(1440), - [anon_sym_property] = ACTIONS(1440), - [anon_sym_signal] = ACTIONS(1440), - [anon_sym_on] = ACTIONS(1440), - [anon_sym_required] = ACTIONS(1440), - [anon_sym_component] = ACTIONS(1440), + [anon_sym_static] = ACTIONS(1491), + [anon_sym_readonly] = ACTIONS(1491), + [anon_sym_get] = ACTIONS(1491), + [anon_sym_set] = ACTIONS(1491), + [anon_sym_declare] = ACTIONS(1491), + [anon_sym_public] = ACTIONS(1491), + [anon_sym_private] = ACTIONS(1491), + [anon_sym_protected] = ACTIONS(1491), + [anon_sym_override] = ACTIONS(1491), + [anon_sym_module] = ACTIONS(1491), + [anon_sym_any] = ACTIONS(1491), + [anon_sym_number] = ACTIONS(1491), + [anon_sym_boolean] = ACTIONS(1491), + [anon_sym_string] = ACTIONS(1491), + [anon_sym_symbol] = ACTIONS(1491), + [anon_sym_object] = ACTIONS(1491), + [anon_sym_property] = ACTIONS(1491), + [anon_sym_signal] = ACTIONS(1491), + [anon_sym_on] = ACTIONS(1491), + [anon_sym_required] = ACTIONS(1491), + [anon_sym_component] = ACTIONS(1491), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(236), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1491), - [anon_sym_export] = ACTIONS(1493), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1493), - [anon_sym_let] = ACTIONS(1493), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1493), + [anon_sym_of] = ACTIONS(1301), [anon_sym_COLON] = ACTIONS(28), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(1309), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1503), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1489), + [anon_sym_EQ_GT] = ACTIONS(1503), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1505), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -70603,8 +70267,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -70616,82 +70280,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1493), - [anon_sym_readonly] = ACTIONS(1493), - [anon_sym_get] = ACTIONS(1493), - [anon_sym_set] = ACTIONS(1493), - [anon_sym_declare] = ACTIONS(1493), - [anon_sym_public] = ACTIONS(1493), - [anon_sym_private] = ACTIONS(1493), - [anon_sym_protected] = ACTIONS(1493), - [anon_sym_override] = ACTIONS(1493), - [anon_sym_module] = ACTIONS(1493), - [anon_sym_any] = ACTIONS(1493), - [anon_sym_number] = ACTIONS(1493), - [anon_sym_boolean] = ACTIONS(1493), - [anon_sym_string] = ACTIONS(1493), - [anon_sym_symbol] = ACTIONS(1493), - [anon_sym_object] = ACTIONS(1493), - [anon_sym_property] = ACTIONS(1493), - [anon_sym_signal] = ACTIONS(1493), - [anon_sym_on] = ACTIONS(1493), - [anon_sym_required] = ACTIONS(1493), - [anon_sym_component] = ACTIONS(1493), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(237), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1507), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -70702,8 +70366,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_of] = ACTIONS(1507), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), @@ -70758,8 +70422,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -70797,56 +70461,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(238), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -70913,8 +70577,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -70952,68 +70616,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(239), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1509), + [anon_sym_export] = ACTIONS(1511), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1511), + [anon_sym_type] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(1513), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_namespace] = ACTIONS(1515), [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1511), + [anon_sym_let] = ACTIONS(1511), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_of] = ACTIONS(1511), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), @@ -71022,11 +70686,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1517), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_EQ_GT] = ACTIONS(1519), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1521), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -71053,7 +70717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -71068,8 +70732,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -71081,82 +70745,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_readonly] = ACTIONS(1511), + [anon_sym_get] = ACTIONS(1511), + [anon_sym_set] = ACTIONS(1511), + [anon_sym_declare] = ACTIONS(1511), + [anon_sym_public] = ACTIONS(1511), + [anon_sym_private] = ACTIONS(1511), + [anon_sym_protected] = ACTIONS(1511), + [anon_sym_override] = ACTIONS(1511), + [anon_sym_module] = ACTIONS(1511), + [anon_sym_any] = ACTIONS(1511), + [anon_sym_number] = ACTIONS(1511), + [anon_sym_boolean] = ACTIONS(1511), + [anon_sym_string] = ACTIONS(1511), + [anon_sym_symbol] = ACTIONS(1511), + [anon_sym_object] = ACTIONS(1511), + [anon_sym_property] = ACTIONS(1511), + [anon_sym_signal] = ACTIONS(1511), + [anon_sym_on] = ACTIONS(1511), + [anon_sym_required] = ACTIONS(1511), + [anon_sym_component] = ACTIONS(1511), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(240), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1525), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -71223,8 +70887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -71262,211 +70926,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4759), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3341), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(7329), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8035), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3290), [sym_comment] = STATE(241), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1513), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5629), + [sym_pattern] = STATE(7060), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4583), + [sym__type_query_member_expression_in_type_annotation] = STATE(4731), + [sym__type_query_call_expression_in_type_annotation] = STATE(4967), + [sym__type] = STATE(4732), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7679), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1527), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(1531), + [anon_sym_typeof] = ACTIONS(1533), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1537), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1539), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(1309), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(133), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(1541), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1547), [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), + [anon_sym_BQUOTE] = ACTIONS(1551), + [sym_number] = ACTIONS(1553), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(1555), [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_true] = ACTIONS(1553), + [sym_false] = ACTIONS(1553), + [sym_null] = ACTIONS(1553), + [sym_undefined] = ACTIONS(1557), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), - [anon_sym_satisfies] = ACTIONS(28), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1559), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1563), + [anon_sym_number] = ACTIONS(1563), + [anon_sym_boolean] = ACTIONS(1563), + [anon_sym_string] = ACTIONS(1563), + [anon_sym_symbol] = ACTIONS(1563), + [anon_sym_object] = ACTIONS(1563), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(242), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_EQ] = ACTIONS(1577), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -71533,8 +71197,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -71572,56 +71236,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(243), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_EQ] = ACTIONS(1579), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -71688,8 +71352,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -71727,56 +71391,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(244), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -71843,8 +71507,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -71882,68 +71546,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(245), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5805), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7899), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1509), + [anon_sym_export] = ACTIONS(1511), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(1511), + [anon_sym_EQ] = ACTIONS(1513), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_namespace] = ACTIONS(1515), [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1511), + [anon_sym_let] = ACTIONS(1511), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_of] = ACTIONS(1511), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), @@ -71952,11 +71616,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1517), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_EQ_GT] = ACTIONS(1519), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1521), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -71983,7 +71647,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -71998,8 +71662,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -72011,237 +71675,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1511), + [anon_sym_readonly] = ACTIONS(1511), + [anon_sym_get] = ACTIONS(1511), + [anon_sym_set] = ACTIONS(1511), + [anon_sym_declare] = ACTIONS(1511), + [anon_sym_public] = ACTIONS(1511), + [anon_sym_private] = ACTIONS(1511), + [anon_sym_protected] = ACTIONS(1511), + [anon_sym_override] = ACTIONS(1511), + [anon_sym_module] = ACTIONS(1511), + [anon_sym_any] = ACTIONS(1511), + [anon_sym_number] = ACTIONS(1511), + [anon_sym_boolean] = ACTIONS(1511), + [anon_sym_string] = ACTIONS(1511), + [anon_sym_symbol] = ACTIONS(1511), + [anon_sym_object] = ACTIONS(1511), + [anon_sym_property] = ACTIONS(1511), + [anon_sym_signal] = ACTIONS(1511), + [anon_sym_on] = ACTIONS(1511), + [anon_sym_required] = ACTIONS(1511), + [anon_sym_component] = ACTIONS(1511), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_import] = STATE(5129), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3347), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(7619), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8284), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3432), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(246), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5886), - [sym_pattern] = STATE(6661), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4770), - [sym__type_query_member_expression_in_type_annotation] = STATE(4970), - [sym__type_query_call_expression_in_type_annotation] = STATE(5215), - [sym__type] = STATE(4934), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7936), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1521), - [anon_sym_export] = ACTIONS(1160), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_typeof] = ACTIONS(1527), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1531), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1533), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1535), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1543), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1545), - [sym_number] = ACTIONS(1547), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(1549), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(1547), - [sym_false] = ACTIONS(1547), - [sym_null] = ACTIONS(1547), - [sym_undefined] = ACTIONS(1551), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_readonly] = ACTIONS(1553), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_declare] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1160), - [anon_sym_private] = ACTIONS(1160), - [anon_sym_protected] = ACTIONS(1160), - [anon_sym_override] = ACTIONS(1160), - [anon_sym_module] = ACTIONS(1160), - [anon_sym_any] = ACTIONS(1557), - [anon_sym_number] = ACTIONS(1557), - [anon_sym_boolean] = ACTIONS(1557), - [anon_sym_string] = ACTIONS(1557), - [anon_sym_symbol] = ACTIONS(1557), - [anon_sym_object] = ACTIONS(1557), - [anon_sym_property] = ACTIONS(1160), - [anon_sym_signal] = ACTIONS(1160), - [anon_sym_on] = ACTIONS(1160), - [anon_sym_required] = ACTIONS(1160), - [anon_sym_component] = ACTIONS(1160), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [247] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(247), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1581), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -72264,7 +71773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1571), + [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), @@ -72308,8 +71817,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -72346,57 +71855,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [248] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(248), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [247] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(247), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1573), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -72407,8 +71916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_of] = ACTIONS(1583), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), @@ -72463,8 +71972,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -72501,57 +72010,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [249] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(249), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [248] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(248), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1575), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -72574,7 +72083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_EQ_GT] = ACTIONS(1519), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), @@ -72618,8 +72127,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -72656,57 +72165,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [250] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(250), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [249] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(249), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1577), + [anon_sym_EQ] = ACTIONS(1585), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), @@ -72773,8 +72282,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -72811,69 +72320,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [251] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(251), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1579), - [anon_sym_export] = ACTIONS(1581), + [250] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(250), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1581), - [anon_sym_EQ] = ACTIONS(1583), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1587), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1585), + [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1581), - [anon_sym_let] = ACTIONS(1581), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1581), + [anon_sym_of] = ACTIONS(1301), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), @@ -72882,11 +72391,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1571), + [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -72913,7 +72422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -72928,8 +72437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -72941,94 +72450,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_readonly] = ACTIONS(1581), - [anon_sym_get] = ACTIONS(1581), - [anon_sym_set] = ACTIONS(1581), - [anon_sym_declare] = ACTIONS(1581), - [anon_sym_public] = ACTIONS(1581), - [anon_sym_private] = ACTIONS(1581), - [anon_sym_protected] = ACTIONS(1581), - [anon_sym_override] = ACTIONS(1581), - [anon_sym_module] = ACTIONS(1581), - [anon_sym_any] = ACTIONS(1581), - [anon_sym_number] = ACTIONS(1581), - [anon_sym_boolean] = ACTIONS(1581), - [anon_sym_string] = ACTIONS(1581), - [anon_sym_symbol] = ACTIONS(1581), - [anon_sym_object] = ACTIONS(1581), - [anon_sym_property] = ACTIONS(1581), - [anon_sym_signal] = ACTIONS(1581), - [anon_sym_on] = ACTIONS(1581), - [anon_sym_required] = ACTIONS(1581), - [anon_sym_component] = ACTIONS(1581), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [251] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(251), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [252] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2748), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2592), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(252), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5969), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(7755), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1579), - [anon_sym_export] = ACTIONS(1581), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(1581), - [anon_sym_EQ] = ACTIONS(1583), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1591), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(1585), + [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1581), - [anon_sym_let] = ACTIONS(1581), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(1581), + [anon_sym_of] = ACTIONS(1301), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), @@ -73037,11 +72701,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(1571), + [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(1589), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -73068,7 +72732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(28), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), [anon_sym_LT] = ACTIONS(85), @@ -73083,8 +72747,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -73096,104 +72760,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1581), - [anon_sym_readonly] = ACTIONS(1581), - [anon_sym_get] = ACTIONS(1581), - [anon_sym_set] = ACTIONS(1581), - [anon_sym_declare] = ACTIONS(1581), - [anon_sym_public] = ACTIONS(1581), - [anon_sym_private] = ACTIONS(1581), - [anon_sym_protected] = ACTIONS(1581), - [anon_sym_override] = ACTIONS(1581), - [anon_sym_module] = ACTIONS(1581), - [anon_sym_any] = ACTIONS(1581), - [anon_sym_number] = ACTIONS(1581), - [anon_sym_boolean] = ACTIONS(1581), - [anon_sym_string] = ACTIONS(1581), - [anon_sym_symbol] = ACTIONS(1581), - [anon_sym_object] = ACTIONS(1581), - [anon_sym_property] = ACTIONS(1581), - [anon_sym_signal] = ACTIONS(1581), - [anon_sym_on] = ACTIONS(1581), - [anon_sym_required] = ACTIONS(1581), - [anon_sym_component] = ACTIONS(1581), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_import] = STATE(5132), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3664), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3729), + [sym_import] = STATE(4880), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3447), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3507), [sym_comment] = STATE(253), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5521), - [sym__type_query_call_expression_in_type_annotation] = STATE(6551), - [sym__type] = STATE(5523), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(812), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5338), + [sym__type_query_call_expression_in_type_annotation] = STATE(6368), + [sym__type] = STATE(5339), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(694), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1593), [anon_sym_export] = ACTIONS(1595), [anon_sym_STAR] = ACTIONS(23), @@ -73223,7 +72887,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(1617), [anon_sym_DASH] = ACTIONS(1617), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1603), [anon_sym_void] = ACTIONS(1619), @@ -73273,78 +72937,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_import] = STATE(5132), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3732), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3729), + [sym_import] = STATE(4880), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3377), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3507), [sym_comment] = STATE(254), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5521), - [sym__type_query_call_expression_in_type_annotation] = STATE(6551), - [sym__type] = STATE(5523), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(760), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5338), + [sym__type_query_call_expression_in_type_annotation] = STATE(6368), + [sym__type] = STATE(5339), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(674), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1637), [anon_sym_export] = ACTIONS(1639), [anon_sym_STAR] = ACTIONS(23), @@ -73424,78 +73088,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_import] = STATE(4999), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3216), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3036), + [sym_import] = STATE(4805), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2981), [sym_comment] = STATE(255), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5521), - [sym__type_query_call_expression_in_type_annotation] = STATE(6551), - [sym__type] = STATE(5523), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(710), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5338), + [sym__type_query_call_expression_in_type_annotation] = STATE(6368), + [sym__type] = STATE(5339), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(672), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1673), [anon_sym_export] = ACTIONS(1675), [anon_sym_STAR] = ACTIONS(23), @@ -73525,7 +73189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(1697), [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1699), @@ -73575,78 +73239,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [256] = { - [sym_import] = STATE(4996), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3352), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3777), + [sym_import] = STATE(4861), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2997), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3185), [sym_comment] = STATE(256), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5598), - [sym__type_query_call_expression_in_type_annotation] = STATE(6318), - [sym__type] = STATE(5597), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(758), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5305), + [sym__type_query_call_expression_in_type_annotation] = STATE(6173), + [sym__type] = STATE(5304), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(660), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1717), [anon_sym_export] = ACTIONS(1719), [anon_sym_STAR] = ACTIONS(23), @@ -73658,44 +73322,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1735), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(1729), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1739), - [anon_sym_using] = ACTIONS(1741), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1733), + [anon_sym_using] = ACTIONS(209), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(1743), - [anon_sym_DASH] = ACTIONS(1743), + [anon_sym_PLUS] = ACTIONS(1735), + [anon_sym_DASH] = ACTIONS(1735), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1745), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1749), - [sym_number] = ACTIONS(1751), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(1737), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1739), + [sym_number] = ACTIONS(1741), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(1743), [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(1751), - [sym_false] = ACTIONS(1751), - [sym_null] = ACTIONS(1751), - [sym_undefined] = ACTIONS(1757), + [sym_true] = ACTIONS(1741), + [sym_false] = ACTIONS(1741), + [sym_null] = ACTIONS(1741), + [sym_undefined] = ACTIONS(1745), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1759), + [anon_sym_readonly] = ACTIONS(1747), [anon_sym_get] = ACTIONS(1719), [anon_sym_set] = ACTIONS(1719), [anon_sym_QMARK] = ACTIONS(110), @@ -73705,12 +73369,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1719), [anon_sym_override] = ACTIONS(1719), [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1761), - [anon_sym_number] = ACTIONS(1761), - [anon_sym_boolean] = ACTIONS(1761), - [anon_sym_string] = ACTIONS(1761), - [anon_sym_symbol] = ACTIONS(1761), - [anon_sym_object] = ACTIONS(1761), + [anon_sym_any] = ACTIONS(1749), + [anon_sym_number] = ACTIONS(1749), + [anon_sym_boolean] = ACTIONS(1749), + [anon_sym_string] = ACTIONS(1749), + [anon_sym_symbol] = ACTIONS(1749), + [anon_sym_object] = ACTIONS(1749), [anon_sym_property] = ACTIONS(1719), [anon_sym_signal] = ACTIONS(1719), [anon_sym_on] = ACTIONS(1719), @@ -73726,147 +73390,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [257] = { - [sym_import] = STATE(4999), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2968), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3036), + [sym_import] = STATE(4880), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3501), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3507), [sym_comment] = STATE(257), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5521), - [sym__type_query_call_expression_in_type_annotation] = STATE(6551), - [sym__type] = STATE(5523), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1763), - [anon_sym_export] = ACTIONS(1373), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5338), + [sym__type_query_call_expression_in_type_annotation] = STATE(6368), + [sym__type] = STATE(5339), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(716), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1751), + [anon_sym_export] = ACTIONS(1753), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1679), - [anon_sym_typeof] = ACTIONS(1765), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_typeof] = ACTIONS(1759), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1689), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1609), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1767), - [anon_sym_using] = ACTIONS(1184), + [anon_sym_new] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1771), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1769), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1773), + [anon_sym_DASH] = ACTIONS(1773), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1192), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1775), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1703), - [sym_number] = ACTIONS(1705), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(1709), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_number] = ACTIONS(1625), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(1629), [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(1705), - [sym_false] = ACTIONS(1705), - [sym_null] = ACTIONS(1705), - [sym_undefined] = ACTIONS(1771), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [sym_undefined] = ACTIONS(1781), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1773), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1753), + [anon_sym_readonly] = ACTIONS(1783), + [anon_sym_get] = ACTIONS(1753), + [anon_sym_set] = ACTIONS(1753), [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [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_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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(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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [anon_sym_abstract] = ACTIONS(114), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), @@ -73877,147 +73541,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [258] = { - [sym_import] = STATE(5061), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3111), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3418), + [sym_import] = STATE(4880), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3620), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3507), [sym_comment] = STATE(258), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5598), - [sym__type_query_call_expression_in_type_annotation] = STATE(6318), - [sym__type] = STATE(5597), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(716), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1777), - [anon_sym_export] = ACTIONS(1779), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5338), + [sym__type_query_call_expression_in_type_annotation] = STATE(6368), + [sym__type] = STATE(5339), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(788), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_typeof] = ACTIONS(1785), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1757), + [anon_sym_typeof] = ACTIONS(1789), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(1729), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(46), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1609), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), [anon_sym_new] = ACTIONS(1791), - [anon_sym_using] = ACTIONS(209), + [anon_sym_using] = ACTIONS(70), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(1793), [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(1795), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1797), - [sym_number] = ACTIONS(1799), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(1801), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), - [sym_undefined] = ACTIONS(1803), + [anon_sym_BQUOTE] = ACTIONS(1623), + [sym_number] = ACTIONS(1625), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1629), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(1625), + [sym_false] = ACTIONS(1625), + [sym_null] = ACTIONS(1625), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1805), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1301), + [anon_sym_readonly] = ACTIONS(1797), + [anon_sym_get] = ACTIONS(1301), + [anon_sym_set] = ACTIONS(1301), [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1807), - [anon_sym_number] = ACTIONS(1807), - [anon_sym_boolean] = ACTIONS(1807), - [anon_sym_string] = ACTIONS(1807), - [anon_sym_symbol] = ACTIONS(1807), - [anon_sym_object] = ACTIONS(1807), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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(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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [anon_sym_abstract] = ACTIONS(114), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), @@ -74028,147 +73692,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_import] = STATE(5132), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), + [sym_import] = STATE(4805), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2778), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3729), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2981), [sym_comment] = STATE(259), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5521), - [sym__type_query_call_expression_in_type_annotation] = STATE(6551), - [sym__type] = STATE(5523), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(876), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1809), - [anon_sym_export] = ACTIONS(1811), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5338), + [sym__type_query_call_expression_in_type_annotation] = STATE(6368), + [sym__type] = STATE(5339), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1801), + [anon_sym_export] = ACTIONS(1389), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_typeof] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_typeof] = ACTIONS(1803), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1689), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1827), - [anon_sym_using] = ACTIONS(1829), + [anon_sym_new] = ACTIONS(1805), + [anon_sym_using] = ACTIONS(1184), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_PLUS] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1833), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1192), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1623), - [sym_number] = ACTIONS(1625), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1703), + [sym_number] = ACTIONS(1705), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(1709), [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(1625), - [sym_false] = ACTIONS(1625), - [sym_null] = ACTIONS(1625), - [sym_undefined] = ACTIONS(1839), + [sym_true] = ACTIONS(1705), + [sym_false] = ACTIONS(1705), + [sym_null] = ACTIONS(1705), + [sym_undefined] = ACTIONS(1809), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_readonly] = ACTIONS(1841), - [anon_sym_get] = ACTIONS(1811), - [anon_sym_set] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1811), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), [anon_sym_QMARK] = ACTIONS(110), - [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(1843), - [anon_sym_number] = ACTIONS(1843), - [anon_sym_boolean] = ACTIONS(1843), - [anon_sym_string] = ACTIONS(1843), - [anon_sym_symbol] = ACTIONS(1843), - [anon_sym_object] = ACTIONS(1843), - [anon_sym_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(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_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [anon_sym_abstract] = ACTIONS(114), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), @@ -74179,147 +73843,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [260] = { - [sym_import] = STATE(5132), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3817), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3729), + [sym_import] = STATE(4815), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3327), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3641), [sym_comment] = STATE(260), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5521), - [sym__type_query_call_expression_in_type_annotation] = STATE(6551), - [sym__type] = STATE(5523), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1301), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5305), + [sym__type_query_call_expression_in_type_annotation] = STATE(6173), + [sym__type] = STATE(5304), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(628), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1815), + [anon_sym_export] = ACTIONS(1817), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_typeof] = ACTIONS(1847), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_typeof] = ACTIONS(1823), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1609), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(1831), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(70), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_using] = ACTIONS(1837), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1851), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_PLUS] = ACTIONS(1839), + [anon_sym_DASH] = ACTIONS(1839), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(89), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1623), - [sym_number] = ACTIONS(1625), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1629), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(1625), - [sym_false] = ACTIONS(1625), - [sym_null] = ACTIONS(1625), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1841), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1845), + [sym_number] = ACTIONS(1847), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(1851), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(1847), + [sym_false] = ACTIONS(1847), + [sym_null] = ACTIONS(1847), [sym_undefined] = ACTIONS(1853), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1817), [anon_sym_readonly] = ACTIONS(1855), - [anon_sym_get] = ACTIONS(1301), - [anon_sym_set] = ACTIONS(1301), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), [anon_sym_QMARK] = ACTIONS(110), - [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_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(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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [anon_sym_abstract] = ACTIONS(114), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), @@ -74330,108 +73994,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [261] = { - [sym_import] = STATE(5061), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3133), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3418), + [sym_import] = STATE(4861), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2888), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3185), [sym_comment] = STATE(261), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5598), - [sym__type_query_call_expression_in_type_annotation] = STATE(6318), - [sym__type] = STATE(5597), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(671), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5305), + [sym__type_query_call_expression_in_type_annotation] = STATE(6173), + [sym__type] = STATE(5304), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(889), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1859), [anon_sym_export] = ACTIONS(1861), [anon_sym_STAR] = ACTIONS(23), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1723), [anon_sym_typeof] = ACTIONS(1865), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), [anon_sym_let] = ACTIONS(1861), [anon_sym_const] = ACTIONS(41), [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), [anon_sym_await] = ACTIONS(1869), [anon_sym_of] = ACTIONS(1861), [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1729), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1875), [anon_sym_using] = ACTIONS(1877), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(1879), [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1881), @@ -74439,14 +74103,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1883), [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1797), - [sym_number] = ACTIONS(1799), + [anon_sym_BQUOTE] = ACTIONS(1739), + [sym_number] = ACTIONS(1741), [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(1801), + [sym_this] = ACTIONS(1743), [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(1799), - [sym_false] = ACTIONS(1799), - [sym_null] = ACTIONS(1799), + [sym_true] = ACTIONS(1741), + [sym_false] = ACTIONS(1741), + [sym_null] = ACTIONS(1741), [sym_undefined] = ACTIONS(1887), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1861), @@ -74481,101 +74145,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [262] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3235), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8217), - [sym_string] = STATE(3603), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3070), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8319), + [sym_string] = STATE(3535), [sym_comment] = STATE(262), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(7004), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(5881), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(6553), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6987), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(5819), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(6326), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1893), - [anon_sym_export] = ACTIONS(1373), + [anon_sym_export] = ACTIONS(1389), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), [anon_sym_LBRACE] = ACTIONS(1895), [anon_sym_typeof] = ACTIONS(1343), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_const] = ACTIONS(41), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(46), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), [anon_sym_LBRACK] = ACTIONS(1897), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1767), + [anon_sym_new] = ACTIONS(1805), [anon_sym_using] = ACTIONS(1184), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), @@ -74599,28 +74263,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1353), [sym_undefined] = ACTIONS(1901), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1773), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1811), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), [anon_sym_any] = ACTIONS(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_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [anon_sym_abstract] = ACTIONS(114), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), @@ -74631,125 +74295,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [263] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2361), - [sym_subscript_expression] = STATE(2361), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5394), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3883), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2362), + [sym_subscript_expression] = STATE(2362), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5680), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3453), [sym_comment] = STATE(263), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2361), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5900), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2362), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5811), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(790), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1905), [anon_sym_export] = ACTIONS(1907), [anon_sym_STAR] = ACTIONS(23), [anon_sym_type] = ACTIONS(1907), [anon_sym_namespace] = ACTIONS(1909), [anon_sym_LBRACE] = ACTIONS(1911), - [anon_sym_typeof] = ACTIONS(1913), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1907), [anon_sym_let] = ACTIONS(1907), [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_await] = ACTIONS(48), + [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1907), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1176), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1913), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1919), - [anon_sym_using] = ACTIONS(70), + [anon_sym_new] = ACTIONS(1915), + [anon_sym_using] = ACTIONS(1184), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(1921), - [anon_sym_DASH] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1188), + [anon_sym_DASH] = ACTIONS(1188), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(89), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1192), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1923), - [sym_number] = ACTIONS(1925), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(94), + [sym_number] = ACTIONS(96), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(1198), [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(1925), - [sym_false] = ACTIONS(1925), - [sym_null] = ACTIONS(1925), - [sym_undefined] = ACTIONS(1929), + [sym_true] = ACTIONS(96), + [sym_false] = ACTIONS(96), + [sym_null] = ACTIONS(96), + [sym_undefined] = ACTIONS(1917), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1907), - [anon_sym_readonly] = ACTIONS(1931), + [anon_sym_readonly] = ACTIONS(1919), [anon_sym_get] = ACTIONS(1907), [anon_sym_set] = ACTIONS(1907), [anon_sym_QMARK] = ACTIONS(110), @@ -74759,12 +74423,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1907), [anon_sym_override] = ACTIONS(1907), [anon_sym_module] = ACTIONS(1907), - [anon_sym_any] = ACTIONS(1933), - [anon_sym_number] = ACTIONS(1933), - [anon_sym_boolean] = ACTIONS(1933), - [anon_sym_string] = ACTIONS(1933), - [anon_sym_symbol] = ACTIONS(1933), - [anon_sym_object] = ACTIONS(1933), + [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_property] = ACTIONS(1907), [anon_sym_signal] = ACTIONS(1907), [anon_sym_on] = ACTIONS(1907), @@ -74780,145 +74444,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [264] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3076), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_nested_identifier] = STATE(8457), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2447), - [sym_subscript_expression] = STATE(2447), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5903), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3713), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_nested_identifier] = STATE(8171), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2224), + [sym_subscript_expression] = STATE(2224), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5223), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(3724), [sym_comment] = STATE(264), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(6243), - [sym_non_null_expression] = STATE(2447), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5900), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_type_arguments] = STATE(663), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7994), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1935), - [anon_sym_export] = ACTIONS(1937), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5531), + [sym_non_null_expression] = STATE(2224), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5811), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_type_arguments] = STATE(788), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7502), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1923), + [anon_sym_export] = ACTIONS(1925), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_namespace] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_typeof] = ACTIONS(1168), + [anon_sym_type] = ACTIONS(1925), + [anon_sym_namespace] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_typeof] = ACTIONS(1931), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), + [anon_sym_from] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(46), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1937), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1176), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1925), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1933), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1943), + [anon_sym_async] = ACTIONS(1935), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1945), - [anon_sym_using] = ACTIONS(1184), + [anon_sym_new] = ACTIONS(1937), + [anon_sym_using] = ACTIONS(70), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(1188), - [anon_sym_DASH] = ACTIONS(1188), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1939), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1192), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(89), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(94), - [sym_number] = ACTIONS(96), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(1198), + [anon_sym_BQUOTE] = ACTIONS(1941), + [sym_number] = ACTIONS(1943), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1945), [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(96), - [sym_false] = ACTIONS(96), - [sym_null] = ACTIONS(96), + [sym_true] = ACTIONS(1943), + [sym_false] = ACTIONS(1943), + [sym_null] = ACTIONS(1943), [sym_undefined] = ACTIONS(1947), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1937), + [anon_sym_static] = ACTIONS(1925), [anon_sym_readonly] = ACTIONS(1949), - [anon_sym_get] = ACTIONS(1937), - [anon_sym_set] = ACTIONS(1937), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), [anon_sym_QMARK] = ACTIONS(110), - [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_declare] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_protected] = ACTIONS(1925), + [anon_sym_override] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), [anon_sym_any] = ACTIONS(1951), [anon_sym_number] = ACTIONS(1951), [anon_sym_boolean] = ACTIONS(1951), [anon_sym_string] = ACTIONS(1951), [anon_sym_symbol] = ACTIONS(1951), [anon_sym_object] = ACTIONS(1951), - [anon_sym_property] = ACTIONS(1937), - [anon_sym_signal] = ACTIONS(1937), - [anon_sym_on] = ACTIONS(1937), - [anon_sym_required] = ACTIONS(1937), - [anon_sym_component] = ACTIONS(1937), + [anon_sym_property] = ACTIONS(1925), + [anon_sym_signal] = ACTIONS(1925), + [anon_sym_on] = ACTIONS(1925), + [anon_sym_required] = ACTIONS(1925), + [anon_sym_component] = ACTIONS(1925), [anon_sym_abstract] = ACTIONS(114), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), @@ -74929,73 +74593,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [265] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2975), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2746), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(265), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_type] = ACTIONS(1373), + [anon_sym_type] = ACTIONS(1389), [anon_sym_as] = ACTIONS(1955), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_COMMA] = ACTIONS(1955), [anon_sym_RBRACE] = ACTIONS(1955), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_RPAREN] = ACTIONS(1955), [anon_sym_await] = ACTIONS(1172), [anon_sym_in] = ACTIONS(1955), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_COLON] = ACTIONS(1955), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_RBRACK] = ACTIONS(1955), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(1955), @@ -75003,10 +74667,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), [anon_sym_QMARK_DOT] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_AMP_AMP] = ACTIONS(1955), [anon_sym_PIPE_PIPE] = ACTIONS(1955), @@ -75044,97 +74708,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [anon_sym_satisfies] = ACTIONS(1955), [sym__ternary_qmark] = ACTIONS(1957), [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3063), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2965), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(266), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), + [anon_sym_export] = ACTIONS(1719), [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_type] = ACTIONS(1779), + [anon_sym_type] = ACTIONS(1719), [anon_sym_as] = ACTIONS(1955), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(1955), [anon_sym_RBRACE] = ACTIONS(1955), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), [anon_sym_in] = ACTIONS(1955), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_SEMI] = ACTIONS(1955), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), @@ -75143,9 +74807,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1955), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_QMARK_DOT] = ACTIONS(1955), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), @@ -75187,85 +74851,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [anon_sym_satisfies] = ACTIONS(1955), [sym__automatic_semicolon] = ACTIONS(1957), [sym__ternary_qmark] = ACTIONS(1957), [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3091), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2854), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(267), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_STAR] = ACTIONS(1967), [anon_sym_type] = ACTIONS(1861), [anon_sym_as] = ACTIONS(1955), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_COMMA] = ACTIONS(1955), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), @@ -75284,9 +74948,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1955), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_QMARK_DOT] = ACTIONS(1955), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), @@ -75300,7 +74964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1955), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_PERCENT] = ACTIONS(1955), [anon_sym_STAR_STAR] = ACTIONS(1955), [anon_sym_LT] = ACTIONS(85), @@ -75355,198 +75019,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [268] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3358), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3074), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(268), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_in] = ACTIONS(1955), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(1955), - [anon_sym_DOT] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_QMARK_DOT] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_AMP_AMP] = ACTIONS(1955), - [anon_sym_PIPE_PIPE] = ACTIONS(1955), - [anon_sym_GT_GT] = ACTIONS(1955), - [anon_sym_GT_GT_GT] = ACTIONS(1955), - [anon_sym_LT_LT] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_STAR_STAR] = ACTIONS(1955), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1955), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), - [anon_sym_GT_EQ] = ACTIONS(1955), - [anon_sym_QMARK_QMARK] = ACTIONS(1955), - [anon_sym_instanceof] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_satisfies] = ACTIONS(1955), - [sym__automatic_semicolon] = ACTIONS(1957), - [sym__ternary_qmark] = ACTIONS(1957), - [sym_html_comment] = ACTIONS(5), - }, - [269] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3263), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(269), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), [anon_sym_export] = ACTIONS(1675), - [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1975), [anon_sym_type] = ACTIONS(1675), [anon_sym_as] = ACTIONS(1955), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_COMMA] = ACTIONS(1955), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), @@ -75558,7 +75082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(1955), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(1955), [anon_sym_DOT] = ACTIONS(1955), @@ -75568,7 +75092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), [anon_sym_QMARK_DOT] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_AMP_AMP] = ACTIONS(1955), [anon_sym_PIPE_PIPE] = ACTIONS(1955), @@ -75580,7 +75104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1955), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_PERCENT] = ACTIONS(1955), [anon_sym_STAR_STAR] = ACTIONS(1955), [anon_sym_LT] = ACTIONS(85), @@ -75606,7 +75130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -75634,59 +75158,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1957), [sym_html_comment] = ACTIONS(5), }, + [269] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3296), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(269), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_SEMI] = ACTIONS(1955), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_satisfies] = ACTIONS(1955), + [sym__automatic_semicolon] = ACTIONS(1957), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, [270] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3586), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3575), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(270), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_STAR] = ACTIONS(1991), [anon_sym_type] = ACTIONS(1639), [anon_sym_as] = ACTIONS(1955), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -75698,7 +75362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_of] = ACTIONS(1639), [anon_sym_COLON] = ACTIONS(1955), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(1955), [anon_sym_DOT] = ACTIONS(1955), @@ -75774,197 +75438,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3568), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3444), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(271), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1999), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_as] = ACTIONS(1955), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_in] = ACTIONS(1955), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(1955), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(1955), - [anon_sym_DOT] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_QMARK_DOT] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_AMP_AMP] = ACTIONS(1955), - [anon_sym_PIPE_PIPE] = ACTIONS(1955), - [anon_sym_GT_GT] = ACTIONS(1955), - [anon_sym_GT_GT_GT] = ACTIONS(1955), - [anon_sym_LT_LT] = ACTIONS(1955), - [anon_sym_AMP] = ACTIONS(1955), - [anon_sym_CARET] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_PERCENT] = ACTIONS(1955), - [anon_sym_STAR_STAR] = ACTIONS(1955), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_LT_EQ] = ACTIONS(1955), - [anon_sym_EQ_EQ] = ACTIONS(1955), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ] = ACTIONS(1955), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), - [anon_sym_GT_EQ] = ACTIONS(1955), - [anon_sym_QMARK_QMARK] = ACTIONS(1955), - [anon_sym_instanceof] = ACTIONS(1955), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), - [anon_sym_satisfies] = ACTIONS(1955), - [sym__ternary_qmark] = ACTIONS(1957), - [sym_html_comment] = ACTIONS(5), - }, - [272] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3564), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(272), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), [anon_sym_export] = ACTIONS(1595), - [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_STAR] = ACTIONS(1999), [anon_sym_type] = ACTIONS(1595), [anon_sym_as] = ACTIONS(1955), [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1595), @@ -75975,7 +75500,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(1955), [anon_sym_of] = ACTIONS(1595), [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(1955), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_GT] = ACTIONS(1955), [anon_sym_DOT] = ACTIONS(1955), @@ -75985,7 +75511,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), [anon_sym_QMARK_DOT] = ACTIONS(1955), - [anon_sym_new] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2001), [anon_sym_using] = ACTIONS(1615), [anon_sym_AMP_AMP] = ACTIONS(1955), [anon_sym_PIPE_PIPE] = ACTIONS(1955), @@ -75997,7 +75523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1955), [anon_sym_PLUS] = ACTIONS(1603), [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_PERCENT] = ACTIONS(1955), [anon_sym_STAR_STAR] = ACTIONS(1955), [anon_sym_LT] = ACTIONS(85), @@ -76023,7 +75549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1595), [anon_sym_readonly] = ACTIONS(1595), @@ -76050,52 +75576,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(1957), [sym_html_comment] = ACTIONS(5), }, + [272] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3588), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(272), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_STAR] = ACTIONS(2007), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_as] = ACTIONS(1955), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_in] = ACTIONS(1955), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_QMARK_DOT] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_AMP_AMP] = ACTIONS(1955), + [anon_sym_PIPE_PIPE] = ACTIONS(1955), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1955), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_PERCENT] = ACTIONS(1955), + [anon_sym_STAR_STAR] = ACTIONS(1955), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_LT_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ] = ACTIONS(1955), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ] = ACTIONS(1955), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1955), + [anon_sym_QMARK_QMARK] = ACTIONS(1955), + [anon_sym_instanceof] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [anon_sym_satisfies] = ACTIONS(1955), + [sym__ternary_qmark] = ACTIONS(1957), + [sym_html_comment] = ACTIONS(5), + }, [273] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3848), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3671), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(273), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_STAR] = ACTIONS(2013), @@ -76150,8 +75814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -76189,212 +75853,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_declaration] = STATE(4216), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3460), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(1251), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3355), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(274), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5807), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), [anon_sym_type] = ACTIONS(2015), [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(2019), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(982), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(371), [anon_sym_let] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1012), + [anon_sym_class] = ACTIONS(403), [anon_sym_async] = ACTIONS(2023), - [anon_sym_function] = ACTIONS(1016), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_function] = ACTIONS(407), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), [anon_sym_declare] = ACTIONS(2025), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), [anon_sym_module] = ACTIONS(2027), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_interface] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1028), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(417), + [anon_sym_interface] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(421), [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_declaration] = STATE(4414), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3309), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4255), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4255), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4255), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(1455), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3349), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(275), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(4255), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(1909), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5786), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5674), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), [anon_sym_type] = ACTIONS(2029), [anon_sym_namespace] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(2033), - [anon_sym_from] = ACTIONS(1719), + [anon_sym_from] = ACTIONS(1817), [anon_sym_var] = ACTIONS(1046), [anon_sym_let] = ACTIONS(2035), [anon_sym_const] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), @@ -76402,523 +76066,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(1076), [anon_sym_async] = ACTIONS(2037), [anon_sym_function] = ACTIONS(1080), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), [anon_sym_declare] = ACTIONS(2039), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), [anon_sym_module] = ACTIONS(2041), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [anon_sym_abstract] = ACTIONS(1088), [anon_sym_interface] = ACTIONS(1090), [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_declaration] = STATE(7906), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3444), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(1479), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3350), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1514), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1514), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1514), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(276), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5879), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2045), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(1514), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(487), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5674), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2029), + [anon_sym_namespace] = ACTIONS(2031), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2033), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(1046), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1076), + [anon_sym_async] = ACTIONS(2037), + [anon_sym_function] = ACTIONS(1080), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2051), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2053), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2039), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2041), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1088), + [anon_sym_interface] = ACTIONS(1090), + [anon_sym_enum] = ACTIONS(1092), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_declaration] = STATE(1643), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3477), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(5564), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(5802), + [sym_lexical_declaration] = STATE(5802), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3285), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(5802), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(5802), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(5802), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(277), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6030), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1110), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(5802), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(5802), + [sym_abstract_class_declaration] = STATE(5802), + [sym_module] = STATE(5802), + [sym_internal_module] = STATE(3487), + [sym_import_alias] = STATE(5802), + [sym_interface_declaration] = STATE(5802), + [sym_enum_declaration] = STATE(5802), + [sym_type_alias_declaration] = STATE(5802), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5862), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2045), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_function] = ACTIONS(1144), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2055), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2065), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_interface] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2059), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2061), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(2063), + [anon_sym_interface] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_declaration] = STATE(1476), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3496), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1587), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1587), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1587), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(5638), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(5802), + [sym_lexical_declaration] = STATE(5802), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3329), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(5802), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(5802), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(5802), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(278), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(1587), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(478), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6030), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2059), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1110), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(1114), - [anon_sym_BANG] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(5802), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(5802), + [sym_abstract_class_declaration] = STATE(5802), + [sym_module] = STATE(5802), + [sym_internal_module] = STATE(3487), + [sym_import_alias] = STATE(5802), + [sym_interface_declaration] = STATE(5802), + [sym_enum_declaration] = STATE(5802), + [sym_type_alias_declaration] = STATE(5802), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5862), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2043), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2045), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2049), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1140), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_function] = ACTIONS(1144), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2055), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2065), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1152), - [anon_sym_interface] = ACTIONS(1154), - [anon_sym_enum] = ACTIONS(1156), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2059), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2061), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(2063), + [anon_sym_interface] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_declaration] = STATE(1680), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3367), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(1558), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3175), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(279), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5763), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), [anon_sym_type] = ACTIONS(2069), [anon_sym_namespace] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(2073), - [anon_sym_from] = ACTIONS(1719), + [anon_sym_from] = ACTIONS(1817), [anon_sym_var] = ACTIONS(159), [anon_sym_let] = ACTIONS(2075), [anon_sym_const] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), @@ -76926,1447 +76590,1447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(201), [anon_sym_async] = ACTIONS(2077), [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), [anon_sym_declare] = ACTIONS(2079), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [anon_sym_abstract] = ACTIONS(241), [anon_sym_interface] = ACTIONS(243), [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_declaration] = STATE(1151), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3369), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(7352), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3310), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(280), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6227), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5709), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), [anon_sym_type] = ACTIONS(2083), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2087), - [anon_sym_from] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_from] = ACTIONS(1817), [anon_sym_var] = ACTIONS(854), - [anon_sym_let] = ACTIONS(2089), + [anon_sym_let] = ACTIONS(2087), [anon_sym_const] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2089), [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2091), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2093), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [anon_sym_abstract] = ACTIONS(896), [anon_sym_interface] = ACTIONS(898), [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_declaration] = STATE(1285), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3463), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(4161), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3259), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(4079), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(4079), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(4079), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(281), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6312), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_namespace] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2101), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(371), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(375), - [anon_sym_BANG] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(4079), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(1767), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5937), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2099), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(403), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(407), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2107), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(421), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2107), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), [sym_html_comment] = ACTIONS(5), }, [282] = { - [sym_declaration] = STATE(1748), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3382), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1751), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1751), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1751), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(1144), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3361), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(282), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(1751), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(504), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5763), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2069), - [anon_sym_namespace] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2073), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(159), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5801), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2113), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(201), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(205), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2079), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(241), - [anon_sym_interface] = ACTIONS(243), - [anon_sym_enum] = ACTIONS(245), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2119), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2121), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, [283] = { - [sym_declaration] = STATE(1311), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3410), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1302), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1302), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1302), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(1595), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3356), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1574), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1574), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1574), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(283), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(1302), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(398), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6312), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_namespace] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2101), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(371), - [anon_sym_let] = ACTIONS(2103), - [anon_sym_const] = ACTIONS(375), - [anon_sym_BANG] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(1574), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(496), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2069), + [anon_sym_namespace] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2073), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(159), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(163), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(403), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(407), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(201), + [anon_sym_async] = ACTIONS(2077), + [anon_sym_function] = ACTIONS(205), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2107), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(417), - [anon_sym_interface] = ACTIONS(419), - [anon_sym_enum] = ACTIONS(421), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2079), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2081), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(241), + [anon_sym_interface] = ACTIONS(243), + [anon_sym_enum] = ACTIONS(245), [sym_html_comment] = ACTIONS(5), }, [284] = { - [sym_declaration] = STATE(6302), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(6274), - [sym_lexical_declaration] = STATE(6274), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3314), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(6274), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(6274), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(6274), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(1172), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3357), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1180), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1180), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1180), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(284), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(6274), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(6274), - [sym_abstract_class_declaration] = STATE(6274), - [sym_module] = STATE(6274), - [sym_internal_module] = STATE(3758), - [sym_import_alias] = STATE(6274), - [sym_interface_declaration] = STATE(6274), - [sym_enum_declaration] = STATE(6274), - [sym_type_alias_declaration] = STATE(6274), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5917), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(1180), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(362), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5801), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2109), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(2113), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(2115), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(982), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(986), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2123), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1012), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(2131), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2135), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2119), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2121), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1024), + [anon_sym_interface] = ACTIONS(1026), + [anon_sym_enum] = ACTIONS(1028), [sym_html_comment] = ACTIONS(5), }, [285] = { - [sym_declaration] = STATE(5831), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(6274), - [sym_lexical_declaration] = STATE(6274), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3370), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(6274), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(6274), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(6274), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(7716), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3288), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(7282), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(7282), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(7282), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(285), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(6274), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(6274), - [sym_abstract_class_declaration] = STATE(6274), - [sym_module] = STATE(6274), - [sym_internal_module] = STATE(3758), - [sym_import_alias] = STATE(6274), - [sym_interface_declaration] = STATE(6274), - [sym_enum_declaration] = STATE(6274), - [sym_type_alias_declaration] = STATE(6274), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5917), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2111), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2113), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(2115), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(7282), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(3486), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5709), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2085), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(854), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2123), - [anon_sym_function] = ACTIONS(2125), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(884), + [anon_sym_async] = ACTIONS(2089), + [anon_sym_function] = ACTIONS(888), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2129), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(2131), - [anon_sym_interface] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2135), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2091), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2093), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(896), + [anon_sym_interface] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(900), [sym_html_comment] = ACTIONS(5), }, [286] = { - [sym_declaration] = STATE(1091), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3378), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(1092), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(1092), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(1092), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(4110), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(4079), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(4079), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(4079), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(286), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(1092), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(372), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6227), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2087), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(854), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(858), - [anon_sym_BANG] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(4079), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(1767), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5937), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2095), + [anon_sym_namespace] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2099), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(918), + [anon_sym_let] = ACTIONS(2101), + [anon_sym_const] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(884), - [anon_sym_async] = ACTIONS(2091), - [anon_sym_function] = ACTIONS(888), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(948), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(952), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2095), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(896), - [anon_sym_interface] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(900), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2105), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2107), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(960), + [anon_sym_interface] = ACTIONS(962), + [anon_sym_enum] = ACTIONS(964), [sym_html_comment] = ACTIONS(5), }, [287] = { - [sym_declaration] = STATE(4412), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4255), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4255), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4255), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(4043), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3177), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(287), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(4255), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(1909), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5786), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_namespace] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2033), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(1046), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(1050), - [anon_sym_BANG] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6087), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2123), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2127), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1076), - [anon_sym_async] = ACTIONS(2037), - [anon_sym_function] = ACTIONS(1080), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2039), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2041), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1088), - [anon_sym_interface] = ACTIONS(1090), - [anon_sym_enum] = ACTIONS(1092), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2133), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2135), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), [sym_html_comment] = ACTIONS(5), }, [288] = { - [sym_declaration] = STATE(4113), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3426), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(4080), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(4080), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(4080), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(1295), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3358), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(1313), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(1313), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(1313), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(288), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(4080), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(1853), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5807), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(1313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(378), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(5738), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), [anon_sym_type] = ACTIONS(2015), [anon_sym_namespace] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(2019), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(982), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(371), [anon_sym_let] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1012), + [anon_sym_class] = ACTIONS(403), [anon_sym_async] = ACTIONS(2023), - [anon_sym_function] = ACTIONS(1016), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_function] = ACTIONS(407), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), [anon_sym_declare] = ACTIONS(2025), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), [anon_sym_module] = ACTIONS(2027), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(1024), - [anon_sym_interface] = ACTIONS(1026), - [anon_sym_enum] = ACTIONS(1028), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(417), + [anon_sym_interface] = ACTIONS(419), + [anon_sym_enum] = ACTIONS(421), [sym_html_comment] = ACTIONS(5), }, [289] = { - [sym_declaration] = STATE(7532), - [sym_import] = STATE(5160), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3497), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_class_declaration] = STATE(8195), - [sym_function_expression] = STATE(3749), - [sym_function_declaration] = STATE(8195), - [sym_generator_function] = STATE(3749), - [sym_generator_function_declaration] = STATE(8195), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_declaration] = STATE(3973), + [sym_import] = STATE(4938), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_class_declaration] = STATE(3972), + [sym_function_expression] = STATE(3548), + [sym_function_declaration] = STATE(3972), + [sym_generator_function] = STATE(3548), + [sym_generator_function_declaration] = STATE(3972), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(289), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_function_signature] = STATE(8195), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(3628), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(5879), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(2045), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_var] = ACTIONS(918), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_function_signature] = STATE(3972), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(1741), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6087), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(2123), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(2127), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_var] = ACTIONS(1110), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(948), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_function] = ACTIONS(952), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_function] = ACTIONS(1144), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(2051), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(2053), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_abstract] = ACTIONS(960), - [anon_sym_interface] = ACTIONS(962), - [anon_sym_enum] = ACTIONS(964), + [anon_sym_static] = ACTIONS(1817), + [anon_sym_readonly] = ACTIONS(1817), + [anon_sym_get] = ACTIONS(1817), + [anon_sym_set] = ACTIONS(1817), + [anon_sym_declare] = ACTIONS(2133), + [anon_sym_public] = ACTIONS(1817), + [anon_sym_private] = ACTIONS(1817), + [anon_sym_protected] = ACTIONS(1817), + [anon_sym_override] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(2135), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_abstract] = ACTIONS(1152), + [anon_sym_interface] = ACTIONS(1154), + [anon_sym_enum] = ACTIONS(1156), [sym_html_comment] = ACTIONS(5), }, [290] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(4320), - [sym_statement_block] = STATE(4320), - [sym_if_statement] = STATE(4320), - [sym_switch_statement] = STATE(4320), - [sym_try_statement] = STATE(4320), - [sym_with_statement] = STATE(4320), - [sym_empty_statement] = STATE(4320), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(4054), + [sym_statement_block] = STATE(4054), + [sym_if_statement] = STATE(4054), + [sym_switch_statement] = STATE(4054), + [sym_try_statement] = STATE(4054), + [sym_with_statement] = STATE(4054), + [sym_empty_statement] = STATE(4054), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(290), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(7922), - [sym_ui_object_array] = STATE(7922), - [sym_ui_nested_identifier] = STATE(7291), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(7243), + [sym_ui_object_array] = STATE(7243), + [sym_ui_nested_identifier] = STATE(6388), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2137), [anon_sym_export] = ACTIONS(2139), [anon_sym_type] = ACTIONS(2139), [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(1044), + [anon_sym_with] = ACTIONS(916), [anon_sym_let] = ACTIONS(2139), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(2143), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -78413,88 +78077,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [291] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(4268), - [sym_statement_block] = STATE(4268), - [sym_if_statement] = STATE(4268), - [sym_switch_statement] = STATE(4268), - [sym_try_statement] = STATE(4268), - [sym_with_statement] = STATE(4268), - [sym_empty_statement] = STATE(4268), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(4096), + [sym_statement_block] = STATE(4096), + [sym_if_statement] = STATE(4096), + [sym_switch_statement] = STATE(4096), + [sym_try_statement] = STATE(4096), + [sym_with_statement] = STATE(4096), + [sym_empty_statement] = STATE(4096), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(291), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(7561), - [sym_ui_object_array] = STATE(7561), - [sym_ui_nested_identifier] = STATE(7291), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(1038), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(4096), + [sym_ui_object_array] = STATE(4096), + [sym_ui_nested_identifier] = STATE(6857), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(2139), + [anon_sym_from] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(916), + [anon_sym_let] = ACTIONS(2149), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_of] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2153), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -78517,112 +78181,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [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), - [anon_sym_property] = ACTIONS(2139), - [anon_sym_signal] = ACTIONS(2139), - [anon_sym_on] = ACTIONS(2139), - [anon_sym_required] = ACTIONS(2139), - [anon_sym_component] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_readonly] = ACTIONS(2149), + [anon_sym_get] = ACTIONS(2149), + [anon_sym_set] = ACTIONS(2149), + [anon_sym_declare] = ACTIONS(2149), + [anon_sym_public] = ACTIONS(2149), + [anon_sym_private] = ACTIONS(2149), + [anon_sym_protected] = ACTIONS(2149), + [anon_sym_override] = ACTIONS(2149), + [anon_sym_module] = ACTIONS(2149), + [anon_sym_any] = ACTIONS(2149), + [anon_sym_number] = ACTIONS(2149), + [anon_sym_boolean] = ACTIONS(2149), + [anon_sym_string] = ACTIONS(2149), + [anon_sym_symbol] = ACTIONS(2149), + [anon_sym_object] = ACTIONS(2149), + [anon_sym_property] = ACTIONS(2149), + [anon_sym_signal] = ACTIONS(2149), + [anon_sym_on] = ACTIONS(2149), + [anon_sym_required] = ACTIONS(2149), + [anon_sym_component] = ACTIONS(2149), [sym_html_comment] = ACTIONS(5), }, [292] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(4319), - [sym_statement_block] = STATE(4319), - [sym_if_statement] = STATE(4319), - [sym_switch_statement] = STATE(4319), - [sym_try_statement] = STATE(4319), - [sym_with_statement] = STATE(4319), - [sym_empty_statement] = STATE(4319), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(4069), + [sym_statement_block] = STATE(4069), + [sym_if_statement] = STATE(4069), + [sym_switch_statement] = STATE(4069), + [sym_try_statement] = STATE(4069), + [sym_with_statement] = STATE(4069), + [sym_empty_statement] = STATE(4069), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(292), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(7923), - [sym_ui_object_array] = STATE(7923), - [sym_ui_nested_identifier] = STATE(7291), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(7592), + [sym_ui_object_array] = STATE(7592), + [sym_ui_nested_identifier] = STATE(6388), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2137), [anon_sym_export] = ACTIONS(2139), [anon_sym_type] = ACTIONS(2139), [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(1044), + [anon_sym_with] = ACTIONS(916), [anon_sym_let] = ACTIONS(2139), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(2143), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -78669,88 +78333,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(4279), - [sym_statement_block] = STATE(4279), - [sym_if_statement] = STATE(4279), - [sym_switch_statement] = STATE(4279), - [sym_try_statement] = STATE(4279), - [sym_with_statement] = STATE(4279), - [sym_empty_statement] = STATE(4279), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(4070), + [sym_statement_block] = STATE(4070), + [sym_if_statement] = STATE(4070), + [sym_switch_statement] = STATE(4070), + [sym_try_statement] = STATE(4070), + [sym_with_statement] = STATE(4070), + [sym_empty_statement] = STATE(4070), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(293), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(4279), - [sym_ui_object_array] = STATE(4279), - [sym_ui_nested_identifier] = STATE(6787), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(2147), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1038), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(7653), + [sym_ui_object_array] = STATE(7653), + [sym_ui_nested_identifier] = STATE(6388), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(2149), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(916), + [anon_sym_let] = ACTIONS(2139), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_of] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2143), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -78773,112 +78437,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_property] = ACTIONS(2149), - [anon_sym_signal] = ACTIONS(2149), - [anon_sym_on] = ACTIONS(2149), - [anon_sym_required] = ACTIONS(2149), - [anon_sym_component] = ACTIONS(2149), + [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), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_signal] = ACTIONS(2139), + [anon_sym_on] = ACTIONS(2139), + [anon_sym_required] = ACTIONS(2139), + [anon_sym_component] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [294] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(4234), - [sym_statement_block] = STATE(4234), - [sym_if_statement] = STATE(4234), - [sym_switch_statement] = STATE(4234), - [sym_try_statement] = STATE(4234), - [sym_with_statement] = STATE(4234), - [sym_empty_statement] = STATE(4234), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(4071), + [sym_statement_block] = STATE(4071), + [sym_if_statement] = STATE(4071), + [sym_switch_statement] = STATE(4071), + [sym_try_statement] = STATE(4071), + [sym_with_statement] = STATE(4071), + [sym_empty_statement] = STATE(4071), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(294), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(7930), - [sym_ui_object_array] = STATE(7930), - [sym_ui_nested_identifier] = STATE(7291), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(7683), + [sym_ui_object_array] = STATE(7683), + [sym_ui_nested_identifier] = STATE(6388), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2137), [anon_sym_export] = ACTIONS(2139), [anon_sym_type] = ACTIONS(2139), [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(1044), + [anon_sym_with] = ACTIONS(916), [anon_sym_let] = ACTIONS(2139), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(2143), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -78925,88 +78589,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [295] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(4256), - [sym_statement_block] = STATE(4256), - [sym_if_statement] = STATE(4256), - [sym_switch_statement] = STATE(4256), - [sym_try_statement] = STATE(4256), - [sym_with_statement] = STATE(4256), - [sym_empty_statement] = STATE(4256), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(4074), + [sym_statement_block] = STATE(4074), + [sym_if_statement] = STATE(4074), + [sym_switch_statement] = STATE(4074), + [sym_try_statement] = STATE(4074), + [sym_with_statement] = STATE(4074), + [sym_empty_statement] = STATE(4074), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(295), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(7458), - [sym_ui_object_array] = STATE(7458), - [sym_ui_nested_identifier] = STATE(7291), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(7692), + [sym_ui_object_array] = STATE(7692), + [sym_ui_nested_identifier] = STATE(6388), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2137), [anon_sym_export] = ACTIONS(2139), [anon_sym_type] = ACTIONS(2139), [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(1044), + [anon_sym_with] = ACTIONS(916), [anon_sym_let] = ACTIONS(2139), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(2143), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -79053,88 +78717,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [296] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(4313), - [sym_statement_block] = STATE(4313), - [sym_if_statement] = STATE(4313), - [sym_switch_statement] = STATE(4313), - [sym_try_statement] = STATE(4313), - [sym_with_statement] = STATE(4313), - [sym_empty_statement] = STATE(4313), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(4136), + [sym_statement_block] = STATE(4136), + [sym_if_statement] = STATE(4136), + [sym_switch_statement] = STATE(4136), + [sym_try_statement] = STATE(4136), + [sym_with_statement] = STATE(4136), + [sym_empty_statement] = STATE(4136), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(296), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(7945), - [sym_ui_object_array] = STATE(7945), - [sym_ui_nested_identifier] = STATE(7291), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(2137), - [anon_sym_export] = ACTIONS(2139), - [anon_sym_type] = ACTIONS(2139), - [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(1038), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(4136), + [sym_ui_object_array] = STATE(4136), + [sym_ui_nested_identifier] = STATE(6857), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(2147), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2151), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(2139), + [anon_sym_from] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(916), + [anon_sym_let] = ACTIONS(2149), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_of] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(2153), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -79157,112 +78821,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [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), - [anon_sym_property] = ACTIONS(2139), - [anon_sym_signal] = ACTIONS(2139), - [anon_sym_on] = ACTIONS(2139), - [anon_sym_required] = ACTIONS(2139), - [anon_sym_component] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2149), + [anon_sym_readonly] = ACTIONS(2149), + [anon_sym_get] = ACTIONS(2149), + [anon_sym_set] = ACTIONS(2149), + [anon_sym_declare] = ACTIONS(2149), + [anon_sym_public] = ACTIONS(2149), + [anon_sym_private] = ACTIONS(2149), + [anon_sym_protected] = ACTIONS(2149), + [anon_sym_override] = ACTIONS(2149), + [anon_sym_module] = ACTIONS(2149), + [anon_sym_any] = ACTIONS(2149), + [anon_sym_number] = ACTIONS(2149), + [anon_sym_boolean] = ACTIONS(2149), + [anon_sym_string] = ACTIONS(2149), + [anon_sym_symbol] = ACTIONS(2149), + [anon_sym_object] = ACTIONS(2149), + [anon_sym_property] = ACTIONS(2149), + [anon_sym_signal] = ACTIONS(2149), + [anon_sym_on] = ACTIONS(2149), + [anon_sym_required] = ACTIONS(2149), + [anon_sym_component] = ACTIONS(2149), [sym_html_comment] = ACTIONS(5), }, [297] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(4263), - [sym_statement_block] = STATE(4263), - [sym_if_statement] = STATE(4263), - [sym_switch_statement] = STATE(4263), - [sym_try_statement] = STATE(4263), - [sym_with_statement] = STATE(4263), - [sym_empty_statement] = STATE(4263), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(4055), + [sym_statement_block] = STATE(4055), + [sym_if_statement] = STATE(4055), + [sym_switch_statement] = STATE(4055), + [sym_try_statement] = STATE(4055), + [sym_with_statement] = STATE(4055), + [sym_empty_statement] = STATE(4055), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(297), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(7565), - [sym_ui_object_array] = STATE(7565), - [sym_ui_nested_identifier] = STATE(7291), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(7270), + [sym_ui_object_array] = STATE(7270), + [sym_ui_nested_identifier] = STATE(6388), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2137), [anon_sym_export] = ACTIONS(2139), [anon_sym_type] = ACTIONS(2139), [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(1044), + [anon_sym_with] = ACTIONS(916), [anon_sym_let] = ACTIONS(2139), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(2143), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -79309,88 +78973,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [298] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(4259), - [sym_statement_block] = STATE(4259), - [sym_if_statement] = STATE(4259), - [sym_switch_statement] = STATE(4259), - [sym_try_statement] = STATE(4259), - [sym_with_statement] = STATE(4259), - [sym_empty_statement] = STATE(4259), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(4087), + [sym_statement_block] = STATE(4087), + [sym_if_statement] = STATE(4087), + [sym_switch_statement] = STATE(4087), + [sym_try_statement] = STATE(4087), + [sym_with_statement] = STATE(4087), + [sym_empty_statement] = STATE(4087), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(298), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(7571), - [sym_ui_object_array] = STATE(7571), - [sym_ui_nested_identifier] = STATE(7291), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(7300), + [sym_ui_object_array] = STATE(7300), + [sym_ui_nested_identifier] = STATE(6388), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2137), [anon_sym_export] = ACTIONS(2139), [anon_sym_type] = ACTIONS(2139), [anon_sym_namespace] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(1038), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(2139), - [anon_sym_with] = ACTIONS(1044), + [anon_sym_with] = ACTIONS(916), [anon_sym_let] = ACTIONS(2139), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(2139), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_try] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(2143), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -79437,88 +79101,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [299] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(4286), - [sym_statement_block] = STATE(4286), - [sym_if_statement] = STATE(4286), - [sym_switch_statement] = STATE(4286), - [sym_try_statement] = STATE(4286), - [sym_with_statement] = STATE(4286), - [sym_empty_statement] = STATE(4286), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8186), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(4068), + [sym_statement_block] = STATE(4068), + [sym_if_statement] = STATE(4068), + [sym_switch_statement] = STATE(4068), + [sym_try_statement] = STATE(4068), + [sym_with_statement] = STATE(4068), + [sym_empty_statement] = STATE(4068), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2884), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7792), + [sym_string] = STATE(3548), [sym_comment] = STATE(299), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(4286), - [sym_ui_object_array] = STATE(4286), - [sym_ui_nested_identifier] = STATE(6787), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(2147), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(1038), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(7291), + [sym_ui_object_array] = STATE(7291), + [sym_ui_nested_identifier] = STATE(6388), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(910), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(1044), - [anon_sym_let] = ACTIONS(2149), + [anon_sym_from] = ACTIONS(2139), + [anon_sym_with] = ACTIONS(916), + [anon_sym_let] = ACTIONS(2139), [anon_sym_BANG] = ACTIONS(151), - [anon_sym_if] = ACTIONS(1052), - [anon_sym_switch] = ACTIONS(1054), + [anon_sym_if] = ACTIONS(924), + [anon_sym_switch] = ACTIONS(926), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(1062), - [anon_sym_SEMI] = ACTIONS(1074), + [anon_sym_of] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(934), + [anon_sym_SEMI] = ACTIONS(946), [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2143), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(2155), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -79541,89 +79205,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_readonly] = ACTIONS(2149), - [anon_sym_get] = ACTIONS(2149), - [anon_sym_set] = ACTIONS(2149), - [anon_sym_declare] = ACTIONS(2149), - [anon_sym_public] = ACTIONS(2149), - [anon_sym_private] = ACTIONS(2149), - [anon_sym_protected] = ACTIONS(2149), - [anon_sym_override] = ACTIONS(2149), - [anon_sym_module] = ACTIONS(2149), - [anon_sym_any] = ACTIONS(2149), - [anon_sym_number] = ACTIONS(2149), - [anon_sym_boolean] = ACTIONS(2149), - [anon_sym_string] = ACTIONS(2149), - [anon_sym_symbol] = ACTIONS(2149), - [anon_sym_object] = ACTIONS(2149), - [anon_sym_property] = ACTIONS(2149), - [anon_sym_signal] = ACTIONS(2149), - [anon_sym_on] = ACTIONS(2149), - [anon_sym_required] = ACTIONS(2149), - [anon_sym_component] = ACTIONS(2149), + [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), + [anon_sym_property] = ACTIONS(2139), + [anon_sym_signal] = ACTIONS(2139), + [anon_sym_on] = ACTIONS(2139), + [anon_sym_required] = ACTIONS(2139), + [anon_sym_component] = ACTIONS(2139), [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2787), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8319), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3068), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6765), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(300), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(6956), + [sym_ui_nested_identifier] = STATE(6392), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6768), + [aux_sym_array_pattern_repeat1] = STATE(6901), [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2169), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2171), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_declare] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_private] = ACTIONS(2159), + [anon_sym_protected] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_any] = ACTIONS(2159), + [anon_sym_number] = ACTIONS(2159), + [anon_sym_boolean] = ACTIONS(2159), + [anon_sym_string] = ACTIONS(2159), + [anon_sym_symbol] = ACTIONS(2159), + [anon_sym_object] = ACTIONS(2159), + [anon_sym_property] = ACTIONS(2159), + [anon_sym_signal] = ACTIONS(2159), + [anon_sym_on] = ACTIONS(2159), + [anon_sym_required] = ACTIONS(2159), + [anon_sym_component] = ACTIONS(2159), + [sym_html_comment] = ACTIONS(5), + }, + [301] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2831), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8188), + [sym_string] = STATE(2894), + [sym_comment] = STATE(301), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(1160), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), + [anon_sym_LBRACE] = ACTIONS(2163), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -79634,14 +79421,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(74), [anon_sym_PLUS] = ACTIONS(1170), @@ -79657,15 +79444,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(2165), + [sym_this] = ACTIONS(2179), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(1160), - [anon_sym_readonly] = ACTIONS(2169), + [anon_sym_readonly] = ACTIONS(2181), [anon_sym_get] = ACTIONS(1160), [anon_sym_set] = ACTIONS(1160), [anon_sym_declare] = ACTIONS(1160), @@ -79687,86 +79474,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1160), [sym_html_comment] = ACTIONS(5), }, - [301] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(7051), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(301), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(7053), - [sym_ui_nested_identifier] = STATE(6609), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7057), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2171), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2177), + [302] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2752), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(7957), + [sym_string] = STATE(2894), + [sym_comment] = STATE(302), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(2177), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(2163), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(1345), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(2173), + [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), @@ -79780,114 +79567,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), + [sym_this] = ACTIONS(2179), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_readonly] = ACTIONS(2173), - [anon_sym_get] = ACTIONS(2173), - [anon_sym_set] = ACTIONS(2173), - [anon_sym_declare] = ACTIONS(2173), - [anon_sym_public] = ACTIONS(2173), - [anon_sym_private] = ACTIONS(2173), - [anon_sym_protected] = ACTIONS(2173), - [anon_sym_override] = ACTIONS(2173), - [anon_sym_module] = ACTIONS(2173), - [anon_sym_any] = ACTIONS(2173), - [anon_sym_number] = ACTIONS(2173), - [anon_sym_boolean] = ACTIONS(2173), - [anon_sym_string] = ACTIONS(2173), - [anon_sym_symbol] = ACTIONS(2173), - [anon_sym_object] = ACTIONS(2173), - [anon_sym_property] = ACTIONS(2173), - [anon_sym_signal] = ACTIONS(2173), - [anon_sym_on] = ACTIONS(2173), - [anon_sym_required] = ACTIONS(2173), - [anon_sym_component] = ACTIONS(2173), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(2181), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1363), + [anon_sym_private] = ACTIONS(1363), + [anon_sym_protected] = ACTIONS(1363), + [anon_sym_override] = ACTIONS(1365), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(7051), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(302), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_definition] = STATE(6947), - [sym_ui_nested_identifier] = STATE(6609), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7057), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2171), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2177), + [303] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3068), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6765), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(303), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_definition] = STATE(6767), + [sym_ui_nested_identifier] = STATE(6392), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6768), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2157), + [anon_sym_export] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_namespace] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), + [anon_sym_from] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(2173), + [anon_sym_of] = ACTIONS(2159), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2169), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2181), + [anon_sym_async] = ACTIONS(2171), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), @@ -79908,208 +79695,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_readonly] = ACTIONS(2173), - [anon_sym_get] = ACTIONS(2173), - [anon_sym_set] = ACTIONS(2173), - [anon_sym_declare] = ACTIONS(2173), - [anon_sym_public] = ACTIONS(2173), - [anon_sym_private] = ACTIONS(2173), - [anon_sym_protected] = ACTIONS(2173), - [anon_sym_override] = ACTIONS(2173), - [anon_sym_module] = ACTIONS(2173), - [anon_sym_any] = ACTIONS(2173), - [anon_sym_number] = ACTIONS(2173), - [anon_sym_boolean] = ACTIONS(2173), - [anon_sym_string] = ACTIONS(2173), - [anon_sym_symbol] = ACTIONS(2173), - [anon_sym_object] = ACTIONS(2173), - [anon_sym_property] = ACTIONS(2173), - [anon_sym_signal] = ACTIONS(2173), - [anon_sym_on] = ACTIONS(2173), - [anon_sym_required] = ACTIONS(2173), - [anon_sym_component] = ACTIONS(2173), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(2159), + [anon_sym_set] = ACTIONS(2159), + [anon_sym_declare] = ACTIONS(2159), + [anon_sym_public] = ACTIONS(2159), + [anon_sym_private] = ACTIONS(2159), + [anon_sym_protected] = ACTIONS(2159), + [anon_sym_override] = ACTIONS(2159), + [anon_sym_module] = ACTIONS(2159), + [anon_sym_any] = ACTIONS(2159), + [anon_sym_number] = ACTIONS(2159), + [anon_sym_boolean] = ACTIONS(2159), + [anon_sym_string] = ACTIONS(2159), + [anon_sym_symbol] = ACTIONS(2159), + [anon_sym_object] = ACTIONS(2159), + [anon_sym_property] = ACTIONS(2159), + [anon_sym_signal] = ACTIONS(2159), + [anon_sym_on] = ACTIONS(2159), + [anon_sym_required] = ACTIONS(2159), + [anon_sym_component] = ACTIONS(2159), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2890), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8209), - [sym_string] = STATE(3073), - [sym_comment] = STATE(303), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(2157), - [anon_sym_export] = ACTIONS(1160), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(1170), + [304] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(6374), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(304), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_RPAREN] = ACTIONS(1345), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1180), + [anon_sym_async] = ACTIONS(62), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(1184), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(2165), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_readonly] = ACTIONS(2169), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1363), - [anon_sym_private] = ACTIONS(1363), - [anon_sym_protected] = ACTIONS(1363), - [anon_sym_override] = ACTIONS(1365), - [anon_sym_module] = ACTIONS(1160), - [anon_sym_any] = ACTIONS(1160), - [anon_sym_number] = ACTIONS(1160), - [anon_sym_boolean] = ACTIONS(1160), - [anon_sym_string] = ACTIONS(1160), - [anon_sym_symbol] = ACTIONS(1160), - [anon_sym_object] = ACTIONS(1160), - [anon_sym_property] = ACTIONS(1160), - [anon_sym_signal] = ACTIONS(1160), - [anon_sym_on] = ACTIONS(1160), - [anon_sym_required] = ACTIONS(1160), - [anon_sym_component] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, - [304] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7799), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(304), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), + [305] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(6940), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(305), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -80121,7 +79907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2183), + [anon_sym_RPAREN] = ACTIONS(2187), [anon_sym_await] = ACTIONS(48), [anon_sym_of] = ACTIONS(21), [anon_sym_yield] = ACTIONS(50), @@ -80142,13 +79928,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2185), + [sym_this] = ACTIONS(2183), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -80156,14 +79942,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2185), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -80178,60 +79964,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, - [305] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7799), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(305), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), + [306] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(7522), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(306), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -80264,13 +80050,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2185), + [sym_this] = ACTIONS(2183), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -80278,14 +80064,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2185), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -80300,60 +80086,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, - [306] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7799), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(306), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), + [307] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(7522), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(307), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -80386,13 +80172,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2185), + [sym_this] = ACTIONS(2183), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -80400,14 +80186,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2185), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -80422,60 +80208,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, - [307] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7194), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(307), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), + [308] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(7522), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(308), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -80508,13 +80294,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2185), + [sym_this] = ACTIONS(2183), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -80522,136 +80308,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2185), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(21), - [anon_sym_number] = ACTIONS(21), - [anon_sym_boolean] = ACTIONS(21), - [anon_sym_string] = ACTIONS(21), - [anon_sym_symbol] = ACTIONS(21), - [anon_sym_object] = ACTIONS(21), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), - [sym_html_comment] = ACTIONS(5), - }, - [308] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7799), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(308), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(21), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2185), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1285), - [anon_sym_AT] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2187), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -80667,59 +80331,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [309] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(6924), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(7522), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(309), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -80731,7 +80395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2197), + [anon_sym_RPAREN] = ACTIONS(2195), [anon_sym_await] = ACTIONS(48), [anon_sym_of] = ACTIONS(21), [anon_sym_yield] = ACTIONS(50), @@ -80752,13 +80416,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2185), + [sym_this] = ACTIONS(2183), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -80766,14 +80430,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2185), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -80789,59 +80453,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [310] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7799), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(7522), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(310), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -80853,7 +80517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2199), + [anon_sym_RPAREN] = ACTIONS(2197), [anon_sym_await] = ACTIONS(48), [anon_sym_of] = ACTIONS(21), [anon_sym_yield] = ACTIONS(50), @@ -80874,13 +80538,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2185), + [sym_this] = ACTIONS(2183), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -80888,14 +80552,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2185), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -80911,59 +80575,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [311] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7043), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(7522), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(311), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -80975,7 +80639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1345), + [anon_sym_RPAREN] = ACTIONS(2199), [anon_sym_await] = ACTIONS(48), [anon_sym_of] = ACTIONS(21), [anon_sym_yield] = ACTIONS(50), @@ -80996,13 +80660,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2185), + [sym_this] = ACTIONS(2183), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -81010,14 +80674,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2185), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -81033,59 +80697,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [312] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7799), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(7096), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(312), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -81118,13 +80782,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2185), + [sym_this] = ACTIONS(2183), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -81132,14 +80796,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2187), + [anon_sym_readonly] = ACTIONS(2185), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -81155,63 +80819,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [313] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(313), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2157), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(1160), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -81221,7 +80885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_RBRACK] = ACTIONS(2203), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), @@ -81229,7 +80893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), @@ -81250,7 +80914,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1160), [anon_sym_readonly] = ACTIONS(1160), @@ -81276,184 +80940,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [314] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym__formal_parameter] = STATE(7799), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3068), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6765), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(314), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(5819), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(432), - [sym_override_modifier] = STATE(489), - [sym_required_parameter] = STATE(8040), - [sym_optional_parameter] = STATE(8040), - [sym__parameter_name] = STATE(5302), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(21), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2185), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1285), - [anon_sym_AT] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2187), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(21), - [anon_sym_number] = ACTIONS(21), - [anon_sym_boolean] = ACTIONS(21), - [anon_sym_string] = ACTIONS(21), - [anon_sym_symbol] = ACTIONS(21), - [anon_sym_object] = ACTIONS(21), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), - [sym_html_comment] = ACTIONS(5), - }, - [315] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(7051), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(315), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7057), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2157), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6768), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(1160), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -81463,7 +81006,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_RBRACK] = ACTIONS(2205), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), @@ -81471,7 +81014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), @@ -81492,7 +81035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1160), [anon_sym_readonly] = ACTIONS(1160), @@ -81517,64 +81060,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1160), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(316), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2157), + [315] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(315), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(1160), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -81584,7 +81127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_RBRACK] = ACTIONS(2207), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), @@ -81592,7 +81135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), @@ -81613,7 +81156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1160), [anon_sym_readonly] = ACTIONS(1160), @@ -81638,82 +81181,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1160), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(317), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_RBRACE] = ACTIONS(2209), + [316] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6765), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(316), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6768), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2177), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2209), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2169), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(2209), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), @@ -81732,91 +81277,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_QMARK] = ACTIONS(2209), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [anon_sym_extends] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), [sym_html_comment] = ACTIONS(5), }, - [318] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3226), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(7051), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(318), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7057), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2157), + [317] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(317), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(1160), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -81826,15 +81369,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2209), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), @@ -81855,7 +81398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1160), [anon_sym_readonly] = ACTIONS(1160), @@ -81880,84 +81423,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1160), [sym_html_comment] = ACTIONS(5), }, - [319] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(319), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2157), - [anon_sym_export] = ACTIONS(1160), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2177), + [318] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(318), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2211), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1160), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2211), [anon_sym_RBRACK] = ACTIONS(2211), [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2211), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1180), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), @@ -81976,89 +81517,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_readonly] = ACTIONS(1160), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1160), - [anon_sym_private] = ACTIONS(1160), - [anon_sym_protected] = ACTIONS(1160), - [anon_sym_override] = ACTIONS(1160), - [anon_sym_module] = ACTIONS(1160), - [anon_sym_any] = ACTIONS(1160), - [anon_sym_number] = ACTIONS(1160), - [anon_sym_boolean] = ACTIONS(1160), - [anon_sym_string] = ACTIONS(1160), - [anon_sym_symbol] = ACTIONS(1160), - [anon_sym_object] = ACTIONS(1160), - [anon_sym_property] = ACTIONS(1160), - [anon_sym_signal] = ACTIONS(1160), - [anon_sym_on] = ACTIONS(1160), - [anon_sym_required] = ACTIONS(1160), - [anon_sym_component] = ACTIONS(1160), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_QMARK] = ACTIONS(2211), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [anon_sym_extends] = ACTIONS(2211), + [sym_html_comment] = ACTIONS(5), + }, + [319] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym__formal_parameter] = STATE(7522), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(319), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5981), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(451), + [sym_override_modifier] = STATE(516), + [sym_required_parameter] = STATE(7900), + [sym_optional_parameter] = STATE(7900), + [sym__parameter_name] = STATE(5266), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(412), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(1359), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2185), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, [320] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(320), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2157), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(1160), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -82068,7 +81732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_RBRACK] = ACTIONS(2213), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), @@ -82076,7 +81740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), @@ -82097,7 +81761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1160), [anon_sym_readonly] = ACTIONS(1160), @@ -82123,63 +81787,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [321] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(7051), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6954), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(321), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7057), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2157), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6957), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(1160), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -82189,15 +81853,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2215), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), @@ -82218,7 +81882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1160), [anon_sym_readonly] = ACTIONS(1160), @@ -82244,63 +81908,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [322] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3209), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(6943), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3068), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6765), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(322), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6951), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2157), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6768), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(1160), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2165), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -82310,15 +81974,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2215), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2169), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), @@ -82339,7 +82003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1160), [anon_sym_readonly] = ACTIONS(1160), @@ -82365,56 +82029,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [323] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(484), - [sym_variable_declaration] = STATE(484), - [sym_lexical_declaration] = STATE(484), - [sym_empty_statement] = STATE(484), - [sym_parenthesized_expression] = STATE(2490), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2490), - [sym_subscript_expression] = STATE(2490), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(6927), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(479), + [sym_variable_declaration] = STATE(479), + [sym_lexical_declaration] = STATE(479), + [sym_empty_statement] = STATE(479), + [sym_parenthesized_expression] = STATE(2294), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2294), + [sym_subscript_expression] = STATE(2294), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7017), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), [sym_comment] = STATE(323), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2490), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2294), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2217), [anon_sym_export] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2219), @@ -82436,9 +82100,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2235), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(2237), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -82485,176 +82149,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [324] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3581), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2535), - [sym_subscript_expression] = STATE(2535), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(7010), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(446), + [sym_variable_declaration] = STATE(446), + [sym_lexical_declaration] = STATE(446), + [sym_empty_statement] = STATE(446), + [sym_parenthesized_expression] = STATE(2294), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2294), + [sym_subscript_expression] = STATE(2294), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7017), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), [sym_comment] = STATE(324), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2535), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_mapped_type_clause] = STATE(8634), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2243), - [anon_sym_type] = ACTIONS(2243), - [anon_sym_namespace] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(2247), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2243), - [anon_sym_let] = ACTIONS(2243), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(2243), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_RBRACK] = ACTIONS(2249), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2253), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2255), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2243), - [anon_sym_readonly] = ACTIONS(2243), - [anon_sym_get] = ACTIONS(2243), - [anon_sym_set] = ACTIONS(2243), - [anon_sym_declare] = ACTIONS(2243), - [anon_sym_public] = ACTIONS(2243), - [anon_sym_private] = ACTIONS(2243), - [anon_sym_protected] = ACTIONS(2243), - [anon_sym_override] = ACTIONS(2243), - [anon_sym_module] = ACTIONS(2243), - [anon_sym_any] = ACTIONS(2243), - [anon_sym_number] = ACTIONS(2243), - [anon_sym_boolean] = ACTIONS(2243), - [anon_sym_string] = ACTIONS(2243), - [anon_sym_symbol] = ACTIONS(2243), - [anon_sym_object] = ACTIONS(2243), - [anon_sym_property] = ACTIONS(2243), - [anon_sym_signal] = ACTIONS(2243), - [anon_sym_on] = ACTIONS(2243), - [anon_sym_required] = ACTIONS(2243), - [anon_sym_component] = ACTIONS(2243), - [sym_html_comment] = ACTIONS(5), - }, - [325] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(481), - [sym_variable_declaration] = STATE(481), - [sym_lexical_declaration] = STATE(481), - [sym_empty_statement] = STATE(481), - [sym_parenthesized_expression] = STATE(2490), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2490), - [sym_subscript_expression] = STATE(2490), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(6927), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(325), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2490), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2294), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2217), [anon_sym_export] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2219), @@ -82676,9 +82220,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2235), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(2237), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -82724,57 +82268,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, - [326] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(483), - [sym_variable_declaration] = STATE(483), - [sym_lexical_declaration] = STATE(483), - [sym_empty_statement] = STATE(483), - [sym_parenthesized_expression] = STATE(2490), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2490), - [sym_subscript_expression] = STATE(2490), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(6927), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(326), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2490), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [325] = { + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(476), + [sym_variable_declaration] = STATE(476), + [sym_lexical_declaration] = STATE(476), + [sym_empty_statement] = STATE(476), + [sym_parenthesized_expression] = STATE(2294), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2294), + [sym_subscript_expression] = STATE(2294), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7017), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), + [sym_comment] = STATE(325), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2294), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2217), [anon_sym_export] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2219), @@ -82796,9 +82340,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2235), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(2237), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -82844,57 +82388,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, - [327] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(468), - [sym_variable_declaration] = STATE(468), - [sym_lexical_declaration] = STATE(468), - [sym_empty_statement] = STATE(468), - [sym_parenthesized_expression] = STATE(2490), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2490), - [sym_subscript_expression] = STATE(2490), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(6927), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(327), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2490), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [326] = { + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(488), + [sym_variable_declaration] = STATE(488), + [sym_lexical_declaration] = STATE(488), + [sym_empty_statement] = STATE(488), + [sym_parenthesized_expression] = STATE(2294), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2294), + [sym_subscript_expression] = STATE(2294), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7017), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), + [sym_comment] = STATE(326), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2294), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2217), [anon_sym_export] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2219), @@ -82916,9 +82460,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2235), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(2237), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -82964,57 +82508,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, - [328] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(452), - [sym_variable_declaration] = STATE(452), - [sym_lexical_declaration] = STATE(452), - [sym_empty_statement] = STATE(452), - [sym_parenthesized_expression] = STATE(2490), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2490), - [sym_subscript_expression] = STATE(2490), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(6927), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(328), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2490), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [327] = { + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(445), + [sym_variable_declaration] = STATE(445), + [sym_lexical_declaration] = STATE(445), + [sym_empty_statement] = STATE(445), + [sym_parenthesized_expression] = STATE(2294), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2294), + [sym_subscript_expression] = STATE(2294), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7017), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), + [sym_comment] = STATE(327), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2294), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2217), [anon_sym_export] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2219), @@ -83036,9 +82580,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2235), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(2237), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -83084,80 +82628,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, + [328] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3513), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(6803), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(328), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2380), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_mapped_type_clause] = STATE(8174), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_namespace] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(2247), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_RBRACK] = ACTIONS(2249), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2253), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2243), + [anon_sym_readonly] = ACTIONS(2243), + [anon_sym_get] = ACTIONS(2243), + [anon_sym_set] = ACTIONS(2243), + [anon_sym_declare] = ACTIONS(2243), + [anon_sym_public] = ACTIONS(2243), + [anon_sym_private] = ACTIONS(2243), + [anon_sym_protected] = ACTIONS(2243), + [anon_sym_override] = ACTIONS(2243), + [anon_sym_module] = ACTIONS(2243), + [anon_sym_any] = ACTIONS(2243), + [anon_sym_number] = ACTIONS(2243), + [anon_sym_boolean] = ACTIONS(2243), + [anon_sym_string] = ACTIONS(2243), + [anon_sym_symbol] = ACTIONS(2243), + [anon_sym_object] = ACTIONS(2243), + [anon_sym_property] = ACTIONS(2243), + [anon_sym_signal] = ACTIONS(2243), + [anon_sym_on] = ACTIONS(2243), + [anon_sym_required] = ACTIONS(2243), + [anon_sym_component] = ACTIONS(2243), + [sym_html_comment] = ACTIONS(5), + }, [329] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(329), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_RBRACE] = ACTIONS(2209), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_RBRACE] = ACTIONS(2211), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_SEMI] = ACTIONS(2211), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2211), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), @@ -83176,85 +82840,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [anon_sym_extends] = ACTIONS(2209), - [anon_sym_PIPE_RBRACE] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [anon_sym_extends] = ACTIONS(2211), + [anon_sym_PIPE_RBRACE] = ACTIONS(2211), [sym__automatic_semicolon] = ACTIONS(2257), [sym_html_comment] = ACTIONS(5), }, [330] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(474), - [sym_variable_declaration] = STATE(474), - [sym_lexical_declaration] = STATE(474), - [sym_empty_statement] = STATE(474), - [sym_parenthesized_expression] = STATE(2490), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2490), - [sym_subscript_expression] = STATE(2490), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(6927), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(456), + [sym_variable_declaration] = STATE(456), + [sym_lexical_declaration] = STATE(456), + [sym_empty_statement] = STATE(456), + [sym_parenthesized_expression] = STATE(2294), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2294), + [sym_subscript_expression] = STATE(2294), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7017), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), [sym_comment] = STATE(330), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2490), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2294), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2217), [anon_sym_export] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2219), @@ -83276,9 +82940,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2235), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(2237), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -83325,35 +82989,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [331] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), [sym_comment] = STATE(331), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_EQ] = ACTIONS(1337), @@ -83445,56 +83109,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [332] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(479), - [sym_variable_declaration] = STATE(479), - [sym_lexical_declaration] = STATE(479), - [sym_empty_statement] = STATE(479), - [sym_parenthesized_expression] = STATE(2490), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2490), - [sym_subscript_expression] = STATE(2490), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(6927), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(431), + [sym_variable_declaration] = STATE(431), + [sym_lexical_declaration] = STATE(431), + [sym_empty_statement] = STATE(431), + [sym_parenthesized_expression] = STATE(2294), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2294), + [sym_subscript_expression] = STATE(2294), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(7017), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), [sym_comment] = STATE(332), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2490), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2294), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(2217), [anon_sym_export] = ACTIONS(2219), [anon_sym_type] = ACTIONS(2219), @@ -83516,9 +83180,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(2235), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(2237), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -83565,395 +83229,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [333] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6936), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3152), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(7764), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6947), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(333), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6587), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_pattern_repeat1] = STATE(6941), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(21), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(2247), - [anon_sym_typeof] = ACTIONS(87), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6841), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2177), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2285), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_RBRACK] = ACTIONS(2285), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), + [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1285), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(21), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(21), - [anon_sym_private] = ACTIONS(21), - [anon_sym_protected] = ACTIONS(21), - [anon_sym_override] = ACTIONS(21), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(21), - [anon_sym_number] = ACTIONS(21), - [anon_sym_boolean] = ACTIONS(21), - [anon_sym_string] = ACTIONS(21), - [anon_sym_symbol] = ACTIONS(21), - [anon_sym_object] = ACTIONS(21), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), [sym_html_comment] = ACTIONS(5), }, [334] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), [sym_comment] = STATE(334), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_EQ] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2289), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_PIPE_PIPE] = ACTIONS(2289), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_GT_GT_GT] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2289), - [anon_sym_STAR_STAR] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2289), - [anon_sym_GT_EQ] = ACTIONS(2289), - [anon_sym_QMARK_QMARK] = ACTIONS(2289), - [anon_sym_instanceof] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2293), - [sym__ternary_qmark] = ACTIONS(2295), - [sym_html_comment] = ACTIONS(5), - }, - [335] = { - [sym_statement_block] = STATE(348), - [sym_comment] = STATE(335), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2301), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [336] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(336), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1443), [anon_sym_as] = ACTIONS(28), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_COMMA] = ACTIONS(28), @@ -83969,7 +83395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(1417), + [anon_sym_EQ_GT] = ACTIONS(1449), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2271), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -84040,62 +83466,538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, + [335] = { + [sym_statement_block] = STATE(373), + [sym_comment] = STATE(335), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [336] = { + [sym_comment] = STATE(336), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2298), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2298), + [anon_sym_DOT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_GT_GT] = ACTIONS(2298), + [anon_sym_GT_GT_GT] = ACTIONS(2298), + [anon_sym_LT_LT] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_CARET] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), + [anon_sym_GT_EQ] = ACTIONS(2298), + [anon_sym_QMARK_QMARK] = ACTIONS(2298), + [anon_sym_instanceof] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2302), + [sym__ternary_qmark] = ACTIONS(2304), + [sym_html_comment] = ACTIONS(5), + }, [337] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3283), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(7806), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(7334), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_statement_block] = STATE(373), [sym_comment] = STATE(337), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(7150), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2306), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [338] = { + [sym_statement_block] = STATE(373), + [sym_comment] = STATE(338), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [339] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3152), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(7764), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6947), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(339), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6841), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(1160), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2285), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -84105,7 +84007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_RBRACK] = ACTIONS(2308), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), @@ -84113,7 +84015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), @@ -84134,7 +84036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1160), [anon_sym_readonly] = ACTIONS(1160), @@ -84159,439 +84061,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1160), [sym_html_comment] = ACTIONS(5), }, - [338] = { - [sym_statement_block] = STATE(348), - [sym_comment] = STATE(338), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [339] = { - [sym_statement_block] = STATE(348), - [sym_comment] = STATE(339), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2312), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, [340] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(340), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(28), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_void] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [341] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(341), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(21), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(2247), + [anon_sym_COMMA] = ACTIONS(2211), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2211), [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), + [anon_sym_of] = ACTIONS(1301), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_RBRACK] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_RBRACK] = ACTIONS(2211), [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2211), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1275), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), @@ -84599,8 +84143,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -84610,87 +84154,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1285), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(21), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(21), - [anon_sym_private] = ACTIONS(21), - [anon_sym_protected] = ACTIONS(21), - [anon_sym_override] = ACTIONS(21), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(21), - [anon_sym_number] = ACTIONS(21), - [anon_sym_boolean] = ACTIONS(21), - [anon_sym_string] = ACTIONS(21), - [anon_sym_symbol] = ACTIONS(21), - [anon_sym_object] = ACTIONS(21), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [anon_sym_extends] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, - [342] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3283), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(7806), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(7334), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(342), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(7150), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2157), + [341] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3152), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(7764), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_spread_element] = STATE(6947), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(341), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6841), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2177), [anon_sym_export] = ACTIONS(1160), [anon_sym_type] = ACTIONS(1160), [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2285), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1160), @@ -84700,15 +84245,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1172), [anon_sym_of] = ACTIONS(1160), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_RBRACK] = ACTIONS(2312), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2173), [anon_sym_using] = ACTIONS(1184), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), [anon_sym_PLUS] = ACTIONS(1170), @@ -84729,7 +84274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2175), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1160), [anon_sym_readonly] = ACTIONS(1160), @@ -84754,95 +84299,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1160), [sym_html_comment] = ACTIONS(5), }, + [342] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(342), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(2247), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(2249), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, [343] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3753), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(6856), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2535), - [sym_subscript_expression] = STATE(2535), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(7010), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3602), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6899), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2380), + [sym_subscript_expression] = STATE(2380), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(6803), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(343), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6557), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2535), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_pattern_repeat1] = STATE(6860), - [sym_identifier] = ACTIONS(2314), - [anon_sym_export] = ACTIONS(2316), - [anon_sym_type] = ACTIONS(2316), - [anon_sym_namespace] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(1499), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6160), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2380), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_pattern_repeat1] = STATE(6901), + [sym_identifier] = ACTIONS(2316), + [anon_sym_export] = ACTIONS(2318), + [anon_sym_type] = ACTIONS(2318), + [anon_sym_namespace] = ACTIONS(2320), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_COMMA] = ACTIONS(2247), - [anon_sym_typeof] = ACTIONS(1819), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2316), - [anon_sym_let] = ACTIONS(2316), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(2318), + [anon_sym_let] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(2316), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_RBRACK] = ACTIONS(2249), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2320), + [anon_sym_async] = ACTIONS(2322), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2322), - [anon_sym_using] = ACTIONS(1829), + [anon_sym_new] = ACTIONS(2324), + [anon_sym_using] = ACTIONS(1615), [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), @@ -84850,104 +84514,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(2255), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_readonly] = ACTIONS(2316), - [anon_sym_get] = ACTIONS(2316), - [anon_sym_set] = ACTIONS(2316), - [anon_sym_declare] = ACTIONS(2316), - [anon_sym_public] = ACTIONS(2316), - [anon_sym_private] = ACTIONS(2316), - [anon_sym_protected] = ACTIONS(2316), - [anon_sym_override] = ACTIONS(2316), - [anon_sym_module] = ACTIONS(2316), - [anon_sym_any] = ACTIONS(2316), - [anon_sym_number] = ACTIONS(2316), - [anon_sym_boolean] = ACTIONS(2316), - [anon_sym_string] = ACTIONS(2316), - [anon_sym_symbol] = ACTIONS(2316), - [anon_sym_object] = ACTIONS(2316), - [anon_sym_property] = ACTIONS(2316), - [anon_sym_signal] = ACTIONS(2316), - [anon_sym_on] = ACTIONS(2316), - [anon_sym_required] = ACTIONS(2316), - [anon_sym_component] = ACTIONS(2316), + [anon_sym_static] = ACTIONS(2318), + [anon_sym_readonly] = ACTIONS(2318), + [anon_sym_get] = ACTIONS(2318), + [anon_sym_set] = ACTIONS(2318), + [anon_sym_declare] = ACTIONS(2318), + [anon_sym_public] = ACTIONS(2318), + [anon_sym_private] = ACTIONS(2318), + [anon_sym_protected] = ACTIONS(2318), + [anon_sym_override] = ACTIONS(2318), + [anon_sym_module] = ACTIONS(2318), + [anon_sym_any] = ACTIONS(2318), + [anon_sym_number] = ACTIONS(2318), + [anon_sym_boolean] = ACTIONS(2318), + [anon_sym_string] = ACTIONS(2318), + [anon_sym_symbol] = ACTIONS(2318), + [anon_sym_object] = ACTIONS(2318), + [anon_sym_property] = ACTIONS(2318), + [anon_sym_signal] = ACTIONS(2318), + [anon_sym_on] = ACTIONS(2318), + [anon_sym_required] = ACTIONS(2318), + [anon_sym_component] = ACTIONS(2318), [sym_html_comment] = ACTIONS(5), }, [344] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3775), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(6681), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(344), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6124), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_pattern_repeat1] = STATE(6697), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_COMMA] = ACTIONS(2247), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2209), [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_of] = ACTIONS(21), [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_RBRACK] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(2326), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(2209), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(62), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1275), [anon_sym_using] = ACTIONS(70), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), @@ -84955,8 +84620,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -84966,280 +84631,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), - [anon_sym_extends] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, [345] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3283), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(7806), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_spread_element] = STATE(7334), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), [sym_comment] = STATE(345), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(7150), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2157), - [anon_sym_export] = ACTIONS(1160), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2324), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_readonly] = ACTIONS(1160), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1160), - [anon_sym_private] = ACTIONS(1160), - [anon_sym_protected] = ACTIONS(1160), - [anon_sym_override] = ACTIONS(1160), - [anon_sym_module] = ACTIONS(1160), - [anon_sym_any] = ACTIONS(1160), - [anon_sym_number] = ACTIONS(1160), - [anon_sym_boolean] = ACTIONS(1160), - [anon_sym_string] = ACTIONS(1160), - [anon_sym_symbol] = ACTIONS(1160), - [anon_sym_object] = ACTIONS(1160), - [anon_sym_property] = ACTIONS(1160), - [anon_sym_signal] = ACTIONS(1160), - [anon_sym_on] = ACTIONS(1160), - [anon_sym_required] = ACTIONS(1160), - [anon_sym_component] = ACTIONS(1160), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [346] = { + [sym_statement_block] = STATE(411), [sym_comment] = STATE(346), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_GT] = ACTIONS(2328), - [anon_sym_DOT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_QMARK_DOT] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_AMP_AMP] = ACTIONS(2328), - [anon_sym_PIPE_PIPE] = ACTIONS(2328), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2328), - [anon_sym_LT_LT] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2328), - [anon_sym_STAR_STAR] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), - [anon_sym_GT_EQ] = ACTIONS(2328), - [anon_sym_QMARK_QMARK] = ACTIONS(2328), - [anon_sym_instanceof] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_satisfies] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym__ternary_qmark] = ACTIONS(2330), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), [sym_html_comment] = ACTIONS(5), }, [347] = { [sym_comment] = STATE(347), [sym_identifier] = ACTIONS(2332), [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), [anon_sym_default] = ACTIONS(2332), [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), [anon_sym_namespace] = ACTIONS(2332), [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), [anon_sym_RBRACE] = ACTIONS(2332), [anon_sym_typeof] = ACTIONS(2332), [anon_sym_import] = ACTIONS(2332), @@ -85255,7 +84919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2332), [anon_sym_LPAREN] = ACTIONS(2332), [anon_sym_await] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2334), [anon_sym_of] = ACTIONS(2332), [anon_sym_while] = ACTIONS(2332), [anon_sym_do] = ACTIONS(2332), @@ -85270,38 +84934,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2332), [anon_sym_LBRACK] = ACTIONS(2332), [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), [anon_sym_DQUOTE] = ACTIONS(2332), [anon_sym_SQUOTE] = ACTIONS(2332), [anon_sym_class] = ACTIONS(2332), [anon_sym_async] = ACTIONS(2332), [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), [anon_sym_new] = ACTIONS(2332), [anon_sym_using] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), [anon_sym_PLUS] = ACTIONS(2332), [anon_sym_DASH] = ACTIONS(2332), [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), [anon_sym_TILDE] = ACTIONS(2332), [anon_sym_void] = ACTIONS(2332), [anon_sym_delete] = ACTIONS(2332), @@ -85340,300 +85004,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2332), [anon_sym_component] = ACTIONS(2332), [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), [anon_sym_interface] = ACTIONS(2332), [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2334), - [sym__ternary_qmark] = ACTIONS(2336), + [sym__automatic_semicolon] = ACTIONS(2336), + [sym__ternary_qmark] = ACTIONS(2338), [sym_html_comment] = ACTIONS(5), }, [348] = { [sym_comment] = STATE(348), - [sym_identifier] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_default] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_as] = ACTIONS(2338), - [anon_sym_namespace] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2338), - [anon_sym_import] = ACTIONS(2338), - [anon_sym_from] = ACTIONS(2338), - [anon_sym_with] = ACTIONS(2338), - [anon_sym_var] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_do] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_debugger] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_throw] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_case] = ACTIONS(2338), - [anon_sym_yield] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LTtemplate_GT] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2338), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_class] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_QMARK_DOT] = ACTIONS(2338), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_using] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2338), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_instanceof] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2338), - [anon_sym_delete] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_private_property_identifier] = ACTIONS(2338), - [sym_this] = ACTIONS(2338), - [sym_super] = ACTIONS(2338), - [sym_true] = ACTIONS(2338), - [sym_false] = ACTIONS(2338), - [sym_null] = ACTIONS(2338), - [sym_undefined] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_readonly] = ACTIONS(2338), - [anon_sym_get] = ACTIONS(2338), - [anon_sym_set] = ACTIONS(2338), - [anon_sym_declare] = ACTIONS(2338), - [anon_sym_public] = ACTIONS(2338), - [anon_sym_private] = ACTIONS(2338), - [anon_sym_protected] = ACTIONS(2338), - [anon_sym_override] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_any] = ACTIONS(2338), - [anon_sym_number] = ACTIONS(2338), - [anon_sym_boolean] = ACTIONS(2338), - [anon_sym_string] = ACTIONS(2338), - [anon_sym_symbol] = ACTIONS(2338), - [anon_sym_object] = ACTIONS(2338), - [anon_sym_property] = ACTIONS(2338), - [anon_sym_signal] = ACTIONS(2338), - [anon_sym_on] = ACTIONS(2338), - [anon_sym_required] = ACTIONS(2338), - [anon_sym_component] = ACTIONS(2338), - [anon_sym_abstract] = ACTIONS(2338), - [anon_sym_satisfies] = ACTIONS(2338), - [anon_sym_interface] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), - [sym__automatic_semicolon] = ACTIONS(2340), - [sym__ternary_qmark] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2344), + [sym__ternary_qmark] = ACTIONS(2346), [sym_html_comment] = ACTIONS(5), }, [349] = { [sym_comment] = STATE(349), - [sym_identifier] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2342), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_as] = ACTIONS(2344), - [anon_sym_namespace] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_typeof] = ACTIONS(2342), - [anon_sym_import] = ACTIONS(2342), - [anon_sym_from] = ACTIONS(2342), - [anon_sym_with] = ACTIONS(2342), - [anon_sym_var] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_switch] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(2342), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_debugger] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_throw] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_case] = ACTIONS(2342), - [anon_sym_yield] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LTtemplate_GT] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2344), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), - [anon_sym_class] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_QMARK_DOT] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2342), - [anon_sym_using] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2344), - [anon_sym_PIPE_PIPE] = ACTIONS(2344), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2344), - [anon_sym_LT_LT] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2344), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2342), - [anon_sym_PERCENT] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2344), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2344), - [anon_sym_GT_EQ] = ACTIONS(2344), - [anon_sym_QMARK_QMARK] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_void] = ACTIONS(2342), - [anon_sym_delete] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), - [sym_private_property_identifier] = ACTIONS(2342), - [sym_this] = ACTIONS(2342), - [sym_super] = ACTIONS(2342), - [sym_true] = ACTIONS(2342), - [sym_false] = ACTIONS(2342), - [sym_null] = ACTIONS(2342), - [sym_undefined] = ACTIONS(2342), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_readonly] = ACTIONS(2342), - [anon_sym_get] = ACTIONS(2342), - [anon_sym_set] = ACTIONS(2342), - [anon_sym_declare] = ACTIONS(2342), - [anon_sym_public] = ACTIONS(2342), - [anon_sym_private] = ACTIONS(2342), - [anon_sym_protected] = ACTIONS(2342), - [anon_sym_override] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_any] = ACTIONS(2342), - [anon_sym_number] = ACTIONS(2342), - [anon_sym_boolean] = ACTIONS(2342), - [anon_sym_string] = ACTIONS(2342), - [anon_sym_symbol] = ACTIONS(2342), - [anon_sym_object] = ACTIONS(2342), - [anon_sym_property] = ACTIONS(2342), - [anon_sym_signal] = ACTIONS(2342), - [anon_sym_on] = ACTIONS(2342), - [anon_sym_required] = ACTIONS(2342), - [anon_sym_component] = ACTIONS(2342), - [anon_sym_abstract] = ACTIONS(2342), - [anon_sym_satisfies] = ACTIONS(2344), - [anon_sym_interface] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(2346), - [sym__ternary_qmark] = ACTIONS(2348), - [sym_html_comment] = ACTIONS(5), - }, - [350] = { - [sym_comment] = STATE(350), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), [anon_sym_as] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), [anon_sym_COMMA] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), [anon_sym_in] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), [anon_sym_GT] = ACTIONS(2350), [anon_sym_DOT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), [anon_sym_QMARK_DOT] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), [anon_sym_AMP_AMP] = ACTIONS(2350), [anon_sym_PIPE_PIPE] = ACTIONS(2350), [anon_sym_GT_GT] = ACTIONS(2350), @@ -85642,12 +85188,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2350), [anon_sym_CARET] = ACTIONS(2350), [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), [anon_sym_PERCENT] = ACTIONS(2350), [anon_sym_STAR_STAR] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2348), [anon_sym_LT_EQ] = ACTIONS(2350), [anon_sym_EQ_EQ] = ACTIONS(2350), [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), @@ -85656,289 +85202,525 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2350), [anon_sym_QMARK_QMARK] = ACTIONS(2350), [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), [anon_sym_satisfies] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), [sym__automatic_semicolon] = ACTIONS(2352), - [sym__ternary_qmark] = ACTIONS(2352), + [sym__ternary_qmark] = ACTIONS(2354), + [sym_html_comment] = ACTIONS(5), + }, + [350] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(7764), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(350), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(6841), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(2356), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(2356), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(21), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, [351] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), [sym_comment] = STATE(351), - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2354), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_as] = ACTIONS(2356), - [anon_sym_namespace] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_COMMA] = ACTIONS(2356), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_typeof] = ACTIONS(2354), - [anon_sym_import] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_with] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_else] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_await] = ACTIONS(2354), - [anon_sym_in] = ACTIONS(2356), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_debugger] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_throw] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_case] = ACTIONS(2354), - [anon_sym_yield] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LTtemplate_GT] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2356), - [anon_sym_DOT] = ACTIONS(2356), - [anon_sym_DQUOTE] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_class] = ACTIONS(2354), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_QMARK_DOT] = ACTIONS(2356), - [anon_sym_new] = ACTIONS(2354), - [anon_sym_using] = ACTIONS(2354), - [anon_sym_AMP_AMP] = ACTIONS(2356), - [anon_sym_PIPE_PIPE] = ACTIONS(2356), - [anon_sym_GT_GT] = ACTIONS(2356), - [anon_sym_GT_GT_GT] = ACTIONS(2356), - [anon_sym_LT_LT] = ACTIONS(2356), - [anon_sym_AMP] = ACTIONS(2356), - [anon_sym_CARET] = ACTIONS(2356), - [anon_sym_PIPE] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_PERCENT] = ACTIONS(2356), - [anon_sym_STAR_STAR] = ACTIONS(2356), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_LT_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), - [anon_sym_GT_EQ] = ACTIONS(2356), - [anon_sym_QMARK_QMARK] = ACTIONS(2356), - [anon_sym_instanceof] = ACTIONS(2356), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_void] = ACTIONS(2354), - [anon_sym_delete] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2354), - [sym_number] = ACTIONS(2354), - [sym_private_property_identifier] = ACTIONS(2354), - [sym_this] = ACTIONS(2354), - [sym_super] = ACTIONS(2354), - [sym_true] = ACTIONS(2354), - [sym_false] = ACTIONS(2354), - [sym_null] = ACTIONS(2354), - [sym_undefined] = ACTIONS(2354), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_object] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2354), - [anon_sym_satisfies] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2354), - [anon_sym_enum] = ACTIONS(2354), - [sym__automatic_semicolon] = ACTIONS(2358), - [sym__ternary_qmark] = ACTIONS(2360), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [352] = { [sym_comment] = STATE(352), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_default] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2364), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_typeof] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_with] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_await] = ACTIONS(2362), - [anon_sym_in] = ACTIONS(2364), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_debugger] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_case] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_LTtemplate_GT] = ACTIONS(2362), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_DOT] = ACTIONS(2364), - [anon_sym_DQUOTE] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_QMARK_DOT] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2364), - [anon_sym_PIPE_PIPE] = ACTIONS(2364), - [anon_sym_GT_GT] = ACTIONS(2364), - [anon_sym_GT_GT_GT] = ACTIONS(2364), - [anon_sym_LT_LT] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_CARET] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_PERCENT] = ACTIONS(2364), - [anon_sym_STAR_STAR] = ACTIONS(2364), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_LT_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2364), - [anon_sym_GT_EQ] = ACTIONS(2364), - [anon_sym_QMARK_QMARK] = ACTIONS(2364), - [anon_sym_instanceof] = ACTIONS(2364), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_void] = ACTIONS(2362), - [anon_sym_delete] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2362), - [sym_number] = ACTIONS(2362), - [sym_private_property_identifier] = ACTIONS(2362), - [sym_this] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_true] = ACTIONS(2362), - [sym_false] = ACTIONS(2362), - [sym_null] = ACTIONS(2362), - [sym_undefined] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(2364), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - [sym__automatic_semicolon] = ACTIONS(2366), - [sym__ternary_qmark] = ACTIONS(2368), + [sym_identifier] = ACTIONS(2358), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_typeof] = ACTIONS(2358), + [anon_sym_import] = ACTIONS(2358), + [anon_sym_from] = ACTIONS(2358), + [anon_sym_with] = ACTIONS(2358), + [anon_sym_var] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_switch] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_of] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_debugger] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_throw] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_case] = ACTIONS(2358), + [anon_sym_yield] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LTtemplate_GT] = ACTIONS(2358), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2358), + [anon_sym_QMARK_DOT] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2358), + [anon_sym_using] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2358), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_STAR_STAR] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_QMARK_QMARK] = ACTIONS(2360), + [anon_sym_instanceof] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2358), + [anon_sym_delete] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_private_property_identifier] = ACTIONS(2358), + [sym_this] = ACTIONS(2358), + [sym_super] = ACTIONS(2358), + [sym_true] = ACTIONS(2358), + [sym_false] = ACTIONS(2358), + [sym_null] = ACTIONS(2358), + [sym_undefined] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_readonly] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), + [anon_sym_declare] = ACTIONS(2358), + [anon_sym_public] = ACTIONS(2358), + [anon_sym_private] = ACTIONS(2358), + [anon_sym_protected] = ACTIONS(2358), + [anon_sym_override] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_any] = ACTIONS(2358), + [anon_sym_number] = ACTIONS(2358), + [anon_sym_boolean] = ACTIONS(2358), + [anon_sym_string] = ACTIONS(2358), + [anon_sym_symbol] = ACTIONS(2358), + [anon_sym_object] = ACTIONS(2358), + [anon_sym_property] = ACTIONS(2358), + [anon_sym_signal] = ACTIONS(2358), + [anon_sym_on] = ACTIONS(2358), + [anon_sym_required] = ACTIONS(2358), + [anon_sym_component] = ACTIONS(2358), + [anon_sym_abstract] = ACTIONS(2358), + [anon_sym_satisfies] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2358), + [anon_sym_enum] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(2362), + [sym__ternary_qmark] = ACTIONS(2364), [sym_html_comment] = ACTIONS(5), }, [353] = { [sym_comment] = STATE(353), + [sym_identifier] = ACTIONS(2366), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_default] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2366), + [anon_sym_import] = ACTIONS(2366), + [anon_sym_from] = ACTIONS(2366), + [anon_sym_with] = ACTIONS(2366), + [anon_sym_var] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_switch] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2366), + [anon_sym_in] = ACTIONS(2366), + [anon_sym_of] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_debugger] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_throw] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_case] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LTtemplate_GT] = ACTIONS(2366), + [anon_sym_GT] = ACTIONS(2366), + [anon_sym_DOT] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_class] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_function] = ACTIONS(2366), + [anon_sym_QMARK_DOT] = ACTIONS(2366), + [anon_sym_new] = ACTIONS(2366), + [anon_sym_using] = ACTIONS(2366), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE_PIPE] = ACTIONS(2366), + [anon_sym_GT_GT] = ACTIONS(2366), + [anon_sym_GT_GT_GT] = ACTIONS(2366), + [anon_sym_LT_LT] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2366), + [anon_sym_PERCENT] = ACTIONS(2366), + [anon_sym_STAR_STAR] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_LT_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2366), + [anon_sym_GT_EQ] = ACTIONS(2366), + [anon_sym_QMARK_QMARK] = ACTIONS(2366), + [anon_sym_instanceof] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_private_property_identifier] = ACTIONS(2366), + [sym_this] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_true] = ACTIONS(2366), + [sym_false] = ACTIONS(2366), + [sym_null] = ACTIONS(2366), + [sym_undefined] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_readonly] = ACTIONS(2366), + [anon_sym_get] = ACTIONS(2366), + [anon_sym_set] = ACTIONS(2366), + [anon_sym_declare] = ACTIONS(2366), + [anon_sym_public] = ACTIONS(2366), + [anon_sym_private] = ACTIONS(2366), + [anon_sym_protected] = ACTIONS(2366), + [anon_sym_override] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_any] = ACTIONS(2366), + [anon_sym_number] = ACTIONS(2366), + [anon_sym_boolean] = ACTIONS(2366), + [anon_sym_string] = ACTIONS(2366), + [anon_sym_symbol] = ACTIONS(2366), + [anon_sym_object] = ACTIONS(2366), + [anon_sym_property] = ACTIONS(2366), + [anon_sym_signal] = ACTIONS(2366), + [anon_sym_on] = ACTIONS(2366), + [anon_sym_required] = ACTIONS(2366), + [anon_sym_component] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_satisfies] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), + [sym__automatic_semicolon] = ACTIONS(2368), + [sym__ternary_qmark] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [354] = { + [sym_comment] = STATE(354), [sym_identifier] = ACTIONS(2370), [anon_sym_export] = ACTIONS(2370), [anon_sym_STAR] = ACTIONS(2370), @@ -86052,530 +85834,766 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2370), [anon_sym_enum] = ACTIONS(2370), [sym__automatic_semicolon] = ACTIONS(2372), - [sym__ternary_qmark] = ACTIONS(2372), - [sym_html_comment] = ACTIONS(5), - }, - [354] = { - [sym_comment] = STATE(354), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_as] = ACTIONS(2376), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_in] = ACTIONS(2376), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_LTtemplate_GT] = ACTIONS(2374), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_DOT] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_QMARK_DOT] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_GT_GT_GT] = ACTIONS(2376), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_PERCENT] = ACTIONS(2376), - [anon_sym_STAR_STAR] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_LT_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), - [anon_sym_GT_EQ] = ACTIONS(2376), - [anon_sym_QMARK_QMARK] = ACTIONS(2376), - [anon_sym_instanceof] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_number] = ACTIONS(2374), - [sym_private_property_identifier] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_satisfies] = ACTIONS(2376), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(2378), - [sym__ternary_qmark] = ACTIONS(2380), + [sym__ternary_qmark] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, [355] = { [sym_comment] = STATE(355), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_as] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_COMMA] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2382), - [anon_sym_else] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_in] = ACTIONS(2384), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_case] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_LTtemplate_GT] = ACTIONS(2382), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_QMARK_DOT] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_GT_GT_GT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_STAR_STAR] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2384), - [anon_sym_QMARK_QMARK] = ACTIONS(2384), - [anon_sym_instanceof] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_number] = ACTIONS(2382), - [sym_private_property_identifier] = ACTIONS(2382), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_satisfies] = ACTIONS(2384), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [sym__automatic_semicolon] = ACTIONS(2386), - [sym__ternary_qmark] = ACTIONS(2388), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2378), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2378), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2378), + [anon_sym_PIPE_PIPE] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_GT_GT_GT] = ACTIONS(2378), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PERCENT] = ACTIONS(2378), + [anon_sym_STAR_STAR] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2378), + [anon_sym_instanceof] = ACTIONS(2378), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2378), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2380), + [sym__ternary_qmark] = ACTIONS(2382), [sym_html_comment] = ACTIONS(5), }, [356] = { - [sym_statement_block] = STATE(385), [sym_comment] = STATE(356), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2390), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2392), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2298), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2298), + [anon_sym_DOT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_GT_GT] = ACTIONS(2298), + [anon_sym_GT_GT_GT] = ACTIONS(2298), + [anon_sym_LT_LT] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_CARET] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), + [anon_sym_GT_EQ] = ACTIONS(2298), + [anon_sym_QMARK_QMARK] = ACTIONS(2298), + [anon_sym_instanceof] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2384), + [sym__ternary_qmark] = ACTIONS(2304), [sym_html_comment] = ACTIONS(5), }, [357] = { [sym_comment] = STATE(357), - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_as] = ACTIONS(2396), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_typeof] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_with] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_await] = ACTIONS(2394), - [anon_sym_in] = ACTIONS(2396), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_debugger] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_throw] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_case] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LTtemplate_GT] = ACTIONS(2394), - [anon_sym_GT] = ACTIONS(2396), - [anon_sym_DOT] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_QMARK_DOT] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_using] = ACTIONS(2394), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_GT_GT_GT] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_PERCENT] = ACTIONS(2396), - [anon_sym_STAR_STAR] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2396), - [anon_sym_QMARK_QMARK] = ACTIONS(2396), - [anon_sym_instanceof] = ACTIONS(2396), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_void] = ACTIONS(2394), - [anon_sym_delete] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2394), - [sym_number] = ACTIONS(2394), - [sym_private_property_identifier] = ACTIONS(2394), - [sym_this] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_undefined] = ACTIONS(2394), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_abstract] = ACTIONS(2394), - [anon_sym_satisfies] = ACTIONS(2396), - [anon_sym_interface] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [sym__automatic_semicolon] = ACTIONS(2398), - [sym__ternary_qmark] = ACTIONS(2400), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_as] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_typeof] = ACTIONS(2386), + [anon_sym_import] = ACTIONS(2386), + [anon_sym_from] = ACTIONS(2386), + [anon_sym_with] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_else] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_switch] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2386), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_of] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_do] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_debugger] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_throw] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_case] = ACTIONS(2386), + [anon_sym_yield] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LTtemplate_GT] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_class] = ACTIONS(2386), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_function] = ACTIONS(2386), + [anon_sym_QMARK_DOT] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2386), + [anon_sym_using] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2388), + [anon_sym_PIPE_PIPE] = ACTIONS(2388), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2388), + [anon_sym_LT_LT] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2388), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2388), + [anon_sym_GT_EQ] = ACTIONS(2388), + [anon_sym_QMARK_QMARK] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2386), + [anon_sym_delete] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_private_property_identifier] = ACTIONS(2386), + [sym_this] = ACTIONS(2386), + [sym_super] = ACTIONS(2386), + [sym_true] = ACTIONS(2386), + [sym_false] = ACTIONS(2386), + [sym_null] = ACTIONS(2386), + [sym_undefined] = ACTIONS(2386), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_readonly] = ACTIONS(2386), + [anon_sym_get] = ACTIONS(2386), + [anon_sym_set] = ACTIONS(2386), + [anon_sym_declare] = ACTIONS(2386), + [anon_sym_public] = ACTIONS(2386), + [anon_sym_private] = ACTIONS(2386), + [anon_sym_protected] = ACTIONS(2386), + [anon_sym_override] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_any] = ACTIONS(2386), + [anon_sym_number] = ACTIONS(2386), + [anon_sym_boolean] = ACTIONS(2386), + [anon_sym_string] = ACTIONS(2386), + [anon_sym_symbol] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(2386), + [anon_sym_property] = ACTIONS(2386), + [anon_sym_signal] = ACTIONS(2386), + [anon_sym_on] = ACTIONS(2386), + [anon_sym_required] = ACTIONS(2386), + [anon_sym_component] = ACTIONS(2386), + [anon_sym_abstract] = ACTIONS(2386), + [anon_sym_satisfies] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [sym__automatic_semicolon] = ACTIONS(2390), + [sym__ternary_qmark] = ACTIONS(2392), [sym_html_comment] = ACTIONS(5), }, [358] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), + [sym_statement_block] = STATE(411), [sym_comment] = STATE(358), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2394), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [359] = { + [sym_statement_block] = STATE(411), + [sym_comment] = STATE(359), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [360] = { + [sym_comment] = STATE(360), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_DOT] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2398), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_STAR_STAR] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2398), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_QMARK_QMARK] = ACTIONS(2398), + [anon_sym_instanceof] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2398), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2400), + [sym__ternary_qmark] = ACTIONS(2402), + [sym_html_comment] = ACTIONS(5), + }, + [361] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(361), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(128), + [anon_sym_EQ] = ACTIONS(1337), [anon_sym_as] = ACTIONS(28), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(1436), [anon_sym_typeof] = ACTIONS(2261), [anon_sym_const] = ACTIONS(41), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_RPAREN] = ACTIONS(131), [anon_sym_in] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(131), + [anon_sym_COLON] = ACTIONS(1321), [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(1436), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2271), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -86645,253 +86663,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [359] = { - [sym_comment] = STATE(359), - [sym_identifier] = ACTIONS(2402), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_COMMA] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_typeof] = ACTIONS(2402), - [anon_sym_import] = ACTIONS(2402), - [anon_sym_from] = ACTIONS(2402), - [anon_sym_with] = ACTIONS(2402), - [anon_sym_var] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_switch] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_in] = ACTIONS(2404), - [anon_sym_of] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_debugger] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_throw] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_case] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LTtemplate_GT] = ACTIONS(2402), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_DOT] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_class] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_QMARK_DOT] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2402), - [anon_sym_using] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_GT_GT_GT] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2404), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_LT_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2404), - [anon_sym_QMARK_QMARK] = ACTIONS(2404), - [anon_sym_instanceof] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_void] = ACTIONS(2402), - [anon_sym_delete] = ACTIONS(2402), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_number] = ACTIONS(2402), - [sym_private_property_identifier] = ACTIONS(2402), - [sym_this] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_true] = ACTIONS(2402), - [sym_false] = ACTIONS(2402), - [sym_null] = ACTIONS(2402), - [sym_undefined] = ACTIONS(2402), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_readonly] = ACTIONS(2402), - [anon_sym_get] = ACTIONS(2402), - [anon_sym_set] = ACTIONS(2402), - [anon_sym_declare] = ACTIONS(2402), - [anon_sym_public] = ACTIONS(2402), - [anon_sym_private] = ACTIONS(2402), - [anon_sym_protected] = ACTIONS(2402), - [anon_sym_override] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_any] = ACTIONS(2402), - [anon_sym_number] = ACTIONS(2402), - [anon_sym_boolean] = ACTIONS(2402), - [anon_sym_string] = ACTIONS(2402), - [anon_sym_symbol] = ACTIONS(2402), - [anon_sym_object] = ACTIONS(2402), - [anon_sym_property] = ACTIONS(2402), - [anon_sym_signal] = ACTIONS(2402), - [anon_sym_on] = ACTIONS(2402), - [anon_sym_required] = ACTIONS(2402), - [anon_sym_component] = ACTIONS(2402), - [anon_sym_abstract] = ACTIONS(2402), - [anon_sym_satisfies] = ACTIONS(2404), - [anon_sym_interface] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [sym__automatic_semicolon] = ACTIONS(2406), - [sym__ternary_qmark] = ACTIONS(2408), - [sym_html_comment] = ACTIONS(5), - }, - [360] = { - [sym_comment] = STATE(360), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [362] = { + [sym_comment] = STATE(362), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_COMMA] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_in] = ACTIONS(2406), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2406), + [anon_sym_DOT] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_QMARK_DOT] = ACTIONS(2406), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_GT_GT] = ACTIONS(2406), + [anon_sym_GT_GT_GT] = ACTIONS(2406), + [anon_sym_LT_LT] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + [anon_sym_CARET] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_PERCENT] = ACTIONS(2406), + [anon_sym_STAR_STAR] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_LT_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2406), + [anon_sym_GT_EQ] = ACTIONS(2406), + [anon_sym_QMARK_QMARK] = ACTIONS(2406), + [anon_sym_instanceof] = ACTIONS(2406), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2336), - [sym__ternary_qmark] = ACTIONS(2336), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_satisfies] = ACTIONS(2406), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [sym__automatic_semicolon] = ACTIONS(2408), + [sym__ternary_qmark] = ACTIONS(2408), [sym_html_comment] = ACTIONS(5), }, - [361] = { - [sym_comment] = STATE(361), + [363] = { + [sym_comment] = STATE(363), [sym_identifier] = ACTIONS(2410), [anon_sym_export] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2412), [anon_sym_default] = ACTIONS(2410), [anon_sym_type] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2412), [anon_sym_namespace] = ACTIONS(2410), [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2412), [anon_sym_RBRACE] = ACTIONS(2410), [anon_sym_typeof] = ACTIONS(2410), [anon_sym_import] = ACTIONS(2410), @@ -86907,7 +86807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2410), [anon_sym_LPAREN] = ACTIONS(2410), [anon_sym_await] = ACTIONS(2410), - [anon_sym_in] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2412), [anon_sym_of] = ACTIONS(2410), [anon_sym_while] = ACTIONS(2410), [anon_sym_do] = ACTIONS(2410), @@ -86922,38 +86822,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2410), [anon_sym_LBRACK] = ACTIONS(2410), [anon_sym_LTtemplate_GT] = ACTIONS(2410), - [anon_sym_GT] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2412), [anon_sym_DQUOTE] = ACTIONS(2410), [anon_sym_SQUOTE] = ACTIONS(2410), [anon_sym_class] = ACTIONS(2410), [anon_sym_async] = ACTIONS(2410), [anon_sym_function] = ACTIONS(2410), - [anon_sym_QMARK_DOT] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2412), [anon_sym_new] = ACTIONS(2410), [anon_sym_using] = ACTIONS(2410), - [anon_sym_AMP_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2410), - [anon_sym_GT_GT] = ACTIONS(2410), - [anon_sym_GT_GT_GT] = ACTIONS(2410), - [anon_sym_LT_LT] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_CARET] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), [anon_sym_PLUS] = ACTIONS(2410), [anon_sym_DASH] = ACTIONS(2410), [anon_sym_SLASH] = ACTIONS(2410), - [anon_sym_PERCENT] = ACTIONS(2410), - [anon_sym_STAR_STAR] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2412), [anon_sym_LT] = ACTIONS(2410), - [anon_sym_LT_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), - [anon_sym_GT_EQ] = ACTIONS(2410), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_instanceof] = ACTIONS(2410), + [anon_sym_LT_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2412), + [anon_sym_GT_EQ] = ACTIONS(2412), + [anon_sym_QMARK_QMARK] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), [anon_sym_TILDE] = ACTIONS(2410), [anon_sym_void] = ACTIONS(2410), [anon_sym_delete] = ACTIONS(2410), @@ -86992,365 +86892,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2410), [anon_sym_component] = ACTIONS(2410), [anon_sym_abstract] = ACTIONS(2410), - [anon_sym_satisfies] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2412), [anon_sym_interface] = ACTIONS(2410), [anon_sym_enum] = ACTIONS(2410), - [sym__automatic_semicolon] = ACTIONS(2412), - [sym__ternary_qmark] = ACTIONS(2412), - [sym_html_comment] = ACTIONS(5), - }, - [362] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(7806), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(362), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(7150), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(21), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(2414), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_RBRACK] = ACTIONS(2414), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1285), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(21), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(21), - [anon_sym_private] = ACTIONS(21), - [anon_sym_protected] = ACTIONS(21), - [anon_sym_override] = ACTIONS(21), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(21), - [anon_sym_number] = ACTIONS(21), - [anon_sym_boolean] = ACTIONS(21), - [anon_sym_string] = ACTIONS(21), - [anon_sym_symbol] = ACTIONS(21), - [anon_sym_object] = ACTIONS(21), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), - [sym_html_comment] = ACTIONS(5), - }, - [363] = { - [sym_comment] = STATE(363), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_COMMA] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_typeof] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_from] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_await] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_of] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_debugger] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_case] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LTtemplate_GT] = ACTIONS(2416), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_QMARK_DOT] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_using] = ACTIONS(2416), - [anon_sym_AMP_AMP] = ACTIONS(2418), - [anon_sym_PIPE_PIPE] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_PERCENT] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_LT_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), - [anon_sym_GT_EQ] = ACTIONS(2418), - [anon_sym_QMARK_QMARK] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_void] = ACTIONS(2416), - [anon_sym_delete] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_number] = ACTIONS(2416), - [sym_private_property_identifier] = ACTIONS(2416), - [sym_this] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_true] = ACTIONS(2416), - [sym_false] = ACTIONS(2416), - [sym_null] = ACTIONS(2416), - [sym_undefined] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_property] = ACTIONS(2416), - [anon_sym_signal] = ACTIONS(2416), - [anon_sym_on] = ACTIONS(2416), - [anon_sym_required] = ACTIONS(2416), - [anon_sym_component] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_satisfies] = ACTIONS(2418), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [sym__automatic_semicolon] = ACTIONS(2420), - [sym__ternary_qmark] = ACTIONS(2422), + [sym__automatic_semicolon] = ACTIONS(2414), + [sym__ternary_qmark] = ACTIONS(2416), [sym_html_comment] = ACTIONS(5), }, [364] = { - [sym_statement_block] = STATE(385), [sym_comment] = STATE(364), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2390), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2420), + [anon_sym_LT_LT] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_QMARK_QMARK] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2422), + [sym__ternary_qmark] = ACTIONS(2424), [sym_html_comment] = ACTIONS(5), }, [365] = { @@ -87711,13 +87375,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = STATE(368), [sym_identifier] = ACTIONS(2442), [anon_sym_export] = ACTIONS(2442), - [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2444), [anon_sym_default] = ACTIONS(2442), [anon_sym_type] = ACTIONS(2442), - [anon_sym_as] = ACTIONS(2442), + [anon_sym_as] = ACTIONS(2444), [anon_sym_namespace] = ACTIONS(2442), [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2442), + [anon_sym_COMMA] = ACTIONS(2444), [anon_sym_RBRACE] = ACTIONS(2442), [anon_sym_typeof] = ACTIONS(2442), [anon_sym_import] = ACTIONS(2442), @@ -87733,7 +87397,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2442), [anon_sym_LPAREN] = ACTIONS(2442), [anon_sym_await] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2444), [anon_sym_of] = ACTIONS(2442), [anon_sym_while] = ACTIONS(2442), [anon_sym_do] = ACTIONS(2442), @@ -87748,38 +87412,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2442), [anon_sym_LBRACK] = ACTIONS(2442), [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_GT] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_DOT] = ACTIONS(2444), [anon_sym_DQUOTE] = ACTIONS(2442), [anon_sym_SQUOTE] = ACTIONS(2442), [anon_sym_class] = ACTIONS(2442), [anon_sym_async] = ACTIONS(2442), [anon_sym_function] = ACTIONS(2442), - [anon_sym_QMARK_DOT] = ACTIONS(2442), + [anon_sym_QMARK_DOT] = ACTIONS(2444), [anon_sym_new] = ACTIONS(2442), [anon_sym_using] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2442), - [anon_sym_LT_LT] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2444), + [anon_sym_PIPE_PIPE] = ACTIONS(2444), + [anon_sym_GT_GT] = ACTIONS(2444), + [anon_sym_GT_GT_GT] = ACTIONS(2444), + [anon_sym_LT_LT] = ACTIONS(2444), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), [anon_sym_PLUS] = ACTIONS(2442), [anon_sym_DASH] = ACTIONS(2442), [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2442), + [anon_sym_PERCENT] = ACTIONS(2444), + [anon_sym_STAR_STAR] = ACTIONS(2444), [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), - [anon_sym_GT_EQ] = ACTIONS(2442), - [anon_sym_QMARK_QMARK] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), + [anon_sym_LT_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), + [anon_sym_GT_EQ] = ACTIONS(2444), + [anon_sym_QMARK_QMARK] = ACTIONS(2444), + [anon_sym_instanceof] = ACTIONS(2444), [anon_sym_TILDE] = ACTIONS(2442), [anon_sym_void] = ACTIONS(2442), [anon_sym_delete] = ACTIONS(2442), @@ -87818,142 +87482,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2442), [anon_sym_component] = ACTIONS(2442), [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_satisfies] = ACTIONS(2442), + [anon_sym_satisfies] = ACTIONS(2444), [anon_sym_interface] = ACTIONS(2442), [anon_sym_enum] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2444), - [sym_html_comment] = ACTIONS(5), - }, - [369] = { - [sym_comment] = STATE(369), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2287), - [anon_sym_DOT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2287), - [anon_sym_PIPE_PIPE] = ACTIONS(2287), - [anon_sym_GT_GT] = ACTIONS(2287), - [anon_sym_GT_GT_GT] = ACTIONS(2287), - [anon_sym_LT_LT] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2287), - [anon_sym_STAR_STAR] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), - [anon_sym_GT_EQ] = ACTIONS(2287), - [anon_sym_QMARK_QMARK] = ACTIONS(2287), - [anon_sym_instanceof] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), [sym__automatic_semicolon] = ACTIONS(2446), [sym__ternary_qmark] = ACTIONS(2448), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_comment] = STATE(370), + [369] = { + [sym_comment] = STATE(369), [sym_identifier] = ACTIONS(2450), [anon_sym_export] = ACTIONS(2450), - [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2450), [anon_sym_default] = ACTIONS(2450), [anon_sym_type] = ACTIONS(2450), - [anon_sym_as] = ACTIONS(2452), + [anon_sym_as] = ACTIONS(2450), [anon_sym_namespace] = ACTIONS(2450), [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_COMMA] = ACTIONS(2452), + [anon_sym_COMMA] = ACTIONS(2450), [anon_sym_RBRACE] = ACTIONS(2450), [anon_sym_typeof] = ACTIONS(2450), [anon_sym_import] = ACTIONS(2450), @@ -87969,7 +87515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2450), [anon_sym_LPAREN] = ACTIONS(2450), [anon_sym_await] = ACTIONS(2450), - [anon_sym_in] = ACTIONS(2452), + [anon_sym_in] = ACTIONS(2450), [anon_sym_of] = ACTIONS(2450), [anon_sym_while] = ACTIONS(2450), [anon_sym_do] = ACTIONS(2450), @@ -87984,38 +87530,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2450), [anon_sym_LBRACK] = ACTIONS(2450), [anon_sym_LTtemplate_GT] = ACTIONS(2450), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_DOT] = ACTIONS(2452), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), [anon_sym_DQUOTE] = ACTIONS(2450), [anon_sym_SQUOTE] = ACTIONS(2450), [anon_sym_class] = ACTIONS(2450), [anon_sym_async] = ACTIONS(2450), [anon_sym_function] = ACTIONS(2450), - [anon_sym_QMARK_DOT] = ACTIONS(2452), + [anon_sym_QMARK_DOT] = ACTIONS(2450), [anon_sym_new] = ACTIONS(2450), [anon_sym_using] = ACTIONS(2450), - [anon_sym_AMP_AMP] = ACTIONS(2452), - [anon_sym_PIPE_PIPE] = ACTIONS(2452), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_GT_GT_GT] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_CARET] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), [anon_sym_PLUS] = ACTIONS(2450), [anon_sym_DASH] = ACTIONS(2450), [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2452), - [anon_sym_STAR_STAR] = ACTIONS(2452), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), [anon_sym_LT] = ACTIONS(2450), - [anon_sym_LT_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2452), - [anon_sym_GT_EQ] = ACTIONS(2452), - [anon_sym_QMARK_QMARK] = ACTIONS(2452), - [anon_sym_instanceof] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), [anon_sym_TILDE] = ACTIONS(2450), [anon_sym_void] = ACTIONS(2450), [anon_sym_delete] = ACTIONS(2450), @@ -88054,142 +87600,496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2450), [anon_sym_component] = ACTIONS(2450), [anon_sym_abstract] = ACTIONS(2450), - [anon_sym_satisfies] = ACTIONS(2452), + [anon_sym_satisfies] = ACTIONS(2450), [anon_sym_interface] = ACTIONS(2450), [anon_sym_enum] = ACTIONS(2450), + [sym__automatic_semicolon] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2452), + [sym_html_comment] = ACTIONS(5), + }, + [370] = { + [sym_comment] = STATE(370), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2296), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2296), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_instanceof] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), [sym__automatic_semicolon] = ACTIONS(2454), [sym__ternary_qmark] = ACTIONS(2456), [sym_html_comment] = ACTIONS(5), }, [371] = { [sym_comment] = STATE(371), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_as] = ACTIONS(2460), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_typeof] = ACTIONS(2458), - [anon_sym_import] = ACTIONS(2458), - [anon_sym_from] = ACTIONS(2458), - [anon_sym_with] = ACTIONS(2458), - [anon_sym_var] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_else] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_switch] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_await] = ACTIONS(2458), - [anon_sym_in] = ACTIONS(2460), - [anon_sym_of] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_do] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_debugger] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_throw] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_case] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_LTtemplate_GT] = ACTIONS(2458), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_DOT] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_QMARK_DOT] = ACTIONS(2460), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_GT_GT_GT] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_SLASH] = ACTIONS(2458), - [anon_sym_PERCENT] = ACTIONS(2460), - [anon_sym_STAR_STAR] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_LT_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2460), - [anon_sym_GT_EQ] = ACTIONS(2460), - [anon_sym_QMARK_QMARK] = ACTIONS(2460), - [anon_sym_instanceof] = ACTIONS(2460), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_void] = ACTIONS(2458), - [anon_sym_delete] = ACTIONS(2458), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2458), - [sym_number] = ACTIONS(2458), - [sym_private_property_identifier] = ACTIONS(2458), - [sym_this] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_true] = ACTIONS(2458), - [sym_false] = ACTIONS(2458), - [sym_null] = ACTIONS(2458), - [sym_undefined] = ACTIONS(2458), - [anon_sym_AT] = ACTIONS(2458), - [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_property] = ACTIONS(2458), - [anon_sym_signal] = ACTIONS(2458), - [anon_sym_on] = ACTIONS(2458), - [anon_sym_required] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_abstract] = ACTIONS(2458), - [anon_sym_satisfies] = ACTIONS(2460), - [anon_sym_interface] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(2462), - [sym__ternary_qmark] = ACTIONS(2464), - [sym_html_comment] = ACTIONS(5), - }, - [372] = { - [sym_comment] = STATE(372), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2468), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_COMMA] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_in] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_DOT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_QMARK_DOT] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_STAR_STAR] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_instanceof] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_satisfies] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym__ternary_qmark] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [372] = { + [sym_comment] = STATE(372), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [373] = { + [sym_comment] = STATE(373), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_as] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_from] = ACTIONS(2462), + [anon_sym_with] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_debugger] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2462), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_QMARK_DOT] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_instanceof] = ACTIONS(2462), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_void] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_undefined] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_override] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_object] = ACTIONS(2462), + [anon_sym_property] = ACTIONS(2462), + [anon_sym_signal] = ACTIONS(2462), + [anon_sym_on] = ACTIONS(2462), + [anon_sym_required] = ACTIONS(2462), + [anon_sym_component] = ACTIONS(2462), + [anon_sym_abstract] = ACTIONS(2462), + [anon_sym_satisfies] = ACTIONS(2462), + [anon_sym_interface] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [sym__automatic_semicolon] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2464), + [sym_html_comment] = ACTIONS(5), + }, + [374] = { + [sym_comment] = STATE(374), + [sym_identifier] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2466), [anon_sym_default] = ACTIONS(2466), [anon_sym_type] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2468), + [anon_sym_as] = ACTIONS(2466), [anon_sym_namespace] = ACTIONS(2466), [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(2468), + [anon_sym_COMMA] = ACTIONS(2466), [anon_sym_RBRACE] = ACTIONS(2466), [anon_sym_typeof] = ACTIONS(2466), [anon_sym_import] = ACTIONS(2466), @@ -88205,7 +88105,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2466), [anon_sym_LPAREN] = ACTIONS(2466), [anon_sym_await] = ACTIONS(2466), - [anon_sym_in] = ACTIONS(2468), + [anon_sym_in] = ACTIONS(2466), [anon_sym_of] = ACTIONS(2466), [anon_sym_while] = ACTIONS(2466), [anon_sym_do] = ACTIONS(2466), @@ -88220,38 +88120,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2466), [anon_sym_LBRACK] = ACTIONS(2466), [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_DOT] = ACTIONS(2468), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_DOT] = ACTIONS(2466), [anon_sym_DQUOTE] = ACTIONS(2466), [anon_sym_SQUOTE] = ACTIONS(2466), [anon_sym_class] = ACTIONS(2466), [anon_sym_async] = ACTIONS(2466), [anon_sym_function] = ACTIONS(2466), - [anon_sym_QMARK_DOT] = ACTIONS(2468), + [anon_sym_QMARK_DOT] = ACTIONS(2466), [anon_sym_new] = ACTIONS(2466), [anon_sym_using] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2468), - [anon_sym_PIPE_PIPE] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_GT_GT_GT] = ACTIONS(2468), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2466), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2466), [anon_sym_PLUS] = ACTIONS(2466), [anon_sym_DASH] = ACTIONS(2466), [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_STAR_STAR] = ACTIONS(2468), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_STAR_STAR] = ACTIONS(2466), [anon_sym_LT] = ACTIONS(2466), - [anon_sym_LT_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2468), - [anon_sym_QMARK_QMARK] = ACTIONS(2468), - [anon_sym_instanceof] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_instanceof] = ACTIONS(2466), [anon_sym_TILDE] = ACTIONS(2466), [anon_sym_void] = ACTIONS(2466), [anon_sym_delete] = ACTIONS(2466), @@ -88290,378 +88190,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2466), [anon_sym_component] = ACTIONS(2466), [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(2468), + [anon_sym_satisfies] = ACTIONS(2466), [anon_sym_interface] = ACTIONS(2466), [anon_sym_enum] = ACTIONS(2466), - [sym__automatic_semicolon] = ACTIONS(2470), - [sym__ternary_qmark] = ACTIONS(2470), - [sym_html_comment] = ACTIONS(5), - }, - [373] = { - [sym_comment] = STATE(373), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_EQ] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2289), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_PIPE_PIPE] = ACTIONS(2289), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_GT_GT_GT] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2289), - [anon_sym_STAR_STAR] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2289), - [anon_sym_GT_EQ] = ACTIONS(2289), - [anon_sym_QMARK_QMARK] = ACTIONS(2289), - [anon_sym_instanceof] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(2295), - [sym_html_comment] = ACTIONS(5), - }, - [374] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(374), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(1337), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(66), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_void] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym__ternary_qmark] = ACTIONS(126), + [sym__automatic_semicolon] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(2468), [sym_html_comment] = ACTIONS(5), }, [375] = { - [sym_statement_block] = STATE(385), [sym_comment] = STATE(375), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2390), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2470), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_instanceof] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2472), + [sym__ternary_qmark] = ACTIONS(2472), [sym_html_comment] = ACTIONS(5), }, [376] = { [sym_comment] = STATE(376), [sym_identifier] = ACTIONS(2474), [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), [anon_sym_default] = ACTIONS(2474), [anon_sym_type] = ACTIONS(2474), - [anon_sym_as] = ACTIONS(2474), + [anon_sym_as] = ACTIONS(2476), [anon_sym_namespace] = ACTIONS(2474), [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_COMMA] = ACTIONS(2474), + [anon_sym_COMMA] = ACTIONS(2476), [anon_sym_RBRACE] = ACTIONS(2474), [anon_sym_typeof] = ACTIONS(2474), [anon_sym_import] = ACTIONS(2474), @@ -88677,7 +88341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(2474), [anon_sym_await] = ACTIONS(2474), - [anon_sym_in] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2476), [anon_sym_of] = ACTIONS(2474), [anon_sym_while] = ACTIONS(2474), [anon_sym_do] = ACTIONS(2474), @@ -88692,38 +88356,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2474), [anon_sym_LBRACK] = ACTIONS(2474), [anon_sym_LTtemplate_GT] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2476), [anon_sym_DQUOTE] = ACTIONS(2474), [anon_sym_SQUOTE] = ACTIONS(2474), [anon_sym_class] = ACTIONS(2474), [anon_sym_async] = ACTIONS(2474), [anon_sym_function] = ACTIONS(2474), - [anon_sym_QMARK_DOT] = ACTIONS(2474), + [anon_sym_QMARK_DOT] = ACTIONS(2476), [anon_sym_new] = ACTIONS(2474), [anon_sym_using] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_GT_GT_GT] = ACTIONS(2474), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2476), + [anon_sym_PIPE_PIPE] = ACTIONS(2476), + [anon_sym_GT_GT] = ACTIONS(2476), + [anon_sym_GT_GT_GT] = ACTIONS(2476), + [anon_sym_LT_LT] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), [anon_sym_PLUS] = ACTIONS(2474), [anon_sym_DASH] = ACTIONS(2474), [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_PERCENT] = ACTIONS(2474), - [anon_sym_STAR_STAR] = ACTIONS(2474), + [anon_sym_PERCENT] = ACTIONS(2476), + [anon_sym_STAR_STAR] = ACTIONS(2476), [anon_sym_LT] = ACTIONS(2474), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2474), - [anon_sym_QMARK_QMARK] = ACTIONS(2474), - [anon_sym_instanceof] = ACTIONS(2474), + [anon_sym_LT_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2476), + [anon_sym_GT_EQ] = ACTIONS(2476), + [anon_sym_QMARK_QMARK] = ACTIONS(2476), + [anon_sym_instanceof] = ACTIONS(2476), [anon_sym_TILDE] = ACTIONS(2474), [anon_sym_void] = ACTIONS(2474), [anon_sym_delete] = ACTIONS(2474), @@ -88762,863 +88426,863 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2474), [anon_sym_component] = ACTIONS(2474), [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(2474), + [anon_sym_satisfies] = ACTIONS(2476), [anon_sym_interface] = ACTIONS(2474), [anon_sym_enum] = ACTIONS(2474), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(2476), + [sym__automatic_semicolon] = ACTIONS(2478), + [sym__ternary_qmark] = ACTIONS(2480), [sym_html_comment] = ACTIONS(5), }, [377] = { [sym_comment] = STATE(377), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2480), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_typeof] = ACTIONS(2478), - [anon_sym_import] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_with] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_await] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2480), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LTtemplate_GT] = ACTIONS(2478), - [anon_sym_GT] = ACTIONS(2480), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_QMARK_DOT] = ACTIONS(2480), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2480), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_instanceof] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2478), - [sym_number] = ACTIONS(2478), - [sym_private_property_identifier] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_undefined] = ACTIONS(2478), - [anon_sym_AT] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_object] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_satisfies] = ACTIONS(2480), - [anon_sym_interface] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(2482), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_as] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_from] = ACTIONS(2482), + [anon_sym_with] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_of] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_throw] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_QMARK_DOT] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(2482), + [anon_sym_PIPE_PIPE] = ACTIONS(2482), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2482), + [anon_sym_LT_LT] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2482), + [anon_sym_GT_EQ] = ACTIONS(2482), + [anon_sym_QMARK_QMARK] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_property] = ACTIONS(2482), + [anon_sym_signal] = ACTIONS(2482), + [anon_sym_on] = ACTIONS(2482), + [anon_sym_required] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_satisfies] = ACTIONS(2482), + [anon_sym_interface] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), [sym__ternary_qmark] = ACTIONS(2484), [sym_html_comment] = ACTIONS(5), }, [378] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), [sym_comment] = STATE(378), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_typeof] = ACTIONS(1603), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_COMMA] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_in] = ACTIONS(2406), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2406), + [anon_sym_DOT] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_QMARK_DOT] = ACTIONS(2406), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_GT_GT] = ACTIONS(2406), + [anon_sym_GT_GT_GT] = ACTIONS(2406), + [anon_sym_LT_LT] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + [anon_sym_CARET] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_PERCENT] = ACTIONS(2406), + [anon_sym_STAR_STAR] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_LT_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2406), + [anon_sym_GT_EQ] = ACTIONS(2406), + [anon_sym_QMARK_QMARK] = ACTIONS(2406), + [anon_sym_instanceof] = ACTIONS(2406), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), - [anon_sym_extends] = ACTIONS(2209), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_satisfies] = ACTIONS(2406), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [sym__automatic_semicolon] = ACTIONS(2408), + [sym__ternary_qmark] = ACTIONS(2408), [sym_html_comment] = ACTIONS(5), }, [379] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_statement_block] = STATE(458), [sym_comment] = STATE(379), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(2157), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6156), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_accessibility_modifier] = STATE(475), - [sym_override_modifier] = STATE(498), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(2095), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(21), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(2486), - [anon_sym_async] = ACTIONS(62), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2488), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1285), - [anon_sym_AT] = ACTIONS(1359), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2490), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(1400), - [anon_sym_private] = ACTIONS(1400), - [anon_sym_protected] = ACTIONS(1400), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(21), - [anon_sym_number] = ACTIONS(21), - [anon_sym_boolean] = ACTIONS(21), - [anon_sym_string] = ACTIONS(21), - [anon_sym_symbol] = ACTIONS(21), - [anon_sym_object] = ACTIONS(21), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2488), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), [sym_html_comment] = ACTIONS(5), }, [380] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), [sym_comment] = STATE(380), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(1471), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_void] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_implements] = ACTIONS(28), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym__ternary_qmark] = ACTIONS(126), + [sym_identifier] = ACTIONS(2358), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_typeof] = ACTIONS(2358), + [anon_sym_import] = ACTIONS(2358), + [anon_sym_from] = ACTIONS(2358), + [anon_sym_with] = ACTIONS(2358), + [anon_sym_var] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_switch] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_of] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_debugger] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_throw] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_case] = ACTIONS(2358), + [anon_sym_yield] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LTtemplate_GT] = ACTIONS(2358), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2358), + [anon_sym_QMARK_DOT] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2358), + [anon_sym_using] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2358), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_STAR_STAR] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_QMARK_QMARK] = ACTIONS(2360), + [anon_sym_instanceof] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2358), + [anon_sym_delete] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_private_property_identifier] = ACTIONS(2358), + [sym_this] = ACTIONS(2358), + [sym_super] = ACTIONS(2358), + [sym_true] = ACTIONS(2358), + [sym_false] = ACTIONS(2358), + [sym_null] = ACTIONS(2358), + [sym_undefined] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_readonly] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), + [anon_sym_declare] = ACTIONS(2358), + [anon_sym_public] = ACTIONS(2358), + [anon_sym_private] = ACTIONS(2358), + [anon_sym_protected] = ACTIONS(2358), + [anon_sym_override] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_any] = ACTIONS(2358), + [anon_sym_number] = ACTIONS(2358), + [anon_sym_boolean] = ACTIONS(2358), + [anon_sym_string] = ACTIONS(2358), + [anon_sym_symbol] = ACTIONS(2358), + [anon_sym_object] = ACTIONS(2358), + [anon_sym_property] = ACTIONS(2358), + [anon_sym_signal] = ACTIONS(2358), + [anon_sym_on] = ACTIONS(2358), + [anon_sym_required] = ACTIONS(2358), + [anon_sym_component] = ACTIONS(2358), + [anon_sym_abstract] = ACTIONS(2358), + [anon_sym_satisfies] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2358), + [anon_sym_enum] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(2490), + [sym__ternary_qmark] = ACTIONS(2364), [sym_html_comment] = ACTIONS(5), }, [381] = { [sym_comment] = STATE(381), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_default] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2364), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_typeof] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_with] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_await] = ACTIONS(2362), - [anon_sym_in] = ACTIONS(2364), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_debugger] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_case] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_LTtemplate_GT] = ACTIONS(2362), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_DOT] = ACTIONS(2364), - [anon_sym_DQUOTE] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_QMARK_DOT] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2364), - [anon_sym_PIPE_PIPE] = ACTIONS(2364), - [anon_sym_GT_GT] = ACTIONS(2364), - [anon_sym_GT_GT_GT] = ACTIONS(2364), - [anon_sym_LT_LT] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_CARET] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_PERCENT] = ACTIONS(2364), - [anon_sym_STAR_STAR] = ACTIONS(2364), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_LT_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2364), - [anon_sym_GT_EQ] = ACTIONS(2364), - [anon_sym_QMARK_QMARK] = ACTIONS(2364), - [anon_sym_instanceof] = ACTIONS(2364), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_void] = ACTIONS(2362), - [anon_sym_delete] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2362), - [sym_number] = ACTIONS(2362), - [sym_private_property_identifier] = ACTIONS(2362), - [sym_this] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_true] = ACTIONS(2362), - [sym_false] = ACTIONS(2362), - [sym_null] = ACTIONS(2362), - [sym_undefined] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(2364), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - [sym__automatic_semicolon] = ACTIONS(2492), - [sym__ternary_qmark] = ACTIONS(2368), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), [sym_html_comment] = ACTIONS(5), }, [382] = { [sym_comment] = STATE(382), - [sym_identifier] = ACTIONS(2402), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_COMMA] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_typeof] = ACTIONS(2402), - [anon_sym_import] = ACTIONS(2402), - [anon_sym_from] = ACTIONS(2402), - [anon_sym_with] = ACTIONS(2402), - [anon_sym_var] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_switch] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_in] = ACTIONS(2404), - [anon_sym_of] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_debugger] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_throw] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_case] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LTtemplate_GT] = ACTIONS(2402), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_DOT] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_class] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_QMARK_DOT] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2402), - [anon_sym_using] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_GT_GT_GT] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2404), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_LT_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2404), - [anon_sym_QMARK_QMARK] = ACTIONS(2404), - [anon_sym_instanceof] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_void] = ACTIONS(2402), - [anon_sym_delete] = ACTIONS(2402), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_number] = ACTIONS(2402), - [sym_private_property_identifier] = ACTIONS(2402), - [sym_this] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_true] = ACTIONS(2402), - [sym_false] = ACTIONS(2402), - [sym_null] = ACTIONS(2402), - [sym_undefined] = ACTIONS(2402), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_readonly] = ACTIONS(2402), - [anon_sym_get] = ACTIONS(2402), - [anon_sym_set] = ACTIONS(2402), - [anon_sym_declare] = ACTIONS(2402), - [anon_sym_public] = ACTIONS(2402), - [anon_sym_private] = ACTIONS(2402), - [anon_sym_protected] = ACTIONS(2402), - [anon_sym_override] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_any] = ACTIONS(2402), - [anon_sym_number] = ACTIONS(2402), - [anon_sym_boolean] = ACTIONS(2402), - [anon_sym_string] = ACTIONS(2402), - [anon_sym_symbol] = ACTIONS(2402), - [anon_sym_object] = ACTIONS(2402), - [anon_sym_property] = ACTIONS(2402), - [anon_sym_signal] = ACTIONS(2402), - [anon_sym_on] = ACTIONS(2402), - [anon_sym_required] = ACTIONS(2402), - [anon_sym_component] = ACTIONS(2402), - [anon_sym_abstract] = ACTIONS(2402), - [anon_sym_satisfies] = ACTIONS(2404), - [anon_sym_interface] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [sym__automatic_semicolon] = ACTIONS(2494), - [sym__ternary_qmark] = ACTIONS(2408), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2298), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2298), + [anon_sym_DOT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_GT_GT] = ACTIONS(2298), + [anon_sym_GT_GT_GT] = ACTIONS(2298), + [anon_sym_LT_LT] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_CARET] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), + [anon_sym_GT_EQ] = ACTIONS(2298), + [anon_sym_QMARK_QMARK] = ACTIONS(2298), + [anon_sym_instanceof] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2492), + [sym__ternary_qmark] = ACTIONS(2304), [sym_html_comment] = ACTIONS(5), }, [383] = { + [sym_statement_block] = STATE(458), [sym_comment] = STATE(383), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_default] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_as] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_COMMA] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_typeof] = ACTIONS(2474), - [anon_sym_import] = ACTIONS(2474), - [anon_sym_from] = ACTIONS(2474), - [anon_sym_with] = ACTIONS(2474), - [anon_sym_var] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_await] = ACTIONS(2474), - [anon_sym_in] = ACTIONS(2474), - [anon_sym_of] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_debugger] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LTtemplate_GT] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_class] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_QMARK_DOT] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_GT_GT_GT] = ACTIONS(2474), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_PERCENT] = ACTIONS(2474), - [anon_sym_STAR_STAR] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2474), - [anon_sym_QMARK_QMARK] = ACTIONS(2474), - [anon_sym_instanceof] = ACTIONS(2474), - [anon_sym_TILDE] = ACTIONS(2474), - [anon_sym_void] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2474), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_undefined] = ACTIONS(2474), - [anon_sym_AT] = ACTIONS(2474), - [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_property] = ACTIONS(2474), - [anon_sym_signal] = ACTIONS(2474), - [anon_sym_on] = ACTIONS(2474), - [anon_sym_required] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(2474), - [anon_sym_interface] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(2476), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2494), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), [sym_html_comment] = ACTIONS(5), }, [384] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), [sym_comment] = STATE(384), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_EQ] = ACTIONS(25), @@ -89707,367 +89371,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [385] = { + [sym_statement_block] = STATE(458), [sym_comment] = STATE(385), - [sym_identifier] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_default] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_as] = ACTIONS(2338), - [anon_sym_namespace] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2338), - [anon_sym_import] = ACTIONS(2338), - [anon_sym_from] = ACTIONS(2338), - [anon_sym_with] = ACTIONS(2338), - [anon_sym_var] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_do] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_debugger] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_throw] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_case] = ACTIONS(2338), - [anon_sym_yield] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LTtemplate_GT] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2338), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_class] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_QMARK_DOT] = ACTIONS(2338), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_using] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2338), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_instanceof] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2338), - [anon_sym_delete] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_private_property_identifier] = ACTIONS(2338), - [sym_this] = ACTIONS(2338), - [sym_super] = ACTIONS(2338), - [sym_true] = ACTIONS(2338), - [sym_false] = ACTIONS(2338), - [sym_null] = ACTIONS(2338), - [sym_undefined] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_readonly] = ACTIONS(2338), - [anon_sym_get] = ACTIONS(2338), - [anon_sym_set] = ACTIONS(2338), - [anon_sym_declare] = ACTIONS(2338), - [anon_sym_public] = ACTIONS(2338), - [anon_sym_private] = ACTIONS(2338), - [anon_sym_protected] = ACTIONS(2338), - [anon_sym_override] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_any] = ACTIONS(2338), - [anon_sym_number] = ACTIONS(2338), - [anon_sym_boolean] = ACTIONS(2338), - [anon_sym_string] = ACTIONS(2338), - [anon_sym_symbol] = ACTIONS(2338), - [anon_sym_object] = ACTIONS(2338), - [anon_sym_property] = ACTIONS(2338), - [anon_sym_signal] = ACTIONS(2338), - [anon_sym_on] = ACTIONS(2338), - [anon_sym_required] = ACTIONS(2338), - [anon_sym_component] = ACTIONS(2338), - [anon_sym_abstract] = ACTIONS(2338), - [anon_sym_satisfies] = ACTIONS(2338), - [anon_sym_interface] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), - [sym__automatic_semicolon] = ACTIONS(2340), - [sym__ternary_qmark] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), [sym_html_comment] = ACTIONS(5), }, [386] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), [sym_comment] = STATE(386), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(1455), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_void] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [387] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(387), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(2209), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [anon_sym_extends] = ACTIONS(2209), - [sym_html_comment] = ACTIONS(5), - }, - [388] = { - [sym_comment] = STATE(388), [sym_identifier] = ACTIONS(2332), [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), [anon_sym_default] = ACTIONS(2332), [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), [anon_sym_namespace] = ACTIONS(2332), [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), [anon_sym_RBRACE] = ACTIONS(2332), [anon_sym_typeof] = ACTIONS(2332), [anon_sym_import] = ACTIONS(2332), @@ -90082,7 +89512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2332), [anon_sym_LPAREN] = ACTIONS(2332), [anon_sym_await] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2334), [anon_sym_of] = ACTIONS(2332), [anon_sym_while] = ACTIONS(2332), [anon_sym_do] = ACTIONS(2332), @@ -90097,38 +89527,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2332), [anon_sym_LBRACK] = ACTIONS(2332), [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), [anon_sym_DQUOTE] = ACTIONS(2332), [anon_sym_SQUOTE] = ACTIONS(2332), [anon_sym_class] = ACTIONS(2332), [anon_sym_async] = ACTIONS(2332), [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), [anon_sym_new] = ACTIONS(2332), [anon_sym_using] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), [anon_sym_PLUS] = ACTIONS(2332), [anon_sym_DASH] = ACTIONS(2332), [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), [anon_sym_TILDE] = ACTIONS(2332), [anon_sym_void] = ACTIONS(2332), [anon_sym_delete] = ACTIONS(2332), @@ -90167,132 +89597,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2332), [anon_sym_component] = ACTIONS(2332), [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), [anon_sym_interface] = ACTIONS(2332), [anon_sym_enum] = ACTIONS(2332), [sym__automatic_semicolon] = ACTIONS(2496), - [sym__ternary_qmark] = ACTIONS(2336), + [sym__ternary_qmark] = ACTIONS(2338), [sym_html_comment] = ACTIONS(5), }, - [389] = { - [sym_comment] = STATE(389), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2438), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_as] = ACTIONS(2438), - [anon_sym_namespace] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_COMMA] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_typeof] = ACTIONS(2438), - [anon_sym_import] = ACTIONS(2438), - [anon_sym_from] = ACTIONS(2438), - [anon_sym_with] = ACTIONS(2438), - [anon_sym_var] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_switch] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_await] = ACTIONS(2438), - [anon_sym_in] = ACTIONS(2438), - [anon_sym_of] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_debugger] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_throw] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_case] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_LTtemplate_GT] = ACTIONS(2438), - [anon_sym_GT] = ACTIONS(2438), - [anon_sym_DOT] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2438), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_class] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2438), - [anon_sym_QMARK_DOT] = ACTIONS(2438), - [anon_sym_new] = ACTIONS(2438), - [anon_sym_using] = ACTIONS(2438), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE_PIPE] = ACTIONS(2438), - [anon_sym_GT_GT] = ACTIONS(2438), - [anon_sym_GT_GT_GT] = ACTIONS(2438), - [anon_sym_LT_LT] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2438), - [anon_sym_CARET] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2438), - [anon_sym_PLUS] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_SLASH] = ACTIONS(2438), - [anon_sym_PERCENT] = ACTIONS(2438), - [anon_sym_STAR_STAR] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_LT_EQ] = ACTIONS(2438), - [anon_sym_EQ_EQ] = ACTIONS(2438), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), - [anon_sym_GT_EQ] = ACTIONS(2438), - [anon_sym_QMARK_QMARK] = ACTIONS(2438), - [anon_sym_instanceof] = ACTIONS(2438), - [anon_sym_TILDE] = ACTIONS(2438), - [anon_sym_void] = ACTIONS(2438), - [anon_sym_delete] = ACTIONS(2438), - [anon_sym_PLUS_PLUS] = ACTIONS(2438), - [anon_sym_DASH_DASH] = ACTIONS(2438), + [387] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3149), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_spread_element] = STATE(6484), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(387), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6485), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2500), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2438), - [sym_number] = ACTIONS(2438), - [sym_private_property_identifier] = ACTIONS(2438), - [sym_this] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_true] = ACTIONS(2438), - [sym_false] = ACTIONS(2438), - [sym_null] = ACTIONS(2438), - [sym_undefined] = ACTIONS(2438), - [anon_sym_AT] = ACTIONS(2438), - [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_property] = ACTIONS(2438), - [anon_sym_signal] = ACTIONS(2438), - [anon_sym_on] = ACTIONS(2438), - [anon_sym_required] = ACTIONS(2438), - [anon_sym_component] = ACTIONS(2438), - [anon_sym_abstract] = ACTIONS(2438), - [anon_sym_satisfies] = ACTIONS(2438), - [anon_sym_interface] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - [sym__automatic_semicolon] = ACTIONS(2440), - [sym__ternary_qmark] = ACTIONS(2440), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [390] = { - [sym_comment] = STATE(390), + [388] = { + [sym_comment] = STATE(388), [sym_identifier] = ACTIONS(2370), [anon_sym_export] = ACTIONS(2370), [anon_sym_STAR] = ACTIONS(2370), @@ -90404,530 +89834,647 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2370), [anon_sym_interface] = ACTIONS(2370), [anon_sym_enum] = ACTIONS(2370), - [sym__automatic_semicolon] = ACTIONS(2372), - [sym__ternary_qmark] = ACTIONS(2372), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym__ternary_qmark] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, - [391] = { - [sym_comment] = STATE(391), - [sym_identifier] = ACTIONS(2410), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_typeof] = ACTIONS(2410), - [anon_sym_import] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_with] = ACTIONS(2410), - [anon_sym_var] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_switch] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_in] = ACTIONS(2410), - [anon_sym_of] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_debugger] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_throw] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_case] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LTtemplate_GT] = ACTIONS(2410), - [anon_sym_GT] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_function] = ACTIONS(2410), - [anon_sym_QMARK_DOT] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_using] = ACTIONS(2410), - [anon_sym_AMP_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2410), - [anon_sym_GT_GT] = ACTIONS(2410), - [anon_sym_GT_GT_GT] = ACTIONS(2410), - [anon_sym_LT_LT] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_CARET] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2410), - [anon_sym_PERCENT] = ACTIONS(2410), - [anon_sym_STAR_STAR] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_LT_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), - [anon_sym_GT_EQ] = ACTIONS(2410), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_instanceof] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_void] = ACTIONS(2410), - [anon_sym_delete] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), + [389] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(389), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4687), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_RBRACE] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_in] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(1573), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2410), - [sym_number] = ACTIONS(2410), - [sym_private_property_identifier] = ACTIONS(2410), - [sym_this] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), - [sym_null] = ACTIONS(2410), - [sym_undefined] = ACTIONS(2410), - [anon_sym_AT] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_signal] = ACTIONS(2410), - [anon_sym_on] = ACTIONS(2410), - [anon_sym_required] = ACTIONS(2410), - [anon_sym_component] = ACTIONS(2410), - [anon_sym_abstract] = ACTIONS(2410), - [anon_sym_satisfies] = ACTIONS(2410), - [anon_sym_interface] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [sym__automatic_semicolon] = ACTIONS(2412), - [sym__ternary_qmark] = ACTIONS(2412), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [392] = { - [sym_comment] = STATE(392), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_COMMA] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_typeof] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_from] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_await] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_of] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_debugger] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_case] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LTtemplate_GT] = ACTIONS(2416), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_QMARK_DOT] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_using] = ACTIONS(2416), - [anon_sym_AMP_AMP] = ACTIONS(2418), - [anon_sym_PIPE_PIPE] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_PERCENT] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_LT_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), - [anon_sym_GT_EQ] = ACTIONS(2418), - [anon_sym_QMARK_QMARK] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_void] = ACTIONS(2416), - [anon_sym_delete] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_number] = ACTIONS(2416), - [sym_private_property_identifier] = ACTIONS(2416), - [sym_this] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_true] = ACTIONS(2416), - [sym_false] = ACTIONS(2416), - [sym_null] = ACTIONS(2416), - [sym_undefined] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_property] = ACTIONS(2416), - [anon_sym_signal] = ACTIONS(2416), - [anon_sym_on] = ACTIONS(2416), - [anon_sym_required] = ACTIONS(2416), - [anon_sym_component] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_satisfies] = ACTIONS(2418), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [sym__automatic_semicolon] = ACTIONS(2498), - [sym__ternary_qmark] = ACTIONS(2422), + [390] = { + [sym_comment] = STATE(390), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2378), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2378), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2378), + [anon_sym_PIPE_PIPE] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_GT_GT_GT] = ACTIONS(2378), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PERCENT] = ACTIONS(2378), + [anon_sym_STAR_STAR] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2378), + [anon_sym_instanceof] = ACTIONS(2378), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2378), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2528), + [sym__ternary_qmark] = ACTIONS(2382), [sym_html_comment] = ACTIONS(5), }, - [393] = { - [sym_comment] = STATE(393), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2287), - [anon_sym_DOT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2287), - [anon_sym_PIPE_PIPE] = ACTIONS(2287), - [anon_sym_GT_GT] = ACTIONS(2287), - [anon_sym_GT_GT_GT] = ACTIONS(2287), - [anon_sym_LT_LT] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2287), - [anon_sym_STAR_STAR] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), - [anon_sym_GT_EQ] = ACTIONS(2287), - [anon_sym_QMARK_QMARK] = ACTIONS(2287), - [anon_sym_instanceof] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2500), - [sym__ternary_qmark] = ACTIONS(2448), + [391] = { + [sym_comment] = STATE(391), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2530), + [sym__ternary_qmark] = ACTIONS(2346), [sym_html_comment] = ACTIONS(5), }, - [394] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3055), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(394), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_typeof] = ACTIONS(151), + [392] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3449), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(392), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(2211), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_GT] = ACTIONS(2211), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [anon_sym_extends] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [anon_sym_extends] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3265), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(395), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [393] = { + [sym_comment] = STATE(393), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2532), + [sym__ternary_qmark] = ACTIONS(2354), + [sym_html_comment] = ACTIONS(5), + }, + [394] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3089), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(394), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2211), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -90937,21 +90484,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2211), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(2209), + [anon_sym_GT] = ACTIONS(2211), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -90967,7 +90514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -90990,200 +90537,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_on] = ACTIONS(1675), [anon_sym_required] = ACTIONS(1675), [anon_sym_component] = ACTIONS(1675), - [anon_sym_extends] = ACTIONS(2209), + [anon_sym_extends] = ACTIONS(2211), + [sym_html_comment] = ACTIONS(5), + }, + [395] = { + [sym_comment] = STATE(395), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_DOT] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2398), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_STAR_STAR] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2398), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_QMARK_QMARK] = ACTIONS(2398), + [anon_sym_instanceof] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2398), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2534), + [sym__ternary_qmark] = ACTIONS(2402), [sym_html_comment] = ACTIONS(5), }, [396] = { [sym_comment] = STATE(396), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_as] = ACTIONS(2452), - [anon_sym_namespace] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_COMMA] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(2450), - [anon_sym_import] = ACTIONS(2450), - [anon_sym_from] = 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(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(2450), - [anon_sym_in] = ACTIONS(2452), - [anon_sym_of] = 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(2450), - [anon_sym_case] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LTtemplate_GT] = ACTIONS(2450), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_DOT] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), - [anon_sym_class] = ACTIONS(2450), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_function] = ACTIONS(2450), - [anon_sym_QMARK_DOT] = ACTIONS(2452), - [anon_sym_new] = ACTIONS(2450), - [anon_sym_using] = ACTIONS(2450), - [anon_sym_AMP_AMP] = ACTIONS(2452), - [anon_sym_PIPE_PIPE] = ACTIONS(2452), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_GT_GT_GT] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_CARET] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2452), - [anon_sym_STAR_STAR] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_LT_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2452), - [anon_sym_GT_EQ] = ACTIONS(2452), - [anon_sym_QMARK_QMARK] = ACTIONS(2452), - [anon_sym_instanceof] = ACTIONS(2452), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_void] = ACTIONS(2450), - [anon_sym_delete] = ACTIONS(2450), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_case] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_LT_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2412), + [anon_sym_GT_EQ] = ACTIONS(2412), + [anon_sym_QMARK_QMARK] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_number] = ACTIONS(2450), - [sym_private_property_identifier] = ACTIONS(2450), - [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(2450), - [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_property] = ACTIONS(2450), - [anon_sym_signal] = ACTIONS(2450), - [anon_sym_on] = ACTIONS(2450), - [anon_sym_required] = ACTIONS(2450), - [anon_sym_component] = ACTIONS(2450), - [anon_sym_abstract] = ACTIONS(2450), - [anon_sym_satisfies] = ACTIONS(2452), - [anon_sym_interface] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [sym__automatic_semicolon] = ACTIONS(2502), - [sym__ternary_qmark] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2412), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2536), + [sym__ternary_qmark] = ACTIONS(2416), [sym_html_comment] = ACTIONS(5), }, [397] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3175), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_spread_element] = STATE(6741), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3152), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_spread_element] = STATE(6947), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(397), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6742), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2504), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2538), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2506), + [anon_sym_RPAREN] = ACTIONS(2538), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_RBRACK] = ACTIONS(2538), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), @@ -91202,614 +90866,614 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [398] = { [sym_comment] = STATE(398), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2468), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_in] = ACTIONS(2468), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_DQUOTE] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_QMARK_DOT] = ACTIONS(2468), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2468), - [anon_sym_PIPE_PIPE] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_GT_GT_GT] = ACTIONS(2468), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_STAR_STAR] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_LT_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2468), - [anon_sym_QMARK_QMARK] = ACTIONS(2468), - [anon_sym_instanceof] = ACTIONS(2468), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2420), + [anon_sym_LT_LT] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_QMARK_QMARK] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2466), - [sym_number] = ACTIONS(2466), - [sym_private_property_identifier] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(2468), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [sym__automatic_semicolon] = ACTIONS(2470), - [sym__ternary_qmark] = ACTIONS(2470), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2540), + [sym__ternary_qmark] = ACTIONS(2424), [sym_html_comment] = ACTIONS(5), }, [399] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3174), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_spread_element] = STATE(6884), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3550), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(399), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6883), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2504), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2510), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2211), [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2211), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [anon_sym_extends] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, [400] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3615), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3018), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_spread_element] = STATE(7012), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(400), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_typeof] = ACTIONS(1819), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(7013), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_RPAREN] = ACTIONS(2542), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(2209), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), - [anon_sym_extends] = ACTIONS(2209), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [401] = { [sym_comment] = STATE(401), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_EQ] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2289), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_PIPE_PIPE] = ACTIONS(2289), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_GT_GT_GT] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2289), - [anon_sym_STAR_STAR] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2289), - [anon_sym_GT_EQ] = ACTIONS(2289), - [anon_sym_QMARK_QMARK] = ACTIONS(2289), - [anon_sym_instanceof] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2512), - [sym__ternary_qmark] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2296), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2296), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_instanceof] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2544), + [sym__ternary_qmark] = ACTIONS(2456), [sym_html_comment] = ACTIONS(5), }, [402] = { [sym_comment] = STATE(402), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_as] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_case] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_GT] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_QMARK_DOT] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2442), - [anon_sym_LT_LT] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), - [anon_sym_GT_EQ] = ACTIONS(2442), - [anon_sym_QMARK_QMARK] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_private_property_identifier] = ACTIONS(2442), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_satisfies] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2444), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_as] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_typeof] = ACTIONS(2386), + [anon_sym_import] = ACTIONS(2386), + [anon_sym_from] = ACTIONS(2386), + [anon_sym_with] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_switch] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2386), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_of] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_do] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_debugger] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_throw] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_case] = ACTIONS(2386), + [anon_sym_yield] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LTtemplate_GT] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_class] = ACTIONS(2386), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_function] = ACTIONS(2386), + [anon_sym_QMARK_DOT] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2386), + [anon_sym_using] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2388), + [anon_sym_PIPE_PIPE] = ACTIONS(2388), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2388), + [anon_sym_LT_LT] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2388), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2388), + [anon_sym_GT_EQ] = ACTIONS(2388), + [anon_sym_QMARK_QMARK] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2386), + [anon_sym_delete] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_private_property_identifier] = ACTIONS(2386), + [sym_this] = ACTIONS(2386), + [sym_super] = ACTIONS(2386), + [sym_true] = ACTIONS(2386), + [sym_false] = ACTIONS(2386), + [sym_null] = ACTIONS(2386), + [sym_undefined] = ACTIONS(2386), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_readonly] = ACTIONS(2386), + [anon_sym_get] = ACTIONS(2386), + [anon_sym_set] = ACTIONS(2386), + [anon_sym_declare] = ACTIONS(2386), + [anon_sym_public] = ACTIONS(2386), + [anon_sym_private] = ACTIONS(2386), + [anon_sym_protected] = ACTIONS(2386), + [anon_sym_override] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_any] = ACTIONS(2386), + [anon_sym_number] = ACTIONS(2386), + [anon_sym_boolean] = ACTIONS(2386), + [anon_sym_string] = ACTIONS(2386), + [anon_sym_symbol] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(2386), + [anon_sym_property] = ACTIONS(2386), + [anon_sym_signal] = ACTIONS(2386), + [anon_sym_on] = ACTIONS(2386), + [anon_sym_required] = ACTIONS(2386), + [anon_sym_component] = ACTIONS(2386), + [anon_sym_abstract] = ACTIONS(2386), + [anon_sym_satisfies] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [sym__automatic_semicolon] = ACTIONS(2546), + [sym__ternary_qmark] = ACTIONS(2392), [sym_html_comment] = ACTIONS(5), }, [403] = { @@ -91925,3059 +91589,723 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2428), [anon_sym_interface] = ACTIONS(2426), [anon_sym_enum] = ACTIONS(2426), - [sym__automatic_semicolon] = ACTIONS(2514), + [sym__automatic_semicolon] = ACTIONS(2548), [sym__ternary_qmark] = ACTIONS(2432), [sym_html_comment] = ACTIONS(5), }, [404] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3349), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3120), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_spread_element] = STATE(7110), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(404), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_typeof] = ACTIONS(1727), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(7107), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2550), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [405] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3299), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(405), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(2211), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(2209), + [anon_sym_GT] = ACTIONS(2211), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [anon_sym_extends] = ACTIONS(2209), - [sym_html_comment] = ACTIONS(5), - }, - [405] = { - [sym_comment] = STATE(405), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_default] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_COMMA] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_typeof] = ACTIONS(2434), - [anon_sym_import] = ACTIONS(2434), - [anon_sym_from] = ACTIONS(2434), - [anon_sym_with] = ACTIONS(2434), - [anon_sym_var] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_switch] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_await] = ACTIONS(2434), - [anon_sym_in] = ACTIONS(2434), - [anon_sym_of] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_debugger] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_throw] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_case] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_LTtemplate_GT] = ACTIONS(2434), - [anon_sym_GT] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_class] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_QMARK_DOT] = ACTIONS(2434), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_using] = ACTIONS(2434), - [anon_sym_AMP_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2434), - [anon_sym_GT_GT] = ACTIONS(2434), - [anon_sym_GT_GT_GT] = ACTIONS(2434), - [anon_sym_LT_LT] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_PIPE] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2434), - [anon_sym_PERCENT] = ACTIONS(2434), - [anon_sym_STAR_STAR] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_LT_EQ] = ACTIONS(2434), - [anon_sym_EQ_EQ] = ACTIONS(2434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2434), - [anon_sym_BANG_EQ] = ACTIONS(2434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2434), - [anon_sym_GT_EQ] = ACTIONS(2434), - [anon_sym_QMARK_QMARK] = ACTIONS(2434), - [anon_sym_instanceof] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_void] = ACTIONS(2434), - [anon_sym_delete] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_DASH_DASH] = ACTIONS(2434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2434), - [sym_number] = ACTIONS(2434), - [sym_private_property_identifier] = ACTIONS(2434), - [sym_this] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_true] = ACTIONS(2434), - [sym_false] = ACTIONS(2434), - [sym_null] = ACTIONS(2434), - [sym_undefined] = ACTIONS(2434), - [anon_sym_AT] = ACTIONS(2434), - [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_property] = ACTIONS(2434), - [anon_sym_signal] = ACTIONS(2434), - [anon_sym_on] = ACTIONS(2434), - [anon_sym_required] = ACTIONS(2434), - [anon_sym_component] = ACTIONS(2434), - [anon_sym_abstract] = ACTIONS(2434), - [anon_sym_satisfies] = ACTIONS(2434), - [anon_sym_interface] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - [sym__automatic_semicolon] = ACTIONS(2436), - [sym__ternary_qmark] = ACTIONS(2436), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [anon_sym_extends] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, [406] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3030), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_spread_element] = STATE(6770), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(406), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4931), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_EQ] = ACTIONS(25), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_COMMA] = ACTIONS(34), - [anon_sym_RBRACE] = ACTIONS(34), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_in] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_EQ_GT] = ACTIONS(66), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_void] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6771), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2552), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [407] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3131), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_spread_element] = STATE(7124), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(407), - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_as] = ACTIONS(2396), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_typeof] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_with] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_await] = ACTIONS(2394), - [anon_sym_in] = ACTIONS(2396), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_debugger] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_throw] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_case] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LTtemplate_GT] = ACTIONS(2394), - [anon_sym_GT] = ACTIONS(2396), - [anon_sym_DOT] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_QMARK_DOT] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_using] = ACTIONS(2394), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_GT_GT_GT] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_PERCENT] = ACTIONS(2396), - [anon_sym_STAR_STAR] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2396), - [anon_sym_QMARK_QMARK] = ACTIONS(2396), - [anon_sym_instanceof] = ACTIONS(2396), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_void] = ACTIONS(2394), - [anon_sym_delete] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2394), - [sym_number] = ACTIONS(2394), - [sym_private_property_identifier] = ACTIONS(2394), - [sym_this] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_undefined] = ACTIONS(2394), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_abstract] = ACTIONS(2394), - [anon_sym_satisfies] = ACTIONS(2396), - [anon_sym_interface] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [sym__automatic_semicolon] = ACTIONS(2540), - [sym__ternary_qmark] = ACTIONS(2400), - [sym_html_comment] = ACTIONS(5), - }, - [408] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3599), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(408), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_COMMA] = ACTIONS(2209), - [anon_sym_typeof] = ACTIONS(1647), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(7126), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_RPAREN] = ACTIONS(2554), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_GT] = ACTIONS(2209), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), - [anon_sym_extends] = ACTIONS(2209), - [sym_html_comment] = ACTIONS(5), - }, - [409] = { - [sym_comment] = STATE(409), - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2354), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_as] = ACTIONS(2356), - [anon_sym_namespace] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_COMMA] = ACTIONS(2356), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_typeof] = ACTIONS(2354), - [anon_sym_import] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_with] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_await] = ACTIONS(2354), - [anon_sym_in] = ACTIONS(2356), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_debugger] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_throw] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_case] = ACTIONS(2354), - [anon_sym_yield] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LTtemplate_GT] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2356), - [anon_sym_DOT] = ACTIONS(2356), - [anon_sym_DQUOTE] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_class] = ACTIONS(2354), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_QMARK_DOT] = ACTIONS(2356), - [anon_sym_new] = ACTIONS(2354), - [anon_sym_using] = ACTIONS(2354), - [anon_sym_AMP_AMP] = ACTIONS(2356), - [anon_sym_PIPE_PIPE] = ACTIONS(2356), - [anon_sym_GT_GT] = ACTIONS(2356), - [anon_sym_GT_GT_GT] = ACTIONS(2356), - [anon_sym_LT_LT] = ACTIONS(2356), - [anon_sym_AMP] = ACTIONS(2356), - [anon_sym_CARET] = ACTIONS(2356), - [anon_sym_PIPE] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_PERCENT] = ACTIONS(2356), - [anon_sym_STAR_STAR] = ACTIONS(2356), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_LT_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), - [anon_sym_GT_EQ] = ACTIONS(2356), - [anon_sym_QMARK_QMARK] = ACTIONS(2356), - [anon_sym_instanceof] = ACTIONS(2356), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_void] = ACTIONS(2354), - [anon_sym_delete] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2354), - [sym_number] = ACTIONS(2354), - [sym_private_property_identifier] = ACTIONS(2354), - [sym_this] = ACTIONS(2354), - [sym_super] = ACTIONS(2354), - [sym_true] = ACTIONS(2354), - [sym_false] = ACTIONS(2354), - [sym_null] = ACTIONS(2354), - [sym_undefined] = ACTIONS(2354), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_object] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2354), - [anon_sym_satisfies] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2354), - [anon_sym_enum] = ACTIONS(2354), - [sym__automatic_semicolon] = ACTIONS(2542), - [sym__ternary_qmark] = ACTIONS(2360), - [sym_html_comment] = ACTIONS(5), - }, - [410] = { - [sym_comment] = STATE(410), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_as] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_COMMA] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_in] = ACTIONS(2384), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_case] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_LTtemplate_GT] = ACTIONS(2382), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_QMARK_DOT] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_GT_GT_GT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_STAR_STAR] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2384), - [anon_sym_QMARK_QMARK] = ACTIONS(2384), - [anon_sym_instanceof] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_number] = ACTIONS(2382), - [sym_private_property_identifier] = ACTIONS(2382), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_satisfies] = ACTIONS(2384), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [sym__automatic_semicolon] = ACTIONS(2544), - [sym__ternary_qmark] = ACTIONS(2388), - [sym_html_comment] = ACTIONS(5), - }, - [411] = { - [sym_comment] = STATE(411), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2480), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_typeof] = ACTIONS(2478), - [anon_sym_import] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_with] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_await] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2480), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LTtemplate_GT] = ACTIONS(2478), - [anon_sym_GT] = ACTIONS(2480), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_QMARK_DOT] = ACTIONS(2480), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2480), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_instanceof] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2478), - [sym_number] = ACTIONS(2478), - [sym_private_property_identifier] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_undefined] = ACTIONS(2478), - [anon_sym_AT] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_object] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_satisfies] = ACTIONS(2480), - [anon_sym_interface] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(2546), - [sym__ternary_qmark] = ACTIONS(2484), - [sym_html_comment] = ACTIONS(5), - }, - [412] = { - [sym_statement_block] = STATE(446), - [sym_comment] = STATE(412), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2550), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [413] = { - [sym_comment] = STATE(413), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_as] = ACTIONS(2376), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_in] = ACTIONS(2376), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_LTtemplate_GT] = ACTIONS(2374), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_DOT] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_QMARK_DOT] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_GT_GT_GT] = ACTIONS(2376), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_PERCENT] = ACTIONS(2376), - [anon_sym_STAR_STAR] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_LT_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), - [anon_sym_GT_EQ] = ACTIONS(2376), - [anon_sym_QMARK_QMARK] = ACTIONS(2376), - [anon_sym_instanceof] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_number] = ACTIONS(2374), - [sym_private_property_identifier] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_satisfies] = ACTIONS(2376), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(2552), - [sym__ternary_qmark] = ACTIONS(2380), - [sym_html_comment] = ACTIONS(5), - }, - [414] = { - [sym_statement_block] = STATE(446), - [sym_comment] = STATE(414), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_comment] = STATE(415), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_GT] = ACTIONS(2328), - [anon_sym_DOT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_QMARK_DOT] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_AMP_AMP] = ACTIONS(2328), - [anon_sym_PIPE_PIPE] = ACTIONS(2328), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2328), - [anon_sym_LT_LT] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2328), - [anon_sym_STAR_STAR] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), - [anon_sym_GT_EQ] = ACTIONS(2328), - [anon_sym_QMARK_QMARK] = ACTIONS(2328), - [anon_sym_instanceof] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_satisfies] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym__ternary_qmark] = ACTIONS(2330), - [sym_html_comment] = ACTIONS(5), - }, - [416] = { - [sym_statement_block] = STATE(446), - [sym_comment] = STATE(416), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [417] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3233), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_spread_element] = STATE(7300), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(417), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7301), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2504), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2556), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [418] = { - [sym_comment] = STATE(418), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_as] = ACTIONS(2460), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_typeof] = ACTIONS(2458), - [anon_sym_import] = ACTIONS(2458), - [anon_sym_from] = ACTIONS(2458), - [anon_sym_with] = ACTIONS(2458), - [anon_sym_var] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_switch] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_await] = ACTIONS(2458), - [anon_sym_in] = ACTIONS(2460), - [anon_sym_of] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_do] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_debugger] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_throw] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_case] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_LTtemplate_GT] = ACTIONS(2458), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_DOT] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_QMARK_DOT] = ACTIONS(2460), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_GT_GT_GT] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_SLASH] = ACTIONS(2458), - [anon_sym_PERCENT] = ACTIONS(2460), - [anon_sym_STAR_STAR] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_LT_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2460), - [anon_sym_GT_EQ] = ACTIONS(2460), - [anon_sym_QMARK_QMARK] = ACTIONS(2460), - [anon_sym_instanceof] = ACTIONS(2460), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_void] = ACTIONS(2458), - [anon_sym_delete] = ACTIONS(2458), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2458), - [sym_number] = ACTIONS(2458), - [sym_private_property_identifier] = ACTIONS(2458), - [sym_this] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_true] = ACTIONS(2458), - [sym_false] = ACTIONS(2458), - [sym_null] = ACTIONS(2458), - [sym_undefined] = ACTIONS(2458), - [anon_sym_AT] = ACTIONS(2458), - [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_property] = ACTIONS(2458), - [anon_sym_signal] = ACTIONS(2458), - [anon_sym_on] = ACTIONS(2458), - [anon_sym_required] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_abstract] = ACTIONS(2458), - [anon_sym_satisfies] = ACTIONS(2460), - [anon_sym_interface] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(2558), - [sym__ternary_qmark] = ACTIONS(2464), - [sym_html_comment] = ACTIONS(5), - }, - [419] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3203), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_spread_element] = STATE(7135), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(419), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7136), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2504), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2560), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [420] = { - [sym_comment] = STATE(420), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2336), - [sym__ternary_qmark] = ACTIONS(2336), - [sym_html_comment] = ACTIONS(5), - }, - [421] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3256), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_spread_element] = STATE(6994), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(421), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(6986), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2504), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2562), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [422] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3283), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_spread_element] = STATE(7334), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(422), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2564), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_RBRACK] = ACTIONS(2564), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [423] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3153), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_spread_element] = STATE(7027), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(423), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7028), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2504), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2566), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [424] = { - [sym_comment] = STATE(424), - [sym_identifier] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2342), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_as] = ACTIONS(2344), - [anon_sym_namespace] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_typeof] = ACTIONS(2342), - [anon_sym_import] = ACTIONS(2342), - [anon_sym_from] = ACTIONS(2342), - [anon_sym_with] = ACTIONS(2342), - [anon_sym_var] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_switch] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(2342), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_debugger] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_throw] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_case] = ACTIONS(2342), - [anon_sym_yield] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LTtemplate_GT] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2344), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), - [anon_sym_class] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_QMARK_DOT] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2342), - [anon_sym_using] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2344), - [anon_sym_PIPE_PIPE] = ACTIONS(2344), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2344), - [anon_sym_LT_LT] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2344), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2342), - [anon_sym_PERCENT] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2344), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2344), - [anon_sym_GT_EQ] = ACTIONS(2344), - [anon_sym_QMARK_QMARK] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_void] = ACTIONS(2342), - [anon_sym_delete] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), - [sym_private_property_identifier] = ACTIONS(2342), - [sym_this] = ACTIONS(2342), - [sym_super] = ACTIONS(2342), - [sym_true] = ACTIONS(2342), - [sym_false] = ACTIONS(2342), - [sym_null] = ACTIONS(2342), - [sym_undefined] = ACTIONS(2342), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_readonly] = ACTIONS(2342), - [anon_sym_get] = ACTIONS(2342), - [anon_sym_set] = ACTIONS(2342), - [anon_sym_declare] = ACTIONS(2342), - [anon_sym_public] = ACTIONS(2342), - [anon_sym_private] = ACTIONS(2342), - [anon_sym_protected] = ACTIONS(2342), - [anon_sym_override] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_any] = ACTIONS(2342), - [anon_sym_number] = ACTIONS(2342), - [anon_sym_boolean] = ACTIONS(2342), - [anon_sym_string] = ACTIONS(2342), - [anon_sym_symbol] = ACTIONS(2342), - [anon_sym_object] = ACTIONS(2342), - [anon_sym_property] = ACTIONS(2342), - [anon_sym_signal] = ACTIONS(2342), - [anon_sym_on] = ACTIONS(2342), - [anon_sym_required] = ACTIONS(2342), - [anon_sym_component] = ACTIONS(2342), - [anon_sym_abstract] = ACTIONS(2342), - [anon_sym_satisfies] = ACTIONS(2344), - [anon_sym_interface] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(2568), - [sym__ternary_qmark] = ACTIONS(2348), - [sym_html_comment] = ACTIONS(5), - }, - [425] = { - [sym_comment] = STATE(425), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_as] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_QMARK_DOT] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_AMP_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2350), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), - [anon_sym_GT_EQ] = ACTIONS(2350), - [anon_sym_QMARK_QMARK] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_satisfies] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2352), - [sym__ternary_qmark] = ACTIONS(2352), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [426] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3257), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_spread_element] = STATE(7305), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(426), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [aux_sym_array_repeat1] = STATE(7304), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_COMMA] = ACTIONS(2504), - [anon_sym_typeof] = ACTIONS(1170), + [408] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2850), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(408), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2570), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(2211), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2508), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(2211), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), + [anon_sym_extends] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, - [427] = { - [sym_comment] = STATE(427), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_COMMA] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_typeof] = ACTIONS(2434), - [anon_sym_import] = ACTIONS(2434), - [anon_sym_from] = ACTIONS(2434), - [anon_sym_with] = ACTIONS(2434), - [anon_sym_var] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_switch] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_await] = ACTIONS(2434), - [anon_sym_in] = ACTIONS(2434), - [anon_sym_of] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_debugger] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_throw] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_LTtemplate_GT] = ACTIONS(2434), - [anon_sym_GT] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_class] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_QMARK_DOT] = ACTIONS(2434), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_using] = ACTIONS(2434), - [anon_sym_AMP_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2434), - [anon_sym_GT_GT] = ACTIONS(2434), - [anon_sym_GT_GT_GT] = ACTIONS(2434), - [anon_sym_LT_LT] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_PIPE] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2434), - [anon_sym_PERCENT] = ACTIONS(2434), - [anon_sym_STAR_STAR] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_LT_EQ] = ACTIONS(2434), - [anon_sym_EQ_EQ] = ACTIONS(2434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2434), - [anon_sym_BANG_EQ] = ACTIONS(2434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2434), - [anon_sym_GT_EQ] = ACTIONS(2434), - [anon_sym_QMARK_QMARK] = ACTIONS(2434), - [anon_sym_instanceof] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_void] = ACTIONS(2434), - [anon_sym_delete] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_DASH_DASH] = ACTIONS(2434), + [409] = { + [sym_comment] = STATE(409), + [sym_identifier] = ACTIONS(2450), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_import] = ACTIONS(2450), + [anon_sym_from] = 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(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = 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(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LTtemplate_GT] = ACTIONS(2450), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2450), + [anon_sym_function] = ACTIONS(2450), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2450), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_void] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2434), - [sym_number] = ACTIONS(2434), - [sym_private_property_identifier] = ACTIONS(2434), - [sym_this] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_true] = ACTIONS(2434), - [sym_false] = ACTIONS(2434), - [sym_null] = ACTIONS(2434), - [sym_undefined] = ACTIONS(2434), - [anon_sym_AT] = ACTIONS(2434), - [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_property] = ACTIONS(2434), - [anon_sym_signal] = ACTIONS(2434), - [anon_sym_on] = ACTIONS(2434), - [anon_sym_required] = ACTIONS(2434), - [anon_sym_component] = ACTIONS(2434), - [anon_sym_abstract] = ACTIONS(2434), - [anon_sym_satisfies] = ACTIONS(2434), - [anon_sym_interface] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - [sym__automatic_semicolon] = ACTIONS(2436), - [sym__ternary_qmark] = ACTIONS(2436), - [sym_html_comment] = ACTIONS(5), - }, - [428] = { - [sym_statement_block] = STATE(522), - [sym_comment] = STATE(428), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [429] = { - [sym_comment] = STATE(429), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2480), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_typeof] = ACTIONS(2478), - [anon_sym_import] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_with] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_await] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2480), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LTtemplate_GT] = ACTIONS(2478), - [anon_sym_GT] = ACTIONS(2480), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_QMARK_DOT] = ACTIONS(2480), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2480), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_instanceof] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2478), - [sym_number] = ACTIONS(2478), - [sym_private_property_identifier] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_undefined] = ACTIONS(2478), - [anon_sym_AT] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_object] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_satisfies] = ACTIONS(2480), - [anon_sym_interface] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(2576), - [sym__ternary_qmark] = ACTIONS(2484), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [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(2450), + [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_property] = ACTIONS(2450), + [anon_sym_signal] = ACTIONS(2450), + [anon_sym_on] = ACTIONS(2450), + [anon_sym_required] = ACTIONS(2450), + [anon_sym_component] = ACTIONS(2450), + [anon_sym_abstract] = ACTIONS(2450), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [sym__automatic_semicolon] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2452), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_comment] = STATE(430), + [410] = { + [sym_comment] = STATE(410), [sym_identifier] = ACTIONS(2474), [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2474), [anon_sym_type] = ACTIONS(2474), - [anon_sym_as] = ACTIONS(2474), + [anon_sym_as] = ACTIONS(2476), [anon_sym_namespace] = ACTIONS(2474), [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_COMMA] = ACTIONS(2474), + [anon_sym_COMMA] = ACTIONS(2476), [anon_sym_RBRACE] = ACTIONS(2474), [anon_sym_typeof] = ACTIONS(2474), [anon_sym_import] = ACTIONS(2474), @@ -94987,13 +92315,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2474), [anon_sym_const] = ACTIONS(2474), [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), [anon_sym_if] = ACTIONS(2474), [anon_sym_switch] = ACTIONS(2474), [anon_sym_for] = ACTIONS(2474), [anon_sym_LPAREN] = ACTIONS(2474), [anon_sym_await] = ACTIONS(2474), - [anon_sym_in] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2476), [anon_sym_of] = ACTIONS(2474), [anon_sym_while] = ACTIONS(2474), [anon_sym_do] = ACTIONS(2474), @@ -95004,41 +92331,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2474), [anon_sym_throw] = ACTIONS(2474), [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2474), [anon_sym_yield] = ACTIONS(2474), [anon_sym_LBRACK] = ACTIONS(2474), [anon_sym_LTtemplate_GT] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2476), [anon_sym_DQUOTE] = ACTIONS(2474), [anon_sym_SQUOTE] = ACTIONS(2474), [anon_sym_class] = ACTIONS(2474), [anon_sym_async] = ACTIONS(2474), [anon_sym_function] = ACTIONS(2474), - [anon_sym_QMARK_DOT] = ACTIONS(2474), + [anon_sym_QMARK_DOT] = ACTIONS(2476), [anon_sym_new] = ACTIONS(2474), [anon_sym_using] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_GT_GT_GT] = ACTIONS(2474), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2476), + [anon_sym_PIPE_PIPE] = ACTIONS(2476), + [anon_sym_GT_GT] = ACTIONS(2476), + [anon_sym_GT_GT_GT] = ACTIONS(2476), + [anon_sym_LT_LT] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), [anon_sym_PLUS] = ACTIONS(2474), [anon_sym_DASH] = ACTIONS(2474), [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_PERCENT] = ACTIONS(2474), - [anon_sym_STAR_STAR] = ACTIONS(2474), + [anon_sym_PERCENT] = ACTIONS(2476), + [anon_sym_STAR_STAR] = ACTIONS(2476), [anon_sym_LT] = ACTIONS(2474), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2474), - [anon_sym_QMARK_QMARK] = ACTIONS(2474), - [anon_sym_instanceof] = ACTIONS(2474), + [anon_sym_LT_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2476), + [anon_sym_GT_EQ] = ACTIONS(2476), + [anon_sym_QMARK_QMARK] = ACTIONS(2476), + [anon_sym_instanceof] = ACTIONS(2476), [anon_sym_TILDE] = ACTIONS(2474), [anon_sym_void] = ACTIONS(2474), [anon_sym_delete] = ACTIONS(2474), @@ -95077,178 +92405,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2474), [anon_sym_component] = ACTIONS(2474), [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(2474), + [anon_sym_satisfies] = ACTIONS(2476), [anon_sym_interface] = ACTIONS(2474), [anon_sym_enum] = ACTIONS(2474), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(2476), + [sym__automatic_semicolon] = ACTIONS(2556), + [sym__ternary_qmark] = ACTIONS(2480), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3347), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(7619), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2364), - [sym_subscript_expression] = STATE(2364), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5405), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(431), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6661), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2364), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2157), - [anon_sym_export] = ACTIONS(1160), - [anon_sym_type] = ACTIONS(1160), - [anon_sym_namespace] = ACTIONS(1162), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1160), - [anon_sym_let] = ACTIONS(1160), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1160), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1180), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1160), - [anon_sym_readonly] = ACTIONS(1160), - [anon_sym_get] = ACTIONS(1160), - [anon_sym_set] = ACTIONS(1160), - [anon_sym_declare] = ACTIONS(1160), - [anon_sym_public] = ACTIONS(1160), - [anon_sym_private] = ACTIONS(1160), - [anon_sym_protected] = ACTIONS(1160), - [anon_sym_override] = ACTIONS(1160), - [anon_sym_module] = ACTIONS(1160), - [anon_sym_any] = ACTIONS(1160), - [anon_sym_number] = ACTIONS(1160), - [anon_sym_boolean] = ACTIONS(1160), - [anon_sym_string] = ACTIONS(1160), - [anon_sym_symbol] = ACTIONS(1160), - [anon_sym_object] = ACTIONS(1160), - [anon_sym_property] = ACTIONS(1160), - [anon_sym_signal] = ACTIONS(1160), - [anon_sym_on] = ACTIONS(1160), - [anon_sym_required] = ACTIONS(1160), - [anon_sym_component] = ACTIONS(1160), + [411] = { + [sym_comment] = STATE(411), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_as] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_from] = ACTIONS(2462), + [anon_sym_with] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_debugger] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2462), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_QMARK_DOT] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_instanceof] = ACTIONS(2462), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_void] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_undefined] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_override] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_object] = ACTIONS(2462), + [anon_sym_property] = ACTIONS(2462), + [anon_sym_signal] = ACTIONS(2462), + [anon_sym_on] = ACTIONS(2462), + [anon_sym_required] = ACTIONS(2462), + [anon_sym_component] = ACTIONS(2462), + [anon_sym_abstract] = ACTIONS(2462), + [anon_sym_satisfies] = ACTIONS(2462), + [anon_sym_interface] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [sym__automatic_semicolon] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2464), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(432), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6117), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_override_modifier] = STATE(495), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [412] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(412), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(2010), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5572), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_accessibility_modifier] = STATE(482), + [sym_override_modifier] = STATE(503), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(1894), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -95267,7 +92597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), + [anon_sym_class] = ACTIONS(2558), [anon_sym_async] = ACTIONS(62), [anon_sym_function] = ACTIONS(64), [anon_sym_new] = ACTIONS(1275), @@ -95280,28 +92610,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1287), + [sym_this] = ACTIONS(2560), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1285), - [anon_sym_AT] = ACTIONS(106), + [anon_sym_AT] = ACTIONS(1359), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2578), + [anon_sym_readonly] = ACTIONS(2562), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(21), - [anon_sym_private] = ACTIONS(21), - [anon_sym_protected] = ACTIONS(21), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_public] = ACTIONS(1377), + [anon_sym_private] = ACTIONS(1377), + [anon_sym_protected] = ACTIONS(1377), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -95316,506 +92646,874 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_comment] = STATE(433), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_GT] = ACTIONS(2328), - [anon_sym_DOT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_QMARK_DOT] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_AMP_AMP] = ACTIONS(2328), - [anon_sym_PIPE_PIPE] = ACTIONS(2328), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2328), - [anon_sym_LT_LT] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2328), - [anon_sym_STAR_STAR] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), - [anon_sym_GT_EQ] = ACTIONS(2328), - [anon_sym_QMARK_QMARK] = ACTIONS(2328), - [anon_sym_instanceof] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_satisfies] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym__ternary_qmark] = ACTIONS(2330), - [sym_html_comment] = ACTIONS(5), - }, - [434] = { - [sym_import] = STATE(5115), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(434), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4575), - [sym__type_query_subscript_expression] = STATE(4583), - [sym__type_query_call_expression] = STATE(4803), - [sym__type_query_instantiation_expression] = STATE(4920), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2580), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [413] = { + [sym_comment] = STATE(413), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_COMMA] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_in] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_DOT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_QMARK_DOT] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_STAR_STAR] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_instanceof] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_satisfies] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2564), + [sym__ternary_qmark] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, - [435] = { - [sym_import] = STATE(5028), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(435), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2582), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), + [414] = { + [sym_comment] = STATE(414), + [sym_identifier] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_as] = ACTIONS(2466), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_import] = ACTIONS(2466), + [anon_sym_from] = ACTIONS(2466), + [anon_sym_with] = ACTIONS(2466), + [anon_sym_var] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_await] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_of] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_debugger] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_throw] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_yield] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_LTtemplate_GT] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_class] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2466), + [anon_sym_QMARK_DOT] = ACTIONS(2466), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_using] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2466), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2466), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_STAR_STAR] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_instanceof] = ACTIONS(2466), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_void] = ACTIONS(2466), + [anon_sym_delete] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2466), + [sym_number] = ACTIONS(2466), + [sym_private_property_identifier] = ACTIONS(2466), + [sym_this] = ACTIONS(2466), + [sym_super] = ACTIONS(2466), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [sym_null] = ACTIONS(2466), + [sym_undefined] = ACTIONS(2466), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), + [anon_sym_property] = ACTIONS(2466), + [anon_sym_signal] = ACTIONS(2466), + [anon_sym_on] = ACTIONS(2466), + [anon_sym_required] = ACTIONS(2466), + [anon_sym_component] = ACTIONS(2466), + [anon_sym_abstract] = ACTIONS(2466), + [anon_sym_satisfies] = ACTIONS(2466), + [anon_sym_interface] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [sym__automatic_semicolon] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(2468), + [sym_html_comment] = ACTIONS(5), + }, + [415] = { + [sym_comment] = STATE(415), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2470), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_instanceof] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2472), + [sym__ternary_qmark] = ACTIONS(2472), + [sym_html_comment] = ACTIONS(5), + }, + [416] = { + [sym_comment] = STATE(416), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_as] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_from] = ACTIONS(2482), + [anon_sym_with] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_of] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_throw] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_QMARK_DOT] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(2482), + [anon_sym_PIPE_PIPE] = ACTIONS(2482), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2482), + [anon_sym_LT_LT] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2482), + [anon_sym_GT_EQ] = ACTIONS(2482), + [anon_sym_QMARK_QMARK] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_property] = ACTIONS(2482), + [anon_sym_signal] = ACTIONS(2482), + [anon_sym_on] = ACTIONS(2482), + [anon_sym_required] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_satisfies] = ACTIONS(2482), + [anon_sym_interface] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [417] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3056), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_spread_element] = STATE(6892), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(417), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(6829), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2566), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [436] = { - [sym_comment] = STATE(436), - [sym_identifier] = ACTIONS(2426), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_as] = ACTIONS(2428), - [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_typeof] = ACTIONS(2426), - [anon_sym_import] = ACTIONS(2426), - [anon_sym_from] = ACTIONS(2426), - [anon_sym_with] = ACTIONS(2426), - [anon_sym_var] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2426), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_switch] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_await] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(2428), - [anon_sym_of] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_debugger] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_throw] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2426), - [anon_sym_LTtemplate_GT] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2428), - [anon_sym_DOT] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2426), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2426), - [anon_sym_QMARK_DOT] = ACTIONS(2428), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_using] = ACTIONS(2426), - [anon_sym_AMP_AMP] = ACTIONS(2428), - [anon_sym_PIPE_PIPE] = ACTIONS(2428), - [anon_sym_GT_GT] = ACTIONS(2428), - [anon_sym_GT_GT_GT] = ACTIONS(2428), - [anon_sym_LT_LT] = ACTIONS(2428), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_CARET] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2428), - [anon_sym_STAR_STAR] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_LT_EQ] = ACTIONS(2428), - [anon_sym_EQ_EQ] = ACTIONS(2428), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2428), - [anon_sym_BANG_EQ] = ACTIONS(2428), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2428), - [anon_sym_GT_EQ] = ACTIONS(2428), - [anon_sym_QMARK_QMARK] = ACTIONS(2428), - [anon_sym_instanceof] = ACTIONS(2428), - [anon_sym_TILDE] = ACTIONS(2426), - [anon_sym_void] = ACTIONS(2426), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_PLUS_PLUS] = ACTIONS(2426), - [anon_sym_DASH_DASH] = ACTIONS(2426), + [418] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2976), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(418), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2211), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2426), - [sym_number] = ACTIONS(2426), - [sym_private_property_identifier] = ACTIONS(2426), - [sym_this] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_true] = ACTIONS(2426), - [sym_false] = ACTIONS(2426), - [sym_null] = ACTIONS(2426), - [sym_undefined] = ACTIONS(2426), - [anon_sym_AT] = ACTIONS(2426), - [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_property] = ACTIONS(2426), - [anon_sym_signal] = ACTIONS(2426), - [anon_sym_on] = ACTIONS(2426), - [anon_sym_required] = ACTIONS(2426), - [anon_sym_component] = ACTIONS(2426), - [anon_sym_abstract] = ACTIONS(2426), - [anon_sym_satisfies] = ACTIONS(2428), - [anon_sym_interface] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), - [sym__automatic_semicolon] = ACTIONS(2584), - [sym__ternary_qmark] = ACTIONS(2432), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [anon_sym_extends] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_comment] = STATE(437), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_EQ] = ACTIONS(25), + [419] = { + [sym_comment] = STATE(419), + [sym_identifier] = ACTIONS(2366), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_default] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2366), + [anon_sym_import] = ACTIONS(2366), + [anon_sym_from] = ACTIONS(2366), + [anon_sym_with] = ACTIONS(2366), + [anon_sym_var] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_switch] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2366), + [anon_sym_in] = ACTIONS(2366), + [anon_sym_of] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_debugger] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_throw] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_case] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LTtemplate_GT] = ACTIONS(2366), + [anon_sym_GT] = ACTIONS(2366), + [anon_sym_DOT] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_class] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_function] = ACTIONS(2366), + [anon_sym_QMARK_DOT] = ACTIONS(2366), + [anon_sym_new] = ACTIONS(2366), + [anon_sym_using] = ACTIONS(2366), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE_PIPE] = ACTIONS(2366), + [anon_sym_GT_GT] = ACTIONS(2366), + [anon_sym_GT_GT_GT] = ACTIONS(2366), + [anon_sym_LT_LT] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2366), + [anon_sym_PERCENT] = ACTIONS(2366), + [anon_sym_STAR_STAR] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_LT_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2366), + [anon_sym_GT_EQ] = ACTIONS(2366), + [anon_sym_QMARK_QMARK] = ACTIONS(2366), + [anon_sym_instanceof] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_private_property_identifier] = ACTIONS(2366), + [sym_this] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_true] = ACTIONS(2366), + [sym_false] = ACTIONS(2366), + [sym_null] = ACTIONS(2366), + [sym_undefined] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_readonly] = ACTIONS(2366), + [anon_sym_get] = ACTIONS(2366), + [anon_sym_set] = ACTIONS(2366), + [anon_sym_declare] = ACTIONS(2366), + [anon_sym_public] = ACTIONS(2366), + [anon_sym_private] = ACTIONS(2366), + [anon_sym_protected] = ACTIONS(2366), + [anon_sym_override] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_any] = ACTIONS(2366), + [anon_sym_number] = ACTIONS(2366), + [anon_sym_boolean] = ACTIONS(2366), + [anon_sym_string] = ACTIONS(2366), + [anon_sym_symbol] = ACTIONS(2366), + [anon_sym_object] = ACTIONS(2366), + [anon_sym_property] = ACTIONS(2366), + [anon_sym_signal] = ACTIONS(2366), + [anon_sym_on] = ACTIONS(2366), + [anon_sym_required] = ACTIONS(2366), + [anon_sym_component] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_satisfies] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), + [sym__automatic_semicolon] = ACTIONS(2368), + [sym__ternary_qmark] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [420] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(420), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_COMMA] = ACTIONS(34), - [anon_sym_typeof] = ACTIONS(2586), - [anon_sym_import] = ACTIONS(2586), - [anon_sym_from] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(34), - [anon_sym_await] = ACTIONS(2586), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2586), - [anon_sym_COLON] = ACTIONS(34), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2586), - [anon_sym_LTtemplate_GT] = ACTIONS(2586), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2265), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_class] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(2586), - [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2586), - [anon_sym_using] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2271), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -95831,21 +93529,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(72), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2586), [anon_sym_AMP_AMP] = ACTIONS(28), [anon_sym_PIPE_PIPE] = ACTIONS(28), [anon_sym_GT_GT] = ACTIONS(28), [anon_sym_GT_GT_GT] = ACTIONS(28), [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2586), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2275), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -95854,84 +93551,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(28), [anon_sym_QMARK_QMARK] = ACTIONS(28), [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(2586), - [anon_sym_void] = ACTIONS(2586), - [anon_sym_delete] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2586), - [anon_sym_DASH_DASH] = ACTIONS(2586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2586), - [sym_number] = ACTIONS(2586), - [sym_private_property_identifier] = ACTIONS(2586), - [sym_this] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_AT] = ACTIONS(2586), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_QMARK] = ACTIONS(131), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), - [anon_sym_property] = ACTIONS(2586), - [anon_sym_signal] = ACTIONS(2586), - [anon_sym_on] = ACTIONS(2586), - [anon_sym_required] = ACTIONS(2586), - [anon_sym_component] = ACTIONS(2586), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_comment] = STATE(438), - [sym_identifier] = ACTIONS(2588), - [anon_sym_export] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_EQ] = ACTIONS(25), + [421] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(421), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1475), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_COMMA] = ACTIONS(34), - [anon_sym_typeof] = ACTIONS(2588), - [anon_sym_import] = ACTIONS(2588), - [anon_sym_from] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), - [anon_sym_BANG] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_RPAREN] = ACTIONS(34), - [anon_sym_await] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2588), - [anon_sym_COLON] = ACTIONS(34), - [anon_sym_yield] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_LTtemplate_GT] = ACTIONS(2588), + [anon_sym_LBRACK] = ACTIONS(2265), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_function] = ACTIONS(2588), - [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(1455), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2271), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -95947,21 +93646,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(72), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), [anon_sym_AMP_AMP] = ACTIONS(28), [anon_sym_PIPE_PIPE] = ACTIONS(28), [anon_sym_GT_GT] = ACTIONS(28), [anon_sym_GT_GT_GT] = ACTIONS(28), [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_SLASH] = ACTIONS(2588), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2588), + [anon_sym_LT] = ACTIONS(2275), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -95970,58 +93668,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(28), [anon_sym_QMARK_QMARK] = ACTIONS(28), [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(2588), - [anon_sym_void] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_PLUS_PLUS] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2588), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2588), - [sym_number] = ACTIONS(2588), - [sym_private_property_identifier] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - [sym_super] = ACTIONS(2588), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [sym_null] = ACTIONS(2588), - [sym_undefined] = ACTIONS(2588), - [anon_sym_AT] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_get] = ACTIONS(2588), - [anon_sym_set] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(131), - [anon_sym_declare] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_protected] = ACTIONS(2588), - [anon_sym_override] = ACTIONS(2588), - [anon_sym_module] = ACTIONS(2588), - [anon_sym_any] = ACTIONS(2588), - [anon_sym_number] = ACTIONS(2588), - [anon_sym_boolean] = ACTIONS(2588), - [anon_sym_string] = ACTIONS(2588), - [anon_sym_symbol] = ACTIONS(2588), - [anon_sym_object] = ACTIONS(2588), - [anon_sym_property] = ACTIONS(2588), - [anon_sym_signal] = ACTIONS(2588), - [anon_sym_on] = ACTIONS(2588), - [anon_sym_required] = ACTIONS(2588), - [anon_sym_component] = ACTIONS(2588), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_comment] = STATE(439), + [422] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(422), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_COMMA] = ACTIONS(2211), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(2211), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_GT] = ACTIONS(2211), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_AMP] = ACTIONS(2211), + [anon_sym_PIPE] = ACTIONS(2211), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [anon_sym_extends] = ACTIONS(2211), + [sym_html_comment] = ACTIONS(5), + }, + [423] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3003), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_spread_element] = STATE(7043), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(423), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [aux_sym_array_repeat1] = STATE(7044), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_COMMA] = ACTIONS(2498), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2568), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2502), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [424] = { + [sym_comment] = STATE(424), [sym_identifier] = ACTIONS(2442), [anon_sym_export] = ACTIONS(2442), - [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2442), [anon_sym_type] = ACTIONS(2442), - [anon_sym_as] = ACTIONS(2442), + [anon_sym_as] = ACTIONS(2444), [anon_sym_namespace] = ACTIONS(2442), [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2442), + [anon_sym_COMMA] = ACTIONS(2444), [anon_sym_RBRACE] = ACTIONS(2442), [anon_sym_typeof] = ACTIONS(2442), [anon_sym_import] = ACTIONS(2442), @@ -96031,13 +93953,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2442), [anon_sym_const] = ACTIONS(2442), [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2442), [anon_sym_if] = ACTIONS(2442), [anon_sym_switch] = ACTIONS(2442), [anon_sym_for] = ACTIONS(2442), [anon_sym_LPAREN] = ACTIONS(2442), [anon_sym_await] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2444), [anon_sym_of] = ACTIONS(2442), [anon_sym_while] = ACTIONS(2442), [anon_sym_do] = ACTIONS(2442), @@ -96048,41 +93969,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2442), [anon_sym_throw] = ACTIONS(2442), [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_case] = ACTIONS(2442), [anon_sym_yield] = ACTIONS(2442), [anon_sym_LBRACK] = ACTIONS(2442), [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_GT] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_DOT] = ACTIONS(2444), [anon_sym_DQUOTE] = ACTIONS(2442), [anon_sym_SQUOTE] = ACTIONS(2442), [anon_sym_class] = ACTIONS(2442), [anon_sym_async] = ACTIONS(2442), [anon_sym_function] = ACTIONS(2442), - [anon_sym_QMARK_DOT] = ACTIONS(2442), + [anon_sym_QMARK_DOT] = ACTIONS(2444), [anon_sym_new] = ACTIONS(2442), [anon_sym_using] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2442), - [anon_sym_LT_LT] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2444), + [anon_sym_PIPE_PIPE] = ACTIONS(2444), + [anon_sym_GT_GT] = ACTIONS(2444), + [anon_sym_GT_GT_GT] = ACTIONS(2444), + [anon_sym_LT_LT] = ACTIONS(2444), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), [anon_sym_PLUS] = ACTIONS(2442), [anon_sym_DASH] = ACTIONS(2442), [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2442), + [anon_sym_PERCENT] = ACTIONS(2444), + [anon_sym_STAR_STAR] = ACTIONS(2444), [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), - [anon_sym_GT_EQ] = ACTIONS(2442), - [anon_sym_QMARK_QMARK] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), + [anon_sym_LT_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), + [anon_sym_GT_EQ] = ACTIONS(2444), + [anon_sym_QMARK_QMARK] = ACTIONS(2444), + [anon_sym_instanceof] = ACTIONS(2444), [anon_sym_TILDE] = ACTIONS(2442), [anon_sym_void] = ACTIONS(2442), [anon_sym_delete] = ACTIONS(2442), @@ -96121,278 +94043,628 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2442), [anon_sym_component] = ACTIONS(2442), [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_satisfies] = ACTIONS(2442), + [anon_sym_satisfies] = ACTIONS(2444), [anon_sym_interface] = ACTIONS(2442), [anon_sym_enum] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2444), + [sym__automatic_semicolon] = ACTIONS(2570), + [sym__ternary_qmark] = ACTIONS(2448), [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_import] = STATE(5080), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3775), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(440), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2590), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [425] = { + [sym_comment] = STATE(425), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_default] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_as] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_COMMA] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_typeof] = ACTIONS(2434), + [anon_sym_import] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_with] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2434), + [anon_sym_in] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_debugger] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_throw] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_case] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LTtemplate_GT] = ACTIONS(2434), + [anon_sym_GT] = ACTIONS(2434), + [anon_sym_DOT] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_class] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_QMARK_DOT] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_PIPE_PIPE] = ACTIONS(2434), + [anon_sym_GT_GT] = ACTIONS(2434), + [anon_sym_GT_GT_GT] = ACTIONS(2434), + [anon_sym_LT_LT] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_PERCENT] = ACTIONS(2434), + [anon_sym_STAR_STAR] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_LT_EQ] = ACTIONS(2434), + [anon_sym_EQ_EQ] = ACTIONS(2434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2434), + [anon_sym_BANG_EQ] = ACTIONS(2434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2434), + [anon_sym_GT_EQ] = ACTIONS(2434), + [anon_sym_QMARK_QMARK] = ACTIONS(2434), + [anon_sym_instanceof] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2434), + [anon_sym_delete] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_private_property_identifier] = ACTIONS(2434), + [sym_this] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_true] = ACTIONS(2434), + [sym_false] = ACTIONS(2434), + [sym_null] = ACTIONS(2434), + [sym_undefined] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_abstract] = ACTIONS(2434), + [anon_sym_satisfies] = ACTIONS(2434), + [anon_sym_interface] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [sym__automatic_semicolon] = ACTIONS(2436), + [sym__ternary_qmark] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), + }, + [426] = { + [sym_comment] = STATE(426), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_default] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_as] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_COMMA] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_typeof] = ACTIONS(2438), + [anon_sym_import] = ACTIONS(2438), + [anon_sym_from] = ACTIONS(2438), + [anon_sym_with] = ACTIONS(2438), + [anon_sym_var] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2438), + [anon_sym_in] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_debugger] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_case] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LTtemplate_GT] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_class] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2438), + [anon_sym_QMARK_DOT] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2438), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_STAR_STAR] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_instanceof] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2438), + [anon_sym_delete] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_private_property_identifier] = ACTIONS(2438), + [sym_this] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_true] = ACTIONS(2438), + [sym_false] = ACTIONS(2438), + [sym_null] = ACTIONS(2438), + [sym_undefined] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2438), + [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_property] = ACTIONS(2438), + [anon_sym_signal] = ACTIONS(2438), + [anon_sym_on] = ACTIONS(2438), + [anon_sym_required] = ACTIONS(2438), + [anon_sym_component] = ACTIONS(2438), + [anon_sym_abstract] = ACTIONS(2438), + [anon_sym_satisfies] = ACTIONS(2438), + [anon_sym_interface] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), + [sym__automatic_semicolon] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2440), + [sym_html_comment] = ACTIONS(5), + }, + [427] = { + [sym_comment] = STATE(427), + [sym_identifier] = ACTIONS(2366), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2366), + [anon_sym_import] = ACTIONS(2366), + [anon_sym_from] = ACTIONS(2366), + [anon_sym_with] = ACTIONS(2366), + [anon_sym_var] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_switch] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2366), + [anon_sym_in] = ACTIONS(2366), + [anon_sym_of] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_debugger] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_throw] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LTtemplate_GT] = ACTIONS(2366), + [anon_sym_GT] = ACTIONS(2366), + [anon_sym_DOT] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_class] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_function] = ACTIONS(2366), + [anon_sym_QMARK_DOT] = ACTIONS(2366), + [anon_sym_new] = ACTIONS(2366), + [anon_sym_using] = ACTIONS(2366), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE_PIPE] = ACTIONS(2366), + [anon_sym_GT_GT] = ACTIONS(2366), + [anon_sym_GT_GT_GT] = ACTIONS(2366), + [anon_sym_LT_LT] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2366), + [anon_sym_PERCENT] = ACTIONS(2366), + [anon_sym_STAR_STAR] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_LT_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2366), + [anon_sym_GT_EQ] = ACTIONS(2366), + [anon_sym_QMARK_QMARK] = ACTIONS(2366), + [anon_sym_instanceof] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_private_property_identifier] = ACTIONS(2366), + [sym_this] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_true] = ACTIONS(2366), + [sym_false] = ACTIONS(2366), + [sym_null] = ACTIONS(2366), + [sym_undefined] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_readonly] = ACTIONS(2366), + [anon_sym_get] = ACTIONS(2366), + [anon_sym_set] = ACTIONS(2366), + [anon_sym_declare] = ACTIONS(2366), + [anon_sym_public] = ACTIONS(2366), + [anon_sym_private] = ACTIONS(2366), + [anon_sym_protected] = ACTIONS(2366), + [anon_sym_override] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_any] = ACTIONS(2366), + [anon_sym_number] = ACTIONS(2366), + [anon_sym_boolean] = ACTIONS(2366), + [anon_sym_string] = ACTIONS(2366), + [anon_sym_symbol] = ACTIONS(2366), + [anon_sym_object] = ACTIONS(2366), + [anon_sym_property] = ACTIONS(2366), + [anon_sym_signal] = ACTIONS(2366), + [anon_sym_on] = ACTIONS(2366), + [anon_sym_required] = ACTIONS(2366), + [anon_sym_component] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_satisfies] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), + [sym__automatic_semicolon] = ACTIONS(2368), + [sym__ternary_qmark] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [428] = { + [sym_import] = STATE(4764), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3299), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(428), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(2572), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [441] = { - [sym_import] = STATE(5080), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3599), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(441), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2592), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [429] = { + [sym_import] = STATE(4783), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(429), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4346), + [sym__type_query_subscript_expression] = STATE(4360), + [sym__type_query_call_expression] = STATE(4580), + [sym__type_query_instantiation_expression] = STATE(4688), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2574), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(442), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [430] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(430), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(1493), [anon_sym_as] = ACTIONS(28), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), @@ -96400,13 +94672,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_EQ_GT] = ACTIONS(1503), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2271), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -96476,704 +94748,936 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [443] = { - [sym_comment] = STATE(443), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_COMMA] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_typeof] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_from] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_await] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_of] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_debugger] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LTtemplate_GT] = ACTIONS(2416), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_QMARK_DOT] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_using] = ACTIONS(2416), - [anon_sym_AMP_AMP] = ACTIONS(2418), - [anon_sym_PIPE_PIPE] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_PERCENT] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_LT_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), - [anon_sym_GT_EQ] = ACTIONS(2418), - [anon_sym_QMARK_QMARK] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_void] = ACTIONS(2416), - [anon_sym_delete] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_number] = ACTIONS(2416), - [sym_private_property_identifier] = ACTIONS(2416), - [sym_this] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_true] = ACTIONS(2416), - [sym_false] = ACTIONS(2416), - [sym_null] = ACTIONS(2416), - [sym_undefined] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_property] = ACTIONS(2416), - [anon_sym_signal] = ACTIONS(2416), - [anon_sym_on] = ACTIONS(2416), - [anon_sym_required] = ACTIONS(2416), - [anon_sym_component] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_satisfies] = ACTIONS(2418), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [sym__automatic_semicolon] = ACTIONS(2594), - [sym__ternary_qmark] = ACTIONS(2422), + [431] = { + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(526), + [sym_empty_statement] = STATE(526), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), + [sym_comment] = STATE(431), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [444] = { - [sym_comment] = STATE(444), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2287), - [anon_sym_DOT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2287), - [anon_sym_PIPE_PIPE] = ACTIONS(2287), - [anon_sym_GT_GT] = ACTIONS(2287), - [anon_sym_GT_GT_GT] = ACTIONS(2287), - [anon_sym_LT_LT] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2287), - [anon_sym_STAR_STAR] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), - [anon_sym_GT_EQ] = ACTIONS(2287), - [anon_sym_QMARK_QMARK] = ACTIONS(2287), - [anon_sym_instanceof] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2596), - [sym__ternary_qmark] = ACTIONS(2448), + [432] = { + [sym_import] = STATE(4788), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(432), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2576), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [445] = { - [sym_comment] = STATE(445), - [sym_identifier] = ACTIONS(2410), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_typeof] = ACTIONS(2410), - [anon_sym_import] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_with] = ACTIONS(2410), - [anon_sym_var] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_switch] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_in] = ACTIONS(2410), - [anon_sym_of] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_debugger] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_throw] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LTtemplate_GT] = ACTIONS(2410), - [anon_sym_GT] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_function] = ACTIONS(2410), - [anon_sym_QMARK_DOT] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_using] = ACTIONS(2410), - [anon_sym_AMP_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2410), - [anon_sym_GT_GT] = ACTIONS(2410), - [anon_sym_GT_GT_GT] = ACTIONS(2410), - [anon_sym_LT_LT] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_CARET] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2410), - [anon_sym_PERCENT] = ACTIONS(2410), - [anon_sym_STAR_STAR] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_LT_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), - [anon_sym_GT_EQ] = ACTIONS(2410), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_instanceof] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_void] = ACTIONS(2410), - [anon_sym_delete] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), + [433] = { + [sym_comment] = STATE(433), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_as] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_COMMA] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_typeof] = ACTIONS(2438), + [anon_sym_import] = ACTIONS(2438), + [anon_sym_from] = ACTIONS(2438), + [anon_sym_with] = ACTIONS(2438), + [anon_sym_var] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2438), + [anon_sym_in] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_debugger] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LTtemplate_GT] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_class] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2438), + [anon_sym_QMARK_DOT] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2438), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_STAR_STAR] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_instanceof] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2438), + [anon_sym_delete] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2410), - [sym_number] = ACTIONS(2410), - [sym_private_property_identifier] = ACTIONS(2410), - [sym_this] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), - [sym_null] = ACTIONS(2410), - [sym_undefined] = ACTIONS(2410), - [anon_sym_AT] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_signal] = ACTIONS(2410), - [anon_sym_on] = ACTIONS(2410), - [anon_sym_required] = ACTIONS(2410), - [anon_sym_component] = ACTIONS(2410), - [anon_sym_abstract] = ACTIONS(2410), - [anon_sym_satisfies] = ACTIONS(2410), - [anon_sym_interface] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [sym__automatic_semicolon] = ACTIONS(2412), - [sym__ternary_qmark] = ACTIONS(2412), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_private_property_identifier] = ACTIONS(2438), + [sym_this] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_true] = ACTIONS(2438), + [sym_false] = ACTIONS(2438), + [sym_null] = ACTIONS(2438), + [sym_undefined] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2438), + [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_property] = ACTIONS(2438), + [anon_sym_signal] = ACTIONS(2438), + [anon_sym_on] = ACTIONS(2438), + [anon_sym_required] = ACTIONS(2438), + [anon_sym_component] = ACTIONS(2438), + [anon_sym_abstract] = ACTIONS(2438), + [anon_sym_satisfies] = ACTIONS(2438), + [anon_sym_interface] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), + [sym__automatic_semicolon] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2440), [sym_html_comment] = ACTIONS(5), }, - [446] = { - [sym_comment] = STATE(446), - [sym_identifier] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_as] = ACTIONS(2338), - [anon_sym_namespace] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2338), - [anon_sym_import] = ACTIONS(2338), - [anon_sym_from] = ACTIONS(2338), - [anon_sym_with] = ACTIONS(2338), - [anon_sym_var] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_do] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_debugger] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_throw] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_yield] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LTtemplate_GT] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2338), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_class] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_QMARK_DOT] = ACTIONS(2338), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_using] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2338), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_instanceof] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2338), - [anon_sym_delete] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_private_property_identifier] = ACTIONS(2338), - [sym_this] = ACTIONS(2338), - [sym_super] = ACTIONS(2338), - [sym_true] = ACTIONS(2338), - [sym_false] = ACTIONS(2338), - [sym_null] = ACTIONS(2338), - [sym_undefined] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_readonly] = ACTIONS(2338), - [anon_sym_get] = ACTIONS(2338), - [anon_sym_set] = ACTIONS(2338), - [anon_sym_declare] = ACTIONS(2338), - [anon_sym_public] = ACTIONS(2338), - [anon_sym_private] = ACTIONS(2338), - [anon_sym_protected] = ACTIONS(2338), - [anon_sym_override] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_any] = ACTIONS(2338), - [anon_sym_number] = ACTIONS(2338), - [anon_sym_boolean] = ACTIONS(2338), - [anon_sym_string] = ACTIONS(2338), - [anon_sym_symbol] = ACTIONS(2338), - [anon_sym_object] = ACTIONS(2338), - [anon_sym_property] = ACTIONS(2338), - [anon_sym_signal] = ACTIONS(2338), - [anon_sym_on] = ACTIONS(2338), - [anon_sym_required] = ACTIONS(2338), - [anon_sym_component] = ACTIONS(2338), - [anon_sym_abstract] = ACTIONS(2338), - [anon_sym_satisfies] = ACTIONS(2338), - [anon_sym_interface] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), - [sym__automatic_semicolon] = ACTIONS(2340), - [sym__ternary_qmark] = ACTIONS(2340), + [434] = { + [sym_import] = STATE(4758), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(434), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2578), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_comment] = STATE(447), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [435] = { + [sym_comment] = STATE(435), + [sym_identifier] = ACTIONS(2426), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2428), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_as] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_typeof] = ACTIONS(2426), + [anon_sym_import] = ACTIONS(2426), + [anon_sym_from] = ACTIONS(2426), + [anon_sym_with] = ACTIONS(2426), + [anon_sym_var] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_const] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_else] = ACTIONS(2426), + [anon_sym_if] = ACTIONS(2426), + [anon_sym_switch] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_await] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_of] = ACTIONS(2426), + [anon_sym_while] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2426), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2426), + [anon_sym_debugger] = ACTIONS(2426), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_throw] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_yield] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_LTtemplate_GT] = ACTIONS(2426), + [anon_sym_GT] = ACTIONS(2428), + [anon_sym_DOT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_class] = ACTIONS(2426), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2426), + [anon_sym_QMARK_DOT] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_using] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2428), + [anon_sym_PIPE_PIPE] = ACTIONS(2428), + [anon_sym_GT_GT] = ACTIONS(2428), + [anon_sym_GT_GT_GT] = ACTIONS(2428), + [anon_sym_LT_LT] = ACTIONS(2428), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_CARET] = ACTIONS(2428), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_SLASH] = ACTIONS(2426), + [anon_sym_PERCENT] = ACTIONS(2428), + [anon_sym_STAR_STAR] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_LT_EQ] = ACTIONS(2428), + [anon_sym_EQ_EQ] = ACTIONS(2428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2428), + [anon_sym_BANG_EQ] = ACTIONS(2428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2428), + [anon_sym_GT_EQ] = ACTIONS(2428), + [anon_sym_QMARK_QMARK] = ACTIONS(2428), + [anon_sym_instanceof] = ACTIONS(2428), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_void] = ACTIONS(2426), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_DASH_DASH] = ACTIONS(2426), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2336), - [sym__ternary_qmark] = ACTIONS(2336), + [anon_sym_BQUOTE] = ACTIONS(2426), + [sym_number] = ACTIONS(2426), + [sym_private_property_identifier] = ACTIONS(2426), + [sym_this] = ACTIONS(2426), + [sym_super] = ACTIONS(2426), + [sym_true] = ACTIONS(2426), + [sym_false] = ACTIONS(2426), + [sym_null] = ACTIONS(2426), + [sym_undefined] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2426), + [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_property] = ACTIONS(2426), + [anon_sym_signal] = ACTIONS(2426), + [anon_sym_on] = ACTIONS(2426), + [anon_sym_required] = ACTIONS(2426), + [anon_sym_component] = ACTIONS(2426), + [anon_sym_abstract] = ACTIONS(2426), + [anon_sym_satisfies] = ACTIONS(2428), + [anon_sym_interface] = ACTIONS(2426), + [anon_sym_enum] = ACTIONS(2426), + [sym__automatic_semicolon] = ACTIONS(2580), + [sym__ternary_qmark] = ACTIONS(2432), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_comment] = STATE(448), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_as] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_QMARK_DOT] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_AMP_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2350), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), - [anon_sym_GT_EQ] = ACTIONS(2350), - [anon_sym_QMARK_QMARK] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), + [436] = { + [sym_import] = STATE(4758), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(436), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_satisfies] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2352), - [sym__ternary_qmark] = ACTIONS(2352), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_comment] = STATE(449), + [437] = { + [sym_comment] = STATE(437), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_as] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_COMMA] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_typeof] = ACTIONS(2434), + [anon_sym_import] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_with] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2434), + [anon_sym_in] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_debugger] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_throw] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LTtemplate_GT] = ACTIONS(2434), + [anon_sym_GT] = ACTIONS(2434), + [anon_sym_DOT] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_class] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_QMARK_DOT] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_PIPE_PIPE] = ACTIONS(2434), + [anon_sym_GT_GT] = ACTIONS(2434), + [anon_sym_GT_GT_GT] = ACTIONS(2434), + [anon_sym_LT_LT] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_PERCENT] = ACTIONS(2434), + [anon_sym_STAR_STAR] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_LT_EQ] = ACTIONS(2434), + [anon_sym_EQ_EQ] = ACTIONS(2434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2434), + [anon_sym_BANG_EQ] = ACTIONS(2434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2434), + [anon_sym_GT_EQ] = ACTIONS(2434), + [anon_sym_QMARK_QMARK] = ACTIONS(2434), + [anon_sym_instanceof] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2434), + [anon_sym_delete] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_private_property_identifier] = ACTIONS(2434), + [sym_this] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_true] = ACTIONS(2434), + [sym_false] = ACTIONS(2434), + [sym_null] = ACTIONS(2434), + [sym_undefined] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_abstract] = ACTIONS(2434), + [anon_sym_satisfies] = ACTIONS(2434), + [anon_sym_interface] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [sym__automatic_semicolon] = ACTIONS(2436), + [sym__ternary_qmark] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), + }, + [438] = { + [sym_import] = STATE(4862), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2850), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(438), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(2584), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), + [sym_html_comment] = ACTIONS(5), + }, + [439] = { + [sym_comment] = STATE(439), [sym_identifier] = ACTIONS(2370), [anon_sym_export] = ACTIONS(2370), [anon_sym_STAR] = ACTIONS(2370), @@ -97284,313 +95788,545 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2370), [anon_sym_interface] = ACTIONS(2370), [anon_sym_enum] = ACTIONS(2370), - [sym__automatic_semicolon] = ACTIONS(2372), - [sym__ternary_qmark] = ACTIONS(2372), + [sym__automatic_semicolon] = ACTIONS(2586), + [sym__ternary_qmark] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_comment] = STATE(450), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2364), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_typeof] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_with] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_await] = ACTIONS(2362), - [anon_sym_in] = ACTIONS(2364), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_debugger] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_LTtemplate_GT] = ACTIONS(2362), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_DOT] = ACTIONS(2364), - [anon_sym_DQUOTE] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_QMARK_DOT] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2364), - [anon_sym_PIPE_PIPE] = ACTIONS(2364), - [anon_sym_GT_GT] = ACTIONS(2364), - [anon_sym_GT_GT_GT] = ACTIONS(2364), - [anon_sym_LT_LT] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_CARET] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_PERCENT] = ACTIONS(2364), - [anon_sym_STAR_STAR] = ACTIONS(2364), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_LT_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2364), - [anon_sym_GT_EQ] = ACTIONS(2364), - [anon_sym_QMARK_QMARK] = ACTIONS(2364), - [anon_sym_instanceof] = ACTIONS(2364), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_void] = ACTIONS(2362), - [anon_sym_delete] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2362), - [sym_number] = ACTIONS(2362), - [sym_private_property_identifier] = ACTIONS(2362), - [sym_this] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_true] = ACTIONS(2362), - [sym_false] = ACTIONS(2362), - [sym_null] = ACTIONS(2362), - [sym_undefined] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(2364), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - [sym__automatic_semicolon] = ACTIONS(2598), - [sym__ternary_qmark] = ACTIONS(2368), + [440] = { + [sym_import] = STATE(4758), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(440), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2588), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_comment] = STATE(451), - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_as] = ACTIONS(2396), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_typeof] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_with] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_await] = ACTIONS(2394), - [anon_sym_in] = ACTIONS(2396), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_debugger] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_throw] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LTtemplate_GT] = ACTIONS(2394), - [anon_sym_GT] = ACTIONS(2396), - [anon_sym_DOT] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_QMARK_DOT] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_using] = ACTIONS(2394), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_GT_GT_GT] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_PERCENT] = ACTIONS(2396), - [anon_sym_STAR_STAR] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2396), - [anon_sym_QMARK_QMARK] = ACTIONS(2396), - [anon_sym_instanceof] = ACTIONS(2396), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_void] = ACTIONS(2394), - [anon_sym_delete] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2394), - [sym_number] = ACTIONS(2394), - [sym_private_property_identifier] = ACTIONS(2394), - [sym_this] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_undefined] = ACTIONS(2394), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_abstract] = ACTIONS(2394), - [anon_sym_satisfies] = ACTIONS(2396), - [anon_sym_interface] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [sym__automatic_semicolon] = ACTIONS(2600), - [sym__ternary_qmark] = ACTIONS(2400), + [441] = { + [sym_comment] = STATE(441), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2296), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2296), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_instanceof] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2590), + [sym__ternary_qmark] = ACTIONS(2456), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(529), - [sym_empty_statement] = STATE(529), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(452), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [442] = { + [sym_comment] = STATE(442), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_COMMA] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_in] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_DOT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_QMARK_DOT] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_STAR_STAR] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_instanceof] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_satisfies] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym__ternary_qmark] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [443] = { + [sym_comment] = STATE(443), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_EQ] = ACTIONS(25), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(2592), + [anon_sym_import] = ACTIONS(2592), + [anon_sym_from] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_await] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2592), + [anon_sym_COLON] = ACTIONS(34), + [anon_sym_yield] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym_LTtemplate_GT] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_class] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_function] = ACTIONS(2592), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_using] = ACTIONS(2592), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2592), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_void] = ACTIONS(2592), + [anon_sym_delete] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_DASH_DASH] = ACTIONS(2592), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2592), + [sym_number] = ACTIONS(2592), + [sym_private_property_identifier] = ACTIONS(2592), + [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(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_readonly] = ACTIONS(2592), + [anon_sym_get] = ACTIONS(2592), + [anon_sym_set] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(131), + [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_property] = ACTIONS(2592), + [anon_sym_signal] = ACTIONS(2592), + [anon_sym_on] = ACTIONS(2592), + [anon_sym_required] = ACTIONS(2592), + [anon_sym_component] = ACTIONS(2592), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [444] = { + [sym_import] = STATE(4862), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2976), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(444), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(2594), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -97613,529 +96349,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_import] = STATE(5071), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(453), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(2602), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), + [445] = { + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(535), + [sym_empty_statement] = STATE(535), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), + [sym_comment] = STATE(445), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [454] = { - [sym_comment] = STATE(454), - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2356), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_as] = ACTIONS(2356), - [anon_sym_namespace] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_COMMA] = ACTIONS(2356), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_typeof] = ACTIONS(2354), - [anon_sym_import] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_with] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_else] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_await] = ACTIONS(2354), - [anon_sym_in] = ACTIONS(2356), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_debugger] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_throw] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_yield] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LTtemplate_GT] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2356), - [anon_sym_DOT] = ACTIONS(2356), - [anon_sym_DQUOTE] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_class] = ACTIONS(2354), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_QMARK_DOT] = ACTIONS(2356), - [anon_sym_new] = ACTIONS(2354), - [anon_sym_using] = ACTIONS(2354), - [anon_sym_AMP_AMP] = ACTIONS(2356), - [anon_sym_PIPE_PIPE] = ACTIONS(2356), - [anon_sym_GT_GT] = ACTIONS(2356), - [anon_sym_GT_GT_GT] = ACTIONS(2356), - [anon_sym_LT_LT] = ACTIONS(2356), - [anon_sym_AMP] = ACTIONS(2356), - [anon_sym_CARET] = ACTIONS(2356), - [anon_sym_PIPE] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_PERCENT] = ACTIONS(2356), - [anon_sym_STAR_STAR] = ACTIONS(2356), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_LT_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), - [anon_sym_GT_EQ] = ACTIONS(2356), - [anon_sym_QMARK_QMARK] = ACTIONS(2356), - [anon_sym_instanceof] = ACTIONS(2356), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_void] = ACTIONS(2354), - [anon_sym_delete] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2354), - [sym_number] = ACTIONS(2354), - [sym_private_property_identifier] = ACTIONS(2354), - [sym_this] = ACTIONS(2354), - [sym_super] = ACTIONS(2354), - [sym_true] = ACTIONS(2354), - [sym_false] = ACTIONS(2354), - [sym_null] = ACTIONS(2354), - [sym_undefined] = ACTIONS(2354), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_object] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2354), - [anon_sym_satisfies] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2354), - [anon_sym_enum] = ACTIONS(2354), - [sym__automatic_semicolon] = ACTIONS(2604), - [sym__ternary_qmark] = ACTIONS(2360), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [455] = { - [sym_comment] = STATE(455), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_as] = ACTIONS(2460), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_typeof] = ACTIONS(2458), - [anon_sym_import] = ACTIONS(2458), - [anon_sym_from] = ACTIONS(2458), - [anon_sym_with] = ACTIONS(2458), - [anon_sym_var] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_else] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_switch] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_await] = ACTIONS(2458), - [anon_sym_in] = ACTIONS(2460), - [anon_sym_of] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_do] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_debugger] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_throw] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_LTtemplate_GT] = ACTIONS(2458), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_DOT] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_QMARK_DOT] = ACTIONS(2460), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_GT_GT_GT] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_SLASH] = ACTIONS(2458), - [anon_sym_PERCENT] = ACTIONS(2460), - [anon_sym_STAR_STAR] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_LT_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2460), - [anon_sym_GT_EQ] = ACTIONS(2460), - [anon_sym_QMARK_QMARK] = ACTIONS(2460), - [anon_sym_instanceof] = ACTIONS(2460), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_void] = ACTIONS(2458), - [anon_sym_delete] = ACTIONS(2458), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), + [446] = { + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(528), + [sym_empty_statement] = STATE(528), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), + [sym_comment] = STATE(446), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2458), - [sym_number] = ACTIONS(2458), - [sym_private_property_identifier] = ACTIONS(2458), - [sym_this] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_true] = ACTIONS(2458), - [sym_false] = ACTIONS(2458), - [sym_null] = ACTIONS(2458), - [sym_undefined] = ACTIONS(2458), - [anon_sym_AT] = ACTIONS(2458), - [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_property] = ACTIONS(2458), - [anon_sym_signal] = ACTIONS(2458), - [anon_sym_on] = ACTIONS(2458), - [anon_sym_required] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_abstract] = ACTIONS(2458), - [anon_sym_satisfies] = ACTIONS(2460), - [anon_sym_interface] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(2606), - [sym__ternary_qmark] = ACTIONS(2464), - [sym_html_comment] = ACTIONS(5), - }, - [456] = { - [sym_comment] = STATE(456), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_as] = ACTIONS(2376), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_in] = ACTIONS(2376), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_LTtemplate_GT] = ACTIONS(2374), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_DOT] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_QMARK_DOT] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_GT_GT_GT] = ACTIONS(2376), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_PERCENT] = ACTIONS(2376), - [anon_sym_STAR_STAR] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_LT_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), - [anon_sym_GT_EQ] = ACTIONS(2376), - [anon_sym_QMARK_QMARK] = ACTIONS(2376), - [anon_sym_instanceof] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_number] = ACTIONS(2374), - [sym_private_property_identifier] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_satisfies] = ACTIONS(2376), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(2608), - [sym__ternary_qmark] = ACTIONS(2380), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [457] = { - [sym_comment] = STATE(457), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), + [447] = { + [sym_comment] = STATE(447), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2596), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_EQ] = ACTIONS(128), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(25), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_typeof] = ACTIONS(2586), - [anon_sym_import] = ACTIONS(2586), - [anon_sym_from] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_await] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_typeof] = ACTIONS(2596), + [anon_sym_import] = ACTIONS(2596), + [anon_sym_from] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(34), + [anon_sym_await] = ACTIONS(2596), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2586), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2586), - [anon_sym_LTtemplate_GT] = ACTIONS(2586), + [anon_sym_of] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(34), + [anon_sym_yield] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym_LTtemplate_GT] = ACTIONS(2596), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_class] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_function] = ACTIONS(2586), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_class] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2596), + [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2586), - [anon_sym_using] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2596), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -98151,7 +96655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(72), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2596), [anon_sym_AMP_AMP] = ACTIONS(28), [anon_sym_PIPE_PIPE] = ACTIONS(28), [anon_sym_GT_GT] = ACTIONS(28), @@ -98160,12 +96664,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(28), [anon_sym_CARET] = ACTIONS(28), [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_SLASH] = ACTIONS(2586), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2586), + [anon_sym_LT] = ACTIONS(2596), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -98174,313 +96678,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(28), [anon_sym_QMARK_QMARK] = ACTIONS(28), [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(2586), - [anon_sym_void] = ACTIONS(2586), - [anon_sym_delete] = ACTIONS(2586), - [anon_sym_PLUS_PLUS] = ACTIONS(2586), - [anon_sym_DASH_DASH] = ACTIONS(2586), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2586), - [sym_number] = ACTIONS(2586), - [sym_private_property_identifier] = ACTIONS(2586), - [sym_this] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_true] = ACTIONS(2586), - [sym_false] = ACTIONS(2586), - [sym_null] = ACTIONS(2586), - [sym_undefined] = ACTIONS(2586), - [anon_sym_AT] = ACTIONS(2586), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_delete] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2596), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [sym_this] = ACTIONS(2596), + [sym_super] = ACTIONS(2596), + [sym_true] = ACTIONS(2596), + [sym_false] = ACTIONS(2596), + [sym_null] = ACTIONS(2596), + [sym_undefined] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), [anon_sym_QMARK] = ACTIONS(131), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), - [anon_sym_property] = ACTIONS(2586), - [anon_sym_signal] = ACTIONS(2586), - [anon_sym_on] = ACTIONS(2586), - [anon_sym_required] = ACTIONS(2586), - [anon_sym_component] = ACTIONS(2586), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_property] = ACTIONS(2596), + [anon_sym_signal] = ACTIONS(2596), + [anon_sym_on] = ACTIONS(2596), + [anon_sym_required] = ACTIONS(2596), + [anon_sym_component] = ACTIONS(2596), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [458] = { - [sym_comment] = STATE(458), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2438), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_as] = ACTIONS(2438), - [anon_sym_namespace] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_COMMA] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_typeof] = ACTIONS(2438), - [anon_sym_import] = ACTIONS(2438), - [anon_sym_from] = ACTIONS(2438), - [anon_sym_with] = ACTIONS(2438), - [anon_sym_var] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_else] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_switch] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_await] = ACTIONS(2438), - [anon_sym_in] = ACTIONS(2438), - [anon_sym_of] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_debugger] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_throw] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_LTtemplate_GT] = ACTIONS(2438), - [anon_sym_GT] = ACTIONS(2438), - [anon_sym_DOT] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2438), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_class] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2438), - [anon_sym_QMARK_DOT] = ACTIONS(2438), - [anon_sym_new] = ACTIONS(2438), - [anon_sym_using] = ACTIONS(2438), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE_PIPE] = ACTIONS(2438), - [anon_sym_GT_GT] = ACTIONS(2438), - [anon_sym_GT_GT_GT] = ACTIONS(2438), - [anon_sym_LT_LT] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2438), - [anon_sym_CARET] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2438), - [anon_sym_PLUS] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_SLASH] = ACTIONS(2438), - [anon_sym_PERCENT] = ACTIONS(2438), - [anon_sym_STAR_STAR] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_LT_EQ] = ACTIONS(2438), - [anon_sym_EQ_EQ] = ACTIONS(2438), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), - [anon_sym_GT_EQ] = ACTIONS(2438), - [anon_sym_QMARK_QMARK] = ACTIONS(2438), - [anon_sym_instanceof] = ACTIONS(2438), - [anon_sym_TILDE] = ACTIONS(2438), - [anon_sym_void] = ACTIONS(2438), - [anon_sym_delete] = ACTIONS(2438), - [anon_sym_PLUS_PLUS] = ACTIONS(2438), - [anon_sym_DASH_DASH] = ACTIONS(2438), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2438), - [sym_number] = ACTIONS(2438), - [sym_private_property_identifier] = ACTIONS(2438), - [sym_this] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_true] = ACTIONS(2438), - [sym_false] = ACTIONS(2438), - [sym_null] = ACTIONS(2438), - [sym_undefined] = ACTIONS(2438), - [anon_sym_AT] = ACTIONS(2438), - [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_property] = ACTIONS(2438), - [anon_sym_signal] = ACTIONS(2438), - [anon_sym_on] = ACTIONS(2438), - [anon_sym_required] = ACTIONS(2438), - [anon_sym_component] = ACTIONS(2438), - [anon_sym_abstract] = ACTIONS(2438), - [anon_sym_satisfies] = ACTIONS(2438), - [anon_sym_interface] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - [sym__automatic_semicolon] = ACTIONS(2440), - [sym__ternary_qmark] = ACTIONS(2440), - [sym_html_comment] = ACTIONS(5), - }, - [459] = { - [sym_comment] = STATE(459), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_as] = ACTIONS(2452), - [anon_sym_namespace] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_COMMA] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(2450), - [anon_sym_import] = ACTIONS(2450), - [anon_sym_from] = 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(2450), - [anon_sym_else] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(2450), - [anon_sym_in] = ACTIONS(2452), - [anon_sym_of] = 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(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LTtemplate_GT] = ACTIONS(2450), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_DOT] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), - [anon_sym_class] = ACTIONS(2450), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_function] = ACTIONS(2450), - [anon_sym_QMARK_DOT] = ACTIONS(2452), - [anon_sym_new] = ACTIONS(2450), - [anon_sym_using] = ACTIONS(2450), - [anon_sym_AMP_AMP] = ACTIONS(2452), - [anon_sym_PIPE_PIPE] = ACTIONS(2452), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_GT_GT_GT] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_CARET] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2452), - [anon_sym_STAR_STAR] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_LT_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2452), - [anon_sym_GT_EQ] = ACTIONS(2452), - [anon_sym_QMARK_QMARK] = ACTIONS(2452), - [anon_sym_instanceof] = ACTIONS(2452), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_void] = ACTIONS(2450), - [anon_sym_delete] = ACTIONS(2450), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), + [448] = { + [sym_import] = STATE(4758), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(448), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2598), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_number] = ACTIONS(2450), - [sym_private_property_identifier] = ACTIONS(2450), - [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(2450), - [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_property] = ACTIONS(2450), - [anon_sym_signal] = ACTIONS(2450), - [anon_sym_on] = ACTIONS(2450), - [anon_sym_required] = ACTIONS(2450), - [anon_sym_component] = ACTIONS(2450), - [anon_sym_abstract] = ACTIONS(2450), - [anon_sym_satisfies] = ACTIONS(2452), - [anon_sym_interface] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [sym__automatic_semicolon] = ACTIONS(2610), - [sym__ternary_qmark] = ACTIONS(2456), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [460] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(460), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [449] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(449), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(1583), + [anon_sym_EQ] = ACTIONS(1485), [anon_sym_as] = ACTIONS(28), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), @@ -98488,13 +96876,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(1571), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2271), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -98564,55 +96952,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [461] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_assignment_pattern] = STATE(7619), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(461), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6661), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [450] = { + [sym_import] = STATE(4758), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3550), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(450), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2600), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, + [451] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(451), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5521), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_override_modifier] = STATE(497), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -98644,13 +97148,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), + [sym_this] = ACTIONS(1291), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -98658,14 +97162,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2602), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), [anon_sym_public] = ACTIONS(21), [anon_sym_private] = ACTIONS(21), [anon_sym_protected] = ACTIONS(21), - [anon_sym_override] = ACTIONS(21), + [anon_sym_override] = ACTIONS(1379), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -98680,678 +97184,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, - [462] = { - [sym_comment] = STATE(462), - [sym_identifier] = ACTIONS(2402), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_COMMA] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_typeof] = ACTIONS(2402), - [anon_sym_import] = ACTIONS(2402), - [anon_sym_from] = ACTIONS(2402), - [anon_sym_with] = ACTIONS(2402), - [anon_sym_var] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_switch] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_in] = ACTIONS(2404), - [anon_sym_of] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_debugger] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_throw] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LTtemplate_GT] = ACTIONS(2402), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_DOT] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_class] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_QMARK_DOT] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2402), - [anon_sym_using] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_GT_GT_GT] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2404), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_LT_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2404), - [anon_sym_QMARK_QMARK] = ACTIONS(2404), - [anon_sym_instanceof] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_void] = ACTIONS(2402), - [anon_sym_delete] = ACTIONS(2402), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_number] = ACTIONS(2402), - [sym_private_property_identifier] = ACTIONS(2402), - [sym_this] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_true] = ACTIONS(2402), - [sym_false] = ACTIONS(2402), - [sym_null] = ACTIONS(2402), - [sym_undefined] = ACTIONS(2402), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_readonly] = ACTIONS(2402), - [anon_sym_get] = ACTIONS(2402), - [anon_sym_set] = ACTIONS(2402), - [anon_sym_declare] = ACTIONS(2402), - [anon_sym_public] = ACTIONS(2402), - [anon_sym_private] = ACTIONS(2402), - [anon_sym_protected] = ACTIONS(2402), - [anon_sym_override] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_any] = ACTIONS(2402), - [anon_sym_number] = ACTIONS(2402), - [anon_sym_boolean] = ACTIONS(2402), - [anon_sym_string] = ACTIONS(2402), - [anon_sym_symbol] = ACTIONS(2402), - [anon_sym_object] = ACTIONS(2402), - [anon_sym_property] = ACTIONS(2402), - [anon_sym_signal] = ACTIONS(2402), - [anon_sym_on] = ACTIONS(2402), - [anon_sym_required] = ACTIONS(2402), - [anon_sym_component] = ACTIONS(2402), - [anon_sym_abstract] = ACTIONS(2402), - [anon_sym_satisfies] = ACTIONS(2404), - [anon_sym_interface] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [sym__automatic_semicolon] = ACTIONS(2612), - [sym__ternary_qmark] = ACTIONS(2408), - [sym_html_comment] = ACTIONS(5), - }, - [463] = { - [sym_statement_block] = STATE(522), - [sym_comment] = STATE(463), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), + [452] = { + [sym_comment] = STATE(452), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), [sym_html_comment] = ACTIONS(5), }, - [464] = { - [sym_comment] = STATE(464), - [sym_identifier] = ACTIONS(2588), - [anon_sym_export] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_EQ] = ACTIONS(128), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_typeof] = ACTIONS(2588), - [anon_sym_import] = ACTIONS(2588), - [anon_sym_from] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), - [anon_sym_BANG] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_RPAREN] = ACTIONS(131), - [anon_sym_await] = ACTIONS(2588), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2588), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_yield] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_LTtemplate_GT] = ACTIONS(2588), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_class] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_function] = ACTIONS(2588), - [anon_sym_EQ_GT] = ACTIONS(133), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2588), - [anon_sym_using] = ACTIONS(2588), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2588), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_SLASH] = ACTIONS(2588), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2588), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_TILDE] = ACTIONS(2588), - [anon_sym_void] = ACTIONS(2588), - [anon_sym_delete] = ACTIONS(2588), - [anon_sym_PLUS_PLUS] = ACTIONS(2588), - [anon_sym_DASH_DASH] = ACTIONS(2588), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2588), - [sym_number] = ACTIONS(2588), - [sym_private_property_identifier] = ACTIONS(2588), - [sym_this] = ACTIONS(2588), - [sym_super] = ACTIONS(2588), - [sym_true] = ACTIONS(2588), - [sym_false] = ACTIONS(2588), - [sym_null] = ACTIONS(2588), - [sym_undefined] = ACTIONS(2588), - [anon_sym_AT] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_get] = ACTIONS(2588), - [anon_sym_set] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(131), - [anon_sym_declare] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_protected] = ACTIONS(2588), - [anon_sym_override] = ACTIONS(2588), - [anon_sym_module] = ACTIONS(2588), - [anon_sym_any] = ACTIONS(2588), - [anon_sym_number] = ACTIONS(2588), - [anon_sym_boolean] = ACTIONS(2588), - [anon_sym_string] = ACTIONS(2588), - [anon_sym_symbol] = ACTIONS(2588), - [anon_sym_object] = ACTIONS(2588), - [anon_sym_property] = ACTIONS(2588), - [anon_sym_signal] = ACTIONS(2588), - [anon_sym_on] = ACTIONS(2588), - [anon_sym_required] = ACTIONS(2588), - [anon_sym_component] = ACTIONS(2588), - [anon_sym_satisfies] = ACTIONS(28), - [sym__ternary_qmark] = ACTIONS(126), + [453] = { + [sym_comment] = STATE(453), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_DOT] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2398), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_STAR_STAR] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2398), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_QMARK_QMARK] = ACTIONS(2398), + [anon_sym_instanceof] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2398), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2604), + [sym__ternary_qmark] = ACTIONS(2402), [sym_html_comment] = ACTIONS(5), }, - [465] = { - [sym_comment] = STATE(465), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_as] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_COMMA] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2382), - [anon_sym_else] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_in] = ACTIONS(2384), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_LTtemplate_GT] = ACTIONS(2382), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_QMARK_DOT] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_GT_GT_GT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_STAR_STAR] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2384), - [anon_sym_QMARK_QMARK] = ACTIONS(2384), - [anon_sym_instanceof] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_number] = ACTIONS(2382), - [sym_private_property_identifier] = ACTIONS(2382), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_satisfies] = ACTIONS(2384), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [sym__automatic_semicolon] = ACTIONS(2614), - [sym__ternary_qmark] = ACTIONS(2388), + [454] = { + [sym_comment] = STATE(454), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2470), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_instanceof] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2472), + [sym__ternary_qmark] = ACTIONS(2472), [sym_html_comment] = ACTIONS(5), }, - [466] = { - [sym_comment] = STATE(466), - [sym_identifier] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_as] = ACTIONS(2344), - [anon_sym_namespace] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_typeof] = ACTIONS(2342), - [anon_sym_import] = ACTIONS(2342), - [anon_sym_from] = ACTIONS(2342), - [anon_sym_with] = ACTIONS(2342), - [anon_sym_var] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_switch] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(2342), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_debugger] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_throw] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_yield] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LTtemplate_GT] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2344), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), - [anon_sym_class] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_QMARK_DOT] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2342), - [anon_sym_using] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2344), - [anon_sym_PIPE_PIPE] = ACTIONS(2344), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2344), - [anon_sym_LT_LT] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2344), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2342), - [anon_sym_PERCENT] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2344), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2344), - [anon_sym_GT_EQ] = ACTIONS(2344), - [anon_sym_QMARK_QMARK] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_void] = ACTIONS(2342), - [anon_sym_delete] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), + [455] = { + [sym_import] = STATE(4856), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3449), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(455), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2606), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), - [sym_private_property_identifier] = ACTIONS(2342), - [sym_this] = ACTIONS(2342), - [sym_super] = ACTIONS(2342), - [sym_true] = ACTIONS(2342), - [sym_false] = ACTIONS(2342), - [sym_null] = ACTIONS(2342), - [sym_undefined] = ACTIONS(2342), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_readonly] = ACTIONS(2342), - [anon_sym_get] = ACTIONS(2342), - [anon_sym_set] = ACTIONS(2342), - [anon_sym_declare] = ACTIONS(2342), - [anon_sym_public] = ACTIONS(2342), - [anon_sym_private] = ACTIONS(2342), - [anon_sym_protected] = ACTIONS(2342), - [anon_sym_override] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_any] = ACTIONS(2342), - [anon_sym_number] = ACTIONS(2342), - [anon_sym_boolean] = ACTIONS(2342), - [anon_sym_string] = ACTIONS(2342), - [anon_sym_symbol] = ACTIONS(2342), - [anon_sym_object] = ACTIONS(2342), - [anon_sym_property] = ACTIONS(2342), - [anon_sym_signal] = ACTIONS(2342), - [anon_sym_on] = ACTIONS(2342), - [anon_sym_required] = ACTIONS(2342), - [anon_sym_component] = ACTIONS(2342), - [anon_sym_abstract] = ACTIONS(2342), - [anon_sym_satisfies] = ACTIONS(2344), - [anon_sym_interface] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(2616), - [sym__ternary_qmark] = ACTIONS(2348), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [467] = { - [sym_import] = STATE(4974), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3349), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(467), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(2618), + [456] = { + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(534), + [sym_empty_statement] = STATE(534), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), + [sym_comment] = STATE(456), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -99376,194 +97764,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [468] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(527), - [sym_empty_statement] = STATE(527), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(468), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [457] = { + [sym_import] = STATE(4788), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3089), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(457), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2608), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [469] = { - [sym_import] = STATE(5028), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(469), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2620), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [458] = { + [sym_comment] = STATE(458), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_as] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_from] = ACTIONS(2462), + [anon_sym_with] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_debugger] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2462), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_QMARK_DOT] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_instanceof] = ACTIONS(2462), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_void] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_undefined] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_override] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_object] = ACTIONS(2462), + [anon_sym_property] = ACTIONS(2462), + [anon_sym_signal] = ACTIONS(2462), + [anon_sym_on] = ACTIONS(2462), + [anon_sym_required] = ACTIONS(2462), + [anon_sym_component] = ACTIONS(2462), + [anon_sym_abstract] = ACTIONS(2462), + [anon_sym_satisfies] = ACTIONS(2462), + [anon_sym_interface] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [sym__automatic_semicolon] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2464), + [sym_html_comment] = ACTIONS(5), + }, + [459] = { + [sym_import] = STATE(4788), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(459), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2610), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -99583,41 +98087,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [470] = { - [sym_comment] = STATE(470), + [460] = { + [sym_comment] = STATE(460), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2444), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_as] = ACTIONS(2444), + [anon_sym_namespace] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_COMMA] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_typeof] = ACTIONS(2442), + [anon_sym_import] = ACTIONS(2442), + [anon_sym_from] = ACTIONS(2442), + [anon_sym_with] = ACTIONS(2442), + [anon_sym_var] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_switch] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_await] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2444), + [anon_sym_of] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_debugger] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_throw] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LTtemplate_GT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_DOT] = ACTIONS(2444), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_class] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_QMARK_DOT] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_using] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2444), + [anon_sym_PIPE_PIPE] = ACTIONS(2444), + [anon_sym_GT_GT] = ACTIONS(2444), + [anon_sym_GT_GT_GT] = ACTIONS(2444), + [anon_sym_LT_LT] = ACTIONS(2444), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_PERCENT] = ACTIONS(2444), + [anon_sym_STAR_STAR] = ACTIONS(2444), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_LT_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), + [anon_sym_GT_EQ] = ACTIONS(2444), + [anon_sym_QMARK_QMARK] = ACTIONS(2444), + [anon_sym_instanceof] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_void] = ACTIONS(2442), + [anon_sym_delete] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_number] = ACTIONS(2442), + [sym_private_property_identifier] = ACTIONS(2442), + [sym_this] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_true] = ACTIONS(2442), + [sym_false] = ACTIONS(2442), + [sym_null] = ACTIONS(2442), + [sym_undefined] = ACTIONS(2442), + [anon_sym_AT] = ACTIONS(2442), + [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_property] = ACTIONS(2442), + [anon_sym_signal] = ACTIONS(2442), + [anon_sym_on] = ACTIONS(2442), + [anon_sym_required] = ACTIONS(2442), + [anon_sym_component] = ACTIONS(2442), + [anon_sym_abstract] = ACTIONS(2442), + [anon_sym_satisfies] = ACTIONS(2444), + [anon_sym_interface] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), + [sym__automatic_semicolon] = ACTIONS(2612), + [sym__ternary_qmark] = ACTIONS(2448), + [sym_html_comment] = ACTIONS(5), + }, + [461] = { + [sym_comment] = STATE(461), [sym_identifier] = ACTIONS(2332), [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), [anon_sym_namespace] = ACTIONS(2332), [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), [anon_sym_RBRACE] = ACTIONS(2332), [anon_sym_typeof] = ACTIONS(2332), [anon_sym_import] = ACTIONS(2332), @@ -99633,7 +98253,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2332), [anon_sym_LPAREN] = ACTIONS(2332), [anon_sym_await] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2334), [anon_sym_of] = ACTIONS(2332), [anon_sym_while] = ACTIONS(2332), [anon_sym_do] = ACTIONS(2332), @@ -99647,38 +98267,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2332), [anon_sym_LBRACK] = ACTIONS(2332), [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), [anon_sym_DQUOTE] = ACTIONS(2332), [anon_sym_SQUOTE] = ACTIONS(2332), [anon_sym_class] = ACTIONS(2332), [anon_sym_async] = ACTIONS(2332), [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), [anon_sym_new] = ACTIONS(2332), [anon_sym_using] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), [anon_sym_PLUS] = ACTIONS(2332), [anon_sym_DASH] = ACTIONS(2332), [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), [anon_sym_TILDE] = ACTIONS(2332), [anon_sym_void] = ACTIONS(2332), [anon_sym_delete] = ACTIONS(2332), @@ -99717,86 +98337,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2332), [anon_sym_component] = ACTIONS(2332), [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), [anon_sym_interface] = ACTIONS(2332), [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2622), - [sym__ternary_qmark] = ACTIONS(2336), + [sym__automatic_semicolon] = ACTIONS(2614), + [sym__ternary_qmark] = ACTIONS(2338), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(5080), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3775), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(471), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2624), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [462] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(7329), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(462), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(7060), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_of] = ACTIONS(21), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(62), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1275), [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), @@ -99804,8 +98424,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -99815,481 +98435,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), - [sym_html_comment] = ACTIONS(5), - }, - [472] = { - [sym_import] = STATE(5028), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3265), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(472), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2626), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [473] = { - [sym_import] = STATE(5071), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3055), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(473), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(2628), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [474] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(533), - [sym_empty_statement] = STATE(533), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(474), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [475] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(475), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6269), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_override_modifier] = STATE(510), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(21), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2630), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1285), + [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2632), + [anon_sym_readonly] = ACTIONS(21), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), [anon_sym_public] = ACTIONS(21), [anon_sym_private] = ACTIONS(21), [anon_sym_protected] = ACTIONS(21), - [anon_sym_override] = ACTIONS(1402), + [anon_sym_override] = ACTIONS(21), [anon_sym_module] = ACTIONS(21), [anon_sym_any] = ACTIONS(21), [anon_sym_number] = ACTIONS(21), @@ -100304,248 +98460,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(5080), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(476), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2634), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [463] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(463), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(5028), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(477), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2636), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [464] = { + [sym_comment] = STATE(464), + [sym_identifier] = ACTIONS(2450), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_import] = ACTIONS(2450), + [anon_sym_from] = 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(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = 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(2450), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LTtemplate_GT] = ACTIONS(2450), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2450), + [anon_sym_function] = ACTIONS(2450), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2450), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_void] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [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(2450), + [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_property] = ACTIONS(2450), + [anon_sym_signal] = ACTIONS(2450), + [anon_sym_on] = ACTIONS(2450), + [anon_sym_required] = ACTIONS(2450), + [anon_sym_component] = ACTIONS(2450), + [anon_sym_abstract] = ACTIONS(2450), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [sym__automatic_semicolon] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2452), [sym_html_comment] = ACTIONS(5), }, - [478] = { - [sym_comment] = STATE(478), + [465] = { + [sym_comment] = STATE(465), [sym_identifier] = ACTIONS(2466), [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(2466), [anon_sym_type] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2468), + [anon_sym_as] = ACTIONS(2466), [anon_sym_namespace] = ACTIONS(2466), [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(2468), + [anon_sym_COMMA] = ACTIONS(2466), [anon_sym_RBRACE] = ACTIONS(2466), [anon_sym_typeof] = ACTIONS(2466), [anon_sym_import] = ACTIONS(2466), @@ -100561,7 +98717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2466), [anon_sym_LPAREN] = ACTIONS(2466), [anon_sym_await] = ACTIONS(2466), - [anon_sym_in] = ACTIONS(2468), + [anon_sym_in] = ACTIONS(2466), [anon_sym_of] = ACTIONS(2466), [anon_sym_while] = ACTIONS(2466), [anon_sym_do] = ACTIONS(2466), @@ -100575,38 +98731,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2466), [anon_sym_LBRACK] = ACTIONS(2466), [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_DOT] = ACTIONS(2468), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_DOT] = ACTIONS(2466), [anon_sym_DQUOTE] = ACTIONS(2466), [anon_sym_SQUOTE] = ACTIONS(2466), [anon_sym_class] = ACTIONS(2466), [anon_sym_async] = ACTIONS(2466), [anon_sym_function] = ACTIONS(2466), - [anon_sym_QMARK_DOT] = ACTIONS(2468), + [anon_sym_QMARK_DOT] = ACTIONS(2466), [anon_sym_new] = ACTIONS(2466), [anon_sym_using] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2468), - [anon_sym_PIPE_PIPE] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_GT_GT_GT] = ACTIONS(2468), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2466), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2466), [anon_sym_PLUS] = ACTIONS(2466), [anon_sym_DASH] = ACTIONS(2466), [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_STAR_STAR] = ACTIONS(2468), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_STAR_STAR] = ACTIONS(2466), [anon_sym_LT] = ACTIONS(2466), - [anon_sym_LT_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2468), - [anon_sym_QMARK_QMARK] = ACTIONS(2468), - [anon_sym_instanceof] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_instanceof] = ACTIONS(2466), [anon_sym_TILDE] = ACTIONS(2466), [anon_sym_void] = ACTIONS(2466), [anon_sym_delete] = ACTIONS(2466), @@ -100645,548 +98801,1244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2466), [anon_sym_component] = ACTIONS(2466), [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(2468), + [anon_sym_satisfies] = ACTIONS(2466), [anon_sym_interface] = ACTIONS(2466), [anon_sym_enum] = ACTIONS(2466), - [sym__automatic_semicolon] = ACTIONS(2470), - [sym__ternary_qmark] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(2468), [sym_html_comment] = ACTIONS(5), }, - [479] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(535), - [sym_empty_statement] = STATE(535), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(479), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [466] = { + [sym_comment] = STATE(466), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(2596), + [anon_sym_import] = ACTIONS(2596), + [anon_sym_from] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(2596), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2596), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym_LTtemplate_GT] = ACTIONS(2596), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_class] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_function] = ACTIONS(2596), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2596), + [anon_sym_using] = ACTIONS(2596), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_void] = ACTIONS(2596), + [anon_sym_delete] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2596), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [sym_this] = ACTIONS(2596), + [sym_super] = ACTIONS(2596), + [sym_true] = ACTIONS(2596), + [sym_false] = ACTIONS(2596), + [sym_null] = ACTIONS(2596), + [sym_undefined] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_property] = ACTIONS(2596), + [anon_sym_signal] = ACTIONS(2596), + [anon_sym_on] = ACTIONS(2596), + [anon_sym_required] = ACTIONS(2596), + [anon_sym_component] = ACTIONS(2596), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [467] = { + [sym_comment] = STATE(467), + [sym_identifier] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_as] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_COMMA] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_import] = ACTIONS(2474), + [anon_sym_from] = ACTIONS(2474), + [anon_sym_with] = ACTIONS(2474), + [anon_sym_var] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_await] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2476), + [anon_sym_of] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_debugger] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_throw] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LTtemplate_GT] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2474), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(2474), + [anon_sym_QMARK_DOT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2474), + [anon_sym_using] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2476), + [anon_sym_PIPE_PIPE] = ACTIONS(2476), + [anon_sym_GT_GT] = ACTIONS(2476), + [anon_sym_GT_GT_GT] = ACTIONS(2476), + [anon_sym_LT_LT] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_SLASH] = ACTIONS(2474), + [anon_sym_PERCENT] = ACTIONS(2476), + [anon_sym_STAR_STAR] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2474), + [anon_sym_LT_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2476), + [anon_sym_GT_EQ] = ACTIONS(2476), + [anon_sym_QMARK_QMARK] = ACTIONS(2476), + [anon_sym_instanceof] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2474), + [anon_sym_void] = ACTIONS(2474), + [anon_sym_delete] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_BQUOTE] = ACTIONS(2474), + [sym_number] = ACTIONS(2474), + [sym_private_property_identifier] = ACTIONS(2474), + [sym_this] = ACTIONS(2474), + [sym_super] = ACTIONS(2474), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [sym_null] = ACTIONS(2474), + [sym_undefined] = ACTIONS(2474), + [anon_sym_AT] = ACTIONS(2474), + [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_property] = ACTIONS(2474), + [anon_sym_signal] = ACTIONS(2474), + [anon_sym_on] = ACTIONS(2474), + [anon_sym_required] = ACTIONS(2474), + [anon_sym_component] = ACTIONS(2474), + [anon_sym_abstract] = ACTIONS(2474), + [anon_sym_satisfies] = ACTIONS(2476), + [anon_sym_interface] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [sym__automatic_semicolon] = ACTIONS(2616), + [sym__ternary_qmark] = ACTIONS(2480), [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(5155), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3615), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(480), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2638), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [468] = { + [sym_statement_block] = STATE(522), + [sym_comment] = STATE(468), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [469] = { + [sym_statement_block] = STATE(522), + [sym_comment] = STATE(469), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2620), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [470] = { + [sym_comment] = STATE(470), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_EQ] = ACTIONS(128), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(2592), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_typeof] = ACTIONS(2592), + [anon_sym_import] = ACTIONS(2592), + [anon_sym_from] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(2592), + [anon_sym_LPAREN] = ACTIONS(2592), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_await] = ACTIONS(2592), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(2592), + [anon_sym_COLON] = ACTIONS(131), + [anon_sym_yield] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(2592), + [anon_sym_LTtemplate_GT] = ACTIONS(2592), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_class] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_function] = ACTIONS(2592), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_using] = ACTIONS(2592), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2592), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(2592), + [anon_sym_DASH] = ACTIONS(2592), + [anon_sym_SLASH] = ACTIONS(2592), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2592), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_TILDE] = ACTIONS(2592), + [anon_sym_void] = ACTIONS(2592), + [anon_sym_delete] = ACTIONS(2592), + [anon_sym_PLUS_PLUS] = ACTIONS(2592), + [anon_sym_DASH_DASH] = ACTIONS(2592), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2592), + [sym_number] = ACTIONS(2592), + [sym_private_property_identifier] = ACTIONS(2592), + [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(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_readonly] = ACTIONS(2592), + [anon_sym_get] = ACTIONS(2592), + [anon_sym_set] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(131), + [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_property] = ACTIONS(2592), + [anon_sym_signal] = ACTIONS(2592), + [anon_sym_on] = ACTIONS(2592), + [anon_sym_required] = ACTIONS(2592), + [anon_sym_component] = ACTIONS(2592), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [471] = { + [sym_statement_block] = STATE(522), + [sym_comment] = STATE(471), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2618), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2622), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [472] = { + [sym_comment] = STATE(472), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_as] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_typeof] = ACTIONS(2386), + [anon_sym_import] = ACTIONS(2386), + [anon_sym_from] = ACTIONS(2386), + [anon_sym_with] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_else] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_switch] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2386), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_of] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_do] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_debugger] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_throw] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_yield] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LTtemplate_GT] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_class] = ACTIONS(2386), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_function] = ACTIONS(2386), + [anon_sym_QMARK_DOT] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2386), + [anon_sym_using] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2388), + [anon_sym_PIPE_PIPE] = ACTIONS(2388), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2388), + [anon_sym_LT_LT] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2388), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2388), + [anon_sym_GT_EQ] = ACTIONS(2388), + [anon_sym_QMARK_QMARK] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2386), + [anon_sym_delete] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_private_property_identifier] = ACTIONS(2386), + [sym_this] = ACTIONS(2386), + [sym_super] = ACTIONS(2386), + [sym_true] = ACTIONS(2386), + [sym_false] = ACTIONS(2386), + [sym_null] = ACTIONS(2386), + [sym_undefined] = ACTIONS(2386), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_readonly] = ACTIONS(2386), + [anon_sym_get] = ACTIONS(2386), + [anon_sym_set] = ACTIONS(2386), + [anon_sym_declare] = ACTIONS(2386), + [anon_sym_public] = ACTIONS(2386), + [anon_sym_private] = ACTIONS(2386), + [anon_sym_protected] = ACTIONS(2386), + [anon_sym_override] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_any] = ACTIONS(2386), + [anon_sym_number] = ACTIONS(2386), + [anon_sym_boolean] = ACTIONS(2386), + [anon_sym_string] = ACTIONS(2386), + [anon_sym_symbol] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(2386), + [anon_sym_property] = ACTIONS(2386), + [anon_sym_signal] = ACTIONS(2386), + [anon_sym_on] = ACTIONS(2386), + [anon_sym_required] = ACTIONS(2386), + [anon_sym_component] = ACTIONS(2386), + [anon_sym_abstract] = ACTIONS(2386), + [anon_sym_satisfies] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [sym__automatic_semicolon] = ACTIONS(2624), + [sym__ternary_qmark] = ACTIONS(2392), + [sym_html_comment] = ACTIONS(5), + }, + [473] = { + [sym_comment] = STATE(473), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_LT_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2412), + [anon_sym_GT_EQ] = ACTIONS(2412), + [anon_sym_QMARK_QMARK] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2412), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2626), + [sym__ternary_qmark] = ACTIONS(2416), [sym_html_comment] = ACTIONS(5), }, - [481] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(526), - [sym_empty_statement] = STATE(526), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(481), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [474] = { + [sym_comment] = STATE(474), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2378), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2378), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2378), + [anon_sym_PIPE_PIPE] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_GT_GT_GT] = ACTIONS(2378), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PERCENT] = ACTIONS(2378), + [anon_sym_STAR_STAR] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2378), + [anon_sym_instanceof] = ACTIONS(2378), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2378), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2628), + [sym__ternary_qmark] = ACTIONS(2382), [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_comment] = STATE(482), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_EQ] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2289), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2289), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_PIPE_PIPE] = ACTIONS(2289), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_GT_GT_GT] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2289), - [anon_sym_STAR_STAR] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2289), - [anon_sym_GT_EQ] = ACTIONS(2289), - [anon_sym_QMARK_QMARK] = ACTIONS(2289), - [anon_sym_instanceof] = ACTIONS(2289), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2289), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2640), - [sym__ternary_qmark] = ACTIONS(2295), + [475] = { + [sym_comment] = STATE(475), + [sym_identifier] = ACTIONS(2358), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_typeof] = ACTIONS(2358), + [anon_sym_import] = ACTIONS(2358), + [anon_sym_from] = ACTIONS(2358), + [anon_sym_with] = ACTIONS(2358), + [anon_sym_var] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_switch] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_of] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_debugger] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_throw] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_yield] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LTtemplate_GT] = ACTIONS(2358), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2358), + [anon_sym_QMARK_DOT] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2358), + [anon_sym_using] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2358), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_STAR_STAR] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_QMARK_QMARK] = ACTIONS(2360), + [anon_sym_instanceof] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2358), + [anon_sym_delete] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_private_property_identifier] = ACTIONS(2358), + [sym_this] = ACTIONS(2358), + [sym_super] = ACTIONS(2358), + [sym_true] = ACTIONS(2358), + [sym_false] = ACTIONS(2358), + [sym_null] = ACTIONS(2358), + [sym_undefined] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_readonly] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), + [anon_sym_declare] = ACTIONS(2358), + [anon_sym_public] = ACTIONS(2358), + [anon_sym_private] = ACTIONS(2358), + [anon_sym_protected] = ACTIONS(2358), + [anon_sym_override] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_any] = ACTIONS(2358), + [anon_sym_number] = ACTIONS(2358), + [anon_sym_boolean] = ACTIONS(2358), + [anon_sym_string] = ACTIONS(2358), + [anon_sym_symbol] = ACTIONS(2358), + [anon_sym_object] = ACTIONS(2358), + [anon_sym_property] = ACTIONS(2358), + [anon_sym_signal] = ACTIONS(2358), + [anon_sym_on] = ACTIONS(2358), + [anon_sym_required] = ACTIONS(2358), + [anon_sym_component] = ACTIONS(2358), + [anon_sym_abstract] = ACTIONS(2358), + [anon_sym_satisfies] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2358), + [anon_sym_enum] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(2630), + [sym__ternary_qmark] = ACTIONS(2364), [sym_html_comment] = ACTIONS(5), }, - [483] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(532), - [sym_empty_statement] = STATE(532), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(483), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [476] = { + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(533), + [sym_empty_statement] = STATE(533), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), + [sym_comment] = STATE(476), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_SEMI] = ACTIONS(2231), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -101209,100 +100061,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(5160), - [sym_expression_statement] = STATE(534), - [sym_empty_statement] = STATE(534), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7738), - [sym_string] = STATE(3749), - [sym_comment] = STATE(484), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [477] = { + [sym_comment] = STATE(477), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_as] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_from] = ACTIONS(2482), + [anon_sym_with] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_of] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_throw] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_QMARK_DOT] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(2482), + [anon_sym_PIPE_PIPE] = ACTIONS(2482), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2482), + [anon_sym_LT_LT] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2482), + [anon_sym_GT_EQ] = ACTIONS(2482), + [anon_sym_QMARK_QMARK] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_property] = ACTIONS(2482), + [anon_sym_signal] = ACTIONS(2482), + [anon_sym_on] = ACTIONS(2482), + [anon_sym_required] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_satisfies] = ACTIONS(2482), + [anon_sym_interface] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [478] = { + [sym_comment] = STATE(478), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2632), + [sym__ternary_qmark] = ACTIONS(2346), + [sym_html_comment] = ACTIONS(5), + }, + [479] = { + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(531), + [sym_empty_statement] = STATE(531), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), + [sym_comment] = STATE(479), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_SEMI] = ACTIONS(2231), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -101325,178 +100409,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(5080), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3775), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(485), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym__type_query_member_expression] = STATE(4512), - [sym__type_query_subscript_expression] = STATE(4513), - [sym__type_query_call_expression] = STATE(4584), - [sym__type_query_instantiation_expression] = STATE(4630), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2642), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [480] = { + [sym_comment] = STATE(480), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2420), + [anon_sym_LT_LT] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_QMARK_QMARK] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2634), + [sym__ternary_qmark] = ACTIONS(2424), + [sym_html_comment] = ACTIONS(5), + }, + [481] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3341), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_assignment_pattern] = STATE(7329), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(481), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(7060), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2177), + [anon_sym_export] = ACTIONS(1160), + [anon_sym_type] = ACTIONS(1160), + [anon_sym_namespace] = ACTIONS(1162), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1160), + [anon_sym_let] = ACTIONS(1160), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1160), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1180), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(2173), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1160), + [anon_sym_readonly] = ACTIONS(1160), + [anon_sym_get] = ACTIONS(1160), + [anon_sym_set] = ACTIONS(1160), + [anon_sym_declare] = ACTIONS(1160), + [anon_sym_public] = ACTIONS(1160), + [anon_sym_private] = ACTIONS(1160), + [anon_sym_protected] = ACTIONS(1160), + [anon_sym_override] = ACTIONS(1160), + [anon_sym_module] = ACTIONS(1160), + [anon_sym_any] = ACTIONS(1160), + [anon_sym_number] = ACTIONS(1160), + [anon_sym_boolean] = ACTIONS(1160), + [anon_sym_string] = ACTIONS(1160), + [anon_sym_symbol] = ACTIONS(1160), + [anon_sym_object] = ACTIONS(1160), + [anon_sym_property] = ACTIONS(1160), + [anon_sym_signal] = ACTIONS(1160), + [anon_sym_on] = ACTIONS(1160), + [anon_sym_required] = ACTIONS(1160), + [anon_sym_component] = ACTIONS(1160), + [sym_html_comment] = ACTIONS(5), + }, + [482] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(482), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5748), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_override_modifier] = STATE(515), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2636), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2638), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(1379), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [483] = { + [sym_import] = STATE(4788), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(483), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym__type_query_member_expression] = STATE(4289), + [sym__type_query_subscript_expression] = STATE(4293), + [sym__type_query_call_expression] = STATE(4353), + [sym__type_query_instantiation_expression] = STATE(4400), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2640), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(486), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [484] = { + [sym_comment] = STATE(484), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2642), + [sym__ternary_qmark] = ACTIONS(2354), + [sym_html_comment] = ACTIONS(5), + }, + [485] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(485), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1513), [anon_sym_as] = ACTIONS(28), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), @@ -101504,13 +101052,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_in] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(28), + [anon_sym_of] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(2265), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(1489), + [anon_sym_EQ_GT] = ACTIONS(1519), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2271), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -101580,767 +101128,538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, + [486] = { + [sym_comment] = STATE(486), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2298), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2298), + [anon_sym_DOT] = ACTIONS(2298), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2298), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_GT_GT] = ACTIONS(2298), + [anon_sym_GT_GT_GT] = ACTIONS(2298), + [anon_sym_LT_LT] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_CARET] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), + [anon_sym_GT_EQ] = ACTIONS(2298), + [anon_sym_QMARK_QMARK] = ACTIONS(2298), + [anon_sym_instanceof] = ACTIONS(2298), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2298), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2644), + [sym__ternary_qmark] = ACTIONS(2304), + [sym_html_comment] = ACTIONS(5), + }, [487] = { - [sym_statement_block] = STATE(522), [sym_comment] = STATE(487), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2644), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_COMMA] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_in] = ACTIONS(2406), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2406), + [anon_sym_DOT] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_QMARK_DOT] = ACTIONS(2406), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_GT_GT] = ACTIONS(2406), + [anon_sym_GT_GT_GT] = ACTIONS(2406), + [anon_sym_LT_LT] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + [anon_sym_CARET] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_PERCENT] = ACTIONS(2406), + [anon_sym_STAR_STAR] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_LT_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2406), + [anon_sym_GT_EQ] = ACTIONS(2406), + [anon_sym_QMARK_QMARK] = ACTIONS(2406), + [anon_sym_instanceof] = ACTIONS(2406), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_satisfies] = ACTIONS(2406), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [sym__automatic_semicolon] = ACTIONS(2408), + [sym__ternary_qmark] = ACTIONS(2408), [sym_html_comment] = ACTIONS(5), }, [488] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), + [sym_import] = STATE(4938), + [sym_expression_statement] = STATE(532), + [sym_empty_statement] = STATE(532), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2950), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7542), + [sym_string] = STATE(3548), [sym_comment] = STATE(488), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1335), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(133), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_void] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, [489] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), [sym_comment] = STATE(489), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6117), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(21), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [sym_identifier] = ACTIONS(2450), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_import] = ACTIONS(2450), + [anon_sym_from] = 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(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = 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(2450), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LTtemplate_GT] = ACTIONS(2450), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [anon_sym_class] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2450), + [anon_sym_function] = ACTIONS(2450), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_new] = ACTIONS(2450), + [anon_sym_using] = ACTIONS(2450), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2450), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_TILDE] = ACTIONS(2450), + [anon_sym_void] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(1287), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1285), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2578), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(21), - [anon_sym_private] = ACTIONS(21), - [anon_sym_protected] = ACTIONS(21), - [anon_sym_override] = ACTIONS(21), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(21), - [anon_sym_number] = ACTIONS(21), - [anon_sym_boolean] = ACTIONS(21), - [anon_sym_string] = ACTIONS(21), - [anon_sym_symbol] = ACTIONS(21), - [anon_sym_object] = ACTIONS(21), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [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(2450), + [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_property] = ACTIONS(2450), + [anon_sym_signal] = ACTIONS(2450), + [anon_sym_on] = ACTIONS(2450), + [anon_sym_required] = ACTIONS(2450), + [anon_sym_component] = ACTIONS(2450), + [anon_sym_abstract] = ACTIONS(2450), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [sym__automatic_semicolon] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2452), [sym_html_comment] = ACTIONS(5), }, [490] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2955), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7183), + [sym_string] = STATE(3548), [sym_comment] = STATE(490), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2480), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_typeof] = ACTIONS(2478), - [anon_sym_import] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_with] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_await] = ACTIONS(2478), - [anon_sym_in] = ACTIONS(2480), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LTtemplate_GT] = ACTIONS(2478), - [anon_sym_GT] = ACTIONS(2480), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_QMARK_DOT] = ACTIONS(2480), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2480), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_instanceof] = ACTIONS(2480), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2478), - [sym_number] = ACTIONS(2478), - [sym_private_property_identifier] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_undefined] = ACTIONS(2478), - [anon_sym_AT] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_object] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_satisfies] = ACTIONS(2480), - [anon_sym_interface] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(2646), - [sym__ternary_qmark] = ACTIONS(2484), - [sym_html_comment] = ACTIONS(5), - }, - [491] = { - [sym_comment] = STATE(491), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_GT] = ACTIONS(2328), - [anon_sym_DOT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_QMARK_DOT] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_AMP_AMP] = ACTIONS(2328), - [anon_sym_PIPE_PIPE] = ACTIONS(2328), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2328), - [anon_sym_LT_LT] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2328), - [anon_sym_STAR_STAR] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), - [anon_sym_GT_EQ] = ACTIONS(2328), - [anon_sym_QMARK_QMARK] = ACTIONS(2328), - [anon_sym_instanceof] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_satisfies] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym__ternary_qmark] = ACTIONS(2330), - [sym_html_comment] = ACTIONS(5), - }, - [492] = { - [sym_comment] = STATE(492), - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2356), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_as] = ACTIONS(2356), - [anon_sym_namespace] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_COMMA] = ACTIONS(2356), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_typeof] = ACTIONS(2354), - [anon_sym_import] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_with] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_await] = ACTIONS(2354), - [anon_sym_in] = ACTIONS(2356), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_debugger] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_throw] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_yield] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LTtemplate_GT] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2356), - [anon_sym_DOT] = ACTIONS(2356), - [anon_sym_DQUOTE] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_class] = ACTIONS(2354), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_QMARK_DOT] = ACTIONS(2356), - [anon_sym_new] = ACTIONS(2354), - [anon_sym_using] = ACTIONS(2354), - [anon_sym_AMP_AMP] = ACTIONS(2356), - [anon_sym_PIPE_PIPE] = ACTIONS(2356), - [anon_sym_GT_GT] = ACTIONS(2356), - [anon_sym_GT_GT_GT] = ACTIONS(2356), - [anon_sym_LT_LT] = ACTIONS(2356), - [anon_sym_AMP] = ACTIONS(2356), - [anon_sym_CARET] = ACTIONS(2356), - [anon_sym_PIPE] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_PERCENT] = ACTIONS(2356), - [anon_sym_STAR_STAR] = ACTIONS(2356), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_LT_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), - [anon_sym_GT_EQ] = ACTIONS(2356), - [anon_sym_QMARK_QMARK] = ACTIONS(2356), - [anon_sym_instanceof] = ACTIONS(2356), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_void] = ACTIONS(2354), - [anon_sym_delete] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2354), - [sym_number] = ACTIONS(2354), - [sym_private_property_identifier] = ACTIONS(2354), - [sym_this] = ACTIONS(2354), - [sym_super] = ACTIONS(2354), - [sym_true] = ACTIONS(2354), - [sym_false] = ACTIONS(2354), - [sym_null] = ACTIONS(2354), - [sym_undefined] = ACTIONS(2354), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_object] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2354), - [anon_sym_satisfies] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2354), - [anon_sym_enum] = ACTIONS(2354), - [sym__automatic_semicolon] = ACTIONS(2648), - [sym__ternary_qmark] = ACTIONS(2360), - [sym_html_comment] = ACTIONS(5), - }, - [493] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3114), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7992), - [sym_string] = STATE(3749), - [sym_comment] = STATE(493), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2650), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2646), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -102363,193 +101682,768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym__automatic_semicolon] = ACTIONS(2648), + [sym_html_comment] = ACTIONS(5), + }, + [491] = { + [sym_comment] = STATE(491), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2296), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2296), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_instanceof] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2650), + [sym__ternary_qmark] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [492] = { + [sym_comment] = STATE(492), + [sym_identifier] = ACTIONS(2366), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2366), + [anon_sym_import] = ACTIONS(2366), + [anon_sym_from] = ACTIONS(2366), + [anon_sym_with] = ACTIONS(2366), + [anon_sym_var] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_switch] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2366), + [anon_sym_in] = ACTIONS(2366), + [anon_sym_of] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_debugger] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_throw] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LTtemplate_GT] = ACTIONS(2366), + [anon_sym_GT] = ACTIONS(2366), + [anon_sym_DOT] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_class] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_function] = ACTIONS(2366), + [anon_sym_QMARK_DOT] = ACTIONS(2366), + [anon_sym_new] = ACTIONS(2366), + [anon_sym_using] = ACTIONS(2366), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE_PIPE] = ACTIONS(2366), + [anon_sym_GT_GT] = ACTIONS(2366), + [anon_sym_GT_GT_GT] = ACTIONS(2366), + [anon_sym_LT_LT] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2366), + [anon_sym_PERCENT] = ACTIONS(2366), + [anon_sym_STAR_STAR] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_LT_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2366), + [anon_sym_GT_EQ] = ACTIONS(2366), + [anon_sym_QMARK_QMARK] = ACTIONS(2366), + [anon_sym_instanceof] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_private_property_identifier] = ACTIONS(2366), + [sym_this] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_true] = ACTIONS(2366), + [sym_false] = ACTIONS(2366), + [sym_null] = ACTIONS(2366), + [sym_undefined] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_readonly] = ACTIONS(2366), + [anon_sym_get] = ACTIONS(2366), + [anon_sym_set] = ACTIONS(2366), + [anon_sym_declare] = ACTIONS(2366), + [anon_sym_public] = ACTIONS(2366), + [anon_sym_private] = ACTIONS(2366), + [anon_sym_protected] = ACTIONS(2366), + [anon_sym_override] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_any] = ACTIONS(2366), + [anon_sym_number] = ACTIONS(2366), + [anon_sym_boolean] = ACTIONS(2366), + [anon_sym_string] = ACTIONS(2366), + [anon_sym_symbol] = ACTIONS(2366), + [anon_sym_object] = ACTIONS(2366), + [anon_sym_property] = ACTIONS(2366), + [anon_sym_signal] = ACTIONS(2366), + [anon_sym_on] = ACTIONS(2366), + [anon_sym_required] = ACTIONS(2366), + [anon_sym_component] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_satisfies] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), + [sym__automatic_semicolon] = ACTIONS(2368), + [sym__ternary_qmark] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [493] = { + [sym_comment] = STATE(493), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_as] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_typeof] = ACTIONS(2386), + [anon_sym_import] = ACTIONS(2386), + [anon_sym_from] = ACTIONS(2386), + [anon_sym_with] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_switch] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2386), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_of] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_do] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_debugger] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_throw] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_yield] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LTtemplate_GT] = ACTIONS(2386), + [anon_sym_GT] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2388), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_class] = ACTIONS(2386), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_function] = ACTIONS(2386), + [anon_sym_QMARK_DOT] = ACTIONS(2388), + [anon_sym_new] = ACTIONS(2386), + [anon_sym_using] = ACTIONS(2386), + [anon_sym_AMP_AMP] = ACTIONS(2388), + [anon_sym_PIPE_PIPE] = ACTIONS(2388), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2388), + [anon_sym_LT_LT] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2388), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_PERCENT] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2388), + [anon_sym_GT_EQ] = ACTIONS(2388), + [anon_sym_QMARK_QMARK] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2386), + [anon_sym_delete] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_private_property_identifier] = ACTIONS(2386), + [sym_this] = ACTIONS(2386), + [sym_super] = ACTIONS(2386), + [sym_true] = ACTIONS(2386), + [sym_false] = ACTIONS(2386), + [sym_null] = ACTIONS(2386), + [sym_undefined] = ACTIONS(2386), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_readonly] = ACTIONS(2386), + [anon_sym_get] = ACTIONS(2386), + [anon_sym_set] = ACTIONS(2386), + [anon_sym_declare] = ACTIONS(2386), + [anon_sym_public] = ACTIONS(2386), + [anon_sym_private] = ACTIONS(2386), + [anon_sym_protected] = ACTIONS(2386), + [anon_sym_override] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_any] = ACTIONS(2386), + [anon_sym_number] = ACTIONS(2386), + [anon_sym_boolean] = ACTIONS(2386), + [anon_sym_string] = ACTIONS(2386), + [anon_sym_symbol] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(2386), + [anon_sym_property] = ACTIONS(2386), + [anon_sym_signal] = ACTIONS(2386), + [anon_sym_on] = ACTIONS(2386), + [anon_sym_required] = ACTIONS(2386), + [anon_sym_component] = ACTIONS(2386), + [anon_sym_abstract] = ACTIONS(2386), + [anon_sym_satisfies] = ACTIONS(2388), + [anon_sym_interface] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), [sym__automatic_semicolon] = ACTIONS(2652), + [sym__ternary_qmark] = ACTIONS(2392), [sym_html_comment] = ACTIONS(5), }, [494] = { [sym_comment] = STATE(494), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_as] = ACTIONS(2376), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_in] = ACTIONS(2376), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_LTtemplate_GT] = ACTIONS(2374), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_DOT] = ACTIONS(2376), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_QMARK_DOT] = ACTIONS(2376), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_GT_GT_GT] = ACTIONS(2376), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_PERCENT] = ACTIONS(2376), - [anon_sym_STAR_STAR] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_LT_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), - [anon_sym_GT_EQ] = ACTIONS(2376), - [anon_sym_QMARK_QMARK] = ACTIONS(2376), - [anon_sym_instanceof] = ACTIONS(2376), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_number] = ACTIONS(2374), - [sym_private_property_identifier] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_satisfies] = ACTIONS(2376), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2420), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2420), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2420), + [anon_sym_LT_LT] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_PERCENT] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_QMARK_QMARK] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2420), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), [sym__automatic_semicolon] = ACTIONS(2654), - [sym__ternary_qmark] = ACTIONS(2380), + [sym__ternary_qmark] = ACTIONS(2424), [sym_html_comment] = ACTIONS(5), }, [495] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), [sym_comment] = STATE(495), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6276), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_as] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_from] = ACTIONS(2482), + [anon_sym_with] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_of] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_throw] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_QMARK_DOT] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(2482), + [anon_sym_PIPE_PIPE] = ACTIONS(2482), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2482), + [anon_sym_LT_LT] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2482), + [anon_sym_GT_EQ] = ACTIONS(2482), + [anon_sym_QMARK_QMARK] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_property] = ACTIONS(2482), + [anon_sym_signal] = ACTIONS(2482), + [anon_sym_on] = ACTIONS(2482), + [anon_sym_required] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_satisfies] = ACTIONS(2482), + [anon_sym_interface] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [496] = { + [sym_comment] = STATE(496), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_COMMA] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_in] = ACTIONS(2406), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2406), + [anon_sym_DOT] = ACTIONS(2406), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_QMARK_DOT] = ACTIONS(2406), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_GT_GT] = ACTIONS(2406), + [anon_sym_GT_GT_GT] = ACTIONS(2406), + [anon_sym_LT_LT] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + [anon_sym_CARET] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_PERCENT] = ACTIONS(2406), + [anon_sym_STAR_STAR] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_LT_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2406), + [anon_sym_GT_EQ] = ACTIONS(2406), + [anon_sym_QMARK_QMARK] = ACTIONS(2406), + [anon_sym_instanceof] = ACTIONS(2406), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_satisfies] = ACTIONS(2406), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), + [sym__automatic_semicolon] = ACTIONS(2408), + [sym__ternary_qmark] = ACTIONS(2408), + [sym_html_comment] = ACTIONS(5), + }, + [497] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(497), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5745), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -102581,8 +102475,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -102617,190 +102511,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, - [496] = { - [sym_comment] = STATE(496), - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_as] = ACTIONS(2396), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_typeof] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_with] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_await] = ACTIONS(2394), - [anon_sym_in] = ACTIONS(2396), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_debugger] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_throw] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LTtemplate_GT] = ACTIONS(2394), - [anon_sym_GT] = ACTIONS(2396), - [anon_sym_DOT] = ACTIONS(2396), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_QMARK_DOT] = ACTIONS(2396), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_using] = ACTIONS(2394), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_GT_GT_GT] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_PERCENT] = ACTIONS(2396), - [anon_sym_STAR_STAR] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_LT_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2396), - [anon_sym_QMARK_QMARK] = ACTIONS(2396), - [anon_sym_instanceof] = ACTIONS(2396), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_void] = ACTIONS(2394), - [anon_sym_delete] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2394), - [sym_number] = ACTIONS(2394), - [sym_private_property_identifier] = ACTIONS(2394), - [sym_this] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_undefined] = ACTIONS(2394), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_abstract] = ACTIONS(2394), - [anon_sym_satisfies] = ACTIONS(2396), - [anon_sym_interface] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [sym__automatic_semicolon] = ACTIONS(2658), - [sym__ternary_qmark] = ACTIONS(2400), - [sym_html_comment] = ACTIONS(5), - }, - [497] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3067), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7690), - [sym_string] = STATE(3749), - [sym_comment] = STATE(497), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [498] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2842), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7252), + [sym_string] = STATE(3548), + [sym_comment] = STATE(498), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2660), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2658), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -102823,78 +102602,538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym__automatic_semicolon] = ACTIONS(2660), + [sym_html_comment] = ACTIONS(5), + }, + [499] = { + [sym_comment] = STATE(499), + [sym_identifier] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_as] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_COMMA] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_import] = ACTIONS(2474), + [anon_sym_from] = ACTIONS(2474), + [anon_sym_with] = ACTIONS(2474), + [anon_sym_var] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_await] = ACTIONS(2474), + [anon_sym_in] = ACTIONS(2476), + [anon_sym_of] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_debugger] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_throw] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LTtemplate_GT] = ACTIONS(2474), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2476), + [anon_sym_DQUOTE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2474), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(2474), + [anon_sym_QMARK_DOT] = ACTIONS(2476), + [anon_sym_new] = ACTIONS(2474), + [anon_sym_using] = ACTIONS(2474), + [anon_sym_AMP_AMP] = ACTIONS(2476), + [anon_sym_PIPE_PIPE] = ACTIONS(2476), + [anon_sym_GT_GT] = ACTIONS(2476), + [anon_sym_GT_GT_GT] = ACTIONS(2476), + [anon_sym_LT_LT] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_SLASH] = ACTIONS(2474), + [anon_sym_PERCENT] = ACTIONS(2476), + [anon_sym_STAR_STAR] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2474), + [anon_sym_LT_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2476), + [anon_sym_GT_EQ] = ACTIONS(2476), + [anon_sym_QMARK_QMARK] = ACTIONS(2476), + [anon_sym_instanceof] = ACTIONS(2476), + [anon_sym_TILDE] = ACTIONS(2474), + [anon_sym_void] = ACTIONS(2474), + [anon_sym_delete] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2474), + [sym_number] = ACTIONS(2474), + [sym_private_property_identifier] = ACTIONS(2474), + [sym_this] = ACTIONS(2474), + [sym_super] = ACTIONS(2474), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [sym_null] = ACTIONS(2474), + [sym_undefined] = ACTIONS(2474), + [anon_sym_AT] = ACTIONS(2474), + [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_property] = ACTIONS(2474), + [anon_sym_signal] = ACTIONS(2474), + [anon_sym_on] = ACTIONS(2474), + [anon_sym_required] = ACTIONS(2474), + [anon_sym_component] = ACTIONS(2474), + [anon_sym_abstract] = ACTIONS(2474), + [anon_sym_satisfies] = ACTIONS(2476), + [anon_sym_interface] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), [sym__automatic_semicolon] = ACTIONS(2662), + [sym__ternary_qmark] = ACTIONS(2480), [sym_html_comment] = ACTIONS(5), }, - [498] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(498), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6265), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [500] = { + [sym_comment] = STATE(500), + [sym_identifier] = ACTIONS(2426), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2428), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_as] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_typeof] = ACTIONS(2426), + [anon_sym_import] = ACTIONS(2426), + [anon_sym_from] = ACTIONS(2426), + [anon_sym_with] = ACTIONS(2426), + [anon_sym_var] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_const] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_if] = ACTIONS(2426), + [anon_sym_switch] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_await] = ACTIONS(2426), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_of] = ACTIONS(2426), + [anon_sym_while] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2426), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2426), + [anon_sym_debugger] = ACTIONS(2426), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_throw] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_yield] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_LTtemplate_GT] = ACTIONS(2426), + [anon_sym_GT] = ACTIONS(2428), + [anon_sym_DOT] = ACTIONS(2428), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_class] = ACTIONS(2426), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2426), + [anon_sym_QMARK_DOT] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_using] = ACTIONS(2426), + [anon_sym_AMP_AMP] = ACTIONS(2428), + [anon_sym_PIPE_PIPE] = ACTIONS(2428), + [anon_sym_GT_GT] = ACTIONS(2428), + [anon_sym_GT_GT_GT] = ACTIONS(2428), + [anon_sym_LT_LT] = ACTIONS(2428), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_CARET] = ACTIONS(2428), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_SLASH] = ACTIONS(2426), + [anon_sym_PERCENT] = ACTIONS(2428), + [anon_sym_STAR_STAR] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_LT_EQ] = ACTIONS(2428), + [anon_sym_EQ_EQ] = ACTIONS(2428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2428), + [anon_sym_BANG_EQ] = ACTIONS(2428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2428), + [anon_sym_GT_EQ] = ACTIONS(2428), + [anon_sym_QMARK_QMARK] = ACTIONS(2428), + [anon_sym_instanceof] = ACTIONS(2428), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_void] = ACTIONS(2426), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_DASH_DASH] = ACTIONS(2426), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2426), + [sym_number] = ACTIONS(2426), + [sym_private_property_identifier] = ACTIONS(2426), + [sym_this] = ACTIONS(2426), + [sym_super] = ACTIONS(2426), + [sym_true] = ACTIONS(2426), + [sym_false] = ACTIONS(2426), + [sym_null] = ACTIONS(2426), + [sym_undefined] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2426), + [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_property] = ACTIONS(2426), + [anon_sym_signal] = ACTIONS(2426), + [anon_sym_on] = ACTIONS(2426), + [anon_sym_required] = ACTIONS(2426), + [anon_sym_component] = ACTIONS(2426), + [anon_sym_abstract] = ACTIONS(2426), + [anon_sym_satisfies] = ACTIONS(2428), + [anon_sym_interface] = ACTIONS(2426), + [anon_sym_enum] = ACTIONS(2426), + [sym__automatic_semicolon] = ACTIONS(2664), + [sym__ternary_qmark] = ACTIONS(2432), + [sym_html_comment] = ACTIONS(5), + }, + [501] = { + [sym_comment] = STATE(501), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_DOT] = ACTIONS(2398), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2398), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_STAR_STAR] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2398), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_QMARK_QMARK] = ACTIONS(2398), + [anon_sym_instanceof] = ACTIONS(2398), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2398), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2666), + [sym__ternary_qmark] = ACTIONS(2402), + [sym_html_comment] = ACTIONS(5), + }, + [502] = { + [sym_comment] = STATE(502), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_in] = ACTIONS(2378), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2378), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_AMP_AMP] = ACTIONS(2378), + [anon_sym_PIPE_PIPE] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_GT_GT_GT] = ACTIONS(2378), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_PERCENT] = ACTIONS(2378), + [anon_sym_STAR_STAR] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2378), + [anon_sym_instanceof] = ACTIONS(2378), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2378), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2668), + [sym__ternary_qmark] = ACTIONS(2382), + [sym_html_comment] = ACTIONS(5), + }, + [503] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(503), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5749), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1265), [anon_sym_export] = ACTIONS(21), [anon_sym_type] = ACTIONS(21), @@ -102926,13 +103165,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2664), + [sym_this] = ACTIONS(2670), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), @@ -102940,7 +103179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1285), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2672), [anon_sym_get] = ACTIONS(21), [anon_sym_set] = ACTIONS(21), [anon_sym_declare] = ACTIONS(21), @@ -102962,190 +103201,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(21), [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_comment] = STATE(499), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [504] = { + [sym_comment] = STATE(504), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2668), - [sym__ternary_qmark] = ACTIONS(2336), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3024), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7440), - [sym_string] = STATE(3749), - [sym_comment] = STATE(500), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [505] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2953), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7435), + [sym_string] = STATE(3548), + [sym_comment] = STATE(505), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2670), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2674), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -103168,385 +103407,615 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym__automatic_semicolon] = ACTIONS(2672), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym__automatic_semicolon] = ACTIONS(2676), [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(501), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_in] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(133), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_void] = ACTIONS(122), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), + [506] = { + [sym_comment] = STATE(506), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2412), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2412), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_PERCENT] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_LT_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2412), + [anon_sym_GT_EQ] = ACTIONS(2412), + [anon_sym_QMARK_QMARK] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2412), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2678), + [sym__ternary_qmark] = ACTIONS(2416), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3143), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7552), - [sym_string] = STATE(3749), - [sym_comment] = STATE(502), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [507] = { + [sym_comment] = STATE(507), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2444), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_as] = ACTIONS(2444), + [anon_sym_namespace] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_COMMA] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_typeof] = ACTIONS(2442), + [anon_sym_import] = ACTIONS(2442), + [anon_sym_from] = ACTIONS(2442), + [anon_sym_with] = ACTIONS(2442), + [anon_sym_var] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_switch] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_await] = ACTIONS(2442), + [anon_sym_in] = ACTIONS(2444), + [anon_sym_of] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_debugger] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_throw] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LTtemplate_GT] = ACTIONS(2442), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_DOT] = ACTIONS(2444), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_class] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_QMARK_DOT] = ACTIONS(2444), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_using] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2444), + [anon_sym_PIPE_PIPE] = ACTIONS(2444), + [anon_sym_GT_GT] = ACTIONS(2444), + [anon_sym_GT_GT_GT] = ACTIONS(2444), + [anon_sym_LT_LT] = ACTIONS(2444), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_PERCENT] = ACTIONS(2444), + [anon_sym_STAR_STAR] = ACTIONS(2444), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_LT_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), + [anon_sym_GT_EQ] = ACTIONS(2444), + [anon_sym_QMARK_QMARK] = ACTIONS(2444), + [anon_sym_instanceof] = ACTIONS(2444), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_void] = ACTIONS(2442), + [anon_sym_delete] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym__automatic_semicolon] = ACTIONS(2676), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_number] = ACTIONS(2442), + [sym_private_property_identifier] = ACTIONS(2442), + [sym_this] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_true] = ACTIONS(2442), + [sym_false] = ACTIONS(2442), + [sym_null] = ACTIONS(2442), + [sym_undefined] = ACTIONS(2442), + [anon_sym_AT] = ACTIONS(2442), + [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_property] = ACTIONS(2442), + [anon_sym_signal] = ACTIONS(2442), + [anon_sym_on] = ACTIONS(2442), + [anon_sym_required] = ACTIONS(2442), + [anon_sym_component] = ACTIONS(2442), + [anon_sym_abstract] = ACTIONS(2442), + [anon_sym_satisfies] = ACTIONS(2444), + [anon_sym_interface] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), + [sym__automatic_semicolon] = ACTIONS(2680), + [sym__ternary_qmark] = ACTIONS(2448), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3045), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8100), - [sym_string] = STATE(3749), - [sym_comment] = STATE(503), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [508] = { + [sym_comment] = STATE(508), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_COMMA] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_in] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_DOT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_QMARK_DOT] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_STAR_STAR] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_instanceof] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym__automatic_semicolon] = ACTIONS(2680), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_satisfies] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym__ternary_qmark] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_comment] = STATE(504), + [509] = { + [sym_comment] = STATE(509), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_COMMA] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_in] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_DOT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_QMARK_DOT] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_STAR_STAR] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_instanceof] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_satisfies] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2682), + [sym__ternary_qmark] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [510] = { + [sym_comment] = STATE(510), + [sym_identifier] = ACTIONS(2358), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_typeof] = ACTIONS(2358), + [anon_sym_import] = ACTIONS(2358), + [anon_sym_from] = ACTIONS(2358), + [anon_sym_with] = ACTIONS(2358), + [anon_sym_var] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_switch] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2358), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_of] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_debugger] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_throw] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_yield] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LTtemplate_GT] = ACTIONS(2358), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2358), + [anon_sym_QMARK_DOT] = ACTIONS(2360), + [anon_sym_new] = ACTIONS(2358), + [anon_sym_using] = ACTIONS(2358), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2358), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_STAR_STAR] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_QMARK_QMARK] = ACTIONS(2360), + [anon_sym_instanceof] = ACTIONS(2360), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2358), + [anon_sym_delete] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_private_property_identifier] = ACTIONS(2358), + [sym_this] = ACTIONS(2358), + [sym_super] = ACTIONS(2358), + [sym_true] = ACTIONS(2358), + [sym_false] = ACTIONS(2358), + [sym_null] = ACTIONS(2358), + [sym_undefined] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_readonly] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), + [anon_sym_declare] = ACTIONS(2358), + [anon_sym_public] = ACTIONS(2358), + [anon_sym_private] = ACTIONS(2358), + [anon_sym_protected] = ACTIONS(2358), + [anon_sym_override] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_any] = ACTIONS(2358), + [anon_sym_number] = ACTIONS(2358), + [anon_sym_boolean] = ACTIONS(2358), + [anon_sym_string] = ACTIONS(2358), + [anon_sym_symbol] = ACTIONS(2358), + [anon_sym_object] = ACTIONS(2358), + [anon_sym_property] = ACTIONS(2358), + [anon_sym_signal] = ACTIONS(2358), + [anon_sym_on] = ACTIONS(2358), + [anon_sym_required] = ACTIONS(2358), + [anon_sym_component] = ACTIONS(2358), + [anon_sym_abstract] = ACTIONS(2358), + [anon_sym_satisfies] = ACTIONS(2360), + [anon_sym_interface] = ACTIONS(2358), + [anon_sym_enum] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(2684), + [sym__ternary_qmark] = ACTIONS(2364), + [sym_html_comment] = ACTIONS(5), + }, + [511] = { + [sym_comment] = STATE(511), [sym_identifier] = ACTIONS(2466), [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2468), + [anon_sym_STAR] = ACTIONS(2466), [anon_sym_type] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2468), + [anon_sym_as] = ACTIONS(2466), [anon_sym_namespace] = ACTIONS(2466), [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(2468), + [anon_sym_COMMA] = ACTIONS(2466), [anon_sym_RBRACE] = ACTIONS(2466), [anon_sym_typeof] = ACTIONS(2466), [anon_sym_import] = ACTIONS(2466), @@ -103561,7 +104030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2466), [anon_sym_LPAREN] = ACTIONS(2466), [anon_sym_await] = ACTIONS(2466), - [anon_sym_in] = ACTIONS(2468), + [anon_sym_in] = ACTIONS(2466), [anon_sym_of] = ACTIONS(2466), [anon_sym_while] = ACTIONS(2466), [anon_sym_do] = ACTIONS(2466), @@ -103575,38 +104044,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2466), [anon_sym_LBRACK] = ACTIONS(2466), [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_DOT] = ACTIONS(2468), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_DOT] = ACTIONS(2466), [anon_sym_DQUOTE] = ACTIONS(2466), [anon_sym_SQUOTE] = ACTIONS(2466), [anon_sym_class] = ACTIONS(2466), [anon_sym_async] = ACTIONS(2466), [anon_sym_function] = ACTIONS(2466), - [anon_sym_QMARK_DOT] = ACTIONS(2468), + [anon_sym_QMARK_DOT] = ACTIONS(2466), [anon_sym_new] = ACTIONS(2466), [anon_sym_using] = ACTIONS(2466), - [anon_sym_AMP_AMP] = ACTIONS(2468), - [anon_sym_PIPE_PIPE] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_GT_GT_GT] = ACTIONS(2468), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2466), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2466), [anon_sym_PLUS] = ACTIONS(2466), [anon_sym_DASH] = ACTIONS(2466), [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_STAR_STAR] = ACTIONS(2468), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_STAR_STAR] = ACTIONS(2466), [anon_sym_LT] = ACTIONS(2466), - [anon_sym_LT_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2468), - [anon_sym_QMARK_QMARK] = ACTIONS(2468), - [anon_sym_instanceof] = ACTIONS(2468), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_instanceof] = ACTIONS(2466), [anon_sym_TILDE] = ACTIONS(2466), [anon_sym_void] = ACTIONS(2466), [anon_sym_delete] = ACTIONS(2466), @@ -103645,360 +104114,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2466), [anon_sym_component] = ACTIONS(2466), [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(2468), + [anon_sym_satisfies] = ACTIONS(2466), [anon_sym_interface] = ACTIONS(2466), [anon_sym_enum] = ACTIONS(2466), - [sym__automatic_semicolon] = ACTIONS(2470), - [sym__ternary_qmark] = ACTIONS(2470), - [sym_html_comment] = ACTIONS(5), - }, - [505] = { - [sym_comment] = STATE(505), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2287), - [anon_sym_DOT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2287), - [anon_sym_PIPE_PIPE] = ACTIONS(2287), - [anon_sym_GT_GT] = ACTIONS(2287), - [anon_sym_GT_GT_GT] = ACTIONS(2287), - [anon_sym_LT_LT] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2287), - [anon_sym_STAR_STAR] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), - [anon_sym_GT_EQ] = ACTIONS(2287), - [anon_sym_QMARK_QMARK] = ACTIONS(2287), - [anon_sym_instanceof] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2682), - [sym__ternary_qmark] = ACTIONS(2448), - [sym_html_comment] = ACTIONS(5), - }, - [506] = { - [sym_comment] = STATE(506), - [sym_identifier] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_as] = ACTIONS(2344), - [anon_sym_namespace] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_typeof] = ACTIONS(2342), - [anon_sym_import] = ACTIONS(2342), - [anon_sym_from] = ACTIONS(2342), - [anon_sym_with] = ACTIONS(2342), - [anon_sym_var] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_switch] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(2342), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_debugger] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_throw] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_yield] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LTtemplate_GT] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2344), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), - [anon_sym_class] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_QMARK_DOT] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2342), - [anon_sym_using] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2344), - [anon_sym_PIPE_PIPE] = ACTIONS(2344), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2344), - [anon_sym_LT_LT] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2344), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2342), - [anon_sym_PERCENT] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2344), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_LT_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2344), - [anon_sym_GT_EQ] = ACTIONS(2344), - [anon_sym_QMARK_QMARK] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_void] = ACTIONS(2342), - [anon_sym_delete] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), - [sym_private_property_identifier] = ACTIONS(2342), - [sym_this] = ACTIONS(2342), - [sym_super] = ACTIONS(2342), - [sym_true] = ACTIONS(2342), - [sym_false] = ACTIONS(2342), - [sym_null] = ACTIONS(2342), - [sym_undefined] = ACTIONS(2342), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_readonly] = ACTIONS(2342), - [anon_sym_get] = ACTIONS(2342), - [anon_sym_set] = ACTIONS(2342), - [anon_sym_declare] = ACTIONS(2342), - [anon_sym_public] = ACTIONS(2342), - [anon_sym_private] = ACTIONS(2342), - [anon_sym_protected] = ACTIONS(2342), - [anon_sym_override] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_any] = ACTIONS(2342), - [anon_sym_number] = ACTIONS(2342), - [anon_sym_boolean] = ACTIONS(2342), - [anon_sym_string] = ACTIONS(2342), - [anon_sym_symbol] = ACTIONS(2342), - [anon_sym_object] = ACTIONS(2342), - [anon_sym_property] = ACTIONS(2342), - [anon_sym_signal] = ACTIONS(2342), - [anon_sym_on] = ACTIONS(2342), - [anon_sym_required] = ACTIONS(2342), - [anon_sym_component] = ACTIONS(2342), - [anon_sym_abstract] = ACTIONS(2342), - [anon_sym_satisfies] = ACTIONS(2344), - [anon_sym_interface] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(2684), - [sym__ternary_qmark] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(2468), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_comment] = STATE(507), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_as] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_QMARK_DOT] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_AMP_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2350), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), - [anon_sym_GT_EQ] = ACTIONS(2350), - [anon_sym_QMARK_QMARK] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), + [512] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2991), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7353), + [sym_string] = STATE(3548), + [sym_comment] = STATE(512), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2686), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_satisfies] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2352), - [sym__ternary_qmark] = ACTIONS(2352), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym__automatic_semicolon] = ACTIONS(2688), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_comment] = STATE(508), + [513] = { + [sym_comment] = STATE(513), [sym_identifier] = ACTIONS(2434), [anon_sym_export] = ACTIONS(2434), [anon_sym_STAR] = ACTIONS(2434), @@ -104112,16 +104351,591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2436), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_comment] = STATE(509), + [514] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(514), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_in] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_void] = ACTIONS(122), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [515] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(515), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5976), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(2690), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2692), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [516] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2195), + [sym_subscript_expression] = STATE(2195), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5273), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(516), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_pattern] = STATE(5521), + [sym_rest_pattern] = STATE(5283), + [sym_non_null_expression] = STATE(2195), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1265), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(21), + [anon_sym_namespace] = ACTIONS(30), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(21), + [anon_sym_let] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(21), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(62), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1275), + [anon_sym_using] = ACTIONS(70), + [anon_sym_DOT_DOT_DOT] = ACTIONS(74), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(1291), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1285), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(21), + [anon_sym_readonly] = ACTIONS(2602), + [anon_sym_get] = ACTIONS(21), + [anon_sym_set] = ACTIONS(21), + [anon_sym_declare] = ACTIONS(21), + [anon_sym_public] = ACTIONS(21), + [anon_sym_private] = ACTIONS(21), + [anon_sym_protected] = ACTIONS(21), + [anon_sym_override] = ACTIONS(21), + [anon_sym_module] = ACTIONS(21), + [anon_sym_any] = ACTIONS(21), + [anon_sym_number] = ACTIONS(21), + [anon_sym_boolean] = ACTIONS(21), + [anon_sym_string] = ACTIONS(21), + [anon_sym_symbol] = ACTIONS(21), + [anon_sym_object] = ACTIONS(21), + [anon_sym_property] = ACTIONS(21), + [anon_sym_signal] = ACTIONS(21), + [anon_sym_on] = ACTIONS(21), + [anon_sym_required] = ACTIONS(21), + [anon_sym_component] = ACTIONS(21), + [sym_html_comment] = ACTIONS(5), + }, + [517] = { + [sym_comment] = STATE(517), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2694), + [sym__ternary_qmark] = ACTIONS(2354), + [sym_html_comment] = ACTIONS(5), + }, + [518] = { + [sym_comment] = STATE(518), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2696), + [sym__ternary_qmark] = ACTIONS(2346), + [sym_html_comment] = ACTIONS(5), + }, + [519] = { + [sym_comment] = STATE(519), [sym_identifier] = ACTIONS(2332), [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), [anon_sym_namespace] = ACTIONS(2332), [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), [anon_sym_RBRACE] = ACTIONS(2332), [anon_sym_typeof] = ACTIONS(2332), [anon_sym_import] = ACTIONS(2332), @@ -104136,7 +104950,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2332), [anon_sym_LPAREN] = ACTIONS(2332), [anon_sym_await] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), + [anon_sym_in] = ACTIONS(2334), [anon_sym_of] = ACTIONS(2332), [anon_sym_while] = ACTIONS(2332), [anon_sym_do] = ACTIONS(2332), @@ -104150,38 +104964,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2332), [anon_sym_LBRACK] = ACTIONS(2332), [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), [anon_sym_DQUOTE] = ACTIONS(2332), [anon_sym_SQUOTE] = ACTIONS(2332), [anon_sym_class] = ACTIONS(2332), [anon_sym_async] = ACTIONS(2332), [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), [anon_sym_new] = ACTIONS(2332), [anon_sym_using] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), [anon_sym_PLUS] = ACTIONS(2332), [anon_sym_DASH] = ACTIONS(2332), [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), [anon_sym_TILDE] = ACTIONS(2332), [anon_sym_void] = ACTIONS(2332), [anon_sym_delete] = ACTIONS(2332), @@ -104220,197 +105034,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(2332), [anon_sym_component] = ACTIONS(2332), [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), [anon_sym_interface] = ACTIONS(2332), [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2336), - [sym__ternary_qmark] = ACTIONS(2336), + [sym__automatic_semicolon] = ACTIONS(2698), + [sym__ternary_qmark] = ACTIONS(2338), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2349), - [sym_subscript_expression] = STATE(2349), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5242), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(510), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_pattern] = STATE(6085), - [sym_rest_pattern] = STATE(5260), - [sym_non_null_expression] = STATE(2349), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1265), - [anon_sym_export] = ACTIONS(21), - [anon_sym_type] = ACTIONS(21), - [anon_sym_namespace] = ACTIONS(30), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [520] = { + [sym_comment] = STATE(520), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2470), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_instanceof] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2472), + [sym__ternary_qmark] = ACTIONS(2472), + [sym_html_comment] = ACTIONS(5), + }, + [521] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2872), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7323), + [sym_string] = STATE(3548), + [sym_comment] = STATE(521), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(21), - [anon_sym_let] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(21), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2700), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(62), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1275), - [anon_sym_using] = ACTIONS(70), - [anon_sym_DOT_DOT_DOT] = ACTIONS(74), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(2686), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1285), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(21), - [anon_sym_readonly] = ACTIONS(2688), - [anon_sym_get] = ACTIONS(21), - [anon_sym_set] = ACTIONS(21), - [anon_sym_declare] = ACTIONS(21), - [anon_sym_public] = ACTIONS(21), - [anon_sym_private] = ACTIONS(21), - [anon_sym_protected] = ACTIONS(21), - [anon_sym_override] = ACTIONS(21), - [anon_sym_module] = ACTIONS(21), - [anon_sym_any] = ACTIONS(21), - [anon_sym_number] = ACTIONS(21), - [anon_sym_boolean] = ACTIONS(21), - [anon_sym_string] = ACTIONS(21), - [anon_sym_symbol] = ACTIONS(21), - [anon_sym_object] = ACTIONS(21), - [anon_sym_property] = ACTIONS(21), - [anon_sym_signal] = ACTIONS(21), - [anon_sym_on] = ACTIONS(21), - [anon_sym_required] = ACTIONS(21), - [anon_sym_component] = ACTIONS(21), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym__automatic_semicolon] = ACTIONS(2702), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8008), - [sym_string] = STATE(3749), - [sym_comment] = STATE(511), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [522] = { + [sym_comment] = STATE(522), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_as] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_from] = ACTIONS(2462), + [anon_sym_with] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_debugger] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2462), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_QMARK_DOT] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_instanceof] = ACTIONS(2462), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_void] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_undefined] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_override] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_object] = ACTIONS(2462), + [anon_sym_property] = ACTIONS(2462), + [anon_sym_signal] = ACTIONS(2462), + [anon_sym_on] = ACTIONS(2462), + [anon_sym_required] = ACTIONS(2462), + [anon_sym_component] = ACTIONS(2462), + [anon_sym_abstract] = ACTIONS(2462), + [anon_sym_satisfies] = ACTIONS(2462), + [anon_sym_interface] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [sym__automatic_semicolon] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2464), + [sym_html_comment] = ACTIONS(5), + }, + [523] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2930), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7906), + [sym_string] = STATE(3548), + [sym_comment] = STATE(523), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2704), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -104433,262 +105477,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym__automatic_semicolon] = ACTIONS(2692), - [sym_html_comment] = ACTIONS(5), - }, - [512] = { - [sym_comment] = STATE(512), - [sym_identifier] = ACTIONS(2410), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_typeof] = ACTIONS(2410), - [anon_sym_import] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_with] = ACTIONS(2410), - [anon_sym_var] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_switch] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_in] = ACTIONS(2410), - [anon_sym_of] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_debugger] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_throw] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LTtemplate_GT] = ACTIONS(2410), - [anon_sym_GT] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_function] = ACTIONS(2410), - [anon_sym_QMARK_DOT] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_using] = ACTIONS(2410), - [anon_sym_AMP_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2410), - [anon_sym_GT_GT] = ACTIONS(2410), - [anon_sym_GT_GT_GT] = ACTIONS(2410), - [anon_sym_LT_LT] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_CARET] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2410), - [anon_sym_PERCENT] = ACTIONS(2410), - [anon_sym_STAR_STAR] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_LT_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), - [anon_sym_GT_EQ] = ACTIONS(2410), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_instanceof] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_void] = ACTIONS(2410), - [anon_sym_delete] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2410), - [sym_number] = ACTIONS(2410), - [sym_private_property_identifier] = ACTIONS(2410), - [sym_this] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), - [sym_null] = ACTIONS(2410), - [sym_undefined] = ACTIONS(2410), - [anon_sym_AT] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_signal] = ACTIONS(2410), - [anon_sym_on] = ACTIONS(2410), - [anon_sym_required] = ACTIONS(2410), - [anon_sym_component] = ACTIONS(2410), - [anon_sym_abstract] = ACTIONS(2410), - [anon_sym_satisfies] = ACTIONS(2410), - [anon_sym_interface] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [sym__automatic_semicolon] = ACTIONS(2412), - [sym__ternary_qmark] = ACTIONS(2412), - [sym_html_comment] = ACTIONS(5), - }, - [513] = { - [sym_comment] = STATE(513), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_as] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_COMMA] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_typeof] = ACTIONS(2474), - [anon_sym_import] = ACTIONS(2474), - [anon_sym_from] = ACTIONS(2474), - [anon_sym_with] = ACTIONS(2474), - [anon_sym_var] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_await] = ACTIONS(2474), - [anon_sym_in] = ACTIONS(2474), - [anon_sym_of] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_debugger] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LTtemplate_GT] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_class] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_QMARK_DOT] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_GT_GT_GT] = ACTIONS(2474), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_PERCENT] = ACTIONS(2474), - [anon_sym_STAR_STAR] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2474), - [anon_sym_QMARK_QMARK] = ACTIONS(2474), - [anon_sym_instanceof] = ACTIONS(2474), - [anon_sym_TILDE] = ACTIONS(2474), - [anon_sym_void] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2474), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_undefined] = ACTIONS(2474), - [anon_sym_AT] = ACTIONS(2474), - [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_property] = ACTIONS(2474), - [anon_sym_signal] = ACTIONS(2474), - [anon_sym_on] = ACTIONS(2474), - [anon_sym_required] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(2474), - [anon_sym_interface] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym__automatic_semicolon] = ACTIONS(2706), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_comment] = STATE(514), + [524] = { + [sym_comment] = STATE(524), [sym_identifier] = ACTIONS(2438), [anon_sym_export] = ACTIONS(2438), [anon_sym_STAR] = ACTIONS(2438), @@ -104802,650 +105616,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2440), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_comment] = STATE(515), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_as] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_COMMA] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_in] = ACTIONS(2384), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_LTtemplate_GT] = ACTIONS(2382), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_QMARK_DOT] = ACTIONS(2384), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2382), - [anon_sym_AMP_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_GT_GT_GT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_STAR_STAR] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2384), - [anon_sym_QMARK_QMARK] = ACTIONS(2384), - [anon_sym_instanceof] = ACTIONS(2384), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_number] = ACTIONS(2382), - [sym_private_property_identifier] = ACTIONS(2382), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_satisfies] = ACTIONS(2384), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [sym__automatic_semicolon] = ACTIONS(2694), - [sym__ternary_qmark] = ACTIONS(2388), - [sym_html_comment] = ACTIONS(5), - }, - [516] = { - [sym_comment] = STATE(516), - [sym_identifier] = ACTIONS(2426), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_as] = ACTIONS(2428), - [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_typeof] = ACTIONS(2426), - [anon_sym_import] = ACTIONS(2426), - [anon_sym_from] = ACTIONS(2426), - [anon_sym_with] = ACTIONS(2426), - [anon_sym_var] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_switch] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_await] = ACTIONS(2426), - [anon_sym_in] = ACTIONS(2428), - [anon_sym_of] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_debugger] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_throw] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2426), - [anon_sym_LTtemplate_GT] = ACTIONS(2426), - [anon_sym_GT] = ACTIONS(2428), - [anon_sym_DOT] = ACTIONS(2428), - [anon_sym_DQUOTE] = ACTIONS(2426), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2426), - [anon_sym_QMARK_DOT] = ACTIONS(2428), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_using] = ACTIONS(2426), - [anon_sym_AMP_AMP] = ACTIONS(2428), - [anon_sym_PIPE_PIPE] = ACTIONS(2428), - [anon_sym_GT_GT] = ACTIONS(2428), - [anon_sym_GT_GT_GT] = ACTIONS(2428), - [anon_sym_LT_LT] = ACTIONS(2428), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_CARET] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2428), - [anon_sym_STAR_STAR] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_LT_EQ] = ACTIONS(2428), - [anon_sym_EQ_EQ] = ACTIONS(2428), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2428), - [anon_sym_BANG_EQ] = ACTIONS(2428), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2428), - [anon_sym_GT_EQ] = ACTIONS(2428), - [anon_sym_QMARK_QMARK] = ACTIONS(2428), - [anon_sym_instanceof] = ACTIONS(2428), - [anon_sym_TILDE] = ACTIONS(2426), - [anon_sym_void] = ACTIONS(2426), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_PLUS_PLUS] = ACTIONS(2426), - [anon_sym_DASH_DASH] = ACTIONS(2426), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2426), - [sym_number] = ACTIONS(2426), - [sym_private_property_identifier] = ACTIONS(2426), - [sym_this] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_true] = ACTIONS(2426), - [sym_false] = ACTIONS(2426), - [sym_null] = ACTIONS(2426), - [sym_undefined] = ACTIONS(2426), - [anon_sym_AT] = ACTIONS(2426), - [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_property] = ACTIONS(2426), - [anon_sym_signal] = ACTIONS(2426), - [anon_sym_on] = ACTIONS(2426), - [anon_sym_required] = ACTIONS(2426), - [anon_sym_component] = ACTIONS(2426), - [anon_sym_abstract] = ACTIONS(2426), - [anon_sym_satisfies] = ACTIONS(2428), - [anon_sym_interface] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), - [sym__automatic_semicolon] = ACTIONS(2696), - [sym__ternary_qmark] = ACTIONS(2432), - [sym_html_comment] = ACTIONS(5), - }, - [517] = { - [sym_comment] = STATE(517), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_COMMA] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_typeof] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_from] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_await] = ACTIONS(2416), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_of] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_debugger] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LTtemplate_GT] = ACTIONS(2416), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2418), - [anon_sym_DQUOTE] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_QMARK_DOT] = ACTIONS(2418), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_using] = ACTIONS(2416), - [anon_sym_AMP_AMP] = ACTIONS(2418), - [anon_sym_PIPE_PIPE] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_PERCENT] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_LT_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), - [anon_sym_GT_EQ] = ACTIONS(2418), - [anon_sym_QMARK_QMARK] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_void] = ACTIONS(2416), - [anon_sym_delete] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_number] = ACTIONS(2416), - [sym_private_property_identifier] = ACTIONS(2416), - [sym_this] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_true] = ACTIONS(2416), - [sym_false] = ACTIONS(2416), - [sym_null] = ACTIONS(2416), - [sym_undefined] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_property] = ACTIONS(2416), - [anon_sym_signal] = ACTIONS(2416), - [anon_sym_on] = ACTIONS(2416), - [anon_sym_required] = ACTIONS(2416), - [anon_sym_component] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_satisfies] = ACTIONS(2418), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [sym__automatic_semicolon] = ACTIONS(2698), - [sym__ternary_qmark] = ACTIONS(2422), - [sym_html_comment] = ACTIONS(5), - }, - [518] = { - [sym_comment] = STATE(518), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2364), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_typeof] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_with] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_await] = ACTIONS(2362), - [anon_sym_in] = ACTIONS(2364), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_debugger] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_LTtemplate_GT] = ACTIONS(2362), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_DOT] = ACTIONS(2364), - [anon_sym_DQUOTE] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_QMARK_DOT] = ACTIONS(2364), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2362), - [anon_sym_AMP_AMP] = ACTIONS(2364), - [anon_sym_PIPE_PIPE] = ACTIONS(2364), - [anon_sym_GT_GT] = ACTIONS(2364), - [anon_sym_GT_GT_GT] = ACTIONS(2364), - [anon_sym_LT_LT] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_CARET] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_PERCENT] = ACTIONS(2364), - [anon_sym_STAR_STAR] = ACTIONS(2364), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_LT_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2364), - [anon_sym_GT_EQ] = ACTIONS(2364), - [anon_sym_QMARK_QMARK] = ACTIONS(2364), - [anon_sym_instanceof] = ACTIONS(2364), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_void] = ACTIONS(2362), - [anon_sym_delete] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2362), - [sym_number] = ACTIONS(2362), - [sym_private_property_identifier] = ACTIONS(2362), - [sym_this] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_true] = ACTIONS(2362), - [sym_false] = ACTIONS(2362), - [sym_null] = ACTIONS(2362), - [sym_undefined] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(2364), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - [sym__automatic_semicolon] = ACTIONS(2700), - [sym__ternary_qmark] = ACTIONS(2368), - [sym_html_comment] = ACTIONS(5), - }, - [519] = { - [sym_comment] = STATE(519), - [sym_identifier] = ACTIONS(2370), - [anon_sym_export] = ACTIONS(2370), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_type] = ACTIONS(2370), - [anon_sym_as] = ACTIONS(2370), - [anon_sym_namespace] = ACTIONS(2370), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_COMMA] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_typeof] = ACTIONS(2370), - [anon_sym_import] = ACTIONS(2370), - [anon_sym_from] = ACTIONS(2370), - [anon_sym_with] = ACTIONS(2370), - [anon_sym_var] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_const] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_switch] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_await] = ACTIONS(2370), - [anon_sym_in] = ACTIONS(2370), - [anon_sym_of] = ACTIONS(2370), - [anon_sym_while] = ACTIONS(2370), - [anon_sym_do] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_debugger] = ACTIONS(2370), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_throw] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_yield] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2370), - [anon_sym_LTtemplate_GT] = ACTIONS(2370), - [anon_sym_GT] = ACTIONS(2370), - [anon_sym_DOT] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_class] = ACTIONS(2370), - [anon_sym_async] = ACTIONS(2370), - [anon_sym_function] = ACTIONS(2370), - [anon_sym_QMARK_DOT] = ACTIONS(2370), - [anon_sym_new] = ACTIONS(2370), - [anon_sym_using] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_GT_GT] = ACTIONS(2370), - [anon_sym_GT_GT_GT] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2370), - [anon_sym_CARET] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_SLASH] = ACTIONS(2370), - [anon_sym_PERCENT] = ACTIONS(2370), - [anon_sym_STAR_STAR] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_QMARK_QMARK] = ACTIONS(2370), - [anon_sym_instanceof] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_void] = ACTIONS(2370), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2370), - [sym_number] = ACTIONS(2370), - [sym_private_property_identifier] = ACTIONS(2370), - [sym_this] = ACTIONS(2370), - [sym_super] = ACTIONS(2370), - [sym_true] = ACTIONS(2370), - [sym_false] = ACTIONS(2370), - [sym_null] = ACTIONS(2370), - [sym_undefined] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_readonly] = ACTIONS(2370), - [anon_sym_get] = ACTIONS(2370), - [anon_sym_set] = ACTIONS(2370), - [anon_sym_declare] = ACTIONS(2370), - [anon_sym_public] = ACTIONS(2370), - [anon_sym_private] = ACTIONS(2370), - [anon_sym_protected] = ACTIONS(2370), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2370), - [anon_sym_any] = ACTIONS(2370), - [anon_sym_number] = ACTIONS(2370), - [anon_sym_boolean] = ACTIONS(2370), - [anon_sym_string] = ACTIONS(2370), - [anon_sym_symbol] = ACTIONS(2370), - [anon_sym_object] = ACTIONS(2370), - [anon_sym_property] = ACTIONS(2370), - [anon_sym_signal] = ACTIONS(2370), - [anon_sym_on] = ACTIONS(2370), - [anon_sym_required] = ACTIONS(2370), - [anon_sym_component] = ACTIONS(2370), - [anon_sym_abstract] = ACTIONS(2370), - [anon_sym_satisfies] = ACTIONS(2370), - [anon_sym_interface] = ACTIONS(2370), - [anon_sym_enum] = ACTIONS(2370), - [sym__automatic_semicolon] = ACTIONS(2372), - [sym__ternary_qmark] = ACTIONS(2372), - [sym_html_comment] = ACTIONS(5), - }, - [520] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3141), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7721), - [sym_string] = STATE(3749), - [sym_comment] = STATE(520), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [525] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2874), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7615), + [sym_string] = STATE(3548), + [sym_comment] = STATE(525), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_SEMI] = ACTIONS(2708), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -105468,675 +105707,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym__automatic_semicolon] = ACTIONS(2704), - [sym_html_comment] = ACTIONS(5), - }, - [521] = { - [sym_comment] = STATE(521), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_as] = ACTIONS(2460), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_typeof] = ACTIONS(2458), - [anon_sym_import] = ACTIONS(2458), - [anon_sym_from] = ACTIONS(2458), - [anon_sym_with] = ACTIONS(2458), - [anon_sym_var] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_switch] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_await] = ACTIONS(2458), - [anon_sym_in] = ACTIONS(2460), - [anon_sym_of] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_do] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_debugger] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_throw] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_LTtemplate_GT] = ACTIONS(2458), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_DOT] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_QMARK_DOT] = ACTIONS(2460), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_GT_GT_GT] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_SLASH] = ACTIONS(2458), - [anon_sym_PERCENT] = ACTIONS(2460), - [anon_sym_STAR_STAR] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_LT_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2460), - [anon_sym_GT_EQ] = ACTIONS(2460), - [anon_sym_QMARK_QMARK] = ACTIONS(2460), - [anon_sym_instanceof] = ACTIONS(2460), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_void] = ACTIONS(2458), - [anon_sym_delete] = ACTIONS(2458), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2458), - [sym_number] = ACTIONS(2458), - [sym_private_property_identifier] = ACTIONS(2458), - [sym_this] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_true] = ACTIONS(2458), - [sym_false] = ACTIONS(2458), - [sym_null] = ACTIONS(2458), - [sym_undefined] = ACTIONS(2458), - [anon_sym_AT] = ACTIONS(2458), - [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_property] = ACTIONS(2458), - [anon_sym_signal] = ACTIONS(2458), - [anon_sym_on] = ACTIONS(2458), - [anon_sym_required] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_abstract] = ACTIONS(2458), - [anon_sym_satisfies] = ACTIONS(2460), - [anon_sym_interface] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(2706), - [sym__ternary_qmark] = ACTIONS(2464), - [sym_html_comment] = ACTIONS(5), - }, - [522] = { - [sym_comment] = STATE(522), - [sym_identifier] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_as] = ACTIONS(2338), - [anon_sym_namespace] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2338), - [anon_sym_import] = ACTIONS(2338), - [anon_sym_from] = ACTIONS(2338), - [anon_sym_with] = ACTIONS(2338), - [anon_sym_var] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_do] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_debugger] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_throw] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_yield] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LTtemplate_GT] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2338), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_class] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_QMARK_DOT] = ACTIONS(2338), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_using] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2338), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_instanceof] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2338), - [anon_sym_delete] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_private_property_identifier] = ACTIONS(2338), - [sym_this] = ACTIONS(2338), - [sym_super] = ACTIONS(2338), - [sym_true] = ACTIONS(2338), - [sym_false] = ACTIONS(2338), - [sym_null] = ACTIONS(2338), - [sym_undefined] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_readonly] = ACTIONS(2338), - [anon_sym_get] = ACTIONS(2338), - [anon_sym_set] = ACTIONS(2338), - [anon_sym_declare] = ACTIONS(2338), - [anon_sym_public] = ACTIONS(2338), - [anon_sym_private] = ACTIONS(2338), - [anon_sym_protected] = ACTIONS(2338), - [anon_sym_override] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_any] = ACTIONS(2338), - [anon_sym_number] = ACTIONS(2338), - [anon_sym_boolean] = ACTIONS(2338), - [anon_sym_string] = ACTIONS(2338), - [anon_sym_symbol] = ACTIONS(2338), - [anon_sym_object] = ACTIONS(2338), - [anon_sym_property] = ACTIONS(2338), - [anon_sym_signal] = ACTIONS(2338), - [anon_sym_on] = ACTIONS(2338), - [anon_sym_required] = ACTIONS(2338), - [anon_sym_component] = ACTIONS(2338), - [anon_sym_abstract] = ACTIONS(2338), - [anon_sym_satisfies] = ACTIONS(2338), - [anon_sym_interface] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), - [sym__automatic_semicolon] = ACTIONS(2340), - [sym__ternary_qmark] = ACTIONS(2340), - [sym_html_comment] = ACTIONS(5), - }, - [523] = { - [sym_comment] = STATE(523), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_as] = ACTIONS(2452), - [anon_sym_namespace] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_COMMA] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(2450), - [anon_sym_import] = ACTIONS(2450), - [anon_sym_from] = 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(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(2450), - [anon_sym_in] = ACTIONS(2452), - [anon_sym_of] = 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(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LTtemplate_GT] = ACTIONS(2450), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_DOT] = ACTIONS(2452), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), - [anon_sym_class] = ACTIONS(2450), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_function] = ACTIONS(2450), - [anon_sym_QMARK_DOT] = ACTIONS(2452), - [anon_sym_new] = ACTIONS(2450), - [anon_sym_using] = ACTIONS(2450), - [anon_sym_AMP_AMP] = ACTIONS(2452), - [anon_sym_PIPE_PIPE] = ACTIONS(2452), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_GT_GT_GT] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_CARET] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2450), - [anon_sym_SLASH] = ACTIONS(2450), - [anon_sym_PERCENT] = ACTIONS(2452), - [anon_sym_STAR_STAR] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_LT_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2452), - [anon_sym_GT_EQ] = ACTIONS(2452), - [anon_sym_QMARK_QMARK] = ACTIONS(2452), - [anon_sym_instanceof] = ACTIONS(2452), - [anon_sym_TILDE] = ACTIONS(2450), - [anon_sym_void] = ACTIONS(2450), - [anon_sym_delete] = ACTIONS(2450), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_number] = ACTIONS(2450), - [sym_private_property_identifier] = ACTIONS(2450), - [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(2450), - [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_property] = ACTIONS(2450), - [anon_sym_signal] = ACTIONS(2450), - [anon_sym_on] = ACTIONS(2450), - [anon_sym_required] = ACTIONS(2450), - [anon_sym_component] = ACTIONS(2450), - [anon_sym_abstract] = ACTIONS(2450), - [anon_sym_satisfies] = ACTIONS(2452), - [anon_sym_interface] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [sym__automatic_semicolon] = ACTIONS(2708), - [sym__ternary_qmark] = ACTIONS(2456), - [sym_html_comment] = ACTIONS(5), - }, - [524] = { - [sym_comment] = STATE(524), - [sym_identifier] = ACTIONS(2402), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_COMMA] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_typeof] = ACTIONS(2402), - [anon_sym_import] = ACTIONS(2402), - [anon_sym_from] = ACTIONS(2402), - [anon_sym_with] = ACTIONS(2402), - [anon_sym_var] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_switch] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_in] = ACTIONS(2404), - [anon_sym_of] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_debugger] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_throw] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LTtemplate_GT] = ACTIONS(2402), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_DOT] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_class] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_QMARK_DOT] = ACTIONS(2404), - [anon_sym_new] = ACTIONS(2402), - [anon_sym_using] = ACTIONS(2402), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_GT_GT_GT] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_PERCENT] = ACTIONS(2404), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_LT_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2404), - [anon_sym_QMARK_QMARK] = ACTIONS(2404), - [anon_sym_instanceof] = ACTIONS(2404), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_void] = ACTIONS(2402), - [anon_sym_delete] = ACTIONS(2402), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_number] = ACTIONS(2402), - [sym_private_property_identifier] = ACTIONS(2402), - [sym_this] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_true] = ACTIONS(2402), - [sym_false] = ACTIONS(2402), - [sym_null] = ACTIONS(2402), - [sym_undefined] = ACTIONS(2402), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_readonly] = ACTIONS(2402), - [anon_sym_get] = ACTIONS(2402), - [anon_sym_set] = ACTIONS(2402), - [anon_sym_declare] = ACTIONS(2402), - [anon_sym_public] = ACTIONS(2402), - [anon_sym_private] = ACTIONS(2402), - [anon_sym_protected] = ACTIONS(2402), - [anon_sym_override] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_any] = ACTIONS(2402), - [anon_sym_number] = ACTIONS(2402), - [anon_sym_boolean] = ACTIONS(2402), - [anon_sym_string] = ACTIONS(2402), - [anon_sym_symbol] = ACTIONS(2402), - [anon_sym_object] = ACTIONS(2402), - [anon_sym_property] = ACTIONS(2402), - [anon_sym_signal] = ACTIONS(2402), - [anon_sym_on] = ACTIONS(2402), - [anon_sym_required] = ACTIONS(2402), - [anon_sym_component] = ACTIONS(2402), - [anon_sym_abstract] = ACTIONS(2402), - [anon_sym_satisfies] = ACTIONS(2404), - [anon_sym_interface] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym__automatic_semicolon] = ACTIONS(2710), - [sym__ternary_qmark] = ACTIONS(2408), - [sym_html_comment] = ACTIONS(5), - }, - [525] = { - [sym_comment] = STATE(525), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_as] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_GT] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_QMARK_DOT] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2442), - [anon_sym_LT_LT] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), - [anon_sym_GT_EQ] = ACTIONS(2442), - [anon_sym_QMARK_QMARK] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_private_property_identifier] = ACTIONS(2442), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_satisfies] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2444), [sym_html_comment] = ACTIONS(5), }, [526] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3293), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8250), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3036), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8185), + [sym_string] = STATE(2894), [sym_comment] = STATE(526), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_RPAREN] = ACTIONS(2712), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -106156,101 +105820,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [527] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3152), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8349), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3039), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8164), + [sym_string] = STATE(2894), [sym_comment] = STATE(527), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2714), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_EQ_GT] = ACTIONS(2714), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -106270,329 +105934,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [528] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2546), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2546), - [sym_subscript_expression] = STATE(2546), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(7143), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3017), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8084), + [sym_string] = STATE(2894), [sym_comment] = STATE(528), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2546), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2716), - [anon_sym_export] = ACTIONS(2718), - [anon_sym_type] = ACTIONS(2718), - [anon_sym_namespace] = ACTIONS(2720), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_typeof] = ACTIONS(87), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2718), - [anon_sym_var] = ACTIONS(2724), - [anon_sym_let] = ACTIONS(2726), - [anon_sym_const] = ACTIONS(2728), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(2718), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(2730), + [anon_sym_RPAREN] = ACTIONS(2716), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2732), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2736), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2718), - [anon_sym_readonly] = ACTIONS(2718), - [anon_sym_get] = ACTIONS(2718), - [anon_sym_set] = ACTIONS(2718), - [anon_sym_declare] = ACTIONS(2718), - [anon_sym_public] = ACTIONS(2718), - [anon_sym_private] = ACTIONS(2718), - [anon_sym_protected] = ACTIONS(2718), - [anon_sym_override] = ACTIONS(2718), - [anon_sym_module] = ACTIONS(2718), - [anon_sym_any] = ACTIONS(2718), - [anon_sym_number] = ACTIONS(2718), - [anon_sym_boolean] = ACTIONS(2718), - [anon_sym_string] = ACTIONS(2718), - [anon_sym_symbol] = ACTIONS(2718), - [anon_sym_object] = ACTIONS(2718), - [anon_sym_property] = ACTIONS(2718), - [anon_sym_signal] = ACTIONS(2718), - [anon_sym_on] = ACTIONS(2718), - [anon_sym_required] = ACTIONS(2718), - [anon_sym_component] = ACTIONS(2718), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [529] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3268), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8517), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2407), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2407), + [sym_subscript_expression] = STATE(2407), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7014), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(529), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2407), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2720), + [anon_sym_type] = ACTIONS(2720), + [anon_sym_namespace] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(2720), + [anon_sym_var] = ACTIONS(2726), + [anon_sym_let] = ACTIONS(2728), + [anon_sym_const] = ACTIONS(2730), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2720), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(2732), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(2734), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(2736), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(2738), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_readonly] = ACTIONS(2720), + [anon_sym_get] = ACTIONS(2720), + [anon_sym_set] = ACTIONS(2720), + [anon_sym_declare] = ACTIONS(2720), + [anon_sym_public] = ACTIONS(2720), + [anon_sym_private] = ACTIONS(2720), + [anon_sym_protected] = ACTIONS(2720), + [anon_sym_override] = ACTIONS(2720), + [anon_sym_module] = ACTIONS(2720), + [anon_sym_any] = ACTIONS(2720), + [anon_sym_number] = ACTIONS(2720), + [anon_sym_boolean] = ACTIONS(2720), + [anon_sym_string] = ACTIONS(2720), + [anon_sym_symbol] = ACTIONS(2720), + [anon_sym_object] = ACTIONS(2720), + [anon_sym_property] = ACTIONS(2720), + [anon_sym_signal] = ACTIONS(2720), + [anon_sym_on] = ACTIONS(2720), + [anon_sym_required] = ACTIONS(2720), + [anon_sym_component] = ACTIONS(2720), [sym_html_comment] = ACTIONS(5), }, [530] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3279), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8523), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3039), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8164), + [sym_string] = STATE(2894), [sym_comment] = STATE(530), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), [anon_sym_EQ_GT] = ACTIONS(2740), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -106612,101 +106276,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [531] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3279), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8523), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3124), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8109), + [sym_string] = STATE(2894), [sym_comment] = STATE(531), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_RPAREN] = ACTIONS(2742), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_EQ_GT] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -106726,101 +106390,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [532] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3168), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8285), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3081), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8400), + [sym_string] = STATE(2894), [sym_comment] = STATE(532), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_RPAREN] = ACTIONS(2744), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -106840,101 +106504,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [533] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3280), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8456), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3011), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8028), + [sym_string] = STATE(2894), [sym_comment] = STATE(533), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_RPAREN] = ACTIONS(2746), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -106954,101 +106618,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [534] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3223), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8366), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3072), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(7966), + [sym_string] = STATE(2894), [sym_comment] = STATE(534), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_RPAREN] = ACTIONS(2748), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -107068,101 +106732,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [535] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3282), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8671), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3102), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(7970), + [sym_string] = STATE(2894), [sym_comment] = STATE(535), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_RPAREN] = ACTIONS(2750), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -107182,196 +106846,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [536] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3019), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3189), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3558), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2844), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(536), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [537] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3547), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3057), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(537), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), @@ -107385,14 +106936,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -107433,1318 +106984,1431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [538] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3019), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3641), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(538), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(1603), + [537] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2996), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7909), + [sym_string] = STATE(3548), + [sym_comment] = STATE(537), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [539] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3021), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3642), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(539), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(1603), + [538] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8183), + [sym_string] = STATE(2894), + [sym_comment] = STATE(538), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [540] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3105), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3649), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(540), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(1603), + [539] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3560), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3307), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(539), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [541] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3585), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3139), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(541), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(1867), + [540] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3558), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3308), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(540), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [542] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3123), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3665), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(542), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(1603), + [541] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2901), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3374), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(541), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, + [542] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3528), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3309), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(542), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, [543] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3050), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3670), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2864), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3701), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(543), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, [544] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3105), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3648), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2836), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3659), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(544), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(1819), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, [545] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3021), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3646), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2995), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3656), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(545), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(1819), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, [546] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3019), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3645), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2998), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3369), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(546), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(1819), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, [547] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3012), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3638), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2695), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8412), + [sym_string] = STATE(2894), [sym_comment] = STATE(547), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(1819), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [548] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2930), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8486), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2901), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3720), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(548), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, [549] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2815), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8557), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3146), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8477), + [sym_string] = STATE(2894), [sym_comment] = STATE(549), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -108764,309 +108428,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [550] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3068), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7683), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3095), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(550), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [551] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3041), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8025), - [sym_string] = STATE(3749), - [sym_comment] = STATE(551), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [552] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3012), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3196), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(552), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym__extends_clause_single] = STATE(6174), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -109076,18 +108514,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -109103,7 +108541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -109128,414 +108566,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [553] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3262), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8232), - [sym_string] = STATE(3073), - [sym_comment] = STATE(553), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [551] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3372), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2890), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(551), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [554] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3261), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8212), - [sym_string] = STATE(3073), - [sym_comment] = STATE(554), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [552] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3381), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3313), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(552), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [555] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3259), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8224), - [sym_string] = STATE(3073), - [sym_comment] = STATE(555), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [553] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2998), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3679), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(553), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [556] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2909), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8664), - [sym_string] = STATE(3073), - [sym_comment] = STATE(556), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [554] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2682), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8029), + [sym_string] = STATE(2894), + [sym_comment] = STATE(554), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -109555,326 +108993,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [557] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8213), - [sym_string] = STATE(3073), - [sym_comment] = STATE(557), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [555] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2952), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7554), + [sym_string] = STATE(3548), + [sym_comment] = STATE(555), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [558] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3021), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3172), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(558), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(1683), + [556] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2871), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7614), + [sym_string] = STATE(3548), + [sym_comment] = STATE(556), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [557] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3513), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(557), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_mapped_type_clause] = STATE(8273), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2758), + [anon_sym_export] = ACTIONS(2760), + [anon_sym_type] = ACTIONS(2760), + [anon_sym_namespace] = ACTIONS(2762), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2760), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(2760), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(2764), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2766), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(2760), + [anon_sym_readonly] = ACTIONS(2760), + [anon_sym_get] = ACTIONS(2760), + [anon_sym_set] = ACTIONS(2760), + [anon_sym_declare] = ACTIONS(2760), + [anon_sym_public] = ACTIONS(2760), + [anon_sym_private] = ACTIONS(2760), + [anon_sym_protected] = ACTIONS(2760), + [anon_sym_override] = ACTIONS(2760), + [anon_sym_module] = ACTIONS(2760), + [anon_sym_any] = ACTIONS(2760), + [anon_sym_number] = ACTIONS(2760), + [anon_sym_boolean] = ACTIONS(2760), + [anon_sym_string] = ACTIONS(2760), + [anon_sym_symbol] = ACTIONS(2760), + [anon_sym_object] = ACTIONS(2760), + [anon_sym_property] = ACTIONS(2760), + [anon_sym_signal] = ACTIONS(2760), + [anon_sym_on] = ACTIONS(2760), + [anon_sym_required] = ACTIONS(2760), + [anon_sym_component] = ACTIONS(2760), [sym_html_comment] = ACTIONS(5), }, - [559] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3258), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8203), - [sym_string] = STATE(3073), - [sym_comment] = STATE(559), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [558] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3070), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8319), + [sym_string] = STATE(2894), + [sym_comment] = STATE(558), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -109894,99 +109445,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [560] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3113), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7990), - [sym_string] = STATE(3749), - [sym_comment] = STATE(560), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [559] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3372), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2977), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(559), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(2752), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -110009,790 +109560,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [561] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3720), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2998), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(561), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(151), + [560] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3612), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(560), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), + [sym_private_property_identifier] = ACTIONS(1885), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [562] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3166), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(562), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym__extends_clause_single] = STATE(6350), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [561] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2995), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3524), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(561), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [563] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3123), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3696), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), + [562] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3057), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(563), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(1819), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8064), + [sym_string] = STATE(2894), + [sym_comment] = STATE(562), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [564] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3105), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3192), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(564), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(1683), + [563] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2836), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3531), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(563), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [565] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3547), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3048), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(565), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [566] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3551), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3064), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(566), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [567] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3050), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3709), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(567), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [564] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2843), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3365), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(564), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(1819), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), @@ -110800,81 +110125,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3590), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3088), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(568), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [565] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3381), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2865), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(565), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), @@ -110888,14 +110213,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -110936,284 +110261,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3050), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3715), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(569), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1647), + [566] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3144), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8326), + [sym_string] = STATE(2894), + [sym_comment] = STATE(566), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3123), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3730), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(570), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1647), + [567] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3095), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(567), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym__extends_clause_single] = STATE(6755), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [568] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2843), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3662), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(568), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3570), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3060), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(571), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [569] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3528), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2845), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(569), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_LBRACE] = ACTIONS(2752), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), @@ -111227,14 +110665,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -111275,301 +110713,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3105), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3707), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(572), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), - [sym_html_comment] = ACTIONS(5), - }, - [573] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3570), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3080), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(573), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(151), + [570] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3560), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2840), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(570), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), + [sym_private_property_identifier] = ACTIONS(1885), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [574] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8614), - [sym_string] = STATE(3073), - [sym_comment] = STATE(574), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [571] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3128), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8459), + [sym_string] = STATE(2894), + [sym_comment] = STATE(571), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -111589,309 +110914,1213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3021), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3702), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(575), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [572] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2864), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3549), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(572), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3019), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3699), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(576), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1647), + [573] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3045), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8001), + [sym_string] = STATE(2894), + [sym_comment] = STATE(573), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [574] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3051), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8009), + [sym_string] = STATE(2894), + [sym_comment] = STATE(574), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [575] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3012), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8010), + [sym_string] = STATE(2894), + [sym_comment] = STATE(575), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [576] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3372), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3328), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(576), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, [577] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3012), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3695), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3381), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2858), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(577), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [578] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3054), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8015), + [sym_string] = STATE(2894), + [sym_comment] = STATE(578), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [579] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8289), + [sym_string] = STATE(2894), + [sym_comment] = STATE(579), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [580] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2995), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3106), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(580), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [581] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2836), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3105), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(581), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [582] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2995), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3408), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(582), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_type] = ACTIONS(1639), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2754), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -111901,7 +112130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1649), [anon_sym_of] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -111953,284 +112182,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3551), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3059), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(578), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [579] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3012), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3637), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(579), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(1603), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), - [sym_html_comment] = ACTIONS(5), - }, - [580] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3123), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3217), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(580), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [583] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2843), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(583), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2768), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -112240,18 +112243,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -112267,7 +112270,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -112292,75 +112295,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [581] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3211), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8221), - [sym_string] = STATE(3073), - [sym_comment] = STATE(581), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [584] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2998), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2800), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(584), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2768), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -112380,213 +112383,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [582] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3290), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8576), - [sym_string] = STATE(3073), - [sym_comment] = STATE(582), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [585] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2836), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3406), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(585), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [583] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3235), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8217), - [sym_string] = STATE(3073), - [sym_comment] = STATE(583), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [586] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2901), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2782), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(586), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2768), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -112606,100 +112609,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3269), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8519), - [sym_string] = STATE(3073), - [sym_comment] = STATE(584), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [587] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2843), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3402), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(587), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, + [588] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8310), + [sym_string] = STATE(2894), + [sym_comment] = STATE(588), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -112719,196 +112835,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3547), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3508), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(585), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [589] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2864), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3093), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(589), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [sym_html_comment] = ACTIONS(5), - }, - [586] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3050), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3302), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(586), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_LBRACE] = ACTIONS(2768), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -112918,18 +112921,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -112945,7 +112948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -112970,188 +112973,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3585), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3086), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(587), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [588] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3279), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8523), - [sym_string] = STATE(3073), - [sym_comment] = STATE(588), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [590] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2712), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8325), + [sym_string] = STATE(2894), + [sym_comment] = STATE(590), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -113171,99 +113061,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3135), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7722), - [sym_string] = STATE(3749), - [sym_comment] = STATE(589), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [591] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3612), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2962), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(591), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(2752), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -113286,683 +113176,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [590] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3050), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3861), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(590), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(87), + [592] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2949), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7185), + [sym_string] = STATE(3548), + [sym_comment] = STATE(592), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), - [sym_html_comment] = ACTIONS(5), - }, - [591] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3581), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(591), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_mapped_type_clause] = STATE(8634), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2760), - [anon_sym_export] = ACTIONS(2762), - [anon_sym_type] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2762), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(2762), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2766), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2768), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_readonly] = ACTIONS(2762), - [anon_sym_get] = ACTIONS(2762), - [anon_sym_set] = ACTIONS(2762), - [anon_sym_declare] = ACTIONS(2762), - [anon_sym_public] = ACTIONS(2762), - [anon_sym_private] = ACTIONS(2762), - [anon_sym_protected] = ACTIONS(2762), - [anon_sym_override] = ACTIONS(2762), - [anon_sym_module] = ACTIONS(2762), - [anon_sym_any] = ACTIONS(2762), - [anon_sym_number] = ACTIONS(2762), - [anon_sym_boolean] = ACTIONS(2762), - [anon_sym_string] = ACTIONS(2762), - [anon_sym_symbol] = ACTIONS(2762), - [anon_sym_object] = ACTIONS(2762), - [anon_sym_property] = ACTIONS(2762), - [anon_sym_signal] = ACTIONS(2762), - [anon_sym_on] = ACTIONS(2762), - [anon_sym_required] = ACTIONS(2762), - [anon_sym_component] = ACTIONS(2762), - [sym_html_comment] = ACTIONS(5), - }, - [592] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3581), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(592), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_mapped_type_clause] = STATE(8709), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2770), - [anon_sym_export] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_namespace] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2772), - [anon_sym_let] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(2772), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2776), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2778), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2772), - [anon_sym_readonly] = ACTIONS(2772), - [anon_sym_get] = ACTIONS(2772), - [anon_sym_set] = ACTIONS(2772), - [anon_sym_declare] = ACTIONS(2772), - [anon_sym_public] = ACTIONS(2772), - [anon_sym_private] = ACTIONS(2772), - [anon_sym_protected] = ACTIONS(2772), - [anon_sym_override] = ACTIONS(2772), - [anon_sym_module] = ACTIONS(2772), - [anon_sym_any] = ACTIONS(2772), - [anon_sym_number] = ACTIONS(2772), - [anon_sym_boolean] = ACTIONS(2772), - [anon_sym_string] = ACTIONS(2772), - [anon_sym_symbol] = ACTIONS(2772), - [anon_sym_object] = ACTIONS(2772), - [anon_sym_property] = ACTIONS(2772), - [anon_sym_signal] = ACTIONS(2772), - [anon_sym_on] = ACTIONS(2772), - [anon_sym_required] = ACTIONS(2772), - [anon_sym_component] = ACTIONS(2772), - [sym_html_comment] = ACTIONS(5), - }, - [593] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3551), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(593), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [sym_html_comment] = ACTIONS(5), - }, - [594] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3570), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3425), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(594), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [sym_html_comment] = ACTIONS(5), - }, - [595] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3590), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3413), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(595), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -113987,188 +113312,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [596] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3071), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(8099), - [sym_string] = STATE(3749), - [sym_comment] = STATE(596), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [597] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2858), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8752), - [sym_string] = STATE(3073), - [sym_comment] = STATE(597), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [593] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3118), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8169), + [sym_string] = STATE(2894), + [sym_comment] = STATE(593), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -114188,326 +113400,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [598] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3590), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3122), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(598), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3166), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(599), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym__extends_clause_single] = STATE(6599), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [594] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2901), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3540), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(594), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3012), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2947), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(600), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(2752), + [595] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2864), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2741), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(595), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2768), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -114527,213 +113626,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [601] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3012), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3771), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(601), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [602] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3183), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8426), - [sym_string] = STATE(3073), - [sym_comment] = STATE(602), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [596] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2660), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8388), + [sym_string] = STATE(2894), + [sym_comment] = STATE(596), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -114753,213 +113739,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [603] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3019), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3770), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(603), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3296), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8546), - [sym_string] = STATE(3073), - [sym_comment] = STATE(604), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [597] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2843), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2732), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(597), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2768), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -114979,213 +113852,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [605] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3021), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3769), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(605), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [606] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3019), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2948), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(606), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(2752), + [598] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2836), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2730), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(598), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2768), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -115205,100 +113965,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [607] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3021), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2949), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(607), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(2752), + [599] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2995), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2727), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(599), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(2768), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -115318,120 +114078,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [608] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3585), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3339), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(608), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), + [600] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2994), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7396), + [sym_string] = STATE(3548), + [sym_comment] = STATE(600), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -115456,74 +114216,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [609] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3121), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7548), - [sym_string] = STATE(3749), - [sym_comment] = STATE(609), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [601] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2902), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7281), + [sym_string] = STATE(3548), + [sym_comment] = STATE(601), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -115546,211 +114306,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [610] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2905), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8686), - [sym_string] = STATE(3073), - [sym_comment] = STATE(610), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [611] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3105), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2954), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(611), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(2752), + [602] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8471), + [sym_string] = STATE(2894), + [sym_comment] = STATE(602), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -115770,213 +114417,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3025), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_sequence_expression] = STATE(7442), - [sym_string] = STATE(3749), - [sym_comment] = STATE(612), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [613] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2915), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8603), - [sym_string] = STATE(3073), - [sym_comment] = STATE(613), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [603] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3103), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(7950), + [sym_string] = STATE(2894), + [sym_comment] = STATE(603), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -115996,100 +114530,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3123), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2969), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(614), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(2752), + [604] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2776), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8349), + [sym_string] = STATE(2894), + [sym_comment] = STATE(604), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -116109,685 +114643,459 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [615] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3105), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3779), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(615), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(87), + [605] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2864), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3396), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(605), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [616] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3050), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2977), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(616), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), + [606] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3560), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2900), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(606), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), [anon_sym_LBRACE] = ACTIONS(2752), - [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [617] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3720), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(2985), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(617), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(1867), + [607] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3558), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2895), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(607), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [618] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2916), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8586), - [sym_string] = STATE(3073), - [sym_comment] = STATE(618), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [619] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3151), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8365), - [sym_string] = STATE(3073), - [sym_comment] = STATE(619), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [620] = { - [sym_import] = STATE(5160), - [sym_statement_block] = STATE(3720), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3376), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(620), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), + [608] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3528), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2910), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(608), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -116812,283 +115120,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [621] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2918), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_sequence_expression] = STATE(8567), - [sym_string] = STATE(3073), - [sym_comment] = STATE(621), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [609] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2998), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3523), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(609), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(5026), - [sym_statement_block] = STATE(3123), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3818), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(622), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(2756), - [anon_sym_typeof] = ACTIONS(87), + [610] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2901), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3029), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(610), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1707), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [623] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3633), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(623), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), + [611] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2998), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3477), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(611), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), [anon_sym_export] = ACTIONS(1595), [anon_sym_type] = ACTIONS(1595), [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(2768), [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1595), @@ -117098,18 +115407,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1605), [anon_sym_of] = ACTIONS(1595), [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2001), [anon_sym_using] = ACTIONS(1615), [anon_sym_PLUS] = ACTIONS(1603), [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1603), [anon_sym_void] = ACTIONS(1603), @@ -117125,7 +115434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1595), [anon_sym_readonly] = ACTIONS(1595), @@ -117150,88 +115459,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [624] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3690), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(624), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [612] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2873), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_sequence_expression] = STATE(7321), + [sym_string] = STATE(3548), + [sym_comment] = STATE(612), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [613] = { + [sym_import] = STATE(4938), + [sym_statement_block] = STATE(3612), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(613), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [614] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3513), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(614), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_mapped_type_clause] = STATE(8174), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2770), + [anon_sym_export] = ACTIONS(2772), + [anon_sym_type] = ACTIONS(2772), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(2772), + [anon_sym_let] = ACTIONS(2772), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(2772), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(2776), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(2778), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), @@ -117239,769 +115775,889 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_readonly] = ACTIONS(2772), + [anon_sym_get] = ACTIONS(2772), + [anon_sym_set] = ACTIONS(2772), + [anon_sym_declare] = ACTIONS(2772), + [anon_sym_public] = ACTIONS(2772), + [anon_sym_private] = ACTIONS(2772), + [anon_sym_protected] = ACTIONS(2772), + [anon_sym_override] = ACTIONS(2772), + [anon_sym_module] = ACTIONS(2772), + [anon_sym_any] = ACTIONS(2772), + [anon_sym_number] = ACTIONS(2772), + [anon_sym_boolean] = ACTIONS(2772), + [anon_sym_string] = ACTIONS(2772), + [anon_sym_symbol] = ACTIONS(2772), + [anon_sym_object] = ACTIONS(2772), + [anon_sym_property] = ACTIONS(2772), + [anon_sym_signal] = ACTIONS(2772), + [anon_sym_on] = ACTIONS(2772), + [anon_sym_required] = ACTIONS(2772), + [anon_sym_component] = ACTIONS(2772), [sym_html_comment] = ACTIONS(5), }, - [625] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3765), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(625), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [615] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2995), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3465), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(615), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [626] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3838), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(626), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [616] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2998), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3053), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(616), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2768), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1707), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3558), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(627), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [617] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2836), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3466), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(617), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3040), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(628), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), + [618] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2864), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3472), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(618), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3775), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(629), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [619] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2843), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3470), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(619), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [620] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2703), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8485), + [sym_string] = STATE(2894), + [sym_comment] = STATE(620), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2780), - [sym_private_property_identifier] = ACTIONS(98), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2585), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2585), - [sym_subscript_expression] = STATE(2585), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8543), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(630), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2585), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2782), - [anon_sym_export] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_namespace] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [621] = { + [sym_import] = STATE(4916), + [sym_statement_block] = STATE(2901), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3502), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(621), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(2784), - [anon_sym_yield] = ACTIONS(50), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2788), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2790), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2792), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2784), - [anon_sym_readonly] = ACTIONS(2784), - [anon_sym_get] = ACTIONS(2784), - [anon_sym_set] = ACTIONS(2784), - [anon_sym_declare] = ACTIONS(2784), - [anon_sym_public] = ACTIONS(2784), - [anon_sym_private] = ACTIONS(2784), - [anon_sym_protected] = ACTIONS(2784), - [anon_sym_override] = ACTIONS(2784), - [anon_sym_module] = ACTIONS(2784), - [anon_sym_any] = ACTIONS(2784), - [anon_sym_number] = ACTIONS(2784), - [anon_sym_boolean] = ACTIONS(2784), - [anon_sym_string] = ACTIONS(2784), - [anon_sym_symbol] = ACTIONS(2784), - [anon_sym_object] = ACTIONS(2784), - [anon_sym_property] = ACTIONS(2784), - [anon_sym_signal] = ACTIONS(2784), - [anon_sym_on] = ACTIONS(2784), - [anon_sym_required] = ACTIONS(2784), - [anon_sym_component] = ACTIONS(2784), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(631), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [622] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3039), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_sequence_expression] = STATE(8164), + [sym_string] = STATE(2894), + [sym_comment] = STATE(622), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -118014,106 +116670,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2794), + [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [632] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3248), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(632), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [623] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2768), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(623), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -118133,210 +116789,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [633] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3858), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(633), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [624] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2362), + [sym_subscript_expression] = STATE(2362), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5680), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(624), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2362), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(1907), + [anon_sym_type] = ACTIONS(1907), + [anon_sym_namespace] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1907), + [anon_sym_let] = ACTIONS(1907), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1907), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1913), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(2782), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2784), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [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_property] = ACTIONS(1907), + [anon_sym_signal] = ACTIONS(1907), + [anon_sym_on] = ACTIONS(1907), + [anon_sym_required] = ACTIONS(1907), + [anon_sym_component] = ACTIONS(1907), [sym_html_comment] = ACTIONS(5), }, - [634] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3167), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(634), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [625] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(3155), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(625), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -118359,321 +117015,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3605), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(635), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [626] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3433), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(626), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [636] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3581), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(636), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [627] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3332), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(627), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [637] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3843), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(637), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [628] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3333), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(628), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [629] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2435), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2435), + [sym_subscript_expression] = STATE(2435), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8265), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(629), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2435), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2786), + [anon_sym_export] = ACTIONS(2788), + [anon_sym_type] = ACTIONS(2788), + [anon_sym_namespace] = ACTIONS(2790), [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(2788), + [anon_sym_let] = ACTIONS(2788), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_of] = ACTIONS(2788), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(2792), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(2794), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), @@ -118682,8 +117450,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -118693,567 +117461,567 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2796), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(2788), + [anon_sym_readonly] = ACTIONS(2788), + [anon_sym_get] = ACTIONS(2788), + [anon_sym_set] = ACTIONS(2788), + [anon_sym_declare] = ACTIONS(2788), + [anon_sym_public] = ACTIONS(2788), + [anon_sym_private] = ACTIONS(2788), + [anon_sym_protected] = ACTIONS(2788), + [anon_sym_override] = ACTIONS(2788), + [anon_sym_module] = ACTIONS(2788), + [anon_sym_any] = ACTIONS(2788), + [anon_sym_number] = ACTIONS(2788), + [anon_sym_boolean] = ACTIONS(2788), + [anon_sym_string] = ACTIONS(2788), + [anon_sym_symbol] = ACTIONS(2788), + [anon_sym_object] = ACTIONS(2788), + [anon_sym_property] = ACTIONS(2788), + [anon_sym_signal] = ACTIONS(2788), + [anon_sym_on] = ACTIONS(2788), + [anon_sym_required] = ACTIONS(2788), + [anon_sym_component] = ACTIONS(2788), [sym_html_comment] = ACTIONS(5), }, - [638] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3819), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(638), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [630] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3479), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(630), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [639] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3817), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(639), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [631] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3383), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(631), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3813), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(640), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [632] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3447), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(632), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2936), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(641), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [633] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3501), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(633), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3362), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(642), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), + [634] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2969), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(634), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -119278,73 +118046,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [643] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3005), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(643), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), + [635] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3500), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(635), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [636] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3496), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(636), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [637] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(3139), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(637), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -119367,118 +118359,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [644] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3355), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(644), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), - [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), [anon_sym_get] = ACTIONS(1719), @@ -119502,94 +118382,990 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, + [638] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3489), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(638), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [639] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3485), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(639), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [640] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3483), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(640), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [641] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3382), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(641), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, + [642] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3482), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(642), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [643] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3426), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(643), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [644] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3379), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(644), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, [645] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3349), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3377), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(645), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, + [646] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(646), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -119614,276 +119390,388 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3811), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(646), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [647] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3478), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(647), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [647] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3265), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(647), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [648] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3476), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(648), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2780), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [648] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3810), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(648), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [649] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3505), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(649), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, + [650] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3711), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(650), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -119914,8 +119802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -119950,52 +119838,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [649] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3809), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(649), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [651] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3371), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(651), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, + [652] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3697), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(652), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -120026,8 +120026,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -120062,74 +120062,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [650] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3808), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(650), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [653] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2224), + [sym_subscript_expression] = STATE(2224), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(5223), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(653), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2224), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2798), + [anon_sym_export] = ACTIONS(1925), + [anon_sym_type] = ACTIONS(1925), + [anon_sym_namespace] = ACTIONS(1927), [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(1925), + [anon_sym_let] = ACTIONS(1925), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_of] = ACTIONS(1925), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1935), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(2800), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), @@ -120138,8 +120138,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -120149,435 +120149,659 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2802), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1925), + [anon_sym_readonly] = ACTIONS(1925), + [anon_sym_get] = ACTIONS(1925), + [anon_sym_set] = ACTIONS(1925), + [anon_sym_declare] = ACTIONS(1925), + [anon_sym_public] = ACTIONS(1925), + [anon_sym_private] = ACTIONS(1925), + [anon_sym_protected] = ACTIONS(1925), + [anon_sym_override] = ACTIONS(1925), + [anon_sym_module] = ACTIONS(1925), + [anon_sym_any] = ACTIONS(1925), + [anon_sym_number] = ACTIONS(1925), + [anon_sym_boolean] = ACTIONS(1925), + [anon_sym_string] = ACTIONS(1925), + [anon_sym_symbol] = ACTIONS(1925), + [anon_sym_object] = ACTIONS(1925), + [anon_sym_property] = ACTIONS(1925), + [anon_sym_signal] = ACTIONS(1925), + [anon_sym_on] = ACTIONS(1925), + [anon_sym_required] = ACTIONS(1925), + [anon_sym_component] = ACTIONS(1925), [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3031), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(651), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [654] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3370), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(654), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, + [655] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(655), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), + [sym_private_property_identifier] = ACTIONS(1885), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [652] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3807), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(652), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [656] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3475), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(656), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [653] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3806), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(653), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [657] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3474), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(657), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [654] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3805), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(654), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [658] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3471), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(658), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [659] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2433), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2433), + [sym_subscript_expression] = STATE(2433), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8453), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(659), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2433), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2804), + [anon_sym_export] = ACTIONS(2806), + [anon_sym_type] = ACTIONS(2806), + [anon_sym_namespace] = ACTIONS(2808), [anon_sym_LBRACE] = ACTIONS(1267), [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_from] = ACTIONS(2806), + [anon_sym_let] = ACTIONS(2806), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), + [anon_sym_of] = ACTIONS(2806), [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(2810), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(2812), [anon_sym_using] = ACTIONS(70), [anon_sym_PLUS] = ACTIONS(87), [anon_sym_DASH] = ACTIONS(87), @@ -120586,8 +120810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -120597,77 +120821,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2814), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(2806), + [anon_sym_readonly] = ACTIONS(2806), + [anon_sym_get] = ACTIONS(2806), + [anon_sym_set] = ACTIONS(2806), + [anon_sym_declare] = ACTIONS(2806), + [anon_sym_public] = ACTIONS(2806), + [anon_sym_private] = ACTIONS(2806), + [anon_sym_protected] = ACTIONS(2806), + [anon_sym_override] = ACTIONS(2806), + [anon_sym_module] = ACTIONS(2806), + [anon_sym_any] = ACTIONS(2806), + [anon_sym_number] = ACTIONS(2806), + [anon_sym_boolean] = ACTIONS(2806), + [anon_sym_string] = ACTIONS(2806), + [anon_sym_symbol] = ACTIONS(2806), + [anon_sym_object] = ACTIONS(2806), + [anon_sym_property] = ACTIONS(2806), + [anon_sym_signal] = ACTIONS(2806), + [anon_sym_on] = ACTIONS(2806), + [anon_sym_required] = ACTIONS(2806), + [anon_sym_component] = ACTIONS(2806), [sym_html_comment] = ACTIONS(5), }, - [655] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3804), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(655), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [660] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2945), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(660), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [661] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3715), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(661), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -120698,8 +121034,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -120734,57 +121070,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [656] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3565), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(656), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [662] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3394), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(662), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_type] = ACTIONS(1639), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -120794,7 +121130,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1649), [anon_sym_of] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -120846,52 +121182,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [657] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3785), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(657), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [663] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2947), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(663), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), + [sym_html_comment] = ACTIONS(5), + }, + [664] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(664), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -120922,11 +121370,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), + [sym_number] = ACTIONS(2816), [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), @@ -120958,276 +121406,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [658] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2578), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2578), - [sym_subscript_expression] = STATE(2578), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8573), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(658), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2578), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2796), - [anon_sym_export] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2798), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(2798), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2802), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2804), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2798), - [anon_sym_readonly] = ACTIONS(2798), - [anon_sym_get] = ACTIONS(2798), - [anon_sym_set] = ACTIONS(2798), - [anon_sym_declare] = ACTIONS(2798), - [anon_sym_public] = ACTIONS(2798), - [anon_sym_private] = ACTIONS(2798), - [anon_sym_protected] = ACTIONS(2798), - [anon_sym_override] = ACTIONS(2798), - [anon_sym_module] = ACTIONS(2798), - [anon_sym_any] = ACTIONS(2798), - [anon_sym_number] = ACTIONS(2798), - [anon_sym_boolean] = ACTIONS(2798), - [anon_sym_string] = ACTIONS(2798), - [anon_sym_symbol] = ACTIONS(2798), - [anon_sym_object] = ACTIONS(2798), - [anon_sym_property] = ACTIONS(2798), - [anon_sym_signal] = ACTIONS(2798), - [anon_sym_on] = ACTIONS(2798), - [anon_sym_required] = ACTIONS(2798), - [anon_sym_component] = ACTIONS(2798), - [sym_html_comment] = ACTIONS(5), - }, - [659] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2976), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(659), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [665] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3299), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(665), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(2818), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [660] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3835), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(660), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [666] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3716), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(666), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -121258,8 +121594,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -121294,522 +121630,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [661] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(2990), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(661), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [662] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(662), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2780), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), - [sym_html_comment] = ACTIONS(5), - }, - [663] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2979), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(663), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [667] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3550), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(667), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_number] = ACTIONS(2820), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [664] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3706), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(664), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [668] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3073), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(668), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(1707), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [665] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2978), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(665), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [669] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(669), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -121829,77 +121941,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [666] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3778), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(666), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [670] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3654), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(670), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -121930,8 +122042,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -121966,169 +122078,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [667] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3035), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(667), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), + [671] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3503), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(671), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [668] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3630), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(668), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [672] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3100), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(672), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [673] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3366), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(673), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_type] = ACTIONS(1639), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -122138,7 +122362,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1649), [anon_sym_of] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -122190,1214 +122414,654 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [669] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2972), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(669), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [674] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3410), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(674), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [670] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2970), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(670), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [675] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3058), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(675), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(1707), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [671] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(2993), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(671), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [672] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3095), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(672), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), + [676] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3287), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(676), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [673] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2576), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2576), - [sym_subscript_expression] = STATE(2576), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8234), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(673), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2576), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2808), - [anon_sym_export] = ACTIONS(2810), - [anon_sym_type] = ACTIONS(2810), - [anon_sym_namespace] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2810), - [anon_sym_let] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(2810), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2814), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2816), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2818), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2810), - [anon_sym_readonly] = ACTIONS(2810), - [anon_sym_get] = ACTIONS(2810), - [anon_sym_set] = ACTIONS(2810), - [anon_sym_declare] = ACTIONS(2810), - [anon_sym_public] = ACTIONS(2810), - [anon_sym_private] = ACTIONS(2810), - [anon_sym_protected] = ACTIONS(2810), - [anon_sym_override] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2810), - [anon_sym_any] = ACTIONS(2810), - [anon_sym_number] = ACTIONS(2810), - [anon_sym_boolean] = ACTIONS(2810), - [anon_sym_string] = ACTIONS(2810), - [anon_sym_symbol] = ACTIONS(2810), - [anon_sym_object] = ACTIONS(2810), - [anon_sym_property] = ACTIONS(2810), - [anon_sym_signal] = ACTIONS(2810), - [anon_sym_on] = ACTIONS(2810), - [anon_sym_required] = ACTIONS(2810), - [anon_sym_component] = ACTIONS(2810), - [sym_html_comment] = ACTIONS(5), - }, - [674] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2968), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(674), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [675] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2967), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(675), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [676] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2965), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(676), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, [677] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2964), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3403), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(677), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, [678] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2962), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3695), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(678), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, [679] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3324), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2919), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(679), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -123423,632 +123087,520 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [680] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2961), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3696), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(680), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, [681] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2960), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(681), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, [682] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2959), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3702), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(682), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, [683] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2958), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2437), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2437), + [sym_subscript_expression] = STATE(2437), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7987), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(683), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2437), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2822), + [anon_sym_export] = ACTIONS(2824), + [anon_sym_type] = ACTIONS(2824), + [anon_sym_namespace] = ACTIONS(2826), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(2824), + [anon_sym_let] = ACTIONS(2824), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2824), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(2828), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(2830), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(2832), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(2824), + [anon_sym_readonly] = ACTIONS(2824), + [anon_sym_get] = ACTIONS(2824), + [anon_sym_set] = ACTIONS(2824), + [anon_sym_declare] = ACTIONS(2824), + [anon_sym_public] = ACTIONS(2824), + [anon_sym_private] = ACTIONS(2824), + [anon_sym_protected] = ACTIONS(2824), + [anon_sym_override] = ACTIONS(2824), + [anon_sym_module] = ACTIONS(2824), + [anon_sym_any] = ACTIONS(2824), + [anon_sym_number] = ACTIONS(2824), + [anon_sym_boolean] = ACTIONS(2824), + [anon_sym_string] = ACTIONS(2824), + [anon_sym_symbol] = ACTIONS(2824), + [anon_sym_object] = ACTIONS(2824), + [anon_sym_property] = ACTIONS(2824), + [anon_sym_signal] = ACTIONS(2824), + [anon_sym_on] = ACTIONS(2824), + [anon_sym_required] = ACTIONS(2824), + [anon_sym_component] = ACTIONS(2824), [sym_html_comment] = ACTIONS(5), }, [684] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2957), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2987), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(684), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [685] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3286), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(685), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -124071,635 +123623,411 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [686] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(686), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [687] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2955), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(687), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [688] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2953), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(688), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [685] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3703), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(685), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [689] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3634), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(689), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [686] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3463), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(686), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [690] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2579), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2579), - [sym_subscript_expression] = STATE(2579), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8208), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(690), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2579), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2820), - [anon_sym_export] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2822), - [anon_sym_namespace] = ACTIONS(2824), + [687] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3461), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(687), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2822), - [anon_sym_let] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(2822), - [anon_sym_yield] = ACTIONS(50), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2826), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2828), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2830), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2822), - [anon_sym_readonly] = ACTIONS(2822), - [anon_sym_get] = ACTIONS(2822), - [anon_sym_set] = ACTIONS(2822), - [anon_sym_declare] = ACTIONS(2822), - [anon_sym_public] = ACTIONS(2822), - [anon_sym_private] = ACTIONS(2822), - [anon_sym_protected] = ACTIONS(2822), - [anon_sym_override] = ACTIONS(2822), - [anon_sym_module] = ACTIONS(2822), - [anon_sym_any] = ACTIONS(2822), - [anon_sym_number] = ACTIONS(2822), - [anon_sym_boolean] = ACTIONS(2822), - [anon_sym_string] = ACTIONS(2822), - [anon_sym_symbol] = ACTIONS(2822), - [anon_sym_object] = ACTIONS(2822), - [anon_sym_property] = ACTIONS(2822), - [anon_sym_signal] = ACTIONS(2822), - [anon_sym_on] = ACTIONS(2822), - [anon_sym_required] = ACTIONS(2822), - [anon_sym_component] = ACTIONS(2822), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [691] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3844), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(691), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [688] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3704), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(688), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -124730,8 +124058,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -124766,52 +124094,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [692] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3775), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(692), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [689] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3705), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(689), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -124842,8 +124170,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -124878,388 +124206,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [693] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3270), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(693), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [690] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3398), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(690), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [694] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3775), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(694), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2832), - [sym_private_property_identifier] = ACTIONS(98), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [695] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3772), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(695), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_namespace] = ACTIONS(1303), + [691] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3458), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(691), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1301), - [anon_sym_let] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1301), - [anon_sym_yield] = ACTIONS(50), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1311), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1317), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1301), - [anon_sym_signal] = ACTIONS(1301), - [anon_sym_on] = ACTIONS(1301), - [anon_sym_required] = ACTIONS(1301), - [anon_sym_component] = ACTIONS(1301), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [696] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3773), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(696), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [692] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3718), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(692), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -125290,8 +124506,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -125326,74 +124542,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [697] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2946), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(697), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [693] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2745), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(693), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -125413,659 +124629,435 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [698] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2945), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(698), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [694] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3543), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(694), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [699] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3055), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(699), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(2834), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [700] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3587), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(700), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [695] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(695), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [701] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2582), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2582), - [sym_subscript_expression] = STATE(2582), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8633), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(701), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2582), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2836), - [anon_sym_export] = ACTIONS(2838), - [anon_sym_type] = ACTIONS(2838), - [anon_sym_namespace] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [696] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3438), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(696), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2838), - [anon_sym_let] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(2838), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2842), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2844), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2838), - [anon_sym_readonly] = ACTIONS(2838), - [anon_sym_get] = ACTIONS(2838), - [anon_sym_set] = ACTIONS(2838), - [anon_sym_declare] = ACTIONS(2838), - [anon_sym_public] = ACTIONS(2838), - [anon_sym_private] = ACTIONS(2838), - [anon_sym_protected] = ACTIONS(2838), - [anon_sym_override] = ACTIONS(2838), - [anon_sym_module] = ACTIONS(2838), - [anon_sym_any] = ACTIONS(2838), - [anon_sym_number] = ACTIONS(2838), - [anon_sym_boolean] = ACTIONS(2838), - [anon_sym_string] = ACTIONS(2838), - [anon_sym_symbol] = ACTIONS(2838), - [anon_sym_object] = ACTIONS(2838), - [anon_sym_property] = ACTIONS(2838), - [anon_sym_signal] = ACTIONS(2838), - [anon_sym_on] = ACTIONS(2838), - [anon_sym_required] = ACTIONS(2838), - [anon_sym_component] = ACTIONS(2838), - [sym_html_comment] = ACTIONS(5), - }, - [702] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3055), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(702), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [703] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2944), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(703), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [697] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3360), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(697), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -126085,301 +125077,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [704] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3061), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(704), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [698] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3091), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(698), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [705] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2587), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2587), - [sym_subscript_expression] = STATE(2587), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8331), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(705), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2587), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2848), - [anon_sym_export] = ACTIONS(2850), - [anon_sym_type] = ACTIONS(2850), - [anon_sym_namespace] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [699] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2657), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(699), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2850), - [anon_sym_let] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(2850), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2854), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2856), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2858), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2850), - [anon_sym_readonly] = ACTIONS(2850), - [anon_sym_get] = ACTIONS(2850), - [anon_sym_set] = ACTIONS(2850), - [anon_sym_declare] = ACTIONS(2850), - [anon_sym_public] = ACTIONS(2850), - [anon_sym_private] = ACTIONS(2850), - [anon_sym_protected] = ACTIONS(2850), - [anon_sym_override] = ACTIONS(2850), - [anon_sym_module] = ACTIONS(2850), - [anon_sym_any] = ACTIONS(2850), - [anon_sym_number] = ACTIONS(2850), - [anon_sym_boolean] = ACTIONS(2850), - [anon_sym_string] = ACTIONS(2850), - [anon_sym_symbol] = ACTIONS(2850), - [anon_sym_object] = ACTIONS(2850), - [anon_sym_property] = ACTIONS(2850), - [anon_sym_signal] = ACTIONS(2850), - [anon_sym_on] = ACTIONS(2850), - [anon_sym_required] = ACTIONS(2850), - [anon_sym_component] = ACTIONS(2850), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [706] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3856), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(706), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [700] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3719), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(700), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -126410,8 +125402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), @@ -126446,73 +125438,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [707] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3227), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(707), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [701] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2968), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(701), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -126535,304 +125527,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [708] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3522), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(708), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [702] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(702), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_number] = ACTIONS(2816), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [709] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3260), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(709), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [703] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3484), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(703), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [710] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3239), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(710), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [704] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2841), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(704), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [705] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3028), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(705), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -126842,18 +125946,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -126869,7 +125973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -126894,393 +125998,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [711] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2581), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2581), - [sym_subscript_expression] = STATE(2581), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8298), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(711), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2581), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2860), - [anon_sym_export] = ACTIONS(2862), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_namespace] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2862), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(2862), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2866), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2868), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2870), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2862), - [anon_sym_readonly] = ACTIONS(2862), - [anon_sym_get] = ACTIONS(2862), - [anon_sym_set] = ACTIONS(2862), - [anon_sym_declare] = ACTIONS(2862), - [anon_sym_public] = ACTIONS(2862), - [anon_sym_private] = ACTIONS(2862), - [anon_sym_protected] = ACTIONS(2862), - [anon_sym_override] = ACTIONS(2862), - [anon_sym_module] = ACTIONS(2862), - [anon_sym_any] = ACTIONS(2862), - [anon_sym_number] = ACTIONS(2862), - [anon_sym_boolean] = ACTIONS(2862), - [anon_sym_string] = ACTIONS(2862), - [anon_sym_symbol] = ACTIONS(2862), - [anon_sym_object] = ACTIONS(2862), - [anon_sym_property] = ACTIONS(2862), - [anon_sym_signal] = ACTIONS(2862), - [anon_sym_on] = ACTIONS(2862), - [anon_sym_required] = ACTIONS(2862), - [anon_sym_component] = ACTIONS(2862), - [sym_html_comment] = ACTIONS(5), - }, - [712] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(712), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [713] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2974), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(713), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [714] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3303), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(714), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [706] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3061), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(706), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -127290,18 +126058,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -127317,7 +126085,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -127342,57 +126110,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [715] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3599), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(715), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [707] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3499), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(707), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_type] = ACTIONS(1639), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -127402,7 +126170,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1649), [anon_sym_of] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -127422,7 +126190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2780), + [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), @@ -127454,73 +126222,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [716] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3078), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(716), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [708] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2976), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(708), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -127543,416 +126311,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [717] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2361), - [sym_subscript_expression] = STATE(2361), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5394), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(717), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2361), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2872), - [anon_sym_export] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_namespace] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [709] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3539), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(709), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(1907), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1917), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2874), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2876), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1907), - [anon_sym_signal] = ACTIONS(1907), - [anon_sym_on] = ACTIONS(1907), - [anon_sym_required] = ACTIONS(1907), - [anon_sym_component] = ACTIONS(1907), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [718] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3644), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(718), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [710] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3620), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(710), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [719] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3599), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(719), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [711] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3311), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(711), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [712] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3694), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(712), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [720] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3291), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(720), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [713] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(713), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -127962,18 +126842,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -127989,7 +126869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -128014,57 +126894,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [721] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3218), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(721), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [714] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(714), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -128074,18 +126954,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -128101,7 +126981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -128126,57 +127006,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [722] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3216), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(722), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [715] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3364), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(715), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [716] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3555), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(716), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [717] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3080), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(717), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -128186,18 +127290,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -128213,7 +127317,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -128238,281 +127342,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [723] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3039), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(723), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [724] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3038), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(724), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [718] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2713), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(718), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [725] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3215), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(725), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [719] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3082), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(719), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -128522,18 +127514,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -128549,7 +127541,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -128574,169 +127566,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [726] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3682), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(726), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [720] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3145), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(720), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1707), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [727] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3214), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(727), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [721] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(721), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -128746,18 +127738,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -128773,7 +127765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -128798,169 +127790,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [728] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3692), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(728), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [722] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2893), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(722), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [729] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3693), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(729), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [723] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3451), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(723), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_type] = ACTIONS(1639), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -128970,7 +127962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1649), [anon_sym_of] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -129022,73 +128014,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [730] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3241), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(730), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [724] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2904), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(724), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -129111,96 +128103,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [731] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2994), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(731), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [725] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2908), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(725), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -129223,192 +128215,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [732] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3753), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(732), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [726] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2440), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2440), + [sym_subscript_expression] = STATE(2440), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8286), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(726), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2440), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2834), + [anon_sym_export] = ACTIONS(2836), + [anon_sym_type] = ACTIONS(2836), + [anon_sym_namespace] = ACTIONS(2838), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(2836), + [anon_sym_let] = ACTIONS(2836), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2836), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(2840), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(2842), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(2844), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(2836), + [anon_sym_readonly] = ACTIONS(2836), + [anon_sym_get] = ACTIONS(2836), + [anon_sym_set] = ACTIONS(2836), + [anon_sym_declare] = ACTIONS(2836), + [anon_sym_public] = ACTIONS(2836), + [anon_sym_private] = ACTIONS(2836), + [anon_sym_protected] = ACTIONS(2836), + [anon_sym_override] = ACTIONS(2836), + [anon_sym_module] = ACTIONS(2836), + [anon_sym_any] = ACTIONS(2836), + [anon_sym_number] = ACTIONS(2836), + [anon_sym_boolean] = ACTIONS(2836), + [anon_sym_string] = ACTIONS(2836), + [anon_sym_symbol] = ACTIONS(2836), + [anon_sym_object] = ACTIONS(2836), + [anon_sym_property] = ACTIONS(2836), + [anon_sym_signal] = ACTIONS(2836), + [anon_sym_on] = ACTIONS(2836), + [anon_sym_required] = ACTIONS(2836), + [anon_sym_component] = ACTIONS(2836), [sym_html_comment] = ACTIONS(5), }, - [733] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3213), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(733), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [727] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3084), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(727), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -129418,18 +128410,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -129445,7 +128437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -129470,297 +128462,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [734] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3703), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(734), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [728] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2441), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2441), + [sym_subscript_expression] = STATE(2441), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7951), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(728), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2441), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2846), + [anon_sym_export] = ACTIONS(2848), + [anon_sym_type] = ACTIONS(2848), + [anon_sym_namespace] = ACTIONS(2850), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(2848), + [anon_sym_let] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2848), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(2852), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(2854), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(2856), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(2848), + [anon_sym_signal] = ACTIONS(2848), + [anon_sym_on] = ACTIONS(2848), + [anon_sym_required] = ACTIONS(2848), + [anon_sym_component] = ACTIONS(2848), [sym_html_comment] = ACTIONS(5), }, - [735] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3708), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(735), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [729] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2718), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(729), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [736] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(736), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [730] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(3117), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(730), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -129783,416 +128775,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [737] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3566), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(737), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [731] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2721), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(731), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [738] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(738), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), + [732] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2438), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2438), + [sym_subscript_expression] = STATE(2438), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8042), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(732), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2438), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2858), + [anon_sym_export] = ACTIONS(2860), + [anon_sym_type] = ACTIONS(2860), + [anon_sym_namespace] = ACTIONS(2862), [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_from] = ACTIONS(2860), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2860), + [anon_sym_yield] = ACTIONS(50), [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(2864), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(2866), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2868), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [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_property] = ACTIONS(2860), + [anon_sym_signal] = ACTIONS(2860), + [anon_sym_on] = ACTIONS(2860), + [anon_sym_required] = ACTIONS(2860), + [anon_sym_component] = ACTIONS(2860), [sym_html_comment] = ACTIONS(5), }, - [739] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3710), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(739), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [733] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(733), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_number] = ACTIONS(2870), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [740] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3718), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(740), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [734] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3393), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(734), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_type] = ACTIONS(1639), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -130202,7 +129194,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1649), [anon_sym_of] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -130254,617 +129246,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [741] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3719), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(741), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [735] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3681), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(735), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1311), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [742] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3721), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(742), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [736] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3089), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(736), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1707), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [743] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3726), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(743), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [737] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(737), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [744] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3727), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(744), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [738] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3085), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(738), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1707), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [745] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3737), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(745), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [739] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3075), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(739), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [740] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3635), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(740), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [746] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3741), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(746), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [741] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3420), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(741), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_type] = ACTIONS(1639), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -130874,7 +129978,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1649), [anon_sym_of] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -130926,206 +130030,654 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [747] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3748), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(747), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [742] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2737), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(742), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [748] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3506), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(748), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [743] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3086), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(743), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [744] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3087), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(744), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1979), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [745] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3314), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(745), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [746] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2976), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(746), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(2818), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [747] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(3015), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(747), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -131150,612 +130702,836 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [749] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3744), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(749), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [748] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3088), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(748), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1707), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [750] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3732), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(750), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [749] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2749), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(749), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [750] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2880), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(750), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, [751] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3728), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3301), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(751), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, [752] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3347), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3092), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(752), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(1707), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, [753] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3717), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2434), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2434), + [sym_subscript_expression] = STATE(2434), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8018), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(753), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2434), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2872), + [anon_sym_export] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2874), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(2874), + [anon_sym_let] = ACTIONS(2874), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2874), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(2878), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(2880), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(2882), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(2874), + [anon_sym_readonly] = ACTIONS(2874), + [anon_sym_get] = ACTIONS(2874), + [anon_sym_set] = ACTIONS(2874), + [anon_sym_declare] = ACTIONS(2874), + [anon_sym_public] = ACTIONS(2874), + [anon_sym_private] = ACTIONS(2874), + [anon_sym_protected] = ACTIONS(2874), + [anon_sym_override] = ACTIONS(2874), + [anon_sym_module] = ACTIONS(2874), + [anon_sym_any] = ACTIONS(2874), + [anon_sym_number] = ACTIONS(2874), + [anon_sym_boolean] = ACTIONS(2874), + [anon_sym_string] = ACTIONS(2874), + [anon_sym_symbol] = ACTIONS(2874), + [anon_sym_object] = ACTIONS(2874), + [anon_sym_property] = ACTIONS(2874), + [anon_sym_signal] = ACTIONS(2874), + [anon_sym_on] = ACTIONS(2874), + [anon_sym_required] = ACTIONS(2874), + [anon_sym_component] = ACTIONS(2874), [sym_html_comment] = ACTIONS(5), }, [754] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2265), - [sym_expression] = STATE(3775), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2265), - [sym_subscript_expression] = STATE(2265), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8341), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3330), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(754), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2265), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [755] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(755), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1299), [anon_sym_export] = ACTIONS(1301), [anon_sym_type] = ACTIONS(1301), @@ -131786,11 +131562,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(87), [anon_sym_void] = ACTIONS(87), [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2878), + [sym_number] = ACTIONS(2870), [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), @@ -131822,74 +131598,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [755] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3170), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(755), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [756] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2985), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(756), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [757] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2755), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(757), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -131909,455 +131797,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), - [sym_html_comment] = ACTIONS(5), - }, - [756] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3705), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(756), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [757] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2580), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2580), - [sym_subscript_expression] = STATE(2580), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8257), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(757), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2580), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2880), - [anon_sym_export] = ACTIONS(2882), - [anon_sym_type] = ACTIONS(2882), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [758] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3591), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(758), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2882), - [anon_sym_let] = ACTIONS(2882), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(2882), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2886), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2888), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2890), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2882), - [anon_sym_readonly] = ACTIONS(2882), - [anon_sym_get] = ACTIONS(2882), - [anon_sym_set] = ACTIONS(2882), - [anon_sym_declare] = ACTIONS(2882), - [anon_sym_public] = ACTIONS(2882), - [anon_sym_private] = ACTIONS(2882), - [anon_sym_protected] = ACTIONS(2882), - [anon_sym_override] = ACTIONS(2882), - [anon_sym_module] = ACTIONS(2882), - [anon_sym_any] = ACTIONS(2882), - [anon_sym_number] = ACTIONS(2882), - [anon_sym_boolean] = ACTIONS(2882), - [anon_sym_string] = ACTIONS(2882), - [anon_sym_symbol] = ACTIONS(2882), - [anon_sym_object] = ACTIONS(2882), - [anon_sym_property] = ACTIONS(2882), - [anon_sym_signal] = ACTIONS(2882), - [anon_sym_on] = ACTIONS(2882), - [anon_sym_required] = ACTIONS(2882), - [anon_sym_component] = ACTIONS(2882), - [sym_html_comment] = ACTIONS(5), - }, - [758] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3428), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(758), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, [759] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3387), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(3078), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(759), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -132383,56 +132047,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [760] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3697), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3614), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(760), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_type] = ACTIONS(1639), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -132442,7 +132106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1649), [anon_sym_of] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -132495,185 +132159,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [761] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3212), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2758), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(761), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [762] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3380), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(762), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -132693,194 +132245,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, + [762] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2971), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(762), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, [763] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3210), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2761), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(763), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [764] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3208), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3094), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(764), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -132890,18 +132554,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -132917,7 +132581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -132943,185 +132607,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [765] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3207), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3596), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(765), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, [766] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2763), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(766), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -133134,686 +132798,686 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2780), + [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [767] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3202), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2765), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(767), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [768] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3346), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2888), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(768), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1885), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, [769] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3278), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3359), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(769), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [770] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3201), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2430), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2430), + [sym_subscript_expression] = STATE(2430), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8268), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(770), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2430), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2884), + [anon_sym_export] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(2890), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2892), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(98), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(2894), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(2886), + [anon_sym_readonly] = ACTIONS(2886), + [anon_sym_get] = ACTIONS(2886), + [anon_sym_set] = ACTIONS(2886), + [anon_sym_declare] = ACTIONS(2886), + [anon_sym_public] = ACTIONS(2886), + [anon_sym_private] = ACTIONS(2886), + [anon_sym_protected] = ACTIONS(2886), + [anon_sym_override] = ACTIONS(2886), + [anon_sym_module] = ACTIONS(2886), + [anon_sym_any] = ACTIONS(2886), + [anon_sym_number] = ACTIONS(2886), + [anon_sym_boolean] = ACTIONS(2886), + [anon_sym_string] = ACTIONS(2886), + [anon_sym_symbol] = ACTIONS(2886), + [anon_sym_object] = ACTIONS(2886), + [anon_sym_property] = ACTIONS(2886), + [anon_sym_signal] = ACTIONS(2886), + [anon_sym_on] = ACTIONS(2886), + [anon_sym_required] = ACTIONS(2886), + [anon_sym_component] = ACTIONS(2886), [sym_html_comment] = ACTIONS(5), }, [771] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3197), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3599), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(771), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, [772] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2972), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(772), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -133839,185 +133503,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [773] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3352), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2769), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(773), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), - [sym_html_comment] = ACTIONS(5), - }, - [774] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3384), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(774), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -134037,194 +133589,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [775] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3195), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(775), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [774] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(774), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_function] = ACTIONS(64), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [776] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3745), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(776), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [775] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3423), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(775), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_type] = ACTIONS(1639), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -134234,7 +133786,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1649), [anon_sym_of] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -134286,409 +133838,521 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, + [776] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2770), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(776), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, [777] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3365), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2774), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(777), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [778] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3191), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(778), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [779] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3739), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2778), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(779), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [780] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3000), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2922), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(780), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -134711,118 +134375,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [781] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3385), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(781), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), - [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), [anon_sym_get] = ACTIONS(1719), @@ -134846,74 +134398,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, + [781] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2783), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(781), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), + [sym_html_comment] = ACTIONS(5), + }, [782] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2797), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(782), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -134926,670 +134590,782 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2832), + [sym_number] = ACTIONS(102), [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [783] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3294), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3678), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(783), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, [784] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3199), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3608), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(784), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, [785] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3386), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2802), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(785), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [786] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3390), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3021), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(786), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [787] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3200), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3404), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(787), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, [788] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3673), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(788), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), + }, + [789] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2852), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(789), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -135598,7 +135374,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(2834), + [sym_number] = ACTIONS(223), [sym_private_property_identifier] = ACTIONS(1885), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), @@ -135630,760 +135406,648 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [789] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3129), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(789), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, [790] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2589), - [sym_expression] = STATE(3791), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8344), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2589), - [sym_subscript_expression] = STATE(2589), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4686), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8470), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2803), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(790), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2589), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2892), - [anon_sym_export] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_namespace] = ACTIONS(2896), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(87), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(48), - [anon_sym_of] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(50), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(2898), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2900), - [anon_sym_using] = ACTIONS(70), - [anon_sym_PLUS] = ACTIONS(87), - [anon_sym_DASH] = ACTIONS(87), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(87), - [anon_sym_void] = ACTIONS(87), - [anon_sym_delete] = ACTIONS(87), - [anon_sym_PLUS_PLUS] = ACTIONS(1243), - [anon_sym_DASH_DASH] = ACTIONS(1243), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(98), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2902), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_readonly] = ACTIONS(2894), - [anon_sym_get] = ACTIONS(2894), - [anon_sym_set] = ACTIONS(2894), - [anon_sym_declare] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_protected] = ACTIONS(2894), - [anon_sym_override] = ACTIONS(2894), - [anon_sym_module] = ACTIONS(2894), - [anon_sym_any] = ACTIONS(2894), - [anon_sym_number] = ACTIONS(2894), - [anon_sym_boolean] = ACTIONS(2894), - [anon_sym_string] = ACTIONS(2894), - [anon_sym_symbol] = ACTIONS(2894), - [anon_sym_object] = ACTIONS(2894), - [anon_sym_property] = ACTIONS(2894), - [anon_sym_signal] = ACTIONS(2894), - [anon_sym_on] = ACTIONS(2894), - [anon_sym_required] = ACTIONS(2894), - [anon_sym_component] = ACTIONS(2894), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [791] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3397), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3597), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(791), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, [792] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3455), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2747), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(792), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, [793] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3402), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3107), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(793), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1691), + [anon_sym_function] = ACTIONS(64), [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1707), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, [794] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3403), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3593), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(794), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, [795] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3615), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3576), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(795), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2780), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), @@ -136391,304 +136055,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, [796] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3146), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3682), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(796), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, [797] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3076), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2447), - [sym_subscript_expression] = STATE(2447), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(5903), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3566), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(797), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2447), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2904), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_type] = ACTIONS(1937), - [anon_sym_namespace] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(1170), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1937), - [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1943), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_using] = ACTIONS(1184), - [anon_sym_PLUS] = ACTIONS(1170), - [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1170), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1170), - [anon_sym_PLUS_PLUS] = ACTIONS(1194), - [anon_sym_DASH_DASH] = ACTIONS(1194), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1196), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2908), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1937), - [anon_sym_signal] = ACTIONS(1937), - [anon_sym_on] = ACTIONS(1937), - [anon_sym_required] = ACTIONS(1937), - [anon_sym_component] = ACTIONS(1937), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, [798] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3244), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3108), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(798), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), [anon_sym_export] = ACTIONS(1675), [anon_sym_type] = ACTIONS(1675), [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1675), @@ -136698,18 +136362,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1685), [anon_sym_of] = ACTIONS(1675), [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1977), [anon_sym_using] = ACTIONS(1695), [anon_sym_PLUS] = ACTIONS(1683), [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1683), [anon_sym_void] = ACTIONS(1683), @@ -136725,7 +136389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1675), [anon_sym_readonly] = ACTIONS(1675), @@ -136751,311 +136415,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [799] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3562), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3391), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(799), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, [800] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3615), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2850), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(800), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(2818), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, [801] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3619), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3574), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(801), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), @@ -137063,117 +136727,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, [802] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3404), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2861), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(802), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -137199,168 +136863,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [803] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(2982), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3633), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), [sym_comment] = STATE(803), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), + }, + [804] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3299), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(804), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [804] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3149), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(804), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [805] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2850), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(805), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), @@ -137374,14 +137150,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -137422,88 +137198,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [805] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3530), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(805), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [806] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3567), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(806), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), @@ -137511,640 +137287,976 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [806] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3626), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(806), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), + }, + [807] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3297), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(807), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [808] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3334), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(808), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [809] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3327), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(809), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [810] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3240), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(810), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [811] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3542), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(811), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [807] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3647), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(807), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [812] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3587), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(812), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1767), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1779), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(2011), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), [sym_html_comment] = ACTIONS(5), }, - [808] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3409), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(808), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [813] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(813), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [809] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3623), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(809), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [814] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3390), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(814), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [810] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3411), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(810), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [811] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), + [815] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), [sym_expression] = STATE(3563), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(811), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(815), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), [anon_sym_export] = ACTIONS(1595), [anon_sym_type] = ACTIONS(1595), [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1595), @@ -138154,18 +138266,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1605), [anon_sym_of] = ACTIONS(1595), [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2001), [anon_sym_using] = ACTIONS(1615), [anon_sym_PLUS] = ACTIONS(1603), [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1603), [anon_sym_void] = ACTIONS(1603), @@ -138181,7 +138293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1595), [anon_sym_readonly] = ACTIONS(1595), @@ -138206,57 +138318,393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [812] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3684), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(812), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [816] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(816), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), + [sym_html_comment] = ACTIONS(5), + }, + [817] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(817), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2820), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [818] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2837), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(818), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), + [sym_html_comment] = ACTIONS(5), + }, + [819] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3553), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(819), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), [anon_sym_export] = ACTIONS(1595), [anon_sym_type] = ACTIONS(1595), [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1595), @@ -138266,18 +138714,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1605), [anon_sym_of] = ACTIONS(1595), [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2001), [anon_sym_using] = ACTIONS(1615), [anon_sym_PLUS] = ACTIONS(1603), [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1603), [anon_sym_void] = ACTIONS(1603), @@ -138293,7 +138741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1595), [anon_sym_readonly] = ACTIONS(1595), @@ -138318,57 +138766,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [813] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3676), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(813), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), + [820] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3534), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(820), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, + [821] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3546), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(821), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), [anon_sym_export] = ACTIONS(1595), [anon_sym_type] = ACTIONS(1595), [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1595), @@ -138378,18 +138938,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1605), [anon_sym_of] = ACTIONS(1595), [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2001), [anon_sym_using] = ACTIONS(1615), [anon_sym_PLUS] = ACTIONS(1603), [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1603), [anon_sym_void] = ACTIONS(1603), @@ -138405,7 +138965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1595), [anon_sym_readonly] = ACTIONS(1595), @@ -138430,94 +138990,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [814] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3423), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(814), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), + [822] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2397), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8189), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2397), + [sym_subscript_expression] = STATE(2397), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4375), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8192), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(822), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2397), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(716), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2005), + [anon_sym_export] = ACTIONS(1753), + [anon_sym_type] = ACTIONS(1753), + [anon_sym_namespace] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1753), + [anon_sym_let] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1763), + [anon_sym_of] = ACTIONS(1753), + [anon_sym_yield] = ACTIONS(1765), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1767), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_SLASH] = ACTIONS(1523), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_void] = ACTIONS(1761), + [anon_sym_delete] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1779), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2011), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1753), + [anon_sym_signal] = ACTIONS(1753), + [anon_sym_on] = ACTIONS(1753), + [anon_sym_required] = ACTIONS(1753), + [anon_sym_component] = ACTIONS(1753), + [sym_html_comment] = ACTIONS(5), + }, + [823] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3389), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(823), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), + [sym_html_comment] = ACTIONS(5), + }, + [824] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2993), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(824), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -138542,73 +139326,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [815] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3087), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(815), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [825] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2897), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(825), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -138631,304 +139415,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [816] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3669), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(816), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [826] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3388), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(826), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [817] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3672), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(817), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [827] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(3069), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(827), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [818] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3668), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(818), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), + [828] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3325), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(828), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [829] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3602), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(829), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), [anon_sym_export] = ACTIONS(1595), [anon_sym_type] = ACTIONS(1595), [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1595), @@ -138938,18 +139834,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1605), [anon_sym_of] = ACTIONS(1595), [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2001), [anon_sym_using] = ACTIONS(1615), [anon_sym_PLUS] = ACTIONS(1603), [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1603), [anon_sym_void] = ACTIONS(1603), @@ -138965,7 +139861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1595), [anon_sym_readonly] = ACTIONS(1595), @@ -138990,185 +139886,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [819] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3666), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(819), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [830] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3316), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(830), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [831] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(831), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [820] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3037), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(820), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [832] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2988), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(832), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -139191,208 +140199,544 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [821] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2988), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(821), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [833] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3324), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(833), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [822] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2986), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(822), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [834] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(834), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2820), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), + }, + [835] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2429), + [sym_expression] = STATE(3616), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2429), + [sym_subscript_expression] = STATE(2429), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8296), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(835), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2429), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(2896), + [anon_sym_export] = ACTIONS(2898), + [anon_sym_type] = ACTIONS(2898), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(2898), + [anon_sym_let] = ACTIONS(2898), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(2898), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2906), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(2898), + [anon_sym_readonly] = ACTIONS(2898), + [anon_sym_get] = ACTIONS(2898), + [anon_sym_set] = ACTIONS(2898), + [anon_sym_declare] = ACTIONS(2898), + [anon_sym_public] = ACTIONS(2898), + [anon_sym_private] = ACTIONS(2898), + [anon_sym_protected] = ACTIONS(2898), + [anon_sym_override] = ACTIONS(2898), + [anon_sym_module] = ACTIONS(2898), + [anon_sym_any] = ACTIONS(2898), + [anon_sym_number] = ACTIONS(2898), + [anon_sym_boolean] = ACTIONS(2898), + [anon_sym_string] = ACTIONS(2898), + [anon_sym_symbol] = ACTIONS(2898), + [anon_sym_object] = ACTIONS(2898), + [anon_sym_property] = ACTIONS(2898), + [anon_sym_signal] = ACTIONS(2898), + [anon_sym_on] = ACTIONS(2898), + [anon_sym_required] = ACTIONS(2898), + [anon_sym_component] = ACTIONS(2898), + [sym_html_comment] = ACTIONS(5), + }, + [836] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(836), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [837] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2999), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(837), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -139415,96 +140759,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [823] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2995), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(823), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [838] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2938), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(838), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -139527,96 +140871,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [824] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3015), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(824), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [839] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2936), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(839), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -139639,96 +140983,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [825] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(825), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [840] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2935), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(840), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -139751,320 +141095,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [826] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3089), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(826), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), + [841] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3322), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(841), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [827] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(827), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), + [842] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2833), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(842), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [828] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3032), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(828), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [843] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(3001), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(843), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -140087,209 +141431,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [829] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3664), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(829), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [844] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2838), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(844), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [830] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(3076), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(830), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [845] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(3341), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(845), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -140309,194 +141653,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [831] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3069), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(831), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [846] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3321), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(846), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [832] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3663), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(832), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), + [847] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3449), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(847), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), [anon_sym_export] = ACTIONS(1595), [anon_sym_type] = ACTIONS(1595), [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1595), @@ -140506,18 +141850,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1605), [anon_sym_of] = ACTIONS(1595), [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2001), [anon_sym_using] = ACTIONS(1615), [anon_sym_PLUS] = ACTIONS(1603), [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1603), [anon_sym_void] = ACTIONS(1603), @@ -140526,14 +141870,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), + [sym_number] = ACTIONS(2820), [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1595), [anon_sym_readonly] = ACTIONS(1595), @@ -140558,281 +141902,393 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [833] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3662), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(833), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [848] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(3050), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(848), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [834] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3661), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(834), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [849] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2886), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(849), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [835] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3660), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(835), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), + [850] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2859), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(850), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), + [sym_html_comment] = ACTIONS(5), + }, + [851] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3513), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(851), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), [anon_sym_export] = ACTIONS(1595), [anon_sym_type] = ACTIONS(1595), [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1595), @@ -140842,18 +142298,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1605), [anon_sym_of] = ACTIONS(1595), [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2001), [anon_sym_using] = ACTIONS(1615), [anon_sym_PLUS] = ACTIONS(1603), [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1603), [anon_sym_void] = ACTIONS(1603), @@ -140869,7 +142325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1595), [anon_sym_readonly] = ACTIONS(1595), @@ -140894,409 +142350,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [836] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3674), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(836), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [852] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3320), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(852), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1849), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1987), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), + [sym_html_comment] = ACTIONS(5), + }, + [853] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2368), + [sym_expression] = STATE(3089), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8302), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2368), + [sym_subscript_expression] = STATE(2368), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4475), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8376), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(853), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2368), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(672), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1973), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1675), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_of] = ACTIONS(1675), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1691), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_using] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1483), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1701), + [anon_sym_DASH_DASH] = ACTIONS(1701), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_number] = ACTIONS(2820), + [sym_private_property_identifier] = ACTIONS(1707), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1979), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [837] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3659), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(837), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), - [sym_html_comment] = ACTIONS(5), - }, - [838] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3658), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(838), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [anon_sym_property] = ACTIONS(1675), + [anon_sym_signal] = ACTIONS(1675), + [anon_sym_on] = ACTIONS(1675), + [anon_sym_required] = ACTIONS(1675), + [anon_sym_component] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [839] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3070), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(839), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [854] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2980), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(854), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), + [anon_sym_of] = ACTIONS(1719), [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1963), [anon_sym_using] = ACTIONS(209), [anon_sym_PLUS] = ACTIONS(151), @@ -141319,640 +142663,640 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(223), [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [840] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3074), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(840), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [855] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2866), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(855), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), + [sym_private_property_identifier] = ACTIONS(1885), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [841] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3657), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(841), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [856] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3376), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(856), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [842] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3251), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(842), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [857] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2867), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(857), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), + [sym_private_property_identifier] = ACTIONS(1885), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [843] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3655), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(843), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [858] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3384), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(858), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [844] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3654), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(844), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [859] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3415), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(859), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [845] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3133), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(845), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [860] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2875), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(860), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), @@ -141966,14 +143310,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -142014,617 +143358,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [846] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(2983), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(846), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [861] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2876), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(861), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), + [sym_private_property_identifier] = ACTIONS(1885), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), - [sym_html_comment] = ACTIONS(5), - }, - [847] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3651), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(847), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), - [sym_html_comment] = ACTIONS(5), - }, - [848] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3650), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(848), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), - [sym_html_comment] = ACTIONS(5), - }, - [849] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3677), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(849), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [850] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3643), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(850), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_type] = ACTIONS(1595), - [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), - [anon_sym_typeof] = ACTIONS(1603), + [862] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2877), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(862), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_BANG] = ACTIONS(1603), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1605), - [anon_sym_of] = ACTIONS(1595), - [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1611), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1615), - [anon_sym_PLUS] = ACTIONS(1603), - [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1603), - [anon_sym_void] = ACTIONS(1603), - [anon_sym_delete] = ACTIONS(1603), - [anon_sym_PLUS_PLUS] = ACTIONS(1621), - [anon_sym_DASH_DASH] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1627), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1595), - [anon_sym_readonly] = ACTIONS(1595), - [anon_sym_get] = ACTIONS(1595), - [anon_sym_set] = ACTIONS(1595), - [anon_sym_declare] = ACTIONS(1595), - [anon_sym_public] = ACTIONS(1595), - [anon_sym_private] = ACTIONS(1595), - [anon_sym_protected] = ACTIONS(1595), - [anon_sym_override] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_any] = ACTIONS(1595), - [anon_sym_number] = ACTIONS(1595), - [anon_sym_boolean] = ACTIONS(1595), - [anon_sym_string] = ACTIONS(1595), - [anon_sym_symbol] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(1595), - [anon_sym_property] = ACTIONS(1595), - [anon_sym_signal] = ACTIONS(1595), - [anon_sym_on] = ACTIONS(1595), - [anon_sym_required] = ACTIONS(1595), - [anon_sym_component] = ACTIONS(1595), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [851] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3700), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(851), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [863] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3550), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(863), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1989), [anon_sym_export] = ACTIONS(1639), [anon_sym_type] = ACTIONS(1639), [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1497), [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1639), @@ -142634,7 +143642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1649), [anon_sym_of] = ACTIONS(1639), [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), @@ -142686,57 +143694,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [852] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3120), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(852), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [864] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2878), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(864), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), @@ -142750,14 +143758,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -142798,424 +143806,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [853] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3680), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(853), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [865] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2929), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(865), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(411), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [854] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3683), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(854), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_static] = ACTIONS(1719), + [anon_sym_readonly] = ACTIONS(1719), + [anon_sym_get] = ACTIONS(1719), + [anon_sym_set] = ACTIONS(1719), + [anon_sym_declare] = ACTIONS(1719), + [anon_sym_public] = ACTIONS(1719), + [anon_sym_private] = ACTIONS(1719), + [anon_sym_protected] = ACTIONS(1719), + [anon_sym_override] = ACTIONS(1719), + [anon_sym_module] = ACTIONS(1719), + [anon_sym_any] = ACTIONS(1719), + [anon_sym_number] = ACTIONS(1719), + [anon_sym_boolean] = ACTIONS(1719), + [anon_sym_string] = ACTIONS(1719), + [anon_sym_symbol] = ACTIONS(1719), + [anon_sym_object] = ACTIONS(1719), + [anon_sym_property] = ACTIONS(1719), + [anon_sym_signal] = ACTIONS(1719), + [anon_sym_on] = ACTIONS(1719), + [anon_sym_required] = ACTIONS(1719), + [anon_sym_component] = ACTIONS(1719), + [sym_html_comment] = ACTIONS(5), + }, + [866] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3386), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(866), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [855] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3688), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(855), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [867] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2883), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(867), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), + [sym_html_comment] = ACTIONS(5), + }, + [868] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2409), + [sym_expression] = STATE(3387), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8256), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2409), + [sym_subscript_expression] = STATE(2409), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4392), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8055), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(868), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2409), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(674), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1989), + [anon_sym_export] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1639), + [anon_sym_namespace] = ACTIONS(1641), + [anon_sym_LBRACE] = ACTIONS(1497), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1639), + [anon_sym_let] = ACTIONS(1639), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_of] = ACTIONS(1639), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1499), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_new] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [sym_undefined] = ACTIONS(1995), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1639), + [anon_sym_readonly] = ACTIONS(1639), + [anon_sym_get] = ACTIONS(1639), + [anon_sym_set] = ACTIONS(1639), + [anon_sym_declare] = ACTIONS(1639), + [anon_sym_public] = ACTIONS(1639), + [anon_sym_private] = ACTIONS(1639), + [anon_sym_protected] = ACTIONS(1639), + [anon_sym_override] = ACTIONS(1639), + [anon_sym_module] = ACTIONS(1639), + [anon_sym_any] = ACTIONS(1639), + [anon_sym_number] = ACTIONS(1639), + [anon_sym_boolean] = ACTIONS(1639), + [anon_sym_string] = ACTIONS(1639), + [anon_sym_symbol] = ACTIONS(1639), + [anon_sym_object] = ACTIONS(1639), + [anon_sym_property] = ACTIONS(1639), + [anon_sym_signal] = ACTIONS(1639), + [anon_sym_on] = ACTIONS(1639), + [anon_sym_required] = ACTIONS(1639), + [anon_sym_component] = ACTIONS(1639), [sym_html_comment] = ACTIONS(5), }, - [856] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3689), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(856), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [869] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3448), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(869), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), @@ -143223,304 +144343,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [857] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3111), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(857), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [858] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3075), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(858), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [870] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(870), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1172), + [anon_sym_of] = ACTIONS(1389), + [anon_sym_yield] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_SLASH] = ACTIONS(213), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1399), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1401), + [anon_sym_using] = ACTIONS(1184), + [anon_sym_PLUS] = ACTIONS(1170), + [anon_sym_DASH] = ACTIONS(1170), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1170), + [anon_sym_void] = ACTIONS(1170), + [anon_sym_delete] = ACTIONS(1170), + [anon_sym_PLUS_PLUS] = ACTIONS(1194), + [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(2820), + [sym_private_property_identifier] = ACTIONS(1196), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [859] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3636), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(859), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), + [871] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3449), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(871), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), [anon_sym_export] = ACTIONS(1595), [anon_sym_type] = ACTIONS(1595), [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1595), @@ -143530,18 +144538,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1605), [anon_sym_of] = ACTIONS(1595), [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2001), [anon_sym_using] = ACTIONS(1615), [anon_sym_PLUS] = ACTIONS(1603), [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1603), [anon_sym_void] = ACTIONS(1603), @@ -143557,7 +144565,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1595), [anon_sym_readonly] = ACTIONS(1595), @@ -143582,169 +144590,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [860] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3507), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(860), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [872] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3709), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(872), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), + [sym_html_comment] = ACTIONS(5), + }, + [873] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3317), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(873), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1719), - [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1719), - [anon_sym_set] = ACTIONS(1719), - [anon_sym_declare] = ACTIONS(1719), - [anon_sym_public] = ACTIONS(1719), - [anon_sym_private] = ACTIONS(1719), - [anon_sym_protected] = ACTIONS(1719), - [anon_sym_override] = ACTIONS(1719), - [anon_sym_module] = ACTIONS(1719), - [anon_sym_any] = ACTIONS(1719), - [anon_sym_number] = ACTIONS(1719), - [anon_sym_boolean] = ACTIONS(1719), - [anon_sym_string] = ACTIONS(1719), - [anon_sym_symbol] = ACTIONS(1719), - [anon_sym_object] = ACTIONS(1719), - [anon_sym_property] = ACTIONS(1719), - [anon_sym_signal] = ACTIONS(1719), - [anon_sym_on] = ACTIONS(1719), - [anon_sym_required] = ACTIONS(1719), - [anon_sym_component] = ACTIONS(1719), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [861] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3047), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(861), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [874] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2879), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(874), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), @@ -143758,14 +144878,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -143806,169 +144926,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [862] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3144), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(862), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), + [875] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2157), + [sym_expression] = STATE(3657), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8115), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2157), + [sym_subscript_expression] = STATE(2157), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4384), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8117), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(875), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2157), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(788), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1299), + [anon_sym_export] = ACTIONS(1301), + [anon_sym_type] = ACTIONS(1301), + [anon_sym_namespace] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_typeof] = ACTIONS(87), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_from] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1301), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(48), + [anon_sym_of] = ACTIONS(1301), + [anon_sym_yield] = ACTIONS(50), + [anon_sym_LBRACK] = ACTIONS(1307), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1311), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(70), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(87), + [anon_sym_void] = ACTIONS(87), + [anon_sym_delete] = ACTIONS(87), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_DASH_DASH] = ACTIONS(1237), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(98), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(1317), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), + [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_property] = ACTIONS(1301), + [anon_sym_signal] = ACTIONS(1301), + [anon_sym_on] = ACTIONS(1301), + [anon_sym_required] = ACTIONS(1301), + [anon_sym_component] = ACTIONS(1301), [sym_html_comment] = ACTIONS(5), }, - [863] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3142), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(863), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [876] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2881), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(876), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), @@ -143982,14 +145102,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -144030,88 +145150,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [864] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3691), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(864), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [877] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3443), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(877), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), @@ -144119,80 +145239,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [865] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2569), - [sym_expression] = STATE(3632), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8537), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2569), - [sym_subscript_expression] = STATE(2569), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4616), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8550), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(865), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2569), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(812), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(2005), + [878] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3517), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(878), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), [anon_sym_export] = ACTIONS(1595), [anon_sym_type] = ACTIONS(1595), [anon_sym_namespace] = ACTIONS(1597), - [anon_sym_LBRACE] = ACTIONS(1267), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1595), @@ -144202,18 +145322,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(1605), [anon_sym_of] = ACTIONS(1595), [anon_sym_yield] = ACTIONS(1607), - [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2009), + [anon_sym_new] = ACTIONS(2001), [anon_sym_using] = ACTIONS(1615), [anon_sym_PLUS] = ACTIONS(1603), [anon_sym_DASH] = ACTIONS(1603), - [anon_sym_SLASH] = ACTIONS(1591), + [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1603), [anon_sym_void] = ACTIONS(1603), @@ -144229,7 +145349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2011), + [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1595), [anon_sym_readonly] = ACTIONS(1595), @@ -144254,200 +145374,200 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [866] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3115), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(866), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [879] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3302), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(879), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [867] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3694), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(867), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), + [880] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(880), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), + [anon_sym_async] = ACTIONS(1611), [anon_sym_function] = ACTIONS(64), [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), [anon_sym_SLASH] = ACTIONS(1190), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), + [sym_private_property_identifier] = ACTIONS(1627), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), @@ -144455,321 +145575,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(102), [sym_undefined] = ACTIONS(2003), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), [sym_html_comment] = ACTIONS(5), }, - [868] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3698), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(868), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [881] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2912), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(881), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [869] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2489), - [sym_expression] = STATE(3287), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8226), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2489), - [sym_subscript_expression] = STATE(2489), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4603), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8214), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(869), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2489), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(716), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1959), - [anon_sym_export] = ACTIONS(1779), - [anon_sym_type] = ACTIONS(1779), - [anon_sym_namespace] = ACTIONS(1781), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(151), + [882] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2393), + [sym_expression] = STATE(3318), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8267), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4385), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8269), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(882), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2393), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(628), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1981), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_type] = ACTIONS(1817), + [anon_sym_namespace] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1825), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1779), - [anon_sym_let] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(151), + [anon_sym_from] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_BANG] = ACTIONS(1825), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(173), - [anon_sym_of] = ACTIONS(1779), - [anon_sym_yield] = ACTIONS(193), + [anon_sym_await] = ACTIONS(1827), + [anon_sym_of] = ACTIONS(1817), + [anon_sym_yield] = ACTIONS(1829), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1963), - [anon_sym_using] = ACTIONS(209), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1833), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_using] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_void] = ACTIONS(151), - [anon_sym_delete] = ACTIONS(151), - [anon_sym_PLUS_PLUS] = ACTIONS(215), - [anon_sym_DASH_DASH] = ACTIONS(215), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_void] = ACTIONS(1825), + [anon_sym_delete] = ACTIONS(1825), + [anon_sym_PLUS_PLUS] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1843), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(411), + [sym_private_property_identifier] = ACTIONS(1849), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(225), + [sym_undefined] = ACTIONS(1987), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1779), - [anon_sym_readonly] = ACTIONS(1779), - [anon_sym_get] = ACTIONS(1779), - [anon_sym_set] = ACTIONS(1779), - [anon_sym_declare] = ACTIONS(1779), - [anon_sym_public] = ACTIONS(1779), - [anon_sym_private] = ACTIONS(1779), - [anon_sym_protected] = ACTIONS(1779), - [anon_sym_override] = ACTIONS(1779), - [anon_sym_module] = ACTIONS(1779), - [anon_sym_any] = ACTIONS(1779), - [anon_sym_number] = ACTIONS(1779), - [anon_sym_boolean] = ACTIONS(1779), - [anon_sym_string] = ACTIONS(1779), - [anon_sym_symbol] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(1779), - [anon_sym_property] = ACTIONS(1779), - [anon_sym_signal] = ACTIONS(1779), - [anon_sym_on] = ACTIONS(1779), - [anon_sym_required] = ACTIONS(1779), - [anon_sym_component] = ACTIONS(1779), + [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_property] = ACTIONS(1817), + [anon_sym_signal] = ACTIONS(1817), + [anon_sym_on] = ACTIONS(1817), + [anon_sym_required] = ACTIONS(1817), + [anon_sym_component] = ACTIONS(1817), [sym_html_comment] = ACTIONS(5), }, - [870] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2427), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8627), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2427), - [sym_subscript_expression] = STATE(2427), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4660), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8618), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(870), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2427), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(663), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1371), - [anon_sym_export] = ACTIONS(1373), - [anon_sym_type] = ACTIONS(1373), - [anon_sym_namespace] = ACTIONS(1375), - [anon_sym_LBRACE] = ACTIONS(1325), + [883] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2400), + [sym_expression] = STATE(3510), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8056), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2400), + [sym_subscript_expression] = STATE(2400), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4473), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(8222), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(883), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2400), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(694), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1997), + [anon_sym_export] = ACTIONS(1595), + [anon_sym_type] = ACTIONS(1595), + [anon_sym_namespace] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1329), + [anon_sym_typeof] = ACTIONS(1603), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1595), + [anon_sym_let] = ACTIONS(1595), + [anon_sym_BANG] = ACTIONS(1603), + [anon_sym_LPAREN] = ACTIONS(1305), + [anon_sym_await] = ACTIONS(1605), + [anon_sym_of] = ACTIONS(1595), + [anon_sym_yield] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1331), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_class] = ACTIONS(60), + [anon_sym_async] = ACTIONS(1611), + [anon_sym_function] = ACTIONS(64), + [anon_sym_new] = ACTIONS(2001), + [anon_sym_using] = ACTIONS(1615), + [anon_sym_PLUS] = ACTIONS(1603), + [anon_sym_DASH] = ACTIONS(1603), + [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1603), + [anon_sym_void] = ACTIONS(1603), + [anon_sym_delete] = ACTIONS(1603), + [anon_sym_PLUS_PLUS] = ACTIONS(1621), + [anon_sym_DASH_DASH] = ACTIONS(1621), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1315), + [sym_number] = ACTIONS(102), + [sym_private_property_identifier] = ACTIONS(1627), + [sym_this] = ACTIONS(102), + [sym_super] = ACTIONS(102), + [sym_true] = ACTIONS(102), + [sym_false] = ACTIONS(102), + [sym_null] = ACTIONS(102), + [sym_undefined] = ACTIONS(2003), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(1595), + [anon_sym_readonly] = ACTIONS(1595), + [anon_sym_get] = ACTIONS(1595), + [anon_sym_set] = ACTIONS(1595), + [anon_sym_declare] = ACTIONS(1595), + [anon_sym_public] = ACTIONS(1595), + [anon_sym_private] = ACTIONS(1595), + [anon_sym_protected] = ACTIONS(1595), + [anon_sym_override] = ACTIONS(1595), + [anon_sym_module] = ACTIONS(1595), + [anon_sym_any] = ACTIONS(1595), + [anon_sym_number] = ACTIONS(1595), + [anon_sym_boolean] = ACTIONS(1595), + [anon_sym_string] = ACTIONS(1595), + [anon_sym_symbol] = ACTIONS(1595), + [anon_sym_object] = ACTIONS(1595), + [anon_sym_property] = ACTIONS(1595), + [anon_sym_signal] = ACTIONS(1595), + [anon_sym_on] = ACTIONS(1595), + [anon_sym_required] = ACTIONS(1595), + [anon_sym_component] = ACTIONS(1595), + [sym_html_comment] = ACTIONS(5), + }, + [884] = { + [sym_import] = STATE(4916), + [sym_parenthesized_expression] = STATE(2269), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2816), + [sym_yield_expression] = STATE(2832), + [sym_object] = STATE(2894), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(2894), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(2832), + [sym_glimmer_opening_tag] = STATE(6157), + [sym_class] = STATE(2894), + [sym_function_expression] = STATE(2894), + [sym_generator_function] = STATE(2894), + [sym_arrow_function] = STATE(2894), + [sym__call_signature] = STATE(8317), + [sym_call_expression] = STATE(2894), + [sym_new_expression] = STATE(2832), + [sym_await_expression] = STATE(2832), + [sym_member_expression] = STATE(2269), + [sym_subscript_expression] = STATE(2269), + [sym_assignment_expression] = STATE(2832), + [sym__augmented_assignment_lhs] = STATE(4439), + [sym_augmented_assignment_expression] = STATE(2832), + [sym__destructuring_pattern] = STATE(7982), + [sym_ternary_expression] = STATE(2832), + [sym_binary_expression] = STATE(2832), + [sym_unary_expression] = STATE(2832), + [sym_update_expression] = STATE(2832), + [sym_string] = STATE(2894), + [sym_comment] = STATE(884), + [sym_template_string] = STATE(2894), + [sym_regex] = STATE(2894), + [sym_meta_property] = STATE(2894), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2269), + [sym_type_assertion] = STATE(2832), + [sym_as_expression] = STATE(2832), + [sym_satisfies_expression] = STATE(2832), + [sym_instantiation_expression] = STATE(2832), + [sym_internal_module] = STATE(2832), + [sym_type_arguments] = STATE(790), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6169), + [sym_identifier] = ACTIONS(1387), + [anon_sym_export] = ACTIONS(1389), + [anon_sym_type] = ACTIONS(1389), + [anon_sym_namespace] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1329), [anon_sym_typeof] = ACTIONS(1170), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1373), - [anon_sym_let] = ACTIONS(1373), + [anon_sym_from] = ACTIONS(1389), + [anon_sym_let] = ACTIONS(1389), [anon_sym_BANG] = ACTIONS(1170), [anon_sym_LPAREN] = ACTIONS(1305), [anon_sym_await] = ACTIONS(1172), - [anon_sym_of] = ACTIONS(1373), + [anon_sym_of] = ACTIONS(1389), [anon_sym_yield] = ACTIONS(1174), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_LBRACK] = ACTIONS(1331), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1383), + [anon_sym_async] = ACTIONS(1399), [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1385), + [anon_sym_new] = ACTIONS(1401), [anon_sym_using] = ACTIONS(1184), [anon_sym_PLUS] = ACTIONS(1170), [anon_sym_DASH] = ACTIONS(1170), @@ -144782,126 +146014,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1194), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(2878), + [sym_number] = ACTIONS(2908), [sym_private_property_identifier] = ACTIONS(1196), [sym_this] = ACTIONS(102), [sym_super] = ACTIONS(102), [sym_true] = ACTIONS(102), [sym_false] = ACTIONS(102), [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1390), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1373), - [anon_sym_readonly] = ACTIONS(1373), - [anon_sym_get] = ACTIONS(1373), - [anon_sym_set] = ACTIONS(1373), - [anon_sym_declare] = ACTIONS(1373), - [anon_sym_public] = ACTIONS(1373), - [anon_sym_private] = ACTIONS(1373), - [anon_sym_protected] = ACTIONS(1373), - [anon_sym_override] = ACTIONS(1373), - [anon_sym_module] = ACTIONS(1373), - [anon_sym_any] = ACTIONS(1373), - [anon_sym_number] = ACTIONS(1373), - [anon_sym_boolean] = ACTIONS(1373), - [anon_sym_string] = ACTIONS(1373), - [anon_sym_symbol] = ACTIONS(1373), - [anon_sym_object] = ACTIONS(1373), - [anon_sym_property] = ACTIONS(1373), - [anon_sym_signal] = ACTIONS(1373), - [anon_sym_on] = ACTIONS(1373), - [anon_sym_required] = ACTIONS(1373), - [anon_sym_component] = ACTIONS(1373), + [anon_sym_static] = ACTIONS(1389), + [anon_sym_readonly] = ACTIONS(1389), + [anon_sym_get] = ACTIONS(1389), + [anon_sym_set] = ACTIONS(1389), + [anon_sym_declare] = ACTIONS(1389), + [anon_sym_public] = ACTIONS(1389), + [anon_sym_private] = ACTIONS(1389), + [anon_sym_protected] = ACTIONS(1389), + [anon_sym_override] = ACTIONS(1389), + [anon_sym_module] = ACTIONS(1389), + [anon_sym_any] = ACTIONS(1389), + [anon_sym_number] = ACTIONS(1389), + [anon_sym_boolean] = ACTIONS(1389), + [anon_sym_string] = ACTIONS(1389), + [anon_sym_symbol] = ACTIONS(1389), + [anon_sym_object] = ACTIONS(1389), + [anon_sym_property] = ACTIONS(1389), + [anon_sym_signal] = ACTIONS(1389), + [anon_sym_on] = ACTIONS(1389), + [anon_sym_required] = ACTIONS(1389), + [anon_sym_component] = ACTIONS(1389), [sym_html_comment] = ACTIONS(5), }, - [871] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3493), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(871), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), + [885] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2931), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(885), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1965), + [anon_sym_export] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_namespace] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(39), + [anon_sym_from] = ACTIONS(1861), + [anon_sym_let] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(1869), + [anon_sym_of] = ACTIONS(1861), + [anon_sym_yield] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LTtemplate_GT] = ACTIONS(54), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1873), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_using] = ACTIONS(1877), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_void] = ACTIONS(1867), + [anon_sym_delete] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1883), + [anon_sym_DASH_DASH] = ACTIONS(1883), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(217), + [sym_number] = ACTIONS(223), + [sym_private_property_identifier] = ACTIONS(1885), + [sym_this] = ACTIONS(223), + [sym_super] = ACTIONS(223), + [sym_true] = ACTIONS(223), + [sym_false] = ACTIONS(223), + [sym_null] = ACTIONS(223), + [sym_undefined] = ACTIONS(1971), + [anon_sym_AT] = ACTIONS(106), + [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_property] = ACTIONS(1861), + [anon_sym_signal] = ACTIONS(1861), + [anon_sym_on] = ACTIONS(1861), + [anon_sym_required] = ACTIONS(1861), + [anon_sym_component] = ACTIONS(1861), + [sym_html_comment] = ACTIONS(5), + }, + [886] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2997), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(886), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), [anon_sym_export] = ACTIONS(1719), [anon_sym_type] = ACTIONS(1719), [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1719), [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), + [anon_sym_BANG] = ACTIONS(151), [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), + [anon_sym_await] = ACTIONS(173), [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), + [anon_sym_yield] = ACTIONS(193), [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -144926,57 +146270,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1719), [sym_html_comment] = ACTIONS(5), }, - [872] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3034), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(872), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [887] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2860), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(887), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), @@ -144990,14 +146334,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -145038,1774 +146382,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(1861), [sym_html_comment] = ACTIONS(5), }, - [873] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3701), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(873), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), + [888] = { + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2357), + [sym_expression] = STATE(2990), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8074), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2357), + [sym_subscript_expression] = STATE(2357), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4432), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8072), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), + [sym_comment] = STATE(888), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2357), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(660), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), + [sym_identifier] = ACTIONS(1959), + [anon_sym_export] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_namespace] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(151), [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), + [anon_sym_from] = ACTIONS(1719), + [anon_sym_let] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(171), + [anon_sym_await] = ACTIONS(173), + [anon_sym_of] = ACTIONS(1719), + [anon_sym_yield] = ACTIONS(193), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_class] = ACTIONS(1227), + [anon_sym_async] = ACTIONS(1731), + [anon_sym_function] = ACTIONS(1231), + [anon_sym_new] = ACTIONS(1963), + [anon_sym_using] = ACTIONS(209), + [anon_sym_PLUS] = ACTIONS(151), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_SLASH] = ACTIONS(213), [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [874] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3046), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(874), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [875] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3712), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(875), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [876] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2555), - [sym_expression] = STATE(3714), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8317), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2555), - [sym_subscript_expression] = STATE(2555), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4689), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8479), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(876), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2555), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1997), - [anon_sym_export] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_namespace] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1819), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1821), - [anon_sym_of] = ACTIONS(1811), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(2001), - [anon_sym_using] = ACTIONS(1829), - [anon_sym_PLUS] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1819), - [anon_sym_void] = ACTIONS(1819), - [anon_sym_delete] = ACTIONS(1819), - [anon_sym_PLUS_PLUS] = ACTIONS(1835), - [anon_sym_DASH_DASH] = ACTIONS(1835), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1837), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(2003), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1811), - [anon_sym_signal] = ACTIONS(1811), - [anon_sym_on] = ACTIONS(1811), - [anon_sym_required] = ACTIONS(1811), - [anon_sym_component] = ACTIONS(1811), - [sym_html_comment] = ACTIONS(5), - }, - [877] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3265), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(877), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [878] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2514), - [sym_expression] = STATE(3264), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8726), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2514), - [sym_subscript_expression] = STATE(2514), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4605), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8725), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(878), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2514), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(710), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1981), - [anon_sym_export] = ACTIONS(1675), - [anon_sym_type] = ACTIONS(1675), - [anon_sym_namespace] = ACTIONS(1677), - [anon_sym_LBRACE] = ACTIONS(1325), - [anon_sym_typeof] = ACTIONS(1683), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1675), - [anon_sym_let] = ACTIONS(1675), - [anon_sym_BANG] = ACTIONS(1683), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1685), - [anon_sym_of] = ACTIONS(1675), - [anon_sym_yield] = ACTIONS(1687), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1691), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_using] = ACTIONS(1695), - [anon_sym_PLUS] = ACTIONS(1683), - [anon_sym_DASH] = ACTIONS(1683), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1683), - [anon_sym_void] = ACTIONS(1683), - [anon_sym_delete] = ACTIONS(1683), - [anon_sym_PLUS_PLUS] = ACTIONS(1701), - [anon_sym_DASH_DASH] = ACTIONS(1701), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1707), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1987), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1675), - [anon_sym_readonly] = ACTIONS(1675), - [anon_sym_get] = ACTIONS(1675), - [anon_sym_set] = ACTIONS(1675), - [anon_sym_declare] = ACTIONS(1675), - [anon_sym_public] = ACTIONS(1675), - [anon_sym_private] = ACTIONS(1675), - [anon_sym_protected] = ACTIONS(1675), - [anon_sym_override] = ACTIONS(1675), - [anon_sym_module] = ACTIONS(1675), - [anon_sym_any] = ACTIONS(1675), - [anon_sym_number] = ACTIONS(1675), - [anon_sym_boolean] = ACTIONS(1675), - [anon_sym_string] = ACTIONS(1675), - [anon_sym_symbol] = ACTIONS(1675), - [anon_sym_object] = ACTIONS(1675), - [anon_sym_property] = ACTIONS(1675), - [anon_sym_signal] = ACTIONS(1675), - [anon_sym_on] = ACTIONS(1675), - [anon_sym_required] = ACTIONS(1675), - [anon_sym_component] = ACTIONS(1675), - [sym_html_comment] = ACTIONS(5), - }, - [879] = { - [sym_import] = STATE(5026), - [sym_parenthesized_expression] = STATE(2563), - [sym_expression] = STATE(3584), - [sym_primary_expression] = STATE(2931), - [sym_yield_expression] = STATE(3077), - [sym_object] = STATE(3073), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3073), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3077), - [sym_glimmer_opening_tag] = STATE(6531), - [sym_class] = STATE(3073), - [sym_function_expression] = STATE(3073), - [sym_generator_function] = STATE(3073), - [sym_arrow_function] = STATE(3073), - [sym__call_signature] = STATE(8202), - [sym_call_expression] = STATE(3073), - [sym_new_expression] = STATE(3077), - [sym_await_expression] = STATE(3077), - [sym_member_expression] = STATE(2563), - [sym_subscript_expression] = STATE(2563), - [sym_assignment_expression] = STATE(3077), - [sym__augmented_assignment_lhs] = STATE(4633), - [sym_augmented_assignment_expression] = STATE(3077), - [sym__destructuring_pattern] = STATE(8316), - [sym_ternary_expression] = STATE(3077), - [sym_binary_expression] = STATE(3077), - [sym_unary_expression] = STATE(3077), - [sym_update_expression] = STATE(3077), - [sym_string] = STATE(3073), - [sym_comment] = STATE(879), - [sym_template_string] = STATE(3073), - [sym_regex] = STATE(3073), - [sym_meta_property] = STATE(3073), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2563), - [sym_type_assertion] = STATE(3077), - [sym_as_expression] = STATE(3077), - [sym_satisfies_expression] = STATE(3077), - [sym_instantiation_expression] = STATE(3077), - [sym_internal_module] = STATE(3077), - [sym_type_arguments] = STATE(760), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6530), - [sym_identifier] = ACTIONS(1989), - [anon_sym_export] = ACTIONS(1639), - [anon_sym_type] = ACTIONS(1639), - [anon_sym_namespace] = ACTIONS(1641), - [anon_sym_LBRACE] = ACTIONS(1499), - [anon_sym_typeof] = ACTIONS(1647), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1639), - [anon_sym_let] = ACTIONS(1639), - [anon_sym_BANG] = ACTIONS(1647), - [anon_sym_LPAREN] = ACTIONS(1305), - [anon_sym_await] = ACTIONS(1649), - [anon_sym_of] = ACTIONS(1639), - [anon_sym_yield] = ACTIONS(1651), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_class] = ACTIONS(60), - [anon_sym_async] = ACTIONS(1653), - [anon_sym_function] = ACTIONS(64), - [anon_sym_new] = ACTIONS(1993), - [anon_sym_using] = ACTIONS(1657), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(1190), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1647), - [anon_sym_void] = ACTIONS(1647), - [anon_sym_delete] = ACTIONS(1647), - [anon_sym_PLUS_PLUS] = ACTIONS(1663), - [anon_sym_DASH_DASH] = ACTIONS(1663), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1315), - [sym_number] = ACTIONS(102), - [sym_private_property_identifier] = ACTIONS(1665), - [sym_this] = ACTIONS(102), - [sym_super] = ACTIONS(102), - [sym_true] = ACTIONS(102), - [sym_false] = ACTIONS(102), - [sym_null] = ACTIONS(102), - [sym_undefined] = ACTIONS(1995), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(1639), - [anon_sym_readonly] = ACTIONS(1639), - [anon_sym_get] = ACTIONS(1639), - [anon_sym_set] = ACTIONS(1639), - [anon_sym_declare] = ACTIONS(1639), - [anon_sym_public] = ACTIONS(1639), - [anon_sym_private] = ACTIONS(1639), - [anon_sym_protected] = ACTIONS(1639), - [anon_sym_override] = ACTIONS(1639), - [anon_sym_module] = ACTIONS(1639), - [anon_sym_any] = ACTIONS(1639), - [anon_sym_number] = ACTIONS(1639), - [anon_sym_boolean] = ACTIONS(1639), - [anon_sym_string] = ACTIONS(1639), - [anon_sym_symbol] = ACTIONS(1639), - [anon_sym_object] = ACTIONS(1639), - [anon_sym_property] = ACTIONS(1639), - [anon_sym_signal] = ACTIONS(1639), - [anon_sym_on] = ACTIONS(1639), - [anon_sym_required] = ACTIONS(1639), - [anon_sym_component] = ACTIONS(1639), - [sym_html_comment] = ACTIONS(5), - }, - [880] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3079), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(880), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [881] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3090), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(881), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(151), + [anon_sym_void] = ACTIONS(151), + [anon_sym_delete] = ACTIONS(151), + [anon_sym_PLUS_PLUS] = ACTIONS(215), + [anon_sym_DASH_DASH] = ACTIONS(215), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(217), [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [882] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3136), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(882), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [883] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3147), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(883), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [884] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3140), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(884), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [885] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3138), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(885), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [886] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3118), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(886), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [887] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3117), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(887), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1965), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1861), - [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1867), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1869), - [anon_sym_of] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_using] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1867), - [anon_sym_void] = ACTIONS(1867), - [anon_sym_delete] = ACTIONS(1867), - [anon_sym_PLUS_PLUS] = ACTIONS(1883), - [anon_sym_DASH_DASH] = ACTIONS(1883), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(223), - [sym_private_property_identifier] = ACTIONS(1885), - [sym_this] = ACTIONS(223), - [sym_super] = ACTIONS(223), - [sym_true] = ACTIONS(223), - [sym_false] = ACTIONS(223), - [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1971), - [anon_sym_AT] = ACTIONS(106), - [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_property] = ACTIONS(1861), - [anon_sym_signal] = ACTIONS(1861), - [anon_sym_on] = ACTIONS(1861), - [anon_sym_required] = ACTIONS(1861), - [anon_sym_component] = ACTIONS(1861), - [sym_html_comment] = ACTIONS(5), - }, - [888] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2536), - [sym_expression] = STATE(3349), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8524), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2536), - [sym_subscript_expression] = STATE(2536), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4614), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8526), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), - [sym_comment] = STATE(888), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2536), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(758), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), - [sym_identifier] = ACTIONS(1973), - [anon_sym_export] = ACTIONS(1719), - [anon_sym_type] = ACTIONS(1719), - [anon_sym_namespace] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1727), - [anon_sym_import] = ACTIONS(39), - [anon_sym_from] = ACTIONS(1719), - [anon_sym_let] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(171), - [anon_sym_await] = ACTIONS(1731), - [anon_sym_of] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(401), - [anon_sym_LTtemplate_GT] = ACTIONS(54), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_function] = ACTIONS(1237), - [anon_sym_new] = ACTIONS(1977), - [anon_sym_using] = ACTIONS(1741), - [anon_sym_PLUS] = ACTIONS(1727), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_SLASH] = ACTIONS(213), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_TILDE] = ACTIONS(1727), - [anon_sym_void] = ACTIONS(1727), - [anon_sym_delete] = ACTIONS(1727), - [anon_sym_PLUS_PLUS] = ACTIONS(1747), - [anon_sym_DASH_DASH] = ACTIONS(1747), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(217), - [sym_number] = ACTIONS(2834), - [sym_private_property_identifier] = ACTIONS(1753), + [sym_private_property_identifier] = ACTIONS(411), [sym_this] = ACTIONS(223), [sym_super] = ACTIONS(223), [sym_true] = ACTIONS(223), [sym_false] = ACTIONS(223), [sym_null] = ACTIONS(223), - [sym_undefined] = ACTIONS(1979), + [sym_undefined] = ACTIONS(225), [anon_sym_AT] = ACTIONS(106), [anon_sym_static] = ACTIONS(1719), [anon_sym_readonly] = ACTIONS(1719), @@ -146831,56 +146495,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [889] = { - [sym_import] = STATE(5160), - [sym_parenthesized_expression] = STATE(2455), - [sym_expression] = STATE(3099), - [sym_primary_expression] = STATE(3391), - [sym_yield_expression] = STATE(3640), - [sym_object] = STATE(3749), - [sym_object_pattern] = STATE(5164), - [sym_array] = STATE(3749), - [sym_array_pattern] = STATE(5164), - [sym_glimmer_template] = STATE(3640), - [sym_glimmer_opening_tag] = STATE(6590), - [sym_class] = STATE(3749), - [sym_function_expression] = STATE(3749), - [sym_generator_function] = STATE(3749), - [sym_arrow_function] = STATE(3749), - [sym__call_signature] = STATE(8210), - [sym_call_expression] = STATE(3749), - [sym_new_expression] = STATE(3640), - [sym_await_expression] = STATE(3640), - [sym_member_expression] = STATE(2455), - [sym_subscript_expression] = STATE(2455), - [sym_assignment_expression] = STATE(3640), - [sym__augmented_assignment_lhs] = STATE(4645), - [sym_augmented_assignment_expression] = STATE(3640), - [sym__destructuring_pattern] = STATE(8205), - [sym_ternary_expression] = STATE(3640), - [sym_binary_expression] = STATE(3640), - [sym_unary_expression] = STATE(3640), - [sym_update_expression] = STATE(3640), - [sym_string] = STATE(3749), + [sym_import] = STATE(4938), + [sym_parenthesized_expression] = STATE(2313), + [sym_expression] = STATE(2909), + [sym_primary_expression] = STATE(3326), + [sym_yield_expression] = STATE(3532), + [sym_object] = STATE(3548), + [sym_object_pattern] = STATE(4776), + [sym_array] = STATE(3548), + [sym_array_pattern] = STATE(4776), + [sym_glimmer_template] = STATE(3532), + [sym_glimmer_opening_tag] = STATE(6119), + [sym_class] = STATE(3548), + [sym_function_expression] = STATE(3548), + [sym_generator_function] = STATE(3548), + [sym_arrow_function] = STATE(3548), + [sym__call_signature] = STATE(8047), + [sym_call_expression] = STATE(3548), + [sym_new_expression] = STATE(3532), + [sym_await_expression] = STATE(3532), + [sym_member_expression] = STATE(2313), + [sym_subscript_expression] = STATE(2313), + [sym_assignment_expression] = STATE(3532), + [sym__augmented_assignment_lhs] = STATE(4401), + [sym_augmented_assignment_expression] = STATE(3532), + [sym__destructuring_pattern] = STATE(8043), + [sym_ternary_expression] = STATE(3532), + [sym_binary_expression] = STATE(3532), + [sym_unary_expression] = STATE(3532), + [sym_update_expression] = STATE(3532), + [sym_string] = STATE(3548), [sym_comment] = STATE(889), - [sym_template_string] = STATE(3749), - [sym_regex] = STATE(3749), - [sym_meta_property] = STATE(3749), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(5514), - [sym_non_null_expression] = STATE(2455), - [sym_type_assertion] = STATE(3640), - [sym_as_expression] = STATE(3640), - [sym_satisfies_expression] = STATE(3640), - [sym_instantiation_expression] = STATE(3640), - [sym_internal_module] = STATE(3640), - [sym_type_arguments] = STATE(671), - [sym_type_parameters] = STATE(8189), - [aux_sym_export_statement_repeat1] = STATE(6588), + [sym_template_string] = STATE(3548), + [sym_regex] = STATE(3548), + [sym_meta_property] = STATE(3548), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(5340), + [sym_non_null_expression] = STATE(2313), + [sym_type_assertion] = STATE(3532), + [sym_as_expression] = STATE(3532), + [sym_satisfies_expression] = STATE(3532), + [sym_instantiation_expression] = STATE(3532), + [sym_internal_module] = STATE(3532), + [sym_type_arguments] = STATE(889), + [sym_type_parameters] = STATE(7801), + [aux_sym_export_statement_repeat1] = STATE(6123), [sym_identifier] = ACTIONS(1965), [anon_sym_export] = ACTIONS(1861), [anon_sym_type] = ACTIONS(1861), [anon_sym_namespace] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1224), + [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_typeof] = ACTIONS(1867), [anon_sym_import] = ACTIONS(39), [anon_sym_from] = ACTIONS(1861), @@ -146894,14 +146558,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(54), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_class] = ACTIONS(1233), + [anon_sym_class] = ACTIONS(1227), [anon_sym_async] = ACTIONS(1873), - [anon_sym_function] = ACTIONS(1237), + [anon_sym_function] = ACTIONS(1231), [anon_sym_new] = ACTIONS(1969), [anon_sym_using] = ACTIONS(1877), [anon_sym_PLUS] = ACTIONS(1867), [anon_sym_DASH] = ACTIONS(1867), - [anon_sym_SLASH] = ACTIONS(1436), + [anon_sym_SLASH] = ACTIONS(1453), [anon_sym_LT] = ACTIONS(85), [anon_sym_TILDE] = ACTIONS(1867), [anon_sym_void] = ACTIONS(1867), @@ -146943,24 +146607,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [890] = { - [sym__call_signature] = STATE(8329), - [sym_string] = STATE(5255), + [sym__call_signature] = STATE(7976), + [sym_string] = STATE(5270), [sym_comment] = STATE(890), - [sym_formal_parameters] = STATE(5514), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [sym_type_parameters] = STATE(8189), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_formal_parameters] = STATE(5340), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [sym_type_parameters] = STATE(7801), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2910), [anon_sym_export] = ACTIONS(2912), [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2912), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1261), [anon_sym_from] = ACTIONS(2912), [anon_sym_let] = ACTIONS(2912), [anon_sym_BANG] = ACTIONS(28), @@ -146968,7 +146632,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2912), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), @@ -146976,7 +146640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2912), [anon_sym_function] = ACTIONS(2924), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2912), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -147026,7 +146690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2912), [anon_sym_get] = ACTIONS(2932), [anon_sym_set] = ACTIONS(2932), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2912), [anon_sym_public] = ACTIONS(2912), [anon_sym_private] = ACTIONS(2912), @@ -147050,24 +146714,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [891] = { - [sym__call_signature] = STATE(8329), - [sym_string] = STATE(5255), + [sym__call_signature] = STATE(7976), + [sym_string] = STATE(5270), [sym_comment] = STATE(891), - [sym_formal_parameters] = STATE(5514), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [sym_type_parameters] = STATE(8189), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_formal_parameters] = STATE(5340), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [sym_type_parameters] = STATE(7801), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2910), [anon_sym_export] = ACTIONS(2912), [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2912), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1220), [anon_sym_from] = ACTIONS(2912), [anon_sym_let] = ACTIONS(2912), [anon_sym_BANG] = ACTIONS(28), @@ -147075,7 +146739,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2912), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), @@ -147083,7 +146747,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2912), [anon_sym_function] = ACTIONS(2924), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2912), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -147133,7 +146797,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2912), [anon_sym_get] = ACTIONS(2932), [anon_sym_set] = ACTIONS(2932), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2912), [anon_sym_public] = ACTIONS(2912), [anon_sym_private] = ACTIONS(2912), @@ -147157,24 +146821,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [892] = { - [sym__call_signature] = STATE(8329), - [sym_string] = STATE(5255), + [sym__call_signature] = STATE(7976), + [sym_string] = STATE(5270), [sym_comment] = STATE(892), - [sym_formal_parameters] = STATE(5514), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [sym_type_parameters] = STATE(8189), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_formal_parameters] = STATE(5340), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [sym_type_parameters] = STATE(7801), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2910), [anon_sym_export] = ACTIONS(2912), [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2912), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1243), [anon_sym_from] = ACTIONS(2912), [anon_sym_let] = ACTIONS(2912), [anon_sym_BANG] = ACTIONS(28), @@ -147182,7 +146846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2912), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), @@ -147190,7 +146854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2912), [anon_sym_function] = ACTIONS(2924), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2912), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -147240,7 +146904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2912), [anon_sym_get] = ACTIONS(2932), [anon_sym_set] = ACTIONS(2932), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2912), [anon_sym_public] = ACTIONS(2912), [anon_sym_private] = ACTIONS(2912), @@ -147264,24 +146928,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [893] = { - [sym__call_signature] = STATE(8329), - [sym_string] = STATE(5255), + [sym__call_signature] = STATE(7976), + [sym_string] = STATE(5270), [sym_comment] = STATE(893), - [sym_formal_parameters] = STATE(5514), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [sym_type_parameters] = STATE(8189), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_formal_parameters] = STATE(5340), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [sym_type_parameters] = STATE(7801), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2910), [anon_sym_export] = ACTIONS(2912), [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2912), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2912), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1245), [anon_sym_from] = ACTIONS(2912), [anon_sym_let] = ACTIONS(2912), [anon_sym_BANG] = ACTIONS(28), @@ -147289,7 +146953,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2912), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), @@ -147297,7 +146961,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2912), [anon_sym_function] = ACTIONS(2924), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2912), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -147347,7 +147011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2912), [anon_sym_get] = ACTIONS(2932), [anon_sym_set] = ACTIONS(2932), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2912), [anon_sym_public] = ACTIONS(2912), [anon_sym_private] = ACTIONS(2912), @@ -147371,22 +147035,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [894] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(894), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [sym_override_modifier] = STATE(3870), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [sym_override_modifier] = STATE(3748), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1243), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -147394,14 +147058,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -147451,7 +147115,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2941), [anon_sym_get] = ACTIONS(2943), [anon_sym_set] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -147475,22 +147139,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [895] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(895), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [sym_override_modifier] = STATE(3870), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [sym_override_modifier] = STATE(3748), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1245), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -147498,14 +147162,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -147555,7 +147219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2941), [anon_sym_get] = ACTIONS(2943), [anon_sym_set] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -147579,22 +147243,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [896] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(896), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [sym_override_modifier] = STATE(3870), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [sym_override_modifier] = STATE(3748), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1220), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -147602,14 +147266,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -147659,7 +147323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2941), [anon_sym_get] = ACTIONS(2943), [anon_sym_set] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -147683,22 +147347,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [897] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(897), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [sym_override_modifier] = STATE(3870), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [sym_override_modifier] = STATE(3748), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1261), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -147706,14 +147370,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -147763,7 +147427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2941), [anon_sym_get] = ACTIONS(2943), [anon_sym_set] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -147787,21 +147451,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [898] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(898), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1245), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -147809,14 +147473,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -147866,7 +147530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2934), [anon_sym_get] = ACTIONS(2943), [anon_sym_set] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -147890,21 +147554,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [899] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(899), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), + [anon_sym_RBRACE] = ACTIONS(1245), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -147912,14 +147576,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2934), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -147969,7 +147633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2934), [anon_sym_get] = ACTIONS(2934), [anon_sym_set] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -147993,21 +147657,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [900] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(900), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1261), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -148015,14 +147679,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_async] = ACTIONS(2934), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -148070,9 +147734,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2930), [anon_sym_static] = ACTIONS(2934), [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(2943), - [anon_sym_set] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_get] = ACTIONS(2934), + [anon_sym_set] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -148096,21 +147760,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [901] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(901), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1220), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -148118,14 +147782,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -148175,7 +147839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2934), [anon_sym_get] = ACTIONS(2943), [anon_sym_set] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -148199,21 +147863,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [902] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(902), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1220), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -148221,14 +147885,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_async] = ACTIONS(2934), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -148278,7 +147942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2934), [anon_sym_get] = ACTIONS(2934), [anon_sym_set] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -148302,21 +147966,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [903] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(903), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(28), + [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1261), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -148324,14 +147988,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2934), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -148379,9 +148043,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2930), [anon_sym_static] = ACTIONS(2934), [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(2934), - [anon_sym_set] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_get] = ACTIONS(2943), + [anon_sym_set] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -148405,21 +148069,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [904] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(904), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(2914), + [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1243), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -148427,14 +148091,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2939), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_async] = ACTIONS(2934), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -148482,9 +148146,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2930), [anon_sym_static] = ACTIONS(2934), [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(2943), - [anon_sym_set] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_get] = ACTIONS(2934), + [anon_sym_set] = ACTIONS(2934), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -148508,21 +148172,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [905] = { - [sym_string] = STATE(5255), + [sym_string] = STATE(5270), [sym_comment] = STATE(905), - [sym__property_name] = STATE(5690), - [sym_computed_property_name] = STATE(5255), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym__property_name] = STATE(5461), + [sym_computed_property_name] = STATE(5270), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [sym_identifier] = ACTIONS(2934), [anon_sym_export] = ACTIONS(2934), - [anon_sym_STAR] = ACTIONS(28), + [anon_sym_STAR] = ACTIONS(2914), [anon_sym_type] = ACTIONS(2934), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2934), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1243), [anon_sym_from] = ACTIONS(2934), [anon_sym_let] = ACTIONS(2934), [anon_sym_BANG] = ACTIONS(28), @@ -148530,14 +148194,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(2934), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(2921), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2934), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_async] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(2934), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -148585,9 +148249,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2930), [anon_sym_static] = ACTIONS(2934), [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(2934), - [anon_sym_set] = ACTIONS(2934), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_get] = ACTIONS(2943), + [anon_sym_set] = ACTIONS(2943), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2934), [anon_sym_public] = ACTIONS(2934), [anon_sym_private] = ACTIONS(2934), @@ -148611,28 +148275,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [906] = { - [sym_namespace_export] = STATE(7754), - [sym_export_clause] = STATE(6488), - [sym_declaration] = STATE(1746), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), + [sym_namespace_export] = STATE(7659), + [sym_export_clause] = STATE(6158), + [sym_declaration] = STATE(1588), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), [sym_comment] = STATE(906), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [anon_sym_STAR] = ACTIONS(2947), [anon_sym_default] = ACTIONS(2949), [anon_sym_type] = ACTIONS(2951), @@ -148701,7 +148365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2991), [anon_sym_module] = ACTIONS(2993), [anon_sym_abstract] = ACTIONS(2995), @@ -148713,28 +148377,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [907] = { - [sym_namespace_export] = STATE(7754), - [sym_export_clause] = STATE(6488), - [sym_declaration] = STATE(1746), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), + [sym_namespace_export] = STATE(7659), + [sym_export_clause] = STATE(6158), + [sym_declaration] = STATE(1588), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), [sym_comment] = STATE(907), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [anon_sym_STAR] = ACTIONS(2947), [anon_sym_default] = ACTIONS(2949), [anon_sym_type] = ACTIONS(2951), @@ -148803,7 +148467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2991), [anon_sym_module] = ACTIONS(2993), [anon_sym_abstract] = ACTIONS(2995), @@ -148815,28 +148479,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [908] = { - [sym_namespace_export] = STATE(7754), - [sym_export_clause] = STATE(6488), - [sym_declaration] = STATE(1746), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), + [sym_namespace_export] = STATE(7659), + [sym_export_clause] = STATE(6158), + [sym_declaration] = STATE(1588), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), [sym_comment] = STATE(908), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [anon_sym_STAR] = ACTIONS(2947), [anon_sym_default] = ACTIONS(2949), [anon_sym_type] = ACTIONS(2951), @@ -148905,7 +148569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2991), [anon_sym_module] = ACTIONS(2993), [anon_sym_abstract] = ACTIONS(2995), @@ -148917,28 +148581,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [909] = { - [sym_namespace_export] = STATE(7754), - [sym_export_clause] = STATE(6488), - [sym_declaration] = STATE(1746), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), + [sym_namespace_export] = STATE(7659), + [sym_export_clause] = STATE(6158), + [sym_declaration] = STATE(1588), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), [sym_comment] = STATE(909), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), [anon_sym_STAR] = ACTIONS(2947), [anon_sym_default] = ACTIONS(2949), [anon_sym_type] = ACTIONS(2951), @@ -149007,7 +148671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2991), [anon_sym_module] = ACTIONS(2993), [anon_sym_abstract] = ACTIONS(2995), @@ -149020,34 +148684,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [910] = { [sym_comment] = STATE(910), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(2588), - [anon_sym_export] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_EQ] = ACTIONS(1220), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_namespace] = ACTIONS(2592), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_from] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_from] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2936), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2588), + [anon_sym_of] = ACTIONS(2592), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(2592), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2592), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -149089,30 +148753,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [sym_number] = ACTIONS(2588), - [sym_private_property_identifier] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_get] = ACTIONS(2588), - [anon_sym_set] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_protected] = ACTIONS(2588), - [anon_sym_override] = ACTIONS(2588), - [anon_sym_module] = ACTIONS(2588), - [anon_sym_any] = ACTIONS(2588), - [anon_sym_number] = ACTIONS(2588), - [anon_sym_boolean] = ACTIONS(2588), - [anon_sym_string] = ACTIONS(2588), - [anon_sym_symbol] = ACTIONS(2588), - [anon_sym_object] = ACTIONS(2588), - [anon_sym_property] = ACTIONS(2588), - [anon_sym_signal] = ACTIONS(2588), - [anon_sym_on] = ACTIONS(2588), - [anon_sym_required] = ACTIONS(2588), - [anon_sym_component] = ACTIONS(2588), + [sym_number] = ACTIONS(2592), + [sym_private_property_identifier] = ACTIONS(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_readonly] = ACTIONS(2592), + [anon_sym_get] = ACTIONS(2592), + [anon_sym_set] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(1241), + [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_property] = ACTIONS(2592), + [anon_sym_signal] = ACTIONS(2592), + [anon_sym_on] = ACTIONS(2592), + [anon_sym_required] = ACTIONS(2592), + [anon_sym_component] = ACTIONS(2592), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), @@ -149120,34 +148784,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [911] = { [sym_comment] = STATE(911), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(2588), - [anon_sym_export] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_EQ] = ACTIONS(1220), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_namespace] = ACTIONS(2596), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_from] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_from] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2936), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2588), + [anon_sym_of] = ACTIONS(2596), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(2596), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2596), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -149189,30 +148853,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [sym_number] = ACTIONS(2588), - [sym_private_property_identifier] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_get] = ACTIONS(2588), - [anon_sym_set] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_protected] = ACTIONS(2588), - [anon_sym_override] = ACTIONS(2588), - [anon_sym_module] = ACTIONS(2588), - [anon_sym_any] = ACTIONS(2588), - [anon_sym_number] = ACTIONS(2588), - [anon_sym_boolean] = ACTIONS(2588), - [anon_sym_string] = ACTIONS(2588), - [anon_sym_symbol] = ACTIONS(2588), - [anon_sym_object] = ACTIONS(2588), - [anon_sym_property] = ACTIONS(2588), - [anon_sym_signal] = ACTIONS(2588), - [anon_sym_on] = ACTIONS(2588), - [anon_sym_required] = ACTIONS(2588), - [anon_sym_component] = ACTIONS(2588), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_property] = ACTIONS(2596), + [anon_sym_signal] = ACTIONS(2596), + [anon_sym_on] = ACTIONS(2596), + [anon_sym_required] = ACTIONS(2596), + [anon_sym_component] = ACTIONS(2596), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), @@ -149220,34 +148884,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [912] = { [sym_comment] = STATE(912), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_EQ] = ACTIONS(1220), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2592), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_from] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_from] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2936), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2586), + [anon_sym_of] = ACTIONS(2592), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(2592), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2592), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -149289,30 +148953,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [sym_number] = ACTIONS(2586), - [sym_private_property_identifier] = ACTIONS(2586), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), - [anon_sym_property] = ACTIONS(2586), - [anon_sym_signal] = ACTIONS(2586), - [anon_sym_on] = ACTIONS(2586), - [anon_sym_required] = ACTIONS(2586), - [anon_sym_component] = ACTIONS(2586), + [sym_number] = ACTIONS(2592), + [sym_private_property_identifier] = ACTIONS(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_readonly] = ACTIONS(2592), + [anon_sym_get] = ACTIONS(2592), + [anon_sym_set] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(1241), + [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_property] = ACTIONS(2592), + [anon_sym_signal] = ACTIONS(2592), + [anon_sym_on] = ACTIONS(2592), + [anon_sym_required] = ACTIONS(2592), + [anon_sym_component] = ACTIONS(2592), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), @@ -149320,34 +148984,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [913] = { [sym_comment] = STATE(913), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_EQ] = ACTIONS(1220), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2596), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_from] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_from] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2936), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2586), + [anon_sym_of] = ACTIONS(2596), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(2596), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2596), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -149389,30 +149053,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [sym_number] = ACTIONS(2586), - [sym_private_property_identifier] = ACTIONS(2586), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), - [anon_sym_property] = ACTIONS(2586), - [anon_sym_signal] = ACTIONS(2586), - [anon_sym_on] = ACTIONS(2586), - [anon_sym_required] = ACTIONS(2586), - [anon_sym_component] = ACTIONS(2586), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_property] = ACTIONS(2596), + [anon_sym_signal] = ACTIONS(2596), + [anon_sym_on] = ACTIONS(2596), + [anon_sym_required] = ACTIONS(2596), + [anon_sym_component] = ACTIONS(2596), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), @@ -149420,34 +149084,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [914] = { [sym_comment] = STATE(914), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_EQ] = ACTIONS(1220), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2596), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_from] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_from] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2936), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2586), + [anon_sym_of] = ACTIONS(2596), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(2596), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2596), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -149489,30 +149153,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [sym_number] = ACTIONS(2586), - [sym_private_property_identifier] = ACTIONS(2586), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), - [anon_sym_property] = ACTIONS(2586), - [anon_sym_signal] = ACTIONS(2586), - [anon_sym_on] = ACTIONS(2586), - [anon_sym_required] = ACTIONS(2586), - [anon_sym_component] = ACTIONS(2586), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_property] = ACTIONS(2596), + [anon_sym_signal] = ACTIONS(2596), + [anon_sym_on] = ACTIONS(2596), + [anon_sym_required] = ACTIONS(2596), + [anon_sym_component] = ACTIONS(2596), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), @@ -149520,34 +149184,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [915] = { [sym_comment] = STATE(915), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(2588), - [anon_sym_export] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_EQ] = ACTIONS(1220), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_namespace] = ACTIONS(2592), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_from] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_from] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2936), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2588), + [anon_sym_of] = ACTIONS(2592), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(2592), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2592), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -149589,30 +149253,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [sym_number] = ACTIONS(2588), - [sym_private_property_identifier] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_get] = ACTIONS(2588), - [anon_sym_set] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_protected] = ACTIONS(2588), - [anon_sym_override] = ACTIONS(2588), - [anon_sym_module] = ACTIONS(2588), - [anon_sym_any] = ACTIONS(2588), - [anon_sym_number] = ACTIONS(2588), - [anon_sym_boolean] = ACTIONS(2588), - [anon_sym_string] = ACTIONS(2588), - [anon_sym_symbol] = ACTIONS(2588), - [anon_sym_object] = ACTIONS(2588), - [anon_sym_property] = ACTIONS(2588), - [anon_sym_signal] = ACTIONS(2588), - [anon_sym_on] = ACTIONS(2588), - [anon_sym_required] = ACTIONS(2588), - [anon_sym_component] = ACTIONS(2588), + [sym_number] = ACTIONS(2592), + [sym_private_property_identifier] = ACTIONS(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_readonly] = ACTIONS(2592), + [anon_sym_get] = ACTIONS(2592), + [anon_sym_set] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(1241), + [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_property] = ACTIONS(2592), + [anon_sym_signal] = ACTIONS(2592), + [anon_sym_on] = ACTIONS(2592), + [anon_sym_required] = ACTIONS(2592), + [anon_sym_component] = ACTIONS(2592), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), @@ -149620,34 +149284,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [916] = { [sym_comment] = STATE(916), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(2588), - [anon_sym_export] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_EQ] = ACTIONS(1220), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(2592), + [anon_sym_export] = ACTIONS(2592), + [anon_sym_STAR] = ACTIONS(2592), + [anon_sym_type] = ACTIONS(2592), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_namespace] = ACTIONS(2592), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_from] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_from] = ACTIONS(2592), + [anon_sym_let] = ACTIONS(2592), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2936), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2588), + [anon_sym_of] = ACTIONS(2592), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(2588), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(2592), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(2592), + [anon_sym_SQUOTE] = ACTIONS(2592), + [anon_sym_async] = ACTIONS(2592), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2588), + [anon_sym_new] = ACTIONS(2592), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -149689,30 +149353,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [sym_number] = ACTIONS(2588), - [sym_private_property_identifier] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_readonly] = ACTIONS(2588), - [anon_sym_get] = ACTIONS(2588), - [anon_sym_set] = ACTIONS(2588), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(2588), - [anon_sym_public] = ACTIONS(2588), - [anon_sym_private] = ACTIONS(2588), - [anon_sym_protected] = ACTIONS(2588), - [anon_sym_override] = ACTIONS(2588), - [anon_sym_module] = ACTIONS(2588), - [anon_sym_any] = ACTIONS(2588), - [anon_sym_number] = ACTIONS(2588), - [anon_sym_boolean] = ACTIONS(2588), - [anon_sym_string] = ACTIONS(2588), - [anon_sym_symbol] = ACTIONS(2588), - [anon_sym_object] = ACTIONS(2588), - [anon_sym_property] = ACTIONS(2588), - [anon_sym_signal] = ACTIONS(2588), - [anon_sym_on] = ACTIONS(2588), - [anon_sym_required] = ACTIONS(2588), - [anon_sym_component] = ACTIONS(2588), + [sym_number] = ACTIONS(2592), + [sym_private_property_identifier] = ACTIONS(2592), + [anon_sym_static] = ACTIONS(2592), + [anon_sym_readonly] = ACTIONS(2592), + [anon_sym_get] = ACTIONS(2592), + [anon_sym_set] = ACTIONS(2592), + [anon_sym_QMARK] = ACTIONS(1241), + [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_property] = ACTIONS(2592), + [anon_sym_signal] = ACTIONS(2592), + [anon_sym_on] = ACTIONS(2592), + [anon_sym_required] = ACTIONS(2592), + [anon_sym_component] = ACTIONS(2592), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), @@ -149720,34 +149384,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [917] = { [sym_comment] = STATE(917), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(2586), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_EQ] = ACTIONS(1220), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(2596), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2596), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_from] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_from] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2596), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2936), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(2586), + [anon_sym_of] = ACTIONS(2596), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(2596), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_async] = ACTIONS(2596), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(2586), + [anon_sym_new] = ACTIONS(2596), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -149789,59 +149453,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [sym_number] = ACTIONS(2586), - [sym_private_property_identifier] = ACTIONS(2586), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_readonly] = ACTIONS(2586), - [anon_sym_get] = ACTIONS(2586), - [anon_sym_set] = ACTIONS(2586), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(2586), - [anon_sym_public] = ACTIONS(2586), - [anon_sym_private] = ACTIONS(2586), - [anon_sym_protected] = ACTIONS(2586), - [anon_sym_override] = ACTIONS(2586), - [anon_sym_module] = ACTIONS(2586), - [anon_sym_any] = ACTIONS(2586), - [anon_sym_number] = ACTIONS(2586), - [anon_sym_boolean] = ACTIONS(2586), - [anon_sym_string] = ACTIONS(2586), - [anon_sym_symbol] = ACTIONS(2586), - [anon_sym_object] = ACTIONS(2586), - [anon_sym_property] = ACTIONS(2586), - [anon_sym_signal] = ACTIONS(2586), - [anon_sym_on] = ACTIONS(2586), - [anon_sym_required] = ACTIONS(2586), - [anon_sym_component] = ACTIONS(2586), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_override] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_object] = ACTIONS(2596), + [anon_sym_property] = ACTIONS(2596), + [anon_sym_signal] = ACTIONS(2596), + [anon_sym_on] = ACTIONS(2596), + [anon_sym_required] = ACTIONS(2596), + [anon_sym_component] = ACTIONS(2596), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [918] = { - [sym_declaration] = STATE(1667), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), + [sym_declaration] = STATE(1643), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), [sym_comment] = STATE(918), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2957), [anon_sym_COMMA] = ACTIONS(126), @@ -149905,7 +149569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2991), [anon_sym_module] = ACTIONS(3009), [anon_sym_abstract] = ACTIONS(2995), @@ -149918,33 +149582,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [919] = { - [sym_declaration] = STATE(1667), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), + [sym_declaration] = STATE(1643), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), [sym_comment] = STATE(919), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2957), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(3005), [anon_sym_import] = ACTIONS(2963), [anon_sym_var] = ACTIONS(2965), [anon_sym_let] = ACTIONS(2967), @@ -150004,7 +149668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2991), [anon_sym_module] = ACTIONS(3009), [anon_sym_abstract] = ACTIONS(2995), @@ -150017,33 +149681,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [920] = { - [sym_declaration] = STATE(1667), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), + [sym_declaration] = STATE(1643), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), [sym_comment] = STATE(920), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2957), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_RBRACE] = ACTIONS(2961), [anon_sym_import] = ACTIONS(2963), [anon_sym_var] = ACTIONS(2965), [anon_sym_let] = ACTIONS(2967), @@ -150103,7 +149767,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2991), [anon_sym_module] = ACTIONS(3009), [anon_sym_abstract] = ACTIONS(2995), @@ -150116,29 +149780,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [921] = { - [sym_declaration] = STATE(1667), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), + [sym_declaration] = STATE(1643), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), [sym_comment] = STATE(921), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(3007), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(2957), [anon_sym_COMMA] = ACTIONS(126), @@ -150202,7 +149866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_declare] = ACTIONS(2991), [anon_sym_module] = ACTIONS(3009), [anon_sym_abstract] = ACTIONS(2995), @@ -150215,26 +149879,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [922] = { - [sym_namespace_export] = STATE(7782), - [sym_export_clause] = STATE(6424), - [sym_declaration] = STATE(1081), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_class_declaration] = STATE(1092), - [sym_function_declaration] = STATE(1092), - [sym_generator_function_declaration] = STATE(1092), + [sym_namespace_export] = STATE(7510), + [sym_export_clause] = STATE(6237), + [sym_declaration] = STATE(1177), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_class_declaration] = STATE(1180), + [sym_function_declaration] = STATE(1180), + [sym_generator_function_declaration] = STATE(1180), [sym_comment] = STATE(922), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1092), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(1079), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [aux_sym_export_statement_repeat1] = STATE(5961), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1180), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(1176), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [aux_sym_export_statement_repeat1] = STATE(5984), [anon_sym_STAR] = ACTIONS(3013), [anon_sym_default] = ACTIONS(3015), [anon_sym_type] = ACTIONS(3017), @@ -150313,49 +149977,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [923] = { - [sym_namespace_export] = STATE(8165), - [sym_export_clause] = STATE(6539), - [sym_declaration] = STATE(4133), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_class_declaration] = STATE(4080), - [sym_function_declaration] = STATE(4080), - [sym_generator_function_declaration] = STATE(4080), + [sym_namespace_export] = STATE(7659), + [sym_export_clause] = STATE(6158), + [sym_declaration] = STATE(1588), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), [sym_comment] = STATE(923), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(4080), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(4134), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [aux_sym_export_statement_repeat1] = STATE(6181), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_default] = ACTIONS(3053), - [anon_sym_type] = ACTIONS(3055), - [anon_sym_EQ] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3059), - [anon_sym_namespace] = ACTIONS(3061), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_type] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(3051), + [anon_sym_as] = ACTIONS(2955), + [anon_sym_namespace] = ACTIONS(2957), [anon_sym_LBRACE] = ACTIONS(2959), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3063), - [anon_sym_var] = ACTIONS(3065), - [anon_sym_let] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3069), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3053), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3077), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -150400,47 +150064,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3079), - [anon_sym_module] = ACTIONS(3081), - [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(2993), + [anon_sym_abstract] = ACTIONS(2995), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_interface] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3087), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [924] = { - [sym__call_signature] = STATE(8248), + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(924), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(128), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_RPAREN] = ACTIONS(1335), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(131), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), - [anon_sym_COLON] = ACTIONS(1335), + [anon_sym_of] = ACTIONS(3057), + [anon_sym_COLON] = ACTIONS(131), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(1335), + [anon_sym_RBRACK] = ACTIONS(131), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -150469,7 +150133,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -150482,76 +150146,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(1335), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_QMARK] = ACTIONS(131), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [925] = { - [sym_namespace_export] = STATE(8105), - [sym_export_clause] = STATE(6336), - [sym_declaration] = STATE(4325), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_class_declaration] = STATE(4255), - [sym_function_declaration] = STATE(4255), - [sym_generator_function_declaration] = STATE(4255), + [sym_namespace_export] = STATE(7545), + [sym_export_clause] = STATE(6260), + [sym_declaration] = STATE(1262), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_class_declaration] = STATE(1313), + [sym_function_declaration] = STATE(1313), + [sym_generator_function_declaration] = STATE(1313), [sym_comment] = STATE(925), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(4255), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(4326), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [aux_sym_export_statement_repeat1] = STATE(6240), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_default] = ACTIONS(3103), - [anon_sym_type] = ACTIONS(3105), - [anon_sym_EQ] = ACTIONS(3107), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_namespace] = ACTIONS(3111), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1313), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(1309), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [aux_sym_export_statement_repeat1] = STATE(5953), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_default] = ACTIONS(3069), + [anon_sym_type] = ACTIONS(3071), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_as] = ACTIONS(3075), + [anon_sym_namespace] = ACTIONS(3077), [anon_sym_LBRACE] = ACTIONS(2959), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3113), - [anon_sym_var] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3119), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_var] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3085), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3087), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3125), - [anon_sym_function] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_function] = ACTIONS(3093), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -150596,60 +150260,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3131), - [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3097), + [anon_sym_abstract] = ACTIONS(3099), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3103), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [926] = { - [sym_namespace_export] = STATE(7908), - [sym_export_clause] = STATE(6565), - [sym_declaration] = STATE(8048), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_class_declaration] = STATE(8195), - [sym_function_declaration] = STATE(8195), - [sym_generator_function_declaration] = STATE(8195), + [sym_namespace_export] = STATE(7636), + [sym_export_clause] = STATE(6293), + [sym_declaration] = STATE(1453), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_class_declaration] = STATE(1514), + [sym_function_declaration] = STATE(1514), + [sym_generator_function_declaration] = STATE(1514), [sym_comment] = STATE(926), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(8195), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(8045), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [aux_sym_export_statement_repeat1] = STATE(6284), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_default] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3143), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3147), - [anon_sym_namespace] = ACTIONS(3149), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1514), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(1454), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [aux_sym_export_statement_repeat1] = STATE(5917), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3107), + [anon_sym_type] = ACTIONS(3109), + [anon_sym_EQ] = ACTIONS(3111), + [anon_sym_as] = ACTIONS(3113), + [anon_sym_namespace] = ACTIONS(3115), [anon_sym_LBRACE] = ACTIONS(2959), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3117), + [anon_sym_var] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3123), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_COLON] = ACTIONS(3125), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3131), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -150694,60 +150358,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3169), - [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3135), + [anon_sym_abstract] = ACTIONS(3137), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3175), + [anon_sym_interface] = ACTIONS(3139), + [anon_sym_enum] = ACTIONS(3141), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [927] = { - [sym_namespace_export] = STATE(7916), - [sym_export_clause] = STATE(6335), - [sym_declaration] = STATE(1658), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_class_declaration] = STATE(1587), - [sym_function_declaration] = STATE(1587), - [sym_generator_function_declaration] = STATE(1587), + [sym_namespace_export] = STATE(7651), + [sym_export_clause] = STATE(6230), + [sym_declaration] = STATE(7202), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_class_declaration] = STATE(7282), + [sym_function_declaration] = STATE(7282), + [sym_generator_function_declaration] = STATE(7282), [sym_comment] = STATE(927), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1587), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(1487), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [aux_sym_export_statement_repeat1] = STATE(6050), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_default] = ACTIONS(3179), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_EQ] = ACTIONS(3183), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_namespace] = ACTIONS(3187), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(7282), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(7203), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [aux_sym_export_statement_repeat1] = STATE(5618), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_default] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_as] = ACTIONS(3151), + [anon_sym_namespace] = ACTIONS(3153), [anon_sym_LBRACE] = ACTIONS(2959), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3189), - [anon_sym_var] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3161), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3197), + [anon_sym_COLON] = ACTIONS(3163), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_function] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -150792,47 +150456,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3205), - [anon_sym_module] = ACTIONS(3207), - [anon_sym_abstract] = ACTIONS(3209), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3175), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3179), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [928] = { - [sym__call_signature] = STATE(8248), + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(928), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(128), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_RBRACE] = ACTIONS(131), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(1321), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), - [anon_sym_COLON] = ACTIONS(131), + [anon_sym_of] = ACTIONS(3057), + [anon_sym_COLON] = ACTIONS(1321), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(1321), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -150861,7 +150525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -150874,76 +150538,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(131), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [929] = { - [sym_namespace_export] = STATE(7851), - [sym_export_clause] = STATE(6392), - [sym_declaration] = STATE(1299), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_class_declaration] = STATE(1302), - [sym_function_declaration] = STATE(1302), - [sym_generator_function_declaration] = STATE(1302), + [sym_namespace_export] = STATE(7848), + [sym_export_clause] = STATE(6130), + [sym_declaration] = STATE(4065), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_class_declaration] = STATE(4079), + [sym_function_declaration] = STATE(4079), + [sym_generator_function_declaration] = STATE(4079), [sym_comment] = STATE(929), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1302), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(1298), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [aux_sym_export_statement_repeat1] = STATE(6249), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3225), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(4079), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(4064), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [aux_sym_export_statement_repeat1] = STATE(5769), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3185), + [anon_sym_EQ] = ACTIONS(3187), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_namespace] = ACTIONS(3191), [anon_sym_LBRACE] = ACTIONS(2959), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3199), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_async] = ACTIONS(3205), + [anon_sym_function] = ACTIONS(3207), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -150988,47 +150652,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3209), + [anon_sym_module] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3213), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3217), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [930] = { - [sym__call_signature] = STATE(8196), + [sym_namespace_export] = STATE(7860), + [sym_export_clause] = STATE(6366), + [sym_declaration] = STATE(4025), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_class_declaration] = STATE(3972), + [sym_function_declaration] = STATE(3972), + [sym_generator_function_declaration] = STATE(3972), [sym_comment] = STATE(930), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3255), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(3972), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(4026), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [aux_sym_export_statement_repeat1] = STATE(5815), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_EQ] = ACTIONS(3225), + [anon_sym_as] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_COMMA] = ACTIONS(126), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(126), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_COLON] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(126), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3255), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [931] = { + [sym__call_signature] = STATE(8401), + [sym_comment] = STATE(931), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3259), [anon_sym_EQ] = ACTIONS(25), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3259), [anon_sym_COMMA] = ACTIONS(34), [anon_sym_RBRACE] = ACTIONS(34), - [anon_sym_from] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_RPAREN] = ACTIONS(34), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3255), + [anon_sym_of] = ACTIONS(3259), [anon_sym_COLON] = ACTIONS(34), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3259), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -151057,7 +150819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -151070,136 +150832,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_get] = ACTIONS(3259), + [anon_sym_set] = ACTIONS(3259), [anon_sym_QMARK] = ACTIONS(131), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_property] = ACTIONS(3255), - [anon_sym_signal] = ACTIONS(3255), - [anon_sym_on] = ACTIONS(3255), - [anon_sym_required] = ACTIONS(3255), - [anon_sym_component] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3259), + [anon_sym_any] = ACTIONS(3259), + [anon_sym_number] = ACTIONS(3259), + [anon_sym_boolean] = ACTIONS(3259), + [anon_sym_string] = ACTIONS(3259), + [anon_sym_symbol] = ACTIONS(3259), + [anon_sym_object] = ACTIONS(3259), + [anon_sym_property] = ACTIONS(3259), + [anon_sym_signal] = ACTIONS(3259), + [anon_sym_on] = ACTIONS(3259), + [anon_sym_required] = ACTIONS(3259), + [anon_sym_component] = ACTIONS(3259), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [931] = { - [sym_namespace_export] = STATE(7754), - [sym_export_clause] = STATE(6488), - [sym_declaration] = STATE(1746), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), - [sym_comment] = STATE(931), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_default] = ACTIONS(2949), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_EQ] = ACTIONS(3257), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2969), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(126), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_async] = ACTIONS(2979), - [anon_sym_function] = ACTIONS(2981), - [anon_sym_EQ_GT] = ACTIONS(2983), - [anon_sym_QMARK_DOT] = ACTIONS(126), - [anon_sym_PLUS_EQ] = ACTIONS(2985), - [anon_sym_DASH_EQ] = ACTIONS(2985), - [anon_sym_STAR_EQ] = ACTIONS(2985), - [anon_sym_SLASH_EQ] = ACTIONS(2985), - [anon_sym_PERCENT_EQ] = ACTIONS(2985), - [anon_sym_CARET_EQ] = ACTIONS(2985), - [anon_sym_AMP_EQ] = ACTIONS(2985), - [anon_sym_PIPE_EQ] = ACTIONS(2985), - [anon_sym_GT_GT_EQ] = ACTIONS(2985), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), - [anon_sym_LT_LT_EQ] = ACTIONS(2985), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(28), - [anon_sym_LT_EQ] = ACTIONS(126), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(126), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(126), - [anon_sym_GT_EQ] = ACTIONS(126), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(126), - [anon_sym_PLUS_PLUS] = ACTIONS(126), - [anon_sym_DASH_DASH] = ACTIONS(126), - [aux_sym_comment_token1] = ACTIONS(2987), - [anon_sym_BQUOTE] = ACTIONS(126), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(2991), - [anon_sym_module] = ACTIONS(2993), - [anon_sym_abstract] = ACTIONS(2995), - [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_interface] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2999), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, [932] = { - [sym__call_signature] = STATE(8329), + [sym__call_signature] = STATE(7976), [sym_comment] = STATE(932), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_initializer] = STATE(4262), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_initializer] = STATE(7676), [sym_identifier] = ACTIONS(3261), [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), @@ -151212,7 +150876,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_from] = ACTIONS(3263), [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(3263), [anon_sym_SEMI] = ACTIONS(28), @@ -151221,7 +150885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3267), [anon_sym_async] = ACTIONS(3263), [anon_sym_function] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -151252,7 +150916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -151292,11 +150956,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [933] = { - [sym__call_signature] = STATE(8329), + [sym__call_signature] = STATE(7976), [sym_comment] = STATE(933), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_initializer] = STATE(7553), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_initializer] = STATE(4160), [sym_identifier] = ACTIONS(3261), [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), @@ -151309,7 +150973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_from] = ACTIONS(3263), [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(3263), [anon_sym_SEMI] = ACTIONS(28), @@ -151318,7 +150982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3267), [anon_sym_async] = ACTIONS(3263), [anon_sym_function] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -151349,7 +151013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -151389,36 +151053,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [934] = { - [sym__call_signature] = STATE(8196), + [sym__call_signature] = STATE(8401), [sym_comment] = STATE(934), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3255), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3259), [anon_sym_EQ] = ACTIONS(1337), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3259), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_RBRACE] = ACTIONS(28), - [anon_sym_from] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_RPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3255), + [anon_sym_of] = ACTIONS(3259), [anon_sym_COLON] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3259), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -151447,7 +151111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -151460,62 +151124,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_property] = ACTIONS(3255), - [anon_sym_signal] = ACTIONS(3255), - [anon_sym_on] = ACTIONS(3255), - [anon_sym_required] = ACTIONS(3255), - [anon_sym_component] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_get] = ACTIONS(3259), + [anon_sym_set] = ACTIONS(3259), + [anon_sym_declare] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3259), + [anon_sym_any] = ACTIONS(3259), + [anon_sym_number] = ACTIONS(3259), + [anon_sym_boolean] = ACTIONS(3259), + [anon_sym_string] = ACTIONS(3259), + [anon_sym_symbol] = ACTIONS(3259), + [anon_sym_object] = ACTIONS(3259), + [anon_sym_property] = ACTIONS(3259), + [anon_sym_signal] = ACTIONS(3259), + [anon_sym_on] = ACTIONS(3259), + [anon_sym_required] = ACTIONS(3259), + [anon_sym_component] = ACTIONS(3259), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [935] = { - [sym__call_signature] = STATE(8196), + [sym__call_signature] = STATE(8401), [sym_comment] = STATE(935), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3255), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3259), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_RBRACE] = ACTIONS(28), - [anon_sym_from] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_RPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3255), + [anon_sym_of] = ACTIONS(3259), [anon_sym_COLON] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3259), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -151544,7 +151208,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -151557,58 +151221,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_property] = ACTIONS(3255), - [anon_sym_signal] = ACTIONS(3255), - [anon_sym_on] = ACTIONS(3255), - [anon_sym_required] = ACTIONS(3255), - [anon_sym_component] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_get] = ACTIONS(3259), + [anon_sym_set] = ACTIONS(3259), + [anon_sym_declare] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3259), + [anon_sym_any] = ACTIONS(3259), + [anon_sym_number] = ACTIONS(3259), + [anon_sym_boolean] = ACTIONS(3259), + [anon_sym_string] = ACTIONS(3259), + [anon_sym_symbol] = ACTIONS(3259), + [anon_sym_object] = ACTIONS(3259), + [anon_sym_property] = ACTIONS(3259), + [anon_sym_signal] = ACTIONS(3259), + [anon_sym_on] = ACTIONS(3259), + [anon_sym_required] = ACTIONS(3259), + [anon_sym_component] = ACTIONS(3259), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [936] = { - [sym__call_signature] = STATE(8329), + [sym__call_signature] = STATE(7976), [sym_comment] = STATE(936), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), [sym_identifier] = ACTIONS(3261), [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(3263), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(3263), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_from] = ACTIONS(3263), [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(3263), [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -151639,7 +151303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -151679,10 +151343,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [937] = { - [sym__call_signature] = STATE(8329), + [sym__call_signature] = STATE(7976), [sym_comment] = STATE(937), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), [sym_identifier] = ACTIONS(3261), [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), @@ -151694,17 +151358,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_from] = ACTIONS(3263), [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(3263), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_COLON] = ACTIONS(1383), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_function] = ACTIONS(3276), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -151735,7 +151399,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -151775,10 +151439,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [938] = { - [sym__call_signature] = STATE(8329), + [sym__call_signature] = STATE(8401), [sym_comment] = STATE(938), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_get] = ACTIONS(3259), + [anon_sym_set] = ACTIONS(3259), + [anon_sym_declare] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3259), + [anon_sym_any] = ACTIONS(3259), + [anon_sym_number] = ACTIONS(3259), + [anon_sym_boolean] = ACTIONS(3259), + [anon_sym_string] = ACTIONS(3259), + [anon_sym_symbol] = ACTIONS(3259), + [anon_sym_object] = ACTIONS(3259), + [anon_sym_property] = ACTIONS(3259), + [anon_sym_signal] = ACTIONS(3259), + [anon_sym_on] = ACTIONS(3259), + [anon_sym_required] = ACTIONS(3259), + [anon_sym_component] = ACTIONS(3259), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [939] = { + [sym__call_signature] = STATE(7976), + [sym_comment] = STATE(939), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), [sym_identifier] = ACTIONS(3261), [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), @@ -151790,17 +151550,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_from] = ACTIONS(3263), [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(3263), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_COLON] = ACTIONS(1412), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -151831,7 +151591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -151870,11 +151630,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [939] = { - [sym__call_signature] = STATE(8329), - [sym_comment] = STATE(939), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), + [940] = { + [sym__call_signature] = STATE(7976), + [sym_comment] = STATE(940), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), [sym_identifier] = ACTIONS(3261), [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), @@ -151883,20 +151643,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(3263), [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_from] = ACTIONS(3263), [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(3263), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1404), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -151927,7 +151687,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -151966,132 +151726,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [940] = { - [sym__call_signature] = STATE(8196), - [sym_comment] = STATE(940), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_ui_object_initializer] = STATE(6642), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_EQ] = ACTIONS(25), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(34), - [anon_sym_from] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(34), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(66), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_property] = ACTIONS(3255), - [anon_sym_signal] = ACTIONS(3255), - [anon_sym_on] = ACTIONS(3255), - [anon_sym_required] = ACTIONS(3255), - [anon_sym_component] = ACTIONS(3255), - [anon_sym_satisfies] = ACTIONS(28), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, [941] = { - [sym__call_signature] = STATE(8196), + [sym__call_signature] = STATE(7976), [sym_comment] = STATE(941), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3255), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_from] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(1335), + [anon_sym_of] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1385), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(1414), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -152120,7 +151783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -152133,36 +151796,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_property] = ACTIONS(3255), - [anon_sym_signal] = ACTIONS(3255), - [anon_sym_on] = ACTIONS(3255), - [anon_sym_required] = ACTIONS(3255), - [anon_sym_component] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [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_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [942] = { - [sym__call_signature] = STATE(8329), + [sym__call_signature] = STATE(7976), [sym_comment] = STATE(942), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), [sym_identifier] = ACTIONS(3261), [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), @@ -152174,17 +151838,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_from] = ACTIONS(3263), [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(3263), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1392), + [anon_sym_COLON] = ACTIONS(1381), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -152215,7 +151879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -152255,10 +151919,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [943] = { - [sym__call_signature] = STATE(8329), + [sym__call_signature] = STATE(7976), [sym_comment] = STATE(943), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), [sym_identifier] = ACTIONS(3261), [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), @@ -152270,17 +151934,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_from] = ACTIONS(3263), [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(3263), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1412), + [anon_sym_COLON] = ACTIONS(1410), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_async] = ACTIONS(3263), [anon_sym_function] = ACTIONS(3282), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -152311,7 +151975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -152351,34 +152015,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [944] = { - [sym__call_signature] = STATE(8329), + [sym__call_signature] = STATE(8401), [sym_comment] = STATE(944), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3261), - [anon_sym_export] = ACTIONS(3263), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_ui_object_initializer] = STATE(6404), + [sym_identifier] = ACTIONS(3257), + [anon_sym_export] = ACTIONS(3259), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3263), - [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_EQ] = ACTIONS(25), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(28), - [anon_sym_from] = ACTIONS(3263), - [anon_sym_let] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_from] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3259), [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(66), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3259), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -152407,7 +152072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -152420,37 +152085,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_readonly] = ACTIONS(3263), - [anon_sym_get] = ACTIONS(3263), - [anon_sym_set] = ACTIONS(3263), - [anon_sym_declare] = ACTIONS(3263), - [anon_sym_public] = ACTIONS(3263), - [anon_sym_private] = ACTIONS(3263), - [anon_sym_protected] = ACTIONS(3263), - [anon_sym_override] = ACTIONS(3263), - [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_property] = ACTIONS(3263), - [anon_sym_signal] = ACTIONS(3263), - [anon_sym_on] = ACTIONS(3263), - [anon_sym_required] = ACTIONS(3263), - [anon_sym_component] = ACTIONS(3263), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_readonly] = ACTIONS(3259), + [anon_sym_get] = ACTIONS(3259), + [anon_sym_set] = ACTIONS(3259), + [anon_sym_declare] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_protected] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_module] = ACTIONS(3259), + [anon_sym_any] = ACTIONS(3259), + [anon_sym_number] = ACTIONS(3259), + [anon_sym_boolean] = ACTIONS(3259), + [anon_sym_string] = ACTIONS(3259), + [anon_sym_symbol] = ACTIONS(3259), + [anon_sym_object] = ACTIONS(3259), + [anon_sym_property] = ACTIONS(3259), + [anon_sym_signal] = ACTIONS(3259), + [anon_sym_on] = ACTIONS(3259), + [anon_sym_required] = ACTIONS(3259), + [anon_sym_component] = ACTIONS(3259), [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [945] = { - [sym__call_signature] = STATE(8329), + [sym__call_signature] = STATE(7976), [sym_comment] = STATE(945), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), [sym_identifier] = ACTIONS(3261), [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), @@ -152462,17 +152126,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_from] = ACTIONS(3263), [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(3263), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1394), + [anon_sym_COLON] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_function] = ACTIONS(3286), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -152503,7 +152167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -152543,32 +152207,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [946] = { - [sym__call_signature] = STATE(8329), + [sym__call_signature] = STATE(7976), [sym_comment] = STATE(946), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), [sym_identifier] = ACTIONS(3261), [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(3263), - [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(3263), [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_from] = ACTIONS(3263), [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), [anon_sym_of] = ACTIONS(3263), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -152599,7 +152263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -152639,31 +152303,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [947] = { - [sym__call_signature] = STATE(8223), + [sym__call_signature] = STATE(8461), [sym_comment] = STATE(947), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), [sym_identifier] = ACTIONS(3288), [anon_sym_export] = ACTIONS(3290), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(3290), - [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_from] = ACTIONS(3290), [anon_sym_let] = ACTIONS(3290), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1455), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_new] = ACTIONS(3290), [anon_sym_PLUS_EQ] = ACTIONS(72), @@ -152694,7 +152358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -152729,50 +152393,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_required] = ACTIONS(3290), [anon_sym_component] = ACTIONS(3290), [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), + [anon_sym_implements] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [948] = { - [sym_declaration] = STATE(8007), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_class_declaration] = STATE(8195), - [sym_function_declaration] = STATE(8195), - [sym_generator_function_declaration] = STATE(8195), + [sym__call_signature] = STATE(8025), [sym_comment] = STATE(948), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(8195), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(8045), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [aux_sym_export_statement_repeat1] = STATE(6284), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3294), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3294), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1449), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_readonly] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3294), + [anon_sym_set] = ACTIONS(3294), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_override] = ACTIONS(3294), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_property] = ACTIONS(3294), + [anon_sym_signal] = ACTIONS(3294), + [anon_sym_on] = ACTIONS(3294), + [anon_sym_required] = ACTIONS(3294), + [anon_sym_component] = ACTIONS(3294), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [949] = { + [sym__call_signature] = STATE(8050), + [sym_comment] = STATE(949), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3301), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_property] = ACTIONS(3301), + [anon_sym_signal] = ACTIONS(3301), + [anon_sym_on] = ACTIONS(3301), + [anon_sym_required] = ACTIONS(3301), + [anon_sym_component] = ACTIONS(3301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [950] = { + [sym_declaration] = STATE(1175), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_class_declaration] = STATE(1180), + [sym_function_declaration] = STATE(1180), + [sym_generator_function_declaration] = STATE(1180), + [sym_comment] = STATE(950), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1180), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(1176), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [aux_sym_export_statement_repeat1] = STATE(5984), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3303), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3149), + [anon_sym_namespace] = ACTIONS(3023), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3025), + [anon_sym_var] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3029), + [anon_sym_const] = ACTIONS(3031), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3159), + [anon_sym_COLON] = ACTIONS(3033), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_async] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3039), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -152817,45 +152671,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3297), - [anon_sym_abstract] = ACTIONS(3171), + [anon_sym_declare] = ACTIONS(3041), + [anon_sym_module] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3045), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3175), + [anon_sym_global] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3049), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [949] = { - [sym__call_signature] = STATE(8329), - [sym_comment] = STATE(949), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3261), - [anon_sym_export] = ACTIONS(3263), + [951] = { + [sym__call_signature] = STATE(8025), + [sym_comment] = STATE(951), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3294), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3263), - [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3263), + [anon_sym_namespace] = ACTIONS(3294), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_from] = ACTIONS(3263), - [anon_sym_let] = ACTIONS(3263), + [anon_sym_from] = ACTIONS(3294), + [anon_sym_let] = ACTIONS(3294), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_of] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3296), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3294), [anon_sym_function] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1449), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3294), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -152884,7 +152738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -152897,60 +152751,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3263), - [anon_sym_readonly] = ACTIONS(3263), - [anon_sym_get] = ACTIONS(3263), - [anon_sym_set] = ACTIONS(3263), - [anon_sym_declare] = ACTIONS(3263), - [anon_sym_public] = ACTIONS(3263), - [anon_sym_private] = ACTIONS(3263), - [anon_sym_protected] = ACTIONS(3263), - [anon_sym_override] = ACTIONS(3263), - [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_property] = ACTIONS(3263), - [anon_sym_signal] = ACTIONS(3263), - [anon_sym_on] = ACTIONS(3263), - [anon_sym_required] = ACTIONS(3263), - [anon_sym_component] = ACTIONS(3263), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_readonly] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3294), + [anon_sym_set] = ACTIONS(3294), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_override] = ACTIONS(3294), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_property] = ACTIONS(3294), + [anon_sym_signal] = ACTIONS(3294), + [anon_sym_on] = ACTIONS(3294), + [anon_sym_required] = ACTIONS(3294), + [anon_sym_component] = ACTIONS(3294), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [950] = { - [sym__call_signature] = STATE(8647), - [sym_comment] = STATE(950), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3303), - [anon_sym_export] = ACTIONS(3305), + [952] = { + [sym__call_signature] = STATE(7976), + [sym_comment] = STATE(952), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3261), + [anon_sym_export] = ACTIONS(3263), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3263), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_from] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3305), + [anon_sym_from] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_of] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1471), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3263), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -152979,7 +152833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -152992,72 +152846,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3305), - [anon_sym_readonly] = ACTIONS(3305), - [anon_sym_get] = ACTIONS(3305), - [anon_sym_set] = ACTIONS(3305), - [anon_sym_declare] = ACTIONS(3305), - [anon_sym_public] = ACTIONS(3305), - [anon_sym_private] = ACTIONS(3305), - [anon_sym_protected] = ACTIONS(3305), - [anon_sym_override] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3305), - [anon_sym_any] = ACTIONS(3305), - [anon_sym_number] = ACTIONS(3305), - [anon_sym_boolean] = ACTIONS(3305), - [anon_sym_string] = ACTIONS(3305), - [anon_sym_symbol] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_property] = ACTIONS(3305), - [anon_sym_signal] = ACTIONS(3305), - [anon_sym_on] = ACTIONS(3305), - [anon_sym_required] = ACTIONS(3305), - [anon_sym_component] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_readonly] = ACTIONS(3263), + [anon_sym_get] = ACTIONS(3263), + [anon_sym_set] = ACTIONS(3263), + [anon_sym_declare] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_protected] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [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_property] = ACTIONS(3263), + [anon_sym_signal] = ACTIONS(3263), + [anon_sym_on] = ACTIONS(3263), + [anon_sym_required] = ACTIONS(3263), + [anon_sym_component] = ACTIONS(3263), [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_implements] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [951] = { - [sym_declaration] = STATE(1667), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), - [sym_comment] = STATE(951), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), + [953] = { + [sym_declaration] = STATE(4032), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_class_declaration] = STATE(3972), + [sym_function_declaration] = STATE(3972), + [sym_generator_function_declaration] = STATE(3972), + [sym_comment] = STATE(953), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(3972), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(4026), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [aux_sym_export_statement_repeat1] = STATE(5815), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3007), + [anon_sym_type] = ACTIONS(3311), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_namespace] = ACTIONS(3229), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2969), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3237), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3259), + [anon_sym_COLON] = ACTIONS(3239), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_async] = ACTIONS(2979), - [anon_sym_function] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3245), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -153102,46 +152956,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(2991), - [anon_sym_module] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3313), + [anon_sym_abstract] = ACTIONS(3251), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3011), - [anon_sym_interface] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2999), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3255), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [952] = { - [sym__call_signature] = STATE(8312), - [sym_comment] = STATE(952), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3309), + [954] = { + [sym__call_signature] = STATE(8461), + [sym_comment] = STATE(954), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3290), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_EQ] = ACTIONS(1475), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_from] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_from] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3309), - [anon_sym_COLON] = ACTIONS(1447), + [anon_sym_of] = ACTIONS(3290), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1455), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3290), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -153170,7 +153023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -153183,71 +153036,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [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_property] = ACTIONS(3309), - [anon_sym_signal] = ACTIONS(3309), - [anon_sym_on] = ACTIONS(3309), - [anon_sym_required] = ACTIONS(3309), - [anon_sym_component] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_readonly] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3290), + [anon_sym_set] = ACTIONS(3290), + [anon_sym_declare] = ACTIONS(3290), + [anon_sym_public] = ACTIONS(3290), + [anon_sym_private] = ACTIONS(3290), + [anon_sym_protected] = ACTIONS(3290), + [anon_sym_override] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3290), + [anon_sym_any] = ACTIONS(3290), + [anon_sym_number] = ACTIONS(3290), + [anon_sym_boolean] = ACTIONS(3290), + [anon_sym_string] = ACTIONS(3290), + [anon_sym_symbol] = ACTIONS(3290), + [anon_sym_object] = ACTIONS(3290), + [anon_sym_property] = ACTIONS(3290), + [anon_sym_signal] = ACTIONS(3290), + [anon_sym_on] = ACTIONS(3290), + [anon_sym_required] = ACTIONS(3290), + [anon_sym_component] = ACTIONS(3290), [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_implements] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [953] = { - [sym_declaration] = STATE(1569), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_class_declaration] = STATE(1587), - [sym_function_declaration] = STATE(1587), - [sym_generator_function_declaration] = STATE(1587), - [sym_comment] = STATE(953), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1587), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(1487), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [aux_sym_export_statement_repeat1] = STATE(6050), + [955] = { + [sym_declaration] = STATE(7236), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_class_declaration] = STATE(7282), + [sym_function_declaration] = STATE(7282), + [sym_generator_function_declaration] = STATE(7282), + [sym_comment] = STATE(955), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(7282), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(7203), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [aux_sym_export_statement_repeat1] = STATE(5618), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3317), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3153), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3189), - [anon_sym_var] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3161), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3197), + [anon_sym_COLON] = ACTIONS(3163), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_function] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -153292,57 +153146,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3205), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_abstract] = ACTIONS(3209), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3175), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3179), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [954] = { - [sym_declaration] = STATE(4335), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_class_declaration] = STATE(4255), - [sym_function_declaration] = STATE(4255), - [sym_generator_function_declaration] = STATE(4255), - [sym_comment] = STATE(954), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(4255), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(4326), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [aux_sym_export_statement_repeat1] = STATE(6240), + [956] = { + [sym_declaration] = STATE(1517), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_class_declaration] = STATE(1514), + [sym_function_declaration] = STATE(1514), + [sym_generator_function_declaration] = STATE(1514), + [sym_comment] = STATE(956), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1514), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(1454), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [aux_sym_export_statement_repeat1] = STATE(5917), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3323), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3111), + [anon_sym_namespace] = ACTIONS(3115), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3113), - [anon_sym_var] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3119), + [anon_sym_import] = ACTIONS(3117), + [anon_sym_var] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3123), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3121), + [anon_sym_COLON] = ACTIONS(3125), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3125), - [anon_sym_function] = ACTIONS(3127), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3131), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -153387,152 +153241,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3325), + [anon_sym_abstract] = ACTIONS(3137), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3139), + [anon_sym_enum] = ACTIONS(3141), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [955] = { - [sym__call_signature] = STATE(8647), - [sym_comment] = STATE(955), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3303), - [anon_sym_export] = ACTIONS(3305), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_from] = ACTIONS(3305), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3305), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1471), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3305), - [anon_sym_readonly] = ACTIONS(3305), - [anon_sym_get] = ACTIONS(3305), - [anon_sym_set] = ACTIONS(3305), - [anon_sym_declare] = ACTIONS(3305), - [anon_sym_public] = ACTIONS(3305), - [anon_sym_private] = ACTIONS(3305), - [anon_sym_protected] = ACTIONS(3305), - [anon_sym_override] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3305), - [anon_sym_any] = ACTIONS(3305), - [anon_sym_number] = ACTIONS(3305), - [anon_sym_boolean] = ACTIONS(3305), - [anon_sym_string] = ACTIONS(3305), - [anon_sym_symbol] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_property] = ACTIONS(3305), - [anon_sym_signal] = ACTIONS(3305), - [anon_sym_on] = ACTIONS(3305), - [anon_sym_required] = ACTIONS(3305), - [anon_sym_component] = ACTIONS(3305), - [anon_sym_satisfies] = ACTIONS(28), - [anon_sym_implements] = ACTIONS(28), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [956] = { - [sym_declaration] = STATE(1291), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_class_declaration] = STATE(1302), - [sym_function_declaration] = STATE(1302), - [sym_generator_function_declaration] = STATE(1302), - [sym_comment] = STATE(956), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1302), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(1298), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [aux_sym_export_statement_repeat1] = STATE(6249), + [957] = { + [sym_declaration] = STATE(4057), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_class_declaration] = STATE(4079), + [sym_function_declaration] = STATE(4079), + [sym_generator_function_declaration] = STATE(4079), + [sym_comment] = STATE(957), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(4079), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(4064), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [aux_sym_export_statement_repeat1] = STATE(5769), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3329), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3191), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3199), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(3201), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_async] = ACTIONS(3205), + [anon_sym_function] = ACTIONS(3207), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -153577,57 +153336,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3209), + [anon_sym_module] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3213), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3251), + [anon_sym_global] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3217), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [957] = { - [sym_declaration] = STATE(1078), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_class_declaration] = STATE(1092), - [sym_function_declaration] = STATE(1092), - [sym_generator_function_declaration] = STATE(1092), - [sym_comment] = STATE(957), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1092), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(1079), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [aux_sym_export_statement_repeat1] = STATE(5961), + [958] = { + [sym_declaration] = STATE(1643), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), + [sym_comment] = STATE(958), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3007), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_namespace] = ACTIONS(2957), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3025), - [anon_sym_var] = ACTIONS(3027), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3031), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3033), + [anon_sym_COLON] = ACTIONS(3053), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_async] = ACTIONS(3037), - [anon_sym_function] = ACTIONS(3039), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -153672,57 +153431,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3041), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(2995), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3047), - [anon_sym_enum] = ACTIONS(3049), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [958] = { - [sym_declaration] = STATE(4140), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_class_declaration] = STATE(4080), - [sym_function_declaration] = STATE(4080), - [sym_generator_function_declaration] = STATE(4080), - [sym_comment] = STATE(958), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(4080), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(4134), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [aux_sym_export_statement_repeat1] = STATE(6181), + [959] = { + [sym_declaration] = STATE(1303), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_class_declaration] = STATE(1313), + [sym_function_declaration] = STATE(1313), + [sym_generator_function_declaration] = STATE(1313), + [sym_comment] = STATE(959), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1313), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(1309), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [aux_sym_export_statement_repeat1] = STATE(5953), [anon_sym_STAR] = ACTIONS(28), [anon_sym_type] = ACTIONS(3335), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3061), + [anon_sym_namespace] = ACTIONS(3077), [anon_sym_COMMA] = ACTIONS(126), - [anon_sym_import] = ACTIONS(3063), - [anon_sym_var] = ACTIONS(3065), - [anon_sym_let] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3069), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_var] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3085), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_COLON] = ACTIONS(3071), + [anon_sym_COLON] = ACTIONS(3087), [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3077), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_function] = ACTIONS(3093), [anon_sym_EQ_GT] = ACTIONS(2983), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), @@ -153767,45 +153526,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3079), + [anon_sym_declare] = ACTIONS(3095), [anon_sym_module] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_abstract] = ACTIONS(3099), [anon_sym_satisfies] = ACTIONS(126), [anon_sym_global] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3087), + [anon_sym_interface] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3103), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [959] = { - [sym__call_signature] = STATE(8223), - [sym_comment] = STATE(959), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3290), + [960] = { + [sym_catch_clause] = STATE(996), + [sym_finally_clause] = STATE(1083), + [sym_comment] = STATE(960), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_default] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_else] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_of] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_case] = ACTIONS(3341), + [anon_sym_catch] = ACTIONS(3343), + [anon_sym_finally] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [anon_sym_module] = ACTIONS(3341), + [anon_sym_any] = ACTIONS(3341), + [anon_sym_number] = ACTIONS(3341), + [anon_sym_boolean] = ACTIONS(3341), + [anon_sym_string] = ACTIONS(3341), + [anon_sym_symbol] = ACTIONS(3341), + [anon_sym_object] = ACTIONS(3341), + [anon_sym_property] = ACTIONS(3341), + [anon_sym_signal] = ACTIONS(3341), + [anon_sym_on] = ACTIONS(3341), + [anon_sym_required] = ACTIONS(3341), + [anon_sym_component] = ACTIONS(3341), + [anon_sym_abstract] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), + [sym_html_comment] = ACTIONS(5), + }, + [961] = { + [sym__call_signature] = STATE(8278), + [sym_comment] = STATE(961), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_from] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3292), + [anon_sym_of] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(2924), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3349), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -153834,7 +153686,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -153847,59 +153699,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3290), - [anon_sym_readonly] = ACTIONS(3290), - [anon_sym_get] = ACTIONS(3290), - [anon_sym_set] = ACTIONS(3290), - [anon_sym_declare] = ACTIONS(3290), - [anon_sym_public] = ACTIONS(3290), - [anon_sym_private] = ACTIONS(3290), - [anon_sym_protected] = ACTIONS(3290), - [anon_sym_override] = ACTIONS(3290), - [anon_sym_module] = ACTIONS(3290), - [anon_sym_any] = ACTIONS(3290), - [anon_sym_number] = ACTIONS(3290), - [anon_sym_boolean] = ACTIONS(3290), - [anon_sym_string] = ACTIONS(3290), - [anon_sym_symbol] = ACTIONS(3290), - [anon_sym_object] = ACTIONS(3290), - [anon_sym_property] = ACTIONS(3290), - [anon_sym_signal] = ACTIONS(3290), - [anon_sym_on] = ACTIONS(3290), - [anon_sym_required] = ACTIONS(3290), - [anon_sym_component] = ACTIONS(3290), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [960] = { - [sym__call_signature] = STATE(8535), - [sym_comment] = STATE(960), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3341), - [anon_sym_export] = ACTIONS(3343), + [962] = { + [sym__call_signature] = STATE(8050), + [sym_comment] = STATE(962), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(1485), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3301), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_property] = ACTIONS(3301), + [anon_sym_signal] = ACTIONS(3301), + [anon_sym_on] = ACTIONS(3301), + [anon_sym_required] = ACTIONS(3301), + [anon_sym_component] = ACTIONS(3301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [963] = { + [sym__call_signature] = STATE(8278), + [sym_comment] = STATE(963), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3349), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3343), + [anon_sym_of] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(2924), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3286), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3349), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -153928,7 +153874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -153941,60 +153887,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_property] = ACTIONS(3343), - [anon_sym_signal] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_component] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [961] = { - [sym__call_signature] = STATE(8312), - [sym_comment] = STATE(961), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3309), + [964] = { + [sym__call_signature] = STATE(8278), + [sym_comment] = STATE(964), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_COMMA] = ACTIONS(131), - [anon_sym_from] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3309), + [anon_sym_of] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3349), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -154023,7 +153968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -154036,58 +153981,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [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_property] = ACTIONS(3309), - [anon_sym_signal] = ACTIONS(3309), - [anon_sym_on] = ACTIONS(3309), - [anon_sym_required] = ACTIONS(3309), - [anon_sym_component] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [962] = { - [sym__call_signature] = STATE(8535), - [sym_comment] = STATE(962), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3341), - [anon_sym_export] = ACTIONS(3343), + [965] = { + [sym__call_signature] = STATE(8278), + [sym_comment] = STATE(965), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3349), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3343), + [anon_sym_of] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3282), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3349), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -154116,7 +154062,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -154129,153 +154075,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_property] = ACTIONS(3343), - [anon_sym_signal] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_component] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [963] = { - [sym_catch_clause] = STATE(1011), - [sym_finally_clause] = STATE(1111), - [sym_comment] = STATE(963), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_default] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_from] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_of] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_case] = ACTIONS(3345), - [anon_sym_catch] = ACTIONS(3347), - [anon_sym_finally] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [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_property] = ACTIONS(3345), - [anon_sym_signal] = ACTIONS(3345), - [anon_sym_on] = ACTIONS(3345), - [anon_sym_required] = ACTIONS(3345), - [anon_sym_component] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), - [sym_html_comment] = ACTIONS(5), - }, - [964] = { - [sym__call_signature] = STATE(8535), - [sym_comment] = STATE(964), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3341), - [anon_sym_export] = ACTIONS(3343), + [966] = { + [sym__call_signature] = STATE(8278), + [sym_comment] = STATE(966), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3343), + [anon_sym_of] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3349), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -154304,7 +154156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -154317,59 +154169,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_property] = ACTIONS(3343), - [anon_sym_signal] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_component] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [965] = { - [sym__call_signature] = STATE(8535), - [sym_comment] = STATE(965), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3341), - [anon_sym_export] = ACTIONS(3343), + [967] = { + [sym__call_signature] = STATE(8050), + [sym_comment] = STATE(967), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(1485), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3301), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_property] = ACTIONS(3301), + [anon_sym_signal] = ACTIONS(3301), + [anon_sym_on] = ACTIONS(3301), + [anon_sym_required] = ACTIONS(3301), + [anon_sym_component] = ACTIONS(3301), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [968] = { + [sym__call_signature] = STATE(8278), + [sym_comment] = STATE(968), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3349), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3343), + [anon_sym_of] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3349), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -154398,7 +154344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -154411,59 +154357,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_property] = ACTIONS(3343), - [anon_sym_signal] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_component] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [966] = { - [sym__call_signature] = STATE(8535), - [sym_comment] = STATE(966), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3341), - [anon_sym_export] = ACTIONS(3343), + [969] = { + [sym__call_signature] = STATE(8278), + [sym_comment] = STATE(969), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3343), + [anon_sym_of] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3349), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -154492,7 +154438,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -154505,59 +154451,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_property] = ACTIONS(3343), - [anon_sym_signal] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_component] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [967] = { - [sym__call_signature] = STATE(8535), - [sym_comment] = STATE(967), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3341), - [anon_sym_export] = ACTIONS(3343), + [970] = { + [sym__call_signature] = STATE(8278), + [sym_comment] = STATE(970), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3349), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3343), + [anon_sym_of] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3349), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -154586,7 +154532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -154599,59 +154545,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_property] = ACTIONS(3343), - [anon_sym_signal] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_component] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [968] = { - [sym__call_signature] = STATE(8535), - [sym_comment] = STATE(968), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3341), - [anon_sym_export] = ACTIONS(3343), + [971] = { + [sym__call_signature] = STATE(8278), + [sym_comment] = STATE(971), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3349), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3343), + [anon_sym_of] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3349), [anon_sym_function] = ACTIONS(3276), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3349), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -154680,7 +154626,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -154693,59 +154639,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_property] = ACTIONS(3343), - [anon_sym_signal] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_component] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [969] = { - [sym__call_signature] = STATE(8535), - [sym_comment] = STATE(969), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3341), - [anon_sym_export] = ACTIONS(3343), + [972] = { + [sym__call_signature] = STATE(8278), + [sym_comment] = STATE(972), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3349), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3349), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_from] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3343), + [anon_sym_of] = ACTIONS(3349), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_EQ_GT] = ACTIONS(1467), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3349), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -154774,7 +154720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -154787,60 +154733,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_property] = ACTIONS(3343), - [anon_sym_signal] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_component] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3349), + [anon_sym_readonly] = ACTIONS(3349), + [anon_sym_get] = ACTIONS(3349), + [anon_sym_set] = ACTIONS(3349), + [anon_sym_declare] = ACTIONS(3349), + [anon_sym_public] = ACTIONS(3349), + [anon_sym_private] = ACTIONS(3349), + [anon_sym_protected] = ACTIONS(3349), + [anon_sym_override] = ACTIONS(3349), + [anon_sym_module] = ACTIONS(3349), + [anon_sym_any] = ACTIONS(3349), + [anon_sym_number] = ACTIONS(3349), + [anon_sym_boolean] = ACTIONS(3349), + [anon_sym_string] = ACTIONS(3349), + [anon_sym_symbol] = ACTIONS(3349), + [anon_sym_object] = ACTIONS(3349), + [anon_sym_property] = ACTIONS(3349), + [anon_sym_signal] = ACTIONS(3349), + [anon_sym_on] = ACTIONS(3349), + [anon_sym_required] = ACTIONS(3349), + [anon_sym_component] = ACTIONS(3349), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [970] = { - [sym__call_signature] = STATE(8312), - [sym_comment] = STATE(970), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3309), + [973] = { + [sym__call_signature] = STATE(8050), + [sym_comment] = STATE(973), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(1418), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_from] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3309), - [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_of] = ACTIONS(3301), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3301), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -154869,7 +154815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -154882,152 +154828,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [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_property] = ACTIONS(3309), - [anon_sym_signal] = ACTIONS(3309), - [anon_sym_on] = ACTIONS(3309), - [anon_sym_required] = ACTIONS(3309), - [anon_sym_component] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_property] = ACTIONS(3301), + [anon_sym_signal] = ACTIONS(3301), + [anon_sym_on] = ACTIONS(3301), + [anon_sym_required] = ACTIONS(3301), + [anon_sym_component] = ACTIONS(3301), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [971] = { - [sym__call_signature] = STATE(8535), - [sym_comment] = STATE(971), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), + [974] = { + [sym_catch_clause] = STATE(1032), + [sym_finally_clause] = STATE(1363), + [sym_comment] = STATE(974), [sym_identifier] = ACTIONS(3341), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_EQ] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_EQ_GT] = ACTIONS(1455), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_property] = ACTIONS(3343), - [anon_sym_signal] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_component] = ACTIONS(3343), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_default] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_of] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_case] = ACTIONS(3341), + [anon_sym_catch] = ACTIONS(3353), + [anon_sym_finally] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [anon_sym_module] = ACTIONS(3341), + [anon_sym_any] = ACTIONS(3341), + [anon_sym_number] = ACTIONS(3341), + [anon_sym_boolean] = ACTIONS(3341), + [anon_sym_string] = ACTIONS(3341), + [anon_sym_symbol] = ACTIONS(3341), + [anon_sym_object] = ACTIONS(3341), + [anon_sym_property] = ACTIONS(3341), + [anon_sym_signal] = ACTIONS(3341), + [anon_sym_on] = ACTIONS(3341), + [anon_sym_required] = ACTIONS(3341), + [anon_sym_component] = ACTIONS(3341), + [anon_sym_abstract] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), [sym_html_comment] = ACTIONS(5), }, - [972] = { - [sym__call_signature] = STATE(8535), - [sym_comment] = STATE(972), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3341), - [anon_sym_export] = ACTIONS(3343), + [975] = { + [sym__call_signature] = STATE(8050), + [sym_comment] = STATE(975), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_from] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3301), [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3301), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -155056,7 +155001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -155069,60 +155014,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_property] = ACTIONS(3343), - [anon_sym_signal] = ACTIONS(3343), - [anon_sym_on] = ACTIONS(3343), - [anon_sym_required] = ACTIONS(3343), - [anon_sym_component] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_property] = ACTIONS(3301), + [anon_sym_signal] = ACTIONS(3301), + [anon_sym_on] = ACTIONS(3301), + [anon_sym_required] = ACTIONS(3301), + [anon_sym_component] = ACTIONS(3301), [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [973] = { - [sym__call_signature] = STATE(8312), - [sym_comment] = STATE(973), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3309), + [976] = { + [sym_comment] = STATE(976), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_catch] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3357), + [sym_html_comment] = ACTIONS(5), + }, + [977] = { + [sym__call_signature] = STATE(7943), + [sym_comment] = STATE(977), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3361), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(1493), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_from] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_from] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3309), - [anon_sym_COLON] = ACTIONS(1447), + [anon_sym_of] = ACTIONS(3361), + [anon_sym_COLON] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1503), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3361), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -155151,7 +155187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -155164,152 +155200,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [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_property] = ACTIONS(3309), - [anon_sym_signal] = ACTIONS(3309), - [anon_sym_on] = ACTIONS(3309), - [anon_sym_required] = ACTIONS(3309), - [anon_sym_component] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3361), + [anon_sym_readonly] = ACTIONS(3361), + [anon_sym_get] = ACTIONS(3361), + [anon_sym_set] = ACTIONS(3361), + [anon_sym_declare] = ACTIONS(3361), + [anon_sym_public] = ACTIONS(3361), + [anon_sym_private] = ACTIONS(3361), + [anon_sym_protected] = ACTIONS(3361), + [anon_sym_override] = ACTIONS(3361), + [anon_sym_module] = ACTIONS(3361), + [anon_sym_any] = ACTIONS(3361), + [anon_sym_number] = ACTIONS(3361), + [anon_sym_boolean] = ACTIONS(3361), + [anon_sym_string] = ACTIONS(3361), + [anon_sym_symbol] = ACTIONS(3361), + [anon_sym_object] = ACTIONS(3361), + [anon_sym_property] = ACTIONS(3361), + [anon_sym_signal] = ACTIONS(3361), + [anon_sym_on] = ACTIONS(3361), + [anon_sym_required] = ACTIONS(3361), + [anon_sym_component] = ACTIONS(3361), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [974] = { - [sym_comment] = STATE(974), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_finally] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3353), - [sym_html_comment] = ACTIONS(5), - }, - [975] = { - [sym_declaration] = STATE(4335), - [sym_variable_declaration] = STATE(4255), - [sym_lexical_declaration] = STATE(4255), - [sym_class_declaration] = STATE(4255), - [sym_function_declaration] = STATE(4255), - [sym_generator_function_declaration] = STATE(4255), - [sym_comment] = STATE(975), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(4255), - [sym_ambient_declaration] = STATE(4255), - [sym_abstract_class_declaration] = STATE(4255), - [sym_module] = STATE(4255), - [sym_internal_module] = STATE(4326), - [sym_import_alias] = STATE(4255), - [sym_interface_declaration] = STATE(4255), - [sym_enum_declaration] = STATE(4255), - [sym_type_alias_declaration] = STATE(4255), - [aux_sym_export_statement_repeat1] = STATE(6240), + [978] = { + [sym_declaration] = STATE(1175), + [sym_variable_declaration] = STATE(1180), + [sym_lexical_declaration] = STATE(1180), + [sym_class_declaration] = STATE(1180), + [sym_function_declaration] = STATE(1180), + [sym_generator_function_declaration] = STATE(1180), + [sym_comment] = STATE(978), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1180), + [sym_ambient_declaration] = STATE(1180), + [sym_abstract_class_declaration] = STATE(1180), + [sym_module] = STATE(1180), + [sym_internal_module] = STATE(1176), + [sym_import_alias] = STATE(1180), + [sym_interface_declaration] = STATE(1180), + [sym_enum_declaration] = STATE(1180), + [sym_type_alias_declaration] = STATE(1180), + [aux_sym_export_statement_repeat1] = STATE(5984), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3303), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3111), - [anon_sym_import] = ACTIONS(3113), - [anon_sym_var] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3119), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_import] = ACTIONS(3025), + [anon_sym_var] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3029), + [anon_sym_const] = ACTIONS(3031), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), @@ -155317,10 +155260,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3123), - [anon_sym_async] = ACTIONS(3125), - [anon_sym_function] = ACTIONS(3127), - [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3035), + [anon_sym_async] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3039), + [anon_sym_EQ_GT] = ACTIONS(3363), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), [anon_sym_DASH_EQ] = ACTIONS(2985), @@ -155364,45 +155307,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3129), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_declare] = ACTIONS(3041), + [anon_sym_module] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3045), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3321), - [anon_sym_interface] = ACTIONS(3135), - [anon_sym_enum] = ACTIONS(3137), + [anon_sym_global] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3049), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [976] = { - [sym_declaration] = STATE(1667), - [sym_variable_declaration] = STATE(1751), - [sym_lexical_declaration] = STATE(1751), - [sym_class_declaration] = STATE(1751), - [sym_function_declaration] = STATE(1751), - [sym_generator_function_declaration] = STATE(1751), - [sym_comment] = STATE(976), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1751), - [sym_ambient_declaration] = STATE(1751), - [sym_abstract_class_declaration] = STATE(1751), - [sym_module] = STATE(1751), - [sym_internal_module] = STATE(1743), - [sym_import_alias] = STATE(1751), - [sym_interface_declaration] = STATE(1751), - [sym_enum_declaration] = STATE(1751), - [sym_type_alias_declaration] = STATE(1751), - [aux_sym_export_statement_repeat1] = STATE(5967), + [979] = { + [sym_declaration] = STATE(4032), + [sym_variable_declaration] = STATE(3972), + [sym_lexical_declaration] = STATE(3972), + [sym_class_declaration] = STATE(3972), + [sym_function_declaration] = STATE(3972), + [sym_generator_function_declaration] = STATE(3972), + [sym_comment] = STATE(979), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(3972), + [sym_ambient_declaration] = STATE(3972), + [sym_abstract_class_declaration] = STATE(3972), + [sym_module] = STATE(3972), + [sym_internal_module] = STATE(4026), + [sym_import_alias] = STATE(3972), + [sym_interface_declaration] = STATE(3972), + [sym_enum_declaration] = STATE(3972), + [sym_type_alias_declaration] = STATE(3972), + [aux_sym_export_statement_repeat1] = STATE(5815), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3007), + [anon_sym_type] = ACTIONS(3311), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(2957), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2969), + [anon_sym_namespace] = ACTIONS(3229), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3237), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), @@ -155410,10 +155353,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(2977), - [anon_sym_async] = ACTIONS(2979), - [anon_sym_function] = ACTIONS(2981), - [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_EQ_GT] = ACTIONS(3363), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), [anon_sym_DASH_EQ] = ACTIONS(2985), @@ -155457,45 +155400,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(2991), - [anon_sym_module] = ACTIONS(3009), - [anon_sym_abstract] = ACTIONS(2995), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3313), + [anon_sym_abstract] = ACTIONS(3251), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3011), - [anon_sym_interface] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2999), + [anon_sym_global] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3255), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [977] = { - [sym_declaration] = STATE(6251), - [sym_variable_declaration] = STATE(6274), - [sym_lexical_declaration] = STATE(6274), - [sym_class_declaration] = STATE(6274), - [sym_function_declaration] = STATE(6274), - [sym_generator_function_declaration] = STATE(6274), - [sym_comment] = STATE(977), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(6274), - [sym_ambient_declaration] = STATE(6274), - [sym_abstract_class_declaration] = STATE(6274), - [sym_module] = STATE(6274), - [sym_internal_module] = STATE(5916), - [sym_import_alias] = STATE(6274), - [sym_interface_declaration] = STATE(6274), - [sym_enum_declaration] = STATE(6274), - [sym_type_alias_declaration] = STATE(6274), - [aux_sym_export_statement_repeat1] = STATE(6130), + [980] = { + [sym_declaration] = STATE(1517), + [sym_variable_declaration] = STATE(1514), + [sym_lexical_declaration] = STATE(1514), + [sym_class_declaration] = STATE(1514), + [sym_function_declaration] = STATE(1514), + [sym_generator_function_declaration] = STATE(1514), + [sym_comment] = STATE(980), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1514), + [sym_ambient_declaration] = STATE(1514), + [sym_abstract_class_declaration] = STATE(1514), + [sym_module] = STATE(1514), + [sym_internal_module] = STATE(1454), + [sym_import_alias] = STATE(1514), + [sym_interface_declaration] = STATE(1514), + [sym_enum_declaration] = STATE(1514), + [sym_type_alias_declaration] = STATE(1514), + [aux_sym_export_statement_repeat1] = STATE(5917), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3323), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_const] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3115), + [anon_sym_import] = ACTIONS(3117), + [anon_sym_var] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3121), + [anon_sym_const] = ACTIONS(3123), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), @@ -155503,10 +155446,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3373), - [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3127), + [anon_sym_async] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3131), + [anon_sym_EQ_GT] = ACTIONS(3363), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), [anon_sym_DASH_EQ] = ACTIONS(2985), @@ -155550,138 +155493,138 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3379), + [anon_sym_declare] = ACTIONS(3133), + [anon_sym_module] = ACTIONS(3325), + [anon_sym_abstract] = ACTIONS(3137), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3385), + [anon_sym_global] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3139), + [anon_sym_enum] = ACTIONS(3141), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [978] = { - [sym__call_signature] = STATE(8200), - [sym_comment] = STATE(978), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3389), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_EQ] = ACTIONS(1333), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_from] = ACTIONS(3389), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1489), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), + [981] = { + [sym_comment] = STATE(981), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3389), - [anon_sym_readonly] = ACTIONS(3389), - [anon_sym_get] = ACTIONS(3389), - [anon_sym_set] = ACTIONS(3389), - [anon_sym_declare] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_protected] = ACTIONS(3389), - [anon_sym_override] = ACTIONS(3389), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_any] = ACTIONS(3389), - [anon_sym_number] = ACTIONS(3389), - [anon_sym_boolean] = ACTIONS(3389), - [anon_sym_string] = ACTIONS(3389), - [anon_sym_symbol] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_property] = ACTIONS(3389), - [anon_sym_signal] = ACTIONS(3389), - [anon_sym_on] = ACTIONS(3389), - [anon_sym_required] = ACTIONS(3389), - [anon_sym_component] = ACTIONS(3389), - [anon_sym_satisfies] = ACTIONS(28), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3365), [sym_html_comment] = ACTIONS(5), }, - [979] = { - [sym_declaration] = STATE(1291), - [sym_variable_declaration] = STATE(1302), - [sym_lexical_declaration] = STATE(1302), - [sym_class_declaration] = STATE(1302), - [sym_function_declaration] = STATE(1302), - [sym_generator_function_declaration] = STATE(1302), - [sym_comment] = STATE(979), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1302), - [sym_ambient_declaration] = STATE(1302), - [sym_abstract_class_declaration] = STATE(1302), - [sym_module] = STATE(1302), - [sym_internal_module] = STATE(1298), - [sym_import_alias] = STATE(1302), - [sym_interface_declaration] = STATE(1302), - [sym_enum_declaration] = STATE(1302), - [sym_type_alias_declaration] = STATE(1302), - [aux_sym_export_statement_repeat1] = STATE(6249), + [982] = { + [sym_declaration] = STATE(1643), + [sym_variable_declaration] = STATE(1574), + [sym_lexical_declaration] = STATE(1574), + [sym_class_declaration] = STATE(1574), + [sym_function_declaration] = STATE(1574), + [sym_generator_function_declaration] = STATE(1574), + [sym_comment] = STATE(982), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1574), + [sym_ambient_declaration] = STATE(1574), + [sym_abstract_class_declaration] = STATE(1574), + [sym_module] = STATE(1574), + [sym_internal_module] = STATE(1582), + [sym_import_alias] = STATE(1574), + [sym_interface_declaration] = STATE(1574), + [sym_enum_declaration] = STATE(1574), + [sym_type_alias_declaration] = STATE(1574), + [aux_sym_export_statement_repeat1] = STATE(5679), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3007), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(2957), + [anon_sym_import] = ACTIONS(2963), + [anon_sym_var] = ACTIONS(2965), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2969), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), @@ -155689,10 +155632,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3237), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_EQ_GT] = ACTIONS(3363), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), [anon_sym_DASH_EQ] = ACTIONS(2985), @@ -155736,45 +155679,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(2991), + [anon_sym_module] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(2995), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3251), + [anon_sym_global] = ACTIONS(3011), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2999), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [980] = { - [sym_declaration] = STATE(1078), - [sym_variable_declaration] = STATE(1092), - [sym_lexical_declaration] = STATE(1092), - [sym_class_declaration] = STATE(1092), - [sym_function_declaration] = STATE(1092), - [sym_generator_function_declaration] = STATE(1092), - [sym_comment] = STATE(980), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1092), - [sym_ambient_declaration] = STATE(1092), - [sym_abstract_class_declaration] = STATE(1092), - [sym_module] = STATE(1092), - [sym_internal_module] = STATE(1079), - [sym_import_alias] = STATE(1092), - [sym_interface_declaration] = STATE(1092), - [sym_enum_declaration] = STATE(1092), - [sym_type_alias_declaration] = STATE(1092), - [aux_sym_export_statement_repeat1] = STATE(5961), + [983] = { + [sym_declaration] = STATE(7236), + [sym_variable_declaration] = STATE(7282), + [sym_lexical_declaration] = STATE(7282), + [sym_class_declaration] = STATE(7282), + [sym_function_declaration] = STATE(7282), + [sym_generator_function_declaration] = STATE(7282), + [sym_comment] = STATE(983), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(7282), + [sym_ambient_declaration] = STATE(7282), + [sym_abstract_class_declaration] = STATE(7282), + [sym_module] = STATE(7282), + [sym_internal_module] = STATE(7203), + [sym_import_alias] = STATE(7282), + [sym_interface_declaration] = STATE(7282), + [sym_enum_declaration] = STATE(7282), + [sym_type_alias_declaration] = STATE(7282), + [aux_sym_export_statement_repeat1] = STATE(5618), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3317), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3023), - [anon_sym_import] = ACTIONS(3025), - [anon_sym_var] = ACTIONS(3027), - [anon_sym_let] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3031), + [anon_sym_namespace] = ACTIONS(3153), + [anon_sym_import] = ACTIONS(3155), + [anon_sym_var] = ACTIONS(3157), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3161), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), @@ -155782,10 +155725,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3035), - [anon_sym_async] = ACTIONS(3037), - [anon_sym_function] = ACTIONS(3039), - [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_EQ_GT] = ACTIONS(3363), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), [anon_sym_DASH_EQ] = ACTIONS(2985), @@ -155829,137 +155772,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3041), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_declare] = ACTIONS(3171), + [anon_sym_module] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3175), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3047), - [anon_sym_enum] = ACTIONS(3049), + [anon_sym_global] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3179), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [981] = { - [sym_catch_clause] = STATE(1036), - [sym_finally_clause] = STATE(1289), - [sym_comment] = STATE(981), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_default] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_from] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_of] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_case] = ACTIONS(3345), - [anon_sym_catch] = ACTIONS(3391), - [anon_sym_finally] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [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_property] = ACTIONS(3345), - [anon_sym_signal] = ACTIONS(3345), - [anon_sym_on] = ACTIONS(3345), - [anon_sym_required] = ACTIONS(3345), - [anon_sym_component] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), - [sym_html_comment] = ACTIONS(5), - }, - [982] = { - [sym__call_signature] = STATE(8200), - [sym_comment] = STATE(982), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3389), + [984] = { + [sym__call_signature] = STATE(8050), + [sym_comment] = STATE(984), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3301), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_EQ] = ACTIONS(1495), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(1485), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3389), - [anon_sym_from] = ACTIONS(3389), - [anon_sym_let] = ACTIONS(3389), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_from] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3389), - [anon_sym_COLON] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3301), [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3389), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1489), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1427), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3301), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -155988,7 +155838,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -156001,244 +155851,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3389), - [anon_sym_readonly] = ACTIONS(3389), - [anon_sym_get] = ACTIONS(3389), - [anon_sym_set] = ACTIONS(3389), - [anon_sym_declare] = ACTIONS(3389), - [anon_sym_public] = ACTIONS(3389), - [anon_sym_private] = ACTIONS(3389), - [anon_sym_protected] = ACTIONS(3389), - [anon_sym_override] = ACTIONS(3389), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_any] = ACTIONS(3389), - [anon_sym_number] = ACTIONS(3389), - [anon_sym_boolean] = ACTIONS(3389), - [anon_sym_string] = ACTIONS(3389), - [anon_sym_symbol] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_property] = ACTIONS(3389), - [anon_sym_signal] = ACTIONS(3389), - [anon_sym_on] = ACTIONS(3389), - [anon_sym_required] = ACTIONS(3389), - [anon_sym_component] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_property] = ACTIONS(3301), + [anon_sym_signal] = ACTIONS(3301), + [anon_sym_on] = ACTIONS(3301), + [anon_sym_required] = ACTIONS(3301), + [anon_sym_component] = ACTIONS(3301), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [983] = { - [sym_comment] = STATE(983), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3395), - [sym_html_comment] = ACTIONS(5), - }, - [984] = { - [sym_declaration] = STATE(8007), - [sym_variable_declaration] = STATE(8195), - [sym_lexical_declaration] = STATE(8195), - [sym_class_declaration] = STATE(8195), - [sym_function_declaration] = STATE(8195), - [sym_generator_function_declaration] = STATE(8195), - [sym_comment] = STATE(984), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(8195), - [sym_ambient_declaration] = STATE(8195), - [sym_abstract_class_declaration] = STATE(8195), - [sym_module] = STATE(8195), - [sym_internal_module] = STATE(8045), - [sym_import_alias] = STATE(8195), - [sym_interface_declaration] = STATE(8195), - [sym_enum_declaration] = STATE(8195), - [sym_type_alias_declaration] = STATE(8195), - [aux_sym_export_statement_repeat1] = STATE(6284), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3149), - [anon_sym_import] = ACTIONS(3151), - [anon_sym_var] = ACTIONS(3153), - [anon_sym_let] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(126), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(126), - [anon_sym_LBRACK] = ACTIONS(126), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3165), - [anon_sym_EQ_GT] = ACTIONS(3355), - [anon_sym_QMARK_DOT] = ACTIONS(126), - [anon_sym_PLUS_EQ] = ACTIONS(2985), - [anon_sym_DASH_EQ] = ACTIONS(2985), - [anon_sym_STAR_EQ] = ACTIONS(2985), - [anon_sym_SLASH_EQ] = ACTIONS(2985), - [anon_sym_PERCENT_EQ] = ACTIONS(2985), - [anon_sym_CARET_EQ] = ACTIONS(2985), - [anon_sym_AMP_EQ] = ACTIONS(2985), - [anon_sym_PIPE_EQ] = ACTIONS(2985), - [anon_sym_GT_GT_EQ] = ACTIONS(2985), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), - [anon_sym_LT_LT_EQ] = ACTIONS(2985), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(28), - [anon_sym_LT_EQ] = ACTIONS(126), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(126), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(126), - [anon_sym_GT_EQ] = ACTIONS(126), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(126), - [anon_sym_PLUS_PLUS] = ACTIONS(126), - [anon_sym_DASH_DASH] = ACTIONS(126), - [aux_sym_comment_token1] = ACTIONS(2987), - [anon_sym_BQUOTE] = ACTIONS(126), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3297), - [anon_sym_abstract] = ACTIONS(3171), - [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3175), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, [985] = { - [sym__call_signature] = STATE(8312), + [sym__call_signature] = STATE(7943), [sym_comment] = STATE(985), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3309), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3361), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_from] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_from] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3309), + [anon_sym_of] = ACTIONS(3361), + [anon_sym_COLON] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1503), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3361), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -156267,7 +155931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -156280,73 +155944,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [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_property] = ACTIONS(3309), - [anon_sym_signal] = ACTIONS(3309), - [anon_sym_on] = ACTIONS(3309), - [anon_sym_required] = ACTIONS(3309), - [anon_sym_component] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3361), + [anon_sym_readonly] = ACTIONS(3361), + [anon_sym_get] = ACTIONS(3361), + [anon_sym_set] = ACTIONS(3361), + [anon_sym_declare] = ACTIONS(3361), + [anon_sym_public] = ACTIONS(3361), + [anon_sym_private] = ACTIONS(3361), + [anon_sym_protected] = ACTIONS(3361), + [anon_sym_override] = ACTIONS(3361), + [anon_sym_module] = ACTIONS(3361), + [anon_sym_any] = ACTIONS(3361), + [anon_sym_number] = ACTIONS(3361), + [anon_sym_boolean] = ACTIONS(3361), + [anon_sym_string] = ACTIONS(3361), + [anon_sym_symbol] = ACTIONS(3361), + [anon_sym_object] = ACTIONS(3361), + [anon_sym_property] = ACTIONS(3361), + [anon_sym_signal] = ACTIONS(3361), + [anon_sym_on] = ACTIONS(3361), + [anon_sym_required] = ACTIONS(3361), + [anon_sym_component] = ACTIONS(3361), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [986] = { - [sym__call_signature] = STATE(8312), + [sym_declaration] = STATE(1303), + [sym_variable_declaration] = STATE(1313), + [sym_lexical_declaration] = STATE(1313), + [sym_class_declaration] = STATE(1313), + [sym_function_declaration] = STATE(1313), + [sym_generator_function_declaration] = STATE(1313), [sym_comment] = STATE(986), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3309), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(1313), + [sym_ambient_declaration] = STATE(1313), + [sym_abstract_class_declaration] = STATE(1313), + [sym_module] = STATE(1313), + [sym_internal_module] = STATE(1309), + [sym_import_alias] = STATE(1313), + [sym_interface_declaration] = STATE(1313), + [sym_enum_declaration] = STATE(1313), + [sym_type_alias_declaration] = STATE(1313), + [aux_sym_export_statement_repeat1] = STATE(5953), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_from] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3077), + [anon_sym_import] = ACTIONS(3079), + [anon_sym_var] = ACTIONS(3081), + [anon_sym_let] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3085), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(126), + [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1451), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_DOT] = ACTIONS(126), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_function] = ACTIONS(3093), + [anon_sym_EQ_GT] = ACTIONS(3363), + [anon_sym_QMARK_DOT] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2985), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2985), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2985), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2985), [anon_sym_AMP_AMP] = ACTIONS(28), [anon_sym_PIPE_PIPE] = ACTIONS(28), [anon_sym_GT_GT] = ACTIONS(28), @@ -156360,72 +156037,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(126), [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(126), [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(126), + [anon_sym_GT_EQ] = ACTIONS(126), [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [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_property] = ACTIONS(3309), - [anon_sym_signal] = ACTIONS(3309), - [anon_sym_on] = ACTIONS(3309), - [anon_sym_required] = ACTIONS(3309), - [anon_sym_component] = ACTIONS(3309), - [anon_sym_satisfies] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(126), + [anon_sym_PLUS_PLUS] = ACTIONS(126), + [anon_sym_DASH_DASH] = ACTIONS(126), + [aux_sym_comment_token1] = ACTIONS(2987), + [anon_sym_BQUOTE] = ACTIONS(126), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_declare] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3337), + [anon_sym_abstract] = ACTIONS(3099), + [anon_sym_satisfies] = ACTIONS(126), + [anon_sym_global] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3103), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [987] = { - [sym_declaration] = STATE(1569), - [sym_variable_declaration] = STATE(1587), - [sym_lexical_declaration] = STATE(1587), - [sym_class_declaration] = STATE(1587), - [sym_function_declaration] = STATE(1587), - [sym_generator_function_declaration] = STATE(1587), + [sym_declaration] = STATE(4057), + [sym_variable_declaration] = STATE(4079), + [sym_lexical_declaration] = STATE(4079), + [sym_class_declaration] = STATE(4079), + [sym_function_declaration] = STATE(4079), + [sym_generator_function_declaration] = STATE(4079), [sym_comment] = STATE(987), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(1587), - [sym_ambient_declaration] = STATE(1587), - [sym_abstract_class_declaration] = STATE(1587), - [sym_module] = STATE(1587), - [sym_internal_module] = STATE(1487), - [sym_import_alias] = STATE(1587), - [sym_interface_declaration] = STATE(1587), - [sym_enum_declaration] = STATE(1587), - [sym_type_alias_declaration] = STATE(1587), - [aux_sym_export_statement_repeat1] = STATE(6050), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(4079), + [sym_ambient_declaration] = STATE(4079), + [sym_abstract_class_declaration] = STATE(4079), + [sym_module] = STATE(4079), + [sym_internal_module] = STATE(4064), + [sym_import_alias] = STATE(4079), + [sym_interface_declaration] = STATE(4079), + [sym_enum_declaration] = STATE(4079), + [sym_type_alias_declaration] = STATE(4079), + [aux_sym_export_statement_repeat1] = STATE(5769), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3329), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3187), - [anon_sym_import] = ACTIONS(3189), - [anon_sym_var] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3195), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3193), + [anon_sym_var] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3199), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), @@ -156433,10 +156097,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3199), - [anon_sym_async] = ACTIONS(3201), - [anon_sym_function] = ACTIONS(3203), - [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_async] = ACTIONS(3205), + [anon_sym_function] = ACTIONS(3207), + [anon_sym_EQ_GT] = ACTIONS(3363), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), [anon_sym_DASH_EQ] = ACTIONS(2985), @@ -156480,45 +156144,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3205), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_abstract] = ACTIONS(3209), + [anon_sym_declare] = ACTIONS(3209), + [anon_sym_module] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3213), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3213), + [anon_sym_global] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3217), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [988] = { - [sym_declaration] = STATE(4140), - [sym_variable_declaration] = STATE(4080), - [sym_lexical_declaration] = STATE(4080), - [sym_class_declaration] = STATE(4080), - [sym_function_declaration] = STATE(4080), - [sym_generator_function_declaration] = STATE(4080), + [sym_declaration] = STATE(5840), + [sym_variable_declaration] = STATE(5802), + [sym_lexical_declaration] = STATE(5802), + [sym_class_declaration] = STATE(5802), + [sym_function_declaration] = STATE(5802), + [sym_generator_function_declaration] = STATE(5802), [sym_comment] = STATE(988), - [sym_decorator] = STATE(6589), - [sym_function_signature] = STATE(4080), - [sym_ambient_declaration] = STATE(4080), - [sym_abstract_class_declaration] = STATE(4080), - [sym_module] = STATE(4080), - [sym_internal_module] = STATE(4134), - [sym_import_alias] = STATE(4080), - [sym_interface_declaration] = STATE(4080), - [sym_enum_declaration] = STATE(4080), - [sym_type_alias_declaration] = STATE(4080), - [aux_sym_export_statement_repeat1] = STATE(6181), + [sym_decorator] = STATE(6120), + [sym_function_signature] = STATE(5802), + [sym_ambient_declaration] = STATE(5802), + [sym_abstract_class_declaration] = STATE(5802), + [sym_module] = STATE(5802), + [sym_internal_module] = STATE(5528), + [sym_import_alias] = STATE(5802), + [sym_interface_declaration] = STATE(5802), + [sym_enum_declaration] = STATE(5802), + [sym_type_alias_declaration] = STATE(5802), + [aux_sym_export_statement_repeat1] = STATE(5856), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3367), [anon_sym_EQ] = ACTIONS(1461), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3061), - [anon_sym_import] = ACTIONS(3063), - [anon_sym_var] = ACTIONS(3065), - [anon_sym_let] = ACTIONS(3067), - [anon_sym_const] = ACTIONS(3069), + [anon_sym_namespace] = ACTIONS(3369), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3377), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(126), [anon_sym_in] = ACTIONS(28), @@ -156526,10 +156190,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(126), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(126), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_async] = ACTIONS(3075), - [anon_sym_function] = ACTIONS(3077), - [anon_sym_EQ_GT] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3381), + [anon_sym_function] = ACTIONS(3383), + [anon_sym_EQ_GT] = ACTIONS(3363), [anon_sym_QMARK_DOT] = ACTIONS(126), [anon_sym_PLUS_EQ] = ACTIONS(2985), [anon_sym_DASH_EQ] = ACTIONS(2985), @@ -156573,227 +156237,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2987), [anon_sym_BQUOTE] = ACTIONS(126), [anon_sym_AT] = ACTIONS(2989), - [anon_sym_declare] = ACTIONS(3079), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3083), + [anon_sym_declare] = ACTIONS(3385), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3389), [anon_sym_satisfies] = ACTIONS(126), - [anon_sym_global] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3087), + [anon_sym_global] = ACTIONS(3391), + [anon_sym_interface] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3395), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [989] = { + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(989), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_catch] = ACTIONS(2350), - [anon_sym_finally] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym_html_comment] = ACTIONS(5), - }, - [990] = { - [sym_comment] = STATE(990), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_finally] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3397), - [sym_html_comment] = ACTIONS(5), - }, - [991] = { - [sym__call_signature] = STATE(8566), - [sym_comment] = STATE(991), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3401), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1525), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_from] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3403), + [anon_sym_of] = ACTIONS(3057), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1571), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -156822,7 +156302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -156835,149 +156315,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_readonly] = ACTIONS(3401), - [anon_sym_get] = ACTIONS(3401), - [anon_sym_set] = ACTIONS(3401), - [anon_sym_declare] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_protected] = ACTIONS(3401), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_any] = ACTIONS(3401), - [anon_sym_number] = ACTIONS(3401), - [anon_sym_boolean] = ACTIONS(3401), - [anon_sym_string] = ACTIONS(3401), - [anon_sym_symbol] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_property] = ACTIONS(3401), - [anon_sym_signal] = ACTIONS(3401), - [anon_sym_on] = ACTIONS(3401), - [anon_sym_required] = ACTIONS(3401), - [anon_sym_component] = ACTIONS(3401), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, + [990] = { + [sym_comment] = STATE(990), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [991] = { + [sym_comment] = STATE(991), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3397), + [sym_html_comment] = ACTIONS(5), + }, [992] = { + [sym_catch_clause] = STATE(1183), + [sym_finally_clause] = STATE(1501), [sym_comment] = STATE(992), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_else] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_of] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_catch] = ACTIONS(3399), + [anon_sym_finally] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [anon_sym_module] = ACTIONS(3341), + [anon_sym_any] = ACTIONS(3341), + [anon_sym_number] = ACTIONS(3341), + [anon_sym_boolean] = ACTIONS(3341), + [anon_sym_string] = ACTIONS(3341), + [anon_sym_symbol] = ACTIONS(3341), + [anon_sym_object] = ACTIONS(3341), + [anon_sym_property] = ACTIONS(3341), + [anon_sym_signal] = ACTIONS(3341), + [anon_sym_on] = ACTIONS(3341), + [anon_sym_required] = ACTIONS(3341), + [anon_sym_component] = ACTIONS(3341), + [anon_sym_abstract] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), [sym_html_comment] = ACTIONS(5), }, [993] = { - [sym__call_signature] = STATE(8248), + [sym__call_signature] = STATE(8246), [sym_comment] = STATE(993), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3403), + [anon_sym_export] = ACTIONS(3405), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1519), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3405), + [anon_sym_from] = ACTIONS(3405), + [anon_sym_let] = ACTIONS(3405), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), + [anon_sym_of] = ACTIONS(3407), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1519), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3405), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -157006,7 +156670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -157019,57 +156683,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_protected] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_module] = ACTIONS(3405), + [anon_sym_any] = ACTIONS(3405), + [anon_sym_number] = ACTIONS(3405), + [anon_sym_boolean] = ACTIONS(3405), + [anon_sym_string] = ACTIONS(3405), + [anon_sym_symbol] = ACTIONS(3405), + [anon_sym_object] = ACTIONS(3405), + [anon_sym_property] = ACTIONS(3405), + [anon_sym_signal] = ACTIONS(3405), + [anon_sym_on] = ACTIONS(3405), + [anon_sym_required] = ACTIONS(3405), + [anon_sym_component] = ACTIONS(3405), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [994] = { - [sym__call_signature] = STATE(8248), + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(994), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1517), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1591), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), + [anon_sym_of] = ACTIONS(3057), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -157098,7 +156762,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -157111,57 +156775,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [995] = { - [sym__call_signature] = STATE(8248), + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(995), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), + [anon_sym_of] = ACTIONS(3057), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -157190,7 +156854,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -157203,57 +156867,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [996] = { - [sym__call_signature] = STATE(8248), + [sym_finally_clause] = STATE(1188), [sym_comment] = STATE(996), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_identifier] = ACTIONS(3410), + [anon_sym_export] = ACTIONS(3410), + [anon_sym_default] = ACTIONS(3410), + [anon_sym_type] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_typeof] = ACTIONS(3410), + [anon_sym_import] = ACTIONS(3410), + [anon_sym_from] = ACTIONS(3410), + [anon_sym_with] = ACTIONS(3410), + [anon_sym_var] = ACTIONS(3410), + [anon_sym_let] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_else] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_await] = ACTIONS(3410), + [anon_sym_of] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_debugger] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_case] = ACTIONS(3410), + [anon_sym_finally] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LTtemplate_GT] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_async] = ACTIONS(3410), + [anon_sym_function] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_SLASH] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_void] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3410), + [sym_number] = ACTIONS(3410), + [sym_private_property_identifier] = ACTIONS(3410), + [sym_this] = ACTIONS(3410), + [sym_super] = ACTIONS(3410), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [sym_null] = ACTIONS(3410), + [sym_undefined] = ACTIONS(3410), + [anon_sym_AT] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_readonly] = ACTIONS(3410), + [anon_sym_get] = ACTIONS(3410), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_declare] = ACTIONS(3410), + [anon_sym_public] = ACTIONS(3410), + [anon_sym_private] = ACTIONS(3410), + [anon_sym_protected] = ACTIONS(3410), + [anon_sym_override] = ACTIONS(3410), + [anon_sym_module] = ACTIONS(3410), + [anon_sym_any] = ACTIONS(3410), + [anon_sym_number] = ACTIONS(3410), + [anon_sym_boolean] = ACTIONS(3410), + [anon_sym_string] = ACTIONS(3410), + [anon_sym_symbol] = ACTIONS(3410), + [anon_sym_object] = ACTIONS(3410), + [anon_sym_property] = ACTIONS(3410), + [anon_sym_signal] = ACTIONS(3410), + [anon_sym_on] = ACTIONS(3410), + [anon_sym_required] = ACTIONS(3410), + [anon_sym_component] = ACTIONS(3410), + [anon_sym_abstract] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [sym_html_comment] = ACTIONS(5), + }, + [997] = { + [sym__call_signature] = STATE(8228), + [sym_comment] = STATE(997), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1573), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1577), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), + [anon_sym_of] = ACTIONS(3057), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -157282,7 +157038,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -157295,333 +157051,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [997] = { - [sym_comment] = STATE(997), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3406), - [sym_html_comment] = ACTIONS(5), - }, [998] = { + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(998), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_finally] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3408), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1589), + [anon_sym_as] = ACTIONS(28), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_new] = ACTIONS(3057), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [999] = { [sym_comment] = STATE(999), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3412), [sym_html_comment] = ACTIONS(5), }, [1000] = { - [sym__call_signature] = STATE(8248), + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(1000), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1579), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), + [anon_sym_of] = ACTIONS(3057), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -157650,7 +157314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -157663,241 +157327,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [1001] = { - [sym__call_signature] = STATE(8248), [sym_comment] = STATE(1001), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(133), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_catch] = ACTIONS(2458), + [anon_sym_finally] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), - [anon_sym_satisfies] = ACTIONS(28), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), [sym_html_comment] = ACTIONS(5), }, [1002] = { - [sym_catch_clause] = STATE(1179), - [sym_finally_clause] = STATE(1553), + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(1002), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_from] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_of] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_catch] = ACTIONS(3412), - [anon_sym_finally] = ACTIONS(3414), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [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_property] = ACTIONS(3345), - [anon_sym_signal] = ACTIONS(3345), - [anon_sym_on] = ACTIONS(3345), - [anon_sym_required] = ACTIONS(3345), - [anon_sym_component] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), - [sym_html_comment] = ACTIONS(5), - }, - [1003] = { - [sym__call_signature] = STATE(8566), - [sym_comment] = STATE(1003), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3401), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(1583), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_from] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_of] = ACTIONS(3414), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(1571), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -157926,7 +157498,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -157939,57 +157511,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3401), - [anon_sym_readonly] = ACTIONS(3401), - [anon_sym_get] = ACTIONS(3401), - [anon_sym_set] = ACTIONS(3401), - [anon_sym_declare] = ACTIONS(3401), - [anon_sym_public] = ACTIONS(3401), - [anon_sym_private] = ACTIONS(3401), - [anon_sym_protected] = ACTIONS(3401), - [anon_sym_override] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_any] = ACTIONS(3401), - [anon_sym_number] = ACTIONS(3401), - [anon_sym_boolean] = ACTIONS(3401), - [anon_sym_string] = ACTIONS(3401), - [anon_sym_symbol] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_property] = ACTIONS(3401), - [anon_sym_signal] = ACTIONS(3401), - [anon_sym_on] = ACTIONS(3401), - [anon_sym_required] = ACTIONS(3401), - [anon_sym_component] = ACTIONS(3401), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, + [1003] = { + [sym_comment] = STATE(1003), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3416), + [sym_html_comment] = ACTIONS(5), + }, [1004] = { - [sym__call_signature] = STATE(8248), + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(1004), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1581), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_of] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(3057), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -158018,7 +157682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -158031,149 +157695,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [1005] = { - [sym_statement_block] = STATE(1096), [sym_comment] = STATE(1005), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3420), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_catch] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3418), [sym_html_comment] = ACTIONS(5), }, [1006] = { - [sym__call_signature] = STATE(8248), + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(1006), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1515), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1587), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), + [anon_sym_of] = ACTIONS(3057), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -158202,7 +157866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -158215,57 +157879,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [1007] = { - [sym__call_signature] = STATE(8248), + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(1007), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1507), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), + [anon_sym_of] = ACTIONS(3057), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -158294,7 +157958,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -158307,149 +157971,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, [1008] = { - [sym_statement_block] = STATE(1096), + [sym__call_signature] = STATE(8228), [sym_comment] = STATE(1008), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym_html_comment] = ACTIONS(5), - }, - [1009] = { - [sym__call_signature] = STATE(8248), - [sym_comment] = STATE(1009), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1513), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1585), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_from] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), + [anon_sym_of] = ACTIONS(3057), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(133), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -158478,7 +158050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -158491,57 +158063,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), + [anon_sym_property] = ACTIONS(3057), + [anon_sym_signal] = ACTIONS(3057), + [anon_sym_on] = ACTIONS(3057), + [anon_sym_required] = ACTIONS(3057), + [anon_sym_component] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, + [1009] = { + [sym_statement_block] = STATE(1200), + [sym_comment] = STATE(1009), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_html_comment] = ACTIONS(5), + }, [1010] = { - [sym__call_signature] = STATE(8248), + [sym_statement_block] = STATE(1200), [sym_comment] = STATE(1010), - [sym_formal_parameters] = STATE(5514), - [sym_type_parameters] = STATE(8189), - [sym_identifier] = ACTIONS(3089), - [anon_sym_export] = ACTIONS(3091), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_html_comment] = ACTIONS(5), + }, + [1011] = { + [sym__call_signature] = STATE(8246), + [sym_comment] = STATE(1011), + [sym_formal_parameters] = STATE(5340), + [sym_type_parameters] = STATE(7801), + [sym_identifier] = ACTIONS(3403), + [anon_sym_export] = ACTIONS(3405), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_EQ] = ACTIONS(1513), [anon_sym_as] = ACTIONS(28), - [anon_sym_namespace] = ACTIONS(3091), - [anon_sym_from] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3091), + [anon_sym_namespace] = ACTIONS(3405), + [anon_sym_from] = ACTIONS(3405), + [anon_sym_let] = ACTIONS(3405), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(3091), + [anon_sym_of] = ACTIONS(3407), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_async] = ACTIONS(3091), - [anon_sym_function] = ACTIONS(3096), - [anon_sym_EQ_GT] = ACTIONS(133), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1519), [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_new] = ACTIONS(3091), + [anon_sym_new] = ACTIONS(3405), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), [anon_sym_STAR_EQ] = ACTIONS(72), @@ -158570,7 +158326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3064), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -158583,307 +158339,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_static] = ACTIONS(3091), - [anon_sym_readonly] = ACTIONS(3091), - [anon_sym_get] = ACTIONS(3091), - [anon_sym_set] = ACTIONS(3091), - [anon_sym_declare] = ACTIONS(3091), - [anon_sym_public] = ACTIONS(3091), - [anon_sym_private] = ACTIONS(3091), - [anon_sym_protected] = ACTIONS(3091), - [anon_sym_override] = ACTIONS(3091), - [anon_sym_module] = ACTIONS(3091), - [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_property] = ACTIONS(3091), - [anon_sym_signal] = ACTIONS(3091), - [anon_sym_on] = ACTIONS(3091), - [anon_sym_required] = ACTIONS(3091), - [anon_sym_component] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_protected] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_module] = ACTIONS(3405), + [anon_sym_any] = ACTIONS(3405), + [anon_sym_number] = ACTIONS(3405), + [anon_sym_boolean] = ACTIONS(3405), + [anon_sym_string] = ACTIONS(3405), + [anon_sym_symbol] = ACTIONS(3405), + [anon_sym_object] = ACTIONS(3405), + [anon_sym_property] = ACTIONS(3405), + [anon_sym_signal] = ACTIONS(3405), + [anon_sym_on] = ACTIONS(3405), + [anon_sym_required] = ACTIONS(3405), + [anon_sym_component] = ACTIONS(3405), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [1011] = { - [sym_finally_clause] = STATE(1241), - [sym_comment] = STATE(1011), - [sym_identifier] = ACTIONS(3424), - [anon_sym_export] = ACTIONS(3424), - [anon_sym_default] = ACTIONS(3424), - [anon_sym_type] = ACTIONS(3424), - [anon_sym_namespace] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_RBRACE] = ACTIONS(3424), - [anon_sym_typeof] = ACTIONS(3424), - [anon_sym_import] = ACTIONS(3424), - [anon_sym_from] = ACTIONS(3424), - [anon_sym_with] = ACTIONS(3424), - [anon_sym_var] = ACTIONS(3424), - [anon_sym_let] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_else] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_switch] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym_await] = ACTIONS(3424), - [anon_sym_of] = ACTIONS(3424), - [anon_sym_while] = ACTIONS(3424), - [anon_sym_do] = ACTIONS(3424), - [anon_sym_try] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_debugger] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_throw] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_case] = ACTIONS(3424), - [anon_sym_finally] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_LTtemplate_GT] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3424), - [anon_sym_class] = ACTIONS(3424), - [anon_sym_async] = ACTIONS(3424), - [anon_sym_function] = ACTIONS(3424), - [anon_sym_new] = ACTIONS(3424), - [anon_sym_using] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_SLASH] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_void] = ACTIONS(3424), - [anon_sym_delete] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3424), - [sym_number] = ACTIONS(3424), - [sym_private_property_identifier] = ACTIONS(3424), - [sym_this] = ACTIONS(3424), - [sym_super] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_null] = ACTIONS(3424), - [sym_undefined] = ACTIONS(3424), - [anon_sym_AT] = ACTIONS(3424), - [anon_sym_static] = ACTIONS(3424), - [anon_sym_readonly] = ACTIONS(3424), - [anon_sym_get] = ACTIONS(3424), - [anon_sym_set] = ACTIONS(3424), - [anon_sym_declare] = ACTIONS(3424), - [anon_sym_public] = ACTIONS(3424), - [anon_sym_private] = ACTIONS(3424), - [anon_sym_protected] = ACTIONS(3424), - [anon_sym_override] = ACTIONS(3424), - [anon_sym_module] = ACTIONS(3424), - [anon_sym_any] = ACTIONS(3424), - [anon_sym_number] = ACTIONS(3424), - [anon_sym_boolean] = ACTIONS(3424), - [anon_sym_string] = ACTIONS(3424), - [anon_sym_symbol] = ACTIONS(3424), - [anon_sym_object] = ACTIONS(3424), - [anon_sym_property] = ACTIONS(3424), - [anon_sym_signal] = ACTIONS(3424), - [anon_sym_on] = ACTIONS(3424), - [anon_sym_required] = ACTIONS(3424), - [anon_sym_component] = ACTIONS(3424), - [anon_sym_abstract] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3424), - [anon_sym_enum] = ACTIONS(3424), - [sym_html_comment] = ACTIONS(5), - }, [1012] = { [sym_comment] = STATE(1012), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_default] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_typeof] = ACTIONS(2438), + [anon_sym_import] = ACTIONS(2438), + [anon_sym_from] = ACTIONS(2438), + [anon_sym_with] = ACTIONS(2438), + [anon_sym_var] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_debugger] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_case] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LTtemplate_GT] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_class] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2438), + [anon_sym_delete] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3426), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_private_property_identifier] = ACTIONS(2438), + [sym_this] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_true] = ACTIONS(2438), + [sym_false] = ACTIONS(2438), + [sym_null] = ACTIONS(2438), + [sym_undefined] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2438), + [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_property] = ACTIONS(2438), + [anon_sym_signal] = ACTIONS(2438), + [anon_sym_on] = ACTIONS(2438), + [anon_sym_required] = ACTIONS(2438), + [anon_sym_component] = ACTIONS(2438), + [anon_sym_abstract] = ACTIONS(2438), + [anon_sym_interface] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), + [sym__automatic_semicolon] = ACTIONS(2440), [sym_html_comment] = ACTIONS(5), }, [1013] = { [sym_comment] = STATE(1013), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2352), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), [sym_html_comment] = ACTIONS(5), }, [1014] = { + [sym_statement_block] = STATE(1200), [sym_comment] = STATE(1014), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_html_comment] = ACTIONS(5), + }, + [1015] = { + [sym_comment] = STATE(1015), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3426), + [sym_html_comment] = ACTIONS(5), + }, + [1016] = { + [sym_else_clause] = STATE(1184), + [sym_comment] = STATE(1016), [sym_identifier] = ACTIONS(3428), [anon_sym_export] = ACTIONS(3428), [anon_sym_default] = ACTIONS(3428), @@ -158899,7 +158746,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3428), [anon_sym_const] = ACTIONS(3428), [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_else] = ACTIONS(3428), + [anon_sym_else] = ACTIONS(3430), [anon_sym_if] = ACTIONS(3428), [anon_sym_switch] = ACTIONS(3428), [anon_sym_for] = ACTIONS(3428), @@ -158970,1008 +158817,825 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(3428), [anon_sym_interface] = ACTIONS(3428), [anon_sym_enum] = ACTIONS(3428), - [sym__automatic_semicolon] = ACTIONS(3430), - [sym_html_comment] = ACTIONS(5), - }, - [1015] = { - [sym_comment] = STATE(1015), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_LTtemplate_GT] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_number] = ACTIONS(2374), - [sym_private_property_identifier] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(2378), - [sym_html_comment] = ACTIONS(5), - }, - [1016] = { - [sym_statement_block] = STATE(1395), - [sym_comment] = STATE(1016), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), [sym_html_comment] = ACTIONS(5), }, [1017] = { - [sym_statement_block] = STATE(1395), + [sym_else_clause] = STATE(1351), [sym_comment] = STATE(1017), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3436), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), + [sym_identifier] = ACTIONS(3428), + [anon_sym_export] = ACTIONS(3428), + [anon_sym_default] = ACTIONS(3428), + [anon_sym_type] = ACTIONS(3428), + [anon_sym_namespace] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_typeof] = ACTIONS(3428), + [anon_sym_import] = ACTIONS(3428), + [anon_sym_from] = ACTIONS(3428), + [anon_sym_with] = ACTIONS(3428), + [anon_sym_var] = ACTIONS(3428), + [anon_sym_let] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3428), + [anon_sym_else] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_await] = ACTIONS(3428), + [anon_sym_of] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_do] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_debugger] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_throw] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_case] = ACTIONS(3428), + [anon_sym_yield] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_LTtemplate_GT] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(3428), + [anon_sym_SQUOTE] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_async] = ACTIONS(3428), + [anon_sym_function] = ACTIONS(3428), + [anon_sym_new] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_void] = ACTIONS(3428), + [anon_sym_delete] = ACTIONS(3428), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3428), + [sym_number] = ACTIONS(3428), + [sym_private_property_identifier] = ACTIONS(3428), + [sym_this] = ACTIONS(3428), + [sym_super] = ACTIONS(3428), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [sym_null] = ACTIONS(3428), + [sym_undefined] = ACTIONS(3428), + [anon_sym_AT] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_readonly] = ACTIONS(3428), + [anon_sym_get] = ACTIONS(3428), + [anon_sym_set] = ACTIONS(3428), + [anon_sym_declare] = ACTIONS(3428), + [anon_sym_public] = ACTIONS(3428), + [anon_sym_private] = ACTIONS(3428), + [anon_sym_protected] = ACTIONS(3428), + [anon_sym_override] = ACTIONS(3428), + [anon_sym_module] = ACTIONS(3428), + [anon_sym_any] = ACTIONS(3428), + [anon_sym_number] = ACTIONS(3428), + [anon_sym_boolean] = ACTIONS(3428), + [anon_sym_string] = ACTIONS(3428), + [anon_sym_symbol] = ACTIONS(3428), + [anon_sym_object] = ACTIONS(3428), + [anon_sym_property] = ACTIONS(3428), + [anon_sym_signal] = ACTIONS(3428), + [anon_sym_on] = ACTIONS(3428), + [anon_sym_required] = ACTIONS(3428), + [anon_sym_component] = ACTIONS(3428), + [anon_sym_abstract] = ACTIONS(3428), + [anon_sym_interface] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), [sym_html_comment] = ACTIONS(5), }, [1018] = { [sym_comment] = STATE(1018), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), + [sym_identifier] = ACTIONS(3434), + [anon_sym_export] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_typeof] = ACTIONS(3434), + [anon_sym_import] = ACTIONS(3434), + [anon_sym_from] = ACTIONS(3434), + [anon_sym_with] = ACTIONS(3434), + [anon_sym_var] = ACTIONS(3434), + [anon_sym_let] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_else] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_await] = ACTIONS(3434), + [anon_sym_of] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_debugger] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_yield] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_LTtemplate_GT] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_function] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_void] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3434), + [sym_number] = ACTIONS(3434), + [sym_private_property_identifier] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [sym_super] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_null] = ACTIONS(3434), + [sym_undefined] = ACTIONS(3434), + [anon_sym_AT] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_readonly] = ACTIONS(3434), + [anon_sym_get] = ACTIONS(3434), + [anon_sym_set] = ACTIONS(3434), + [anon_sym_declare] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_override] = ACTIONS(3434), + [anon_sym_module] = ACTIONS(3434), + [anon_sym_any] = ACTIONS(3434), + [anon_sym_number] = ACTIONS(3434), + [anon_sym_boolean] = ACTIONS(3434), + [anon_sym_string] = ACTIONS(3434), + [anon_sym_symbol] = ACTIONS(3434), + [anon_sym_object] = ACTIONS(3434), + [anon_sym_property] = ACTIONS(3434), + [anon_sym_signal] = ACTIONS(3434), + [anon_sym_on] = ACTIONS(3434), + [anon_sym_required] = ACTIONS(3434), + [anon_sym_component] = ACTIONS(3434), + [anon_sym_abstract] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), [sym__automatic_semicolon] = ACTIONS(3438), [sym_html_comment] = ACTIONS(5), }, [1019] = { [sym_comment] = STATE(1019), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2293), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_default] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_namespace] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_typeof] = ACTIONS(2386), + [anon_sym_import] = ACTIONS(2386), + [anon_sym_from] = ACTIONS(2386), + [anon_sym_with] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_else] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_switch] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2386), + [anon_sym_of] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_do] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_debugger] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_throw] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_case] = ACTIONS(2386), + [anon_sym_yield] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LTtemplate_GT] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_class] = ACTIONS(2386), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_function] = ACTIONS(2386), + [anon_sym_new] = ACTIONS(2386), + [anon_sym_using] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2386), + [anon_sym_delete] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_private_property_identifier] = ACTIONS(2386), + [sym_this] = ACTIONS(2386), + [sym_super] = ACTIONS(2386), + [sym_true] = ACTIONS(2386), + [sym_false] = ACTIONS(2386), + [sym_null] = ACTIONS(2386), + [sym_undefined] = ACTIONS(2386), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_readonly] = ACTIONS(2386), + [anon_sym_get] = ACTIONS(2386), + [anon_sym_set] = ACTIONS(2386), + [anon_sym_declare] = ACTIONS(2386), + [anon_sym_public] = ACTIONS(2386), + [anon_sym_private] = ACTIONS(2386), + [anon_sym_protected] = ACTIONS(2386), + [anon_sym_override] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_any] = ACTIONS(2386), + [anon_sym_number] = ACTIONS(2386), + [anon_sym_boolean] = ACTIONS(2386), + [anon_sym_string] = ACTIONS(2386), + [anon_sym_symbol] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(2386), + [anon_sym_property] = ACTIONS(2386), + [anon_sym_signal] = ACTIONS(2386), + [anon_sym_on] = ACTIONS(2386), + [anon_sym_required] = ACTIONS(2386), + [anon_sym_component] = ACTIONS(2386), + [anon_sym_abstract] = ACTIONS(2386), + [anon_sym_interface] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [sym__automatic_semicolon] = ACTIONS(2390), [sym_html_comment] = ACTIONS(5), }, [1020] = { [sym_comment] = STATE(1020), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3440), + [sym_identifier] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_import] = ACTIONS(2466), + [anon_sym_from] = ACTIONS(2466), + [anon_sym_with] = ACTIONS(2466), + [anon_sym_var] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_await] = ACTIONS(2466), + [anon_sym_of] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_debugger] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_throw] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_yield] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_LTtemplate_GT] = ACTIONS(2466), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_class] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2466), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_using] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_void] = ACTIONS(2466), + [anon_sym_delete] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2466), + [sym_number] = ACTIONS(2466), + [sym_private_property_identifier] = ACTIONS(2466), + [sym_this] = ACTIONS(2466), + [sym_super] = ACTIONS(2466), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [sym_null] = ACTIONS(2466), + [sym_undefined] = ACTIONS(2466), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), + [anon_sym_property] = ACTIONS(2466), + [anon_sym_signal] = ACTIONS(2466), + [anon_sym_on] = ACTIONS(2466), + [anon_sym_required] = ACTIONS(2466), + [anon_sym_component] = ACTIONS(2466), + [anon_sym_abstract] = ACTIONS(2466), + [anon_sym_interface] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), [sym_html_comment] = ACTIONS(5), }, [1021] = { [sym_comment] = STATE(1021), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), [sym_html_comment] = ACTIONS(5), }, [1022] = { [sym_comment] = STATE(1022), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_finally] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), + [sym_identifier] = ACTIONS(3440), + [anon_sym_export] = ACTIONS(3440), + [anon_sym_default] = ACTIONS(3440), + [anon_sym_type] = ACTIONS(3440), + [anon_sym_namespace] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_typeof] = ACTIONS(3440), + [anon_sym_import] = ACTIONS(3440), + [anon_sym_from] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3440), + [anon_sym_var] = ACTIONS(3440), + [anon_sym_let] = ACTIONS(3440), + [anon_sym_const] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_else] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_switch] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_await] = ACTIONS(3440), + [anon_sym_of] = ACTIONS(3440), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(3440), + [anon_sym_try] = ACTIONS(3440), + [anon_sym_break] = ACTIONS(3440), + [anon_sym_continue] = ACTIONS(3440), + [anon_sym_debugger] = ACTIONS(3440), + [anon_sym_return] = ACTIONS(3440), + [anon_sym_throw] = ACTIONS(3440), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_case] = ACTIONS(3440), + [anon_sym_finally] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_LTtemplate_GT] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [anon_sym_class] = ACTIONS(3440), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3440), + [anon_sym_using] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_SLASH] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_void] = ACTIONS(3440), + [anon_sym_delete] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3440), + [sym_number] = ACTIONS(3440), + [sym_private_property_identifier] = ACTIONS(3440), + [sym_this] = ACTIONS(3440), + [sym_super] = ACTIONS(3440), + [sym_true] = ACTIONS(3440), + [sym_false] = ACTIONS(3440), + [sym_null] = ACTIONS(3440), + [sym_undefined] = ACTIONS(3440), + [anon_sym_AT] = ACTIONS(3440), + [anon_sym_static] = ACTIONS(3440), + [anon_sym_readonly] = ACTIONS(3440), + [anon_sym_get] = ACTIONS(3440), + [anon_sym_set] = ACTIONS(3440), + [anon_sym_declare] = ACTIONS(3440), + [anon_sym_public] = ACTIONS(3440), + [anon_sym_private] = ACTIONS(3440), + [anon_sym_protected] = ACTIONS(3440), + [anon_sym_override] = ACTIONS(3440), + [anon_sym_module] = ACTIONS(3440), + [anon_sym_any] = ACTIONS(3440), + [anon_sym_number] = ACTIONS(3440), + [anon_sym_boolean] = ACTIONS(3440), + [anon_sym_string] = ACTIONS(3440), + [anon_sym_symbol] = ACTIONS(3440), + [anon_sym_object] = ACTIONS(3440), + [anon_sym_property] = ACTIONS(3440), + [anon_sym_signal] = ACTIONS(3440), + [anon_sym_on] = ACTIONS(3440), + [anon_sym_required] = ACTIONS(3440), + [anon_sym_component] = ACTIONS(3440), + [anon_sym_abstract] = ACTIONS(3440), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), [sym_html_comment] = ACTIONS(5), }, [1023] = { [sym_comment] = STATE(1023), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_finally] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3442), + [sym_identifier] = ACTIONS(3442), + [anon_sym_export] = ACTIONS(3442), + [anon_sym_default] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_RBRACE] = ACTIONS(3442), + [anon_sym_typeof] = ACTIONS(3442), + [anon_sym_import] = ACTIONS(3442), + [anon_sym_from] = ACTIONS(3442), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_var] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_else] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_await] = ACTIONS(3442), + [anon_sym_of] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_debugger] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_SEMI] = ACTIONS(3442), + [anon_sym_case] = ACTIONS(3442), + [anon_sym_finally] = ACTIONS(3442), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LTtemplate_GT] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_SQUOTE] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_async] = ACTIONS(3442), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_SLASH] = ACTIONS(3442), + [anon_sym_LT] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_void] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3442), + [sym_number] = ACTIONS(3442), + [sym_private_property_identifier] = ACTIONS(3442), + [sym_this] = ACTIONS(3442), + [sym_super] = ACTIONS(3442), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [sym_null] = ACTIONS(3442), + [sym_undefined] = ACTIONS(3442), + [anon_sym_AT] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_readonly] = ACTIONS(3442), + [anon_sym_get] = ACTIONS(3442), + [anon_sym_set] = ACTIONS(3442), + [anon_sym_declare] = ACTIONS(3442), + [anon_sym_public] = ACTIONS(3442), + [anon_sym_private] = ACTIONS(3442), + [anon_sym_protected] = ACTIONS(3442), + [anon_sym_override] = ACTIONS(3442), + [anon_sym_module] = ACTIONS(3442), + [anon_sym_any] = ACTIONS(3442), + [anon_sym_number] = ACTIONS(3442), + [anon_sym_boolean] = ACTIONS(3442), + [anon_sym_string] = ACTIONS(3442), + [anon_sym_symbol] = ACTIONS(3442), + [anon_sym_object] = ACTIONS(3442), + [anon_sym_property] = ACTIONS(3442), + [anon_sym_signal] = ACTIONS(3442), + [anon_sym_on] = ACTIONS(3442), + [anon_sym_required] = ACTIONS(3442), + [anon_sym_component] = ACTIONS(3442), + [anon_sym_abstract] = ACTIONS(3442), + [anon_sym_interface] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), [sym_html_comment] = ACTIONS(5), }, [1024] = { - [sym_statement_block] = STATE(1096), [sym_comment] = STATE(1024), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), + [sym_identifier] = ACTIONS(3444), + [anon_sym_export] = ACTIONS(3444), + [anon_sym_default] = ACTIONS(3444), + [anon_sym_type] = ACTIONS(3444), + [anon_sym_namespace] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_typeof] = ACTIONS(3444), + [anon_sym_import] = ACTIONS(3444), + [anon_sym_from] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3444), + [anon_sym_var] = ACTIONS(3444), + [anon_sym_let] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_else] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3444), + [anon_sym_await] = ACTIONS(3444), + [anon_sym_of] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_debugger] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_case] = ACTIONS(3444), + [anon_sym_finally] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_LTtemplate_GT] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_async] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_SLASH] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_void] = ACTIONS(3444), + [anon_sym_delete] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3444), + [sym_number] = ACTIONS(3444), + [sym_private_property_identifier] = ACTIONS(3444), + [sym_this] = ACTIONS(3444), + [sym_super] = ACTIONS(3444), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [sym_null] = ACTIONS(3444), + [sym_undefined] = ACTIONS(3444), + [anon_sym_AT] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_readonly] = ACTIONS(3444), + [anon_sym_get] = ACTIONS(3444), + [anon_sym_set] = ACTIONS(3444), + [anon_sym_declare] = ACTIONS(3444), + [anon_sym_public] = ACTIONS(3444), + [anon_sym_private] = ACTIONS(3444), + [anon_sym_protected] = ACTIONS(3444), + [anon_sym_override] = ACTIONS(3444), + [anon_sym_module] = ACTIONS(3444), + [anon_sym_any] = ACTIONS(3444), + [anon_sym_number] = ACTIONS(3444), + [anon_sym_boolean] = ACTIONS(3444), + [anon_sym_string] = ACTIONS(3444), + [anon_sym_symbol] = ACTIONS(3444), + [anon_sym_object] = ACTIONS(3444), + [anon_sym_property] = ACTIONS(3444), + [anon_sym_signal] = ACTIONS(3444), + [anon_sym_on] = ACTIONS(3444), + [anon_sym_required] = ACTIONS(3444), + [anon_sym_component] = ACTIONS(3444), + [anon_sym_abstract] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), [sym_html_comment] = ACTIONS(5), }, [1025] = { [sym_comment] = STATE(1025), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_typeof] = ACTIONS(2478), - [anon_sym_import] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_with] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_await] = ACTIONS(2478), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LTtemplate_GT] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2478), - [sym_number] = ACTIONS(2478), - [sym_private_property_identifier] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_undefined] = ACTIONS(2478), - [anon_sym_AT] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_object] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_interface] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(2482), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_typeof] = ACTIONS(2442), + [anon_sym_import] = ACTIONS(2442), + [anon_sym_from] = ACTIONS(2442), + [anon_sym_with] = ACTIONS(2442), + [anon_sym_var] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_switch] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_await] = ACTIONS(2442), + [anon_sym_of] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_debugger] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_throw] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_case] = ACTIONS(2442), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LTtemplate_GT] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_class] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_using] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_void] = ACTIONS(2442), + [anon_sym_delete] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_number] = ACTIONS(2442), + [sym_private_property_identifier] = ACTIONS(2442), + [sym_this] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_true] = ACTIONS(2442), + [sym_false] = ACTIONS(2442), + [sym_null] = ACTIONS(2442), + [sym_undefined] = ACTIONS(2442), + [anon_sym_AT] = ACTIONS(2442), + [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_property] = ACTIONS(2442), + [anon_sym_signal] = ACTIONS(2442), + [anon_sym_on] = ACTIONS(2442), + [anon_sym_required] = ACTIONS(2442), + [anon_sym_component] = ACTIONS(2442), + [anon_sym_abstract] = ACTIONS(2442), + [anon_sym_interface] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), + [sym__automatic_semicolon] = ACTIONS(2446), [sym_html_comment] = ACTIONS(5), }, [1026] = { @@ -160067,6 +159731,552 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1027] = { [sym_comment] = STATE(1027), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2422), + [sym_html_comment] = ACTIONS(5), + }, + [1028] = { + [sym_comment] = STATE(1028), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2400), + [sym_html_comment] = ACTIONS(5), + }, + [1029] = { + [sym_comment] = STATE(1029), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_case] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2336), + [sym_html_comment] = ACTIONS(5), + }, + [1030] = { + [sym_comment] = STATE(1030), + [sym_identifier] = ACTIONS(2358), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_default] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_namespace] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_typeof] = ACTIONS(2358), + [anon_sym_import] = ACTIONS(2358), + [anon_sym_from] = ACTIONS(2358), + [anon_sym_with] = ACTIONS(2358), + [anon_sym_var] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_switch] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2358), + [anon_sym_of] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_debugger] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_throw] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_case] = ACTIONS(2358), + [anon_sym_yield] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LTtemplate_GT] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2358), + [anon_sym_new] = ACTIONS(2358), + [anon_sym_using] = ACTIONS(2358), + [anon_sym_PLUS] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2358), + [anon_sym_delete] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_private_property_identifier] = ACTIONS(2358), + [sym_this] = ACTIONS(2358), + [sym_super] = ACTIONS(2358), + [sym_true] = ACTIONS(2358), + [sym_false] = ACTIONS(2358), + [sym_null] = ACTIONS(2358), + [sym_undefined] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_readonly] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), + [anon_sym_declare] = ACTIONS(2358), + [anon_sym_public] = ACTIONS(2358), + [anon_sym_private] = ACTIONS(2358), + [anon_sym_protected] = ACTIONS(2358), + [anon_sym_override] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_any] = ACTIONS(2358), + [anon_sym_number] = ACTIONS(2358), + [anon_sym_boolean] = ACTIONS(2358), + [anon_sym_string] = ACTIONS(2358), + [anon_sym_symbol] = ACTIONS(2358), + [anon_sym_object] = ACTIONS(2358), + [anon_sym_property] = ACTIONS(2358), + [anon_sym_signal] = ACTIONS(2358), + [anon_sym_on] = ACTIONS(2358), + [anon_sym_required] = ACTIONS(2358), + [anon_sym_component] = ACTIONS(2358), + [anon_sym_abstract] = ACTIONS(2358), + [anon_sym_interface] = ACTIONS(2358), + [anon_sym_enum] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(2362), + [sym_html_comment] = ACTIONS(5), + }, + [1031] = { + [sym_comment] = STATE(1031), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2380), + [sym_html_comment] = ACTIONS(5), + }, + [1032] = { + [sym_finally_clause] = STATE(1347), + [sym_comment] = STATE(1032), + [sym_identifier] = ACTIONS(3410), + [anon_sym_export] = ACTIONS(3410), + [anon_sym_default] = ACTIONS(3410), + [anon_sym_type] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_typeof] = ACTIONS(3410), + [anon_sym_import] = ACTIONS(3410), + [anon_sym_from] = ACTIONS(3410), + [anon_sym_with] = ACTIONS(3410), + [anon_sym_var] = ACTIONS(3410), + [anon_sym_let] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_await] = ACTIONS(3410), + [anon_sym_of] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_debugger] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_case] = ACTIONS(3410), + [anon_sym_finally] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LTtemplate_GT] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_async] = ACTIONS(3410), + [anon_sym_function] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_SLASH] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_void] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3410), + [sym_number] = ACTIONS(3410), + [sym_private_property_identifier] = ACTIONS(3410), + [sym_this] = ACTIONS(3410), + [sym_super] = ACTIONS(3410), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [sym_null] = ACTIONS(3410), + [sym_undefined] = ACTIONS(3410), + [anon_sym_AT] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_readonly] = ACTIONS(3410), + [anon_sym_get] = ACTIONS(3410), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_declare] = ACTIONS(3410), + [anon_sym_public] = ACTIONS(3410), + [anon_sym_private] = ACTIONS(3410), + [anon_sym_protected] = ACTIONS(3410), + [anon_sym_override] = ACTIONS(3410), + [anon_sym_module] = ACTIONS(3410), + [anon_sym_any] = ACTIONS(3410), + [anon_sym_number] = ACTIONS(3410), + [anon_sym_boolean] = ACTIONS(3410), + [anon_sym_string] = ACTIONS(3410), + [anon_sym_symbol] = ACTIONS(3410), + [anon_sym_object] = ACTIONS(3410), + [anon_sym_property] = ACTIONS(3410), + [anon_sym_signal] = ACTIONS(3410), + [anon_sym_on] = ACTIONS(3410), + [anon_sym_required] = ACTIONS(3410), + [anon_sym_component] = ACTIONS(3410), + [anon_sym_abstract] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [sym_html_comment] = ACTIONS(5), + }, + [1033] = { + [sym_comment] = STATE(1033), [sym_identifier] = ACTIONS(2410), [anon_sym_export] = ACTIONS(2410), [anon_sym_default] = ACTIONS(2410), @@ -160102,7 +160312,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2410), [anon_sym_LBRACK] = ACTIONS(2410), [anon_sym_LTtemplate_GT] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2410), [anon_sym_DQUOTE] = ACTIONS(2410), [anon_sym_SQUOTE] = ACTIONS(2410), [anon_sym_class] = ACTIONS(2410), @@ -160154,101 +160363,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2410), [anon_sym_interface] = ACTIONS(2410), [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2414), [sym_html_comment] = ACTIONS(5), }, - [1028] = { - [sym_comment] = STATE(1028), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_default] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_typeof] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_with] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_await] = ACTIONS(2362), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_debugger] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_case] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_LTtemplate_GT] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2362), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_void] = ACTIONS(2362), - [anon_sym_delete] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2362), - [sym_number] = ACTIONS(2362), - [sym_private_property_identifier] = ACTIONS(2362), - [sym_this] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_true] = ACTIONS(2362), - [sym_false] = ACTIONS(2362), - [sym_null] = ACTIONS(2362), - [sym_undefined] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - [sym__automatic_semicolon] = ACTIONS(2366), - [sym_html_comment] = ACTIONS(5), - }, - [1029] = { - [sym_comment] = STATE(1029), + [1034] = { + [sym_comment] = STATE(1034), [sym_identifier] = ACTIONS(2370), [anon_sym_export] = ACTIONS(2370), [anon_sym_default] = ACTIONS(2370), @@ -160264,7 +160383,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2370), [anon_sym_const] = ACTIONS(2370), [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_else] = ACTIONS(2370), [anon_sym_if] = ACTIONS(2370), [anon_sym_switch] = ACTIONS(2370), [anon_sym_for] = ACTIONS(2370), @@ -160281,10 +160399,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2370), [anon_sym_SEMI] = ACTIONS(2370), [anon_sym_case] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), [anon_sym_yield] = ACTIONS(2370), [anon_sym_LBRACK] = ACTIONS(2370), [anon_sym_LTtemplate_GT] = ACTIONS(2370), - [anon_sym_DOT] = ACTIONS(2370), [anon_sym_DQUOTE] = ACTIONS(2370), [anon_sym_SQUOTE] = ACTIONS(2370), [anon_sym_class] = ACTIONS(2370), @@ -160336,465 +160454,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2370), [anon_sym_interface] = ACTIONS(2370), [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3446), [sym_html_comment] = ACTIONS(5), }, - [1030] = { - [sym_else_clause] = STATE(1256), - [sym_comment] = STATE(1030), - [sym_identifier] = ACTIONS(3444), - [anon_sym_export] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_typeof] = ACTIONS(3444), - [anon_sym_import] = ACTIONS(3444), - [anon_sym_from] = ACTIONS(3444), - [anon_sym_with] = ACTIONS(3444), - [anon_sym_var] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_else] = ACTIONS(3446), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_await] = ACTIONS(3444), - [anon_sym_of] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_debugger] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_case] = ACTIONS(3444), - [anon_sym_yield] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_LTtemplate_GT] = ACTIONS(3444), - [anon_sym_DQUOTE] = ACTIONS(3444), - [anon_sym_SQUOTE] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_async] = ACTIONS(3444), - [anon_sym_function] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_void] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3444), - [sym_number] = ACTIONS(3444), - [sym_private_property_identifier] = ACTIONS(3444), - [sym_this] = ACTIONS(3444), - [sym_super] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_null] = ACTIONS(3444), - [sym_undefined] = ACTIONS(3444), - [anon_sym_AT] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_readonly] = ACTIONS(3444), - [anon_sym_get] = ACTIONS(3444), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_declare] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_protected] = ACTIONS(3444), - [anon_sym_override] = ACTIONS(3444), - [anon_sym_module] = ACTIONS(3444), - [anon_sym_any] = ACTIONS(3444), - [anon_sym_number] = ACTIONS(3444), - [anon_sym_boolean] = ACTIONS(3444), - [anon_sym_string] = ACTIONS(3444), - [anon_sym_symbol] = ACTIONS(3444), - [anon_sym_object] = ACTIONS(3444), - [anon_sym_property] = ACTIONS(3444), - [anon_sym_signal] = ACTIONS(3444), - [anon_sym_on] = ACTIONS(3444), - [anon_sym_required] = ACTIONS(3444), - [anon_sym_component] = ACTIONS(3444), - [anon_sym_abstract] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [sym_html_comment] = ACTIONS(5), - }, - [1031] = { - [sym_comment] = STATE(1031), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), + [1035] = { + [sym_comment] = STATE(1035), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), [sym__automatic_semicolon] = ACTIONS(3448), [sym_html_comment] = ACTIONS(5), }, - [1032] = { - [sym_comment] = STATE(1032), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1036] = { + [sym_comment] = STATE(1036), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_finally] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2336), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), [sym_html_comment] = ACTIONS(5), }, - [1033] = { - [sym_comment] = STATE(1033), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_finally] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3450), + [1037] = { + [sym_catch_clause] = STATE(1379), + [sym_finally_clause] = STATE(1658), + [sym_comment] = STATE(1037), + [sym_identifier] = ACTIONS(3341), + [anon_sym_export] = ACTIONS(3341), + [anon_sym_type] = ACTIONS(3341), + [anon_sym_namespace] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_typeof] = ACTIONS(3341), + [anon_sym_import] = ACTIONS(3341), + [anon_sym_from] = ACTIONS(3341), + [anon_sym_with] = ACTIONS(3341), + [anon_sym_var] = ACTIONS(3341), + [anon_sym_let] = ACTIONS(3341), + [anon_sym_const] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_if] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_await] = ACTIONS(3341), + [anon_sym_of] = ACTIONS(3341), + [anon_sym_while] = ACTIONS(3341), + [anon_sym_do] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3341), + [anon_sym_break] = ACTIONS(3341), + [anon_sym_continue] = ACTIONS(3341), + [anon_sym_debugger] = ACTIONS(3341), + [anon_sym_return] = ACTIONS(3341), + [anon_sym_throw] = ACTIONS(3341), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_catch] = ACTIONS(3450), + [anon_sym_finally] = ACTIONS(3452), + [anon_sym_yield] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LTtemplate_GT] = ACTIONS(3341), + [anon_sym_DQUOTE] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3341), + [anon_sym_class] = ACTIONS(3341), + [anon_sym_async] = ACTIONS(3341), + [anon_sym_function] = ACTIONS(3341), + [anon_sym_new] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3341), + [anon_sym_PLUS] = ACTIONS(3341), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_void] = ACTIONS(3341), + [anon_sym_delete] = ACTIONS(3341), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3341), + [sym_number] = ACTIONS(3341), + [sym_private_property_identifier] = ACTIONS(3341), + [sym_this] = ACTIONS(3341), + [sym_super] = ACTIONS(3341), + [sym_true] = ACTIONS(3341), + [sym_false] = ACTIONS(3341), + [sym_null] = ACTIONS(3341), + [sym_undefined] = ACTIONS(3341), + [anon_sym_AT] = ACTIONS(3341), + [anon_sym_static] = ACTIONS(3341), + [anon_sym_readonly] = ACTIONS(3341), + [anon_sym_get] = ACTIONS(3341), + [anon_sym_set] = ACTIONS(3341), + [anon_sym_declare] = ACTIONS(3341), + [anon_sym_public] = ACTIONS(3341), + [anon_sym_private] = ACTIONS(3341), + [anon_sym_protected] = ACTIONS(3341), + [anon_sym_override] = ACTIONS(3341), + [anon_sym_module] = ACTIONS(3341), + [anon_sym_any] = ACTIONS(3341), + [anon_sym_number] = ACTIONS(3341), + [anon_sym_boolean] = ACTIONS(3341), + [anon_sym_string] = ACTIONS(3341), + [anon_sym_symbol] = ACTIONS(3341), + [anon_sym_object] = ACTIONS(3341), + [anon_sym_property] = ACTIONS(3341), + [anon_sym_signal] = ACTIONS(3341), + [anon_sym_on] = ACTIONS(3341), + [anon_sym_required] = ACTIONS(3341), + [anon_sym_component] = ACTIONS(3341), + [anon_sym_abstract] = ACTIONS(3341), + [anon_sym_interface] = ACTIONS(3341), + [anon_sym_enum] = ACTIONS(3341), [sym_html_comment] = ACTIONS(5), }, - [1034] = { - [sym_comment] = STATE(1034), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3452), + [1038] = { + [sym_comment] = STATE(1038), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2344), [sym_html_comment] = ACTIONS(5), }, - [1035] = { - [sym_comment] = STATE(1035), + [1039] = { + [sym_comment] = STATE(1039), [sym_identifier] = ACTIONS(3454), [anon_sym_export] = ACTIONS(3454), [anon_sym_default] = ACTIONS(3454), @@ -160825,7 +160853,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(3454), [anon_sym_return] = ACTIONS(3454), [anon_sym_throw] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_SEMI] = ACTIONS(3454), [anon_sym_case] = ACTIONS(3454), [anon_sym_yield] = ACTIONS(3454), [anon_sym_LBRACK] = ACTIONS(3454), @@ -160881,591 +160909,500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(3454), [anon_sym_interface] = ACTIONS(3454), [anon_sym_enum] = ACTIONS(3454), - [sym__automatic_semicolon] = ACTIONS(3458), - [sym_html_comment] = ACTIONS(5), - }, - [1036] = { - [sym_finally_clause] = STATE(1452), - [sym_comment] = STATE(1036), - [sym_identifier] = ACTIONS(3424), - [anon_sym_export] = ACTIONS(3424), - [anon_sym_default] = ACTIONS(3424), - [anon_sym_type] = ACTIONS(3424), - [anon_sym_namespace] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_RBRACE] = ACTIONS(3424), - [anon_sym_typeof] = ACTIONS(3424), - [anon_sym_import] = ACTIONS(3424), - [anon_sym_from] = ACTIONS(3424), - [anon_sym_with] = ACTIONS(3424), - [anon_sym_var] = ACTIONS(3424), - [anon_sym_let] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_switch] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym_await] = ACTIONS(3424), - [anon_sym_of] = ACTIONS(3424), - [anon_sym_while] = ACTIONS(3424), - [anon_sym_do] = ACTIONS(3424), - [anon_sym_try] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_debugger] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_throw] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_case] = ACTIONS(3424), - [anon_sym_finally] = ACTIONS(3393), - [anon_sym_yield] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_LTtemplate_GT] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3424), - [anon_sym_class] = ACTIONS(3424), - [anon_sym_async] = ACTIONS(3424), - [anon_sym_function] = ACTIONS(3424), - [anon_sym_new] = ACTIONS(3424), - [anon_sym_using] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_SLASH] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_void] = ACTIONS(3424), - [anon_sym_delete] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3424), - [sym_number] = ACTIONS(3424), - [sym_private_property_identifier] = ACTIONS(3424), - [sym_this] = ACTIONS(3424), - [sym_super] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_null] = ACTIONS(3424), - [sym_undefined] = ACTIONS(3424), - [anon_sym_AT] = ACTIONS(3424), - [anon_sym_static] = ACTIONS(3424), - [anon_sym_readonly] = ACTIONS(3424), - [anon_sym_get] = ACTIONS(3424), - [anon_sym_set] = ACTIONS(3424), - [anon_sym_declare] = ACTIONS(3424), - [anon_sym_public] = ACTIONS(3424), - [anon_sym_private] = ACTIONS(3424), - [anon_sym_protected] = ACTIONS(3424), - [anon_sym_override] = ACTIONS(3424), - [anon_sym_module] = ACTIONS(3424), - [anon_sym_any] = ACTIONS(3424), - [anon_sym_number] = ACTIONS(3424), - [anon_sym_boolean] = ACTIONS(3424), - [anon_sym_string] = ACTIONS(3424), - [anon_sym_symbol] = ACTIONS(3424), - [anon_sym_object] = ACTIONS(3424), - [anon_sym_property] = ACTIONS(3424), - [anon_sym_signal] = ACTIONS(3424), - [anon_sym_on] = ACTIONS(3424), - [anon_sym_required] = ACTIONS(3424), - [anon_sym_component] = ACTIONS(3424), - [anon_sym_abstract] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3424), - [anon_sym_enum] = ACTIONS(3424), - [sym_html_comment] = ACTIONS(5), - }, - [1037] = { - [sym_comment] = STATE(1037), - [sym_identifier] = ACTIONS(3460), - [anon_sym_export] = ACTIONS(3460), - [anon_sym_default] = ACTIONS(3460), - [anon_sym_type] = ACTIONS(3460), - [anon_sym_namespace] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_RBRACE] = ACTIONS(3460), - [anon_sym_typeof] = ACTIONS(3460), - [anon_sym_import] = ACTIONS(3460), - [anon_sym_from] = ACTIONS(3460), - [anon_sym_with] = ACTIONS(3460), - [anon_sym_var] = ACTIONS(3460), - [anon_sym_let] = ACTIONS(3460), - [anon_sym_const] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_else] = ACTIONS(3460), - [anon_sym_if] = ACTIONS(3460), - [anon_sym_switch] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3460), - [anon_sym_await] = ACTIONS(3460), - [anon_sym_of] = ACTIONS(3460), - [anon_sym_while] = ACTIONS(3460), - [anon_sym_do] = ACTIONS(3460), - [anon_sym_try] = ACTIONS(3460), - [anon_sym_break] = ACTIONS(3460), - [anon_sym_continue] = ACTIONS(3460), - [anon_sym_debugger] = ACTIONS(3460), - [anon_sym_return] = ACTIONS(3460), - [anon_sym_throw] = ACTIONS(3460), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_case] = ACTIONS(3460), - [anon_sym_finally] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LTtemplate_GT] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [anon_sym_SQUOTE] = ACTIONS(3460), - [anon_sym_class] = ACTIONS(3460), - [anon_sym_async] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3460), - [anon_sym_using] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_SLASH] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_void] = ACTIONS(3460), - [anon_sym_delete] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3460), - [sym_number] = ACTIONS(3460), - [sym_private_property_identifier] = ACTIONS(3460), - [sym_this] = ACTIONS(3460), - [sym_super] = ACTIONS(3460), - [sym_true] = ACTIONS(3460), - [sym_false] = ACTIONS(3460), - [sym_null] = ACTIONS(3460), - [sym_undefined] = ACTIONS(3460), - [anon_sym_AT] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(3460), - [anon_sym_readonly] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(3460), - [anon_sym_set] = ACTIONS(3460), - [anon_sym_declare] = ACTIONS(3460), - [anon_sym_public] = ACTIONS(3460), - [anon_sym_private] = ACTIONS(3460), - [anon_sym_protected] = ACTIONS(3460), - [anon_sym_override] = ACTIONS(3460), - [anon_sym_module] = ACTIONS(3460), - [anon_sym_any] = ACTIONS(3460), - [anon_sym_number] = ACTIONS(3460), - [anon_sym_boolean] = ACTIONS(3460), - [anon_sym_string] = ACTIONS(3460), - [anon_sym_symbol] = ACTIONS(3460), - [anon_sym_object] = ACTIONS(3460), - [anon_sym_property] = ACTIONS(3460), - [anon_sym_signal] = ACTIONS(3460), - [anon_sym_on] = ACTIONS(3460), - [anon_sym_required] = ACTIONS(3460), - [anon_sym_component] = ACTIONS(3460), - [anon_sym_abstract] = ACTIONS(3460), - [anon_sym_interface] = ACTIONS(3460), - [anon_sym_enum] = ACTIONS(3460), - [sym_html_comment] = ACTIONS(5), - }, - [1038] = { - [sym_comment] = STATE(1038), - [sym_identifier] = ACTIONS(3462), - [anon_sym_export] = ACTIONS(3462), - [anon_sym_default] = ACTIONS(3462), - [anon_sym_type] = ACTIONS(3462), - [anon_sym_namespace] = ACTIONS(3462), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_RBRACE] = ACTIONS(3462), - [anon_sym_typeof] = ACTIONS(3462), - [anon_sym_import] = ACTIONS(3462), - [anon_sym_from] = ACTIONS(3462), - [anon_sym_with] = ACTIONS(3462), - [anon_sym_var] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_const] = ACTIONS(3462), - [anon_sym_BANG] = ACTIONS(3462), - [anon_sym_else] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_switch] = ACTIONS(3462), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_await] = ACTIONS(3462), - [anon_sym_of] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_break] = ACTIONS(3462), - [anon_sym_continue] = ACTIONS(3462), - [anon_sym_debugger] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_throw] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3462), - [anon_sym_case] = ACTIONS(3462), - [anon_sym_finally] = ACTIONS(3462), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LTtemplate_GT] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_SQUOTE] = ACTIONS(3462), - [anon_sym_class] = ACTIONS(3462), - [anon_sym_async] = ACTIONS(3462), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_using] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_SLASH] = ACTIONS(3462), - [anon_sym_LT] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_void] = ACTIONS(3462), - [anon_sym_delete] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3462), - [sym_number] = ACTIONS(3462), - [sym_private_property_identifier] = ACTIONS(3462), - [sym_this] = ACTIONS(3462), - [sym_super] = ACTIONS(3462), - [sym_true] = ACTIONS(3462), - [sym_false] = ACTIONS(3462), - [sym_null] = ACTIONS(3462), - [sym_undefined] = ACTIONS(3462), - [anon_sym_AT] = ACTIONS(3462), - [anon_sym_static] = ACTIONS(3462), - [anon_sym_readonly] = ACTIONS(3462), - [anon_sym_get] = ACTIONS(3462), - [anon_sym_set] = ACTIONS(3462), - [anon_sym_declare] = ACTIONS(3462), - [anon_sym_public] = ACTIONS(3462), - [anon_sym_private] = ACTIONS(3462), - [anon_sym_protected] = ACTIONS(3462), - [anon_sym_override] = ACTIONS(3462), - [anon_sym_module] = ACTIONS(3462), - [anon_sym_any] = ACTIONS(3462), - [anon_sym_number] = ACTIONS(3462), - [anon_sym_boolean] = ACTIONS(3462), - [anon_sym_string] = ACTIONS(3462), - [anon_sym_symbol] = ACTIONS(3462), - [anon_sym_object] = ACTIONS(3462), - [anon_sym_property] = ACTIONS(3462), - [anon_sym_signal] = ACTIONS(3462), - [anon_sym_on] = ACTIONS(3462), - [anon_sym_required] = ACTIONS(3462), - [anon_sym_component] = ACTIONS(3462), - [anon_sym_abstract] = ACTIONS(3462), - [anon_sym_interface] = ACTIONS(3462), - [anon_sym_enum] = ACTIONS(3462), - [sym_html_comment] = ACTIONS(5), - }, - [1039] = { - [sym_comment] = STATE(1039), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(3456), [sym_html_comment] = ACTIONS(5), }, [1040] = { + [sym_statement_block] = STATE(1361), [sym_comment] = STATE(1040), - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_default] = ACTIONS(2354), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_namespace] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_typeof] = ACTIONS(2354), - [anon_sym_import] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_with] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_else] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_await] = ACTIONS(2354), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_debugger] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_throw] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_case] = ACTIONS(2354), - [anon_sym_yield] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LTtemplate_GT] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_class] = ACTIONS(2354), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_new] = ACTIONS(2354), - [anon_sym_using] = ACTIONS(2354), - [anon_sym_PLUS] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_void] = ACTIONS(2354), - [anon_sym_delete] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2354), - [sym_number] = ACTIONS(2354), - [sym_private_property_identifier] = ACTIONS(2354), - [sym_this] = ACTIONS(2354), - [sym_super] = ACTIONS(2354), - [sym_true] = ACTIONS(2354), - [sym_false] = ACTIONS(2354), - [sym_null] = ACTIONS(2354), - [sym_undefined] = ACTIONS(2354), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_object] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2354), - [anon_sym_interface] = ACTIONS(2354), - [anon_sym_enum] = ACTIONS(2354), - [sym__automatic_semicolon] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3460), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1041] = { + [sym_statement_block] = STATE(1361), [sym_comment] = STATE(1041), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_case] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_private_property_identifier] = ACTIONS(2442), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3462), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1042] = { [sym_comment] = STATE(1042), - [sym_identifier] = ACTIONS(3464), - [anon_sym_export] = ACTIONS(3464), - [anon_sym_default] = ACTIONS(3464), - [anon_sym_type] = ACTIONS(3464), - [anon_sym_namespace] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_RBRACE] = ACTIONS(3464), - [anon_sym_typeof] = ACTIONS(3464), - [anon_sym_import] = ACTIONS(3464), - [anon_sym_from] = ACTIONS(3464), - [anon_sym_with] = ACTIONS(3464), - [anon_sym_var] = ACTIONS(3464), - [anon_sym_let] = ACTIONS(3464), - [anon_sym_const] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3464), - [anon_sym_else] = ACTIONS(3464), - [anon_sym_if] = ACTIONS(3464), - [anon_sym_switch] = ACTIONS(3464), - [anon_sym_for] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_await] = ACTIONS(3464), - [anon_sym_of] = ACTIONS(3464), - [anon_sym_while] = ACTIONS(3464), - [anon_sym_do] = ACTIONS(3464), - [anon_sym_try] = ACTIONS(3464), - [anon_sym_break] = ACTIONS(3464), - [anon_sym_continue] = ACTIONS(3464), - [anon_sym_debugger] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3464), - [anon_sym_throw] = ACTIONS(3464), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_case] = ACTIONS(3464), - [anon_sym_yield] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3464), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_default] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_typeof] = ACTIONS(2434), + [anon_sym_import] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_with] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_debugger] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_throw] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_case] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LTtemplate_GT] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_class] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2434), + [anon_sym_delete] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_private_property_identifier] = ACTIONS(2434), + [sym_this] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_true] = ACTIONS(2434), + [sym_false] = ACTIONS(2434), + [sym_null] = ACTIONS(2434), + [sym_undefined] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_abstract] = ACTIONS(2434), + [anon_sym_interface] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [sym__automatic_semicolon] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), + }, + [1043] = { + [sym_comment] = STATE(1043), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [1044] = { + [sym_comment] = STATE(1044), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_catch] = ACTIONS(2458), + [anon_sym_finally] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym_html_comment] = ACTIONS(5), + }, + [1045] = { + [sym_comment] = STATE(1045), + [sym_identifier] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_with] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_of] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_debugger] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), [anon_sym_LTtemplate_GT] = ACTIONS(3464), [anon_sym_DQUOTE] = ACTIONS(3464), [anon_sym_SQUOTE] = ACTIONS(3464), @@ -161521,827 +161458,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(3466), [sym_html_comment] = ACTIONS(5), }, - [1043] = { - [sym_comment] = STATE(1043), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2382), - [anon_sym_else] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_case] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_LTtemplate_GT] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2382), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_number] = ACTIONS(2382), - [sym_private_property_identifier] = ACTIONS(2382), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [sym__automatic_semicolon] = ACTIONS(2386), - [sym_html_comment] = ACTIONS(5), - }, - [1044] = { - [sym_comment] = STATE(1044), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym_html_comment] = ACTIONS(5), - }, - [1045] = { - [sym_comment] = STATE(1045), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_catch] = ACTIONS(2350), - [anon_sym_finally] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym_html_comment] = ACTIONS(5), - }, [1046] = { [sym_comment] = STATE(1046), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_typeof] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_from] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_await] = ACTIONS(2416), - [anon_sym_of] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_debugger] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_case] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LTtemplate_GT] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_using] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_void] = ACTIONS(2416), - [anon_sym_delete] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_number] = ACTIONS(2416), - [sym_private_property_identifier] = ACTIONS(2416), - [sym_this] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_true] = ACTIONS(2416), - [sym_false] = ACTIONS(2416), - [sym_null] = ACTIONS(2416), - [sym_undefined] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_property] = ACTIONS(2416), - [anon_sym_signal] = ACTIONS(2416), - [anon_sym_on] = ACTIONS(2416), - [anon_sym_required] = ACTIONS(2416), - [anon_sym_component] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [sym__automatic_semicolon] = ACTIONS(2420), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2352), [sym_html_comment] = ACTIONS(5), }, [1047] = { - [sym_catch_clause] = STATE(1275), - [sym_finally_clause] = STATE(1678), [sym_comment] = STATE(1047), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_from] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_of] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_catch] = ACTIONS(3468), - [anon_sym_finally] = ACTIONS(3470), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [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_property] = ACTIONS(3345), - [anon_sym_signal] = ACTIONS(3345), - [anon_sym_on] = ACTIONS(3345), - [anon_sym_required] = ACTIONS(3345), - [anon_sym_component] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1048] = { - [sym_else_clause] = STATE(1410), [sym_comment] = STATE(1048), - [sym_identifier] = ACTIONS(3444), - [anon_sym_export] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_typeof] = ACTIONS(3444), - [anon_sym_import] = ACTIONS(3444), - [anon_sym_from] = ACTIONS(3444), - [anon_sym_with] = ACTIONS(3444), - [anon_sym_var] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_else] = ACTIONS(3472), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_await] = ACTIONS(3444), - [anon_sym_of] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_debugger] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_case] = ACTIONS(3444), - [anon_sym_yield] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_LTtemplate_GT] = ACTIONS(3444), - [anon_sym_DQUOTE] = ACTIONS(3444), - [anon_sym_SQUOTE] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_async] = ACTIONS(3444), - [anon_sym_function] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_void] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3444), - [sym_number] = ACTIONS(3444), - [sym_private_property_identifier] = ACTIONS(3444), - [sym_this] = ACTIONS(3444), - [sym_super] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_null] = ACTIONS(3444), - [sym_undefined] = ACTIONS(3444), - [anon_sym_AT] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_readonly] = ACTIONS(3444), - [anon_sym_get] = ACTIONS(3444), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_declare] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_protected] = ACTIONS(3444), - [anon_sym_override] = ACTIONS(3444), - [anon_sym_module] = ACTIONS(3444), - [anon_sym_any] = ACTIONS(3444), - [anon_sym_number] = ACTIONS(3444), - [anon_sym_boolean] = ACTIONS(3444), - [anon_sym_string] = ACTIONS(3444), - [anon_sym_symbol] = ACTIONS(3444), - [anon_sym_object] = ACTIONS(3444), - [anon_sym_property] = ACTIONS(3444), - [anon_sym_signal] = ACTIONS(3444), - [anon_sym_on] = ACTIONS(3444), - [anon_sym_required] = ACTIONS(3444), - [anon_sym_component] = ACTIONS(3444), - [anon_sym_abstract] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3468), [sym_html_comment] = ACTIONS(5), }, [1049] = { [sym_comment] = STATE(1049), - [sym_identifier] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_default] = ACTIONS(2342), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_namespace] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_typeof] = ACTIONS(2342), - [anon_sym_import] = ACTIONS(2342), - [anon_sym_from] = ACTIONS(2342), - [anon_sym_with] = ACTIONS(2342), - [anon_sym_var] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_switch] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(2342), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_debugger] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_throw] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_case] = ACTIONS(2342), - [anon_sym_yield] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LTtemplate_GT] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), - [anon_sym_class] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_new] = ACTIONS(2342), - [anon_sym_using] = ACTIONS(2342), - [anon_sym_PLUS] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_void] = ACTIONS(2342), - [anon_sym_delete] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), - [sym_private_property_identifier] = ACTIONS(2342), - [sym_this] = ACTIONS(2342), - [sym_super] = ACTIONS(2342), - [sym_true] = ACTIONS(2342), - [sym_false] = ACTIONS(2342), - [sym_null] = ACTIONS(2342), - [sym_undefined] = ACTIONS(2342), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_readonly] = ACTIONS(2342), - [anon_sym_get] = ACTIONS(2342), - [anon_sym_set] = ACTIONS(2342), - [anon_sym_declare] = ACTIONS(2342), - [anon_sym_public] = ACTIONS(2342), - [anon_sym_private] = ACTIONS(2342), - [anon_sym_protected] = ACTIONS(2342), - [anon_sym_override] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_any] = ACTIONS(2342), - [anon_sym_number] = ACTIONS(2342), - [anon_sym_boolean] = ACTIONS(2342), - [anon_sym_string] = ACTIONS(2342), - [anon_sym_symbol] = ACTIONS(2342), - [anon_sym_object] = ACTIONS(2342), - [anon_sym_property] = ACTIONS(2342), - [anon_sym_signal] = ACTIONS(2342), - [anon_sym_on] = ACTIONS(2342), - [anon_sym_required] = ACTIONS(2342), - [anon_sym_component] = ACTIONS(2342), - [anon_sym_abstract] = ACTIONS(2342), - [anon_sym_interface] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(2346), - [sym_html_comment] = ACTIONS(5), - }, - [1050] = { - [sym_comment] = STATE(1050), - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_typeof] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_with] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_await] = ACTIONS(2394), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_debugger] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_throw] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_case] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LTtemplate_GT] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_using] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_void] = ACTIONS(2394), - [anon_sym_delete] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2394), - [sym_number] = ACTIONS(2394), - [sym_private_property_identifier] = ACTIONS(2394), - [sym_this] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_undefined] = ACTIONS(2394), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_abstract] = ACTIONS(2394), - [anon_sym_interface] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [sym__automatic_semicolon] = ACTIONS(2398), - [sym_html_comment] = ACTIONS(5), - }, - [1051] = { - [sym_comment] = STATE(1051), - [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(2450), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(2450), - [anon_sym_import] = ACTIONS(2450), - [anon_sym_from] = 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(2450), - [anon_sym_else] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(2450), - [anon_sym_of] = 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(2450), - [anon_sym_case] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LTtemplate_GT] = ACTIONS(2450), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), - [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(2450), - [anon_sym_void] = ACTIONS(2450), - [anon_sym_delete] = ACTIONS(2450), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_number] = ACTIONS(2450), - [sym_private_property_identifier] = ACTIONS(2450), - [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(2450), - [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_property] = ACTIONS(2450), - [anon_sym_signal] = ACTIONS(2450), - [anon_sym_on] = ACTIONS(2450), - [anon_sym_required] = ACTIONS(2450), - [anon_sym_component] = ACTIONS(2450), - [anon_sym_abstract] = ACTIONS(2450), - [anon_sym_interface] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [sym__automatic_semicolon] = ACTIONS(2454), - [sym_html_comment] = ACTIONS(5), - }, - [1052] = { - [sym_comment] = STATE(1052), [sym_identifier] = ACTIONS(2458), [anon_sym_export] = ACTIONS(2458), [anon_sym_default] = ACTIONS(2458), @@ -162428,643 +161819,1726 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2458), [anon_sym_interface] = ACTIONS(2458), [anon_sym_enum] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(2462), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [1050] = { + [sym_comment] = STATE(1050), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3470), + [sym_html_comment] = ACTIONS(5), + }, + [1051] = { + [sym_comment] = STATE(1051), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3472), + [sym_html_comment] = ACTIONS(5), + }, + [1052] = { + [sym_comment] = STATE(1052), + [sym_identifier] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_import] = ACTIONS(2474), + [anon_sym_from] = ACTIONS(2474), + [anon_sym_with] = ACTIONS(2474), + [anon_sym_var] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_await] = ACTIONS(2474), + [anon_sym_of] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_debugger] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_throw] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LTtemplate_GT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2474), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2474), + [anon_sym_using] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_SLASH] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2474), + [anon_sym_TILDE] = ACTIONS(2474), + [anon_sym_void] = ACTIONS(2474), + [anon_sym_delete] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2474), + [sym_number] = ACTIONS(2474), + [sym_private_property_identifier] = ACTIONS(2474), + [sym_this] = ACTIONS(2474), + [sym_super] = ACTIONS(2474), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [sym_null] = ACTIONS(2474), + [sym_undefined] = ACTIONS(2474), + [anon_sym_AT] = ACTIONS(2474), + [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_property] = ACTIONS(2474), + [anon_sym_signal] = ACTIONS(2474), + [anon_sym_on] = ACTIONS(2474), + [anon_sym_required] = ACTIONS(2474), + [anon_sym_component] = ACTIONS(2474), + [anon_sym_abstract] = ACTIONS(2474), + [anon_sym_interface] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [sym__automatic_semicolon] = ACTIONS(2478), [sym_html_comment] = ACTIONS(5), }, [1053] = { [sym_comment] = STATE(1053), - [sym_identifier] = ACTIONS(3474), - [anon_sym_export] = ACTIONS(3474), - [anon_sym_default] = ACTIONS(3474), - [anon_sym_type] = ACTIONS(3474), - [anon_sym_namespace] = ACTIONS(3474), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_RBRACE] = ACTIONS(3474), - [anon_sym_typeof] = ACTIONS(3474), - [anon_sym_import] = ACTIONS(3474), - [anon_sym_from] = ACTIONS(3474), - [anon_sym_with] = ACTIONS(3474), - [anon_sym_var] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_const] = ACTIONS(3474), - [anon_sym_BANG] = ACTIONS(3474), - [anon_sym_else] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_switch] = ACTIONS(3474), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_await] = ACTIONS(3474), - [anon_sym_of] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_break] = ACTIONS(3474), - [anon_sym_continue] = ACTIONS(3474), - [anon_sym_debugger] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_throw] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_case] = ACTIONS(3474), - [anon_sym_finally] = ACTIONS(3474), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LTtemplate_GT] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_SQUOTE] = ACTIONS(3474), - [anon_sym_class] = ACTIONS(3474), - [anon_sym_async] = ACTIONS(3474), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_using] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3474), - [anon_sym_LT] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_void] = ACTIONS(3474), - [anon_sym_delete] = ACTIONS(3474), - [anon_sym_PLUS_PLUS] = ACTIONS(3474), - [anon_sym_DASH_DASH] = ACTIONS(3474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3474), - [sym_number] = ACTIONS(3474), - [sym_private_property_identifier] = ACTIONS(3474), - [sym_this] = ACTIONS(3474), - [sym_super] = ACTIONS(3474), - [sym_true] = ACTIONS(3474), - [sym_false] = ACTIONS(3474), - [sym_null] = ACTIONS(3474), - [sym_undefined] = ACTIONS(3474), - [anon_sym_AT] = ACTIONS(3474), - [anon_sym_static] = ACTIONS(3474), - [anon_sym_readonly] = ACTIONS(3474), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3474), - [anon_sym_declare] = ACTIONS(3474), - [anon_sym_public] = ACTIONS(3474), - [anon_sym_private] = ACTIONS(3474), - [anon_sym_protected] = ACTIONS(3474), - [anon_sym_override] = ACTIONS(3474), - [anon_sym_module] = ACTIONS(3474), - [anon_sym_any] = ACTIONS(3474), - [anon_sym_number] = ACTIONS(3474), - [anon_sym_boolean] = ACTIONS(3474), - [anon_sym_string] = ACTIONS(3474), - [anon_sym_symbol] = ACTIONS(3474), - [anon_sym_object] = ACTIONS(3474), - [anon_sym_property] = ACTIONS(3474), - [anon_sym_signal] = ACTIONS(3474), - [anon_sym_on] = ACTIONS(3474), - [anon_sym_required] = ACTIONS(3474), - [anon_sym_component] = ACTIONS(3474), - [anon_sym_abstract] = ACTIONS(3474), - [anon_sym_interface] = ACTIONS(3474), - [anon_sym_enum] = ACTIONS(3474), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_catch] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3474), [sym_html_comment] = ACTIONS(5), }, [1054] = { [sym_comment] = STATE(1054), - [sym_identifier] = ACTIONS(2402), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_typeof] = ACTIONS(2402), - [anon_sym_import] = ACTIONS(2402), - [anon_sym_from] = ACTIONS(2402), - [anon_sym_with] = ACTIONS(2402), - [anon_sym_var] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_switch] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_of] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_debugger] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_throw] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_case] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LTtemplate_GT] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_class] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_new] = ACTIONS(2402), - [anon_sym_using] = ACTIONS(2402), - [anon_sym_PLUS] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_void] = ACTIONS(2402), - [anon_sym_delete] = ACTIONS(2402), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_number] = ACTIONS(2402), - [sym_private_property_identifier] = ACTIONS(2402), - [sym_this] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_true] = ACTIONS(2402), - [sym_false] = ACTIONS(2402), - [sym_null] = ACTIONS(2402), - [sym_undefined] = ACTIONS(2402), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_readonly] = ACTIONS(2402), - [anon_sym_get] = ACTIONS(2402), - [anon_sym_set] = ACTIONS(2402), - [anon_sym_declare] = ACTIONS(2402), - [anon_sym_public] = ACTIONS(2402), - [anon_sym_private] = ACTIONS(2402), - [anon_sym_protected] = ACTIONS(2402), - [anon_sym_override] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_any] = ACTIONS(2402), - [anon_sym_number] = ACTIONS(2402), - [anon_sym_boolean] = ACTIONS(2402), - [anon_sym_string] = ACTIONS(2402), - [anon_sym_symbol] = ACTIONS(2402), - [anon_sym_object] = ACTIONS(2402), - [anon_sym_property] = ACTIONS(2402), - [anon_sym_signal] = ACTIONS(2402), - [anon_sym_on] = ACTIONS(2402), - [anon_sym_required] = ACTIONS(2402), - [anon_sym_component] = ACTIONS(2402), - [anon_sym_abstract] = ACTIONS(2402), - [anon_sym_interface] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [sym__automatic_semicolon] = ACTIONS(2406), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), [sym_html_comment] = ACTIONS(5), }, [1055] = { [sym_comment] = STATE(1055), - [sym_identifier] = ACTIONS(3454), - [anon_sym_export] = ACTIONS(3454), - [anon_sym_default] = ACTIONS(3454), - [anon_sym_type] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_RBRACE] = ACTIONS(3454), - [anon_sym_typeof] = ACTIONS(3454), - [anon_sym_import] = ACTIONS(3454), - [anon_sym_from] = ACTIONS(3454), - [anon_sym_with] = ACTIONS(3454), - [anon_sym_var] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_BANG] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_await] = ACTIONS(3454), - [anon_sym_of] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_debugger] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), + [sym_identifier] = ACTIONS(3476), + [anon_sym_export] = ACTIONS(3476), + [anon_sym_default] = ACTIONS(3476), + [anon_sym_type] = ACTIONS(3476), + [anon_sym_namespace] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3476), + [anon_sym_import] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3476), + [anon_sym_with] = ACTIONS(3476), + [anon_sym_var] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_else] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3476), + [anon_sym_of] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_debugger] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_throw] = ACTIONS(3476), [anon_sym_SEMI] = ACTIONS(3476), - [anon_sym_case] = ACTIONS(3454), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LTtemplate_GT] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_SQUOTE] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_async] = ACTIONS(3454), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_SLASH] = ACTIONS(3454), - [anon_sym_LT] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_void] = ACTIONS(3454), - [anon_sym_delete] = ACTIONS(3454), - [anon_sym_PLUS_PLUS] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3454), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3454), - [sym_number] = ACTIONS(3454), - [sym_private_property_identifier] = ACTIONS(3454), - [sym_this] = ACTIONS(3454), - [sym_super] = ACTIONS(3454), - [sym_true] = ACTIONS(3454), - [sym_false] = ACTIONS(3454), - [sym_null] = ACTIONS(3454), - [sym_undefined] = ACTIONS(3454), - [anon_sym_AT] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_readonly] = ACTIONS(3454), - [anon_sym_get] = ACTIONS(3454), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_declare] = ACTIONS(3454), - [anon_sym_public] = ACTIONS(3454), - [anon_sym_private] = ACTIONS(3454), - [anon_sym_protected] = ACTIONS(3454), - [anon_sym_override] = ACTIONS(3454), - [anon_sym_module] = ACTIONS(3454), - [anon_sym_any] = ACTIONS(3454), - [anon_sym_number] = ACTIONS(3454), - [anon_sym_boolean] = ACTIONS(3454), - [anon_sym_string] = ACTIONS(3454), - [anon_sym_symbol] = ACTIONS(3454), - [anon_sym_object] = ACTIONS(3454), - [anon_sym_property] = ACTIONS(3454), - [anon_sym_signal] = ACTIONS(3454), - [anon_sym_on] = ACTIONS(3454), - [anon_sym_required] = ACTIONS(3454), - [anon_sym_component] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(3454), - [anon_sym_interface] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [sym__automatic_semicolon] = ACTIONS(3478), + [anon_sym_case] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LTtemplate_GT] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_function] = ACTIONS(3476), + [anon_sym_new] = ACTIONS(3476), + [anon_sym_using] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3476), + [anon_sym_delete] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_number] = ACTIONS(3476), + [sym_private_property_identifier] = ACTIONS(3476), + [sym_this] = ACTIONS(3476), + [sym_super] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_undefined] = ACTIONS(3476), + [anon_sym_AT] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_readonly] = ACTIONS(3476), + [anon_sym_get] = ACTIONS(3476), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_declare] = ACTIONS(3476), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_override] = ACTIONS(3476), + [anon_sym_module] = ACTIONS(3476), + [anon_sym_any] = ACTIONS(3476), + [anon_sym_number] = ACTIONS(3476), + [anon_sym_boolean] = ACTIONS(3476), + [anon_sym_string] = ACTIONS(3476), + [anon_sym_symbol] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(3476), + [anon_sym_property] = ACTIONS(3476), + [anon_sym_signal] = ACTIONS(3476), + [anon_sym_on] = ACTIONS(3476), + [anon_sym_required] = ACTIONS(3476), + [anon_sym_component] = ACTIONS(3476), + [anon_sym_abstract] = ACTIONS(3476), + [anon_sym_interface] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), [sym_html_comment] = ACTIONS(5), }, [1056] = { [sym_comment] = STATE(1056), - [sym_identifier] = ACTIONS(3480), - [anon_sym_export] = ACTIONS(3480), - [anon_sym_default] = ACTIONS(3480), - [anon_sym_type] = ACTIONS(3480), - [anon_sym_namespace] = ACTIONS(3480), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_RBRACE] = ACTIONS(3480), - [anon_sym_typeof] = ACTIONS(3480), - [anon_sym_import] = ACTIONS(3480), - [anon_sym_from] = ACTIONS(3480), - [anon_sym_with] = ACTIONS(3480), - [anon_sym_var] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_const] = ACTIONS(3480), - [anon_sym_BANG] = ACTIONS(3480), - [anon_sym_else] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_switch] = ACTIONS(3480), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_await] = ACTIONS(3480), - [anon_sym_of] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_break] = ACTIONS(3480), - [anon_sym_continue] = ACTIONS(3480), - [anon_sym_debugger] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_throw] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_case] = ACTIONS(3480), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LTtemplate_GT] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_SQUOTE] = ACTIONS(3480), - [anon_sym_class] = ACTIONS(3480), - [anon_sym_async] = ACTIONS(3480), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_SLASH] = ACTIONS(3480), - [anon_sym_LT] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3480), - [anon_sym_void] = ACTIONS(3480), - [anon_sym_delete] = ACTIONS(3480), - [anon_sym_PLUS_PLUS] = ACTIONS(3480), - [anon_sym_DASH_DASH] = ACTIONS(3480), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3480), - [sym_number] = ACTIONS(3480), - [sym_private_property_identifier] = ACTIONS(3480), - [sym_this] = ACTIONS(3480), - [sym_super] = ACTIONS(3480), - [sym_true] = ACTIONS(3480), - [sym_false] = ACTIONS(3480), - [sym_null] = ACTIONS(3480), - [sym_undefined] = ACTIONS(3480), - [anon_sym_AT] = ACTIONS(3480), - [anon_sym_static] = ACTIONS(3480), - [anon_sym_readonly] = ACTIONS(3480), - [anon_sym_get] = ACTIONS(3480), - [anon_sym_set] = ACTIONS(3480), - [anon_sym_declare] = ACTIONS(3480), - [anon_sym_public] = ACTIONS(3480), - [anon_sym_private] = ACTIONS(3480), - [anon_sym_protected] = ACTIONS(3480), - [anon_sym_override] = ACTIONS(3480), - [anon_sym_module] = ACTIONS(3480), - [anon_sym_any] = ACTIONS(3480), - [anon_sym_number] = ACTIONS(3480), - [anon_sym_boolean] = ACTIONS(3480), - [anon_sym_string] = ACTIONS(3480), - [anon_sym_symbol] = ACTIONS(3480), - [anon_sym_object] = ACTIONS(3480), - [anon_sym_property] = ACTIONS(3480), - [anon_sym_signal] = ACTIONS(3480), - [anon_sym_on] = ACTIONS(3480), - [anon_sym_required] = ACTIONS(3480), - [anon_sym_component] = ACTIONS(3480), - [anon_sym_abstract] = ACTIONS(3480), - [anon_sym_interface] = ACTIONS(3480), - [anon_sym_enum] = ACTIONS(3480), - [sym_html_comment] = ACTIONS(5), - }, - [1057] = { - [sym_comment] = STATE(1057), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_case] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_private_property_identifier] = ACTIONS(2442), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_default] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_typeof] = ACTIONS(2438), + [anon_sym_import] = ACTIONS(2438), + [anon_sym_from] = ACTIONS(2438), + [anon_sym_with] = ACTIONS(2438), + [anon_sym_var] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_debugger] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_case] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LTtemplate_GT] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_class] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2438), + [anon_sym_delete] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_private_property_identifier] = ACTIONS(2438), + [sym_this] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_true] = ACTIONS(2438), + [sym_false] = ACTIONS(2438), + [sym_null] = ACTIONS(2438), + [sym_undefined] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2438), + [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_property] = ACTIONS(2438), + [anon_sym_signal] = ACTIONS(2438), + [anon_sym_on] = ACTIONS(2438), + [anon_sym_required] = ACTIONS(2438), + [anon_sym_component] = ACTIONS(2438), + [anon_sym_abstract] = ACTIONS(2438), + [anon_sym_interface] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), + [sym__automatic_semicolon] = ACTIONS(2440), + [sym_html_comment] = ACTIONS(5), + }, + [1057] = { + [sym_comment] = STATE(1057), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_case] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2530), [sym_html_comment] = ACTIONS(5), }, [1058] = { [sym_comment] = STATE(1058), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3482), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3478), [sym_html_comment] = ACTIONS(5), }, [1059] = { [sym_comment] = STATE(1059), - [sym_identifier] = ACTIONS(3484), - [anon_sym_export] = ACTIONS(3484), - [anon_sym_default] = ACTIONS(3484), - [anon_sym_type] = ACTIONS(3484), - [anon_sym_namespace] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3484), - [anon_sym_RBRACE] = ACTIONS(3484), - [anon_sym_typeof] = ACTIONS(3484), - [anon_sym_import] = ACTIONS(3484), - [anon_sym_from] = ACTIONS(3484), - [anon_sym_with] = ACTIONS(3484), - [anon_sym_var] = ACTIONS(3484), - [anon_sym_let] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3484), - [anon_sym_else] = ACTIONS(3484), - [anon_sym_if] = ACTIONS(3484), - [anon_sym_switch] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_await] = ACTIONS(3484), - [anon_sym_of] = ACTIONS(3484), - [anon_sym_while] = ACTIONS(3484), - [anon_sym_do] = ACTIONS(3484), - [anon_sym_try] = ACTIONS(3484), - [anon_sym_break] = ACTIONS(3484), - [anon_sym_continue] = ACTIONS(3484), - [anon_sym_debugger] = ACTIONS(3484), - [anon_sym_return] = ACTIONS(3484), - [anon_sym_throw] = ACTIONS(3484), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_case] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3484), - [anon_sym_LBRACK] = ACTIONS(3484), - [anon_sym_LTtemplate_GT] = ACTIONS(3484), - [anon_sym_DQUOTE] = ACTIONS(3484), - [anon_sym_SQUOTE] = ACTIONS(3484), - [anon_sym_class] = ACTIONS(3484), - [anon_sym_async] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3484), - [anon_sym_using] = ACTIONS(3484), - [anon_sym_PLUS] = ACTIONS(3484), - [anon_sym_DASH] = ACTIONS(3484), - [anon_sym_SLASH] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_TILDE] = ACTIONS(3484), - [anon_sym_void] = ACTIONS(3484), - [anon_sym_delete] = ACTIONS(3484), - [anon_sym_PLUS_PLUS] = ACTIONS(3484), - [anon_sym_DASH_DASH] = ACTIONS(3484), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3484), - [sym_number] = ACTIONS(3484), - [sym_private_property_identifier] = ACTIONS(3484), - [sym_this] = ACTIONS(3484), - [sym_super] = ACTIONS(3484), - [sym_true] = ACTIONS(3484), - [sym_false] = ACTIONS(3484), - [sym_null] = ACTIONS(3484), - [sym_undefined] = ACTIONS(3484), - [anon_sym_AT] = ACTIONS(3484), - [anon_sym_static] = ACTIONS(3484), - [anon_sym_readonly] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3484), - [anon_sym_set] = ACTIONS(3484), - [anon_sym_declare] = ACTIONS(3484), - [anon_sym_public] = ACTIONS(3484), - [anon_sym_private] = ACTIONS(3484), - [anon_sym_protected] = ACTIONS(3484), - [anon_sym_override] = ACTIONS(3484), - [anon_sym_module] = ACTIONS(3484), - [anon_sym_any] = ACTIONS(3484), - [anon_sym_number] = ACTIONS(3484), - [anon_sym_boolean] = ACTIONS(3484), - [anon_sym_string] = ACTIONS(3484), - [anon_sym_symbol] = ACTIONS(3484), - [anon_sym_object] = ACTIONS(3484), - [anon_sym_property] = ACTIONS(3484), - [anon_sym_signal] = ACTIONS(3484), - [anon_sym_on] = ACTIONS(3484), - [anon_sym_required] = ACTIONS(3484), - [anon_sym_component] = ACTIONS(3484), - [anon_sym_abstract] = ACTIONS(3484), - [anon_sym_interface] = ACTIONS(3484), - [anon_sym_enum] = ACTIONS(3484), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_case] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2532), [sym_html_comment] = ACTIONS(5), }, [1060] = { [sym_comment] = STATE(1060), + [sym_identifier] = ACTIONS(3442), + [anon_sym_export] = ACTIONS(3442), + [anon_sym_default] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_RBRACE] = ACTIONS(3442), + [anon_sym_typeof] = ACTIONS(3442), + [anon_sym_import] = ACTIONS(3442), + [anon_sym_from] = ACTIONS(3442), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_var] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_await] = ACTIONS(3442), + [anon_sym_of] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_debugger] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_SEMI] = ACTIONS(3442), + [anon_sym_case] = ACTIONS(3442), + [anon_sym_finally] = ACTIONS(3442), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LTtemplate_GT] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_SQUOTE] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_async] = ACTIONS(3442), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_SLASH] = ACTIONS(3442), + [anon_sym_LT] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_void] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3442), + [sym_number] = ACTIONS(3442), + [sym_private_property_identifier] = ACTIONS(3442), + [sym_this] = ACTIONS(3442), + [sym_super] = ACTIONS(3442), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [sym_null] = ACTIONS(3442), + [sym_undefined] = ACTIONS(3442), + [anon_sym_AT] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_readonly] = ACTIONS(3442), + [anon_sym_get] = ACTIONS(3442), + [anon_sym_set] = ACTIONS(3442), + [anon_sym_declare] = ACTIONS(3442), + [anon_sym_public] = ACTIONS(3442), + [anon_sym_private] = ACTIONS(3442), + [anon_sym_protected] = ACTIONS(3442), + [anon_sym_override] = ACTIONS(3442), + [anon_sym_module] = ACTIONS(3442), + [anon_sym_any] = ACTIONS(3442), + [anon_sym_number] = ACTIONS(3442), + [anon_sym_boolean] = ACTIONS(3442), + [anon_sym_string] = ACTIONS(3442), + [anon_sym_symbol] = ACTIONS(3442), + [anon_sym_object] = ACTIONS(3442), + [anon_sym_property] = ACTIONS(3442), + [anon_sym_signal] = ACTIONS(3442), + [anon_sym_on] = ACTIONS(3442), + [anon_sym_required] = ACTIONS(3442), + [anon_sym_component] = ACTIONS(3442), + [anon_sym_abstract] = ACTIONS(3442), + [anon_sym_interface] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [sym_html_comment] = ACTIONS(5), + }, + [1061] = { + [sym_statement_block] = STATE(1361), + [sym_comment] = STATE(1061), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3458), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_html_comment] = ACTIONS(5), + }, + [1062] = { + [sym_comment] = STATE(1062), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_default] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_namespace] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_typeof] = ACTIONS(2386), + [anon_sym_import] = ACTIONS(2386), + [anon_sym_from] = ACTIONS(2386), + [anon_sym_with] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_switch] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2386), + [anon_sym_of] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_do] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_debugger] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_throw] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_case] = ACTIONS(2386), + [anon_sym_yield] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LTtemplate_GT] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_class] = ACTIONS(2386), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_function] = ACTIONS(2386), + [anon_sym_new] = ACTIONS(2386), + [anon_sym_using] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2386), + [anon_sym_delete] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_private_property_identifier] = ACTIONS(2386), + [sym_this] = ACTIONS(2386), + [sym_super] = ACTIONS(2386), + [sym_true] = ACTIONS(2386), + [sym_false] = ACTIONS(2386), + [sym_null] = ACTIONS(2386), + [sym_undefined] = ACTIONS(2386), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_readonly] = ACTIONS(2386), + [anon_sym_get] = ACTIONS(2386), + [anon_sym_set] = ACTIONS(2386), + [anon_sym_declare] = ACTIONS(2386), + [anon_sym_public] = ACTIONS(2386), + [anon_sym_private] = ACTIONS(2386), + [anon_sym_protected] = ACTIONS(2386), + [anon_sym_override] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_any] = ACTIONS(2386), + [anon_sym_number] = ACTIONS(2386), + [anon_sym_boolean] = ACTIONS(2386), + [anon_sym_string] = ACTIONS(2386), + [anon_sym_symbol] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(2386), + [anon_sym_property] = ACTIONS(2386), + [anon_sym_signal] = ACTIONS(2386), + [anon_sym_on] = ACTIONS(2386), + [anon_sym_required] = ACTIONS(2386), + [anon_sym_component] = ACTIONS(2386), + [anon_sym_abstract] = ACTIONS(2386), + [anon_sym_interface] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [sym__automatic_semicolon] = ACTIONS(2546), + [sym_html_comment] = ACTIONS(5), + }, + [1063] = { + [sym_comment] = STATE(1063), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3480), + [sym_html_comment] = ACTIONS(5), + }, + [1064] = { + [sym_comment] = STATE(1064), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_default] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_typeof] = ACTIONS(2438), + [anon_sym_import] = ACTIONS(2438), + [anon_sym_from] = ACTIONS(2438), + [anon_sym_with] = ACTIONS(2438), + [anon_sym_var] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_debugger] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_case] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LTtemplate_GT] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_class] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2438), + [anon_sym_delete] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_private_property_identifier] = ACTIONS(2438), + [sym_this] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_true] = ACTIONS(2438), + [sym_false] = ACTIONS(2438), + [sym_null] = ACTIONS(2438), + [sym_undefined] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2438), + [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_property] = ACTIONS(2438), + [anon_sym_signal] = ACTIONS(2438), + [anon_sym_on] = ACTIONS(2438), + [anon_sym_required] = ACTIONS(2438), + [anon_sym_component] = ACTIONS(2438), + [anon_sym_abstract] = ACTIONS(2438), + [anon_sym_interface] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), + [sym_html_comment] = ACTIONS(5), + }, + [1065] = { + [sym_comment] = STATE(1065), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_default] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_typeof] = ACTIONS(2434), + [anon_sym_import] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_with] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_debugger] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_throw] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_case] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LTtemplate_GT] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_class] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2434), + [anon_sym_delete] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_private_property_identifier] = ACTIONS(2434), + [sym_this] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_true] = ACTIONS(2434), + [sym_false] = ACTIONS(2434), + [sym_null] = ACTIONS(2434), + [sym_undefined] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_abstract] = ACTIONS(2434), + [anon_sym_interface] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [sym_html_comment] = ACTIONS(5), + }, + [1066] = { + [sym_comment] = STATE(1066), + [sym_identifier] = ACTIONS(3434), + [anon_sym_export] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_typeof] = ACTIONS(3434), + [anon_sym_import] = ACTIONS(3434), + [anon_sym_from] = ACTIONS(3434), + [anon_sym_with] = ACTIONS(3434), + [anon_sym_var] = ACTIONS(3434), + [anon_sym_let] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_await] = ACTIONS(3434), + [anon_sym_of] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_debugger] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3482), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_yield] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_LTtemplate_GT] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_function] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_void] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3434), + [sym_number] = ACTIONS(3434), + [sym_private_property_identifier] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [sym_super] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_null] = ACTIONS(3434), + [sym_undefined] = ACTIONS(3434), + [anon_sym_AT] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_readonly] = ACTIONS(3434), + [anon_sym_get] = ACTIONS(3434), + [anon_sym_set] = ACTIONS(3434), + [anon_sym_declare] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_override] = ACTIONS(3434), + [anon_sym_module] = ACTIONS(3434), + [anon_sym_any] = ACTIONS(3434), + [anon_sym_number] = ACTIONS(3434), + [anon_sym_boolean] = ACTIONS(3434), + [anon_sym_string] = ACTIONS(3434), + [anon_sym_symbol] = ACTIONS(3434), + [anon_sym_object] = ACTIONS(3434), + [anon_sym_property] = ACTIONS(3434), + [anon_sym_signal] = ACTIONS(3434), + [anon_sym_on] = ACTIONS(3434), + [anon_sym_required] = ACTIONS(3434), + [anon_sym_component] = ACTIONS(3434), + [anon_sym_abstract] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [sym__automatic_semicolon] = ACTIONS(3484), + [sym_html_comment] = ACTIONS(5), + }, + [1067] = { + [sym_comment] = STATE(1067), + [sym_identifier] = ACTIONS(3440), + [anon_sym_export] = ACTIONS(3440), + [anon_sym_default] = ACTIONS(3440), + [anon_sym_type] = ACTIONS(3440), + [anon_sym_namespace] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_typeof] = ACTIONS(3440), + [anon_sym_import] = ACTIONS(3440), + [anon_sym_from] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3440), + [anon_sym_var] = ACTIONS(3440), + [anon_sym_let] = ACTIONS(3440), + [anon_sym_const] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_switch] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_await] = ACTIONS(3440), + [anon_sym_of] = ACTIONS(3440), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(3440), + [anon_sym_try] = ACTIONS(3440), + [anon_sym_break] = ACTIONS(3440), + [anon_sym_continue] = ACTIONS(3440), + [anon_sym_debugger] = ACTIONS(3440), + [anon_sym_return] = ACTIONS(3440), + [anon_sym_throw] = ACTIONS(3440), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_case] = ACTIONS(3440), + [anon_sym_finally] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_LTtemplate_GT] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [anon_sym_class] = ACTIONS(3440), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3440), + [anon_sym_using] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_SLASH] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_void] = ACTIONS(3440), + [anon_sym_delete] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3440), + [sym_number] = ACTIONS(3440), + [sym_private_property_identifier] = ACTIONS(3440), + [sym_this] = ACTIONS(3440), + [sym_super] = ACTIONS(3440), + [sym_true] = ACTIONS(3440), + [sym_false] = ACTIONS(3440), + [sym_null] = ACTIONS(3440), + [sym_undefined] = ACTIONS(3440), + [anon_sym_AT] = ACTIONS(3440), + [anon_sym_static] = ACTIONS(3440), + [anon_sym_readonly] = ACTIONS(3440), + [anon_sym_get] = ACTIONS(3440), + [anon_sym_set] = ACTIONS(3440), + [anon_sym_declare] = ACTIONS(3440), + [anon_sym_public] = ACTIONS(3440), + [anon_sym_private] = ACTIONS(3440), + [anon_sym_protected] = ACTIONS(3440), + [anon_sym_override] = ACTIONS(3440), + [anon_sym_module] = ACTIONS(3440), + [anon_sym_any] = ACTIONS(3440), + [anon_sym_number] = ACTIONS(3440), + [anon_sym_boolean] = ACTIONS(3440), + [anon_sym_string] = ACTIONS(3440), + [anon_sym_symbol] = ACTIONS(3440), + [anon_sym_object] = ACTIONS(3440), + [anon_sym_property] = ACTIONS(3440), + [anon_sym_signal] = ACTIONS(3440), + [anon_sym_on] = ACTIONS(3440), + [anon_sym_required] = ACTIONS(3440), + [anon_sym_component] = ACTIONS(3440), + [anon_sym_abstract] = ACTIONS(3440), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), + [sym_html_comment] = ACTIONS(5), + }, + [1068] = { + [sym_comment] = STATE(1068), + [sym_identifier] = ACTIONS(3444), + [anon_sym_export] = ACTIONS(3444), + [anon_sym_default] = ACTIONS(3444), + [anon_sym_type] = ACTIONS(3444), + [anon_sym_namespace] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_typeof] = ACTIONS(3444), + [anon_sym_import] = ACTIONS(3444), + [anon_sym_from] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3444), + [anon_sym_var] = ACTIONS(3444), + [anon_sym_let] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3444), + [anon_sym_await] = ACTIONS(3444), + [anon_sym_of] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_debugger] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_case] = ACTIONS(3444), + [anon_sym_finally] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_LTtemplate_GT] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_async] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_SLASH] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_void] = ACTIONS(3444), + [anon_sym_delete] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3444), + [sym_number] = ACTIONS(3444), + [sym_private_property_identifier] = ACTIONS(3444), + [sym_this] = ACTIONS(3444), + [sym_super] = ACTIONS(3444), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [sym_null] = ACTIONS(3444), + [sym_undefined] = ACTIONS(3444), + [anon_sym_AT] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_readonly] = ACTIONS(3444), + [anon_sym_get] = ACTIONS(3444), + [anon_sym_set] = ACTIONS(3444), + [anon_sym_declare] = ACTIONS(3444), + [anon_sym_public] = ACTIONS(3444), + [anon_sym_private] = ACTIONS(3444), + [anon_sym_protected] = ACTIONS(3444), + [anon_sym_override] = ACTIONS(3444), + [anon_sym_module] = ACTIONS(3444), + [anon_sym_any] = ACTIONS(3444), + [anon_sym_number] = ACTIONS(3444), + [anon_sym_boolean] = ACTIONS(3444), + [anon_sym_string] = ACTIONS(3444), + [anon_sym_symbol] = ACTIONS(3444), + [anon_sym_object] = ACTIONS(3444), + [anon_sym_property] = ACTIONS(3444), + [anon_sym_signal] = ACTIONS(3444), + [anon_sym_on] = ACTIONS(3444), + [anon_sym_required] = ACTIONS(3444), + [anon_sym_component] = ACTIONS(3444), + [anon_sym_abstract] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [sym_html_comment] = ACTIONS(5), + }, + [1069] = { + [sym_comment] = STATE(1069), [sym_identifier] = ACTIONS(3486), [anon_sym_export] = ACTIONS(3486), [anon_sym_default] = ACTIONS(3486), @@ -163153,8 +163627,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3486), [sym_html_comment] = ACTIONS(5), }, - [1061] = { - [sym_comment] = STATE(1061), + [1070] = { + [sym_comment] = STATE(1070), [sym_identifier] = ACTIONS(3488), [anon_sym_export] = ACTIONS(3488), [anon_sym_default] = ACTIONS(3488), @@ -163243,638 +163717,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3488), [sym_html_comment] = ACTIONS(5), }, - [1062] = { - [sym_comment] = STATE(1062), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym_html_comment] = ACTIONS(5), - }, - [1063] = { - [sym_comment] = STATE(1063), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3490), - [sym_html_comment] = ACTIONS(5), - }, - [1064] = { - [sym_comment] = STATE(1064), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3492), - [sym_html_comment] = ACTIONS(5), - }, - [1065] = { - [sym_comment] = STATE(1065), - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_default] = ACTIONS(2354), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_namespace] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_typeof] = ACTIONS(2354), - [anon_sym_import] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_with] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_await] = ACTIONS(2354), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_debugger] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_throw] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_case] = ACTIONS(2354), - [anon_sym_yield] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LTtemplate_GT] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_class] = ACTIONS(2354), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_new] = ACTIONS(2354), - [anon_sym_using] = ACTIONS(2354), - [anon_sym_PLUS] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_void] = ACTIONS(2354), - [anon_sym_delete] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2354), - [sym_number] = ACTIONS(2354), - [sym_private_property_identifier] = ACTIONS(2354), - [sym_this] = ACTIONS(2354), - [sym_super] = ACTIONS(2354), - [sym_true] = ACTIONS(2354), - [sym_false] = ACTIONS(2354), - [sym_null] = ACTIONS(2354), - [sym_undefined] = ACTIONS(2354), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_object] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2354), - [anon_sym_interface] = ACTIONS(2354), - [anon_sym_enum] = ACTIONS(2354), - [sym__automatic_semicolon] = ACTIONS(2542), - [sym_html_comment] = ACTIONS(5), - }, - [1066] = { - [sym_comment] = STATE(1066), - [sym_identifier] = ACTIONS(3474), - [anon_sym_export] = ACTIONS(3474), - [anon_sym_default] = ACTIONS(3474), - [anon_sym_type] = ACTIONS(3474), - [anon_sym_namespace] = ACTIONS(3474), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_RBRACE] = ACTIONS(3474), - [anon_sym_typeof] = ACTIONS(3474), - [anon_sym_import] = ACTIONS(3474), - [anon_sym_from] = ACTIONS(3474), - [anon_sym_with] = ACTIONS(3474), - [anon_sym_var] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_const] = ACTIONS(3474), - [anon_sym_BANG] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_switch] = ACTIONS(3474), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_await] = ACTIONS(3474), - [anon_sym_of] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_break] = ACTIONS(3474), - [anon_sym_continue] = ACTIONS(3474), - [anon_sym_debugger] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_throw] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_case] = ACTIONS(3474), - [anon_sym_finally] = ACTIONS(3474), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LTtemplate_GT] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_SQUOTE] = ACTIONS(3474), - [anon_sym_class] = ACTIONS(3474), - [anon_sym_async] = ACTIONS(3474), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_using] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3474), - [anon_sym_LT] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_void] = ACTIONS(3474), - [anon_sym_delete] = ACTIONS(3474), - [anon_sym_PLUS_PLUS] = ACTIONS(3474), - [anon_sym_DASH_DASH] = ACTIONS(3474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3474), - [sym_number] = ACTIONS(3474), - [sym_private_property_identifier] = ACTIONS(3474), - [sym_this] = ACTIONS(3474), - [sym_super] = ACTIONS(3474), - [sym_true] = ACTIONS(3474), - [sym_false] = ACTIONS(3474), - [sym_null] = ACTIONS(3474), - [sym_undefined] = ACTIONS(3474), - [anon_sym_AT] = ACTIONS(3474), - [anon_sym_static] = ACTIONS(3474), - [anon_sym_readonly] = ACTIONS(3474), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3474), - [anon_sym_declare] = ACTIONS(3474), - [anon_sym_public] = ACTIONS(3474), - [anon_sym_private] = ACTIONS(3474), - [anon_sym_protected] = ACTIONS(3474), - [anon_sym_override] = ACTIONS(3474), - [anon_sym_module] = ACTIONS(3474), - [anon_sym_any] = ACTIONS(3474), - [anon_sym_number] = ACTIONS(3474), - [anon_sym_boolean] = ACTIONS(3474), - [anon_sym_string] = ACTIONS(3474), - [anon_sym_symbol] = ACTIONS(3474), - [anon_sym_object] = ACTIONS(3474), - [anon_sym_property] = ACTIONS(3474), - [anon_sym_signal] = ACTIONS(3474), - [anon_sym_on] = ACTIONS(3474), - [anon_sym_required] = ACTIONS(3474), - [anon_sym_component] = ACTIONS(3474), - [anon_sym_abstract] = ACTIONS(3474), - [anon_sym_interface] = ACTIONS(3474), - [anon_sym_enum] = ACTIONS(3474), - [sym_html_comment] = ACTIONS(5), - }, - [1067] = { - [sym_comment] = STATE(1067), - [sym_identifier] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_default] = ACTIONS(2342), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_namespace] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_typeof] = ACTIONS(2342), - [anon_sym_import] = ACTIONS(2342), - [anon_sym_from] = ACTIONS(2342), - [anon_sym_with] = ACTIONS(2342), - [anon_sym_var] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_switch] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(2342), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_debugger] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_throw] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_case] = ACTIONS(2342), - [anon_sym_yield] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LTtemplate_GT] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), - [anon_sym_class] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_new] = ACTIONS(2342), - [anon_sym_using] = ACTIONS(2342), - [anon_sym_PLUS] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_void] = ACTIONS(2342), - [anon_sym_delete] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), - [sym_private_property_identifier] = ACTIONS(2342), - [sym_this] = ACTIONS(2342), - [sym_super] = ACTIONS(2342), - [sym_true] = ACTIONS(2342), - [sym_false] = ACTIONS(2342), - [sym_null] = ACTIONS(2342), - [sym_undefined] = ACTIONS(2342), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_readonly] = ACTIONS(2342), - [anon_sym_get] = ACTIONS(2342), - [anon_sym_set] = ACTIONS(2342), - [anon_sym_declare] = ACTIONS(2342), - [anon_sym_public] = ACTIONS(2342), - [anon_sym_private] = ACTIONS(2342), - [anon_sym_protected] = ACTIONS(2342), - [anon_sym_override] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_any] = ACTIONS(2342), - [anon_sym_number] = ACTIONS(2342), - [anon_sym_boolean] = ACTIONS(2342), - [anon_sym_string] = ACTIONS(2342), - [anon_sym_symbol] = ACTIONS(2342), - [anon_sym_object] = ACTIONS(2342), - [anon_sym_property] = ACTIONS(2342), - [anon_sym_signal] = ACTIONS(2342), - [anon_sym_on] = ACTIONS(2342), - [anon_sym_required] = ACTIONS(2342), - [anon_sym_component] = ACTIONS(2342), - [anon_sym_abstract] = ACTIONS(2342), - [anon_sym_interface] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(2568), + [1071] = { + [sym_comment] = STATE(1071), + [sym_identifier] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_default] = ACTIONS(3490), + [anon_sym_type] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_typeof] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_from] = ACTIONS(3490), + [anon_sym_with] = ACTIONS(3490), + [anon_sym_var] = ACTIONS(3490), + [anon_sym_let] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_await] = ACTIONS(3490), + [anon_sym_of] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_debugger] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_case] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LTtemplate_GT] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(3490), + [anon_sym_SQUOTE] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_async] = ACTIONS(3490), + [anon_sym_function] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_SLASH] = ACTIONS(3490), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_void] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3490), + [sym_number] = ACTIONS(3490), + [sym_private_property_identifier] = ACTIONS(3490), + [sym_this] = ACTIONS(3490), + [sym_super] = ACTIONS(3490), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [sym_null] = ACTIONS(3490), + [sym_undefined] = ACTIONS(3490), + [anon_sym_AT] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_readonly] = ACTIONS(3490), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3490), + [anon_sym_declare] = ACTIONS(3490), + [anon_sym_public] = ACTIONS(3490), + [anon_sym_private] = ACTIONS(3490), + [anon_sym_protected] = ACTIONS(3490), + [anon_sym_override] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_any] = ACTIONS(3490), + [anon_sym_number] = ACTIONS(3490), + [anon_sym_boolean] = ACTIONS(3490), + [anon_sym_string] = ACTIONS(3490), + [anon_sym_symbol] = ACTIONS(3490), + [anon_sym_object] = ACTIONS(3490), + [anon_sym_property] = ACTIONS(3490), + [anon_sym_signal] = ACTIONS(3490), + [anon_sym_on] = ACTIONS(3490), + [anon_sym_required] = ACTIONS(3490), + [anon_sym_component] = ACTIONS(3490), + [anon_sym_abstract] = ACTIONS(3490), + [anon_sym_interface] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), [sym_html_comment] = ACTIONS(5), }, - [1068] = { - [sym_comment] = STATE(1068), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), + [1072] = { + [sym_comment] = STATE(1072), + [sym_identifier] = ACTIONS(3492), + [anon_sym_export] = ACTIONS(3492), + [anon_sym_default] = ACTIONS(3492), + [anon_sym_type] = ACTIONS(3492), + [anon_sym_namespace] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym_import] = ACTIONS(3492), + [anon_sym_from] = ACTIONS(3492), + [anon_sym_with] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_else] = ACTIONS(3492), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_of] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_debugger] = ACTIONS(3492), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_case] = ACTIONS(3492), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3492), + [anon_sym_LTtemplate_GT] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_class] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_function] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_using] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_SLASH] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_void] = ACTIONS(3492), + [anon_sym_delete] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3492), + [sym_number] = ACTIONS(3492), + [sym_private_property_identifier] = ACTIONS(3492), + [sym_this] = ACTIONS(3492), + [sym_super] = ACTIONS(3492), + [sym_true] = ACTIONS(3492), + [sym_false] = ACTIONS(3492), + [sym_null] = ACTIONS(3492), + [sym_undefined] = ACTIONS(3492), + [anon_sym_AT] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3492), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_declare] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_override] = ACTIONS(3492), + [anon_sym_module] = ACTIONS(3492), + [anon_sym_any] = ACTIONS(3492), + [anon_sym_number] = ACTIONS(3492), + [anon_sym_boolean] = ACTIONS(3492), + [anon_sym_string] = ACTIONS(3492), + [anon_sym_symbol] = ACTIONS(3492), + [anon_sym_object] = ACTIONS(3492), + [anon_sym_property] = ACTIONS(3492), + [anon_sym_signal] = ACTIONS(3492), + [anon_sym_on] = ACTIONS(3492), + [anon_sym_required] = ACTIONS(3492), + [anon_sym_component] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_interface] = ACTIONS(3492), + [anon_sym_enum] = ACTIONS(3492), [sym_html_comment] = ACTIONS(5), }, - [1069] = { - [sym_comment] = STATE(1069), + [1073] = { + [sym_comment] = STATE(1073), [sym_identifier] = ACTIONS(3494), [anon_sym_export] = ACTIONS(3494), [anon_sym_default] = ACTIONS(3494), @@ -163963,98 +163987,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3494), [sym_html_comment] = ACTIONS(5), }, - [1070] = { - [sym_comment] = STATE(1070), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_case] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_LTtemplate_GT] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2382), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_number] = ACTIONS(2382), - [sym_private_property_identifier] = ACTIONS(2382), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [sym__automatic_semicolon] = ACTIONS(2544), - [sym_html_comment] = ACTIONS(5), - }, - [1071] = { - [sym_comment] = STATE(1071), + [1074] = { + [sym_comment] = STATE(1074), [sym_identifier] = ACTIONS(3496), [anon_sym_export] = ACTIONS(3496), [anon_sym_default] = ACTIONS(3496), @@ -164143,8 +164077,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3496), [sym_html_comment] = ACTIONS(5), }, - [1072] = { - [sym_comment] = STATE(1072), + [1075] = { + [sym_comment] = STATE(1075), [sym_identifier] = ACTIONS(3498), [anon_sym_export] = ACTIONS(3498), [anon_sym_default] = ACTIONS(3498), @@ -164233,8 +164167,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3498), [sym_html_comment] = ACTIONS(5), }, - [1073] = { - [sym_comment] = STATE(1073), + [1076] = { + [sym_comment] = STATE(1076), [sym_identifier] = ACTIONS(3500), [anon_sym_export] = ACTIONS(3500), [anon_sym_default] = ACTIONS(3500), @@ -164323,368 +164257,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3500), [sym_html_comment] = ACTIONS(5), }, - [1074] = { - [sym_comment] = STATE(1074), - [sym_identifier] = ACTIONS(3462), - [anon_sym_export] = ACTIONS(3462), - [anon_sym_default] = ACTIONS(3462), - [anon_sym_type] = ACTIONS(3462), - [anon_sym_namespace] = ACTIONS(3462), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_RBRACE] = ACTIONS(3462), - [anon_sym_typeof] = ACTIONS(3462), - [anon_sym_import] = ACTIONS(3462), - [anon_sym_from] = ACTIONS(3462), - [anon_sym_with] = ACTIONS(3462), - [anon_sym_var] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_const] = ACTIONS(3462), - [anon_sym_BANG] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_switch] = ACTIONS(3462), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_await] = ACTIONS(3462), - [anon_sym_of] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_break] = ACTIONS(3462), - [anon_sym_continue] = ACTIONS(3462), - [anon_sym_debugger] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_throw] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3462), - [anon_sym_case] = ACTIONS(3462), - [anon_sym_finally] = ACTIONS(3462), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LTtemplate_GT] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_SQUOTE] = ACTIONS(3462), - [anon_sym_class] = ACTIONS(3462), - [anon_sym_async] = ACTIONS(3462), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_using] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_SLASH] = ACTIONS(3462), - [anon_sym_LT] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_void] = ACTIONS(3462), - [anon_sym_delete] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3462), - [sym_number] = ACTIONS(3462), - [sym_private_property_identifier] = ACTIONS(3462), - [sym_this] = ACTIONS(3462), - [sym_super] = ACTIONS(3462), - [sym_true] = ACTIONS(3462), - [sym_false] = ACTIONS(3462), - [sym_null] = ACTIONS(3462), - [sym_undefined] = ACTIONS(3462), - [anon_sym_AT] = ACTIONS(3462), - [anon_sym_static] = ACTIONS(3462), - [anon_sym_readonly] = ACTIONS(3462), - [anon_sym_get] = ACTIONS(3462), - [anon_sym_set] = ACTIONS(3462), - [anon_sym_declare] = ACTIONS(3462), - [anon_sym_public] = ACTIONS(3462), - [anon_sym_private] = ACTIONS(3462), - [anon_sym_protected] = ACTIONS(3462), - [anon_sym_override] = ACTIONS(3462), - [anon_sym_module] = ACTIONS(3462), - [anon_sym_any] = ACTIONS(3462), - [anon_sym_number] = ACTIONS(3462), - [anon_sym_boolean] = ACTIONS(3462), - [anon_sym_string] = ACTIONS(3462), - [anon_sym_symbol] = ACTIONS(3462), - [anon_sym_object] = ACTIONS(3462), - [anon_sym_property] = ACTIONS(3462), - [anon_sym_signal] = ACTIONS(3462), - [anon_sym_on] = ACTIONS(3462), - [anon_sym_required] = ACTIONS(3462), - [anon_sym_component] = ACTIONS(3462), - [anon_sym_abstract] = ACTIONS(3462), - [anon_sym_interface] = ACTIONS(3462), - [anon_sym_enum] = ACTIONS(3462), - [sym_html_comment] = ACTIONS(5), - }, - [1075] = { - [sym_comment] = STATE(1075), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_namespace] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_typeof] = ACTIONS(2438), - [anon_sym_import] = ACTIONS(2438), - [anon_sym_from] = ACTIONS(2438), - [anon_sym_with] = ACTIONS(2438), - [anon_sym_var] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_else] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_switch] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_await] = ACTIONS(2438), - [anon_sym_of] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_debugger] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_throw] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_case] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_LTtemplate_GT] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2438), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_class] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2438), - [anon_sym_new] = ACTIONS(2438), - [anon_sym_using] = ACTIONS(2438), - [anon_sym_PLUS] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_SLASH] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_TILDE] = ACTIONS(2438), - [anon_sym_void] = ACTIONS(2438), - [anon_sym_delete] = ACTIONS(2438), - [anon_sym_PLUS_PLUS] = ACTIONS(2438), - [anon_sym_DASH_DASH] = ACTIONS(2438), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2438), - [sym_number] = ACTIONS(2438), - [sym_private_property_identifier] = ACTIONS(2438), - [sym_this] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_true] = ACTIONS(2438), - [sym_false] = ACTIONS(2438), - [sym_null] = ACTIONS(2438), - [sym_undefined] = ACTIONS(2438), - [anon_sym_AT] = ACTIONS(2438), - [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_property] = ACTIONS(2438), - [anon_sym_signal] = ACTIONS(2438), - [anon_sym_on] = ACTIONS(2438), - [anon_sym_required] = ACTIONS(2438), - [anon_sym_component] = ACTIONS(2438), - [anon_sym_abstract] = ACTIONS(2438), - [anon_sym_interface] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - [sym_html_comment] = ACTIONS(5), - }, - [1076] = { - [sym_comment] = STATE(1076), - [sym_identifier] = ACTIONS(3460), - [anon_sym_export] = ACTIONS(3460), - [anon_sym_default] = ACTIONS(3460), - [anon_sym_type] = ACTIONS(3460), - [anon_sym_namespace] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_RBRACE] = ACTIONS(3460), - [anon_sym_typeof] = ACTIONS(3460), - [anon_sym_import] = ACTIONS(3460), - [anon_sym_from] = ACTIONS(3460), - [anon_sym_with] = ACTIONS(3460), - [anon_sym_var] = ACTIONS(3460), - [anon_sym_let] = ACTIONS(3460), - [anon_sym_const] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_if] = ACTIONS(3460), - [anon_sym_switch] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3460), - [anon_sym_await] = ACTIONS(3460), - [anon_sym_of] = ACTIONS(3460), - [anon_sym_while] = ACTIONS(3460), - [anon_sym_do] = ACTIONS(3460), - [anon_sym_try] = ACTIONS(3460), - [anon_sym_break] = ACTIONS(3460), - [anon_sym_continue] = ACTIONS(3460), - [anon_sym_debugger] = ACTIONS(3460), - [anon_sym_return] = ACTIONS(3460), - [anon_sym_throw] = ACTIONS(3460), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_case] = ACTIONS(3460), - [anon_sym_finally] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LTtemplate_GT] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [anon_sym_SQUOTE] = ACTIONS(3460), - [anon_sym_class] = ACTIONS(3460), - [anon_sym_async] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3460), - [anon_sym_using] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_SLASH] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_void] = ACTIONS(3460), - [anon_sym_delete] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3460), - [sym_number] = ACTIONS(3460), - [sym_private_property_identifier] = ACTIONS(3460), - [sym_this] = ACTIONS(3460), - [sym_super] = ACTIONS(3460), - [sym_true] = ACTIONS(3460), - [sym_false] = ACTIONS(3460), - [sym_null] = ACTIONS(3460), - [sym_undefined] = ACTIONS(3460), - [anon_sym_AT] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(3460), - [anon_sym_readonly] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(3460), - [anon_sym_set] = ACTIONS(3460), - [anon_sym_declare] = ACTIONS(3460), - [anon_sym_public] = ACTIONS(3460), - [anon_sym_private] = ACTIONS(3460), - [anon_sym_protected] = ACTIONS(3460), - [anon_sym_override] = ACTIONS(3460), - [anon_sym_module] = ACTIONS(3460), - [anon_sym_any] = ACTIONS(3460), - [anon_sym_number] = ACTIONS(3460), - [anon_sym_boolean] = ACTIONS(3460), - [anon_sym_string] = ACTIONS(3460), - [anon_sym_symbol] = ACTIONS(3460), - [anon_sym_object] = ACTIONS(3460), - [anon_sym_property] = ACTIONS(3460), - [anon_sym_signal] = ACTIONS(3460), - [anon_sym_on] = ACTIONS(3460), - [anon_sym_required] = ACTIONS(3460), - [anon_sym_component] = ACTIONS(3460), - [anon_sym_abstract] = ACTIONS(3460), - [anon_sym_interface] = ACTIONS(3460), - [anon_sym_enum] = ACTIONS(3460), - [sym_html_comment] = ACTIONS(5), - }, [1077] = { [sym_comment] = STATE(1077), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_default] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_typeof] = ACTIONS(2474), - [anon_sym_import] = ACTIONS(2474), - [anon_sym_from] = ACTIONS(2474), - [anon_sym_with] = ACTIONS(2474), - [anon_sym_var] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_await] = ACTIONS(2474), - [anon_sym_of] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_debugger] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LTtemplate_GT] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_class] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_TILDE] = ACTIONS(2474), - [anon_sym_void] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2474), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_undefined] = ACTIONS(2474), - [anon_sym_AT] = ACTIONS(2474), - [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_property] = ACTIONS(2474), - [anon_sym_signal] = ACTIONS(2474), - [anon_sym_on] = ACTIONS(2474), - [anon_sym_required] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_interface] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [sym_html_comment] = ACTIONS(5), - }, - [1078] = { - [sym_comment] = STATE(1078), [sym_identifier] = ACTIONS(3502), [anon_sym_export] = ACTIONS(3502), [anon_sym_default] = ACTIONS(3502), @@ -164773,368 +164347,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3502), [sym_html_comment] = ACTIONS(5), }, + [1078] = { + [sym_statement_block] = STATE(1534), + [sym_comment] = STATE(1078), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3506), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_html_comment] = ACTIONS(5), + }, [1079] = { + [sym_statement_block] = STATE(1534), [sym_comment] = STATE(1079), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2466), - [sym_number] = ACTIONS(2466), - [sym_private_property_identifier] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1080] = { [sym_comment] = STATE(1080), - [sym_identifier] = ACTIONS(3504), - [anon_sym_export] = ACTIONS(3504), - [anon_sym_default] = ACTIONS(3504), - [anon_sym_type] = ACTIONS(3504), - [anon_sym_namespace] = ACTIONS(3504), - [anon_sym_LBRACE] = ACTIONS(3504), - [anon_sym_RBRACE] = ACTIONS(3504), - [anon_sym_typeof] = ACTIONS(3504), - [anon_sym_import] = ACTIONS(3504), - [anon_sym_from] = ACTIONS(3504), - [anon_sym_with] = ACTIONS(3504), - [anon_sym_var] = ACTIONS(3504), - [anon_sym_let] = ACTIONS(3504), - [anon_sym_const] = ACTIONS(3504), - [anon_sym_BANG] = ACTIONS(3504), - [anon_sym_else] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3504), - [anon_sym_switch] = ACTIONS(3504), - [anon_sym_for] = ACTIONS(3504), - [anon_sym_LPAREN] = ACTIONS(3504), - [anon_sym_await] = ACTIONS(3504), - [anon_sym_of] = ACTIONS(3504), - [anon_sym_while] = ACTIONS(3504), - [anon_sym_do] = ACTIONS(3504), - [anon_sym_try] = ACTIONS(3504), - [anon_sym_break] = ACTIONS(3504), - [anon_sym_continue] = ACTIONS(3504), - [anon_sym_debugger] = ACTIONS(3504), - [anon_sym_return] = ACTIONS(3504), - [anon_sym_throw] = ACTIONS(3504), - [anon_sym_SEMI] = ACTIONS(3504), - [anon_sym_case] = ACTIONS(3504), - [anon_sym_yield] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_LTtemplate_GT] = ACTIONS(3504), - [anon_sym_DQUOTE] = ACTIONS(3504), - [anon_sym_SQUOTE] = ACTIONS(3504), - [anon_sym_class] = ACTIONS(3504), - [anon_sym_async] = ACTIONS(3504), - [anon_sym_function] = ACTIONS(3504), - [anon_sym_new] = ACTIONS(3504), - [anon_sym_using] = ACTIONS(3504), - [anon_sym_PLUS] = ACTIONS(3504), - [anon_sym_DASH] = ACTIONS(3504), - [anon_sym_SLASH] = ACTIONS(3504), - [anon_sym_LT] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3504), - [anon_sym_void] = ACTIONS(3504), - [anon_sym_delete] = ACTIONS(3504), - [anon_sym_PLUS_PLUS] = ACTIONS(3504), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3504), - [sym_number] = ACTIONS(3504), - [sym_private_property_identifier] = ACTIONS(3504), - [sym_this] = ACTIONS(3504), - [sym_super] = ACTIONS(3504), - [sym_true] = ACTIONS(3504), - [sym_false] = ACTIONS(3504), - [sym_null] = ACTIONS(3504), - [sym_undefined] = ACTIONS(3504), - [anon_sym_AT] = ACTIONS(3504), - [anon_sym_static] = ACTIONS(3504), - [anon_sym_readonly] = ACTIONS(3504), - [anon_sym_get] = ACTIONS(3504), - [anon_sym_set] = ACTIONS(3504), - [anon_sym_declare] = ACTIONS(3504), - [anon_sym_public] = ACTIONS(3504), - [anon_sym_private] = ACTIONS(3504), - [anon_sym_protected] = ACTIONS(3504), - [anon_sym_override] = ACTIONS(3504), - [anon_sym_module] = ACTIONS(3504), - [anon_sym_any] = ACTIONS(3504), - [anon_sym_number] = ACTIONS(3504), - [anon_sym_boolean] = ACTIONS(3504), - [anon_sym_string] = ACTIONS(3504), - [anon_sym_symbol] = ACTIONS(3504), - [anon_sym_object] = ACTIONS(3504), - [anon_sym_property] = ACTIONS(3504), - [anon_sym_signal] = ACTIONS(3504), - [anon_sym_on] = ACTIONS(3504), - [anon_sym_required] = ACTIONS(3504), - [anon_sym_component] = ACTIONS(3504), - [anon_sym_abstract] = ACTIONS(3504), - [anon_sym_interface] = ACTIONS(3504), - [anon_sym_enum] = ACTIONS(3504), - [sym_html_comment] = ACTIONS(5), - }, - [1081] = { - [sym_comment] = STATE(1081), - [sym_identifier] = ACTIONS(3506), - [anon_sym_export] = ACTIONS(3506), - [anon_sym_default] = ACTIONS(3506), - [anon_sym_type] = ACTIONS(3506), - [anon_sym_namespace] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(3506), - [anon_sym_RBRACE] = ACTIONS(3506), - [anon_sym_typeof] = ACTIONS(3506), - [anon_sym_import] = ACTIONS(3506), - [anon_sym_from] = ACTIONS(3506), - [anon_sym_with] = ACTIONS(3506), - [anon_sym_var] = ACTIONS(3506), - [anon_sym_let] = ACTIONS(3506), - [anon_sym_const] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3506), - [anon_sym_else] = ACTIONS(3506), - [anon_sym_if] = ACTIONS(3506), - [anon_sym_switch] = ACTIONS(3506), - [anon_sym_for] = ACTIONS(3506), - [anon_sym_LPAREN] = ACTIONS(3506), - [anon_sym_await] = ACTIONS(3506), - [anon_sym_of] = ACTIONS(3506), - [anon_sym_while] = ACTIONS(3506), - [anon_sym_do] = ACTIONS(3506), - [anon_sym_try] = ACTIONS(3506), - [anon_sym_break] = ACTIONS(3506), - [anon_sym_continue] = ACTIONS(3506), - [anon_sym_debugger] = ACTIONS(3506), - [anon_sym_return] = ACTIONS(3506), - [anon_sym_throw] = ACTIONS(3506), - [anon_sym_SEMI] = ACTIONS(3506), - [anon_sym_case] = ACTIONS(3506), - [anon_sym_yield] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(3506), - [anon_sym_LTtemplate_GT] = ACTIONS(3506), - [anon_sym_DQUOTE] = ACTIONS(3506), - [anon_sym_SQUOTE] = ACTIONS(3506), - [anon_sym_class] = ACTIONS(3506), - [anon_sym_async] = ACTIONS(3506), - [anon_sym_function] = ACTIONS(3506), - [anon_sym_new] = ACTIONS(3506), - [anon_sym_using] = ACTIONS(3506), - [anon_sym_PLUS] = ACTIONS(3506), - [anon_sym_DASH] = ACTIONS(3506), - [anon_sym_SLASH] = ACTIONS(3506), - [anon_sym_LT] = ACTIONS(3506), - [anon_sym_TILDE] = ACTIONS(3506), - [anon_sym_void] = ACTIONS(3506), - [anon_sym_delete] = ACTIONS(3506), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3506), - [sym_number] = ACTIONS(3506), - [sym_private_property_identifier] = ACTIONS(3506), - [sym_this] = ACTIONS(3506), - [sym_super] = ACTIONS(3506), - [sym_true] = ACTIONS(3506), - [sym_false] = ACTIONS(3506), - [sym_null] = ACTIONS(3506), - [sym_undefined] = ACTIONS(3506), - [anon_sym_AT] = ACTIONS(3506), - [anon_sym_static] = ACTIONS(3506), - [anon_sym_readonly] = ACTIONS(3506), - [anon_sym_get] = ACTIONS(3506), - [anon_sym_set] = ACTIONS(3506), - [anon_sym_declare] = ACTIONS(3506), - [anon_sym_public] = ACTIONS(3506), - [anon_sym_private] = ACTIONS(3506), - [anon_sym_protected] = ACTIONS(3506), - [anon_sym_override] = ACTIONS(3506), - [anon_sym_module] = ACTIONS(3506), - [anon_sym_any] = ACTIONS(3506), - [anon_sym_number] = ACTIONS(3506), - [anon_sym_boolean] = ACTIONS(3506), - [anon_sym_string] = ACTIONS(3506), - [anon_sym_symbol] = ACTIONS(3506), - [anon_sym_object] = ACTIONS(3506), - [anon_sym_property] = ACTIONS(3506), - [anon_sym_signal] = ACTIONS(3506), - [anon_sym_on] = ACTIONS(3506), - [anon_sym_required] = ACTIONS(3506), - [anon_sym_component] = ACTIONS(3506), - [anon_sym_abstract] = ACTIONS(3506), - [anon_sym_interface] = ACTIONS(3506), - [anon_sym_enum] = ACTIONS(3506), - [sym_html_comment] = ACTIONS(5), - }, - [1082] = { - [sym_comment] = STATE(1082), - [sym_identifier] = ACTIONS(3508), - [anon_sym_export] = ACTIONS(3508), - [anon_sym_default] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym_import] = ACTIONS(3508), - [anon_sym_from] = ACTIONS(3508), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_else] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_of] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_debugger] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3508), - [anon_sym_case] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LTtemplate_GT] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3508), - [anon_sym_class] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_using] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_SLASH] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3508), - [anon_sym_void] = ACTIONS(3508), - [anon_sym_delete] = ACTIONS(3508), - [anon_sym_PLUS_PLUS] = ACTIONS(3508), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3508), - [sym_number] = ACTIONS(3508), - [sym_private_property_identifier] = ACTIONS(3508), - [sym_this] = ACTIONS(3508), - [sym_super] = ACTIONS(3508), - [sym_true] = ACTIONS(3508), - [sym_false] = ACTIONS(3508), - [sym_null] = ACTIONS(3508), - [sym_undefined] = ACTIONS(3508), - [anon_sym_AT] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_get] = ACTIONS(3508), - [anon_sym_set] = ACTIONS(3508), - [anon_sym_declare] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_override] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_any] = ACTIONS(3508), - [anon_sym_number] = ACTIONS(3508), - [anon_sym_boolean] = ACTIONS(3508), - [anon_sym_string] = ACTIONS(3508), - [anon_sym_symbol] = ACTIONS(3508), - [anon_sym_object] = ACTIONS(3508), - [anon_sym_property] = ACTIONS(3508), - [anon_sym_signal] = ACTIONS(3508), - [anon_sym_on] = ACTIONS(3508), - [anon_sym_required] = ACTIONS(3508), - [anon_sym_component] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_interface] = ACTIONS(3508), - [anon_sym_enum] = ACTIONS(3508), - [sym_html_comment] = ACTIONS(5), - }, - [1083] = { - [sym_comment] = STATE(1083), [sym_identifier] = ACTIONS(3510), [anon_sym_export] = ACTIONS(3510), [anon_sym_default] = ACTIONS(3510), @@ -165223,188 +164617,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3510), [sym_html_comment] = ACTIONS(5), }, - [1084] = { - [sym_comment] = STATE(1084), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_finally] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3512), - [sym_html_comment] = ACTIONS(5), - }, - [1085] = { - [sym_comment] = STATE(1085), - [sym_identifier] = ACTIONS(3508), - [anon_sym_export] = ACTIONS(3508), - [anon_sym_default] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym_import] = ACTIONS(3508), - [anon_sym_from] = ACTIONS(3508), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_else] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_of] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_debugger] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3508), - [anon_sym_case] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LTtemplate_GT] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3508), - [anon_sym_class] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_using] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_SLASH] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3508), - [anon_sym_void] = ACTIONS(3508), - [anon_sym_delete] = ACTIONS(3508), - [anon_sym_PLUS_PLUS] = ACTIONS(3508), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3508), - [sym_number] = ACTIONS(3508), - [sym_private_property_identifier] = ACTIONS(3508), - [sym_this] = ACTIONS(3508), - [sym_super] = ACTIONS(3508), - [sym_true] = ACTIONS(3508), - [sym_false] = ACTIONS(3508), - [sym_null] = ACTIONS(3508), - [sym_undefined] = ACTIONS(3508), - [anon_sym_AT] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_get] = ACTIONS(3508), - [anon_sym_set] = ACTIONS(3508), - [anon_sym_declare] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_override] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_any] = ACTIONS(3508), - [anon_sym_number] = ACTIONS(3508), - [anon_sym_boolean] = ACTIONS(3508), - [anon_sym_string] = ACTIONS(3508), - [anon_sym_symbol] = ACTIONS(3508), - [anon_sym_object] = ACTIONS(3508), - [anon_sym_property] = ACTIONS(3508), - [anon_sym_signal] = ACTIONS(3508), - [anon_sym_on] = ACTIONS(3508), - [anon_sym_required] = ACTIONS(3508), - [anon_sym_component] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_interface] = ACTIONS(3508), - [anon_sym_enum] = ACTIONS(3508), + [1081] = { + [sym_comment] = STATE(1081), + [sym_identifier] = ACTIONS(3512), + [anon_sym_export] = ACTIONS(3512), + [anon_sym_default] = ACTIONS(3512), + [anon_sym_type] = ACTIONS(3512), + [anon_sym_namespace] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3512), + [anon_sym_import] = ACTIONS(3512), + [anon_sym_from] = ACTIONS(3512), + [anon_sym_with] = ACTIONS(3512), + [anon_sym_var] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(3512), + [anon_sym_const] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_else] = ACTIONS(3512), + [anon_sym_if] = ACTIONS(3512), + [anon_sym_switch] = ACTIONS(3512), + [anon_sym_for] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3512), + [anon_sym_of] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(3512), + [anon_sym_do] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3512), + [anon_sym_break] = ACTIONS(3512), + [anon_sym_continue] = ACTIONS(3512), + [anon_sym_debugger] = ACTIONS(3512), + [anon_sym_return] = ACTIONS(3512), + [anon_sym_throw] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_case] = ACTIONS(3512), + [anon_sym_yield] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LTtemplate_GT] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_class] = ACTIONS(3512), + [anon_sym_async] = ACTIONS(3512), + [anon_sym_function] = ACTIONS(3512), + [anon_sym_new] = ACTIONS(3512), + [anon_sym_using] = ACTIONS(3512), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_SLASH] = ACTIONS(3512), + [anon_sym_LT] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_void] = ACTIONS(3512), + [anon_sym_delete] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_number] = ACTIONS(3512), + [sym_private_property_identifier] = ACTIONS(3512), + [sym_this] = ACTIONS(3512), + [sym_super] = ACTIONS(3512), + [sym_true] = ACTIONS(3512), + [sym_false] = ACTIONS(3512), + [sym_null] = ACTIONS(3512), + [sym_undefined] = ACTIONS(3512), + [anon_sym_AT] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3512), + [anon_sym_readonly] = ACTIONS(3512), + [anon_sym_get] = ACTIONS(3512), + [anon_sym_set] = ACTIONS(3512), + [anon_sym_declare] = ACTIONS(3512), + [anon_sym_public] = ACTIONS(3512), + [anon_sym_private] = ACTIONS(3512), + [anon_sym_protected] = ACTIONS(3512), + [anon_sym_override] = ACTIONS(3512), + [anon_sym_module] = ACTIONS(3512), + [anon_sym_any] = ACTIONS(3512), + [anon_sym_number] = ACTIONS(3512), + [anon_sym_boolean] = ACTIONS(3512), + [anon_sym_string] = ACTIONS(3512), + [anon_sym_symbol] = ACTIONS(3512), + [anon_sym_object] = ACTIONS(3512), + [anon_sym_property] = ACTIONS(3512), + [anon_sym_signal] = ACTIONS(3512), + [anon_sym_on] = ACTIONS(3512), + [anon_sym_required] = ACTIONS(3512), + [anon_sym_component] = ACTIONS(3512), + [anon_sym_abstract] = ACTIONS(3512), + [anon_sym_interface] = ACTIONS(3512), + [anon_sym_enum] = ACTIONS(3512), [sym_html_comment] = ACTIONS(5), }, - [1086] = { - [sym_comment] = STATE(1086), + [1082] = { + [sym_comment] = STATE(1082), [sym_identifier] = ACTIONS(3514), [anon_sym_export] = ACTIONS(3514), [anon_sym_default] = ACTIONS(3514), @@ -165493,8 +164797,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3514), [sym_html_comment] = ACTIONS(5), }, - [1087] = { - [sym_comment] = STATE(1087), + [1083] = { + [sym_comment] = STATE(1083), [sym_identifier] = ACTIONS(3516), [anon_sym_export] = ACTIONS(3516), [anon_sym_default] = ACTIONS(3516), @@ -165583,8 +164887,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3516), [sym_html_comment] = ACTIONS(5), }, - [1088] = { - [sym_comment] = STATE(1088), + [1084] = { + [sym_comment] = STATE(1084), + [sym_identifier] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_default] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_from] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_of] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_debugger] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_case] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LTtemplate_GT] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_function] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_LT] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3454), + [sym_number] = ACTIONS(3454), + [sym_private_property_identifier] = ACTIONS(3454), + [sym_this] = ACTIONS(3454), + [sym_super] = ACTIONS(3454), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [anon_sym_AT] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_get] = ACTIONS(3454), + [anon_sym_set] = ACTIONS(3454), + [anon_sym_declare] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_override] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_any] = ACTIONS(3454), + [anon_sym_number] = ACTIONS(3454), + [anon_sym_boolean] = ACTIONS(3454), + [anon_sym_string] = ACTIONS(3454), + [anon_sym_symbol] = ACTIONS(3454), + [anon_sym_object] = ACTIONS(3454), + [anon_sym_property] = ACTIONS(3454), + [anon_sym_signal] = ACTIONS(3454), + [anon_sym_on] = ACTIONS(3454), + [anon_sym_required] = ACTIONS(3454), + [anon_sym_component] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [sym__automatic_semicolon] = ACTIONS(3456), + [sym_html_comment] = ACTIONS(5), + }, + [1085] = { + [sym_comment] = STATE(1085), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2384), + [sym_html_comment] = ACTIONS(5), + }, + [1086] = { + [sym_comment] = STATE(1086), + [sym_identifier] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_default] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_with] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_of] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_debugger] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LTtemplate_GT] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_function] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_private_property_identifier] = ACTIONS(3464), + [sym_this] = ACTIONS(3464), + [sym_super] = ACTIONS(3464), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [sym_null] = ACTIONS(3464), + [sym_undefined] = ACTIONS(3464), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3464), + [anon_sym_declare] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_any] = ACTIONS(3464), + [anon_sym_number] = ACTIONS(3464), + [anon_sym_boolean] = ACTIONS(3464), + [anon_sym_string] = ACTIONS(3464), + [anon_sym_symbol] = ACTIONS(3464), + [anon_sym_object] = ACTIONS(3464), + [anon_sym_property] = ACTIONS(3464), + [anon_sym_signal] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_component] = ACTIONS(3464), + [anon_sym_abstract] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [sym__automatic_semicolon] = ACTIONS(3466), + [sym_html_comment] = ACTIONS(5), + }, + [1087] = { + [sym_comment] = STATE(1087), [sym_identifier] = ACTIONS(3518), [anon_sym_export] = ACTIONS(3518), [anon_sym_default] = ACTIONS(3518), @@ -165673,188 +165247,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3518), [sym_html_comment] = ACTIONS(5), }, - [1089] = { - [sym_comment] = STATE(1089), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_catch] = ACTIONS(2350), - [anon_sym_finally] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym_html_comment] = ACTIONS(5), - }, - [1090] = { - [sym_comment] = STATE(1090), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_default] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_typeof] = ACTIONS(2434), - [anon_sym_import] = ACTIONS(2434), - [anon_sym_from] = ACTIONS(2434), - [anon_sym_with] = ACTIONS(2434), - [anon_sym_var] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_switch] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_await] = ACTIONS(2434), - [anon_sym_of] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_debugger] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_throw] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_case] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_LTtemplate_GT] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_class] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_using] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_void] = ACTIONS(2434), - [anon_sym_delete] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_DASH_DASH] = ACTIONS(2434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2434), - [sym_number] = ACTIONS(2434), - [sym_private_property_identifier] = ACTIONS(2434), - [sym_this] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_true] = ACTIONS(2434), - [sym_false] = ACTIONS(2434), - [sym_null] = ACTIONS(2434), - [sym_undefined] = ACTIONS(2434), - [anon_sym_AT] = ACTIONS(2434), - [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_property] = ACTIONS(2434), - [anon_sym_signal] = ACTIONS(2434), - [anon_sym_on] = ACTIONS(2434), - [anon_sym_required] = ACTIONS(2434), - [anon_sym_component] = ACTIONS(2434), - [anon_sym_abstract] = ACTIONS(2434), - [anon_sym_interface] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - [sym_html_comment] = ACTIONS(5), - }, - [1091] = { - [sym_comment] = STATE(1091), + [1088] = { + [sym_comment] = STATE(1088), [sym_identifier] = ACTIONS(3520), [anon_sym_export] = ACTIONS(3520), [anon_sym_default] = ACTIONS(3520), @@ -165943,98 +165337,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3520), [sym_html_comment] = ACTIONS(5), }, - [1092] = { - [sym_comment] = STATE(1092), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2466), - [sym_number] = ACTIONS(2466), - [sym_private_property_identifier] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [sym_html_comment] = ACTIONS(5), - }, - [1093] = { - [sym_comment] = STATE(1093), + [1089] = { + [sym_comment] = STATE(1089), [sym_identifier] = ACTIONS(3522), [anon_sym_export] = ACTIONS(3522), [anon_sym_default] = ACTIONS(3522), @@ -166123,638 +165427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3522), [sym_html_comment] = ACTIONS(5), }, - [1094] = { - [sym_comment] = STATE(1094), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_case] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_private_property_identifier] = ACTIONS(2442), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [sym_html_comment] = ACTIONS(5), - }, - [1095] = { - [sym_comment] = STATE(1095), - [sym_identifier] = ACTIONS(2402), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_typeof] = ACTIONS(2402), - [anon_sym_import] = ACTIONS(2402), - [anon_sym_from] = ACTIONS(2402), - [anon_sym_with] = ACTIONS(2402), - [anon_sym_var] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_switch] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_of] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_debugger] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_throw] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_case] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LTtemplate_GT] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_class] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_new] = ACTIONS(2402), - [anon_sym_using] = ACTIONS(2402), - [anon_sym_PLUS] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_void] = ACTIONS(2402), - [anon_sym_delete] = ACTIONS(2402), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_number] = ACTIONS(2402), - [sym_private_property_identifier] = ACTIONS(2402), - [sym_this] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_true] = ACTIONS(2402), - [sym_false] = ACTIONS(2402), - [sym_null] = ACTIONS(2402), - [sym_undefined] = ACTIONS(2402), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_readonly] = ACTIONS(2402), - [anon_sym_get] = ACTIONS(2402), - [anon_sym_set] = ACTIONS(2402), - [anon_sym_declare] = ACTIONS(2402), - [anon_sym_public] = ACTIONS(2402), - [anon_sym_private] = ACTIONS(2402), - [anon_sym_protected] = ACTIONS(2402), - [anon_sym_override] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_any] = ACTIONS(2402), - [anon_sym_number] = ACTIONS(2402), - [anon_sym_boolean] = ACTIONS(2402), - [anon_sym_string] = ACTIONS(2402), - [anon_sym_symbol] = ACTIONS(2402), - [anon_sym_object] = ACTIONS(2402), - [anon_sym_property] = ACTIONS(2402), - [anon_sym_signal] = ACTIONS(2402), - [anon_sym_on] = ACTIONS(2402), - [anon_sym_required] = ACTIONS(2402), - [anon_sym_component] = ACTIONS(2402), - [anon_sym_abstract] = ACTIONS(2402), - [anon_sym_interface] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [sym__automatic_semicolon] = ACTIONS(2494), - [sym_html_comment] = ACTIONS(5), - }, - [1096] = { - [sym_comment] = STATE(1096), - [sym_identifier] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_default] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_namespace] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2338), - [anon_sym_import] = ACTIONS(2338), - [anon_sym_from] = ACTIONS(2338), - [anon_sym_with] = ACTIONS(2338), - [anon_sym_var] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_do] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_debugger] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_throw] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_case] = ACTIONS(2338), - [anon_sym_yield] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LTtemplate_GT] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_class] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_using] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2338), - [anon_sym_delete] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_private_property_identifier] = ACTIONS(2338), - [sym_this] = ACTIONS(2338), - [sym_super] = ACTIONS(2338), - [sym_true] = ACTIONS(2338), - [sym_false] = ACTIONS(2338), - [sym_null] = ACTIONS(2338), - [sym_undefined] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_readonly] = ACTIONS(2338), - [anon_sym_get] = ACTIONS(2338), - [anon_sym_set] = ACTIONS(2338), - [anon_sym_declare] = ACTIONS(2338), - [anon_sym_public] = ACTIONS(2338), - [anon_sym_private] = ACTIONS(2338), - [anon_sym_protected] = ACTIONS(2338), - [anon_sym_override] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_any] = ACTIONS(2338), - [anon_sym_number] = ACTIONS(2338), - [anon_sym_boolean] = ACTIONS(2338), - [anon_sym_string] = ACTIONS(2338), - [anon_sym_symbol] = ACTIONS(2338), - [anon_sym_object] = ACTIONS(2338), - [anon_sym_property] = ACTIONS(2338), - [anon_sym_signal] = ACTIONS(2338), - [anon_sym_on] = ACTIONS(2338), - [anon_sym_required] = ACTIONS(2338), - [anon_sym_component] = ACTIONS(2338), - [anon_sym_abstract] = ACTIONS(2338), - [anon_sym_interface] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), - [sym_html_comment] = ACTIONS(5), - }, - [1097] = { - [sym_comment] = STATE(1097), - [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(2450), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(2450), - [anon_sym_import] = ACTIONS(2450), - [anon_sym_from] = 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(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(2450), - [anon_sym_of] = 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(2450), - [anon_sym_case] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LTtemplate_GT] = ACTIONS(2450), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), - [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(2450), - [anon_sym_void] = ACTIONS(2450), - [anon_sym_delete] = ACTIONS(2450), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_number] = ACTIONS(2450), - [sym_private_property_identifier] = ACTIONS(2450), - [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(2450), - [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_property] = ACTIONS(2450), - [anon_sym_signal] = ACTIONS(2450), - [anon_sym_on] = ACTIONS(2450), - [anon_sym_required] = ACTIONS(2450), - [anon_sym_component] = ACTIONS(2450), - [anon_sym_abstract] = ACTIONS(2450), - [anon_sym_interface] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [sym__automatic_semicolon] = ACTIONS(2502), - [sym_html_comment] = ACTIONS(5), - }, - [1098] = { - [sym_comment] = STATE(1098), - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_typeof] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_with] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_await] = ACTIONS(2394), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_debugger] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_throw] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_case] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LTtemplate_GT] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_using] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_void] = ACTIONS(2394), - [anon_sym_delete] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2394), - [sym_number] = ACTIONS(2394), - [sym_private_property_identifier] = ACTIONS(2394), - [sym_this] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_undefined] = ACTIONS(2394), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_abstract] = ACTIONS(2394), - [anon_sym_interface] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [sym__automatic_semicolon] = ACTIONS(2540), - [sym_html_comment] = ACTIONS(5), - }, - [1099] = { - [sym_comment] = STATE(1099), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym_html_comment] = ACTIONS(5), - }, - [1100] = { - [sym_comment] = STATE(1100), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_typeof] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_from] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_await] = ACTIONS(2416), - [anon_sym_of] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_debugger] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_case] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LTtemplate_GT] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_using] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_void] = ACTIONS(2416), - [anon_sym_delete] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_number] = ACTIONS(2416), - [sym_private_property_identifier] = ACTIONS(2416), - [sym_this] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_true] = ACTIONS(2416), - [sym_false] = ACTIONS(2416), - [sym_null] = ACTIONS(2416), - [sym_undefined] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_property] = ACTIONS(2416), - [anon_sym_signal] = ACTIONS(2416), - [anon_sym_on] = ACTIONS(2416), - [anon_sym_required] = ACTIONS(2416), - [anon_sym_component] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [sym__automatic_semicolon] = ACTIONS(2498), - [sym_html_comment] = ACTIONS(5), - }, - [1101] = { - [sym_comment] = STATE(1101), + [1090] = { + [sym_comment] = STATE(1090), [sym_identifier] = ACTIONS(3524), [anon_sym_export] = ACTIONS(3524), [anon_sym_default] = ACTIONS(3524), @@ -166843,8 +165517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3524), [sym_html_comment] = ACTIONS(5), }, - [1102] = { - [sym_comment] = STATE(1102), + [1091] = { + [sym_comment] = STATE(1091), [sym_identifier] = ACTIONS(3526), [anon_sym_export] = ACTIONS(3526), [anon_sym_default] = ACTIONS(3526), @@ -166933,8 +165607,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3526), [sym_html_comment] = ACTIONS(5), }, - [1103] = { - [sym_comment] = STATE(1103), + [1092] = { + [sym_comment] = STATE(1092), [sym_identifier] = ACTIONS(3528), [anon_sym_export] = ACTIONS(3528), [anon_sym_default] = ACTIONS(3528), @@ -167023,98 +165697,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3528), [sym_html_comment] = ACTIONS(5), }, - [1104] = { - [sym_comment] = STATE(1104), - [sym_identifier] = ACTIONS(3530), - [anon_sym_export] = ACTIONS(3530), - [anon_sym_default] = ACTIONS(3530), - [anon_sym_type] = ACTIONS(3530), - [anon_sym_namespace] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_RBRACE] = ACTIONS(3530), - [anon_sym_typeof] = ACTIONS(3530), - [anon_sym_import] = ACTIONS(3530), - [anon_sym_from] = ACTIONS(3530), - [anon_sym_with] = ACTIONS(3530), - [anon_sym_var] = ACTIONS(3530), - [anon_sym_let] = ACTIONS(3530), - [anon_sym_const] = ACTIONS(3530), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_else] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(3530), - [anon_sym_switch] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3530), - [anon_sym_await] = ACTIONS(3530), - [anon_sym_of] = ACTIONS(3530), - [anon_sym_while] = ACTIONS(3530), - [anon_sym_do] = ACTIONS(3530), - [anon_sym_try] = ACTIONS(3530), - [anon_sym_break] = ACTIONS(3530), - [anon_sym_continue] = ACTIONS(3530), - [anon_sym_debugger] = ACTIONS(3530), - [anon_sym_return] = ACTIONS(3530), - [anon_sym_throw] = ACTIONS(3530), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym_case] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3530), - [anon_sym_LTtemplate_GT] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [anon_sym_SQUOTE] = ACTIONS(3530), - [anon_sym_class] = ACTIONS(3530), - [anon_sym_async] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3530), - [anon_sym_using] = ACTIONS(3530), - [anon_sym_PLUS] = ACTIONS(3530), - [anon_sym_DASH] = ACTIONS(3530), - [anon_sym_SLASH] = ACTIONS(3530), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_void] = ACTIONS(3530), - [anon_sym_delete] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3530), - [sym_number] = ACTIONS(3530), - [sym_private_property_identifier] = ACTIONS(3530), - [sym_this] = ACTIONS(3530), - [sym_super] = ACTIONS(3530), - [sym_true] = ACTIONS(3530), - [sym_false] = ACTIONS(3530), - [sym_null] = ACTIONS(3530), - [sym_undefined] = ACTIONS(3530), - [anon_sym_AT] = ACTIONS(3530), - [anon_sym_static] = ACTIONS(3530), - [anon_sym_readonly] = ACTIONS(3530), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_declare] = ACTIONS(3530), - [anon_sym_public] = ACTIONS(3530), - [anon_sym_private] = ACTIONS(3530), - [anon_sym_protected] = ACTIONS(3530), - [anon_sym_override] = ACTIONS(3530), - [anon_sym_module] = ACTIONS(3530), - [anon_sym_any] = ACTIONS(3530), - [anon_sym_number] = ACTIONS(3530), - [anon_sym_boolean] = ACTIONS(3530), - [anon_sym_string] = ACTIONS(3530), - [anon_sym_symbol] = ACTIONS(3530), - [anon_sym_object] = ACTIONS(3530), - [anon_sym_property] = ACTIONS(3530), - [anon_sym_signal] = ACTIONS(3530), - [anon_sym_on] = ACTIONS(3530), - [anon_sym_required] = ACTIONS(3530), - [anon_sym_component] = ACTIONS(3530), - [anon_sym_abstract] = ACTIONS(3530), - [anon_sym_interface] = ACTIONS(3530), - [anon_sym_enum] = ACTIONS(3530), + [1093] = { + [sym_comment] = STATE(1093), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), [sym_html_comment] = ACTIONS(5), }, - [1105] = { - [sym_comment] = STATE(1105), + [1094] = { + [sym_comment] = STATE(1094), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_case] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3530), + [sym_html_comment] = ACTIONS(5), + }, + [1095] = { + [sym_comment] = STATE(1095), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym_html_comment] = ACTIONS(5), + }, + [1096] = { + [sym_comment] = STATE(1096), [sym_identifier] = ACTIONS(3532), [anon_sym_export] = ACTIONS(3532), [anon_sym_default] = ACTIONS(3532), @@ -167203,98 +166057,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3532), [sym_html_comment] = ACTIONS(5), }, - [1106] = { - [sym_comment] = STATE(1106), - [sym_identifier] = ACTIONS(2370), - [anon_sym_export] = ACTIONS(2370), - [anon_sym_default] = ACTIONS(2370), - [anon_sym_type] = ACTIONS(2370), - [anon_sym_namespace] = ACTIONS(2370), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_typeof] = ACTIONS(2370), - [anon_sym_import] = ACTIONS(2370), - [anon_sym_from] = ACTIONS(2370), - [anon_sym_with] = ACTIONS(2370), - [anon_sym_var] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_const] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_switch] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_await] = ACTIONS(2370), - [anon_sym_of] = ACTIONS(2370), - [anon_sym_while] = ACTIONS(2370), - [anon_sym_do] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_debugger] = ACTIONS(2370), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_throw] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_case] = ACTIONS(2370), - [anon_sym_yield] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2370), - [anon_sym_LTtemplate_GT] = ACTIONS(2370), - [anon_sym_DOT] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_class] = ACTIONS(2370), - [anon_sym_async] = ACTIONS(2370), - [anon_sym_function] = ACTIONS(2370), - [anon_sym_new] = ACTIONS(2370), - [anon_sym_using] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_SLASH] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_void] = ACTIONS(2370), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2370), - [sym_number] = ACTIONS(2370), - [sym_private_property_identifier] = ACTIONS(2370), - [sym_this] = ACTIONS(2370), - [sym_super] = ACTIONS(2370), - [sym_true] = ACTIONS(2370), - [sym_false] = ACTIONS(2370), - [sym_null] = ACTIONS(2370), - [sym_undefined] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_readonly] = ACTIONS(2370), - [anon_sym_get] = ACTIONS(2370), - [anon_sym_set] = ACTIONS(2370), - [anon_sym_declare] = ACTIONS(2370), - [anon_sym_public] = ACTIONS(2370), - [anon_sym_private] = ACTIONS(2370), - [anon_sym_protected] = ACTIONS(2370), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2370), - [anon_sym_any] = ACTIONS(2370), - [anon_sym_number] = ACTIONS(2370), - [anon_sym_boolean] = ACTIONS(2370), - [anon_sym_string] = ACTIONS(2370), - [anon_sym_symbol] = ACTIONS(2370), - [anon_sym_object] = ACTIONS(2370), - [anon_sym_property] = ACTIONS(2370), - [anon_sym_signal] = ACTIONS(2370), - [anon_sym_on] = ACTIONS(2370), - [anon_sym_required] = ACTIONS(2370), - [anon_sym_component] = ACTIONS(2370), - [anon_sym_abstract] = ACTIONS(2370), - [anon_sym_interface] = ACTIONS(2370), - [anon_sym_enum] = ACTIONS(2370), - [sym_html_comment] = ACTIONS(5), - }, - [1107] = { - [sym_comment] = STATE(1107), + [1097] = { + [sym_comment] = STATE(1097), [sym_identifier] = ACTIONS(3534), [anon_sym_export] = ACTIONS(3534), [anon_sym_default] = ACTIONS(3534), @@ -167383,8 +166147,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3534), [sym_html_comment] = ACTIONS(5), }, - [1108] = { - [sym_comment] = STATE(1108), + [1098] = { + [sym_comment] = STATE(1098), [sym_identifier] = ACTIONS(3536), [anon_sym_export] = ACTIONS(3536), [anon_sym_default] = ACTIONS(3536), @@ -167473,188 +166237,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3536), [sym_html_comment] = ACTIONS(5), }, - [1109] = { - [sym_comment] = STATE(1109), - [sym_identifier] = ACTIONS(2410), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_typeof] = ACTIONS(2410), - [anon_sym_import] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_with] = ACTIONS(2410), - [anon_sym_var] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_switch] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_of] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_debugger] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_throw] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_case] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LTtemplate_GT] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_function] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_using] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_void] = ACTIONS(2410), - [anon_sym_delete] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), + [1099] = { + [sym_comment] = STATE(1099), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2410), - [sym_number] = ACTIONS(2410), - [sym_private_property_identifier] = ACTIONS(2410), - [sym_this] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), - [sym_null] = ACTIONS(2410), - [sym_undefined] = ACTIONS(2410), - [anon_sym_AT] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_signal] = ACTIONS(2410), - [anon_sym_on] = ACTIONS(2410), - [anon_sym_required] = ACTIONS(2410), - [anon_sym_component] = ACTIONS(2410), - [anon_sym_abstract] = ACTIONS(2410), - [anon_sym_interface] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), [sym_html_comment] = ACTIONS(5), }, - [1110] = { - [sym_comment] = STATE(1110), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1100] = { + [sym_comment] = STATE(1100), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_finally] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), [sym_html_comment] = ACTIONS(5), }, - [1111] = { - [sym_comment] = STATE(1111), + [1101] = { + [sym_comment] = STATE(1101), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [1102] = { + [sym_comment] = STATE(1102), [sym_identifier] = ACTIONS(3538), [anon_sym_export] = ACTIONS(3538), [anon_sym_default] = ACTIONS(3538), @@ -167743,188 +166597,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3538), [sym_html_comment] = ACTIONS(5), }, - [1112] = { - [sym_statement_block] = STATE(1395), - [sym_comment] = STATE(1112), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3432), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_case] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym_html_comment] = ACTIONS(5), - }, - [1113] = { - [sym_comment] = STATE(1113), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [sym_html_comment] = ACTIONS(5), - }, - [1114] = { - [sym_comment] = STATE(1114), + [1103] = { + [sym_comment] = STATE(1103), [sym_identifier] = ACTIONS(3540), [anon_sym_export] = ACTIONS(3540), [anon_sym_default] = ACTIONS(3540), @@ -168013,8 +166687,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3540), [sym_html_comment] = ACTIONS(5), }, - [1115] = { - [sym_comment] = STATE(1115), + [1104] = { + [sym_comment] = STATE(1104), [sym_identifier] = ACTIONS(3542), [anon_sym_export] = ACTIONS(3542), [anon_sym_default] = ACTIONS(3542), @@ -168103,8 +166777,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3542), [sym_html_comment] = ACTIONS(5), }, - [1116] = { - [sym_comment] = STATE(1116), + [1105] = { + [sym_comment] = STATE(1105), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [1106] = { + [sym_comment] = STATE(1106), [sym_identifier] = ACTIONS(3544), [anon_sym_export] = ACTIONS(3544), [anon_sym_default] = ACTIONS(3544), @@ -168193,8 +166957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3544), [sym_html_comment] = ACTIONS(5), }, - [1117] = { - [sym_comment] = STATE(1117), + [1107] = { + [sym_comment] = STATE(1107), [sym_identifier] = ACTIONS(3546), [anon_sym_export] = ACTIONS(3546), [anon_sym_default] = ACTIONS(3546), @@ -168283,8 +167047,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3546), [sym_html_comment] = ACTIONS(5), }, - [1118] = { - [sym_comment] = STATE(1118), + [1108] = { + [sym_comment] = STATE(1108), [sym_identifier] = ACTIONS(3548), [anon_sym_export] = ACTIONS(3548), [anon_sym_default] = ACTIONS(3548), @@ -168373,8 +167137,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3548), [sym_html_comment] = ACTIONS(5), }, - [1119] = { - [sym_comment] = STATE(1119), + [1109] = { + [sym_comment] = STATE(1109), [sym_identifier] = ACTIONS(3550), [anon_sym_export] = ACTIONS(3550), [anon_sym_default] = ACTIONS(3550), @@ -168463,8 +167227,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3550), [sym_html_comment] = ACTIONS(5), }, - [1120] = { - [sym_comment] = STATE(1120), + [1110] = { + [sym_comment] = STATE(1110), [sym_identifier] = ACTIONS(3552), [anon_sym_export] = ACTIONS(3552), [anon_sym_default] = ACTIONS(3552), @@ -168553,98 +167317,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3552), [sym_html_comment] = ACTIONS(5), }, - [1121] = { - [sym_comment] = STATE(1121), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [sym_html_comment] = ACTIONS(5), - }, - [1122] = { - [sym_comment] = STATE(1122), + [1111] = { + [sym_comment] = STATE(1111), [sym_identifier] = ACTIONS(3554), [anon_sym_export] = ACTIONS(3554), [anon_sym_default] = ACTIONS(3554), @@ -168733,188 +167407,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3554), [sym_html_comment] = ACTIONS(5), }, - [1123] = { - [sym_comment] = STATE(1123), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [sym_html_comment] = ACTIONS(5), - }, - [1124] = { - [sym_comment] = STATE(1124), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3556), + [1112] = { + [sym_comment] = STATE(1112), + [sym_identifier] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_default] = ACTIONS(3556), + [anon_sym_type] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_typeof] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_from] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3556), + [anon_sym_var] = ACTIONS(3556), + [anon_sym_let] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3556), + [anon_sym_await] = ACTIONS(3556), + [anon_sym_of] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_debugger] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_case] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_LTtemplate_GT] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_async] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_SLASH] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_void] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3556), + [sym_number] = ACTIONS(3556), + [sym_private_property_identifier] = ACTIONS(3556), + [sym_this] = ACTIONS(3556), + [sym_super] = ACTIONS(3556), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [sym_null] = ACTIONS(3556), + [sym_undefined] = ACTIONS(3556), + [anon_sym_AT] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_readonly] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3556), + [anon_sym_set] = ACTIONS(3556), + [anon_sym_declare] = ACTIONS(3556), + [anon_sym_public] = ACTIONS(3556), + [anon_sym_private] = ACTIONS(3556), + [anon_sym_protected] = ACTIONS(3556), + [anon_sym_override] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_any] = ACTIONS(3556), + [anon_sym_number] = ACTIONS(3556), + [anon_sym_boolean] = ACTIONS(3556), + [anon_sym_string] = ACTIONS(3556), + [anon_sym_symbol] = ACTIONS(3556), + [anon_sym_object] = ACTIONS(3556), + [anon_sym_property] = ACTIONS(3556), + [anon_sym_signal] = ACTIONS(3556), + [anon_sym_on] = ACTIONS(3556), + [anon_sym_required] = ACTIONS(3556), + [anon_sym_component] = ACTIONS(3556), + [anon_sym_abstract] = ACTIONS(3556), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), [sym_html_comment] = ACTIONS(5), }, - [1125] = { - [sym_comment] = STATE(1125), + [1113] = { + [sym_comment] = STATE(1113), [sym_identifier] = ACTIONS(3558), [anon_sym_export] = ACTIONS(3558), [anon_sym_default] = ACTIONS(3558), @@ -169003,98 +167587,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3558), [sym_html_comment] = ACTIONS(5), }, - [1126] = { - [sym_comment] = STATE(1126), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym_html_comment] = ACTIONS(5), - }, - [1127] = { - [sym_comment] = STATE(1127), + [1114] = { + [sym_comment] = STATE(1114), [sym_identifier] = ACTIONS(3560), [anon_sym_export] = ACTIONS(3560), [anon_sym_default] = ACTIONS(3560), @@ -169183,458 +167677,548 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3560), [sym_html_comment] = ACTIONS(5), }, - [1128] = { - [sym_comment] = STATE(1128), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [1115] = { + [sym_comment] = STATE(1115), + [sym_identifier] = ACTIONS(3562), + [anon_sym_export] = ACTIONS(3562), + [anon_sym_default] = ACTIONS(3562), + [anon_sym_type] = ACTIONS(3562), + [anon_sym_namespace] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_RBRACE] = ACTIONS(3562), + [anon_sym_typeof] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_from] = ACTIONS(3562), + [anon_sym_with] = ACTIONS(3562), + [anon_sym_var] = ACTIONS(3562), + [anon_sym_let] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_else] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3562), + [anon_sym_await] = ACTIONS(3562), + [anon_sym_of] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_debugger] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym_case] = ACTIONS(3562), + [anon_sym_yield] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_LTtemplate_GT] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_async] = ACTIONS(3562), + [anon_sym_function] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_using] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_SLASH] = ACTIONS(3562), + [anon_sym_LT] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_void] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3562), + [sym_number] = ACTIONS(3562), + [sym_private_property_identifier] = ACTIONS(3562), + [sym_this] = ACTIONS(3562), + [sym_super] = ACTIONS(3562), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [sym_null] = ACTIONS(3562), + [sym_undefined] = ACTIONS(3562), + [anon_sym_AT] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_readonly] = ACTIONS(3562), + [anon_sym_get] = ACTIONS(3562), + [anon_sym_set] = ACTIONS(3562), + [anon_sym_declare] = ACTIONS(3562), + [anon_sym_public] = ACTIONS(3562), + [anon_sym_private] = ACTIONS(3562), + [anon_sym_protected] = ACTIONS(3562), + [anon_sym_override] = ACTIONS(3562), + [anon_sym_module] = ACTIONS(3562), + [anon_sym_any] = ACTIONS(3562), + [anon_sym_number] = ACTIONS(3562), + [anon_sym_boolean] = ACTIONS(3562), + [anon_sym_string] = ACTIONS(3562), + [anon_sym_symbol] = ACTIONS(3562), + [anon_sym_object] = ACTIONS(3562), + [anon_sym_property] = ACTIONS(3562), + [anon_sym_signal] = ACTIONS(3562), + [anon_sym_on] = ACTIONS(3562), + [anon_sym_required] = ACTIONS(3562), + [anon_sym_component] = ACTIONS(3562), + [anon_sym_abstract] = ACTIONS(3562), + [anon_sym_interface] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), [sym_html_comment] = ACTIONS(5), }, - [1129] = { - [sym_statement_block] = STATE(1576), - [sym_comment] = STATE(1129), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3564), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), + [1116] = { + [sym_comment] = STATE(1116), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_case] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), [sym_html_comment] = ACTIONS(5), }, - [1130] = { - [sym_statement_block] = STATE(1576), - [sym_comment] = STATE(1130), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), + [1117] = { + [sym_comment] = STATE(1117), + [sym_identifier] = ACTIONS(3566), + [anon_sym_export] = ACTIONS(3566), + [anon_sym_default] = ACTIONS(3566), + [anon_sym_type] = ACTIONS(3566), + [anon_sym_namespace] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_typeof] = ACTIONS(3566), + [anon_sym_import] = ACTIONS(3566), + [anon_sym_from] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3566), + [anon_sym_var] = ACTIONS(3566), + [anon_sym_let] = ACTIONS(3566), + [anon_sym_const] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_else] = ACTIONS(3566), + [anon_sym_if] = ACTIONS(3566), + [anon_sym_switch] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_await] = ACTIONS(3566), + [anon_sym_of] = ACTIONS(3566), + [anon_sym_while] = ACTIONS(3566), + [anon_sym_do] = ACTIONS(3566), + [anon_sym_try] = ACTIONS(3566), + [anon_sym_break] = ACTIONS(3566), + [anon_sym_continue] = ACTIONS(3566), + [anon_sym_debugger] = ACTIONS(3566), + [anon_sym_return] = ACTIONS(3566), + [anon_sym_throw] = ACTIONS(3566), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym_case] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LTtemplate_GT] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_class] = ACTIONS(3566), + [anon_sym_async] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3566), + [anon_sym_using] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_void] = ACTIONS(3566), + [anon_sym_delete] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3566), + [sym_number] = ACTIONS(3566), + [sym_private_property_identifier] = ACTIONS(3566), + [sym_this] = ACTIONS(3566), + [sym_super] = ACTIONS(3566), + [sym_true] = ACTIONS(3566), + [sym_false] = ACTIONS(3566), + [sym_null] = ACTIONS(3566), + [sym_undefined] = ACTIONS(3566), + [anon_sym_AT] = ACTIONS(3566), + [anon_sym_static] = ACTIONS(3566), + [anon_sym_readonly] = ACTIONS(3566), + [anon_sym_get] = ACTIONS(3566), + [anon_sym_set] = ACTIONS(3566), + [anon_sym_declare] = ACTIONS(3566), + [anon_sym_public] = ACTIONS(3566), + [anon_sym_private] = ACTIONS(3566), + [anon_sym_protected] = ACTIONS(3566), + [anon_sym_override] = ACTIONS(3566), + [anon_sym_module] = ACTIONS(3566), + [anon_sym_any] = ACTIONS(3566), + [anon_sym_number] = ACTIONS(3566), + [anon_sym_boolean] = ACTIONS(3566), + [anon_sym_string] = ACTIONS(3566), + [anon_sym_symbol] = ACTIONS(3566), + [anon_sym_object] = ACTIONS(3566), + [anon_sym_property] = ACTIONS(3566), + [anon_sym_signal] = ACTIONS(3566), + [anon_sym_on] = ACTIONS(3566), + [anon_sym_required] = ACTIONS(3566), + [anon_sym_component] = ACTIONS(3566), + [anon_sym_abstract] = ACTIONS(3566), + [anon_sym_interface] = ACTIONS(3566), + [anon_sym_enum] = ACTIONS(3566), [sym_html_comment] = ACTIONS(5), }, - [1131] = { - [sym_comment] = STATE(1131), - [sym_identifier] = ACTIONS(3568), - [anon_sym_export] = ACTIONS(3568), - [anon_sym_default] = ACTIONS(3568), - [anon_sym_type] = ACTIONS(3568), - [anon_sym_namespace] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3568), - [anon_sym_RBRACE] = ACTIONS(3568), - [anon_sym_typeof] = ACTIONS(3568), - [anon_sym_import] = ACTIONS(3568), - [anon_sym_from] = ACTIONS(3568), - [anon_sym_with] = ACTIONS(3568), - [anon_sym_var] = ACTIONS(3568), - [anon_sym_let] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_BANG] = ACTIONS(3568), - [anon_sym_else] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_await] = ACTIONS(3568), - [anon_sym_of] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_debugger] = ACTIONS(3568), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_SEMI] = ACTIONS(3568), - [anon_sym_case] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_LTtemplate_GT] = ACTIONS(3568), - [anon_sym_DQUOTE] = ACTIONS(3568), - [anon_sym_SQUOTE] = ACTIONS(3568), - [anon_sym_class] = ACTIONS(3568), - [anon_sym_async] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_using] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_SLASH] = ACTIONS(3568), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_TILDE] = ACTIONS(3568), - [anon_sym_void] = ACTIONS(3568), - [anon_sym_delete] = ACTIONS(3568), - [anon_sym_PLUS_PLUS] = ACTIONS(3568), - [anon_sym_DASH_DASH] = ACTIONS(3568), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3568), - [sym_number] = ACTIONS(3568), - [sym_private_property_identifier] = ACTIONS(3568), - [sym_this] = ACTIONS(3568), - [sym_super] = ACTIONS(3568), - [sym_true] = ACTIONS(3568), - [sym_false] = ACTIONS(3568), - [sym_null] = ACTIONS(3568), - [sym_undefined] = ACTIONS(3568), - [anon_sym_AT] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_readonly] = ACTIONS(3568), - [anon_sym_get] = ACTIONS(3568), - [anon_sym_set] = ACTIONS(3568), - [anon_sym_declare] = ACTIONS(3568), - [anon_sym_public] = ACTIONS(3568), - [anon_sym_private] = ACTIONS(3568), - [anon_sym_protected] = ACTIONS(3568), - [anon_sym_override] = ACTIONS(3568), - [anon_sym_module] = ACTIONS(3568), - [anon_sym_any] = ACTIONS(3568), - [anon_sym_number] = ACTIONS(3568), - [anon_sym_boolean] = ACTIONS(3568), - [anon_sym_string] = ACTIONS(3568), - [anon_sym_symbol] = ACTIONS(3568), - [anon_sym_object] = ACTIONS(3568), - [anon_sym_property] = ACTIONS(3568), - [anon_sym_signal] = ACTIONS(3568), - [anon_sym_on] = ACTIONS(3568), - [anon_sym_required] = ACTIONS(3568), - [anon_sym_component] = ACTIONS(3568), - [anon_sym_abstract] = ACTIONS(3568), - [anon_sym_interface] = ACTIONS(3568), - [anon_sym_enum] = ACTIONS(3568), + [1118] = { + [sym_comment] = STATE(1118), + [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(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_import] = ACTIONS(2450), + [anon_sym_from] = 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(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2450), + [anon_sym_of] = 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(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LTtemplate_GT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [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(2450), + [anon_sym_void] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [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(2450), + [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_property] = ACTIONS(2450), + [anon_sym_signal] = ACTIONS(2450), + [anon_sym_on] = ACTIONS(2450), + [anon_sym_required] = ACTIONS(2450), + [anon_sym_component] = ACTIONS(2450), + [anon_sym_abstract] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), [sym_html_comment] = ACTIONS(5), }, - [1132] = { - [sym_comment] = STATE(1132), - [sym_identifier] = ACTIONS(3570), - [anon_sym_export] = ACTIONS(3570), - [anon_sym_default] = ACTIONS(3570), - [anon_sym_type] = ACTIONS(3570), - [anon_sym_namespace] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym_typeof] = ACTIONS(3570), - [anon_sym_import] = ACTIONS(3570), - [anon_sym_from] = ACTIONS(3570), - [anon_sym_with] = ACTIONS(3570), - [anon_sym_var] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_const] = ACTIONS(3570), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_else] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_switch] = ACTIONS(3570), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_await] = ACTIONS(3570), - [anon_sym_of] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_break] = ACTIONS(3570), - [anon_sym_continue] = ACTIONS(3570), - [anon_sym_debugger] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_throw] = ACTIONS(3570), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym_case] = ACTIONS(3570), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LTtemplate_GT] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_SQUOTE] = ACTIONS(3570), - [anon_sym_class] = ACTIONS(3570), - [anon_sym_async] = ACTIONS(3570), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_using] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_void] = ACTIONS(3570), - [anon_sym_delete] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3570), - [sym_number] = ACTIONS(3570), - [sym_private_property_identifier] = ACTIONS(3570), - [sym_this] = ACTIONS(3570), - [sym_super] = ACTIONS(3570), - [sym_true] = ACTIONS(3570), - [sym_false] = ACTIONS(3570), - [sym_null] = ACTIONS(3570), - [sym_undefined] = ACTIONS(3570), - [anon_sym_AT] = ACTIONS(3570), - [anon_sym_static] = ACTIONS(3570), - [anon_sym_readonly] = ACTIONS(3570), - [anon_sym_get] = ACTIONS(3570), - [anon_sym_set] = ACTIONS(3570), - [anon_sym_declare] = ACTIONS(3570), - [anon_sym_public] = ACTIONS(3570), - [anon_sym_private] = ACTIONS(3570), - [anon_sym_protected] = ACTIONS(3570), - [anon_sym_override] = ACTIONS(3570), - [anon_sym_module] = ACTIONS(3570), - [anon_sym_any] = ACTIONS(3570), - [anon_sym_number] = ACTIONS(3570), - [anon_sym_boolean] = ACTIONS(3570), - [anon_sym_string] = ACTIONS(3570), - [anon_sym_symbol] = ACTIONS(3570), - [anon_sym_object] = ACTIONS(3570), - [anon_sym_property] = ACTIONS(3570), - [anon_sym_signal] = ACTIONS(3570), - [anon_sym_on] = ACTIONS(3570), - [anon_sym_required] = ACTIONS(3570), - [anon_sym_component] = ACTIONS(3570), - [anon_sym_abstract] = ACTIONS(3570), - [anon_sym_interface] = ACTIONS(3570), - [anon_sym_enum] = ACTIONS(3570), + [1119] = { + [sym_comment] = STATE(1119), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3568), [sym_html_comment] = ACTIONS(5), }, - [1133] = { - [sym_comment] = STATE(1133), + [1120] = { + [sym_comment] = STATE(1120), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3570), + [sym_html_comment] = ACTIONS(5), + }, + [1121] = { + [sym_comment] = STATE(1121), [sym_identifier] = ACTIONS(3572), [anon_sym_export] = ACTIONS(3572), [anon_sym_default] = ACTIONS(3572), @@ -169723,8 +168307,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3572), [sym_html_comment] = ACTIONS(5), }, - [1134] = { - [sym_comment] = STATE(1134), + [1122] = { + [sym_comment] = STATE(1122), [sym_identifier] = ACTIONS(3574), [anon_sym_export] = ACTIONS(3574), [anon_sym_default] = ACTIONS(3574), @@ -169813,8 +168397,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3574), [sym_html_comment] = ACTIONS(5), }, - [1135] = { - [sym_comment] = STATE(1135), + [1123] = { + [sym_comment] = STATE(1123), [sym_identifier] = ACTIONS(3576), [anon_sym_export] = ACTIONS(3576), [anon_sym_default] = ACTIONS(3576), @@ -169903,98 +168487,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3576), [sym_html_comment] = ACTIONS(5), }, - [1136] = { - [sym_comment] = STATE(1136), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1124] = { + [sym_comment] = STATE(1124), + [sym_identifier] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_default] = ACTIONS(3576), + [anon_sym_type] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(3576), + [anon_sym_typeof] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_from] = ACTIONS(3576), + [anon_sym_with] = ACTIONS(3576), + [anon_sym_var] = ACTIONS(3576), + [anon_sym_let] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3576), + [anon_sym_else] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_await] = ACTIONS(3576), + [anon_sym_of] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_debugger] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3576), + [anon_sym_case] = ACTIONS(3576), + [anon_sym_yield] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_LTtemplate_GT] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(3576), + [anon_sym_SQUOTE] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_async] = ACTIONS(3576), + [anon_sym_function] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_TILDE] = ACTIONS(3576), + [anon_sym_void] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_PLUS_PLUS] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3576), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(3576), + [sym_number] = ACTIONS(3576), + [sym_private_property_identifier] = ACTIONS(3576), + [sym_this] = ACTIONS(3576), + [sym_super] = ACTIONS(3576), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [sym_null] = ACTIONS(3576), + [sym_undefined] = ACTIONS(3576), + [anon_sym_AT] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_readonly] = ACTIONS(3576), + [anon_sym_get] = ACTIONS(3576), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_declare] = ACTIONS(3576), + [anon_sym_public] = ACTIONS(3576), + [anon_sym_private] = ACTIONS(3576), + [anon_sym_protected] = ACTIONS(3576), + [anon_sym_override] = ACTIONS(3576), + [anon_sym_module] = ACTIONS(3576), + [anon_sym_any] = ACTIONS(3576), + [anon_sym_number] = ACTIONS(3576), + [anon_sym_boolean] = ACTIONS(3576), + [anon_sym_string] = ACTIONS(3576), + [anon_sym_symbol] = ACTIONS(3576), + [anon_sym_object] = ACTIONS(3576), + [anon_sym_property] = ACTIONS(3576), + [anon_sym_signal] = ACTIONS(3576), + [anon_sym_on] = ACTIONS(3576), + [anon_sym_required] = ACTIONS(3576), + [anon_sym_component] = ACTIONS(3576), + [anon_sym_abstract] = ACTIONS(3576), + [anon_sym_interface] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), [sym_html_comment] = ACTIONS(5), }, - [1137] = { - [sym_comment] = STATE(1137), + [1125] = { + [sym_comment] = STATE(1125), [sym_identifier] = ACTIONS(3578), [anon_sym_export] = ACTIONS(3578), [anon_sym_default] = ACTIONS(3578), @@ -170083,368 +168667,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3578), [sym_html_comment] = ACTIONS(5), }, - [1138] = { - [sym_comment] = STATE(1138), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_case] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3580), - [sym_html_comment] = ACTIONS(5), - }, - [1139] = { - [sym_comment] = STATE(1139), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_default] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_else] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_case] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), - [sym_html_comment] = ACTIONS(5), - }, - [1140] = { - [sym_comment] = STATE(1140), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym_html_comment] = ACTIONS(5), - }, - [1141] = { - [sym_comment] = STATE(1141), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_default] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_else] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_case] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), + [1126] = { + [sym_comment] = STATE(1126), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), [sym_html_comment] = ACTIONS(5), }, - [1142] = { - [sym_comment] = STATE(1142), + [1127] = { + [sym_comment] = STATE(1127), [sym_identifier] = ACTIONS(3582), [anon_sym_export] = ACTIONS(3582), [anon_sym_default] = ACTIONS(3582), @@ -170533,8 +168847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3582), [sym_html_comment] = ACTIONS(5), }, - [1143] = { - [sym_comment] = STATE(1143), + [1128] = { + [sym_comment] = STATE(1128), [sym_identifier] = ACTIONS(3584), [anon_sym_export] = ACTIONS(3584), [anon_sym_default] = ACTIONS(3584), @@ -170623,98 +168937,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3584), [sym_html_comment] = ACTIONS(5), }, - [1144] = { - [sym_comment] = STATE(1144), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym_html_comment] = ACTIONS(5), - }, - [1145] = { - [sym_comment] = STATE(1145), + [1129] = { + [sym_comment] = STATE(1129), [sym_identifier] = ACTIONS(3586), [anon_sym_export] = ACTIONS(3586), [anon_sym_default] = ACTIONS(3586), @@ -170803,188 +169027,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3586), [sym_html_comment] = ACTIONS(5), }, - [1146] = { - [sym_comment] = STATE(1146), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_finally] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym_html_comment] = ACTIONS(5), - }, - [1147] = { - [sym_comment] = STATE(1147), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1130] = { + [sym_comment] = STATE(1130), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2336), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1148] = { - [sym_comment] = STATE(1148), + [1131] = { + [sym_comment] = STATE(1131), [sym_identifier] = ACTIONS(3588), [anon_sym_export] = ACTIONS(3588), [anon_sym_default] = ACTIONS(3588), @@ -171073,98 +169207,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1149] = { - [sym_comment] = STATE(1149), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2352), + [1132] = { + [sym_comment] = STATE(1132), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1150] = { - [sym_comment] = STATE(1150), + [1133] = { + [sym_comment] = STATE(1133), [sym_identifier] = ACTIONS(3590), [anon_sym_export] = ACTIONS(3590), [anon_sym_default] = ACTIONS(3590), @@ -171253,8 +169387,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3590), [sym_html_comment] = ACTIONS(5), }, - [1151] = { - [sym_comment] = STATE(1151), + [1134] = { + [sym_comment] = STATE(1134), [sym_identifier] = ACTIONS(3592), [anon_sym_export] = ACTIONS(3592), [anon_sym_default] = ACTIONS(3592), @@ -171343,8 +169477,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3592), [sym_html_comment] = ACTIONS(5), }, - [1152] = { - [sym_comment] = STATE(1152), + [1135] = { + [sym_comment] = STATE(1135), [sym_identifier] = ACTIONS(3594), [anon_sym_export] = ACTIONS(3594), [anon_sym_default] = ACTIONS(3594), @@ -171433,8 +169567,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3594), [sym_html_comment] = ACTIONS(5), }, - [1153] = { - [sym_comment] = STATE(1153), + [1136] = { + [sym_comment] = STATE(1136), [sym_identifier] = ACTIONS(3596), [anon_sym_export] = ACTIONS(3596), [anon_sym_default] = ACTIONS(3596), @@ -171523,188 +169657,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3596), [sym_html_comment] = ACTIONS(5), }, - [1154] = { - [sym_comment] = STATE(1154), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1137] = { + [sym_comment] = STATE(1137), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_default] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_typeof] = ACTIONS(2434), + [anon_sym_import] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_with] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_debugger] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_throw] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_case] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LTtemplate_GT] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_class] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2434), + [anon_sym_delete] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_private_property_identifier] = ACTIONS(2434), + [sym_this] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_true] = ACTIONS(2434), + [sym_false] = ACTIONS(2434), + [sym_null] = ACTIONS(2434), + [sym_undefined] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_abstract] = ACTIONS(2434), + [anon_sym_interface] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [sym__automatic_semicolon] = ACTIONS(2436), [sym_html_comment] = ACTIONS(5), }, - [1155] = { - [sym_comment] = STATE(1155), - [sym_identifier] = ACTIONS(3596), - [anon_sym_export] = ACTIONS(3596), - [anon_sym_default] = ACTIONS(3596), - [anon_sym_type] = ACTIONS(3596), - [anon_sym_namespace] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3596), - [anon_sym_RBRACE] = ACTIONS(3596), - [anon_sym_typeof] = ACTIONS(3596), - [anon_sym_import] = ACTIONS(3596), - [anon_sym_from] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_let] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3596), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_await] = ACTIONS(3596), - [anon_sym_of] = ACTIONS(3596), - [anon_sym_while] = ACTIONS(3596), - [anon_sym_do] = ACTIONS(3596), - [anon_sym_try] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_debugger] = ACTIONS(3596), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_throw] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3596), - [anon_sym_case] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3596), - [anon_sym_LTtemplate_GT] = ACTIONS(3596), - [anon_sym_DQUOTE] = ACTIONS(3596), - [anon_sym_SQUOTE] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_async] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_using] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_TILDE] = ACTIONS(3596), - [anon_sym_void] = ACTIONS(3596), - [anon_sym_delete] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3596), - [anon_sym_DASH_DASH] = ACTIONS(3596), + [1138] = { + [sym_comment] = STATE(1138), + [sym_identifier] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_import] = ACTIONS(2466), + [anon_sym_from] = ACTIONS(2466), + [anon_sym_with] = ACTIONS(2466), + [anon_sym_var] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_await] = ACTIONS(2466), + [anon_sym_of] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_debugger] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_throw] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_case] = ACTIONS(2466), + [anon_sym_yield] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_LTtemplate_GT] = ACTIONS(2466), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_class] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2466), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_using] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_void] = ACTIONS(2466), + [anon_sym_delete] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3596), - [sym_number] = ACTIONS(3596), - [sym_private_property_identifier] = ACTIONS(3596), - [sym_this] = ACTIONS(3596), - [sym_super] = ACTIONS(3596), - [sym_true] = ACTIONS(3596), - [sym_false] = ACTIONS(3596), - [sym_null] = ACTIONS(3596), - [sym_undefined] = ACTIONS(3596), - [anon_sym_AT] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_readonly] = ACTIONS(3596), - [anon_sym_get] = ACTIONS(3596), - [anon_sym_set] = ACTIONS(3596), - [anon_sym_declare] = ACTIONS(3596), - [anon_sym_public] = ACTIONS(3596), - [anon_sym_private] = ACTIONS(3596), - [anon_sym_protected] = ACTIONS(3596), - [anon_sym_override] = ACTIONS(3596), - [anon_sym_module] = ACTIONS(3596), - [anon_sym_any] = ACTIONS(3596), - [anon_sym_number] = ACTIONS(3596), - [anon_sym_boolean] = ACTIONS(3596), - [anon_sym_string] = ACTIONS(3596), - [anon_sym_symbol] = ACTIONS(3596), - [anon_sym_object] = ACTIONS(3596), - [anon_sym_property] = ACTIONS(3596), - [anon_sym_signal] = ACTIONS(3596), - [anon_sym_on] = ACTIONS(3596), - [anon_sym_required] = ACTIONS(3596), - [anon_sym_component] = ACTIONS(3596), - [anon_sym_abstract] = ACTIONS(3596), - [anon_sym_interface] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), + [anon_sym_BQUOTE] = ACTIONS(2466), + [sym_number] = ACTIONS(2466), + [sym_private_property_identifier] = ACTIONS(2466), + [sym_this] = ACTIONS(2466), + [sym_super] = ACTIONS(2466), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [sym_null] = ACTIONS(2466), + [sym_undefined] = ACTIONS(2466), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), + [anon_sym_property] = ACTIONS(2466), + [anon_sym_signal] = ACTIONS(2466), + [anon_sym_on] = ACTIONS(2466), + [anon_sym_required] = ACTIONS(2466), + [anon_sym_component] = ACTIONS(2466), + [anon_sym_abstract] = ACTIONS(2466), + [anon_sym_interface] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), [sym_html_comment] = ACTIONS(5), }, - [1156] = { - [sym_comment] = STATE(1156), + [1139] = { + [sym_comment] = STATE(1139), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_case] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym_html_comment] = ACTIONS(5), + }, + [1140] = { + [sym_comment] = STATE(1140), [sym_identifier] = ACTIONS(3598), [anon_sym_export] = ACTIONS(3598), [anon_sym_default] = ACTIONS(3598), @@ -171793,8 +170017,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3598), [sym_html_comment] = ACTIONS(5), }, - [1157] = { - [sym_comment] = STATE(1157), + [1141] = { + [sym_comment] = STATE(1141), [sym_identifier] = ACTIONS(3600), [anon_sym_export] = ACTIONS(3600), [anon_sym_default] = ACTIONS(3600), @@ -171883,8 +170107,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3600), [sym_html_comment] = ACTIONS(5), }, - [1158] = { - [sym_comment] = STATE(1158), + [1142] = { + [sym_comment] = STATE(1142), + [sym_identifier] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_type] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_of] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_debugger] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LTtemplate_GT] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3600), + [sym_number] = ACTIONS(3600), + [sym_private_property_identifier] = ACTIONS(3600), + [sym_this] = ACTIONS(3600), + [sym_super] = ACTIONS(3600), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [sym_null] = ACTIONS(3600), + [sym_undefined] = ACTIONS(3600), + [anon_sym_AT] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3600), + [anon_sym_set] = ACTIONS(3600), + [anon_sym_declare] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_any] = ACTIONS(3600), + [anon_sym_number] = ACTIONS(3600), + [anon_sym_boolean] = ACTIONS(3600), + [anon_sym_string] = ACTIONS(3600), + [anon_sym_symbol] = ACTIONS(3600), + [anon_sym_object] = ACTIONS(3600), + [anon_sym_property] = ACTIONS(3600), + [anon_sym_signal] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_component] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), + [sym_html_comment] = ACTIONS(5), + }, + [1143] = { + [sym_comment] = STATE(1143), [sym_identifier] = ACTIONS(3602), [anon_sym_export] = ACTIONS(3602), [anon_sym_default] = ACTIONS(3602), @@ -171973,8 +170287,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3602), [sym_html_comment] = ACTIONS(5), }, - [1159] = { - [sym_comment] = STATE(1159), + [1144] = { + [sym_comment] = STATE(1144), [sym_identifier] = ACTIONS(3604), [anon_sym_export] = ACTIONS(3604), [anon_sym_default] = ACTIONS(3604), @@ -172063,98 +170377,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3604), [sym_html_comment] = ACTIONS(5), }, - [1160] = { - [sym_comment] = STATE(1160), - [sym_identifier] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_default] = ACTIONS(3572), - [anon_sym_type] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3572), - [anon_sym_RBRACE] = ACTIONS(3572), - [anon_sym_typeof] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_from] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3572), - [anon_sym_var] = ACTIONS(3572), - [anon_sym_let] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_await] = ACTIONS(3572), - [anon_sym_of] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_debugger] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3572), - [anon_sym_case] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_LTtemplate_GT] = ACTIONS(3572), - [anon_sym_DQUOTE] = ACTIONS(3572), - [anon_sym_SQUOTE] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_async] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_SLASH] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_TILDE] = ACTIONS(3572), - [anon_sym_void] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3572), - [sym_number] = ACTIONS(3572), - [sym_private_property_identifier] = ACTIONS(3572), - [sym_this] = ACTIONS(3572), - [sym_super] = ACTIONS(3572), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [sym_null] = ACTIONS(3572), - [sym_undefined] = ACTIONS(3572), - [anon_sym_AT] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_readonly] = ACTIONS(3572), - [anon_sym_get] = ACTIONS(3572), - [anon_sym_set] = ACTIONS(3572), - [anon_sym_declare] = ACTIONS(3572), - [anon_sym_public] = ACTIONS(3572), - [anon_sym_private] = ACTIONS(3572), - [anon_sym_protected] = ACTIONS(3572), - [anon_sym_override] = ACTIONS(3572), - [anon_sym_module] = ACTIONS(3572), - [anon_sym_any] = ACTIONS(3572), - [anon_sym_number] = ACTIONS(3572), - [anon_sym_boolean] = ACTIONS(3572), - [anon_sym_string] = ACTIONS(3572), - [anon_sym_symbol] = ACTIONS(3572), - [anon_sym_object] = ACTIONS(3572), - [anon_sym_property] = ACTIONS(3572), - [anon_sym_signal] = ACTIONS(3572), - [anon_sym_on] = ACTIONS(3572), - [anon_sym_required] = ACTIONS(3572), - [anon_sym_component] = ACTIONS(3572), - [anon_sym_abstract] = ACTIONS(3572), - [anon_sym_interface] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), - [sym_html_comment] = ACTIONS(5), - }, - [1161] = { - [sym_comment] = STATE(1161), + [1145] = { + [sym_comment] = STATE(1145), [sym_identifier] = ACTIONS(3606), [anon_sym_export] = ACTIONS(3606), [anon_sym_default] = ACTIONS(3606), @@ -172243,8 +170467,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3606), [sym_html_comment] = ACTIONS(5), }, - [1162] = { - [sym_comment] = STATE(1162), + [1146] = { + [sym_comment] = STATE(1146), [sym_identifier] = ACTIONS(3608), [anon_sym_export] = ACTIONS(3608), [anon_sym_default] = ACTIONS(3608), @@ -172333,8 +170557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3608), [sym_html_comment] = ACTIONS(5), }, - [1163] = { - [sym_comment] = STATE(1163), + [1147] = { + [sym_comment] = STATE(1147), [sym_identifier] = ACTIONS(3610), [anon_sym_export] = ACTIONS(3610), [anon_sym_default] = ACTIONS(3610), @@ -172423,728 +170647,188 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3610), [sym_html_comment] = ACTIONS(5), }, - [1164] = { - [sym_comment] = STATE(1164), - [sym_identifier] = ACTIONS(3610), - [anon_sym_export] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_typeof] = ACTIONS(3610), - [anon_sym_import] = ACTIONS(3610), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_else] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_await] = ACTIONS(3610), - [anon_sym_of] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_debugger] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym_case] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LTtemplate_GT] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_async] = ACTIONS(3610), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_void] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3610), + [1148] = { + [sym_comment] = STATE(1148), + [sym_identifier] = ACTIONS(3612), + [anon_sym_export] = ACTIONS(3612), + [anon_sym_default] = ACTIONS(3612), + [anon_sym_type] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_typeof] = ACTIONS(3612), + [anon_sym_import] = ACTIONS(3612), + [anon_sym_from] = ACTIONS(3612), + [anon_sym_with] = ACTIONS(3612), + [anon_sym_var] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_else] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_switch] = ACTIONS(3612), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_await] = ACTIONS(3612), + [anon_sym_of] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_break] = ACTIONS(3612), + [anon_sym_continue] = ACTIONS(3612), + [anon_sym_debugger] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_throw] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym_case] = ACTIONS(3612), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LTtemplate_GT] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_async] = ACTIONS(3612), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_using] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_SLASH] = ACTIONS(3612), + [anon_sym_LT] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3612), + [anon_sym_void] = ACTIONS(3612), + [anon_sym_delete] = ACTIONS(3612), + [anon_sym_PLUS_PLUS] = ACTIONS(3612), + [anon_sym_DASH_DASH] = ACTIONS(3612), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3610), - [sym_number] = ACTIONS(3610), - [sym_private_property_identifier] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [sym_super] = ACTIONS(3610), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [sym_null] = ACTIONS(3610), - [sym_undefined] = ACTIONS(3610), - [anon_sym_AT] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_readonly] = ACTIONS(3610), - [anon_sym_get] = ACTIONS(3610), - [anon_sym_set] = ACTIONS(3610), - [anon_sym_declare] = ACTIONS(3610), - [anon_sym_public] = ACTIONS(3610), - [anon_sym_private] = ACTIONS(3610), - [anon_sym_protected] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_any] = ACTIONS(3610), - [anon_sym_number] = ACTIONS(3610), - [anon_sym_boolean] = ACTIONS(3610), - [anon_sym_string] = ACTIONS(3610), - [anon_sym_symbol] = ACTIONS(3610), - [anon_sym_object] = ACTIONS(3610), - [anon_sym_property] = ACTIONS(3610), - [anon_sym_signal] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_required] = ACTIONS(3610), - [anon_sym_component] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_interface] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), + [anon_sym_BQUOTE] = ACTIONS(3612), + [sym_number] = ACTIONS(3612), + [sym_private_property_identifier] = ACTIONS(3612), + [sym_this] = ACTIONS(3612), + [sym_super] = ACTIONS(3612), + [sym_true] = ACTIONS(3612), + [sym_false] = ACTIONS(3612), + [sym_null] = ACTIONS(3612), + [sym_undefined] = ACTIONS(3612), + [anon_sym_AT] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_readonly] = ACTIONS(3612), + [anon_sym_get] = ACTIONS(3612), + [anon_sym_set] = ACTIONS(3612), + [anon_sym_declare] = ACTIONS(3612), + [anon_sym_public] = ACTIONS(3612), + [anon_sym_private] = ACTIONS(3612), + [anon_sym_protected] = ACTIONS(3612), + [anon_sym_override] = ACTIONS(3612), + [anon_sym_module] = ACTIONS(3612), + [anon_sym_any] = ACTIONS(3612), + [anon_sym_number] = ACTIONS(3612), + [anon_sym_boolean] = ACTIONS(3612), + [anon_sym_string] = ACTIONS(3612), + [anon_sym_symbol] = ACTIONS(3612), + [anon_sym_object] = ACTIONS(3612), + [anon_sym_property] = ACTIONS(3612), + [anon_sym_signal] = ACTIONS(3612), + [anon_sym_on] = ACTIONS(3612), + [anon_sym_required] = ACTIONS(3612), + [anon_sym_component] = ACTIONS(3612), + [anon_sym_abstract] = ACTIONS(3612), + [anon_sym_interface] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), [sym_html_comment] = ACTIONS(5), }, - [1165] = { - [sym_comment] = STATE(1165), - [sym_identifier] = ACTIONS(3428), - [anon_sym_export] = ACTIONS(3428), - [anon_sym_default] = ACTIONS(3428), - [anon_sym_type] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_RBRACE] = ACTIONS(3428), - [anon_sym_typeof] = ACTIONS(3428), - [anon_sym_import] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_with] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_await] = ACTIONS(3428), - [anon_sym_of] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_debugger] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_case] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LTtemplate_GT] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_SQUOTE] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_SLASH] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3428), - [anon_sym_void] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3428), + [1149] = { + [sym_comment] = STATE(1149), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_default] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_case] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3428), - [sym_number] = ACTIONS(3428), - [sym_private_property_identifier] = ACTIONS(3428), - [sym_this] = ACTIONS(3428), - [sym_super] = ACTIONS(3428), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_null] = ACTIONS(3428), - [sym_undefined] = ACTIONS(3428), - [anon_sym_AT] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3428), - [anon_sym_set] = ACTIONS(3428), - [anon_sym_declare] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_module] = ACTIONS(3428), - [anon_sym_any] = ACTIONS(3428), - [anon_sym_number] = ACTIONS(3428), - [anon_sym_boolean] = ACTIONS(3428), - [anon_sym_string] = ACTIONS(3428), - [anon_sym_symbol] = ACTIONS(3428), - [anon_sym_object] = ACTIONS(3428), - [anon_sym_property] = ACTIONS(3428), - [anon_sym_signal] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_component] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [sym__automatic_semicolon] = ACTIONS(3430), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1166] = { - [sym_comment] = STATE(1166), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1167] = { - [sym_comment] = STATE(1167), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1168] = { - [sym_comment] = STATE(1168), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_default] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_typeof] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_with] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_await] = ACTIONS(2362), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_debugger] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_case] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_LTtemplate_GT] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2362), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_void] = ACTIONS(2362), - [anon_sym_delete] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2362), - [sym_number] = ACTIONS(2362), - [sym_private_property_identifier] = ACTIONS(2362), - [sym_this] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_true] = ACTIONS(2362), - [sym_false] = ACTIONS(2362), - [sym_null] = ACTIONS(2362), - [sym_undefined] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - [sym__automatic_semicolon] = ACTIONS(2492), - [sym_html_comment] = ACTIONS(5), - }, - [1169] = { - [sym_comment] = STATE(1169), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_default] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_from] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_else] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_of] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_case] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_property] = ACTIONS(3612), - [anon_sym_signal] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_required] = ACTIONS(3612), - [anon_sym_component] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [sym_html_comment] = ACTIONS(5), - }, - [1170] = { - [sym_comment] = STATE(1170), - [sym_identifier] = ACTIONS(2426), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_LBRACE] = ACTIONS(2426), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_typeof] = ACTIONS(2426), - [anon_sym_import] = ACTIONS(2426), - [anon_sym_from] = ACTIONS(2426), - [anon_sym_with] = ACTIONS(2426), - [anon_sym_var] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_switch] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2426), - [anon_sym_await] = ACTIONS(2426), - [anon_sym_of] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_do] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_debugger] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_throw] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2426), - [anon_sym_case] = ACTIONS(2426), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_LBRACK] = ACTIONS(2426), - [anon_sym_LTtemplate_GT] = ACTIONS(2426), - [anon_sym_DQUOTE] = ACTIONS(2426), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_class] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2426), - [anon_sym_new] = ACTIONS(2426), - [anon_sym_using] = ACTIONS(2426), - [anon_sym_PLUS] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2426), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_LT] = ACTIONS(2426), - [anon_sym_TILDE] = ACTIONS(2426), - [anon_sym_void] = ACTIONS(2426), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_PLUS_PLUS] = ACTIONS(2426), - [anon_sym_DASH_DASH] = ACTIONS(2426), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2426), - [sym_number] = ACTIONS(2426), - [sym_private_property_identifier] = ACTIONS(2426), - [sym_this] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_true] = ACTIONS(2426), - [sym_false] = ACTIONS(2426), - [sym_null] = ACTIONS(2426), - [sym_undefined] = ACTIONS(2426), - [anon_sym_AT] = ACTIONS(2426), - [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_property] = ACTIONS(2426), - [anon_sym_signal] = ACTIONS(2426), - [anon_sym_on] = ACTIONS(2426), - [anon_sym_required] = ACTIONS(2426), - [anon_sym_component] = ACTIONS(2426), - [anon_sym_abstract] = ACTIONS(2426), - [anon_sym_interface] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), - [sym__automatic_semicolon] = ACTIONS(2514), - [sym_html_comment] = ACTIONS(5), - }, - [1171] = { - [sym_comment] = STATE(1171), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_typeof] = ACTIONS(2478), - [anon_sym_import] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_with] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_await] = ACTIONS(2478), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LTtemplate_GT] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2478), - [sym_number] = ACTIONS(2478), - [sym_private_property_identifier] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_undefined] = ACTIONS(2478), - [anon_sym_AT] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_object] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_interface] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(2546), - [sym_html_comment] = ACTIONS(5), - }, - [1172] = { - [sym_comment] = STATE(1172), + [1150] = { + [sym_comment] = STATE(1150), [sym_identifier] = ACTIONS(3614), [anon_sym_export] = ACTIONS(3614), [anon_sym_default] = ACTIONS(3614), @@ -173233,188 +170917,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1173] = { - [sym_comment] = STATE(1173), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_default] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_else] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_case] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), - [sym_html_comment] = ACTIONS(5), - }, - [1174] = { - [sym_comment] = STATE(1174), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_default] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_else] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_case] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), + [1151] = { + [sym_comment] = STATE(1151), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_default] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_case] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1175] = { - [sym_comment] = STATE(1175), + [1152] = { + [sym_comment] = STATE(1152), [sym_identifier] = ACTIONS(3616), [anon_sym_export] = ACTIONS(3616), [anon_sym_default] = ACTIONS(3616), @@ -173503,8 +171097,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3616), [sym_html_comment] = ACTIONS(5), }, - [1176] = { - [sym_comment] = STATE(1176), + [1153] = { + [sym_comment] = STATE(1153), [sym_identifier] = ACTIONS(3618), [anon_sym_export] = ACTIONS(3618), [anon_sym_default] = ACTIONS(3618), @@ -173593,368 +171187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3618), [sym_html_comment] = ACTIONS(5), }, - [1177] = { - [sym_comment] = STATE(1177), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1178] = { - [sym_comment] = STATE(1178), - [sym_identifier] = ACTIONS(3464), - [anon_sym_export] = ACTIONS(3464), - [anon_sym_default] = ACTIONS(3464), - [anon_sym_type] = ACTIONS(3464), - [anon_sym_namespace] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_RBRACE] = ACTIONS(3464), - [anon_sym_typeof] = ACTIONS(3464), - [anon_sym_import] = ACTIONS(3464), - [anon_sym_from] = ACTIONS(3464), - [anon_sym_with] = ACTIONS(3464), - [anon_sym_var] = ACTIONS(3464), - [anon_sym_let] = ACTIONS(3464), - [anon_sym_const] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3464), - [anon_sym_if] = ACTIONS(3464), - [anon_sym_switch] = ACTIONS(3464), - [anon_sym_for] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_await] = ACTIONS(3464), - [anon_sym_of] = ACTIONS(3464), - [anon_sym_while] = ACTIONS(3464), - [anon_sym_do] = ACTIONS(3464), - [anon_sym_try] = ACTIONS(3464), - [anon_sym_break] = ACTIONS(3464), - [anon_sym_continue] = ACTIONS(3464), - [anon_sym_debugger] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3464), - [anon_sym_throw] = ACTIONS(3464), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_case] = ACTIONS(3464), - [anon_sym_yield] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_LTtemplate_GT] = ACTIONS(3464), - [anon_sym_DQUOTE] = ACTIONS(3464), - [anon_sym_SQUOTE] = ACTIONS(3464), - [anon_sym_class] = ACTIONS(3464), - [anon_sym_async] = ACTIONS(3464), - [anon_sym_function] = ACTIONS(3464), - [anon_sym_new] = ACTIONS(3464), - [anon_sym_using] = ACTIONS(3464), - [anon_sym_PLUS] = ACTIONS(3464), - [anon_sym_DASH] = ACTIONS(3464), - [anon_sym_SLASH] = ACTIONS(3464), - [anon_sym_LT] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3464), - [anon_sym_void] = ACTIONS(3464), - [anon_sym_delete] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3464), - [anon_sym_DASH_DASH] = ACTIONS(3464), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3464), - [sym_number] = ACTIONS(3464), - [sym_private_property_identifier] = ACTIONS(3464), - [sym_this] = ACTIONS(3464), - [sym_super] = ACTIONS(3464), - [sym_true] = ACTIONS(3464), - [sym_false] = ACTIONS(3464), - [sym_null] = ACTIONS(3464), - [sym_undefined] = ACTIONS(3464), - [anon_sym_AT] = ACTIONS(3464), - [anon_sym_static] = ACTIONS(3464), - [anon_sym_readonly] = ACTIONS(3464), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3464), - [anon_sym_declare] = ACTIONS(3464), - [anon_sym_public] = ACTIONS(3464), - [anon_sym_private] = ACTIONS(3464), - [anon_sym_protected] = ACTIONS(3464), - [anon_sym_override] = ACTIONS(3464), - [anon_sym_module] = ACTIONS(3464), - [anon_sym_any] = ACTIONS(3464), - [anon_sym_number] = ACTIONS(3464), - [anon_sym_boolean] = ACTIONS(3464), - [anon_sym_string] = ACTIONS(3464), - [anon_sym_symbol] = ACTIONS(3464), - [anon_sym_object] = ACTIONS(3464), - [anon_sym_property] = ACTIONS(3464), - [anon_sym_signal] = ACTIONS(3464), - [anon_sym_on] = ACTIONS(3464), - [anon_sym_required] = ACTIONS(3464), - [anon_sym_component] = ACTIONS(3464), - [anon_sym_abstract] = ACTIONS(3464), - [anon_sym_interface] = ACTIONS(3464), - [anon_sym_enum] = ACTIONS(3464), - [sym__automatic_semicolon] = ACTIONS(3466), - [sym_html_comment] = ACTIONS(5), - }, - [1179] = { - [sym_finally_clause] = STATE(1489), - [sym_comment] = STATE(1179), - [sym_identifier] = ACTIONS(3424), - [anon_sym_export] = ACTIONS(3424), - [anon_sym_type] = ACTIONS(3424), - [anon_sym_namespace] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_RBRACE] = ACTIONS(3424), - [anon_sym_typeof] = ACTIONS(3424), - [anon_sym_import] = ACTIONS(3424), - [anon_sym_from] = ACTIONS(3424), - [anon_sym_with] = ACTIONS(3424), - [anon_sym_var] = ACTIONS(3424), - [anon_sym_let] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_else] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_switch] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym_await] = ACTIONS(3424), - [anon_sym_of] = ACTIONS(3424), - [anon_sym_while] = ACTIONS(3424), - [anon_sym_do] = ACTIONS(3424), - [anon_sym_try] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_debugger] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_throw] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_finally] = ACTIONS(3414), - [anon_sym_yield] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_LTtemplate_GT] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3424), - [anon_sym_class] = ACTIONS(3424), - [anon_sym_async] = ACTIONS(3424), - [anon_sym_function] = ACTIONS(3424), - [anon_sym_new] = ACTIONS(3424), - [anon_sym_using] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_SLASH] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_void] = ACTIONS(3424), - [anon_sym_delete] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3424), - [sym_number] = ACTIONS(3424), - [sym_private_property_identifier] = ACTIONS(3424), - [sym_this] = ACTIONS(3424), - [sym_super] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_null] = ACTIONS(3424), - [sym_undefined] = ACTIONS(3424), - [anon_sym_AT] = ACTIONS(3424), - [anon_sym_static] = ACTIONS(3424), - [anon_sym_readonly] = ACTIONS(3424), - [anon_sym_get] = ACTIONS(3424), - [anon_sym_set] = ACTIONS(3424), - [anon_sym_declare] = ACTIONS(3424), - [anon_sym_public] = ACTIONS(3424), - [anon_sym_private] = ACTIONS(3424), - [anon_sym_protected] = ACTIONS(3424), - [anon_sym_override] = ACTIONS(3424), - [anon_sym_module] = ACTIONS(3424), - [anon_sym_any] = ACTIONS(3424), - [anon_sym_number] = ACTIONS(3424), - [anon_sym_boolean] = ACTIONS(3424), - [anon_sym_string] = ACTIONS(3424), - [anon_sym_symbol] = ACTIONS(3424), - [anon_sym_object] = ACTIONS(3424), - [anon_sym_property] = ACTIONS(3424), - [anon_sym_signal] = ACTIONS(3424), - [anon_sym_on] = ACTIONS(3424), - [anon_sym_required] = ACTIONS(3424), - [anon_sym_component] = ACTIONS(3424), - [anon_sym_abstract] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3424), - [anon_sym_enum] = ACTIONS(3424), - [sym_html_comment] = ACTIONS(5), - }, - [1180] = { - [sym_comment] = STATE(1180), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1181] = { - [sym_comment] = STATE(1181), + [1154] = { + [sym_comment] = STATE(1154), [sym_identifier] = ACTIONS(3620), [anon_sym_export] = ACTIONS(3620), [anon_sym_default] = ACTIONS(3620), @@ -174043,8 +171277,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3620), [sym_html_comment] = ACTIONS(5), }, - [1182] = { - [sym_comment] = STATE(1182), + [1155] = { + [sym_comment] = STATE(1155), [sym_identifier] = ACTIONS(3622), [anon_sym_export] = ACTIONS(3622), [anon_sym_default] = ACTIONS(3622), @@ -174133,98 +171367,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1183] = { - [sym_comment] = STATE(1183), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1156] = { + [sym_comment] = STATE(1156), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1184] = { - [sym_comment] = STATE(1184), + [1157] = { + [sym_comment] = STATE(1157), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [sym_html_comment] = ACTIONS(5), + }, + [1158] = { + [sym_comment] = STATE(1158), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [sym_html_comment] = ACTIONS(5), + }, + [1159] = { + [sym_comment] = STATE(1159), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_case] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2536), + [sym_html_comment] = ACTIONS(5), + }, + [1160] = { + [sym_comment] = STATE(1160), [sym_identifier] = ACTIONS(3624), [anon_sym_export] = ACTIONS(3624), [anon_sym_default] = ACTIONS(3624), @@ -174313,8 +171817,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3624), [sym_html_comment] = ACTIONS(5), }, - [1185] = { - [sym_comment] = STATE(1185), + [1161] = { + [sym_comment] = STATE(1161), [sym_identifier] = ACTIONS(3626), [anon_sym_export] = ACTIONS(3626), [anon_sym_default] = ACTIONS(3626), @@ -174403,6488 +171907,4868 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3626), [sym_html_comment] = ACTIONS(5), }, - [1186] = { - [sym_comment] = STATE(1186), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1162] = { + [sym_comment] = STATE(1162), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1187] = { - [sym_comment] = STATE(1187), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1163] = { + [sym_comment] = STATE(1163), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1188] = { - [sym_comment] = STATE(1188), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1164] = { + [sym_comment] = STATE(1164), + [sym_identifier] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_default] = ACTIONS(3628), + [anon_sym_type] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_typeof] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_from] = ACTIONS(3628), + [anon_sym_with] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3628), + [anon_sym_let] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_else] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_await] = ACTIONS(3628), + [anon_sym_of] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_debugger] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_case] = ACTIONS(3628), + [anon_sym_yield] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_LTtemplate_GT] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_async] = ACTIONS(3628), + [anon_sym_function] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_void] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3628), + [sym_number] = ACTIONS(3628), + [sym_private_property_identifier] = ACTIONS(3628), + [sym_this] = ACTIONS(3628), + [sym_super] = ACTIONS(3628), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [sym_null] = ACTIONS(3628), + [sym_undefined] = ACTIONS(3628), + [anon_sym_AT] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_readonly] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(3628), + [anon_sym_set] = ACTIONS(3628), + [anon_sym_declare] = ACTIONS(3628), + [anon_sym_public] = ACTIONS(3628), + [anon_sym_private] = ACTIONS(3628), + [anon_sym_protected] = ACTIONS(3628), + [anon_sym_override] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_any] = ACTIONS(3628), + [anon_sym_number] = ACTIONS(3628), + [anon_sym_boolean] = ACTIONS(3628), + [anon_sym_string] = ACTIONS(3628), + [anon_sym_symbol] = ACTIONS(3628), + [anon_sym_object] = ACTIONS(3628), + [anon_sym_property] = ACTIONS(3628), + [anon_sym_signal] = ACTIONS(3628), + [anon_sym_on] = ACTIONS(3628), + [anon_sym_required] = ACTIONS(3628), + [anon_sym_component] = ACTIONS(3628), + [anon_sym_abstract] = ACTIONS(3628), + [anon_sym_interface] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), [sym_html_comment] = ACTIONS(5), }, - [1189] = { - [sym_comment] = STATE(1189), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1165] = { + [sym_comment] = STATE(1165), + [sym_identifier] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_type] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_typeof] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [anon_sym_var] = ACTIONS(3630), + [anon_sym_let] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_await] = ACTIONS(3630), + [anon_sym_of] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_debugger] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_yield] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LTtemplate_GT] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_async] = ACTIONS(3630), + [anon_sym_function] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_void] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1190] = { - [sym_comment] = STATE(1190), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3630), + [sym_number] = ACTIONS(3630), + [sym_private_property_identifier] = ACTIONS(3630), + [sym_this] = ACTIONS(3630), + [sym_super] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_null] = ACTIONS(3630), + [sym_undefined] = ACTIONS(3630), + [anon_sym_AT] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_readonly] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(3630), + [anon_sym_set] = ACTIONS(3630), + [anon_sym_declare] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_override] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_any] = ACTIONS(3630), + [anon_sym_number] = ACTIONS(3630), + [anon_sym_boolean] = ACTIONS(3630), + [anon_sym_string] = ACTIONS(3630), + [anon_sym_symbol] = ACTIONS(3630), + [anon_sym_object] = ACTIONS(3630), + [anon_sym_property] = ACTIONS(3630), + [anon_sym_signal] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_required] = ACTIONS(3630), + [anon_sym_component] = ACTIONS(3630), + [anon_sym_abstract] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), [sym_html_comment] = ACTIONS(5), }, - [1191] = { - [sym_comment] = STATE(1191), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1166] = { + [sym_comment] = STATE(1166), + [sym_identifier] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_default] = ACTIONS(3632), + [anon_sym_type] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_typeof] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_from] = ACTIONS(3632), + [anon_sym_with] = ACTIONS(3632), + [anon_sym_var] = ACTIONS(3632), + [anon_sym_let] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_else] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_await] = ACTIONS(3632), + [anon_sym_of] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_debugger] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_case] = ACTIONS(3632), + [anon_sym_yield] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_LTtemplate_GT] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_async] = ACTIONS(3632), + [anon_sym_function] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_void] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3632), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3632), + [sym_number] = ACTIONS(3632), + [sym_private_property_identifier] = ACTIONS(3632), + [sym_this] = ACTIONS(3632), + [sym_super] = ACTIONS(3632), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [sym_null] = ACTIONS(3632), + [sym_undefined] = ACTIONS(3632), + [anon_sym_AT] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_readonly] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(3632), + [anon_sym_set] = ACTIONS(3632), + [anon_sym_declare] = ACTIONS(3632), + [anon_sym_public] = ACTIONS(3632), + [anon_sym_private] = ACTIONS(3632), + [anon_sym_protected] = ACTIONS(3632), + [anon_sym_override] = ACTIONS(3632), + [anon_sym_module] = ACTIONS(3632), + [anon_sym_any] = ACTIONS(3632), + [anon_sym_number] = ACTIONS(3632), + [anon_sym_boolean] = ACTIONS(3632), + [anon_sym_string] = ACTIONS(3632), + [anon_sym_symbol] = ACTIONS(3632), + [anon_sym_object] = ACTIONS(3632), + [anon_sym_property] = ACTIONS(3632), + [anon_sym_signal] = ACTIONS(3632), + [anon_sym_on] = ACTIONS(3632), + [anon_sym_required] = ACTIONS(3632), + [anon_sym_component] = ACTIONS(3632), + [anon_sym_abstract] = ACTIONS(3632), + [anon_sym_interface] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), [sym_html_comment] = ACTIONS(5), }, - [1192] = { - [sym_comment] = STATE(1192), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1167] = { + [sym_comment] = STATE(1167), + [sym_identifier] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_default] = ACTIONS(3634), + [anon_sym_type] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_typeof] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_with] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_LPAREN] = ACTIONS(3634), + [anon_sym_await] = ACTIONS(3634), + [anon_sym_of] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_debugger] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_case] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_LTtemplate_GT] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_async] = ACTIONS(3634), + [anon_sym_function] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_void] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3634), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3634), + [sym_number] = ACTIONS(3634), + [sym_private_property_identifier] = ACTIONS(3634), + [sym_this] = ACTIONS(3634), + [sym_super] = ACTIONS(3634), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [sym_null] = ACTIONS(3634), + [sym_undefined] = ACTIONS(3634), + [anon_sym_AT] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_readonly] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(3634), + [anon_sym_set] = ACTIONS(3634), + [anon_sym_declare] = ACTIONS(3634), + [anon_sym_public] = ACTIONS(3634), + [anon_sym_private] = ACTIONS(3634), + [anon_sym_protected] = ACTIONS(3634), + [anon_sym_override] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_any] = ACTIONS(3634), + [anon_sym_number] = ACTIONS(3634), + [anon_sym_boolean] = ACTIONS(3634), + [anon_sym_string] = ACTIONS(3634), + [anon_sym_symbol] = ACTIONS(3634), + [anon_sym_object] = ACTIONS(3634), + [anon_sym_property] = ACTIONS(3634), + [anon_sym_signal] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_required] = ACTIONS(3634), + [anon_sym_component] = ACTIONS(3634), + [anon_sym_abstract] = ACTIONS(3634), + [anon_sym_interface] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), [sym_html_comment] = ACTIONS(5), }, - [1193] = { - [sym_comment] = STATE(1193), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1168] = { + [sym_comment] = STATE(1168), + [sym_identifier] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_type] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_typeof] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_await] = ACTIONS(3636), + [anon_sym_of] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_debugger] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_yield] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_LTtemplate_GT] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_async] = ACTIONS(3636), + [anon_sym_function] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_void] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3636), + [sym_number] = ACTIONS(3636), + [sym_private_property_identifier] = ACTIONS(3636), + [sym_this] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [sym_null] = ACTIONS(3636), + [sym_undefined] = ACTIONS(3636), + [anon_sym_AT] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_readonly] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3636), + [anon_sym_set] = ACTIONS(3636), + [anon_sym_declare] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_override] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_any] = ACTIONS(3636), + [anon_sym_number] = ACTIONS(3636), + [anon_sym_boolean] = ACTIONS(3636), + [anon_sym_string] = ACTIONS(3636), + [anon_sym_symbol] = ACTIONS(3636), + [anon_sym_object] = ACTIONS(3636), + [anon_sym_property] = ACTIONS(3636), + [anon_sym_signal] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_required] = ACTIONS(3636), + [anon_sym_component] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), [sym_html_comment] = ACTIONS(5), }, - [1194] = { - [sym_comment] = STATE(1194), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1169] = { + [sym_comment] = STATE(1169), + [sym_identifier] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_default] = ACTIONS(3638), + [anon_sym_type] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_typeof] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_else] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_await] = ACTIONS(3638), + [anon_sym_of] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_debugger] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_case] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LTtemplate_GT] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_async] = ACTIONS(3638), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_void] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3638), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3638), + [sym_number] = ACTIONS(3638), + [sym_private_property_identifier] = ACTIONS(3638), + [sym_this] = ACTIONS(3638), + [sym_super] = ACTIONS(3638), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [sym_null] = ACTIONS(3638), + [sym_undefined] = ACTIONS(3638), + [anon_sym_AT] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_readonly] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3638), + [anon_sym_declare] = ACTIONS(3638), + [anon_sym_public] = ACTIONS(3638), + [anon_sym_private] = ACTIONS(3638), + [anon_sym_protected] = ACTIONS(3638), + [anon_sym_override] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_any] = ACTIONS(3638), + [anon_sym_number] = ACTIONS(3638), + [anon_sym_boolean] = ACTIONS(3638), + [anon_sym_string] = ACTIONS(3638), + [anon_sym_symbol] = ACTIONS(3638), + [anon_sym_object] = ACTIONS(3638), + [anon_sym_property] = ACTIONS(3638), + [anon_sym_signal] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_required] = ACTIONS(3638), + [anon_sym_component] = ACTIONS(3638), + [anon_sym_abstract] = ACTIONS(3638), + [anon_sym_interface] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), [sym_html_comment] = ACTIONS(5), }, - [1195] = { - [sym_comment] = STATE(1195), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1170] = { + [sym_comment] = STATE(1170), + [sym_identifier] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_type] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_typeof] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_await] = ACTIONS(3640), + [anon_sym_of] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_debugger] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_LTtemplate_GT] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_async] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_void] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3640), + [sym_number] = ACTIONS(3640), + [sym_private_property_identifier] = ACTIONS(3640), + [sym_this] = ACTIONS(3640), + [sym_super] = ACTIONS(3640), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [sym_null] = ACTIONS(3640), + [sym_undefined] = ACTIONS(3640), + [anon_sym_AT] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_readonly] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(3640), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_declare] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_override] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_any] = ACTIONS(3640), + [anon_sym_number] = ACTIONS(3640), + [anon_sym_boolean] = ACTIONS(3640), + [anon_sym_string] = ACTIONS(3640), + [anon_sym_symbol] = ACTIONS(3640), + [anon_sym_object] = ACTIONS(3640), + [anon_sym_property] = ACTIONS(3640), + [anon_sym_signal] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_required] = ACTIONS(3640), + [anon_sym_component] = ACTIONS(3640), + [anon_sym_abstract] = ACTIONS(3640), + [anon_sym_interface] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), [sym_html_comment] = ACTIONS(5), }, - [1196] = { - [sym_comment] = STATE(1196), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1171] = { + [sym_comment] = STATE(1171), + [sym_identifier] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_default] = ACTIONS(3642), + [anon_sym_type] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_typeof] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_else] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_await] = ACTIONS(3642), + [anon_sym_of] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_debugger] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_case] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LTtemplate_GT] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_async] = ACTIONS(3642), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_void] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3642), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3642), + [sym_number] = ACTIONS(3642), + [sym_private_property_identifier] = ACTIONS(3642), + [sym_this] = ACTIONS(3642), + [sym_super] = ACTIONS(3642), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [sym_null] = ACTIONS(3642), + [sym_undefined] = ACTIONS(3642), + [anon_sym_AT] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_readonly] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(3642), + [anon_sym_set] = ACTIONS(3642), + [anon_sym_declare] = ACTIONS(3642), + [anon_sym_public] = ACTIONS(3642), + [anon_sym_private] = ACTIONS(3642), + [anon_sym_protected] = ACTIONS(3642), + [anon_sym_override] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_any] = ACTIONS(3642), + [anon_sym_number] = ACTIONS(3642), + [anon_sym_boolean] = ACTIONS(3642), + [anon_sym_string] = ACTIONS(3642), + [anon_sym_symbol] = ACTIONS(3642), + [anon_sym_object] = ACTIONS(3642), + [anon_sym_property] = ACTIONS(3642), + [anon_sym_signal] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_required] = ACTIONS(3642), + [anon_sym_component] = ACTIONS(3642), + [anon_sym_abstract] = ACTIONS(3642), + [anon_sym_interface] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), [sym_html_comment] = ACTIONS(5), }, - [1197] = { - [sym_comment] = STATE(1197), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1172] = { + [sym_comment] = STATE(1172), + [sym_identifier] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_type] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_typeof] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_await] = ACTIONS(3644), + [anon_sym_of] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_debugger] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LTtemplate_GT] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_async] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_void] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3644), + [sym_number] = ACTIONS(3644), + [sym_private_property_identifier] = ACTIONS(3644), + [sym_this] = ACTIONS(3644), + [sym_super] = ACTIONS(3644), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [sym_null] = ACTIONS(3644), + [sym_undefined] = ACTIONS(3644), + [anon_sym_AT] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_readonly] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(3644), + [anon_sym_set] = ACTIONS(3644), + [anon_sym_declare] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_override] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_any] = ACTIONS(3644), + [anon_sym_number] = ACTIONS(3644), + [anon_sym_boolean] = ACTIONS(3644), + [anon_sym_string] = ACTIONS(3644), + [anon_sym_symbol] = ACTIONS(3644), + [anon_sym_object] = ACTIONS(3644), + [anon_sym_property] = ACTIONS(3644), + [anon_sym_signal] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_required] = ACTIONS(3644), + [anon_sym_component] = ACTIONS(3644), + [anon_sym_abstract] = ACTIONS(3644), + [anon_sym_interface] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), [sym_html_comment] = ACTIONS(5), }, - [1198] = { - [sym_comment] = STATE(1198), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1173] = { + [sym_comment] = STATE(1173), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_default] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_case] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), [sym_html_comment] = ACTIONS(5), }, - [1199] = { - [sym_comment] = STATE(1199), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1174] = { + [sym_comment] = STATE(1174), + [sym_identifier] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_type] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_typeof] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_from] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3648), + [anon_sym_var] = ACTIONS(3648), + [anon_sym_let] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3648), + [anon_sym_await] = ACTIONS(3648), + [anon_sym_of] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_debugger] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_LTtemplate_GT] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_async] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_SLASH] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_void] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3648), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3648), + [sym_number] = ACTIONS(3648), + [sym_private_property_identifier] = ACTIONS(3648), + [sym_this] = ACTIONS(3648), + [sym_super] = ACTIONS(3648), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_undefined] = ACTIONS(3648), + [anon_sym_AT] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_readonly] = ACTIONS(3648), + [anon_sym_get] = ACTIONS(3648), + [anon_sym_set] = ACTIONS(3648), + [anon_sym_declare] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_override] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_any] = ACTIONS(3648), + [anon_sym_number] = ACTIONS(3648), + [anon_sym_boolean] = ACTIONS(3648), + [anon_sym_string] = ACTIONS(3648), + [anon_sym_symbol] = ACTIONS(3648), + [anon_sym_object] = ACTIONS(3648), + [anon_sym_property] = ACTIONS(3648), + [anon_sym_signal] = ACTIONS(3648), + [anon_sym_on] = ACTIONS(3648), + [anon_sym_required] = ACTIONS(3648), + [anon_sym_component] = ACTIONS(3648), + [anon_sym_abstract] = ACTIONS(3648), + [anon_sym_interface] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), [sym_html_comment] = ACTIONS(5), }, - [1200] = { - [sym_comment] = STATE(1200), - [sym_identifier] = ACTIONS(3628), - [anon_sym_export] = ACTIONS(3628), - [anon_sym_default] = ACTIONS(3628), - [anon_sym_type] = ACTIONS(3628), - [anon_sym_namespace] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_typeof] = ACTIONS(3628), - [anon_sym_import] = ACTIONS(3628), - [anon_sym_from] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3628), - [anon_sym_var] = ACTIONS(3628), - [anon_sym_let] = ACTIONS(3628), - [anon_sym_const] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_else] = ACTIONS(3628), - [anon_sym_if] = ACTIONS(3628), - [anon_sym_switch] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_await] = ACTIONS(3628), - [anon_sym_of] = ACTIONS(3628), - [anon_sym_while] = ACTIONS(3628), - [anon_sym_do] = ACTIONS(3628), - [anon_sym_try] = ACTIONS(3628), - [anon_sym_break] = ACTIONS(3628), - [anon_sym_continue] = ACTIONS(3628), - [anon_sym_debugger] = ACTIONS(3628), - [anon_sym_return] = ACTIONS(3628), - [anon_sym_throw] = ACTIONS(3628), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_case] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3628), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LTtemplate_GT] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_class] = ACTIONS(3628), - [anon_sym_async] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3628), - [anon_sym_using] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_SLASH] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_void] = ACTIONS(3628), - [anon_sym_delete] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), + [1175] = { + [sym_comment] = STATE(1175), + [sym_identifier] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_default] = ACTIONS(3650), + [anon_sym_type] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_typeof] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_from] = ACTIONS(3650), + [anon_sym_with] = ACTIONS(3650), + [anon_sym_var] = ACTIONS(3650), + [anon_sym_let] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_else] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3650), + [anon_sym_await] = ACTIONS(3650), + [anon_sym_of] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_debugger] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_case] = ACTIONS(3650), + [anon_sym_yield] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LTtemplate_GT] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_async] = ACTIONS(3650), + [anon_sym_function] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3650), + [anon_sym_LT] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_void] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3650), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3628), - [sym_number] = ACTIONS(3628), - [sym_private_property_identifier] = ACTIONS(3628), - [sym_this] = ACTIONS(3628), - [sym_super] = ACTIONS(3628), - [sym_true] = ACTIONS(3628), - [sym_false] = ACTIONS(3628), - [sym_null] = ACTIONS(3628), - [sym_undefined] = ACTIONS(3628), - [anon_sym_AT] = ACTIONS(3628), - [anon_sym_static] = ACTIONS(3628), - [anon_sym_readonly] = ACTIONS(3628), - [anon_sym_get] = ACTIONS(3628), - [anon_sym_set] = ACTIONS(3628), - [anon_sym_declare] = ACTIONS(3628), - [anon_sym_public] = ACTIONS(3628), - [anon_sym_private] = ACTIONS(3628), - [anon_sym_protected] = ACTIONS(3628), - [anon_sym_override] = ACTIONS(3628), - [anon_sym_module] = ACTIONS(3628), - [anon_sym_any] = ACTIONS(3628), - [anon_sym_number] = ACTIONS(3628), - [anon_sym_boolean] = ACTIONS(3628), - [anon_sym_string] = ACTIONS(3628), - [anon_sym_symbol] = ACTIONS(3628), - [anon_sym_object] = ACTIONS(3628), - [anon_sym_property] = ACTIONS(3628), - [anon_sym_signal] = ACTIONS(3628), - [anon_sym_on] = ACTIONS(3628), - [anon_sym_required] = ACTIONS(3628), - [anon_sym_component] = ACTIONS(3628), - [anon_sym_abstract] = ACTIONS(3628), - [anon_sym_interface] = ACTIONS(3628), - [anon_sym_enum] = ACTIONS(3628), + [anon_sym_BQUOTE] = ACTIONS(3650), + [sym_number] = ACTIONS(3650), + [sym_private_property_identifier] = ACTIONS(3650), + [sym_this] = ACTIONS(3650), + [sym_super] = ACTIONS(3650), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [sym_null] = ACTIONS(3650), + [sym_undefined] = ACTIONS(3650), + [anon_sym_AT] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_readonly] = ACTIONS(3650), + [anon_sym_get] = ACTIONS(3650), + [anon_sym_set] = ACTIONS(3650), + [anon_sym_declare] = ACTIONS(3650), + [anon_sym_public] = ACTIONS(3650), + [anon_sym_private] = ACTIONS(3650), + [anon_sym_protected] = ACTIONS(3650), + [anon_sym_override] = ACTIONS(3650), + [anon_sym_module] = ACTIONS(3650), + [anon_sym_any] = ACTIONS(3650), + [anon_sym_number] = ACTIONS(3650), + [anon_sym_boolean] = ACTIONS(3650), + [anon_sym_string] = ACTIONS(3650), + [anon_sym_symbol] = ACTIONS(3650), + [anon_sym_object] = ACTIONS(3650), + [anon_sym_property] = ACTIONS(3650), + [anon_sym_signal] = ACTIONS(3650), + [anon_sym_on] = ACTIONS(3650), + [anon_sym_required] = ACTIONS(3650), + [anon_sym_component] = ACTIONS(3650), + [anon_sym_abstract] = ACTIONS(3650), + [anon_sym_interface] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), [sym_html_comment] = ACTIONS(5), }, - [1201] = { - [sym_comment] = STATE(1201), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1176] = { + [sym_comment] = STATE(1176), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), [sym_html_comment] = ACTIONS(5), }, - [1202] = { - [sym_comment] = STATE(1202), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1177] = { + [sym_comment] = STATE(1177), + [sym_identifier] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_type] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_from] = ACTIONS(3652), + [anon_sym_with] = ACTIONS(3652), + [anon_sym_var] = ACTIONS(3652), + [anon_sym_let] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_await] = ACTIONS(3652), + [anon_sym_of] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_debugger] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_yield] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LTtemplate_GT] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_async] = ACTIONS(3652), + [anon_sym_function] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_SLASH] = ACTIONS(3652), + [anon_sym_LT] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3652), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3652), + [sym_number] = ACTIONS(3652), + [sym_private_property_identifier] = ACTIONS(3652), + [sym_this] = ACTIONS(3652), + [sym_super] = ACTIONS(3652), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [sym_null] = ACTIONS(3652), + [sym_undefined] = ACTIONS(3652), + [anon_sym_AT] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_readonly] = ACTIONS(3652), + [anon_sym_get] = ACTIONS(3652), + [anon_sym_set] = ACTIONS(3652), + [anon_sym_declare] = ACTIONS(3652), + [anon_sym_public] = ACTIONS(3652), + [anon_sym_private] = ACTIONS(3652), + [anon_sym_protected] = ACTIONS(3652), + [anon_sym_override] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_any] = ACTIONS(3652), + [anon_sym_number] = ACTIONS(3652), + [anon_sym_boolean] = ACTIONS(3652), + [anon_sym_string] = ACTIONS(3652), + [anon_sym_symbol] = ACTIONS(3652), + [anon_sym_object] = ACTIONS(3652), + [anon_sym_property] = ACTIONS(3652), + [anon_sym_signal] = ACTIONS(3652), + [anon_sym_on] = ACTIONS(3652), + [anon_sym_required] = ACTIONS(3652), + [anon_sym_component] = ACTIONS(3652), + [anon_sym_abstract] = ACTIONS(3652), + [anon_sym_interface] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), [sym_html_comment] = ACTIONS(5), }, - [1203] = { - [sym_comment] = STATE(1203), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1178] = { + [sym_comment] = STATE(1178), + [sym_identifier] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_default] = ACTIONS(3654), + [anon_sym_type] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_from] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_await] = ACTIONS(3654), + [anon_sym_of] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym_case] = ACTIONS(3654), + [anon_sym_yield] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_LTtemplate_GT] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_async] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_LT] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_void] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3654), + [sym_number] = ACTIONS(3654), + [sym_private_property_identifier] = ACTIONS(3654), + [sym_this] = ACTIONS(3654), + [sym_super] = ACTIONS(3654), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [sym_null] = ACTIONS(3654), + [sym_undefined] = ACTIONS(3654), + [anon_sym_AT] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_readonly] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_declare] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_protected] = ACTIONS(3654), + [anon_sym_override] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_any] = ACTIONS(3654), + [anon_sym_number] = ACTIONS(3654), + [anon_sym_boolean] = ACTIONS(3654), + [anon_sym_string] = ACTIONS(3654), + [anon_sym_symbol] = ACTIONS(3654), + [anon_sym_object] = ACTIONS(3654), + [anon_sym_property] = ACTIONS(3654), + [anon_sym_signal] = ACTIONS(3654), + [anon_sym_on] = ACTIONS(3654), + [anon_sym_required] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), [sym_html_comment] = ACTIONS(5), }, - [1204] = { - [sym_comment] = STATE(1204), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1179] = { + [sym_comment] = STATE(1179), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), [sym_html_comment] = ACTIONS(5), }, - [1205] = { - [sym_comment] = STATE(1205), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1180] = { + [sym_comment] = STATE(1180), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), [sym_html_comment] = ACTIONS(5), }, - [1206] = { - [sym_comment] = STATE(1206), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1181] = { + [sym_comment] = STATE(1181), + [sym_identifier] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_default] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_from] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_await] = ACTIONS(3658), + [anon_sym_of] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_case] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LTtemplate_GT] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_async] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_void] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3658), + [sym_number] = ACTIONS(3658), + [sym_private_property_identifier] = ACTIONS(3658), + [sym_this] = ACTIONS(3658), + [sym_super] = ACTIONS(3658), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [sym_null] = ACTIONS(3658), + [sym_undefined] = ACTIONS(3658), + [anon_sym_AT] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_readonly] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_declare] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_override] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_any] = ACTIONS(3658), + [anon_sym_number] = ACTIONS(3658), + [anon_sym_boolean] = ACTIONS(3658), + [anon_sym_string] = ACTIONS(3658), + [anon_sym_symbol] = ACTIONS(3658), + [anon_sym_object] = ACTIONS(3658), + [anon_sym_property] = ACTIONS(3658), + [anon_sym_signal] = ACTIONS(3658), + [anon_sym_on] = ACTIONS(3658), + [anon_sym_required] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, - [1207] = { - [sym_comment] = STATE(1207), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1182] = { + [sym_comment] = STATE(1182), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), [sym_html_comment] = ACTIONS(5), }, - [1208] = { - [sym_comment] = STATE(1208), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1183] = { + [sym_finally_clause] = STATE(1481), + [sym_comment] = STATE(1183), + [sym_identifier] = ACTIONS(3410), + [anon_sym_export] = ACTIONS(3410), + [anon_sym_type] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_typeof] = ACTIONS(3410), + [anon_sym_import] = ACTIONS(3410), + [anon_sym_from] = ACTIONS(3410), + [anon_sym_with] = ACTIONS(3410), + [anon_sym_var] = ACTIONS(3410), + [anon_sym_let] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_else] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_await] = ACTIONS(3410), + [anon_sym_of] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_debugger] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_finally] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LTtemplate_GT] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_async] = ACTIONS(3410), + [anon_sym_function] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_SLASH] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_void] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3410), + [sym_number] = ACTIONS(3410), + [sym_private_property_identifier] = ACTIONS(3410), + [sym_this] = ACTIONS(3410), + [sym_super] = ACTIONS(3410), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [sym_null] = ACTIONS(3410), + [sym_undefined] = ACTIONS(3410), + [anon_sym_AT] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_readonly] = ACTIONS(3410), + [anon_sym_get] = ACTIONS(3410), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_declare] = ACTIONS(3410), + [anon_sym_public] = ACTIONS(3410), + [anon_sym_private] = ACTIONS(3410), + [anon_sym_protected] = ACTIONS(3410), + [anon_sym_override] = ACTIONS(3410), + [anon_sym_module] = ACTIONS(3410), + [anon_sym_any] = ACTIONS(3410), + [anon_sym_number] = ACTIONS(3410), + [anon_sym_boolean] = ACTIONS(3410), + [anon_sym_string] = ACTIONS(3410), + [anon_sym_symbol] = ACTIONS(3410), + [anon_sym_object] = ACTIONS(3410), + [anon_sym_property] = ACTIONS(3410), + [anon_sym_signal] = ACTIONS(3410), + [anon_sym_on] = ACTIONS(3410), + [anon_sym_required] = ACTIONS(3410), + [anon_sym_component] = ACTIONS(3410), + [anon_sym_abstract] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), [sym_html_comment] = ACTIONS(5), }, - [1209] = { - [sym_comment] = STATE(1209), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1210] = { - [sym_comment] = STATE(1210), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1184] = { + [sym_comment] = STATE(1184), + [sym_identifier] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_type] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_typeof] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3662), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3662), + [anon_sym_await] = ACTIONS(3662), + [anon_sym_of] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_debugger] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_LTtemplate_GT] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_async] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_void] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3662), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3662), + [sym_number] = ACTIONS(3662), + [sym_private_property_identifier] = ACTIONS(3662), + [sym_this] = ACTIONS(3662), + [sym_super] = ACTIONS(3662), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [sym_null] = ACTIONS(3662), + [sym_undefined] = ACTIONS(3662), + [anon_sym_AT] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_readonly] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3662), + [anon_sym_set] = ACTIONS(3662), + [anon_sym_declare] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_override] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_any] = ACTIONS(3662), + [anon_sym_number] = ACTIONS(3662), + [anon_sym_boolean] = ACTIONS(3662), + [anon_sym_string] = ACTIONS(3662), + [anon_sym_symbol] = ACTIONS(3662), + [anon_sym_object] = ACTIONS(3662), + [anon_sym_property] = ACTIONS(3662), + [anon_sym_signal] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_required] = ACTIONS(3662), + [anon_sym_component] = ACTIONS(3662), + [anon_sym_abstract] = ACTIONS(3662), + [anon_sym_interface] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), [sym_html_comment] = ACTIONS(5), }, - [1211] = { - [sym_comment] = STATE(1211), - [sym_identifier] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_type] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_RBRACE] = ACTIONS(3630), - [anon_sym_typeof] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_from] = ACTIONS(3630), - [anon_sym_with] = ACTIONS(3630), - [anon_sym_var] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_await] = ACTIONS(3630), - [anon_sym_of] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_debugger] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LTtemplate_GT] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_SQUOTE] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_async] = ACTIONS(3630), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_SLASH] = ACTIONS(3630), - [anon_sym_LT] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3630), - [anon_sym_void] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3630), + [1185] = { + [sym_comment] = STATE(1185), + [sym_identifier] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_type] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_typeof] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_await] = ACTIONS(3664), + [anon_sym_of] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_debugger] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_yield] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_LTtemplate_GT] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_async] = ACTIONS(3664), + [anon_sym_function] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_void] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3630), - [sym_number] = ACTIONS(3630), - [sym_private_property_identifier] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [sym_super] = ACTIONS(3630), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [sym_null] = ACTIONS(3630), - [sym_undefined] = ACTIONS(3630), - [anon_sym_AT] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_readonly] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(3630), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_declare] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_override] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_any] = ACTIONS(3630), - [anon_sym_number] = ACTIONS(3630), - [anon_sym_boolean] = ACTIONS(3630), - [anon_sym_string] = ACTIONS(3630), - [anon_sym_symbol] = ACTIONS(3630), - [anon_sym_object] = ACTIONS(3630), - [anon_sym_property] = ACTIONS(3630), - [anon_sym_signal] = ACTIONS(3630), - [anon_sym_on] = ACTIONS(3630), - [anon_sym_required] = ACTIONS(3630), - [anon_sym_component] = ACTIONS(3630), - [anon_sym_abstract] = ACTIONS(3630), - [anon_sym_interface] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), + [anon_sym_BQUOTE] = ACTIONS(3664), + [sym_number] = ACTIONS(3664), + [sym_private_property_identifier] = ACTIONS(3664), + [sym_this] = ACTIONS(3664), + [sym_super] = ACTIONS(3664), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [sym_null] = ACTIONS(3664), + [sym_undefined] = ACTIONS(3664), + [anon_sym_AT] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_readonly] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3664), + [anon_sym_declare] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_override] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_any] = ACTIONS(3664), + [anon_sym_number] = ACTIONS(3664), + [anon_sym_boolean] = ACTIONS(3664), + [anon_sym_string] = ACTIONS(3664), + [anon_sym_symbol] = ACTIONS(3664), + [anon_sym_object] = ACTIONS(3664), + [anon_sym_property] = ACTIONS(3664), + [anon_sym_signal] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_required] = ACTIONS(3664), + [anon_sym_component] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), [sym_html_comment] = ACTIONS(5), }, - [1212] = { - [sym_comment] = STATE(1212), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1186] = { + [sym_comment] = STATE(1186), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), [sym_html_comment] = ACTIONS(5), }, - [1213] = { - [sym_comment] = STATE(1213), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1187] = { + [sym_comment] = STATE(1187), + [sym_identifier] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_default] = ACTIONS(3666), + [anon_sym_type] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_typeof] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_with] = ACTIONS(3666), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_else] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_await] = ACTIONS(3666), + [anon_sym_of] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_debugger] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym_case] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_LTtemplate_GT] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_async] = ACTIONS(3666), + [anon_sym_function] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_void] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3666), + [sym_number] = ACTIONS(3666), + [sym_private_property_identifier] = ACTIONS(3666), + [sym_this] = ACTIONS(3666), + [sym_super] = ACTIONS(3666), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [sym_null] = ACTIONS(3666), + [sym_undefined] = ACTIONS(3666), + [anon_sym_AT] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_readonly] = ACTIONS(3666), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_declare] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_override] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_any] = ACTIONS(3666), + [anon_sym_number] = ACTIONS(3666), + [anon_sym_boolean] = ACTIONS(3666), + [anon_sym_string] = ACTIONS(3666), + [anon_sym_symbol] = ACTIONS(3666), + [anon_sym_object] = ACTIONS(3666), + [anon_sym_property] = ACTIONS(3666), + [anon_sym_signal] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_required] = ACTIONS(3666), + [anon_sym_component] = ACTIONS(3666), + [anon_sym_abstract] = ACTIONS(3666), + [anon_sym_interface] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), [sym_html_comment] = ACTIONS(5), }, - [1214] = { - [sym_comment] = STATE(1214), - [sym_identifier] = ACTIONS(3632), - [anon_sym_export] = ACTIONS(3632), - [anon_sym_default] = ACTIONS(3632), - [anon_sym_type] = ACTIONS(3632), - [anon_sym_namespace] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_typeof] = ACTIONS(3632), - [anon_sym_import] = ACTIONS(3632), - [anon_sym_from] = ACTIONS(3632), - [anon_sym_with] = ACTIONS(3632), - [anon_sym_var] = ACTIONS(3632), - [anon_sym_let] = ACTIONS(3632), - [anon_sym_const] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(3632), - [anon_sym_if] = ACTIONS(3632), - [anon_sym_switch] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_await] = ACTIONS(3632), - [anon_sym_of] = ACTIONS(3632), - [anon_sym_while] = ACTIONS(3632), - [anon_sym_do] = ACTIONS(3632), - [anon_sym_try] = ACTIONS(3632), - [anon_sym_break] = ACTIONS(3632), - [anon_sym_continue] = ACTIONS(3632), - [anon_sym_debugger] = ACTIONS(3632), - [anon_sym_return] = ACTIONS(3632), - [anon_sym_throw] = ACTIONS(3632), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_case] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3632), - [anon_sym_LBRACK] = ACTIONS(3632), - [anon_sym_LTtemplate_GT] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_class] = ACTIONS(3632), - [anon_sym_async] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3632), - [anon_sym_using] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_void] = ACTIONS(3632), - [anon_sym_delete] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_DASH_DASH] = ACTIONS(3632), + [1188] = { + [sym_comment] = STATE(1188), + [sym_identifier] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_type] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_typeof] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_await] = ACTIONS(3668), + [anon_sym_of] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_debugger] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_yield] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LTtemplate_GT] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_async] = ACTIONS(3668), + [anon_sym_function] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_void] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3632), - [sym_number] = ACTIONS(3632), - [sym_private_property_identifier] = ACTIONS(3632), - [sym_this] = ACTIONS(3632), - [sym_super] = ACTIONS(3632), - [sym_true] = ACTIONS(3632), - [sym_false] = ACTIONS(3632), - [sym_null] = ACTIONS(3632), - [sym_undefined] = ACTIONS(3632), - [anon_sym_AT] = ACTIONS(3632), - [anon_sym_static] = ACTIONS(3632), - [anon_sym_readonly] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3632), - [anon_sym_declare] = ACTIONS(3632), - [anon_sym_public] = ACTIONS(3632), - [anon_sym_private] = ACTIONS(3632), - [anon_sym_protected] = ACTIONS(3632), - [anon_sym_override] = ACTIONS(3632), - [anon_sym_module] = ACTIONS(3632), - [anon_sym_any] = ACTIONS(3632), - [anon_sym_number] = ACTIONS(3632), - [anon_sym_boolean] = ACTIONS(3632), - [anon_sym_string] = ACTIONS(3632), - [anon_sym_symbol] = ACTIONS(3632), - [anon_sym_object] = ACTIONS(3632), - [anon_sym_property] = ACTIONS(3632), - [anon_sym_signal] = ACTIONS(3632), - [anon_sym_on] = ACTIONS(3632), - [anon_sym_required] = ACTIONS(3632), - [anon_sym_component] = ACTIONS(3632), - [anon_sym_abstract] = ACTIONS(3632), - [anon_sym_interface] = ACTIONS(3632), - [anon_sym_enum] = ACTIONS(3632), + [anon_sym_BQUOTE] = ACTIONS(3668), + [sym_number] = ACTIONS(3668), + [sym_private_property_identifier] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [sym_super] = ACTIONS(3668), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [sym_null] = ACTIONS(3668), + [sym_undefined] = ACTIONS(3668), + [anon_sym_AT] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_readonly] = ACTIONS(3668), + [anon_sym_get] = ACTIONS(3668), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_declare] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_override] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_any] = ACTIONS(3668), + [anon_sym_number] = ACTIONS(3668), + [anon_sym_boolean] = ACTIONS(3668), + [anon_sym_string] = ACTIONS(3668), + [anon_sym_symbol] = ACTIONS(3668), + [anon_sym_object] = ACTIONS(3668), + [anon_sym_property] = ACTIONS(3668), + [anon_sym_signal] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_required] = ACTIONS(3668), + [anon_sym_component] = ACTIONS(3668), + [anon_sym_abstract] = ACTIONS(3668), + [anon_sym_interface] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), [sym_html_comment] = ACTIONS(5), }, - [1215] = { - [sym_comment] = STATE(1215), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [1189] = { + [sym_comment] = STATE(1189), + [sym_identifier] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_default] = ACTIONS(3670), + [anon_sym_type] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_typeof] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_from] = ACTIONS(3670), + [anon_sym_with] = ACTIONS(3670), + [anon_sym_var] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_await] = ACTIONS(3670), + [anon_sym_of] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_debugger] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_case] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LTtemplate_GT] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_async] = ACTIONS(3670), + [anon_sym_function] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_void] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3670), + [sym_number] = ACTIONS(3670), + [sym_private_property_identifier] = ACTIONS(3670), + [sym_this] = ACTIONS(3670), + [sym_super] = ACTIONS(3670), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [sym_null] = ACTIONS(3670), + [sym_undefined] = ACTIONS(3670), + [anon_sym_AT] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_readonly] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(3670), + [anon_sym_set] = ACTIONS(3670), + [anon_sym_declare] = ACTIONS(3670), + [anon_sym_public] = ACTIONS(3670), + [anon_sym_private] = ACTIONS(3670), + [anon_sym_protected] = ACTIONS(3670), + [anon_sym_override] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_any] = ACTIONS(3670), + [anon_sym_number] = ACTIONS(3670), + [anon_sym_boolean] = ACTIONS(3670), + [anon_sym_string] = ACTIONS(3670), + [anon_sym_symbol] = ACTIONS(3670), + [anon_sym_object] = ACTIONS(3670), + [anon_sym_property] = ACTIONS(3670), + [anon_sym_signal] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3670), + [anon_sym_required] = ACTIONS(3670), + [anon_sym_component] = ACTIONS(3670), + [anon_sym_abstract] = ACTIONS(3670), + [anon_sym_interface] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), [sym_html_comment] = ACTIONS(5), }, - [1216] = { - [sym_comment] = STATE(1216), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1190] = { + [sym_comment] = STATE(1190), + [sym_identifier] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_import] = ACTIONS(2474), + [anon_sym_from] = ACTIONS(2474), + [anon_sym_with] = ACTIONS(2474), + [anon_sym_var] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_await] = ACTIONS(2474), + [anon_sym_of] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_debugger] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_throw] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_case] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LTtemplate_GT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2474), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2474), + [anon_sym_using] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_SLASH] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2474), + [anon_sym_TILDE] = ACTIONS(2474), + [anon_sym_void] = ACTIONS(2474), + [anon_sym_delete] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2474), + [sym_number] = ACTIONS(2474), + [sym_private_property_identifier] = ACTIONS(2474), + [sym_this] = ACTIONS(2474), + [sym_super] = ACTIONS(2474), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [sym_null] = ACTIONS(2474), + [sym_undefined] = ACTIONS(2474), + [anon_sym_AT] = ACTIONS(2474), + [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_property] = ACTIONS(2474), + [anon_sym_signal] = ACTIONS(2474), + [anon_sym_on] = ACTIONS(2474), + [anon_sym_required] = ACTIONS(2474), + [anon_sym_component] = ACTIONS(2474), + [anon_sym_abstract] = ACTIONS(2474), + [anon_sym_interface] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [sym__automatic_semicolon] = ACTIONS(2556), [sym_html_comment] = ACTIONS(5), }, - [1217] = { - [sym_comment] = STATE(1217), - [sym_identifier] = ACTIONS(3634), - [anon_sym_export] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_type] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3634), - [anon_sym_RBRACE] = ACTIONS(3634), - [anon_sym_typeof] = ACTIONS(3634), - [anon_sym_import] = ACTIONS(3634), - [anon_sym_from] = ACTIONS(3634), - [anon_sym_with] = ACTIONS(3634), - [anon_sym_var] = ACTIONS(3634), - [anon_sym_let] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_else] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_await] = ACTIONS(3634), - [anon_sym_of] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_debugger] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_LTtemplate_GT] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(3634), - [anon_sym_SQUOTE] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_async] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_SLASH] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(3634), - [anon_sym_void] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_PLUS_PLUS] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3634), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3634), - [sym_number] = ACTIONS(3634), - [sym_private_property_identifier] = ACTIONS(3634), - [sym_this] = ACTIONS(3634), - [sym_super] = ACTIONS(3634), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [sym_null] = ACTIONS(3634), - [sym_undefined] = ACTIONS(3634), - [anon_sym_AT] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_readonly] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(3634), - [anon_sym_set] = ACTIONS(3634), - [anon_sym_declare] = ACTIONS(3634), - [anon_sym_public] = ACTIONS(3634), - [anon_sym_private] = ACTIONS(3634), - [anon_sym_protected] = ACTIONS(3634), - [anon_sym_override] = ACTIONS(3634), - [anon_sym_module] = ACTIONS(3634), - [anon_sym_any] = ACTIONS(3634), - [anon_sym_number] = ACTIONS(3634), - [anon_sym_boolean] = ACTIONS(3634), - [anon_sym_string] = ACTIONS(3634), - [anon_sym_symbol] = ACTIONS(3634), - [anon_sym_object] = ACTIONS(3634), - [anon_sym_property] = ACTIONS(3634), - [anon_sym_signal] = ACTIONS(3634), - [anon_sym_on] = ACTIONS(3634), - [anon_sym_required] = ACTIONS(3634), - [anon_sym_component] = ACTIONS(3634), - [anon_sym_abstract] = ACTIONS(3634), - [anon_sym_interface] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), + [1191] = { + [sym_comment] = STATE(1191), + [sym_identifier] = ACTIONS(2366), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_default] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2366), + [anon_sym_import] = ACTIONS(2366), + [anon_sym_from] = ACTIONS(2366), + [anon_sym_with] = ACTIONS(2366), + [anon_sym_var] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_switch] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2366), + [anon_sym_of] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_debugger] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_throw] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_case] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LTtemplate_GT] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_class] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_function] = ACTIONS(2366), + [anon_sym_new] = ACTIONS(2366), + [anon_sym_using] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_private_property_identifier] = ACTIONS(2366), + [sym_this] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_true] = ACTIONS(2366), + [sym_false] = ACTIONS(2366), + [sym_null] = ACTIONS(2366), + [sym_undefined] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_readonly] = ACTIONS(2366), + [anon_sym_get] = ACTIONS(2366), + [anon_sym_set] = ACTIONS(2366), + [anon_sym_declare] = ACTIONS(2366), + [anon_sym_public] = ACTIONS(2366), + [anon_sym_private] = ACTIONS(2366), + [anon_sym_protected] = ACTIONS(2366), + [anon_sym_override] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_any] = ACTIONS(2366), + [anon_sym_number] = ACTIONS(2366), + [anon_sym_boolean] = ACTIONS(2366), + [anon_sym_string] = ACTIONS(2366), + [anon_sym_symbol] = ACTIONS(2366), + [anon_sym_object] = ACTIONS(2366), + [anon_sym_property] = ACTIONS(2366), + [anon_sym_signal] = ACTIONS(2366), + [anon_sym_on] = ACTIONS(2366), + [anon_sym_required] = ACTIONS(2366), + [anon_sym_component] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), [sym_html_comment] = ACTIONS(5), }, - [1218] = { - [sym_comment] = STATE(1218), - [sym_identifier] = ACTIONS(3636), - [anon_sym_export] = ACTIONS(3636), - [anon_sym_default] = ACTIONS(3636), - [anon_sym_type] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_typeof] = ACTIONS(3636), - [anon_sym_import] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3636), - [anon_sym_with] = ACTIONS(3636), - [anon_sym_var] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_await] = ACTIONS(3636), - [anon_sym_of] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_break] = ACTIONS(3636), - [anon_sym_continue] = ACTIONS(3636), - [anon_sym_debugger] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_throw] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_case] = ACTIONS(3636), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LTtemplate_GT] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_async] = ACTIONS(3636), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_void] = ACTIONS(3636), - [anon_sym_delete] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3636), + [1192] = { + [sym_comment] = STATE(1192), + [sym_identifier] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_type] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_typeof] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [anon_sym_var] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_await] = ACTIONS(3672), + [anon_sym_of] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_debugger] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_yield] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_LTtemplate_GT] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_async] = ACTIONS(3672), + [anon_sym_function] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_void] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3636), - [sym_number] = ACTIONS(3636), - [sym_private_property_identifier] = ACTIONS(3636), - [sym_this] = ACTIONS(3636), - [sym_super] = ACTIONS(3636), - [sym_true] = ACTIONS(3636), - [sym_false] = ACTIONS(3636), - [sym_null] = ACTIONS(3636), - [sym_undefined] = ACTIONS(3636), - [anon_sym_AT] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_readonly] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(3636), - [anon_sym_set] = ACTIONS(3636), - [anon_sym_declare] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_protected] = ACTIONS(3636), - [anon_sym_override] = ACTIONS(3636), - [anon_sym_module] = ACTIONS(3636), - [anon_sym_any] = ACTIONS(3636), - [anon_sym_number] = ACTIONS(3636), - [anon_sym_boolean] = ACTIONS(3636), - [anon_sym_string] = ACTIONS(3636), - [anon_sym_symbol] = ACTIONS(3636), - [anon_sym_object] = ACTIONS(3636), - [anon_sym_property] = ACTIONS(3636), - [anon_sym_signal] = ACTIONS(3636), - [anon_sym_on] = ACTIONS(3636), - [anon_sym_required] = ACTIONS(3636), - [anon_sym_component] = ACTIONS(3636), - [anon_sym_abstract] = ACTIONS(3636), - [anon_sym_interface] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), + [anon_sym_BQUOTE] = ACTIONS(3672), + [sym_number] = ACTIONS(3672), + [sym_private_property_identifier] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [sym_null] = ACTIONS(3672), + [sym_undefined] = ACTIONS(3672), + [anon_sym_AT] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_readonly] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(3672), + [anon_sym_set] = ACTIONS(3672), + [anon_sym_declare] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_override] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_any] = ACTIONS(3672), + [anon_sym_number] = ACTIONS(3672), + [anon_sym_boolean] = ACTIONS(3672), + [anon_sym_string] = ACTIONS(3672), + [anon_sym_symbol] = ACTIONS(3672), + [anon_sym_object] = ACTIONS(3672), + [anon_sym_property] = ACTIONS(3672), + [anon_sym_signal] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_required] = ACTIONS(3672), + [anon_sym_component] = ACTIONS(3672), + [anon_sym_abstract] = ACTIONS(3672), + [anon_sym_interface] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), [sym_html_comment] = ACTIONS(5), }, - [1219] = { - [sym_comment] = STATE(1219), - [sym_identifier] = ACTIONS(3638), - [anon_sym_export] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_type] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_typeof] = ACTIONS(3638), - [anon_sym_import] = ACTIONS(3638), - [anon_sym_from] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3638), - [anon_sym_var] = ACTIONS(3638), - [anon_sym_let] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_else] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_await] = ACTIONS(3638), - [anon_sym_of] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_debugger] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_yield] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LTtemplate_GT] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(3638), - [anon_sym_SQUOTE] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_async] = ACTIONS(3638), - [anon_sym_function] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_SLASH] = ACTIONS(3638), - [anon_sym_LT] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_void] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3638), - [sym_number] = ACTIONS(3638), - [sym_private_property_identifier] = ACTIONS(3638), - [sym_this] = ACTIONS(3638), - [sym_super] = ACTIONS(3638), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [sym_null] = ACTIONS(3638), - [sym_undefined] = ACTIONS(3638), - [anon_sym_AT] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_readonly] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(3638), - [anon_sym_set] = ACTIONS(3638), - [anon_sym_declare] = ACTIONS(3638), - [anon_sym_public] = ACTIONS(3638), - [anon_sym_private] = ACTIONS(3638), - [anon_sym_protected] = ACTIONS(3638), - [anon_sym_override] = ACTIONS(3638), - [anon_sym_module] = ACTIONS(3638), - [anon_sym_any] = ACTIONS(3638), - [anon_sym_number] = ACTIONS(3638), - [anon_sym_boolean] = ACTIONS(3638), - [anon_sym_string] = ACTIONS(3638), - [anon_sym_symbol] = ACTIONS(3638), - [anon_sym_object] = ACTIONS(3638), - [anon_sym_property] = ACTIONS(3638), - [anon_sym_signal] = ACTIONS(3638), - [anon_sym_on] = ACTIONS(3638), - [anon_sym_required] = ACTIONS(3638), - [anon_sym_component] = ACTIONS(3638), - [anon_sym_abstract] = ACTIONS(3638), - [anon_sym_interface] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), + [1193] = { + [sym_comment] = STATE(1193), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_from] = ACTIONS(2482), + [anon_sym_with] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_of] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_throw] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_property] = ACTIONS(2482), + [anon_sym_signal] = ACTIONS(2482), + [anon_sym_on] = ACTIONS(2482), + [anon_sym_required] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_interface] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), [sym_html_comment] = ACTIONS(5), }, - [1220] = { - [sym_comment] = STATE(1220), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1194] = { + [sym_comment] = STATE(1194), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_default] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_typeof] = ACTIONS(2442), + [anon_sym_import] = ACTIONS(2442), + [anon_sym_from] = ACTIONS(2442), + [anon_sym_with] = ACTIONS(2442), + [anon_sym_var] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_switch] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_await] = ACTIONS(2442), + [anon_sym_of] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_debugger] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_throw] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_case] = ACTIONS(2442), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LTtemplate_GT] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_class] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_using] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_void] = ACTIONS(2442), + [anon_sym_delete] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_number] = ACTIONS(2442), + [sym_private_property_identifier] = ACTIONS(2442), + [sym_this] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_true] = ACTIONS(2442), + [sym_false] = ACTIONS(2442), + [sym_null] = ACTIONS(2442), + [sym_undefined] = ACTIONS(2442), + [anon_sym_AT] = ACTIONS(2442), + [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_property] = ACTIONS(2442), + [anon_sym_signal] = ACTIONS(2442), + [anon_sym_on] = ACTIONS(2442), + [anon_sym_required] = ACTIONS(2442), + [anon_sym_component] = ACTIONS(2442), + [anon_sym_abstract] = ACTIONS(2442), + [anon_sym_interface] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), + [sym__automatic_semicolon] = ACTIONS(2570), [sym_html_comment] = ACTIONS(5), }, - [1221] = { - [sym_comment] = STATE(1221), - [sym_identifier] = ACTIONS(3640), - [anon_sym_export] = ACTIONS(3640), - [anon_sym_default] = ACTIONS(3640), - [anon_sym_type] = ACTIONS(3640), - [anon_sym_namespace] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_RBRACE] = ACTIONS(3640), - [anon_sym_typeof] = ACTIONS(3640), - [anon_sym_import] = ACTIONS(3640), - [anon_sym_from] = ACTIONS(3640), - [anon_sym_with] = ACTIONS(3640), - [anon_sym_var] = ACTIONS(3640), - [anon_sym_let] = ACTIONS(3640), - [anon_sym_const] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_else] = ACTIONS(3640), - [anon_sym_if] = ACTIONS(3640), - [anon_sym_switch] = ACTIONS(3640), - [anon_sym_for] = ACTIONS(3640), - [anon_sym_LPAREN] = ACTIONS(3640), - [anon_sym_await] = ACTIONS(3640), - [anon_sym_of] = ACTIONS(3640), - [anon_sym_while] = ACTIONS(3640), - [anon_sym_do] = ACTIONS(3640), - [anon_sym_try] = ACTIONS(3640), - [anon_sym_break] = ACTIONS(3640), - [anon_sym_continue] = ACTIONS(3640), - [anon_sym_debugger] = ACTIONS(3640), - [anon_sym_return] = ACTIONS(3640), - [anon_sym_throw] = ACTIONS(3640), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_case] = ACTIONS(3640), - [anon_sym_yield] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3640), - [anon_sym_LTtemplate_GT] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_class] = ACTIONS(3640), - [anon_sym_async] = ACTIONS(3640), - [anon_sym_function] = ACTIONS(3640), - [anon_sym_new] = ACTIONS(3640), - [anon_sym_using] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_SLASH] = ACTIONS(3640), - [anon_sym_LT] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_void] = ACTIONS(3640), - [anon_sym_delete] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(3640), + [1195] = { + [sym_comment] = STATE(1195), + [sym_identifier] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_default] = ACTIONS(3674), + [anon_sym_type] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_typeof] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_with] = ACTIONS(3674), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_else] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_await] = ACTIONS(3674), + [anon_sym_of] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_debugger] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_case] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LTtemplate_GT] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_async] = ACTIONS(3674), + [anon_sym_function] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3640), - [sym_number] = ACTIONS(3640), - [sym_private_property_identifier] = ACTIONS(3640), - [sym_this] = ACTIONS(3640), - [sym_super] = ACTIONS(3640), - [sym_true] = ACTIONS(3640), - [sym_false] = ACTIONS(3640), - [sym_null] = ACTIONS(3640), - [sym_undefined] = ACTIONS(3640), - [anon_sym_AT] = ACTIONS(3640), - [anon_sym_static] = ACTIONS(3640), - [anon_sym_readonly] = ACTIONS(3640), - [anon_sym_get] = ACTIONS(3640), - [anon_sym_set] = ACTIONS(3640), - [anon_sym_declare] = ACTIONS(3640), - [anon_sym_public] = ACTIONS(3640), - [anon_sym_private] = ACTIONS(3640), - [anon_sym_protected] = ACTIONS(3640), - [anon_sym_override] = ACTIONS(3640), - [anon_sym_module] = ACTIONS(3640), - [anon_sym_any] = ACTIONS(3640), - [anon_sym_number] = ACTIONS(3640), - [anon_sym_boolean] = ACTIONS(3640), - [anon_sym_string] = ACTIONS(3640), - [anon_sym_symbol] = ACTIONS(3640), - [anon_sym_object] = ACTIONS(3640), - [anon_sym_property] = ACTIONS(3640), - [anon_sym_signal] = ACTIONS(3640), - [anon_sym_on] = ACTIONS(3640), - [anon_sym_required] = ACTIONS(3640), - [anon_sym_component] = ACTIONS(3640), - [anon_sym_abstract] = ACTIONS(3640), - [anon_sym_interface] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), + [anon_sym_BQUOTE] = ACTIONS(3674), + [sym_number] = ACTIONS(3674), + [sym_private_property_identifier] = ACTIONS(3674), + [sym_this] = ACTIONS(3674), + [sym_super] = ACTIONS(3674), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [sym_null] = ACTIONS(3674), + [sym_undefined] = ACTIONS(3674), + [anon_sym_AT] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_readonly] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(3674), + [anon_sym_set] = ACTIONS(3674), + [anon_sym_declare] = ACTIONS(3674), + [anon_sym_public] = ACTIONS(3674), + [anon_sym_private] = ACTIONS(3674), + [anon_sym_protected] = ACTIONS(3674), + [anon_sym_override] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_any] = ACTIONS(3674), + [anon_sym_number] = ACTIONS(3674), + [anon_sym_boolean] = ACTIONS(3674), + [anon_sym_string] = ACTIONS(3674), + [anon_sym_symbol] = ACTIONS(3674), + [anon_sym_object] = ACTIONS(3674), + [anon_sym_property] = ACTIONS(3674), + [anon_sym_signal] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_required] = ACTIONS(3674), + [anon_sym_component] = ACTIONS(3674), + [anon_sym_abstract] = ACTIONS(3674), + [anon_sym_interface] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), [sym_html_comment] = ACTIONS(5), }, - [1222] = { - [sym_comment] = STATE(1222), - [sym_identifier] = ACTIONS(3642), - [anon_sym_export] = ACTIONS(3642), - [anon_sym_default] = ACTIONS(3642), - [anon_sym_type] = ACTIONS(3642), - [anon_sym_namespace] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_typeof] = ACTIONS(3642), - [anon_sym_import] = ACTIONS(3642), - [anon_sym_from] = ACTIONS(3642), - [anon_sym_with] = ACTIONS(3642), - [anon_sym_var] = ACTIONS(3642), - [anon_sym_let] = ACTIONS(3642), - [anon_sym_const] = ACTIONS(3642), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_else] = ACTIONS(3642), - [anon_sym_if] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_for] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_await] = ACTIONS(3642), - [anon_sym_of] = ACTIONS(3642), - [anon_sym_while] = ACTIONS(3642), - [anon_sym_do] = ACTIONS(3642), - [anon_sym_try] = ACTIONS(3642), - [anon_sym_break] = ACTIONS(3642), - [anon_sym_continue] = ACTIONS(3642), - [anon_sym_debugger] = ACTIONS(3642), - [anon_sym_return] = ACTIONS(3642), - [anon_sym_throw] = ACTIONS(3642), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_case] = ACTIONS(3642), - [anon_sym_yield] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_LTtemplate_GT] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(3642), - [anon_sym_SQUOTE] = ACTIONS(3642), - [anon_sym_class] = ACTIONS(3642), - [anon_sym_async] = ACTIONS(3642), - [anon_sym_function] = ACTIONS(3642), - [anon_sym_new] = ACTIONS(3642), - [anon_sym_using] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_SLASH] = ACTIONS(3642), - [anon_sym_LT] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_void] = ACTIONS(3642), - [anon_sym_delete] = ACTIONS(3642), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3642), - [sym_number] = ACTIONS(3642), - [sym_private_property_identifier] = ACTIONS(3642), - [sym_this] = ACTIONS(3642), - [sym_super] = ACTIONS(3642), - [sym_true] = ACTIONS(3642), - [sym_false] = ACTIONS(3642), - [sym_null] = ACTIONS(3642), - [sym_undefined] = ACTIONS(3642), - [anon_sym_AT] = ACTIONS(3642), - [anon_sym_static] = ACTIONS(3642), - [anon_sym_readonly] = ACTIONS(3642), - [anon_sym_get] = ACTIONS(3642), - [anon_sym_set] = ACTIONS(3642), - [anon_sym_declare] = ACTIONS(3642), - [anon_sym_public] = ACTIONS(3642), - [anon_sym_private] = ACTIONS(3642), - [anon_sym_protected] = ACTIONS(3642), - [anon_sym_override] = ACTIONS(3642), - [anon_sym_module] = ACTIONS(3642), - [anon_sym_any] = ACTIONS(3642), - [anon_sym_number] = ACTIONS(3642), - [anon_sym_boolean] = ACTIONS(3642), - [anon_sym_string] = ACTIONS(3642), - [anon_sym_symbol] = ACTIONS(3642), - [anon_sym_object] = ACTIONS(3642), - [anon_sym_property] = ACTIONS(3642), - [anon_sym_signal] = ACTIONS(3642), - [anon_sym_on] = ACTIONS(3642), - [anon_sym_required] = ACTIONS(3642), - [anon_sym_component] = ACTIONS(3642), - [anon_sym_abstract] = ACTIONS(3642), - [anon_sym_interface] = ACTIONS(3642), - [anon_sym_enum] = ACTIONS(3642), + [1196] = { + [sym_comment] = STATE(1196), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_catch] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3676), [sym_html_comment] = ACTIONS(5), }, - [1223] = { - [sym_comment] = STATE(1223), - [sym_identifier] = ACTIONS(3644), - [anon_sym_export] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_type] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3644), - [anon_sym_RBRACE] = ACTIONS(3644), - [anon_sym_typeof] = ACTIONS(3644), - [anon_sym_import] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3644), - [anon_sym_with] = ACTIONS(3644), - [anon_sym_var] = ACTIONS(3644), - [anon_sym_let] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_else] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_LPAREN] = ACTIONS(3644), - [anon_sym_await] = ACTIONS(3644), - [anon_sym_of] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_debugger] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_yield] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_LTtemplate_GT] = ACTIONS(3644), - [anon_sym_DQUOTE] = ACTIONS(3644), - [anon_sym_SQUOTE] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_async] = ACTIONS(3644), - [anon_sym_function] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(3644), - [anon_sym_void] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3644), + [1197] = { + [sym_comment] = STATE(1197), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_catch] = ACTIONS(2458), + [anon_sym_finally] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3644), - [sym_number] = ACTIONS(3644), - [sym_private_property_identifier] = ACTIONS(3644), - [sym_this] = ACTIONS(3644), - [sym_super] = ACTIONS(3644), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [sym_null] = ACTIONS(3644), - [sym_undefined] = ACTIONS(3644), - [anon_sym_AT] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_readonly] = ACTIONS(3644), - [anon_sym_get] = ACTIONS(3644), - [anon_sym_set] = ACTIONS(3644), - [anon_sym_declare] = ACTIONS(3644), - [anon_sym_public] = ACTIONS(3644), - [anon_sym_private] = ACTIONS(3644), - [anon_sym_protected] = ACTIONS(3644), - [anon_sym_override] = ACTIONS(3644), - [anon_sym_module] = ACTIONS(3644), - [anon_sym_any] = ACTIONS(3644), - [anon_sym_number] = ACTIONS(3644), - [anon_sym_boolean] = ACTIONS(3644), - [anon_sym_string] = ACTIONS(3644), - [anon_sym_symbol] = ACTIONS(3644), - [anon_sym_object] = ACTIONS(3644), - [anon_sym_property] = ACTIONS(3644), - [anon_sym_signal] = ACTIONS(3644), - [anon_sym_on] = ACTIONS(3644), - [anon_sym_required] = ACTIONS(3644), - [anon_sym_component] = ACTIONS(3644), - [anon_sym_abstract] = ACTIONS(3644), - [anon_sym_interface] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), [sym_html_comment] = ACTIONS(5), }, - [1224] = { - [sym_comment] = STATE(1224), - [sym_identifier] = ACTIONS(3646), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_default] = ACTIONS(3646), - [anon_sym_type] = ACTIONS(3646), - [anon_sym_namespace] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(3646), - [anon_sym_typeof] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_from] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_const] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_else] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_LPAREN] = ACTIONS(3646), - [anon_sym_await] = ACTIONS(3646), - [anon_sym_of] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym_case] = ACTIONS(3646), - [anon_sym_yield] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3646), - [anon_sym_LTtemplate_GT] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_class] = ACTIONS(3646), - [anon_sym_async] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_using] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_LT] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_void] = ACTIONS(3646), - [anon_sym_delete] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3646), + [1198] = { + [sym_comment] = STATE(1198), + [sym_identifier] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_typeof] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_await] = ACTIONS(3678), + [anon_sym_of] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_debugger] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_case] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LTtemplate_GT] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_async] = ACTIONS(3678), + [anon_sym_function] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_void] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3646), - [sym_number] = ACTIONS(3646), - [sym_private_property_identifier] = ACTIONS(3646), - [sym_this] = ACTIONS(3646), - [sym_super] = ACTIONS(3646), - [sym_true] = ACTIONS(3646), - [sym_false] = ACTIONS(3646), - [sym_null] = ACTIONS(3646), - [sym_undefined] = ACTIONS(3646), - [anon_sym_AT] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_readonly] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_declare] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_protected] = ACTIONS(3646), - [anon_sym_override] = ACTIONS(3646), - [anon_sym_module] = ACTIONS(3646), - [anon_sym_any] = ACTIONS(3646), - [anon_sym_number] = ACTIONS(3646), - [anon_sym_boolean] = ACTIONS(3646), - [anon_sym_string] = ACTIONS(3646), - [anon_sym_symbol] = ACTIONS(3646), - [anon_sym_object] = ACTIONS(3646), - [anon_sym_property] = ACTIONS(3646), - [anon_sym_signal] = ACTIONS(3646), - [anon_sym_on] = ACTIONS(3646), - [anon_sym_required] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_enum] = ACTIONS(3646), + [anon_sym_BQUOTE] = ACTIONS(3678), + [sym_number] = ACTIONS(3678), + [sym_private_property_identifier] = ACTIONS(3678), + [sym_this] = ACTIONS(3678), + [sym_super] = ACTIONS(3678), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_AT] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(3678), + [anon_sym_set] = ACTIONS(3678), + [anon_sym_declare] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_override] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_any] = ACTIONS(3678), + [anon_sym_number] = ACTIONS(3678), + [anon_sym_boolean] = ACTIONS(3678), + [anon_sym_string] = ACTIONS(3678), + [anon_sym_symbol] = ACTIONS(3678), + [anon_sym_object] = ACTIONS(3678), + [anon_sym_property] = ACTIONS(3678), + [anon_sym_signal] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_required] = ACTIONS(3678), + [anon_sym_component] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_interface] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), [sym_html_comment] = ACTIONS(5), }, - [1225] = { - [sym_comment] = STATE(1225), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1199] = { + [sym_comment] = STATE(1199), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), [sym_html_comment] = ACTIONS(5), }, - [1226] = { - [sym_comment] = STATE(1226), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1200] = { + [sym_comment] = STATE(1200), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_from] = ACTIONS(2462), + [anon_sym_with] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_debugger] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_void] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_undefined] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_override] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_object] = ACTIONS(2462), + [anon_sym_property] = ACTIONS(2462), + [anon_sym_signal] = ACTIONS(2462), + [anon_sym_on] = ACTIONS(2462), + [anon_sym_required] = ACTIONS(2462), + [anon_sym_component] = ACTIONS(2462), + [anon_sym_abstract] = ACTIONS(2462), + [anon_sym_interface] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), [sym_html_comment] = ACTIONS(5), }, - [1227] = { - [sym_comment] = STATE(1227), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1201] = { + [sym_comment] = STATE(1201), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), [sym_html_comment] = ACTIONS(5), }, - [1228] = { - [sym_comment] = STATE(1228), - [sym_identifier] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_type] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_RBRACE] = ACTIONS(3648), - [anon_sym_typeof] = ACTIONS(3648), - [anon_sym_import] = ACTIONS(3648), - [anon_sym_from] = ACTIONS(3648), - [anon_sym_with] = ACTIONS(3648), - [anon_sym_var] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_else] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_await] = ACTIONS(3648), - [anon_sym_of] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_debugger] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_yield] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_LTtemplate_GT] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_async] = ACTIONS(3648), - [anon_sym_function] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3648), - [anon_sym_LT] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [anon_sym_void] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), + [1202] = { + [sym_comment] = STATE(1202), + [sym_identifier] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_default] = ACTIONS(3682), + [anon_sym_type] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_typeof] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_from] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_var] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_else] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_await] = ACTIONS(3682), + [anon_sym_of] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_debugger] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym_case] = ACTIONS(3682), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LTtemplate_GT] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_async] = ACTIONS(3682), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_void] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3682), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3648), - [sym_number] = ACTIONS(3648), - [sym_private_property_identifier] = ACTIONS(3648), - [sym_this] = ACTIONS(3648), - [sym_super] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_null] = ACTIONS(3648), - [sym_undefined] = ACTIONS(3648), - [anon_sym_AT] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_readonly] = ACTIONS(3648), - [anon_sym_get] = ACTIONS(3648), - [anon_sym_set] = ACTIONS(3648), - [anon_sym_declare] = ACTIONS(3648), - [anon_sym_public] = ACTIONS(3648), - [anon_sym_private] = ACTIONS(3648), - [anon_sym_protected] = ACTIONS(3648), - [anon_sym_override] = ACTIONS(3648), - [anon_sym_module] = ACTIONS(3648), - [anon_sym_any] = ACTIONS(3648), - [anon_sym_number] = ACTIONS(3648), - [anon_sym_boolean] = ACTIONS(3648), - [anon_sym_string] = ACTIONS(3648), - [anon_sym_symbol] = ACTIONS(3648), - [anon_sym_object] = ACTIONS(3648), - [anon_sym_property] = ACTIONS(3648), - [anon_sym_signal] = ACTIONS(3648), - [anon_sym_on] = ACTIONS(3648), - [anon_sym_required] = ACTIONS(3648), - [anon_sym_component] = ACTIONS(3648), - [anon_sym_abstract] = ACTIONS(3648), - [anon_sym_interface] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3682), + [sym_private_property_identifier] = ACTIONS(3682), + [sym_this] = ACTIONS(3682), + [sym_super] = ACTIONS(3682), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [sym_null] = ACTIONS(3682), + [sym_undefined] = ACTIONS(3682), + [anon_sym_AT] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_get] = ACTIONS(3682), + [anon_sym_set] = ACTIONS(3682), + [anon_sym_declare] = ACTIONS(3682), + [anon_sym_public] = ACTIONS(3682), + [anon_sym_private] = ACTIONS(3682), + [anon_sym_protected] = ACTIONS(3682), + [anon_sym_override] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_any] = ACTIONS(3682), + [anon_sym_number] = ACTIONS(3682), + [anon_sym_boolean] = ACTIONS(3682), + [anon_sym_string] = ACTIONS(3682), + [anon_sym_symbol] = ACTIONS(3682), + [anon_sym_object] = ACTIONS(3682), + [anon_sym_property] = ACTIONS(3682), + [anon_sym_signal] = ACTIONS(3682), + [anon_sym_on] = ACTIONS(3682), + [anon_sym_required] = ACTIONS(3682), + [anon_sym_component] = ACTIONS(3682), + [anon_sym_abstract] = ACTIONS(3682), + [anon_sym_interface] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), [sym_html_comment] = ACTIONS(5), }, - [1229] = { - [sym_comment] = STATE(1229), - [sym_identifier] = ACTIONS(3650), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_default] = ACTIONS(3650), - [anon_sym_type] = ACTIONS(3650), - [anon_sym_namespace] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_RBRACE] = ACTIONS(3650), - [anon_sym_typeof] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_const] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_LPAREN] = ACTIONS(3650), - [anon_sym_await] = ACTIONS(3650), - [anon_sym_of] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym_case] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_LTtemplate_GT] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_class] = ACTIONS(3650), - [anon_sym_async] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_using] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_void] = ACTIONS(3650), - [anon_sym_delete] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_DASH_DASH] = ACTIONS(3650), + [1203] = { + [sym_comment] = STATE(1203), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3650), - [sym_number] = ACTIONS(3650), - [sym_private_property_identifier] = ACTIONS(3650), - [sym_this] = ACTIONS(3650), - [sym_super] = ACTIONS(3650), - [sym_true] = ACTIONS(3650), - [sym_false] = ACTIONS(3650), - [sym_null] = ACTIONS(3650), - [sym_undefined] = ACTIONS(3650), - [anon_sym_AT] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_readonly] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_declare] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_protected] = ACTIONS(3650), - [anon_sym_override] = ACTIONS(3650), - [anon_sym_module] = ACTIONS(3650), - [anon_sym_any] = ACTIONS(3650), - [anon_sym_number] = ACTIONS(3650), - [anon_sym_boolean] = ACTIONS(3650), - [anon_sym_string] = ACTIONS(3650), - [anon_sym_symbol] = ACTIONS(3650), - [anon_sym_object] = ACTIONS(3650), - [anon_sym_property] = ACTIONS(3650), - [anon_sym_signal] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_required] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_enum] = ACTIONS(3650), - [sym_html_comment] = ACTIONS(5), - }, - [1230] = { - [sym_comment] = STATE(1230), - [sym_identifier] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_type] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3652), - [anon_sym_import] = ACTIONS(3652), - [anon_sym_from] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [anon_sym_var] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_await] = ACTIONS(3652), - [anon_sym_of] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_debugger] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_yield] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_LTtemplate_GT] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_async] = ACTIONS(3652), - [anon_sym_function] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_void] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3652), - [sym_number] = ACTIONS(3652), - [sym_private_property_identifier] = ACTIONS(3652), - [sym_this] = ACTIONS(3652), - [sym_super] = ACTIONS(3652), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [sym_null] = ACTIONS(3652), - [sym_undefined] = ACTIONS(3652), - [anon_sym_AT] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_readonly] = ACTIONS(3652), - [anon_sym_get] = ACTIONS(3652), - [anon_sym_set] = ACTIONS(3652), - [anon_sym_declare] = ACTIONS(3652), - [anon_sym_public] = ACTIONS(3652), - [anon_sym_private] = ACTIONS(3652), - [anon_sym_protected] = ACTIONS(3652), - [anon_sym_override] = ACTIONS(3652), - [anon_sym_module] = ACTIONS(3652), - [anon_sym_any] = ACTIONS(3652), - [anon_sym_number] = ACTIONS(3652), - [anon_sym_boolean] = ACTIONS(3652), - [anon_sym_string] = ACTIONS(3652), - [anon_sym_symbol] = ACTIONS(3652), - [anon_sym_object] = ACTIONS(3652), - [anon_sym_property] = ACTIONS(3652), - [anon_sym_signal] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_required] = ACTIONS(3652), - [anon_sym_component] = ACTIONS(3652), - [anon_sym_abstract] = ACTIONS(3652), - [anon_sym_interface] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), [sym_html_comment] = ACTIONS(5), }, - [1231] = { - [sym_comment] = STATE(1231), - [sym_identifier] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_default] = ACTIONS(3654), - [anon_sym_type] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_with] = ACTIONS(3654), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_await] = ACTIONS(3654), - [anon_sym_of] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_debugger] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_case] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_LTtemplate_GT] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_async] = ACTIONS(3654), - [anon_sym_function] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_void] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3654), + [1204] = { + [sym_comment] = STATE(1204), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3654), - [sym_number] = ACTIONS(3654), - [sym_private_property_identifier] = ACTIONS(3654), - [sym_this] = ACTIONS(3654), - [sym_super] = ACTIONS(3654), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [sym_null] = ACTIONS(3654), - [sym_undefined] = ACTIONS(3654), - [anon_sym_AT] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_readonly] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(3654), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_declare] = ACTIONS(3654), - [anon_sym_public] = ACTIONS(3654), - [anon_sym_private] = ACTIONS(3654), - [anon_sym_protected] = ACTIONS(3654), - [anon_sym_override] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_any] = ACTIONS(3654), - [anon_sym_number] = ACTIONS(3654), - [anon_sym_boolean] = ACTIONS(3654), - [anon_sym_string] = ACTIONS(3654), - [anon_sym_symbol] = ACTIONS(3654), - [anon_sym_object] = ACTIONS(3654), - [anon_sym_property] = ACTIONS(3654), - [anon_sym_signal] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_required] = ACTIONS(3654), - [anon_sym_component] = ACTIONS(3654), - [anon_sym_abstract] = ACTIONS(3654), - [anon_sym_interface] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), [sym_html_comment] = ACTIONS(5), }, - [1232] = { - [sym_comment] = STATE(1232), - [sym_identifier] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_default] = ACTIONS(3654), - [anon_sym_type] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_with] = ACTIONS(3654), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_await] = ACTIONS(3654), - [anon_sym_of] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_debugger] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_case] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_LTtemplate_GT] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_async] = ACTIONS(3654), - [anon_sym_function] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_void] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3654), + [1205] = { + [sym_comment] = STATE(1205), + [sym_identifier] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_default] = ACTIONS(3686), + [anon_sym_type] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_typeof] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_var] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_else] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_await] = ACTIONS(3686), + [anon_sym_of] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_debugger] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_case] = ACTIONS(3686), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LTtemplate_GT] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_async] = ACTIONS(3686), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_void] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3654), - [sym_number] = ACTIONS(3654), - [sym_private_property_identifier] = ACTIONS(3654), - [sym_this] = ACTIONS(3654), - [sym_super] = ACTIONS(3654), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [sym_null] = ACTIONS(3654), - [sym_undefined] = ACTIONS(3654), - [anon_sym_AT] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_readonly] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(3654), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_declare] = ACTIONS(3654), - [anon_sym_public] = ACTIONS(3654), - [anon_sym_private] = ACTIONS(3654), - [anon_sym_protected] = ACTIONS(3654), - [anon_sym_override] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_any] = ACTIONS(3654), - [anon_sym_number] = ACTIONS(3654), - [anon_sym_boolean] = ACTIONS(3654), - [anon_sym_string] = ACTIONS(3654), - [anon_sym_symbol] = ACTIONS(3654), - [anon_sym_object] = ACTIONS(3654), - [anon_sym_property] = ACTIONS(3654), - [anon_sym_signal] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_required] = ACTIONS(3654), - [anon_sym_component] = ACTIONS(3654), - [anon_sym_abstract] = ACTIONS(3654), - [anon_sym_interface] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3686), + [sym_number] = ACTIONS(3686), + [sym_private_property_identifier] = ACTIONS(3686), + [sym_this] = ACTIONS(3686), + [sym_super] = ACTIONS(3686), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [sym_null] = ACTIONS(3686), + [sym_undefined] = ACTIONS(3686), + [anon_sym_AT] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_readonly] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(3686), + [anon_sym_set] = ACTIONS(3686), + [anon_sym_declare] = ACTIONS(3686), + [anon_sym_public] = ACTIONS(3686), + [anon_sym_private] = ACTIONS(3686), + [anon_sym_protected] = ACTIONS(3686), + [anon_sym_override] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_any] = ACTIONS(3686), + [anon_sym_number] = ACTIONS(3686), + [anon_sym_boolean] = ACTIONS(3686), + [anon_sym_string] = ACTIONS(3686), + [anon_sym_symbol] = ACTIONS(3686), + [anon_sym_object] = ACTIONS(3686), + [anon_sym_property] = ACTIONS(3686), + [anon_sym_signal] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_required] = ACTIONS(3686), + [anon_sym_component] = ACTIONS(3686), + [anon_sym_abstract] = ACTIONS(3686), + [anon_sym_interface] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), [sym_html_comment] = ACTIONS(5), }, - [1233] = { - [sym_comment] = STATE(1233), - [sym_identifier] = ACTIONS(3656), - [anon_sym_export] = ACTIONS(3656), - [anon_sym_default] = ACTIONS(3656), - [anon_sym_type] = ACTIONS(3656), - [anon_sym_namespace] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_import] = ACTIONS(3656), - [anon_sym_from] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [anon_sym_var] = ACTIONS(3656), - [anon_sym_let] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3656), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_if] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_for] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_await] = ACTIONS(3656), - [anon_sym_of] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3656), - [anon_sym_do] = ACTIONS(3656), - [anon_sym_try] = ACTIONS(3656), - [anon_sym_break] = ACTIONS(3656), - [anon_sym_continue] = ACTIONS(3656), - [anon_sym_debugger] = ACTIONS(3656), - [anon_sym_return] = ACTIONS(3656), - [anon_sym_throw] = ACTIONS(3656), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_case] = ACTIONS(3656), - [anon_sym_yield] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_LTtemplate_GT] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(3656), - [anon_sym_SQUOTE] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_async] = ACTIONS(3656), - [anon_sym_function] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_using] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3656), - [anon_sym_TILDE] = ACTIONS(3656), - [anon_sym_void] = ACTIONS(3656), - [anon_sym_delete] = ACTIONS(3656), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), + [1206] = { + [sym_comment] = STATE(1206), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_case] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3656), - [sym_number] = ACTIONS(3656), - [sym_private_property_identifier] = ACTIONS(3656), - [sym_this] = ACTIONS(3656), - [sym_super] = ACTIONS(3656), - [sym_true] = ACTIONS(3656), - [sym_false] = ACTIONS(3656), - [sym_null] = ACTIONS(3656), - [sym_undefined] = ACTIONS(3656), - [anon_sym_AT] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_readonly] = ACTIONS(3656), - [anon_sym_get] = ACTIONS(3656), - [anon_sym_set] = ACTIONS(3656), - [anon_sym_declare] = ACTIONS(3656), - [anon_sym_public] = ACTIONS(3656), - [anon_sym_private] = ACTIONS(3656), - [anon_sym_protected] = ACTIONS(3656), - [anon_sym_override] = ACTIONS(3656), - [anon_sym_module] = ACTIONS(3656), - [anon_sym_any] = ACTIONS(3656), - [anon_sym_number] = ACTIONS(3656), - [anon_sym_boolean] = ACTIONS(3656), - [anon_sym_string] = ACTIONS(3656), - [anon_sym_symbol] = ACTIONS(3656), - [anon_sym_object] = ACTIONS(3656), - [anon_sym_property] = ACTIONS(3656), - [anon_sym_signal] = ACTIONS(3656), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_required] = ACTIONS(3656), - [anon_sym_component] = ACTIONS(3656), - [anon_sym_abstract] = ACTIONS(3656), - [anon_sym_interface] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2528), [sym_html_comment] = ACTIONS(5), }, - [1234] = { - [sym_comment] = STATE(1234), - [sym_identifier] = ACTIONS(3658), - [anon_sym_export] = ACTIONS(3658), - [anon_sym_default] = ACTIONS(3658), - [anon_sym_type] = ACTIONS(3658), - [anon_sym_namespace] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_RBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3658), - [anon_sym_import] = ACTIONS(3658), - [anon_sym_from] = ACTIONS(3658), - [anon_sym_with] = ACTIONS(3658), - [anon_sym_var] = ACTIONS(3658), - [anon_sym_let] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_if] = ACTIONS(3658), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_for] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_await] = ACTIONS(3658), - [anon_sym_of] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_try] = ACTIONS(3658), - [anon_sym_break] = ACTIONS(3658), - [anon_sym_continue] = ACTIONS(3658), - [anon_sym_debugger] = ACTIONS(3658), - [anon_sym_return] = ACTIONS(3658), - [anon_sym_throw] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym_case] = ACTIONS(3658), - [anon_sym_yield] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_LTtemplate_GT] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [anon_sym_SQUOTE] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_async] = ACTIONS(3658), - [anon_sym_function] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_void] = ACTIONS(3658), - [anon_sym_delete] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3658), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3658), - [sym_number] = ACTIONS(3658), - [sym_private_property_identifier] = ACTIONS(3658), - [sym_this] = ACTIONS(3658), - [sym_super] = ACTIONS(3658), - [sym_true] = ACTIONS(3658), - [sym_false] = ACTIONS(3658), - [sym_null] = ACTIONS(3658), - [sym_undefined] = ACTIONS(3658), - [anon_sym_AT] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_readonly] = ACTIONS(3658), - [anon_sym_get] = ACTIONS(3658), - [anon_sym_set] = ACTIONS(3658), - [anon_sym_declare] = ACTIONS(3658), - [anon_sym_public] = ACTIONS(3658), - [anon_sym_private] = ACTIONS(3658), - [anon_sym_protected] = ACTIONS(3658), - [anon_sym_override] = ACTIONS(3658), - [anon_sym_module] = ACTIONS(3658), - [anon_sym_any] = ACTIONS(3658), - [anon_sym_number] = ACTIONS(3658), - [anon_sym_boolean] = ACTIONS(3658), - [anon_sym_string] = ACTIONS(3658), - [anon_sym_symbol] = ACTIONS(3658), - [anon_sym_object] = ACTIONS(3658), - [anon_sym_property] = ACTIONS(3658), - [anon_sym_signal] = ACTIONS(3658), - [anon_sym_on] = ACTIONS(3658), - [anon_sym_required] = ACTIONS(3658), - [anon_sym_component] = ACTIONS(3658), - [anon_sym_abstract] = ACTIONS(3658), - [anon_sym_interface] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), + [1207] = { + [sym_comment] = STATE(1207), + [sym_identifier] = ACTIONS(2358), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_default] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_namespace] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_typeof] = ACTIONS(2358), + [anon_sym_import] = ACTIONS(2358), + [anon_sym_from] = ACTIONS(2358), + [anon_sym_with] = ACTIONS(2358), + [anon_sym_var] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_switch] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2358), + [anon_sym_of] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_debugger] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_throw] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_case] = ACTIONS(2358), + [anon_sym_yield] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LTtemplate_GT] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2358), + [anon_sym_new] = ACTIONS(2358), + [anon_sym_using] = ACTIONS(2358), + [anon_sym_PLUS] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2358), + [anon_sym_delete] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_private_property_identifier] = ACTIONS(2358), + [sym_this] = ACTIONS(2358), + [sym_super] = ACTIONS(2358), + [sym_true] = ACTIONS(2358), + [sym_false] = ACTIONS(2358), + [sym_null] = ACTIONS(2358), + [sym_undefined] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_readonly] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), + [anon_sym_declare] = ACTIONS(2358), + [anon_sym_public] = ACTIONS(2358), + [anon_sym_private] = ACTIONS(2358), + [anon_sym_protected] = ACTIONS(2358), + [anon_sym_override] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_any] = ACTIONS(2358), + [anon_sym_number] = ACTIONS(2358), + [anon_sym_boolean] = ACTIONS(2358), + [anon_sym_string] = ACTIONS(2358), + [anon_sym_symbol] = ACTIONS(2358), + [anon_sym_object] = ACTIONS(2358), + [anon_sym_property] = ACTIONS(2358), + [anon_sym_signal] = ACTIONS(2358), + [anon_sym_on] = ACTIONS(2358), + [anon_sym_required] = ACTIONS(2358), + [anon_sym_component] = ACTIONS(2358), + [anon_sym_abstract] = ACTIONS(2358), + [anon_sym_interface] = ACTIONS(2358), + [anon_sym_enum] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(2490), [sym_html_comment] = ACTIONS(5), }, - [1235] = { - [sym_comment] = STATE(1235), - [sym_identifier] = ACTIONS(3660), - [anon_sym_export] = ACTIONS(3660), - [anon_sym_default] = ACTIONS(3660), - [anon_sym_type] = ACTIONS(3660), - [anon_sym_namespace] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_import] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_with] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_else] = ACTIONS(3660), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_for] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_await] = ACTIONS(3660), - [anon_sym_of] = ACTIONS(3660), - [anon_sym_while] = ACTIONS(3660), - [anon_sym_do] = ACTIONS(3660), - [anon_sym_try] = ACTIONS(3660), - [anon_sym_break] = ACTIONS(3660), - [anon_sym_continue] = ACTIONS(3660), - [anon_sym_debugger] = ACTIONS(3660), - [anon_sym_return] = ACTIONS(3660), - [anon_sym_throw] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_case] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_LTtemplate_GT] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_class] = ACTIONS(3660), - [anon_sym_async] = ACTIONS(3660), - [anon_sym_function] = ACTIONS(3660), - [anon_sym_new] = ACTIONS(3660), - [anon_sym_using] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_void] = ACTIONS(3660), - [anon_sym_delete] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3660), + [1208] = { + [sym_comment] = STATE(1208), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_case] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3660), - [sym_number] = ACTIONS(3660), - [sym_private_property_identifier] = ACTIONS(3660), - [sym_this] = ACTIONS(3660), - [sym_super] = ACTIONS(3660), - [sym_true] = ACTIONS(3660), - [sym_false] = ACTIONS(3660), - [sym_null] = ACTIONS(3660), - [sym_undefined] = ACTIONS(3660), - [anon_sym_AT] = ACTIONS(3660), - [anon_sym_static] = ACTIONS(3660), - [anon_sym_readonly] = ACTIONS(3660), - [anon_sym_get] = ACTIONS(3660), - [anon_sym_set] = ACTIONS(3660), - [anon_sym_declare] = ACTIONS(3660), - [anon_sym_public] = ACTIONS(3660), - [anon_sym_private] = ACTIONS(3660), - [anon_sym_protected] = ACTIONS(3660), - [anon_sym_override] = ACTIONS(3660), - [anon_sym_module] = ACTIONS(3660), - [anon_sym_any] = ACTIONS(3660), - [anon_sym_number] = ACTIONS(3660), - [anon_sym_boolean] = ACTIONS(3660), - [anon_sym_string] = ACTIONS(3660), - [anon_sym_symbol] = ACTIONS(3660), - [anon_sym_object] = ACTIONS(3660), - [anon_sym_property] = ACTIONS(3660), - [anon_sym_signal] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_required] = ACTIONS(3660), - [anon_sym_component] = ACTIONS(3660), - [anon_sym_abstract] = ACTIONS(3660), - [anon_sym_interface] = ACTIONS(3660), - [anon_sym_enum] = ACTIONS(3660), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2496), [sym_html_comment] = ACTIONS(5), }, - [1236] = { - [sym_comment] = STATE(1236), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_default] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_typeof] = ACTIONS(2458), - [anon_sym_import] = ACTIONS(2458), - [anon_sym_from] = ACTIONS(2458), - [anon_sym_with] = ACTIONS(2458), - [anon_sym_var] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_switch] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_await] = ACTIONS(2458), - [anon_sym_of] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_do] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_debugger] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_throw] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_case] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_LTtemplate_GT] = ACTIONS(2458), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2458), - [anon_sym_PLUS] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_SLASH] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_void] = ACTIONS(2458), - [anon_sym_delete] = ACTIONS(2458), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), + [1209] = { + [sym_comment] = STATE(1209), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2458), - [sym_number] = ACTIONS(2458), - [sym_private_property_identifier] = ACTIONS(2458), - [sym_this] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_true] = ACTIONS(2458), - [sym_false] = ACTIONS(2458), - [sym_null] = ACTIONS(2458), - [sym_undefined] = ACTIONS(2458), - [anon_sym_AT] = ACTIONS(2458), - [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_property] = ACTIONS(2458), - [anon_sym_signal] = ACTIONS(2458), - [anon_sym_on] = ACTIONS(2458), - [anon_sym_required] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_abstract] = ACTIONS(2458), - [anon_sym_interface] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(2558), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3688), [sym_html_comment] = ACTIONS(5), }, - [1237] = { - [sym_comment] = STATE(1237), - [sym_identifier] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_type] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_typeof] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_await] = ACTIONS(3662), - [anon_sym_of] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_debugger] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_LTtemplate_GT] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_async] = ACTIONS(3662), - [anon_sym_function] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_void] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), + [1210] = { + [sym_comment] = STATE(1210), + [sym_identifier] = ACTIONS(3690), + [anon_sym_export] = ACTIONS(3690), + [anon_sym_default] = ACTIONS(3690), + [anon_sym_type] = ACTIONS(3690), + [anon_sym_namespace] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_typeof] = ACTIONS(3690), + [anon_sym_import] = ACTIONS(3690), + [anon_sym_from] = ACTIONS(3690), + [anon_sym_with] = ACTIONS(3690), + [anon_sym_var] = ACTIONS(3690), + [anon_sym_let] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_else] = ACTIONS(3690), + [anon_sym_if] = ACTIONS(3690), + [anon_sym_switch] = ACTIONS(3690), + [anon_sym_for] = ACTIONS(3690), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_await] = ACTIONS(3690), + [anon_sym_of] = ACTIONS(3690), + [anon_sym_while] = ACTIONS(3690), + [anon_sym_do] = ACTIONS(3690), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_break] = ACTIONS(3690), + [anon_sym_continue] = ACTIONS(3690), + [anon_sym_debugger] = ACTIONS(3690), + [anon_sym_return] = ACTIONS(3690), + [anon_sym_throw] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym_case] = ACTIONS(3690), + [anon_sym_yield] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_LTtemplate_GT] = ACTIONS(3690), + [anon_sym_DQUOTE] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_class] = ACTIONS(3690), + [anon_sym_async] = ACTIONS(3690), + [anon_sym_function] = ACTIONS(3690), + [anon_sym_new] = ACTIONS(3690), + [anon_sym_using] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_SLASH] = ACTIONS(3690), + [anon_sym_LT] = ACTIONS(3690), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_void] = ACTIONS(3690), + [anon_sym_delete] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3690), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3662), - [sym_number] = ACTIONS(3662), - [sym_private_property_identifier] = ACTIONS(3662), - [sym_this] = ACTIONS(3662), - [sym_super] = ACTIONS(3662), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [sym_null] = ACTIONS(3662), - [sym_undefined] = ACTIONS(3662), - [anon_sym_AT] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_readonly] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(3662), - [anon_sym_set] = ACTIONS(3662), - [anon_sym_declare] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_override] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_any] = ACTIONS(3662), - [anon_sym_number] = ACTIONS(3662), - [anon_sym_boolean] = ACTIONS(3662), - [anon_sym_string] = ACTIONS(3662), - [anon_sym_symbol] = ACTIONS(3662), - [anon_sym_object] = ACTIONS(3662), - [anon_sym_property] = ACTIONS(3662), - [anon_sym_signal] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_required] = ACTIONS(3662), - [anon_sym_component] = ACTIONS(3662), - [anon_sym_abstract] = ACTIONS(3662), - [anon_sym_interface] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), + [anon_sym_BQUOTE] = ACTIONS(3690), + [sym_number] = ACTIONS(3690), + [sym_private_property_identifier] = ACTIONS(3690), + [sym_this] = ACTIONS(3690), + [sym_super] = ACTIONS(3690), + [sym_true] = ACTIONS(3690), + [sym_false] = ACTIONS(3690), + [sym_null] = ACTIONS(3690), + [sym_undefined] = ACTIONS(3690), + [anon_sym_AT] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_readonly] = ACTIONS(3690), + [anon_sym_get] = ACTIONS(3690), + [anon_sym_set] = ACTIONS(3690), + [anon_sym_declare] = ACTIONS(3690), + [anon_sym_public] = ACTIONS(3690), + [anon_sym_private] = ACTIONS(3690), + [anon_sym_protected] = ACTIONS(3690), + [anon_sym_override] = ACTIONS(3690), + [anon_sym_module] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3690), + [anon_sym_number] = ACTIONS(3690), + [anon_sym_boolean] = ACTIONS(3690), + [anon_sym_string] = ACTIONS(3690), + [anon_sym_symbol] = ACTIONS(3690), + [anon_sym_object] = ACTIONS(3690), + [anon_sym_property] = ACTIONS(3690), + [anon_sym_signal] = ACTIONS(3690), + [anon_sym_on] = ACTIONS(3690), + [anon_sym_required] = ACTIONS(3690), + [anon_sym_component] = ACTIONS(3690), + [anon_sym_abstract] = ACTIONS(3690), + [anon_sym_interface] = ACTIONS(3690), + [anon_sym_enum] = ACTIONS(3690), [sym_html_comment] = ACTIONS(5), }, - [1238] = { - [sym_comment] = STATE(1238), - [sym_identifier] = ACTIONS(3664), - [anon_sym_export] = ACTIONS(3664), - [anon_sym_default] = ACTIONS(3664), - [anon_sym_type] = ACTIONS(3664), - [anon_sym_namespace] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_typeof] = ACTIONS(3664), - [anon_sym_import] = ACTIONS(3664), - [anon_sym_from] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [anon_sym_var] = ACTIONS(3664), - [anon_sym_let] = ACTIONS(3664), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_for] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_await] = ACTIONS(3664), - [anon_sym_of] = ACTIONS(3664), - [anon_sym_while] = ACTIONS(3664), - [anon_sym_do] = ACTIONS(3664), - [anon_sym_try] = ACTIONS(3664), - [anon_sym_break] = ACTIONS(3664), - [anon_sym_continue] = ACTIONS(3664), - [anon_sym_debugger] = ACTIONS(3664), - [anon_sym_return] = ACTIONS(3664), - [anon_sym_throw] = ACTIONS(3664), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_case] = ACTIONS(3664), - [anon_sym_yield] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_LTtemplate_GT] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_class] = ACTIONS(3664), - [anon_sym_async] = ACTIONS(3664), - [anon_sym_function] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3664), - [anon_sym_using] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_void] = ACTIONS(3664), - [anon_sym_delete] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), + [1211] = { + [sym_comment] = STATE(1211), + [sym_identifier] = ACTIONS(3692), + [anon_sym_export] = ACTIONS(3692), + [anon_sym_default] = ACTIONS(3692), + [anon_sym_type] = ACTIONS(3692), + [anon_sym_namespace] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_typeof] = ACTIONS(3692), + [anon_sym_import] = ACTIONS(3692), + [anon_sym_from] = ACTIONS(3692), + [anon_sym_with] = ACTIONS(3692), + [anon_sym_var] = ACTIONS(3692), + [anon_sym_let] = ACTIONS(3692), + [anon_sym_const] = ACTIONS(3692), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_else] = ACTIONS(3692), + [anon_sym_if] = ACTIONS(3692), + [anon_sym_switch] = ACTIONS(3692), + [anon_sym_for] = ACTIONS(3692), + [anon_sym_LPAREN] = ACTIONS(3692), + [anon_sym_await] = ACTIONS(3692), + [anon_sym_of] = ACTIONS(3692), + [anon_sym_while] = ACTIONS(3692), + [anon_sym_do] = ACTIONS(3692), + [anon_sym_try] = ACTIONS(3692), + [anon_sym_break] = ACTIONS(3692), + [anon_sym_continue] = ACTIONS(3692), + [anon_sym_debugger] = ACTIONS(3692), + [anon_sym_return] = ACTIONS(3692), + [anon_sym_throw] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym_case] = ACTIONS(3692), + [anon_sym_yield] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_LTtemplate_GT] = ACTIONS(3692), + [anon_sym_DQUOTE] = ACTIONS(3692), + [anon_sym_SQUOTE] = ACTIONS(3692), + [anon_sym_class] = ACTIONS(3692), + [anon_sym_async] = ACTIONS(3692), + [anon_sym_function] = ACTIONS(3692), + [anon_sym_new] = ACTIONS(3692), + [anon_sym_using] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_LT] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_void] = ACTIONS(3692), + [anon_sym_delete] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3692), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3664), - [sym_number] = ACTIONS(3664), - [sym_private_property_identifier] = ACTIONS(3664), - [sym_this] = ACTIONS(3664), - [sym_super] = ACTIONS(3664), - [sym_true] = ACTIONS(3664), - [sym_false] = ACTIONS(3664), - [sym_null] = ACTIONS(3664), - [sym_undefined] = ACTIONS(3664), - [anon_sym_AT] = ACTIONS(3664), - [anon_sym_static] = ACTIONS(3664), - [anon_sym_readonly] = ACTIONS(3664), - [anon_sym_get] = ACTIONS(3664), - [anon_sym_set] = ACTIONS(3664), - [anon_sym_declare] = ACTIONS(3664), - [anon_sym_public] = ACTIONS(3664), - [anon_sym_private] = ACTIONS(3664), - [anon_sym_protected] = ACTIONS(3664), - [anon_sym_override] = ACTIONS(3664), - [anon_sym_module] = ACTIONS(3664), - [anon_sym_any] = ACTIONS(3664), - [anon_sym_number] = ACTIONS(3664), - [anon_sym_boolean] = ACTIONS(3664), - [anon_sym_string] = ACTIONS(3664), - [anon_sym_symbol] = ACTIONS(3664), - [anon_sym_object] = ACTIONS(3664), - [anon_sym_property] = ACTIONS(3664), - [anon_sym_signal] = ACTIONS(3664), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_required] = ACTIONS(3664), - [anon_sym_component] = ACTIONS(3664), - [anon_sym_abstract] = ACTIONS(3664), - [anon_sym_interface] = ACTIONS(3664), - [anon_sym_enum] = ACTIONS(3664), + [anon_sym_BQUOTE] = ACTIONS(3692), + [sym_number] = ACTIONS(3692), + [sym_private_property_identifier] = ACTIONS(3692), + [sym_this] = ACTIONS(3692), + [sym_super] = ACTIONS(3692), + [sym_true] = ACTIONS(3692), + [sym_false] = ACTIONS(3692), + [sym_null] = ACTIONS(3692), + [sym_undefined] = ACTIONS(3692), + [anon_sym_AT] = ACTIONS(3692), + [anon_sym_static] = ACTIONS(3692), + [anon_sym_readonly] = ACTIONS(3692), + [anon_sym_get] = ACTIONS(3692), + [anon_sym_set] = ACTIONS(3692), + [anon_sym_declare] = ACTIONS(3692), + [anon_sym_public] = ACTIONS(3692), + [anon_sym_private] = ACTIONS(3692), + [anon_sym_protected] = ACTIONS(3692), + [anon_sym_override] = ACTIONS(3692), + [anon_sym_module] = ACTIONS(3692), + [anon_sym_any] = ACTIONS(3692), + [anon_sym_number] = ACTIONS(3692), + [anon_sym_boolean] = ACTIONS(3692), + [anon_sym_string] = ACTIONS(3692), + [anon_sym_symbol] = ACTIONS(3692), + [anon_sym_object] = ACTIONS(3692), + [anon_sym_property] = ACTIONS(3692), + [anon_sym_signal] = ACTIONS(3692), + [anon_sym_on] = ACTIONS(3692), + [anon_sym_required] = ACTIONS(3692), + [anon_sym_component] = ACTIONS(3692), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_interface] = ACTIONS(3692), + [anon_sym_enum] = ACTIONS(3692), [sym_html_comment] = ACTIONS(5), }, - [1239] = { - [sym_comment] = STATE(1239), - [sym_identifier] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_type] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_typeof] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_await] = ACTIONS(3662), - [anon_sym_of] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_debugger] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_LTtemplate_GT] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_async] = ACTIONS(3662), - [anon_sym_function] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_void] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), + [1212] = { + [sym_comment] = STATE(1212), + [sym_identifier] = ACTIONS(3694), + [anon_sym_export] = ACTIONS(3694), + [anon_sym_default] = ACTIONS(3694), + [anon_sym_type] = ACTIONS(3694), + [anon_sym_namespace] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_typeof] = ACTIONS(3694), + [anon_sym_import] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3694), + [anon_sym_let] = ACTIONS(3694), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_else] = ACTIONS(3694), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_await] = ACTIONS(3694), + [anon_sym_of] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3694), + [anon_sym_do] = ACTIONS(3694), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_break] = ACTIONS(3694), + [anon_sym_continue] = ACTIONS(3694), + [anon_sym_debugger] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(3694), + [anon_sym_throw] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_case] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LTtemplate_GT] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3694), + [anon_sym_SQUOTE] = ACTIONS(3694), + [anon_sym_class] = ACTIONS(3694), + [anon_sym_async] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3694), + [anon_sym_using] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_SLASH] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_void] = ACTIONS(3694), + [anon_sym_delete] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3662), - [sym_number] = ACTIONS(3662), - [sym_private_property_identifier] = ACTIONS(3662), - [sym_this] = ACTIONS(3662), - [sym_super] = ACTIONS(3662), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [sym_null] = ACTIONS(3662), - [sym_undefined] = ACTIONS(3662), - [anon_sym_AT] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_readonly] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(3662), - [anon_sym_set] = ACTIONS(3662), - [anon_sym_declare] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_override] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_any] = ACTIONS(3662), - [anon_sym_number] = ACTIONS(3662), - [anon_sym_boolean] = ACTIONS(3662), - [anon_sym_string] = ACTIONS(3662), - [anon_sym_symbol] = ACTIONS(3662), - [anon_sym_object] = ACTIONS(3662), - [anon_sym_property] = ACTIONS(3662), - [anon_sym_signal] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_required] = ACTIONS(3662), - [anon_sym_component] = ACTIONS(3662), - [anon_sym_abstract] = ACTIONS(3662), - [anon_sym_interface] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), + [anon_sym_BQUOTE] = ACTIONS(3694), + [sym_number] = ACTIONS(3694), + [sym_private_property_identifier] = ACTIONS(3694), + [sym_this] = ACTIONS(3694), + [sym_super] = ACTIONS(3694), + [sym_true] = ACTIONS(3694), + [sym_false] = ACTIONS(3694), + [sym_null] = ACTIONS(3694), + [sym_undefined] = ACTIONS(3694), + [anon_sym_AT] = ACTIONS(3694), + [anon_sym_static] = ACTIONS(3694), + [anon_sym_readonly] = ACTIONS(3694), + [anon_sym_get] = ACTIONS(3694), + [anon_sym_set] = ACTIONS(3694), + [anon_sym_declare] = ACTIONS(3694), + [anon_sym_public] = ACTIONS(3694), + [anon_sym_private] = ACTIONS(3694), + [anon_sym_protected] = ACTIONS(3694), + [anon_sym_override] = ACTIONS(3694), + [anon_sym_module] = ACTIONS(3694), + [anon_sym_any] = ACTIONS(3694), + [anon_sym_number] = ACTIONS(3694), + [anon_sym_boolean] = ACTIONS(3694), + [anon_sym_string] = ACTIONS(3694), + [anon_sym_symbol] = ACTIONS(3694), + [anon_sym_object] = ACTIONS(3694), + [anon_sym_property] = ACTIONS(3694), + [anon_sym_signal] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_required] = ACTIONS(3694), + [anon_sym_component] = ACTIONS(3694), + [anon_sym_abstract] = ACTIONS(3694), + [anon_sym_interface] = ACTIONS(3694), + [anon_sym_enum] = ACTIONS(3694), [sym_html_comment] = ACTIONS(5), }, - [1240] = { - [sym_comment] = STATE(1240), - [sym_identifier] = ACTIONS(3666), - [anon_sym_export] = ACTIONS(3666), - [anon_sym_default] = ACTIONS(3666), - [anon_sym_type] = ACTIONS(3666), - [anon_sym_namespace] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3666), - [anon_sym_RBRACE] = ACTIONS(3666), - [anon_sym_typeof] = ACTIONS(3666), - [anon_sym_import] = ACTIONS(3666), - [anon_sym_from] = ACTIONS(3666), - [anon_sym_with] = ACTIONS(3666), - [anon_sym_var] = ACTIONS(3666), - [anon_sym_let] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3666), - [anon_sym_if] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_for] = ACTIONS(3666), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_await] = ACTIONS(3666), - [anon_sym_of] = ACTIONS(3666), - [anon_sym_while] = ACTIONS(3666), - [anon_sym_do] = ACTIONS(3666), - [anon_sym_try] = ACTIONS(3666), - [anon_sym_break] = ACTIONS(3666), - [anon_sym_continue] = ACTIONS(3666), - [anon_sym_debugger] = ACTIONS(3666), - [anon_sym_return] = ACTIONS(3666), - [anon_sym_throw] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym_case] = ACTIONS(3666), - [anon_sym_yield] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_LTtemplate_GT] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3666), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_async] = ACTIONS(3666), - [anon_sym_function] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_TILDE] = ACTIONS(3666), - [anon_sym_void] = ACTIONS(3666), - [anon_sym_delete] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3666), - [anon_sym_DASH_DASH] = ACTIONS(3666), + [1213] = { + [sym_comment] = STATE(1213), + [sym_identifier] = ACTIONS(3696), + [anon_sym_export] = ACTIONS(3696), + [anon_sym_default] = ACTIONS(3696), + [anon_sym_type] = ACTIONS(3696), + [anon_sym_namespace] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_typeof] = ACTIONS(3696), + [anon_sym_import] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_with] = ACTIONS(3696), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_const] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_else] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_await] = ACTIONS(3696), + [anon_sym_of] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(3696), + [anon_sym_continue] = ACTIONS(3696), + [anon_sym_debugger] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_throw] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_case] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LTtemplate_GT] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_SQUOTE] = ACTIONS(3696), + [anon_sym_class] = ACTIONS(3696), + [anon_sym_async] = ACTIONS(3696), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_using] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3696), + [anon_sym_void] = ACTIONS(3696), + [anon_sym_delete] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3696), + [anon_sym_DASH_DASH] = ACTIONS(3696), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3666), - [sym_number] = ACTIONS(3666), - [sym_private_property_identifier] = ACTIONS(3666), - [sym_this] = ACTIONS(3666), - [sym_super] = ACTIONS(3666), - [sym_true] = ACTIONS(3666), - [sym_false] = ACTIONS(3666), - [sym_null] = ACTIONS(3666), - [sym_undefined] = ACTIONS(3666), - [anon_sym_AT] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_readonly] = ACTIONS(3666), - [anon_sym_get] = ACTIONS(3666), - [anon_sym_set] = ACTIONS(3666), - [anon_sym_declare] = ACTIONS(3666), - [anon_sym_public] = ACTIONS(3666), - [anon_sym_private] = ACTIONS(3666), - [anon_sym_protected] = ACTIONS(3666), - [anon_sym_override] = ACTIONS(3666), - [anon_sym_module] = ACTIONS(3666), - [anon_sym_any] = ACTIONS(3666), - [anon_sym_number] = ACTIONS(3666), - [anon_sym_boolean] = ACTIONS(3666), - [anon_sym_string] = ACTIONS(3666), - [anon_sym_symbol] = ACTIONS(3666), - [anon_sym_object] = ACTIONS(3666), - [anon_sym_property] = ACTIONS(3666), - [anon_sym_signal] = ACTIONS(3666), - [anon_sym_on] = ACTIONS(3666), - [anon_sym_required] = ACTIONS(3666), - [anon_sym_component] = ACTIONS(3666), - [anon_sym_abstract] = ACTIONS(3666), - [anon_sym_interface] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), + [anon_sym_BQUOTE] = ACTIONS(3696), + [sym_number] = ACTIONS(3696), + [sym_private_property_identifier] = ACTIONS(3696), + [sym_this] = ACTIONS(3696), + [sym_super] = ACTIONS(3696), + [sym_true] = ACTIONS(3696), + [sym_false] = ACTIONS(3696), + [sym_null] = ACTIONS(3696), + [sym_undefined] = ACTIONS(3696), + [anon_sym_AT] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3696), + [anon_sym_readonly] = ACTIONS(3696), + [anon_sym_get] = ACTIONS(3696), + [anon_sym_set] = ACTIONS(3696), + [anon_sym_declare] = ACTIONS(3696), + [anon_sym_public] = ACTIONS(3696), + [anon_sym_private] = ACTIONS(3696), + [anon_sym_protected] = ACTIONS(3696), + [anon_sym_override] = ACTIONS(3696), + [anon_sym_module] = ACTIONS(3696), + [anon_sym_any] = ACTIONS(3696), + [anon_sym_number] = ACTIONS(3696), + [anon_sym_boolean] = ACTIONS(3696), + [anon_sym_string] = ACTIONS(3696), + [anon_sym_symbol] = ACTIONS(3696), + [anon_sym_object] = ACTIONS(3696), + [anon_sym_property] = ACTIONS(3696), + [anon_sym_signal] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_required] = ACTIONS(3696), + [anon_sym_component] = ACTIONS(3696), + [anon_sym_abstract] = ACTIONS(3696), + [anon_sym_interface] = ACTIONS(3696), + [anon_sym_enum] = ACTIONS(3696), [sym_html_comment] = ACTIONS(5), }, - [1241] = { - [sym_comment] = STATE(1241), - [sym_identifier] = ACTIONS(3668), - [anon_sym_export] = ACTIONS(3668), - [anon_sym_default] = ACTIONS(3668), - [anon_sym_type] = ACTIONS(3668), - [anon_sym_namespace] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_typeof] = ACTIONS(3668), - [anon_sym_import] = ACTIONS(3668), - [anon_sym_from] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [anon_sym_var] = ACTIONS(3668), - [anon_sym_let] = ACTIONS(3668), - [anon_sym_const] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3668), - [anon_sym_else] = ACTIONS(3668), - [anon_sym_if] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_for] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_await] = ACTIONS(3668), - [anon_sym_of] = ACTIONS(3668), - [anon_sym_while] = ACTIONS(3668), - [anon_sym_do] = ACTIONS(3668), - [anon_sym_try] = ACTIONS(3668), - [anon_sym_break] = ACTIONS(3668), - [anon_sym_continue] = ACTIONS(3668), - [anon_sym_debugger] = ACTIONS(3668), - [anon_sym_return] = ACTIONS(3668), - [anon_sym_throw] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_case] = ACTIONS(3668), - [anon_sym_yield] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_LTtemplate_GT] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3668), - [anon_sym_class] = ACTIONS(3668), - [anon_sym_async] = ACTIONS(3668), - [anon_sym_function] = ACTIONS(3668), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_using] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_void] = ACTIONS(3668), - [anon_sym_delete] = ACTIONS(3668), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), + [1214] = { + [sym_comment] = STATE(1214), + [sym_identifier] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_default] = ACTIONS(3698), + [anon_sym_type] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_typeof] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_from] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3698), + [anon_sym_var] = ACTIONS(3698), + [anon_sym_let] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_else] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_await] = ACTIONS(3698), + [anon_sym_of] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_debugger] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_case] = ACTIONS(3698), + [anon_sym_yield] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LTtemplate_GT] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_async] = ACTIONS(3698), + [anon_sym_function] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_void] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3668), - [sym_number] = ACTIONS(3668), - [sym_private_property_identifier] = ACTIONS(3668), - [sym_this] = ACTIONS(3668), - [sym_super] = ACTIONS(3668), - [sym_true] = ACTIONS(3668), - [sym_false] = ACTIONS(3668), - [sym_null] = ACTIONS(3668), - [sym_undefined] = ACTIONS(3668), - [anon_sym_AT] = ACTIONS(3668), - [anon_sym_static] = ACTIONS(3668), - [anon_sym_readonly] = ACTIONS(3668), - [anon_sym_get] = ACTIONS(3668), - [anon_sym_set] = ACTIONS(3668), - [anon_sym_declare] = ACTIONS(3668), - [anon_sym_public] = ACTIONS(3668), - [anon_sym_private] = ACTIONS(3668), - [anon_sym_protected] = ACTIONS(3668), - [anon_sym_override] = ACTIONS(3668), - [anon_sym_module] = ACTIONS(3668), - [anon_sym_any] = ACTIONS(3668), - [anon_sym_number] = ACTIONS(3668), - [anon_sym_boolean] = ACTIONS(3668), - [anon_sym_string] = ACTIONS(3668), - [anon_sym_symbol] = ACTIONS(3668), - [anon_sym_object] = ACTIONS(3668), - [anon_sym_property] = ACTIONS(3668), - [anon_sym_signal] = ACTIONS(3668), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_required] = ACTIONS(3668), - [anon_sym_component] = ACTIONS(3668), - [anon_sym_abstract] = ACTIONS(3668), - [anon_sym_interface] = ACTIONS(3668), - [anon_sym_enum] = ACTIONS(3668), - [sym_html_comment] = ACTIONS(5), - }, - [1242] = { - [sym_comment] = STATE(1242), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_finally] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3670), + [anon_sym_BQUOTE] = ACTIONS(3698), + [sym_number] = ACTIONS(3698), + [sym_private_property_identifier] = ACTIONS(3698), + [sym_this] = ACTIONS(3698), + [sym_super] = ACTIONS(3698), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [sym_null] = ACTIONS(3698), + [sym_undefined] = ACTIONS(3698), + [anon_sym_AT] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_readonly] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(3698), + [anon_sym_set] = ACTIONS(3698), + [anon_sym_declare] = ACTIONS(3698), + [anon_sym_public] = ACTIONS(3698), + [anon_sym_private] = ACTIONS(3698), + [anon_sym_protected] = ACTIONS(3698), + [anon_sym_override] = ACTIONS(3698), + [anon_sym_module] = ACTIONS(3698), + [anon_sym_any] = ACTIONS(3698), + [anon_sym_number] = ACTIONS(3698), + [anon_sym_boolean] = ACTIONS(3698), + [anon_sym_string] = ACTIONS(3698), + [anon_sym_symbol] = ACTIONS(3698), + [anon_sym_object] = ACTIONS(3698), + [anon_sym_property] = ACTIONS(3698), + [anon_sym_signal] = ACTIONS(3698), + [anon_sym_on] = ACTIONS(3698), + [anon_sym_required] = ACTIONS(3698), + [anon_sym_component] = ACTIONS(3698), + [anon_sym_abstract] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, - [1243] = { - [sym_comment] = STATE(1243), - [sym_identifier] = ACTIONS(3672), - [anon_sym_export] = ACTIONS(3672), - [anon_sym_default] = ACTIONS(3672), - [anon_sym_type] = ACTIONS(3672), - [anon_sym_namespace] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_typeof] = ACTIONS(3672), - [anon_sym_import] = ACTIONS(3672), - [anon_sym_from] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3672), - [anon_sym_var] = ACTIONS(3672), - [anon_sym_let] = ACTIONS(3672), - [anon_sym_const] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(3672), - [anon_sym_else] = ACTIONS(3672), - [anon_sym_if] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_for] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_await] = ACTIONS(3672), - [anon_sym_of] = ACTIONS(3672), - [anon_sym_while] = ACTIONS(3672), - [anon_sym_do] = ACTIONS(3672), - [anon_sym_try] = ACTIONS(3672), - [anon_sym_break] = ACTIONS(3672), - [anon_sym_continue] = ACTIONS(3672), - [anon_sym_debugger] = ACTIONS(3672), - [anon_sym_return] = ACTIONS(3672), - [anon_sym_throw] = ACTIONS(3672), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_case] = ACTIONS(3672), - [anon_sym_yield] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_LTtemplate_GT] = ACTIONS(3672), - [anon_sym_DQUOTE] = ACTIONS(3672), - [anon_sym_SQUOTE] = ACTIONS(3672), - [anon_sym_class] = ACTIONS(3672), - [anon_sym_async] = ACTIONS(3672), - [anon_sym_function] = ACTIONS(3672), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_using] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_SLASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_TILDE] = ACTIONS(3672), - [anon_sym_void] = ACTIONS(3672), - [anon_sym_delete] = ACTIONS(3672), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), + [1215] = { + [sym_comment] = STATE(1215), + [sym_identifier] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_default] = ACTIONS(3698), + [anon_sym_type] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_typeof] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_from] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3698), + [anon_sym_var] = ACTIONS(3698), + [anon_sym_let] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_else] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_await] = ACTIONS(3698), + [anon_sym_of] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_debugger] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_case] = ACTIONS(3698), + [anon_sym_yield] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LTtemplate_GT] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_async] = ACTIONS(3698), + [anon_sym_function] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_void] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3672), - [sym_number] = ACTIONS(3672), - [sym_private_property_identifier] = ACTIONS(3672), - [sym_this] = ACTIONS(3672), - [sym_super] = ACTIONS(3672), - [sym_true] = ACTIONS(3672), - [sym_false] = ACTIONS(3672), - [sym_null] = ACTIONS(3672), - [sym_undefined] = ACTIONS(3672), - [anon_sym_AT] = ACTIONS(3672), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_readonly] = ACTIONS(3672), - [anon_sym_get] = ACTIONS(3672), - [anon_sym_set] = ACTIONS(3672), - [anon_sym_declare] = ACTIONS(3672), - [anon_sym_public] = ACTIONS(3672), - [anon_sym_private] = ACTIONS(3672), - [anon_sym_protected] = ACTIONS(3672), - [anon_sym_override] = ACTIONS(3672), - [anon_sym_module] = ACTIONS(3672), - [anon_sym_any] = ACTIONS(3672), - [anon_sym_number] = ACTIONS(3672), - [anon_sym_boolean] = ACTIONS(3672), - [anon_sym_string] = ACTIONS(3672), - [anon_sym_symbol] = ACTIONS(3672), - [anon_sym_object] = ACTIONS(3672), - [anon_sym_property] = ACTIONS(3672), - [anon_sym_signal] = ACTIONS(3672), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_required] = ACTIONS(3672), - [anon_sym_component] = ACTIONS(3672), - [anon_sym_abstract] = ACTIONS(3672), - [anon_sym_interface] = ACTIONS(3672), - [anon_sym_enum] = ACTIONS(3672), + [anon_sym_BQUOTE] = ACTIONS(3698), + [sym_number] = ACTIONS(3698), + [sym_private_property_identifier] = ACTIONS(3698), + [sym_this] = ACTIONS(3698), + [sym_super] = ACTIONS(3698), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [sym_null] = ACTIONS(3698), + [sym_undefined] = ACTIONS(3698), + [anon_sym_AT] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_readonly] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(3698), + [anon_sym_set] = ACTIONS(3698), + [anon_sym_declare] = ACTIONS(3698), + [anon_sym_public] = ACTIONS(3698), + [anon_sym_private] = ACTIONS(3698), + [anon_sym_protected] = ACTIONS(3698), + [anon_sym_override] = ACTIONS(3698), + [anon_sym_module] = ACTIONS(3698), + [anon_sym_any] = ACTIONS(3698), + [anon_sym_number] = ACTIONS(3698), + [anon_sym_boolean] = ACTIONS(3698), + [anon_sym_string] = ACTIONS(3698), + [anon_sym_symbol] = ACTIONS(3698), + [anon_sym_object] = ACTIONS(3698), + [anon_sym_property] = ACTIONS(3698), + [anon_sym_signal] = ACTIONS(3698), + [anon_sym_on] = ACTIONS(3698), + [anon_sym_required] = ACTIONS(3698), + [anon_sym_component] = ACTIONS(3698), + [anon_sym_abstract] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, - [1244] = { - [sym_comment] = STATE(1244), - [sym_identifier] = ACTIONS(3674), - [anon_sym_export] = ACTIONS(3674), - [anon_sym_default] = ACTIONS(3674), - [anon_sym_type] = ACTIONS(3674), - [anon_sym_namespace] = ACTIONS(3674), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_RBRACE] = ACTIONS(3674), - [anon_sym_typeof] = ACTIONS(3674), - [anon_sym_import] = ACTIONS(3674), - [anon_sym_from] = ACTIONS(3674), - [anon_sym_with] = ACTIONS(3674), - [anon_sym_var] = ACTIONS(3674), - [anon_sym_let] = ACTIONS(3674), - [anon_sym_const] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_else] = ACTIONS(3674), - [anon_sym_if] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_for] = ACTIONS(3674), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_await] = ACTIONS(3674), - [anon_sym_of] = ACTIONS(3674), - [anon_sym_while] = ACTIONS(3674), - [anon_sym_do] = ACTIONS(3674), - [anon_sym_try] = ACTIONS(3674), - [anon_sym_break] = ACTIONS(3674), - [anon_sym_continue] = ACTIONS(3674), - [anon_sym_debugger] = ACTIONS(3674), - [anon_sym_return] = ACTIONS(3674), - [anon_sym_throw] = ACTIONS(3674), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym_case] = ACTIONS(3674), - [anon_sym_yield] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_LTtemplate_GT] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3674), - [anon_sym_SQUOTE] = ACTIONS(3674), - [anon_sym_class] = ACTIONS(3674), - [anon_sym_async] = ACTIONS(3674), - [anon_sym_function] = ACTIONS(3674), - [anon_sym_new] = ACTIONS(3674), - [anon_sym_using] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_void] = ACTIONS(3674), - [anon_sym_delete] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3674), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3674), - [sym_number] = ACTIONS(3674), - [sym_private_property_identifier] = ACTIONS(3674), - [sym_this] = ACTIONS(3674), - [sym_super] = ACTIONS(3674), - [sym_true] = ACTIONS(3674), - [sym_false] = ACTIONS(3674), - [sym_null] = ACTIONS(3674), - [sym_undefined] = ACTIONS(3674), - [anon_sym_AT] = ACTIONS(3674), - [anon_sym_static] = ACTIONS(3674), - [anon_sym_readonly] = ACTIONS(3674), - [anon_sym_get] = ACTIONS(3674), - [anon_sym_set] = ACTIONS(3674), - [anon_sym_declare] = ACTIONS(3674), - [anon_sym_public] = ACTIONS(3674), - [anon_sym_private] = ACTIONS(3674), - [anon_sym_protected] = ACTIONS(3674), - [anon_sym_override] = ACTIONS(3674), - [anon_sym_module] = ACTIONS(3674), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_property] = ACTIONS(3674), - [anon_sym_signal] = ACTIONS(3674), - [anon_sym_on] = ACTIONS(3674), - [anon_sym_required] = ACTIONS(3674), - [anon_sym_component] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3674), - [anon_sym_interface] = ACTIONS(3674), - [anon_sym_enum] = ACTIONS(3674), - [sym_html_comment] = ACTIONS(5), - }, - [1245] = { - [sym_comment] = STATE(1245), - [sym_identifier] = ACTIONS(3676), - [anon_sym_export] = ACTIONS(3676), - [anon_sym_default] = ACTIONS(3676), - [anon_sym_type] = ACTIONS(3676), - [anon_sym_namespace] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_typeof] = ACTIONS(3676), - [anon_sym_import] = ACTIONS(3676), - [anon_sym_from] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [anon_sym_var] = ACTIONS(3676), - [anon_sym_let] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3676), - [anon_sym_else] = ACTIONS(3676), - [anon_sym_if] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_for] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_await] = ACTIONS(3676), - [anon_sym_of] = ACTIONS(3676), - [anon_sym_while] = ACTIONS(3676), - [anon_sym_do] = ACTIONS(3676), - [anon_sym_try] = ACTIONS(3676), - [anon_sym_break] = ACTIONS(3676), - [anon_sym_continue] = ACTIONS(3676), - [anon_sym_debugger] = ACTIONS(3676), - [anon_sym_return] = ACTIONS(3676), - [anon_sym_throw] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_case] = ACTIONS(3676), - [anon_sym_yield] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_LTtemplate_GT] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(3676), - [anon_sym_SQUOTE] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_async] = ACTIONS(3676), - [anon_sym_function] = ACTIONS(3676), - [anon_sym_new] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3676), - [anon_sym_TILDE] = ACTIONS(3676), - [anon_sym_void] = ACTIONS(3676), - [anon_sym_delete] = ACTIONS(3676), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3676), - [sym_private_property_identifier] = ACTIONS(3676), - [sym_this] = ACTIONS(3676), - [sym_super] = ACTIONS(3676), - [sym_true] = ACTIONS(3676), - [sym_false] = ACTIONS(3676), - [sym_null] = ACTIONS(3676), - [sym_undefined] = ACTIONS(3676), - [anon_sym_AT] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_readonly] = ACTIONS(3676), - [anon_sym_get] = ACTIONS(3676), - [anon_sym_set] = ACTIONS(3676), - [anon_sym_declare] = ACTIONS(3676), - [anon_sym_public] = ACTIONS(3676), - [anon_sym_private] = ACTIONS(3676), - [anon_sym_protected] = ACTIONS(3676), - [anon_sym_override] = ACTIONS(3676), - [anon_sym_module] = ACTIONS(3676), - [anon_sym_any] = ACTIONS(3676), - [anon_sym_number] = ACTIONS(3676), - [anon_sym_boolean] = ACTIONS(3676), - [anon_sym_string] = ACTIONS(3676), - [anon_sym_symbol] = ACTIONS(3676), - [anon_sym_object] = ACTIONS(3676), - [anon_sym_property] = ACTIONS(3676), - [anon_sym_signal] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_required] = ACTIONS(3676), - [anon_sym_component] = ACTIONS(3676), - [anon_sym_abstract] = ACTIONS(3676), - [anon_sym_interface] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [sym_html_comment] = ACTIONS(5), - }, - [1246] = { - [sym_comment] = STATE(1246), - [sym_identifier] = ACTIONS(3678), - [anon_sym_export] = ACTIONS(3678), - [anon_sym_default] = ACTIONS(3678), - [anon_sym_type] = ACTIONS(3678), - [anon_sym_namespace] = ACTIONS(3678), - [anon_sym_LBRACE] = ACTIONS(3678), - [anon_sym_RBRACE] = ACTIONS(3678), - [anon_sym_typeof] = ACTIONS(3678), - [anon_sym_import] = ACTIONS(3678), - [anon_sym_from] = ACTIONS(3678), - [anon_sym_with] = ACTIONS(3678), - [anon_sym_var] = ACTIONS(3678), - [anon_sym_let] = ACTIONS(3678), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_else] = ACTIONS(3678), - [anon_sym_if] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3678), - [anon_sym_for] = ACTIONS(3678), - [anon_sym_LPAREN] = ACTIONS(3678), - [anon_sym_await] = ACTIONS(3678), - [anon_sym_of] = ACTIONS(3678), - [anon_sym_while] = ACTIONS(3678), - [anon_sym_do] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_break] = ACTIONS(3678), - [anon_sym_continue] = ACTIONS(3678), - [anon_sym_debugger] = ACTIONS(3678), - [anon_sym_return] = ACTIONS(3678), - [anon_sym_throw] = ACTIONS(3678), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym_case] = ACTIONS(3678), - [anon_sym_yield] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_LTtemplate_GT] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_async] = ACTIONS(3678), - [anon_sym_function] = ACTIONS(3678), - [anon_sym_new] = ACTIONS(3678), - [anon_sym_using] = ACTIONS(3678), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_SLASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_void] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_DASH_DASH] = ACTIONS(3678), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3678), - [sym_private_property_identifier] = ACTIONS(3678), - [sym_this] = ACTIONS(3678), - [sym_super] = ACTIONS(3678), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_AT] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3678), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3678), - [anon_sym_declare] = ACTIONS(3678), - [anon_sym_public] = ACTIONS(3678), - [anon_sym_private] = ACTIONS(3678), - [anon_sym_protected] = ACTIONS(3678), - [anon_sym_override] = ACTIONS(3678), - [anon_sym_module] = ACTIONS(3678), - [anon_sym_any] = ACTIONS(3678), - [anon_sym_number] = ACTIONS(3678), - [anon_sym_boolean] = ACTIONS(3678), - [anon_sym_string] = ACTIONS(3678), - [anon_sym_symbol] = ACTIONS(3678), - [anon_sym_object] = ACTIONS(3678), - [anon_sym_property] = ACTIONS(3678), - [anon_sym_signal] = ACTIONS(3678), - [anon_sym_on] = ACTIONS(3678), - [anon_sym_required] = ACTIONS(3678), - [anon_sym_component] = ACTIONS(3678), - [anon_sym_abstract] = ACTIONS(3678), - [anon_sym_interface] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), - [sym_html_comment] = ACTIONS(5), - }, - [1247] = { - [sym_comment] = STATE(1247), - [sym_identifier] = ACTIONS(3680), - [anon_sym_export] = ACTIONS(3680), - [anon_sym_default] = ACTIONS(3680), - [anon_sym_type] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3680), - [anon_sym_RBRACE] = ACTIONS(3680), - [anon_sym_typeof] = ACTIONS(3680), - [anon_sym_import] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_with] = ACTIONS(3680), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_for] = ACTIONS(3680), - [anon_sym_LPAREN] = ACTIONS(3680), - [anon_sym_await] = ACTIONS(3680), - [anon_sym_of] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), - [anon_sym_do] = ACTIONS(3680), - [anon_sym_try] = ACTIONS(3680), - [anon_sym_break] = ACTIONS(3680), - [anon_sym_continue] = ACTIONS(3680), - [anon_sym_debugger] = ACTIONS(3680), - [anon_sym_return] = ACTIONS(3680), - [anon_sym_throw] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_case] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_LTtemplate_GT] = ACTIONS(3680), - [anon_sym_DQUOTE] = ACTIONS(3680), - [anon_sym_SQUOTE] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_async] = ACTIONS(3680), - [anon_sym_function] = ACTIONS(3680), - [anon_sym_new] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_void] = ACTIONS(3680), - [anon_sym_delete] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3680), - [sym_number] = ACTIONS(3680), - [sym_private_property_identifier] = ACTIONS(3680), - [sym_this] = ACTIONS(3680), - [sym_super] = ACTIONS(3680), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_AT] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3680), - [anon_sym_get] = ACTIONS(3680), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_declare] = ACTIONS(3680), - [anon_sym_public] = ACTIONS(3680), - [anon_sym_private] = ACTIONS(3680), - [anon_sym_protected] = ACTIONS(3680), - [anon_sym_override] = ACTIONS(3680), - [anon_sym_module] = ACTIONS(3680), - [anon_sym_any] = ACTIONS(3680), - [anon_sym_number] = ACTIONS(3680), - [anon_sym_boolean] = ACTIONS(3680), - [anon_sym_string] = ACTIONS(3680), - [anon_sym_symbol] = ACTIONS(3680), - [anon_sym_object] = ACTIONS(3680), - [anon_sym_property] = ACTIONS(3680), - [anon_sym_signal] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_required] = ACTIONS(3680), - [anon_sym_component] = ACTIONS(3680), - [anon_sym_abstract] = ACTIONS(3680), - [anon_sym_interface] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [sym_html_comment] = ACTIONS(5), - }, - [1248] = { - [sym_comment] = STATE(1248), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_case] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_LTtemplate_GT] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_number] = ACTIONS(2374), - [sym_private_property_identifier] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(2552), - [sym_html_comment] = ACTIONS(5), - }, - [1249] = { - [sym_comment] = STATE(1249), - [sym_identifier] = ACTIONS(3682), - [anon_sym_export] = ACTIONS(3682), - [anon_sym_default] = ACTIONS(3682), - [anon_sym_type] = ACTIONS(3682), - [anon_sym_namespace] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_typeof] = ACTIONS(3682), - [anon_sym_import] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [anon_sym_var] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_const] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_else] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_for] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_await] = ACTIONS(3682), - [anon_sym_of] = ACTIONS(3682), - [anon_sym_while] = ACTIONS(3682), - [anon_sym_do] = ACTIONS(3682), - [anon_sym_try] = ACTIONS(3682), - [anon_sym_break] = ACTIONS(3682), - [anon_sym_continue] = ACTIONS(3682), - [anon_sym_debugger] = ACTIONS(3682), - [anon_sym_return] = ACTIONS(3682), - [anon_sym_throw] = ACTIONS(3682), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_case] = ACTIONS(3682), - [anon_sym_yield] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_LTtemplate_GT] = ACTIONS(3682), - [anon_sym_DQUOTE] = ACTIONS(3682), - [anon_sym_SQUOTE] = ACTIONS(3682), - [anon_sym_class] = ACTIONS(3682), - [anon_sym_async] = ACTIONS(3682), - [anon_sym_function] = ACTIONS(3682), - [anon_sym_new] = ACTIONS(3682), - [anon_sym_using] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3682), - [anon_sym_DASH] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_void] = ACTIONS(3682), - [anon_sym_delete] = ACTIONS(3682), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3682), - [sym_private_property_identifier] = ACTIONS(3682), - [sym_this] = ACTIONS(3682), - [sym_super] = ACTIONS(3682), - [sym_true] = ACTIONS(3682), - [sym_false] = ACTIONS(3682), - [sym_null] = ACTIONS(3682), - [sym_undefined] = ACTIONS(3682), - [anon_sym_AT] = ACTIONS(3682), - [anon_sym_static] = ACTIONS(3682), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_get] = ACTIONS(3682), - [anon_sym_set] = ACTIONS(3682), - [anon_sym_declare] = ACTIONS(3682), - [anon_sym_public] = ACTIONS(3682), - [anon_sym_private] = ACTIONS(3682), - [anon_sym_protected] = ACTIONS(3682), - [anon_sym_override] = ACTIONS(3682), - [anon_sym_module] = ACTIONS(3682), - [anon_sym_any] = ACTIONS(3682), - [anon_sym_number] = ACTIONS(3682), - [anon_sym_boolean] = ACTIONS(3682), - [anon_sym_string] = ACTIONS(3682), - [anon_sym_symbol] = ACTIONS(3682), - [anon_sym_object] = ACTIONS(3682), - [anon_sym_property] = ACTIONS(3682), - [anon_sym_signal] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_required] = ACTIONS(3682), - [anon_sym_component] = ACTIONS(3682), - [anon_sym_abstract] = ACTIONS(3682), - [anon_sym_interface] = ACTIONS(3682), - [anon_sym_enum] = ACTIONS(3682), - [sym_html_comment] = ACTIONS(5), - }, - [1250] = { - [sym_comment] = STATE(1250), - [sym_identifier] = ACTIONS(3684), - [anon_sym_export] = ACTIONS(3684), - [anon_sym_default] = ACTIONS(3684), - [anon_sym_type] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3684), - [anon_sym_RBRACE] = ACTIONS(3684), - [anon_sym_typeof] = ACTIONS(3684), - [anon_sym_import] = ACTIONS(3684), - [anon_sym_from] = ACTIONS(3684), - [anon_sym_with] = ACTIONS(3684), - [anon_sym_var] = ACTIONS(3684), - [anon_sym_let] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_else] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_LPAREN] = ACTIONS(3684), - [anon_sym_await] = ACTIONS(3684), - [anon_sym_of] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_debugger] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3684), - [anon_sym_case] = ACTIONS(3684), - [anon_sym_yield] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_LTtemplate_GT] = ACTIONS(3684), - [anon_sym_DQUOTE] = ACTIONS(3684), - [anon_sym_SQUOTE] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_async] = ACTIONS(3684), - [anon_sym_function] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_TILDE] = ACTIONS(3684), - [anon_sym_void] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3684), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3684), - [sym_number] = ACTIONS(3684), - [sym_private_property_identifier] = ACTIONS(3684), - [sym_this] = ACTIONS(3684), - [sym_super] = ACTIONS(3684), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_AT] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_get] = ACTIONS(3684), - [anon_sym_set] = ACTIONS(3684), - [anon_sym_declare] = ACTIONS(3684), - [anon_sym_public] = ACTIONS(3684), - [anon_sym_private] = ACTIONS(3684), - [anon_sym_protected] = ACTIONS(3684), - [anon_sym_override] = ACTIONS(3684), - [anon_sym_module] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3684), - [anon_sym_number] = ACTIONS(3684), - [anon_sym_boolean] = ACTIONS(3684), - [anon_sym_string] = ACTIONS(3684), - [anon_sym_symbol] = ACTIONS(3684), - [anon_sym_object] = ACTIONS(3684), - [anon_sym_property] = ACTIONS(3684), - [anon_sym_signal] = ACTIONS(3684), - [anon_sym_on] = ACTIONS(3684), - [anon_sym_required] = ACTIONS(3684), - [anon_sym_component] = ACTIONS(3684), - [anon_sym_abstract] = ACTIONS(3684), - [anon_sym_interface] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [sym_html_comment] = ACTIONS(5), - }, - [1251] = { - [sym_comment] = STATE(1251), - [sym_identifier] = ACTIONS(3686), - [anon_sym_export] = ACTIONS(3686), - [anon_sym_default] = ACTIONS(3686), - [anon_sym_type] = ACTIONS(3686), - [anon_sym_namespace] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_typeof] = ACTIONS(3686), - [anon_sym_import] = ACTIONS(3686), - [anon_sym_from] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [anon_sym_var] = ACTIONS(3686), - [anon_sym_let] = ACTIONS(3686), - [anon_sym_const] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_else] = ACTIONS(3686), - [anon_sym_if] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_for] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_await] = ACTIONS(3686), - [anon_sym_of] = ACTIONS(3686), - [anon_sym_while] = ACTIONS(3686), - [anon_sym_do] = ACTIONS(3686), - [anon_sym_try] = ACTIONS(3686), - [anon_sym_break] = ACTIONS(3686), - [anon_sym_continue] = ACTIONS(3686), - [anon_sym_debugger] = ACTIONS(3686), - [anon_sym_return] = ACTIONS(3686), - [anon_sym_throw] = ACTIONS(3686), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_case] = ACTIONS(3686), - [anon_sym_yield] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_LTtemplate_GT] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_class] = ACTIONS(3686), - [anon_sym_async] = ACTIONS(3686), - [anon_sym_function] = ACTIONS(3686), - [anon_sym_new] = ACTIONS(3686), - [anon_sym_using] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_SLASH] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_void] = ACTIONS(3686), - [anon_sym_delete] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3686), - [sym_number] = ACTIONS(3686), - [sym_private_property_identifier] = ACTIONS(3686), - [sym_this] = ACTIONS(3686), - [sym_super] = ACTIONS(3686), - [sym_true] = ACTIONS(3686), - [sym_false] = ACTIONS(3686), - [sym_null] = ACTIONS(3686), - [sym_undefined] = ACTIONS(3686), - [anon_sym_AT] = ACTIONS(3686), - [anon_sym_static] = ACTIONS(3686), - [anon_sym_readonly] = ACTIONS(3686), - [anon_sym_get] = ACTIONS(3686), - [anon_sym_set] = ACTIONS(3686), - [anon_sym_declare] = ACTIONS(3686), - [anon_sym_public] = ACTIONS(3686), - [anon_sym_private] = ACTIONS(3686), - [anon_sym_protected] = ACTIONS(3686), - [anon_sym_override] = ACTIONS(3686), - [anon_sym_module] = ACTIONS(3686), - [anon_sym_any] = ACTIONS(3686), - [anon_sym_number] = ACTIONS(3686), - [anon_sym_boolean] = ACTIONS(3686), - [anon_sym_string] = ACTIONS(3686), - [anon_sym_symbol] = ACTIONS(3686), - [anon_sym_object] = ACTIONS(3686), - [anon_sym_property] = ACTIONS(3686), - [anon_sym_signal] = ACTIONS(3686), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_required] = ACTIONS(3686), - [anon_sym_component] = ACTIONS(3686), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_interface] = ACTIONS(3686), - [anon_sym_enum] = ACTIONS(3686), - [sym_html_comment] = ACTIONS(5), - }, - [1252] = { - [sym_comment] = STATE(1252), - [sym_identifier] = ACTIONS(3688), - [anon_sym_export] = ACTIONS(3688), - [anon_sym_default] = ACTIONS(3688), - [anon_sym_type] = ACTIONS(3688), - [anon_sym_namespace] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3688), - [anon_sym_RBRACE] = ACTIONS(3688), - [anon_sym_typeof] = ACTIONS(3688), - [anon_sym_import] = ACTIONS(3688), - [anon_sym_from] = ACTIONS(3688), - [anon_sym_with] = ACTIONS(3688), - [anon_sym_var] = ACTIONS(3688), - [anon_sym_let] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_BANG] = ACTIONS(3688), - [anon_sym_else] = ACTIONS(3688), - [anon_sym_if] = ACTIONS(3688), - [anon_sym_switch] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_await] = ACTIONS(3688), - [anon_sym_of] = ACTIONS(3688), - [anon_sym_while] = ACTIONS(3688), - [anon_sym_do] = ACTIONS(3688), - [anon_sym_try] = ACTIONS(3688), - [anon_sym_break] = ACTIONS(3688), - [anon_sym_continue] = ACTIONS(3688), - [anon_sym_debugger] = ACTIONS(3688), - [anon_sym_return] = ACTIONS(3688), - [anon_sym_throw] = ACTIONS(3688), - [anon_sym_SEMI] = ACTIONS(3688), - [anon_sym_case] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3688), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LTtemplate_GT] = ACTIONS(3688), - [anon_sym_DQUOTE] = ACTIONS(3688), - [anon_sym_SQUOTE] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_async] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3688), - [anon_sym_using] = ACTIONS(3688), - [anon_sym_PLUS] = ACTIONS(3688), - [anon_sym_DASH] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_TILDE] = ACTIONS(3688), - [anon_sym_void] = ACTIONS(3688), - [anon_sym_delete] = ACTIONS(3688), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3688), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3688), - [sym_number] = ACTIONS(3688), - [sym_private_property_identifier] = ACTIONS(3688), - [sym_this] = ACTIONS(3688), - [sym_super] = ACTIONS(3688), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [sym_null] = ACTIONS(3688), - [sym_undefined] = ACTIONS(3688), - [anon_sym_AT] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_get] = ACTIONS(3688), - [anon_sym_set] = ACTIONS(3688), - [anon_sym_declare] = ACTIONS(3688), - [anon_sym_public] = ACTIONS(3688), - [anon_sym_private] = ACTIONS(3688), - [anon_sym_protected] = ACTIONS(3688), - [anon_sym_override] = ACTIONS(3688), - [anon_sym_module] = ACTIONS(3688), - [anon_sym_any] = ACTIONS(3688), - [anon_sym_number] = ACTIONS(3688), - [anon_sym_boolean] = ACTIONS(3688), - [anon_sym_string] = ACTIONS(3688), - [anon_sym_symbol] = ACTIONS(3688), - [anon_sym_object] = ACTIONS(3688), - [anon_sym_property] = ACTIONS(3688), - [anon_sym_signal] = ACTIONS(3688), - [anon_sym_on] = ACTIONS(3688), - [anon_sym_required] = ACTIONS(3688), - [anon_sym_component] = ACTIONS(3688), - [anon_sym_abstract] = ACTIONS(3688), - [anon_sym_interface] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), - [sym_html_comment] = ACTIONS(5), - }, - [1253] = { - [sym_comment] = STATE(1253), - [sym_identifier] = ACTIONS(3690), - [anon_sym_export] = ACTIONS(3690), - [anon_sym_default] = ACTIONS(3690), - [anon_sym_type] = ACTIONS(3690), - [anon_sym_namespace] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_typeof] = ACTIONS(3690), - [anon_sym_import] = ACTIONS(3690), - [anon_sym_from] = ACTIONS(3690), - [anon_sym_with] = ACTIONS(3690), - [anon_sym_var] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_const] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3690), - [anon_sym_else] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_switch] = ACTIONS(3690), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_await] = ACTIONS(3690), - [anon_sym_of] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_break] = ACTIONS(3690), - [anon_sym_continue] = ACTIONS(3690), - [anon_sym_debugger] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_throw] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym_case] = ACTIONS(3690), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LTtemplate_GT] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_SQUOTE] = ACTIONS(3690), - [anon_sym_class] = ACTIONS(3690), - [anon_sym_async] = ACTIONS(3690), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_using] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_SLASH] = ACTIONS(3690), - [anon_sym_LT] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3690), - [anon_sym_void] = ACTIONS(3690), - [anon_sym_delete] = ACTIONS(3690), - [anon_sym_PLUS_PLUS] = ACTIONS(3690), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3690), - [sym_number] = ACTIONS(3690), - [sym_private_property_identifier] = ACTIONS(3690), - [sym_this] = ACTIONS(3690), - [sym_super] = ACTIONS(3690), - [sym_true] = ACTIONS(3690), - [sym_false] = ACTIONS(3690), - [sym_null] = ACTIONS(3690), - [sym_undefined] = ACTIONS(3690), - [anon_sym_AT] = ACTIONS(3690), - [anon_sym_static] = ACTIONS(3690), - [anon_sym_readonly] = ACTIONS(3690), - [anon_sym_get] = ACTIONS(3690), - [anon_sym_set] = ACTIONS(3690), - [anon_sym_declare] = ACTIONS(3690), - [anon_sym_public] = ACTIONS(3690), - [anon_sym_private] = ACTIONS(3690), - [anon_sym_protected] = ACTIONS(3690), - [anon_sym_override] = ACTIONS(3690), - [anon_sym_module] = ACTIONS(3690), - [anon_sym_any] = ACTIONS(3690), - [anon_sym_number] = ACTIONS(3690), - [anon_sym_boolean] = ACTIONS(3690), - [anon_sym_string] = ACTIONS(3690), - [anon_sym_symbol] = ACTIONS(3690), - [anon_sym_object] = ACTIONS(3690), - [anon_sym_property] = ACTIONS(3690), - [anon_sym_signal] = ACTIONS(3690), - [anon_sym_on] = ACTIONS(3690), - [anon_sym_required] = ACTIONS(3690), - [anon_sym_component] = ACTIONS(3690), - [anon_sym_abstract] = ACTIONS(3690), - [anon_sym_interface] = ACTIONS(3690), - [anon_sym_enum] = ACTIONS(3690), - [sym_html_comment] = ACTIONS(5), - }, - [1254] = { - [sym_comment] = STATE(1254), - [sym_identifier] = ACTIONS(3692), - [anon_sym_export] = ACTIONS(3692), - [anon_sym_default] = ACTIONS(3692), - [anon_sym_type] = ACTIONS(3692), - [anon_sym_namespace] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3692), - [anon_sym_RBRACE] = ACTIONS(3692), - [anon_sym_typeof] = ACTIONS(3692), - [anon_sym_import] = ACTIONS(3692), - [anon_sym_from] = ACTIONS(3692), - [anon_sym_with] = ACTIONS(3692), - [anon_sym_var] = ACTIONS(3692), - [anon_sym_let] = ACTIONS(3692), - [anon_sym_const] = ACTIONS(3692), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_else] = ACTIONS(3692), - [anon_sym_if] = ACTIONS(3692), - [anon_sym_switch] = ACTIONS(3692), - [anon_sym_for] = ACTIONS(3692), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_await] = ACTIONS(3692), - [anon_sym_of] = ACTIONS(3692), - [anon_sym_while] = ACTIONS(3692), - [anon_sym_do] = ACTIONS(3692), - [anon_sym_try] = ACTIONS(3692), - [anon_sym_break] = ACTIONS(3692), - [anon_sym_continue] = ACTIONS(3692), - [anon_sym_debugger] = ACTIONS(3692), - [anon_sym_return] = ACTIONS(3692), - [anon_sym_throw] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_case] = ACTIONS(3692), - [anon_sym_yield] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3692), - [anon_sym_LTtemplate_GT] = ACTIONS(3692), - [anon_sym_DQUOTE] = ACTIONS(3692), - [anon_sym_SQUOTE] = ACTIONS(3692), - [anon_sym_class] = ACTIONS(3692), - [anon_sym_async] = ACTIONS(3692), - [anon_sym_function] = ACTIONS(3692), - [anon_sym_new] = ACTIONS(3692), - [anon_sym_using] = ACTIONS(3692), - [anon_sym_PLUS] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3692), - [anon_sym_SLASH] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_void] = ACTIONS(3692), - [anon_sym_delete] = ACTIONS(3692), - [anon_sym_PLUS_PLUS] = ACTIONS(3692), - [anon_sym_DASH_DASH] = ACTIONS(3692), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3692), - [sym_number] = ACTIONS(3692), - [sym_private_property_identifier] = ACTIONS(3692), - [sym_this] = ACTIONS(3692), - [sym_super] = ACTIONS(3692), - [sym_true] = ACTIONS(3692), - [sym_false] = ACTIONS(3692), - [sym_null] = ACTIONS(3692), - [sym_undefined] = ACTIONS(3692), - [anon_sym_AT] = ACTIONS(3692), - [anon_sym_static] = ACTIONS(3692), - [anon_sym_readonly] = ACTIONS(3692), - [anon_sym_get] = ACTIONS(3692), - [anon_sym_set] = ACTIONS(3692), - [anon_sym_declare] = ACTIONS(3692), - [anon_sym_public] = ACTIONS(3692), - [anon_sym_private] = ACTIONS(3692), - [anon_sym_protected] = ACTIONS(3692), - [anon_sym_override] = ACTIONS(3692), - [anon_sym_module] = ACTIONS(3692), - [anon_sym_any] = ACTIONS(3692), - [anon_sym_number] = ACTIONS(3692), - [anon_sym_boolean] = ACTIONS(3692), - [anon_sym_string] = ACTIONS(3692), - [anon_sym_symbol] = ACTIONS(3692), - [anon_sym_object] = ACTIONS(3692), - [anon_sym_property] = ACTIONS(3692), - [anon_sym_signal] = ACTIONS(3692), - [anon_sym_on] = ACTIONS(3692), - [anon_sym_required] = ACTIONS(3692), - [anon_sym_component] = ACTIONS(3692), - [anon_sym_abstract] = ACTIONS(3692), - [anon_sym_interface] = ACTIONS(3692), - [anon_sym_enum] = ACTIONS(3692), - [sym_html_comment] = ACTIONS(5), - }, - [1255] = { - [sym_comment] = STATE(1255), - [sym_identifier] = ACTIONS(3694), - [anon_sym_export] = ACTIONS(3694), - [anon_sym_default] = ACTIONS(3694), - [anon_sym_type] = ACTIONS(3694), - [anon_sym_namespace] = ACTIONS(3694), - [anon_sym_LBRACE] = ACTIONS(3694), - [anon_sym_RBRACE] = ACTIONS(3694), - [anon_sym_typeof] = ACTIONS(3694), - [anon_sym_import] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_with] = ACTIONS(3694), - [anon_sym_var] = ACTIONS(3694), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_const] = ACTIONS(3694), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(3694), - [anon_sym_if] = ACTIONS(3694), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_for] = ACTIONS(3694), - [anon_sym_LPAREN] = ACTIONS(3694), - [anon_sym_await] = ACTIONS(3694), - [anon_sym_of] = ACTIONS(3694), - [anon_sym_while] = ACTIONS(3694), - [anon_sym_do] = ACTIONS(3694), - [anon_sym_try] = ACTIONS(3694), - [anon_sym_break] = ACTIONS(3694), - [anon_sym_continue] = ACTIONS(3694), - [anon_sym_debugger] = ACTIONS(3694), - [anon_sym_return] = ACTIONS(3694), - [anon_sym_throw] = ACTIONS(3694), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_case] = ACTIONS(3694), - [anon_sym_yield] = ACTIONS(3694), - [anon_sym_LBRACK] = ACTIONS(3694), - [anon_sym_LTtemplate_GT] = ACTIONS(3694), - [anon_sym_DQUOTE] = ACTIONS(3694), - [anon_sym_SQUOTE] = ACTIONS(3694), - [anon_sym_class] = ACTIONS(3694), - [anon_sym_async] = ACTIONS(3694), - [anon_sym_function] = ACTIONS(3694), - [anon_sym_new] = ACTIONS(3694), - [anon_sym_using] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_TILDE] = ACTIONS(3694), - [anon_sym_void] = ACTIONS(3694), - [anon_sym_delete] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3694), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3694), - [sym_number] = ACTIONS(3694), - [sym_private_property_identifier] = ACTIONS(3694), - [sym_this] = ACTIONS(3694), - [sym_super] = ACTIONS(3694), - [sym_true] = ACTIONS(3694), - [sym_false] = ACTIONS(3694), - [sym_null] = ACTIONS(3694), - [sym_undefined] = ACTIONS(3694), - [anon_sym_AT] = ACTIONS(3694), - [anon_sym_static] = ACTIONS(3694), - [anon_sym_readonly] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(3694), - [anon_sym_set] = ACTIONS(3694), - [anon_sym_declare] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(3694), - [anon_sym_private] = ACTIONS(3694), - [anon_sym_protected] = ACTIONS(3694), - [anon_sym_override] = ACTIONS(3694), - [anon_sym_module] = ACTIONS(3694), - [anon_sym_any] = ACTIONS(3694), - [anon_sym_number] = ACTIONS(3694), - [anon_sym_boolean] = ACTIONS(3694), - [anon_sym_string] = ACTIONS(3694), - [anon_sym_symbol] = ACTIONS(3694), - [anon_sym_object] = ACTIONS(3694), - [anon_sym_property] = ACTIONS(3694), - [anon_sym_signal] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3694), - [anon_sym_required] = ACTIONS(3694), - [anon_sym_component] = ACTIONS(3694), - [anon_sym_abstract] = ACTIONS(3694), - [anon_sym_interface] = ACTIONS(3694), - [anon_sym_enum] = ACTIONS(3694), - [sym_html_comment] = ACTIONS(5), - }, - [1256] = { - [sym_comment] = STATE(1256), - [sym_identifier] = ACTIONS(3696), - [anon_sym_export] = ACTIONS(3696), - [anon_sym_default] = ACTIONS(3696), - [anon_sym_type] = ACTIONS(3696), - [anon_sym_namespace] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_typeof] = ACTIONS(3696), - [anon_sym_import] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3696), - [anon_sym_let] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_BANG] = ACTIONS(3696), - [anon_sym_else] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_await] = ACTIONS(3696), - [anon_sym_of] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_debugger] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_throw] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_case] = ACTIONS(3696), - [anon_sym_yield] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LTtemplate_GT] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3696), - [anon_sym_class] = ACTIONS(3696), - [anon_sym_async] = ACTIONS(3696), - [anon_sym_function] = ACTIONS(3696), - [anon_sym_new] = ACTIONS(3696), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3696), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_TILDE] = ACTIONS(3696), - [anon_sym_void] = ACTIONS(3696), - [anon_sym_delete] = ACTIONS(3696), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3696), - [sym_number] = ACTIONS(3696), - [sym_private_property_identifier] = ACTIONS(3696), - [sym_this] = ACTIONS(3696), - [sym_super] = ACTIONS(3696), - [sym_true] = ACTIONS(3696), - [sym_false] = ACTIONS(3696), - [sym_null] = ACTIONS(3696), - [sym_undefined] = ACTIONS(3696), - [anon_sym_AT] = ACTIONS(3696), - [anon_sym_static] = ACTIONS(3696), - [anon_sym_readonly] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3696), - [anon_sym_declare] = ACTIONS(3696), - [anon_sym_public] = ACTIONS(3696), - [anon_sym_private] = ACTIONS(3696), - [anon_sym_protected] = ACTIONS(3696), - [anon_sym_override] = ACTIONS(3696), - [anon_sym_module] = ACTIONS(3696), - [anon_sym_any] = ACTIONS(3696), - [anon_sym_number] = ACTIONS(3696), - [anon_sym_boolean] = ACTIONS(3696), - [anon_sym_string] = ACTIONS(3696), - [anon_sym_symbol] = ACTIONS(3696), - [anon_sym_object] = ACTIONS(3696), - [anon_sym_property] = ACTIONS(3696), - [anon_sym_signal] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_required] = ACTIONS(3696), - [anon_sym_component] = ACTIONS(3696), - [anon_sym_abstract] = ACTIONS(3696), - [anon_sym_interface] = ACTIONS(3696), - [anon_sym_enum] = ACTIONS(3696), - [sym_html_comment] = ACTIONS(5), - }, - [1257] = { - [sym_comment] = STATE(1257), - [sym_identifier] = ACTIONS(3698), - [anon_sym_export] = ACTIONS(3698), - [anon_sym_default] = ACTIONS(3698), - [anon_sym_type] = ACTIONS(3698), - [anon_sym_namespace] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_RBRACE] = ACTIONS(3698), - [anon_sym_typeof] = ACTIONS(3698), - [anon_sym_import] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_with] = ACTIONS(3698), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_const] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_else] = ACTIONS(3698), - [anon_sym_if] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_await] = ACTIONS(3698), - [anon_sym_of] = ACTIONS(3698), - [anon_sym_while] = ACTIONS(3698), - [anon_sym_do] = ACTIONS(3698), - [anon_sym_try] = ACTIONS(3698), - [anon_sym_break] = ACTIONS(3698), - [anon_sym_continue] = ACTIONS(3698), - [anon_sym_debugger] = ACTIONS(3698), - [anon_sym_return] = ACTIONS(3698), - [anon_sym_throw] = ACTIONS(3698), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_case] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3698), - [anon_sym_LTtemplate_GT] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3698), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_class] = ACTIONS(3698), - [anon_sym_async] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3698), - [anon_sym_using] = ACTIONS(3698), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_TILDE] = ACTIONS(3698), - [anon_sym_void] = ACTIONS(3698), - [anon_sym_delete] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3698), - [anon_sym_DASH_DASH] = ACTIONS(3698), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3698), - [sym_number] = ACTIONS(3698), - [sym_private_property_identifier] = ACTIONS(3698), - [sym_this] = ACTIONS(3698), - [sym_super] = ACTIONS(3698), - [sym_true] = ACTIONS(3698), - [sym_false] = ACTIONS(3698), - [sym_null] = ACTIONS(3698), - [sym_undefined] = ACTIONS(3698), - [anon_sym_AT] = ACTIONS(3698), - [anon_sym_static] = ACTIONS(3698), - [anon_sym_readonly] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(3698), - [anon_sym_set] = ACTIONS(3698), - [anon_sym_declare] = ACTIONS(3698), - [anon_sym_public] = ACTIONS(3698), - [anon_sym_private] = ACTIONS(3698), - [anon_sym_protected] = ACTIONS(3698), - [anon_sym_override] = ACTIONS(3698), - [anon_sym_module] = ACTIONS(3698), - [anon_sym_any] = ACTIONS(3698), - [anon_sym_number] = ACTIONS(3698), - [anon_sym_boolean] = ACTIONS(3698), - [anon_sym_string] = ACTIONS(3698), - [anon_sym_symbol] = ACTIONS(3698), - [anon_sym_object] = ACTIONS(3698), - [anon_sym_property] = ACTIONS(3698), - [anon_sym_signal] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_required] = ACTIONS(3698), - [anon_sym_component] = ACTIONS(3698), - [anon_sym_abstract] = ACTIONS(3698), - [anon_sym_interface] = ACTIONS(3698), - [anon_sym_enum] = ACTIONS(3698), - [sym_html_comment] = ACTIONS(5), - }, - [1258] = { - [sym_comment] = STATE(1258), + [1216] = { + [sym_comment] = STATE(1216), [sym_identifier] = ACTIONS(3700), [anon_sym_export] = ACTIONS(3700), [anon_sym_default] = ACTIONS(3700), @@ -180973,453 +176857,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3700), [sym_html_comment] = ACTIONS(5), }, - [1259] = { - [sym_comment] = STATE(1259), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), + [1217] = { + [sym_comment] = STATE(1217), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_case] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2352), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2534), [sym_html_comment] = ACTIONS(5), }, - [1260] = { - [sym_comment] = STATE(1260), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1218] = { + [sym_comment] = STATE(1218), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_case] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2540), [sym_html_comment] = ACTIONS(5), }, - [1261] = { - [sym_comment] = STATE(1261), - [sym_identifier] = ACTIONS(3494), - [anon_sym_export] = ACTIONS(3494), - [anon_sym_default] = ACTIONS(3494), - [anon_sym_type] = ACTIONS(3494), - [anon_sym_namespace] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3494), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_typeof] = ACTIONS(3494), - [anon_sym_import] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_with] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_if] = ACTIONS(3494), - [anon_sym_switch] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3494), - [anon_sym_await] = ACTIONS(3494), - [anon_sym_of] = ACTIONS(3494), - [anon_sym_while] = ACTIONS(3494), - [anon_sym_do] = ACTIONS(3494), - [anon_sym_try] = ACTIONS(3494), - [anon_sym_break] = ACTIONS(3494), - [anon_sym_continue] = ACTIONS(3494), - [anon_sym_debugger] = ACTIONS(3494), - [anon_sym_return] = ACTIONS(3494), - [anon_sym_throw] = ACTIONS(3494), - [anon_sym_SEMI] = ACTIONS(3494), - [anon_sym_case] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_LTtemplate_GT] = ACTIONS(3494), - [anon_sym_DQUOTE] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(3494), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_using] = ACTIONS(3494), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_SLASH] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_TILDE] = ACTIONS(3494), - [anon_sym_void] = ACTIONS(3494), - [anon_sym_delete] = ACTIONS(3494), - [anon_sym_PLUS_PLUS] = ACTIONS(3494), - [anon_sym_DASH_DASH] = ACTIONS(3494), + [1219] = { + [sym_comment] = STATE(1219), + [sym_identifier] = ACTIONS(2426), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_default] = ACTIONS(2426), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_typeof] = ACTIONS(2426), + [anon_sym_import] = ACTIONS(2426), + [anon_sym_from] = ACTIONS(2426), + [anon_sym_with] = ACTIONS(2426), + [anon_sym_var] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_const] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_if] = ACTIONS(2426), + [anon_sym_switch] = ACTIONS(2426), + [anon_sym_for] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_await] = ACTIONS(2426), + [anon_sym_of] = ACTIONS(2426), + [anon_sym_while] = ACTIONS(2426), + [anon_sym_do] = ACTIONS(2426), + [anon_sym_try] = ACTIONS(2426), + [anon_sym_break] = ACTIONS(2426), + [anon_sym_continue] = ACTIONS(2426), + [anon_sym_debugger] = ACTIONS(2426), + [anon_sym_return] = ACTIONS(2426), + [anon_sym_throw] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_case] = ACTIONS(2426), + [anon_sym_yield] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_LTtemplate_GT] = ACTIONS(2426), + [anon_sym_DQUOTE] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2426), + [anon_sym_class] = ACTIONS(2426), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2426), + [anon_sym_new] = ACTIONS(2426), + [anon_sym_using] = ACTIONS(2426), + [anon_sym_PLUS] = ACTIONS(2426), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_SLASH] = ACTIONS(2426), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_TILDE] = ACTIONS(2426), + [anon_sym_void] = ACTIONS(2426), + [anon_sym_delete] = ACTIONS(2426), + [anon_sym_PLUS_PLUS] = ACTIONS(2426), + [anon_sym_DASH_DASH] = ACTIONS(2426), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3494), - [sym_number] = ACTIONS(3494), - [sym_private_property_identifier] = ACTIONS(3494), - [sym_this] = ACTIONS(3494), - [sym_super] = ACTIONS(3494), - [sym_true] = ACTIONS(3494), - [sym_false] = ACTIONS(3494), - [sym_null] = ACTIONS(3494), - [sym_undefined] = ACTIONS(3494), - [anon_sym_AT] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_get] = ACTIONS(3494), - [anon_sym_set] = ACTIONS(3494), - [anon_sym_declare] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_module] = ACTIONS(3494), - [anon_sym_any] = ACTIONS(3494), - [anon_sym_number] = ACTIONS(3494), - [anon_sym_boolean] = ACTIONS(3494), - [anon_sym_string] = ACTIONS(3494), - [anon_sym_symbol] = ACTIONS(3494), - [anon_sym_object] = ACTIONS(3494), - [anon_sym_property] = ACTIONS(3494), - [anon_sym_signal] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_component] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), - [sym_html_comment] = ACTIONS(5), - }, - [1262] = { - [sym_comment] = STATE(1262), - [sym_identifier] = ACTIONS(3484), - [anon_sym_export] = ACTIONS(3484), - [anon_sym_default] = ACTIONS(3484), - [anon_sym_type] = ACTIONS(3484), - [anon_sym_namespace] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3484), - [anon_sym_RBRACE] = ACTIONS(3484), - [anon_sym_typeof] = ACTIONS(3484), - [anon_sym_import] = ACTIONS(3484), - [anon_sym_from] = ACTIONS(3484), - [anon_sym_with] = ACTIONS(3484), - [anon_sym_var] = ACTIONS(3484), - [anon_sym_let] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3484), - [anon_sym_if] = ACTIONS(3484), - [anon_sym_switch] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_await] = ACTIONS(3484), - [anon_sym_of] = ACTIONS(3484), - [anon_sym_while] = ACTIONS(3484), - [anon_sym_do] = ACTIONS(3484), - [anon_sym_try] = ACTIONS(3484), - [anon_sym_break] = ACTIONS(3484), - [anon_sym_continue] = ACTIONS(3484), - [anon_sym_debugger] = ACTIONS(3484), - [anon_sym_return] = ACTIONS(3484), - [anon_sym_throw] = ACTIONS(3484), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_case] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3484), - [anon_sym_LBRACK] = ACTIONS(3484), - [anon_sym_LTtemplate_GT] = ACTIONS(3484), - [anon_sym_DQUOTE] = ACTIONS(3484), - [anon_sym_SQUOTE] = ACTIONS(3484), - [anon_sym_class] = ACTIONS(3484), - [anon_sym_async] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3484), - [anon_sym_using] = ACTIONS(3484), - [anon_sym_PLUS] = ACTIONS(3484), - [anon_sym_DASH] = ACTIONS(3484), - [anon_sym_SLASH] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_TILDE] = ACTIONS(3484), - [anon_sym_void] = ACTIONS(3484), - [anon_sym_delete] = ACTIONS(3484), - [anon_sym_PLUS_PLUS] = ACTIONS(3484), - [anon_sym_DASH_DASH] = ACTIONS(3484), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3484), - [sym_number] = ACTIONS(3484), - [sym_private_property_identifier] = ACTIONS(3484), - [sym_this] = ACTIONS(3484), - [sym_super] = ACTIONS(3484), - [sym_true] = ACTIONS(3484), - [sym_false] = ACTIONS(3484), - [sym_null] = ACTIONS(3484), - [sym_undefined] = ACTIONS(3484), - [anon_sym_AT] = ACTIONS(3484), - [anon_sym_static] = ACTIONS(3484), - [anon_sym_readonly] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3484), - [anon_sym_set] = ACTIONS(3484), - [anon_sym_declare] = ACTIONS(3484), - [anon_sym_public] = ACTIONS(3484), - [anon_sym_private] = ACTIONS(3484), - [anon_sym_protected] = ACTIONS(3484), - [anon_sym_override] = ACTIONS(3484), - [anon_sym_module] = ACTIONS(3484), - [anon_sym_any] = ACTIONS(3484), - [anon_sym_number] = ACTIONS(3484), - [anon_sym_boolean] = ACTIONS(3484), - [anon_sym_string] = ACTIONS(3484), - [anon_sym_symbol] = ACTIONS(3484), - [anon_sym_object] = ACTIONS(3484), - [anon_sym_property] = ACTIONS(3484), - [anon_sym_signal] = ACTIONS(3484), - [anon_sym_on] = ACTIONS(3484), - [anon_sym_required] = ACTIONS(3484), - [anon_sym_component] = ACTIONS(3484), - [anon_sym_abstract] = ACTIONS(3484), - [anon_sym_interface] = ACTIONS(3484), - [anon_sym_enum] = ACTIONS(3484), + [anon_sym_BQUOTE] = ACTIONS(2426), + [sym_number] = ACTIONS(2426), + [sym_private_property_identifier] = ACTIONS(2426), + [sym_this] = ACTIONS(2426), + [sym_super] = ACTIONS(2426), + [sym_true] = ACTIONS(2426), + [sym_false] = ACTIONS(2426), + [sym_null] = ACTIONS(2426), + [sym_undefined] = ACTIONS(2426), + [anon_sym_AT] = ACTIONS(2426), + [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_property] = ACTIONS(2426), + [anon_sym_signal] = ACTIONS(2426), + [anon_sym_on] = ACTIONS(2426), + [anon_sym_required] = ACTIONS(2426), + [anon_sym_component] = ACTIONS(2426), + [anon_sym_abstract] = ACTIONS(2426), + [anon_sym_interface] = ACTIONS(2426), + [anon_sym_enum] = ACTIONS(2426), + [sym__automatic_semicolon] = ACTIONS(2548), [sym_html_comment] = ACTIONS(5), }, - [1263] = { - [sym_comment] = STATE(1263), - [sym_identifier] = ACTIONS(3516), - [anon_sym_export] = ACTIONS(3516), - [anon_sym_default] = ACTIONS(3516), - [anon_sym_type] = ACTIONS(3516), - [anon_sym_namespace] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_RBRACE] = ACTIONS(3516), - [anon_sym_typeof] = ACTIONS(3516), - [anon_sym_import] = ACTIONS(3516), - [anon_sym_from] = ACTIONS(3516), - [anon_sym_with] = ACTIONS(3516), - [anon_sym_var] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_const] = ACTIONS(3516), - [anon_sym_BANG] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_switch] = ACTIONS(3516), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_await] = ACTIONS(3516), - [anon_sym_of] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_break] = ACTIONS(3516), - [anon_sym_continue] = ACTIONS(3516), - [anon_sym_debugger] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_throw] = ACTIONS(3516), - [anon_sym_SEMI] = ACTIONS(3516), - [anon_sym_case] = ACTIONS(3516), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LTtemplate_GT] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_SQUOTE] = ACTIONS(3516), - [anon_sym_class] = ACTIONS(3516), - [anon_sym_async] = ACTIONS(3516), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_using] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_void] = ACTIONS(3516), - [anon_sym_delete] = ACTIONS(3516), - [anon_sym_PLUS_PLUS] = ACTIONS(3516), - [anon_sym_DASH_DASH] = ACTIONS(3516), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3516), - [sym_number] = ACTIONS(3516), - [sym_private_property_identifier] = ACTIONS(3516), - [sym_this] = ACTIONS(3516), - [sym_super] = ACTIONS(3516), - [sym_true] = ACTIONS(3516), - [sym_false] = ACTIONS(3516), - [sym_null] = ACTIONS(3516), - [sym_undefined] = ACTIONS(3516), - [anon_sym_AT] = ACTIONS(3516), - [anon_sym_static] = ACTIONS(3516), - [anon_sym_readonly] = ACTIONS(3516), - [anon_sym_get] = ACTIONS(3516), - [anon_sym_set] = ACTIONS(3516), - [anon_sym_declare] = ACTIONS(3516), - [anon_sym_public] = ACTIONS(3516), - [anon_sym_private] = ACTIONS(3516), - [anon_sym_protected] = ACTIONS(3516), - [anon_sym_override] = ACTIONS(3516), - [anon_sym_module] = ACTIONS(3516), - [anon_sym_any] = ACTIONS(3516), - [anon_sym_number] = ACTIONS(3516), - [anon_sym_boolean] = ACTIONS(3516), - [anon_sym_string] = ACTIONS(3516), - [anon_sym_symbol] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(3516), - [anon_sym_property] = ACTIONS(3516), - [anon_sym_signal] = ACTIONS(3516), - [anon_sym_on] = ACTIONS(3516), - [anon_sym_required] = ACTIONS(3516), - [anon_sym_component] = ACTIONS(3516), - [anon_sym_abstract] = ACTIONS(3516), - [anon_sym_interface] = ACTIONS(3516), - [anon_sym_enum] = ACTIONS(3516), + [1220] = { + [sym_comment] = STATE(1220), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_case] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), [sym_html_comment] = ACTIONS(5), }, - [1264] = { - [sym_comment] = STATE(1264), + [1221] = { + [sym_comment] = STATE(1221), [sym_identifier] = ACTIONS(3702), [anon_sym_export] = ACTIONS(3702), [anon_sym_default] = ACTIONS(3702), @@ -181435,6 +177234,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3702), [anon_sym_const] = ACTIONS(3702), [anon_sym_BANG] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(3702), [anon_sym_if] = ACTIONS(3702), [anon_sym_switch] = ACTIONS(3702), [anon_sym_for] = ACTIONS(3702), @@ -181507,1877 +177307,2233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3702), [sym_html_comment] = ACTIONS(5), }, - [1265] = { - [sym_comment] = STATE(1265), - [sym_identifier] = ACTIONS(3496), - [anon_sym_export] = ACTIONS(3496), - [anon_sym_default] = ACTIONS(3496), - [anon_sym_type] = ACTIONS(3496), - [anon_sym_namespace] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(3496), - [anon_sym_RBRACE] = ACTIONS(3496), - [anon_sym_typeof] = ACTIONS(3496), - [anon_sym_import] = ACTIONS(3496), - [anon_sym_from] = ACTIONS(3496), - [anon_sym_with] = ACTIONS(3496), - [anon_sym_var] = ACTIONS(3496), - [anon_sym_let] = ACTIONS(3496), - [anon_sym_const] = ACTIONS(3496), - [anon_sym_BANG] = ACTIONS(3496), - [anon_sym_if] = ACTIONS(3496), - [anon_sym_switch] = ACTIONS(3496), - [anon_sym_for] = ACTIONS(3496), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_await] = ACTIONS(3496), - [anon_sym_of] = ACTIONS(3496), - [anon_sym_while] = ACTIONS(3496), - [anon_sym_do] = ACTIONS(3496), - [anon_sym_try] = ACTIONS(3496), - [anon_sym_break] = ACTIONS(3496), - [anon_sym_continue] = ACTIONS(3496), - [anon_sym_debugger] = ACTIONS(3496), - [anon_sym_return] = ACTIONS(3496), - [anon_sym_throw] = ACTIONS(3496), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_case] = ACTIONS(3496), - [anon_sym_yield] = ACTIONS(3496), - [anon_sym_LBRACK] = ACTIONS(3496), - [anon_sym_LTtemplate_GT] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(3496), - [anon_sym_SQUOTE] = ACTIONS(3496), - [anon_sym_class] = ACTIONS(3496), - [anon_sym_async] = ACTIONS(3496), - [anon_sym_function] = ACTIONS(3496), - [anon_sym_new] = ACTIONS(3496), - [anon_sym_using] = ACTIONS(3496), - [anon_sym_PLUS] = ACTIONS(3496), - [anon_sym_DASH] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(3496), - [anon_sym_void] = ACTIONS(3496), - [anon_sym_delete] = ACTIONS(3496), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3496), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3496), - [sym_number] = ACTIONS(3496), - [sym_private_property_identifier] = ACTIONS(3496), - [sym_this] = ACTIONS(3496), - [sym_super] = ACTIONS(3496), - [sym_true] = ACTIONS(3496), - [sym_false] = ACTIONS(3496), - [sym_null] = ACTIONS(3496), - [sym_undefined] = ACTIONS(3496), - [anon_sym_AT] = ACTIONS(3496), - [anon_sym_static] = ACTIONS(3496), - [anon_sym_readonly] = ACTIONS(3496), - [anon_sym_get] = ACTIONS(3496), - [anon_sym_set] = ACTIONS(3496), - [anon_sym_declare] = ACTIONS(3496), - [anon_sym_public] = ACTIONS(3496), - [anon_sym_private] = ACTIONS(3496), - [anon_sym_protected] = ACTIONS(3496), - [anon_sym_override] = ACTIONS(3496), - [anon_sym_module] = ACTIONS(3496), - [anon_sym_any] = ACTIONS(3496), - [anon_sym_number] = ACTIONS(3496), - [anon_sym_boolean] = ACTIONS(3496), - [anon_sym_string] = ACTIONS(3496), - [anon_sym_symbol] = ACTIONS(3496), - [anon_sym_object] = ACTIONS(3496), - [anon_sym_property] = ACTIONS(3496), - [anon_sym_signal] = ACTIONS(3496), - [anon_sym_on] = ACTIONS(3496), - [anon_sym_required] = ACTIONS(3496), - [anon_sym_component] = ACTIONS(3496), - [anon_sym_abstract] = ACTIONS(3496), - [anon_sym_interface] = ACTIONS(3496), - [anon_sym_enum] = ACTIONS(3496), + [1222] = { + [sym_comment] = STATE(1222), + [sym_identifier] = ACTIONS(3562), + [anon_sym_export] = ACTIONS(3562), + [anon_sym_default] = ACTIONS(3562), + [anon_sym_type] = ACTIONS(3562), + [anon_sym_namespace] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_RBRACE] = ACTIONS(3562), + [anon_sym_typeof] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_from] = ACTIONS(3562), + [anon_sym_with] = ACTIONS(3562), + [anon_sym_var] = ACTIONS(3562), + [anon_sym_let] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3562), + [anon_sym_await] = ACTIONS(3562), + [anon_sym_of] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_debugger] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym_case] = ACTIONS(3562), + [anon_sym_yield] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_LTtemplate_GT] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_async] = ACTIONS(3562), + [anon_sym_function] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_using] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_SLASH] = ACTIONS(3562), + [anon_sym_LT] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_void] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3562), + [sym_number] = ACTIONS(3562), + [sym_private_property_identifier] = ACTIONS(3562), + [sym_this] = ACTIONS(3562), + [sym_super] = ACTIONS(3562), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [sym_null] = ACTIONS(3562), + [sym_undefined] = ACTIONS(3562), + [anon_sym_AT] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_readonly] = ACTIONS(3562), + [anon_sym_get] = ACTIONS(3562), + [anon_sym_set] = ACTIONS(3562), + [anon_sym_declare] = ACTIONS(3562), + [anon_sym_public] = ACTIONS(3562), + [anon_sym_private] = ACTIONS(3562), + [anon_sym_protected] = ACTIONS(3562), + [anon_sym_override] = ACTIONS(3562), + [anon_sym_module] = ACTIONS(3562), + [anon_sym_any] = ACTIONS(3562), + [anon_sym_number] = ACTIONS(3562), + [anon_sym_boolean] = ACTIONS(3562), + [anon_sym_string] = ACTIONS(3562), + [anon_sym_symbol] = ACTIONS(3562), + [anon_sym_object] = ACTIONS(3562), + [anon_sym_property] = ACTIONS(3562), + [anon_sym_signal] = ACTIONS(3562), + [anon_sym_on] = ACTIONS(3562), + [anon_sym_required] = ACTIONS(3562), + [anon_sym_component] = ACTIONS(3562), + [anon_sym_abstract] = ACTIONS(3562), + [anon_sym_interface] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), [sym_html_comment] = ACTIONS(5), }, - [1266] = { - [sym_comment] = STATE(1266), - [sym_identifier] = ACTIONS(3486), - [anon_sym_export] = ACTIONS(3486), - [anon_sym_default] = ACTIONS(3486), - [anon_sym_type] = ACTIONS(3486), - [anon_sym_namespace] = ACTIONS(3486), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_RBRACE] = ACTIONS(3486), - [anon_sym_typeof] = ACTIONS(3486), - [anon_sym_import] = ACTIONS(3486), - [anon_sym_from] = ACTIONS(3486), - [anon_sym_with] = ACTIONS(3486), - [anon_sym_var] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_const] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_switch] = ACTIONS(3486), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_await] = ACTIONS(3486), - [anon_sym_of] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_break] = ACTIONS(3486), - [anon_sym_continue] = ACTIONS(3486), - [anon_sym_debugger] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_throw] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_case] = ACTIONS(3486), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LTtemplate_GT] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_SQUOTE] = ACTIONS(3486), - [anon_sym_class] = ACTIONS(3486), - [anon_sym_async] = ACTIONS(3486), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_using] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3486), - [anon_sym_void] = ACTIONS(3486), - [anon_sym_delete] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DASH_DASH] = ACTIONS(3486), + [1223] = { + [sym_comment] = STATE(1223), + [sym_identifier] = ACTIONS(3554), + [anon_sym_export] = ACTIONS(3554), + [anon_sym_default] = ACTIONS(3554), + [anon_sym_type] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_RBRACE] = ACTIONS(3554), + [anon_sym_typeof] = ACTIONS(3554), + [anon_sym_import] = ACTIONS(3554), + [anon_sym_from] = ACTIONS(3554), + [anon_sym_with] = ACTIONS(3554), + [anon_sym_var] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_switch] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_await] = ACTIONS(3554), + [anon_sym_of] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_debugger] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_throw] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym_case] = ACTIONS(3554), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LTtemplate_GT] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_SQUOTE] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_async] = ACTIONS(3554), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_SLASH] = ACTIONS(3554), + [anon_sym_LT] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3554), + [anon_sym_void] = ACTIONS(3554), + [anon_sym_delete] = ACTIONS(3554), + [anon_sym_PLUS_PLUS] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3554), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3486), - [sym_number] = ACTIONS(3486), - [sym_private_property_identifier] = ACTIONS(3486), - [sym_this] = ACTIONS(3486), - [sym_super] = ACTIONS(3486), - [sym_true] = ACTIONS(3486), - [sym_false] = ACTIONS(3486), - [sym_null] = ACTIONS(3486), - [sym_undefined] = ACTIONS(3486), - [anon_sym_AT] = ACTIONS(3486), - [anon_sym_static] = ACTIONS(3486), - [anon_sym_readonly] = ACTIONS(3486), - [anon_sym_get] = ACTIONS(3486), - [anon_sym_set] = ACTIONS(3486), - [anon_sym_declare] = ACTIONS(3486), - [anon_sym_public] = ACTIONS(3486), - [anon_sym_private] = ACTIONS(3486), - [anon_sym_protected] = ACTIONS(3486), - [anon_sym_override] = ACTIONS(3486), - [anon_sym_module] = ACTIONS(3486), - [anon_sym_any] = ACTIONS(3486), - [anon_sym_number] = ACTIONS(3486), - [anon_sym_boolean] = ACTIONS(3486), - [anon_sym_string] = ACTIONS(3486), - [anon_sym_symbol] = ACTIONS(3486), - [anon_sym_object] = ACTIONS(3486), - [anon_sym_property] = ACTIONS(3486), - [anon_sym_signal] = ACTIONS(3486), - [anon_sym_on] = ACTIONS(3486), - [anon_sym_required] = ACTIONS(3486), - [anon_sym_component] = ACTIONS(3486), - [anon_sym_abstract] = ACTIONS(3486), - [anon_sym_interface] = ACTIONS(3486), - [anon_sym_enum] = ACTIONS(3486), + [anon_sym_BQUOTE] = ACTIONS(3554), + [sym_number] = ACTIONS(3554), + [sym_private_property_identifier] = ACTIONS(3554), + [sym_this] = ACTIONS(3554), + [sym_super] = ACTIONS(3554), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [sym_null] = ACTIONS(3554), + [sym_undefined] = ACTIONS(3554), + [anon_sym_AT] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_readonly] = ACTIONS(3554), + [anon_sym_get] = ACTIONS(3554), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_declare] = ACTIONS(3554), + [anon_sym_public] = ACTIONS(3554), + [anon_sym_private] = ACTIONS(3554), + [anon_sym_protected] = ACTIONS(3554), + [anon_sym_override] = ACTIONS(3554), + [anon_sym_module] = ACTIONS(3554), + [anon_sym_any] = ACTIONS(3554), + [anon_sym_number] = ACTIONS(3554), + [anon_sym_boolean] = ACTIONS(3554), + [anon_sym_string] = ACTIONS(3554), + [anon_sym_symbol] = ACTIONS(3554), + [anon_sym_object] = ACTIONS(3554), + [anon_sym_property] = ACTIONS(3554), + [anon_sym_signal] = ACTIONS(3554), + [anon_sym_on] = ACTIONS(3554), + [anon_sym_required] = ACTIONS(3554), + [anon_sym_component] = ACTIONS(3554), + [anon_sym_abstract] = ACTIONS(3554), + [anon_sym_interface] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), [sym_html_comment] = ACTIONS(5), }, - [1267] = { - [sym_comment] = STATE(1267), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_catch] = ACTIONS(2350), - [anon_sym_finally] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), + [1224] = { + [sym_comment] = STATE(1224), + [sym_identifier] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_default] = ACTIONS(3556), + [anon_sym_type] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_typeof] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_from] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3556), + [anon_sym_var] = ACTIONS(3556), + [anon_sym_let] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3556), + [anon_sym_await] = ACTIONS(3556), + [anon_sym_of] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_debugger] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_case] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_LTtemplate_GT] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_async] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_SLASH] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_void] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3556), + [sym_number] = ACTIONS(3556), + [sym_private_property_identifier] = ACTIONS(3556), + [sym_this] = ACTIONS(3556), + [sym_super] = ACTIONS(3556), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [sym_null] = ACTIONS(3556), + [sym_undefined] = ACTIONS(3556), + [anon_sym_AT] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_readonly] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3556), + [anon_sym_set] = ACTIONS(3556), + [anon_sym_declare] = ACTIONS(3556), + [anon_sym_public] = ACTIONS(3556), + [anon_sym_private] = ACTIONS(3556), + [anon_sym_protected] = ACTIONS(3556), + [anon_sym_override] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_any] = ACTIONS(3556), + [anon_sym_number] = ACTIONS(3556), + [anon_sym_boolean] = ACTIONS(3556), + [anon_sym_string] = ACTIONS(3556), + [anon_sym_symbol] = ACTIONS(3556), + [anon_sym_object] = ACTIONS(3556), + [anon_sym_property] = ACTIONS(3556), + [anon_sym_signal] = ACTIONS(3556), + [anon_sym_on] = ACTIONS(3556), + [anon_sym_required] = ACTIONS(3556), + [anon_sym_component] = ACTIONS(3556), + [anon_sym_abstract] = ACTIONS(3556), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), [sym_html_comment] = ACTIONS(5), }, - [1268] = { - [sym_comment] = STATE(1268), - [sym_identifier] = ACTIONS(3526), - [anon_sym_export] = ACTIONS(3526), - [anon_sym_default] = ACTIONS(3526), - [anon_sym_type] = ACTIONS(3526), - [anon_sym_namespace] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_RBRACE] = ACTIONS(3526), - [anon_sym_typeof] = ACTIONS(3526), - [anon_sym_import] = ACTIONS(3526), - [anon_sym_from] = ACTIONS(3526), - [anon_sym_with] = ACTIONS(3526), - [anon_sym_var] = ACTIONS(3526), - [anon_sym_let] = ACTIONS(3526), - [anon_sym_const] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_if] = ACTIONS(3526), - [anon_sym_switch] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3526), - [anon_sym_await] = ACTIONS(3526), - [anon_sym_of] = ACTIONS(3526), - [anon_sym_while] = ACTIONS(3526), - [anon_sym_do] = ACTIONS(3526), - [anon_sym_try] = ACTIONS(3526), - [anon_sym_break] = ACTIONS(3526), - [anon_sym_continue] = ACTIONS(3526), - [anon_sym_debugger] = ACTIONS(3526), - [anon_sym_return] = ACTIONS(3526), - [anon_sym_throw] = ACTIONS(3526), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_case] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3526), - [anon_sym_LTtemplate_GT] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [anon_sym_SQUOTE] = ACTIONS(3526), - [anon_sym_class] = ACTIONS(3526), - [anon_sym_async] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3526), - [anon_sym_new] = ACTIONS(3526), - [anon_sym_using] = ACTIONS(3526), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_void] = ACTIONS(3526), - [anon_sym_delete] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_DASH_DASH] = ACTIONS(3526), + [1225] = { + [sym_comment] = STATE(1225), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_default] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_case] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3526), - [sym_number] = ACTIONS(3526), - [sym_private_property_identifier] = ACTIONS(3526), - [sym_this] = ACTIONS(3526), - [sym_super] = ACTIONS(3526), - [sym_true] = ACTIONS(3526), - [sym_false] = ACTIONS(3526), - [sym_null] = ACTIONS(3526), - [sym_undefined] = ACTIONS(3526), - [anon_sym_AT] = ACTIONS(3526), - [anon_sym_static] = ACTIONS(3526), - [anon_sym_readonly] = ACTIONS(3526), - [anon_sym_get] = ACTIONS(3526), - [anon_sym_set] = ACTIONS(3526), - [anon_sym_declare] = ACTIONS(3526), - [anon_sym_public] = ACTIONS(3526), - [anon_sym_private] = ACTIONS(3526), - [anon_sym_protected] = ACTIONS(3526), - [anon_sym_override] = ACTIONS(3526), - [anon_sym_module] = ACTIONS(3526), - [anon_sym_any] = ACTIONS(3526), - [anon_sym_number] = ACTIONS(3526), - [anon_sym_boolean] = ACTIONS(3526), - [anon_sym_string] = ACTIONS(3526), - [anon_sym_symbol] = ACTIONS(3526), - [anon_sym_object] = ACTIONS(3526), - [anon_sym_property] = ACTIONS(3526), - [anon_sym_signal] = ACTIONS(3526), - [anon_sym_on] = ACTIONS(3526), - [anon_sym_required] = ACTIONS(3526), - [anon_sym_component] = ACTIONS(3526), - [anon_sym_abstract] = ACTIONS(3526), - [anon_sym_interface] = ACTIONS(3526), - [anon_sym_enum] = ACTIONS(3526), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), [sym_html_comment] = ACTIONS(5), }, - [1269] = { - [sym_comment] = STATE(1269), - [sym_identifier] = ACTIONS(3510), - [anon_sym_export] = ACTIONS(3510), - [anon_sym_default] = ACTIONS(3510), - [anon_sym_type] = ACTIONS(3510), - [anon_sym_namespace] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3510), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_typeof] = ACTIONS(3510), - [anon_sym_import] = ACTIONS(3510), - [anon_sym_from] = ACTIONS(3510), - [anon_sym_with] = ACTIONS(3510), - [anon_sym_var] = ACTIONS(3510), - [anon_sym_let] = ACTIONS(3510), - [anon_sym_const] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(3510), - [anon_sym_switch] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym_await] = ACTIONS(3510), - [anon_sym_of] = ACTIONS(3510), - [anon_sym_while] = ACTIONS(3510), - [anon_sym_do] = ACTIONS(3510), - [anon_sym_try] = ACTIONS(3510), - [anon_sym_break] = ACTIONS(3510), - [anon_sym_continue] = ACTIONS(3510), - [anon_sym_debugger] = ACTIONS(3510), - [anon_sym_return] = ACTIONS(3510), - [anon_sym_throw] = ACTIONS(3510), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_case] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3510), - [anon_sym_LTtemplate_GT] = ACTIONS(3510), - [anon_sym_DQUOTE] = ACTIONS(3510), - [anon_sym_SQUOTE] = ACTIONS(3510), - [anon_sym_class] = ACTIONS(3510), - [anon_sym_async] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3510), - [anon_sym_new] = ACTIONS(3510), - [anon_sym_using] = ACTIONS(3510), - [anon_sym_PLUS] = ACTIONS(3510), - [anon_sym_DASH] = ACTIONS(3510), - [anon_sym_SLASH] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_void] = ACTIONS(3510), - [anon_sym_delete] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DASH_DASH] = ACTIONS(3510), + [1226] = { + [sym_comment] = STATE(1226), + [sym_identifier] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_default] = ACTIONS(3560), + [anon_sym_type] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_RBRACE] = ACTIONS(3560), + [anon_sym_typeof] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_from] = ACTIONS(3560), + [anon_sym_with] = ACTIONS(3560), + [anon_sym_var] = ACTIONS(3560), + [anon_sym_let] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_LPAREN] = ACTIONS(3560), + [anon_sym_await] = ACTIONS(3560), + [anon_sym_of] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_debugger] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym_case] = ACTIONS(3560), + [anon_sym_yield] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_LTtemplate_GT] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_async] = ACTIONS(3560), + [anon_sym_function] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_void] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3560), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3510), - [sym_number] = ACTIONS(3510), - [sym_private_property_identifier] = ACTIONS(3510), - [sym_this] = ACTIONS(3510), - [sym_super] = ACTIONS(3510), - [sym_true] = ACTIONS(3510), - [sym_false] = ACTIONS(3510), - [sym_null] = ACTIONS(3510), - [sym_undefined] = ACTIONS(3510), - [anon_sym_AT] = ACTIONS(3510), - [anon_sym_static] = ACTIONS(3510), - [anon_sym_readonly] = ACTIONS(3510), - [anon_sym_get] = ACTIONS(3510), - [anon_sym_set] = ACTIONS(3510), - [anon_sym_declare] = ACTIONS(3510), - [anon_sym_public] = ACTIONS(3510), - [anon_sym_private] = ACTIONS(3510), - [anon_sym_protected] = ACTIONS(3510), - [anon_sym_override] = ACTIONS(3510), - [anon_sym_module] = ACTIONS(3510), - [anon_sym_any] = ACTIONS(3510), - [anon_sym_number] = ACTIONS(3510), - [anon_sym_boolean] = ACTIONS(3510), - [anon_sym_string] = ACTIONS(3510), - [anon_sym_symbol] = ACTIONS(3510), - [anon_sym_object] = ACTIONS(3510), - [anon_sym_property] = ACTIONS(3510), - [anon_sym_signal] = ACTIONS(3510), - [anon_sym_on] = ACTIONS(3510), - [anon_sym_required] = ACTIONS(3510), - [anon_sym_component] = ACTIONS(3510), - [anon_sym_abstract] = ACTIONS(3510), - [anon_sym_interface] = ACTIONS(3510), - [anon_sym_enum] = ACTIONS(3510), + [anon_sym_BQUOTE] = ACTIONS(3560), + [sym_number] = ACTIONS(3560), + [sym_private_property_identifier] = ACTIONS(3560), + [sym_this] = ACTIONS(3560), + [sym_super] = ACTIONS(3560), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [sym_null] = ACTIONS(3560), + [sym_undefined] = ACTIONS(3560), + [anon_sym_AT] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_readonly] = ACTIONS(3560), + [anon_sym_get] = ACTIONS(3560), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_declare] = ACTIONS(3560), + [anon_sym_public] = ACTIONS(3560), + [anon_sym_private] = ACTIONS(3560), + [anon_sym_protected] = ACTIONS(3560), + [anon_sym_override] = ACTIONS(3560), + [anon_sym_module] = ACTIONS(3560), + [anon_sym_any] = ACTIONS(3560), + [anon_sym_number] = ACTIONS(3560), + [anon_sym_boolean] = ACTIONS(3560), + [anon_sym_string] = ACTIONS(3560), + [anon_sym_symbol] = ACTIONS(3560), + [anon_sym_object] = ACTIONS(3560), + [anon_sym_property] = ACTIONS(3560), + [anon_sym_signal] = ACTIONS(3560), + [anon_sym_on] = ACTIONS(3560), + [anon_sym_required] = ACTIONS(3560), + [anon_sym_component] = ACTIONS(3560), + [anon_sym_abstract] = ACTIONS(3560), + [anon_sym_interface] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), [sym_html_comment] = ACTIONS(5), }, - [1270] = { - [sym_comment] = STATE(1270), - [sym_identifier] = ACTIONS(3532), - [anon_sym_export] = ACTIONS(3532), - [anon_sym_default] = ACTIONS(3532), - [anon_sym_type] = ACTIONS(3532), - [anon_sym_namespace] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_RBRACE] = ACTIONS(3532), - [anon_sym_typeof] = ACTIONS(3532), - [anon_sym_import] = ACTIONS(3532), - [anon_sym_from] = ACTIONS(3532), - [anon_sym_with] = ACTIONS(3532), - [anon_sym_var] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_BANG] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_await] = ACTIONS(3532), - [anon_sym_of] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_debugger] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_SEMI] = ACTIONS(3532), - [anon_sym_case] = ACTIONS(3532), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LTtemplate_GT] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_SQUOTE] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3532), - [anon_sym_async] = ACTIONS(3532), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_using] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_SLASH] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3532), - [anon_sym_void] = ACTIONS(3532), - [anon_sym_delete] = ACTIONS(3532), - [anon_sym_PLUS_PLUS] = ACTIONS(3532), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3532), - [sym_number] = ACTIONS(3532), - [sym_private_property_identifier] = ACTIONS(3532), - [sym_this] = ACTIONS(3532), - [sym_super] = ACTIONS(3532), - [sym_true] = ACTIONS(3532), - [sym_false] = ACTIONS(3532), - [sym_null] = ACTIONS(3532), - [sym_undefined] = ACTIONS(3532), - [anon_sym_AT] = ACTIONS(3532), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_readonly] = ACTIONS(3532), - [anon_sym_get] = ACTIONS(3532), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_declare] = ACTIONS(3532), - [anon_sym_public] = ACTIONS(3532), - [anon_sym_private] = ACTIONS(3532), - [anon_sym_protected] = ACTIONS(3532), - [anon_sym_override] = ACTIONS(3532), - [anon_sym_module] = ACTIONS(3532), - [anon_sym_any] = ACTIONS(3532), - [anon_sym_number] = ACTIONS(3532), - [anon_sym_boolean] = ACTIONS(3532), - [anon_sym_string] = ACTIONS(3532), - [anon_sym_symbol] = ACTIONS(3532), - [anon_sym_object] = ACTIONS(3532), - [anon_sym_property] = ACTIONS(3532), - [anon_sym_signal] = ACTIONS(3532), - [anon_sym_on] = ACTIONS(3532), - [anon_sym_required] = ACTIONS(3532), - [anon_sym_component] = ACTIONS(3532), - [anon_sym_abstract] = ACTIONS(3532), - [anon_sym_interface] = ACTIONS(3532), - [anon_sym_enum] = ACTIONS(3532), - [sym_html_comment] = ACTIONS(5), - }, - [1271] = { - [sym_comment] = STATE(1271), - [sym_identifier] = ACTIONS(3514), - [anon_sym_export] = ACTIONS(3514), - [anon_sym_default] = ACTIONS(3514), - [anon_sym_type] = ACTIONS(3514), - [anon_sym_namespace] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3514), - [anon_sym_RBRACE] = ACTIONS(3514), - [anon_sym_typeof] = ACTIONS(3514), - [anon_sym_import] = ACTIONS(3514), - [anon_sym_from] = ACTIONS(3514), - [anon_sym_with] = ACTIONS(3514), - [anon_sym_var] = ACTIONS(3514), - [anon_sym_let] = ACTIONS(3514), - [anon_sym_const] = ACTIONS(3514), - [anon_sym_BANG] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(3514), - [anon_sym_switch] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3514), - [anon_sym_await] = ACTIONS(3514), - [anon_sym_of] = ACTIONS(3514), - [anon_sym_while] = ACTIONS(3514), - [anon_sym_do] = ACTIONS(3514), - [anon_sym_try] = ACTIONS(3514), - [anon_sym_break] = ACTIONS(3514), - [anon_sym_continue] = ACTIONS(3514), - [anon_sym_debugger] = ACTIONS(3514), - [anon_sym_return] = ACTIONS(3514), - [anon_sym_throw] = ACTIONS(3514), - [anon_sym_SEMI] = ACTIONS(3514), - [anon_sym_case] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3514), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_LTtemplate_GT] = ACTIONS(3514), - [anon_sym_DQUOTE] = ACTIONS(3514), - [anon_sym_SQUOTE] = ACTIONS(3514), - [anon_sym_class] = ACTIONS(3514), - [anon_sym_async] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3514), - [anon_sym_new] = ACTIONS(3514), - [anon_sym_using] = ACTIONS(3514), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_SLASH] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(3514), - [anon_sym_void] = ACTIONS(3514), - [anon_sym_delete] = ACTIONS(3514), - [anon_sym_PLUS_PLUS] = ACTIONS(3514), - [anon_sym_DASH_DASH] = ACTIONS(3514), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3514), - [sym_number] = ACTIONS(3514), - [sym_private_property_identifier] = ACTIONS(3514), - [sym_this] = ACTIONS(3514), - [sym_super] = ACTIONS(3514), - [sym_true] = ACTIONS(3514), - [sym_false] = ACTIONS(3514), - [sym_null] = ACTIONS(3514), - [sym_undefined] = ACTIONS(3514), - [anon_sym_AT] = ACTIONS(3514), - [anon_sym_static] = ACTIONS(3514), - [anon_sym_readonly] = ACTIONS(3514), - [anon_sym_get] = ACTIONS(3514), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_declare] = ACTIONS(3514), - [anon_sym_public] = ACTIONS(3514), - [anon_sym_private] = ACTIONS(3514), - [anon_sym_protected] = ACTIONS(3514), - [anon_sym_override] = ACTIONS(3514), - [anon_sym_module] = ACTIONS(3514), - [anon_sym_any] = ACTIONS(3514), - [anon_sym_number] = ACTIONS(3514), - [anon_sym_boolean] = ACTIONS(3514), - [anon_sym_string] = ACTIONS(3514), - [anon_sym_symbol] = ACTIONS(3514), - [anon_sym_object] = ACTIONS(3514), - [anon_sym_property] = ACTIONS(3514), - [anon_sym_signal] = ACTIONS(3514), - [anon_sym_on] = ACTIONS(3514), - [anon_sym_required] = ACTIONS(3514), - [anon_sym_component] = ACTIONS(3514), - [anon_sym_abstract] = ACTIONS(3514), - [anon_sym_interface] = ACTIONS(3514), - [anon_sym_enum] = ACTIONS(3514), + [1227] = { + [sym_comment] = STATE(1227), + [sym_identifier] = ACTIONS(3476), + [anon_sym_export] = ACTIONS(3476), + [anon_sym_default] = ACTIONS(3476), + [anon_sym_type] = ACTIONS(3476), + [anon_sym_namespace] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3476), + [anon_sym_import] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3476), + [anon_sym_with] = ACTIONS(3476), + [anon_sym_var] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3476), + [anon_sym_of] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_debugger] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_throw] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_case] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LTtemplate_GT] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_function] = ACTIONS(3476), + [anon_sym_new] = ACTIONS(3476), + [anon_sym_using] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3476), + [anon_sym_delete] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_number] = ACTIONS(3476), + [sym_private_property_identifier] = ACTIONS(3476), + [sym_this] = ACTIONS(3476), + [sym_super] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_undefined] = ACTIONS(3476), + [anon_sym_AT] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_readonly] = ACTIONS(3476), + [anon_sym_get] = ACTIONS(3476), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_declare] = ACTIONS(3476), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_override] = ACTIONS(3476), + [anon_sym_module] = ACTIONS(3476), + [anon_sym_any] = ACTIONS(3476), + [anon_sym_number] = ACTIONS(3476), + [anon_sym_boolean] = ACTIONS(3476), + [anon_sym_string] = ACTIONS(3476), + [anon_sym_symbol] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(3476), + [anon_sym_property] = ACTIONS(3476), + [anon_sym_signal] = ACTIONS(3476), + [anon_sym_on] = ACTIONS(3476), + [anon_sym_required] = ACTIONS(3476), + [anon_sym_component] = ACTIONS(3476), + [anon_sym_abstract] = ACTIONS(3476), + [anon_sym_interface] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), [sym_html_comment] = ACTIONS(5), }, - [1272] = { - [sym_comment] = STATE(1272), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [1228] = { + [sym_comment] = STATE(1228), + [sym_identifier] = ACTIONS(3566), + [anon_sym_export] = ACTIONS(3566), + [anon_sym_default] = ACTIONS(3566), + [anon_sym_type] = ACTIONS(3566), + [anon_sym_namespace] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_typeof] = ACTIONS(3566), + [anon_sym_import] = ACTIONS(3566), + [anon_sym_from] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3566), + [anon_sym_var] = ACTIONS(3566), + [anon_sym_let] = ACTIONS(3566), + [anon_sym_const] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_if] = ACTIONS(3566), + [anon_sym_switch] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_await] = ACTIONS(3566), + [anon_sym_of] = ACTIONS(3566), + [anon_sym_while] = ACTIONS(3566), + [anon_sym_do] = ACTIONS(3566), + [anon_sym_try] = ACTIONS(3566), + [anon_sym_break] = ACTIONS(3566), + [anon_sym_continue] = ACTIONS(3566), + [anon_sym_debugger] = ACTIONS(3566), + [anon_sym_return] = ACTIONS(3566), + [anon_sym_throw] = ACTIONS(3566), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym_case] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LTtemplate_GT] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_class] = ACTIONS(3566), + [anon_sym_async] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3566), + [anon_sym_using] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_void] = ACTIONS(3566), + [anon_sym_delete] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3566), + [sym_number] = ACTIONS(3566), + [sym_private_property_identifier] = ACTIONS(3566), + [sym_this] = ACTIONS(3566), + [sym_super] = ACTIONS(3566), + [sym_true] = ACTIONS(3566), + [sym_false] = ACTIONS(3566), + [sym_null] = ACTIONS(3566), + [sym_undefined] = ACTIONS(3566), + [anon_sym_AT] = ACTIONS(3566), + [anon_sym_static] = ACTIONS(3566), + [anon_sym_readonly] = ACTIONS(3566), + [anon_sym_get] = ACTIONS(3566), + [anon_sym_set] = ACTIONS(3566), + [anon_sym_declare] = ACTIONS(3566), + [anon_sym_public] = ACTIONS(3566), + [anon_sym_private] = ACTIONS(3566), + [anon_sym_protected] = ACTIONS(3566), + [anon_sym_override] = ACTIONS(3566), + [anon_sym_module] = ACTIONS(3566), + [anon_sym_any] = ACTIONS(3566), + [anon_sym_number] = ACTIONS(3566), + [anon_sym_boolean] = ACTIONS(3566), + [anon_sym_string] = ACTIONS(3566), + [anon_sym_symbol] = ACTIONS(3566), + [anon_sym_object] = ACTIONS(3566), + [anon_sym_property] = ACTIONS(3566), + [anon_sym_signal] = ACTIONS(3566), + [anon_sym_on] = ACTIONS(3566), + [anon_sym_required] = ACTIONS(3566), + [anon_sym_component] = ACTIONS(3566), + [anon_sym_abstract] = ACTIONS(3566), + [anon_sym_interface] = ACTIONS(3566), + [anon_sym_enum] = ACTIONS(3566), [sym_html_comment] = ACTIONS(5), }, - [1273] = { - [sym_else_clause] = STATE(1688), - [sym_comment] = STATE(1273), - [sym_identifier] = ACTIONS(3444), - [anon_sym_export] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_typeof] = ACTIONS(3444), - [anon_sym_import] = ACTIONS(3444), - [anon_sym_from] = ACTIONS(3444), - [anon_sym_with] = ACTIONS(3444), - [anon_sym_var] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), + [1229] = { + [sym_else_clause] = STATE(1445), + [sym_comment] = STATE(1229), + [sym_identifier] = ACTIONS(3428), + [anon_sym_export] = ACTIONS(3428), + [anon_sym_type] = ACTIONS(3428), + [anon_sym_namespace] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_typeof] = ACTIONS(3428), + [anon_sym_import] = ACTIONS(3428), + [anon_sym_from] = ACTIONS(3428), + [anon_sym_with] = ACTIONS(3428), + [anon_sym_var] = ACTIONS(3428), + [anon_sym_let] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3428), [anon_sym_else] = ACTIONS(3704), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_await] = ACTIONS(3444), - [anon_sym_of] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_debugger] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_yield] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_LTtemplate_GT] = ACTIONS(3444), - [anon_sym_DQUOTE] = ACTIONS(3444), - [anon_sym_SQUOTE] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_async] = ACTIONS(3444), - [anon_sym_function] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_void] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_await] = ACTIONS(3428), + [anon_sym_of] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_do] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_debugger] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_throw] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_yield] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_LTtemplate_GT] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(3428), + [anon_sym_SQUOTE] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_async] = ACTIONS(3428), + [anon_sym_function] = ACTIONS(3428), + [anon_sym_new] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_void] = ACTIONS(3428), + [anon_sym_delete] = ACTIONS(3428), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3444), - [sym_number] = ACTIONS(3444), - [sym_private_property_identifier] = ACTIONS(3444), - [sym_this] = ACTIONS(3444), - [sym_super] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_null] = ACTIONS(3444), - [sym_undefined] = ACTIONS(3444), - [anon_sym_AT] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_readonly] = ACTIONS(3444), - [anon_sym_get] = ACTIONS(3444), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_declare] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_protected] = ACTIONS(3444), - [anon_sym_override] = ACTIONS(3444), - [anon_sym_module] = ACTIONS(3444), - [anon_sym_any] = ACTIONS(3444), - [anon_sym_number] = ACTIONS(3444), - [anon_sym_boolean] = ACTIONS(3444), - [anon_sym_string] = ACTIONS(3444), - [anon_sym_symbol] = ACTIONS(3444), - [anon_sym_object] = ACTIONS(3444), - [anon_sym_property] = ACTIONS(3444), - [anon_sym_signal] = ACTIONS(3444), - [anon_sym_on] = ACTIONS(3444), - [anon_sym_required] = ACTIONS(3444), - [anon_sym_component] = ACTIONS(3444), - [anon_sym_abstract] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), + [anon_sym_BQUOTE] = ACTIONS(3428), + [sym_number] = ACTIONS(3428), + [sym_private_property_identifier] = ACTIONS(3428), + [sym_this] = ACTIONS(3428), + [sym_super] = ACTIONS(3428), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [sym_null] = ACTIONS(3428), + [sym_undefined] = ACTIONS(3428), + [anon_sym_AT] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_readonly] = ACTIONS(3428), + [anon_sym_get] = ACTIONS(3428), + [anon_sym_set] = ACTIONS(3428), + [anon_sym_declare] = ACTIONS(3428), + [anon_sym_public] = ACTIONS(3428), + [anon_sym_private] = ACTIONS(3428), + [anon_sym_protected] = ACTIONS(3428), + [anon_sym_override] = ACTIONS(3428), + [anon_sym_module] = ACTIONS(3428), + [anon_sym_any] = ACTIONS(3428), + [anon_sym_number] = ACTIONS(3428), + [anon_sym_boolean] = ACTIONS(3428), + [anon_sym_string] = ACTIONS(3428), + [anon_sym_symbol] = ACTIONS(3428), + [anon_sym_object] = ACTIONS(3428), + [anon_sym_property] = ACTIONS(3428), + [anon_sym_signal] = ACTIONS(3428), + [anon_sym_on] = ACTIONS(3428), + [anon_sym_required] = ACTIONS(3428), + [anon_sym_component] = ACTIONS(3428), + [anon_sym_abstract] = ACTIONS(3428), + [anon_sym_interface] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), [sym_html_comment] = ACTIONS(5), }, - [1274] = { - [sym_comment] = STATE(1274), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1230] = { + [sym_comment] = STATE(1230), + [sym_identifier] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_default] = ACTIONS(3572), + [anon_sym_type] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_typeof] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_from] = ACTIONS(3572), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_var] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_await] = ACTIONS(3572), + [anon_sym_of] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_debugger] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_case] = ACTIONS(3572), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LTtemplate_GT] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_async] = ACTIONS(3572), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_SLASH] = ACTIONS(3572), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_void] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3572), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(3572), + [sym_number] = ACTIONS(3572), + [sym_private_property_identifier] = ACTIONS(3572), + [sym_this] = ACTIONS(3572), + [sym_super] = ACTIONS(3572), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [sym_null] = ACTIONS(3572), + [sym_undefined] = ACTIONS(3572), + [anon_sym_AT] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_readonly] = ACTIONS(3572), + [anon_sym_get] = ACTIONS(3572), + [anon_sym_set] = ACTIONS(3572), + [anon_sym_declare] = ACTIONS(3572), + [anon_sym_public] = ACTIONS(3572), + [anon_sym_private] = ACTIONS(3572), + [anon_sym_protected] = ACTIONS(3572), + [anon_sym_override] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_any] = ACTIONS(3572), + [anon_sym_number] = ACTIONS(3572), + [anon_sym_boolean] = ACTIONS(3572), + [anon_sym_string] = ACTIONS(3572), + [anon_sym_symbol] = ACTIONS(3572), + [anon_sym_object] = ACTIONS(3572), + [anon_sym_property] = ACTIONS(3572), + [anon_sym_signal] = ACTIONS(3572), + [anon_sym_on] = ACTIONS(3572), + [anon_sym_required] = ACTIONS(3572), + [anon_sym_component] = ACTIONS(3572), + [anon_sym_abstract] = ACTIONS(3572), + [anon_sym_interface] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), [sym_html_comment] = ACTIONS(5), }, - [1275] = { - [sym_finally_clause] = STATE(1706), - [sym_comment] = STATE(1275), - [sym_identifier] = ACTIONS(3424), - [anon_sym_export] = ACTIONS(3424), - [anon_sym_type] = ACTIONS(3424), - [anon_sym_namespace] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_RBRACE] = ACTIONS(3424), - [anon_sym_typeof] = ACTIONS(3424), - [anon_sym_import] = ACTIONS(3424), - [anon_sym_from] = ACTIONS(3424), - [anon_sym_with] = ACTIONS(3424), - [anon_sym_var] = ACTIONS(3424), - [anon_sym_let] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_switch] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3424), - [anon_sym_await] = ACTIONS(3424), - [anon_sym_of] = ACTIONS(3424), - [anon_sym_while] = ACTIONS(3424), - [anon_sym_do] = ACTIONS(3424), - [anon_sym_try] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_debugger] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_throw] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3424), - [anon_sym_finally] = ACTIONS(3470), - [anon_sym_yield] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_LTtemplate_GT] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(3424), - [anon_sym_SQUOTE] = ACTIONS(3424), - [anon_sym_class] = ACTIONS(3424), - [anon_sym_async] = ACTIONS(3424), - [anon_sym_function] = ACTIONS(3424), - [anon_sym_new] = ACTIONS(3424), - [anon_sym_using] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_SLASH] = ACTIONS(3424), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3424), - [anon_sym_void] = ACTIONS(3424), - [anon_sym_delete] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3424), - [anon_sym_DASH_DASH] = ACTIONS(3424), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3424), - [sym_number] = ACTIONS(3424), - [sym_private_property_identifier] = ACTIONS(3424), - [sym_this] = ACTIONS(3424), - [sym_super] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_null] = ACTIONS(3424), - [sym_undefined] = ACTIONS(3424), - [anon_sym_AT] = ACTIONS(3424), - [anon_sym_static] = ACTIONS(3424), - [anon_sym_readonly] = ACTIONS(3424), - [anon_sym_get] = ACTIONS(3424), - [anon_sym_set] = ACTIONS(3424), - [anon_sym_declare] = ACTIONS(3424), - [anon_sym_public] = ACTIONS(3424), - [anon_sym_private] = ACTIONS(3424), - [anon_sym_protected] = ACTIONS(3424), - [anon_sym_override] = ACTIONS(3424), - [anon_sym_module] = ACTIONS(3424), - [anon_sym_any] = ACTIONS(3424), - [anon_sym_number] = ACTIONS(3424), - [anon_sym_boolean] = ACTIONS(3424), - [anon_sym_string] = ACTIONS(3424), - [anon_sym_symbol] = ACTIONS(3424), - [anon_sym_object] = ACTIONS(3424), - [anon_sym_property] = ACTIONS(3424), - [anon_sym_signal] = ACTIONS(3424), - [anon_sym_on] = ACTIONS(3424), - [anon_sym_required] = ACTIONS(3424), - [anon_sym_component] = ACTIONS(3424), - [anon_sym_abstract] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3424), - [anon_sym_enum] = ACTIONS(3424), + [1231] = { + [sym_comment] = STATE(1231), + [sym_identifier] = ACTIONS(3574), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_default] = ACTIONS(3574), + [anon_sym_type] = ACTIONS(3574), + [anon_sym_namespace] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_typeof] = ACTIONS(3574), + [anon_sym_import] = ACTIONS(3574), + [anon_sym_from] = ACTIONS(3574), + [anon_sym_with] = ACTIONS(3574), + [anon_sym_var] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_switch] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_await] = ACTIONS(3574), + [anon_sym_of] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_debugger] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_throw] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym_case] = ACTIONS(3574), + [anon_sym_yield] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LTtemplate_GT] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_class] = ACTIONS(3574), + [anon_sym_async] = ACTIONS(3574), + [anon_sym_function] = ACTIONS(3574), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_using] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_SLASH] = ACTIONS(3574), + [anon_sym_LT] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_void] = ACTIONS(3574), + [anon_sym_delete] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3574), + [sym_number] = ACTIONS(3574), + [sym_private_property_identifier] = ACTIONS(3574), + [sym_this] = ACTIONS(3574), + [sym_super] = ACTIONS(3574), + [sym_true] = ACTIONS(3574), + [sym_false] = ACTIONS(3574), + [sym_null] = ACTIONS(3574), + [sym_undefined] = ACTIONS(3574), + [anon_sym_AT] = ACTIONS(3574), + [anon_sym_static] = ACTIONS(3574), + [anon_sym_readonly] = ACTIONS(3574), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3574), + [anon_sym_declare] = ACTIONS(3574), + [anon_sym_public] = ACTIONS(3574), + [anon_sym_private] = ACTIONS(3574), + [anon_sym_protected] = ACTIONS(3574), + [anon_sym_override] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_any] = ACTIONS(3574), + [anon_sym_number] = ACTIONS(3574), + [anon_sym_boolean] = ACTIONS(3574), + [anon_sym_string] = ACTIONS(3574), + [anon_sym_symbol] = ACTIONS(3574), + [anon_sym_object] = ACTIONS(3574), + [anon_sym_property] = ACTIONS(3574), + [anon_sym_signal] = ACTIONS(3574), + [anon_sym_on] = ACTIONS(3574), + [anon_sym_required] = ACTIONS(3574), + [anon_sym_component] = ACTIONS(3574), + [anon_sym_abstract] = ACTIONS(3574), + [anon_sym_interface] = ACTIONS(3574), + [anon_sym_enum] = ACTIONS(3574), [sym_html_comment] = ACTIONS(5), }, - [1276] = { - [sym_comment] = STATE(1276), - [sym_identifier] = ACTIONS(3540), - [anon_sym_export] = ACTIONS(3540), - [anon_sym_default] = ACTIONS(3540), - [anon_sym_type] = ACTIONS(3540), - [anon_sym_namespace] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_RBRACE] = ACTIONS(3540), - [anon_sym_typeof] = ACTIONS(3540), - [anon_sym_import] = ACTIONS(3540), - [anon_sym_from] = ACTIONS(3540), - [anon_sym_with] = ACTIONS(3540), - [anon_sym_var] = ACTIONS(3540), - [anon_sym_let] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_BANG] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_switch] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3540), - [anon_sym_await] = ACTIONS(3540), - [anon_sym_of] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_do] = ACTIONS(3540), - [anon_sym_try] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_debugger] = ACTIONS(3540), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_throw] = ACTIONS(3540), - [anon_sym_SEMI] = ACTIONS(3540), - [anon_sym_case] = ACTIONS(3540), - [anon_sym_yield] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LTtemplate_GT] = ACTIONS(3540), - [anon_sym_DQUOTE] = ACTIONS(3540), - [anon_sym_SQUOTE] = ACTIONS(3540), - [anon_sym_class] = ACTIONS(3540), - [anon_sym_async] = ACTIONS(3540), - [anon_sym_function] = ACTIONS(3540), - [anon_sym_new] = ACTIONS(3540), - [anon_sym_using] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_SLASH] = ACTIONS(3540), - [anon_sym_LT] = ACTIONS(3540), - [anon_sym_TILDE] = ACTIONS(3540), - [anon_sym_void] = ACTIONS(3540), - [anon_sym_delete] = ACTIONS(3540), - [anon_sym_PLUS_PLUS] = ACTIONS(3540), - [anon_sym_DASH_DASH] = ACTIONS(3540), + [1232] = { + [sym_comment] = STATE(1232), + [sym_identifier] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_default] = ACTIONS(3576), + [anon_sym_type] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(3576), + [anon_sym_typeof] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_from] = ACTIONS(3576), + [anon_sym_with] = ACTIONS(3576), + [anon_sym_var] = ACTIONS(3576), + [anon_sym_let] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_await] = ACTIONS(3576), + [anon_sym_of] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_debugger] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3576), + [anon_sym_case] = ACTIONS(3576), + [anon_sym_yield] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_LTtemplate_GT] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(3576), + [anon_sym_SQUOTE] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_async] = ACTIONS(3576), + [anon_sym_function] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_TILDE] = ACTIONS(3576), + [anon_sym_void] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_PLUS_PLUS] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3576), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3540), - [sym_number] = ACTIONS(3540), - [sym_private_property_identifier] = ACTIONS(3540), - [sym_this] = ACTIONS(3540), - [sym_super] = ACTIONS(3540), - [sym_true] = ACTIONS(3540), - [sym_false] = ACTIONS(3540), - [sym_null] = ACTIONS(3540), - [sym_undefined] = ACTIONS(3540), - [anon_sym_AT] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_readonly] = ACTIONS(3540), - [anon_sym_get] = ACTIONS(3540), - [anon_sym_set] = ACTIONS(3540), - [anon_sym_declare] = ACTIONS(3540), - [anon_sym_public] = ACTIONS(3540), - [anon_sym_private] = ACTIONS(3540), - [anon_sym_protected] = ACTIONS(3540), - [anon_sym_override] = ACTIONS(3540), - [anon_sym_module] = ACTIONS(3540), - [anon_sym_any] = ACTIONS(3540), - [anon_sym_number] = ACTIONS(3540), - [anon_sym_boolean] = ACTIONS(3540), - [anon_sym_string] = ACTIONS(3540), - [anon_sym_symbol] = ACTIONS(3540), - [anon_sym_object] = ACTIONS(3540), - [anon_sym_property] = ACTIONS(3540), - [anon_sym_signal] = ACTIONS(3540), - [anon_sym_on] = ACTIONS(3540), - [anon_sym_required] = ACTIONS(3540), - [anon_sym_component] = ACTIONS(3540), - [anon_sym_abstract] = ACTIONS(3540), - [anon_sym_interface] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(3540), + [anon_sym_BQUOTE] = ACTIONS(3576), + [sym_number] = ACTIONS(3576), + [sym_private_property_identifier] = ACTIONS(3576), + [sym_this] = ACTIONS(3576), + [sym_super] = ACTIONS(3576), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [sym_null] = ACTIONS(3576), + [sym_undefined] = ACTIONS(3576), + [anon_sym_AT] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_readonly] = ACTIONS(3576), + [anon_sym_get] = ACTIONS(3576), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_declare] = ACTIONS(3576), + [anon_sym_public] = ACTIONS(3576), + [anon_sym_private] = ACTIONS(3576), + [anon_sym_protected] = ACTIONS(3576), + [anon_sym_override] = ACTIONS(3576), + [anon_sym_module] = ACTIONS(3576), + [anon_sym_any] = ACTIONS(3576), + [anon_sym_number] = ACTIONS(3576), + [anon_sym_boolean] = ACTIONS(3576), + [anon_sym_string] = ACTIONS(3576), + [anon_sym_symbol] = ACTIONS(3576), + [anon_sym_object] = ACTIONS(3576), + [anon_sym_property] = ACTIONS(3576), + [anon_sym_signal] = ACTIONS(3576), + [anon_sym_on] = ACTIONS(3576), + [anon_sym_required] = ACTIONS(3576), + [anon_sym_component] = ACTIONS(3576), + [anon_sym_abstract] = ACTIONS(3576), + [anon_sym_interface] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), [sym_html_comment] = ACTIONS(5), }, - [1277] = { - [sym_comment] = STATE(1277), - [sym_identifier] = ACTIONS(3542), - [anon_sym_export] = ACTIONS(3542), - [anon_sym_default] = ACTIONS(3542), - [anon_sym_type] = ACTIONS(3542), - [anon_sym_namespace] = ACTIONS(3542), - [anon_sym_LBRACE] = ACTIONS(3542), - [anon_sym_RBRACE] = ACTIONS(3542), - [anon_sym_typeof] = ACTIONS(3542), - [anon_sym_import] = ACTIONS(3542), - [anon_sym_from] = ACTIONS(3542), - [anon_sym_with] = ACTIONS(3542), - [anon_sym_var] = ACTIONS(3542), - [anon_sym_let] = ACTIONS(3542), - [anon_sym_const] = ACTIONS(3542), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_if] = ACTIONS(3542), - [anon_sym_switch] = ACTIONS(3542), - [anon_sym_for] = ACTIONS(3542), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_await] = ACTIONS(3542), - [anon_sym_of] = ACTIONS(3542), - [anon_sym_while] = ACTIONS(3542), - [anon_sym_do] = ACTIONS(3542), - [anon_sym_try] = ACTIONS(3542), - [anon_sym_break] = ACTIONS(3542), - [anon_sym_continue] = ACTIONS(3542), - [anon_sym_debugger] = ACTIONS(3542), - [anon_sym_return] = ACTIONS(3542), - [anon_sym_throw] = ACTIONS(3542), - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym_case] = ACTIONS(3542), - [anon_sym_yield] = ACTIONS(3542), - [anon_sym_LBRACK] = ACTIONS(3542), - [anon_sym_LTtemplate_GT] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3542), - [anon_sym_SQUOTE] = ACTIONS(3542), - [anon_sym_class] = ACTIONS(3542), - [anon_sym_async] = ACTIONS(3542), - [anon_sym_function] = ACTIONS(3542), - [anon_sym_new] = ACTIONS(3542), - [anon_sym_using] = ACTIONS(3542), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_SLASH] = ACTIONS(3542), - [anon_sym_LT] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_void] = ACTIONS(3542), - [anon_sym_delete] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_DASH_DASH] = ACTIONS(3542), + [1233] = { + [sym_comment] = STATE(1233), + [sym_identifier] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_default] = ACTIONS(3576), + [anon_sym_type] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(3576), + [anon_sym_typeof] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_from] = ACTIONS(3576), + [anon_sym_with] = ACTIONS(3576), + [anon_sym_var] = ACTIONS(3576), + [anon_sym_let] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_await] = ACTIONS(3576), + [anon_sym_of] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_debugger] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3576), + [anon_sym_case] = ACTIONS(3576), + [anon_sym_yield] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_LTtemplate_GT] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(3576), + [anon_sym_SQUOTE] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_async] = ACTIONS(3576), + [anon_sym_function] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_TILDE] = ACTIONS(3576), + [anon_sym_void] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_PLUS_PLUS] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3576), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3542), - [sym_number] = ACTIONS(3542), - [sym_private_property_identifier] = ACTIONS(3542), - [sym_this] = ACTIONS(3542), - [sym_super] = ACTIONS(3542), - [sym_true] = ACTIONS(3542), - [sym_false] = ACTIONS(3542), - [sym_null] = ACTIONS(3542), - [sym_undefined] = ACTIONS(3542), - [anon_sym_AT] = ACTIONS(3542), - [anon_sym_static] = ACTIONS(3542), - [anon_sym_readonly] = ACTIONS(3542), - [anon_sym_get] = ACTIONS(3542), - [anon_sym_set] = ACTIONS(3542), - [anon_sym_declare] = ACTIONS(3542), - [anon_sym_public] = ACTIONS(3542), - [anon_sym_private] = ACTIONS(3542), - [anon_sym_protected] = ACTIONS(3542), - [anon_sym_override] = ACTIONS(3542), - [anon_sym_module] = ACTIONS(3542), - [anon_sym_any] = ACTIONS(3542), - [anon_sym_number] = ACTIONS(3542), - [anon_sym_boolean] = ACTIONS(3542), - [anon_sym_string] = ACTIONS(3542), - [anon_sym_symbol] = ACTIONS(3542), - [anon_sym_object] = ACTIONS(3542), - [anon_sym_property] = ACTIONS(3542), - [anon_sym_signal] = ACTIONS(3542), - [anon_sym_on] = ACTIONS(3542), - [anon_sym_required] = ACTIONS(3542), - [anon_sym_component] = ACTIONS(3542), - [anon_sym_abstract] = ACTIONS(3542), - [anon_sym_interface] = ACTIONS(3542), - [anon_sym_enum] = ACTIONS(3542), + [anon_sym_BQUOTE] = ACTIONS(3576), + [sym_number] = ACTIONS(3576), + [sym_private_property_identifier] = ACTIONS(3576), + [sym_this] = ACTIONS(3576), + [sym_super] = ACTIONS(3576), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [sym_null] = ACTIONS(3576), + [sym_undefined] = ACTIONS(3576), + [anon_sym_AT] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_readonly] = ACTIONS(3576), + [anon_sym_get] = ACTIONS(3576), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_declare] = ACTIONS(3576), + [anon_sym_public] = ACTIONS(3576), + [anon_sym_private] = ACTIONS(3576), + [anon_sym_protected] = ACTIONS(3576), + [anon_sym_override] = ACTIONS(3576), + [anon_sym_module] = ACTIONS(3576), + [anon_sym_any] = ACTIONS(3576), + [anon_sym_number] = ACTIONS(3576), + [anon_sym_boolean] = ACTIONS(3576), + [anon_sym_string] = ACTIONS(3576), + [anon_sym_symbol] = ACTIONS(3576), + [anon_sym_object] = ACTIONS(3576), + [anon_sym_property] = ACTIONS(3576), + [anon_sym_signal] = ACTIONS(3576), + [anon_sym_on] = ACTIONS(3576), + [anon_sym_required] = ACTIONS(3576), + [anon_sym_component] = ACTIONS(3576), + [anon_sym_abstract] = ACTIONS(3576), + [anon_sym_interface] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), [sym_html_comment] = ACTIONS(5), }, - [1278] = { - [sym_comment] = STATE(1278), - [sym_identifier] = ACTIONS(3528), - [anon_sym_export] = ACTIONS(3528), - [anon_sym_default] = ACTIONS(3528), - [anon_sym_type] = ACTIONS(3528), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_RBRACE] = ACTIONS(3528), - [anon_sym_typeof] = ACTIONS(3528), - [anon_sym_import] = ACTIONS(3528), - [anon_sym_from] = ACTIONS(3528), - [anon_sym_with] = ACTIONS(3528), - [anon_sym_var] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_await] = ACTIONS(3528), - [anon_sym_of] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_debugger] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3528), - [anon_sym_case] = ACTIONS(3528), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LTtemplate_GT] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym_class] = ACTIONS(3528), - [anon_sym_async] = ACTIONS(3528), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_using] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3528), - [anon_sym_void] = ACTIONS(3528), - [anon_sym_delete] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(3528), - [anon_sym_DASH_DASH] = ACTIONS(3528), + [1234] = { + [sym_comment] = STATE(1234), + [sym_identifier] = ACTIONS(3578), + [anon_sym_export] = ACTIONS(3578), + [anon_sym_default] = ACTIONS(3578), + [anon_sym_type] = ACTIONS(3578), + [anon_sym_namespace] = ACTIONS(3578), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_RBRACE] = ACTIONS(3578), + [anon_sym_typeof] = ACTIONS(3578), + [anon_sym_import] = ACTIONS(3578), + [anon_sym_from] = ACTIONS(3578), + [anon_sym_with] = ACTIONS(3578), + [anon_sym_var] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_const] = ACTIONS(3578), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_switch] = ACTIONS(3578), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_await] = ACTIONS(3578), + [anon_sym_of] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_break] = ACTIONS(3578), + [anon_sym_continue] = ACTIONS(3578), + [anon_sym_debugger] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_throw] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_case] = ACTIONS(3578), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LTtemplate_GT] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_SQUOTE] = ACTIONS(3578), + [anon_sym_class] = ACTIONS(3578), + [anon_sym_async] = ACTIONS(3578), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_using] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_SLASH] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_void] = ACTIONS(3578), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DASH_DASH] = ACTIONS(3578), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3528), - [sym_number] = ACTIONS(3528), - [sym_private_property_identifier] = ACTIONS(3528), - [sym_this] = ACTIONS(3528), - [sym_super] = ACTIONS(3528), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [sym_null] = ACTIONS(3528), - [sym_undefined] = ACTIONS(3528), - [anon_sym_AT] = ACTIONS(3528), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_readonly] = ACTIONS(3528), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3528), - [anon_sym_declare] = ACTIONS(3528), - [anon_sym_public] = ACTIONS(3528), - [anon_sym_private] = ACTIONS(3528), - [anon_sym_protected] = ACTIONS(3528), - [anon_sym_override] = ACTIONS(3528), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_any] = ACTIONS(3528), - [anon_sym_number] = ACTIONS(3528), - [anon_sym_boolean] = ACTIONS(3528), - [anon_sym_string] = ACTIONS(3528), - [anon_sym_symbol] = ACTIONS(3528), - [anon_sym_object] = ACTIONS(3528), - [anon_sym_property] = ACTIONS(3528), - [anon_sym_signal] = ACTIONS(3528), - [anon_sym_on] = ACTIONS(3528), - [anon_sym_required] = ACTIONS(3528), - [anon_sym_component] = ACTIONS(3528), - [anon_sym_abstract] = ACTIONS(3528), - [anon_sym_interface] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), + [anon_sym_BQUOTE] = ACTIONS(3578), + [sym_number] = ACTIONS(3578), + [sym_private_property_identifier] = ACTIONS(3578), + [sym_this] = ACTIONS(3578), + [sym_super] = ACTIONS(3578), + [sym_true] = ACTIONS(3578), + [sym_false] = ACTIONS(3578), + [sym_null] = ACTIONS(3578), + [sym_undefined] = ACTIONS(3578), + [anon_sym_AT] = ACTIONS(3578), + [anon_sym_static] = ACTIONS(3578), + [anon_sym_readonly] = ACTIONS(3578), + [anon_sym_get] = ACTIONS(3578), + [anon_sym_set] = ACTIONS(3578), + [anon_sym_declare] = ACTIONS(3578), + [anon_sym_public] = ACTIONS(3578), + [anon_sym_private] = ACTIONS(3578), + [anon_sym_protected] = ACTIONS(3578), + [anon_sym_override] = ACTIONS(3578), + [anon_sym_module] = ACTIONS(3578), + [anon_sym_any] = ACTIONS(3578), + [anon_sym_number] = ACTIONS(3578), + [anon_sym_boolean] = ACTIONS(3578), + [anon_sym_string] = ACTIONS(3578), + [anon_sym_symbol] = ACTIONS(3578), + [anon_sym_object] = ACTIONS(3578), + [anon_sym_property] = ACTIONS(3578), + [anon_sym_signal] = ACTIONS(3578), + [anon_sym_on] = ACTIONS(3578), + [anon_sym_required] = ACTIONS(3578), + [anon_sym_component] = ACTIONS(3578), + [anon_sym_abstract] = ACTIONS(3578), + [anon_sym_interface] = ACTIONS(3578), + [anon_sym_enum] = ACTIONS(3578), [sym_html_comment] = ACTIONS(5), }, - [1279] = { - [sym_comment] = STATE(1279), - [sym_identifier] = ACTIONS(3530), - [anon_sym_export] = ACTIONS(3530), - [anon_sym_default] = ACTIONS(3530), - [anon_sym_type] = ACTIONS(3530), - [anon_sym_namespace] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_RBRACE] = ACTIONS(3530), - [anon_sym_typeof] = ACTIONS(3530), - [anon_sym_import] = ACTIONS(3530), - [anon_sym_from] = ACTIONS(3530), - [anon_sym_with] = ACTIONS(3530), - [anon_sym_var] = ACTIONS(3530), - [anon_sym_let] = ACTIONS(3530), - [anon_sym_const] = ACTIONS(3530), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(3530), - [anon_sym_switch] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3530), - [anon_sym_await] = ACTIONS(3530), - [anon_sym_of] = ACTIONS(3530), - [anon_sym_while] = ACTIONS(3530), - [anon_sym_do] = ACTIONS(3530), - [anon_sym_try] = ACTIONS(3530), - [anon_sym_break] = ACTIONS(3530), - [anon_sym_continue] = ACTIONS(3530), - [anon_sym_debugger] = ACTIONS(3530), - [anon_sym_return] = ACTIONS(3530), - [anon_sym_throw] = ACTIONS(3530), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym_case] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3530), - [anon_sym_LTtemplate_GT] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [anon_sym_SQUOTE] = ACTIONS(3530), - [anon_sym_class] = ACTIONS(3530), - [anon_sym_async] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3530), - [anon_sym_using] = ACTIONS(3530), - [anon_sym_PLUS] = ACTIONS(3530), - [anon_sym_DASH] = ACTIONS(3530), - [anon_sym_SLASH] = ACTIONS(3530), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_void] = ACTIONS(3530), - [anon_sym_delete] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3530), - [sym_number] = ACTIONS(3530), - [sym_private_property_identifier] = ACTIONS(3530), - [sym_this] = ACTIONS(3530), - [sym_super] = ACTIONS(3530), - [sym_true] = ACTIONS(3530), - [sym_false] = ACTIONS(3530), - [sym_null] = ACTIONS(3530), - [sym_undefined] = ACTIONS(3530), - [anon_sym_AT] = ACTIONS(3530), - [anon_sym_static] = ACTIONS(3530), - [anon_sym_readonly] = ACTIONS(3530), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_declare] = ACTIONS(3530), - [anon_sym_public] = ACTIONS(3530), - [anon_sym_private] = ACTIONS(3530), - [anon_sym_protected] = ACTIONS(3530), - [anon_sym_override] = ACTIONS(3530), - [anon_sym_module] = ACTIONS(3530), - [anon_sym_any] = ACTIONS(3530), - [anon_sym_number] = ACTIONS(3530), - [anon_sym_boolean] = ACTIONS(3530), - [anon_sym_string] = ACTIONS(3530), - [anon_sym_symbol] = ACTIONS(3530), - [anon_sym_object] = ACTIONS(3530), - [anon_sym_property] = ACTIONS(3530), - [anon_sym_signal] = ACTIONS(3530), - [anon_sym_on] = ACTIONS(3530), - [anon_sym_required] = ACTIONS(3530), - [anon_sym_component] = ACTIONS(3530), - [anon_sym_abstract] = ACTIONS(3530), - [anon_sym_interface] = ACTIONS(3530), - [anon_sym_enum] = ACTIONS(3530), + [1235] = { + [sym_comment] = STATE(1235), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_default] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_case] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), [sym_html_comment] = ACTIONS(5), }, - [1280] = { - [sym_comment] = STATE(1280), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1236] = { + [sym_comment] = STATE(1236), + [sym_identifier] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_default] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_typeof] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_from] = ACTIONS(3582), + [anon_sym_with] = ACTIONS(3582), + [anon_sym_var] = ACTIONS(3582), + [anon_sym_let] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3582), + [anon_sym_await] = ACTIONS(3582), + [anon_sym_of] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_debugger] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_case] = ACTIONS(3582), + [anon_sym_yield] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LTtemplate_GT] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_async] = ACTIONS(3582), + [anon_sym_function] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_SLASH] = ACTIONS(3582), + [anon_sym_LT] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_void] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(3582), + [sym_number] = ACTIONS(3582), + [sym_private_property_identifier] = ACTIONS(3582), + [sym_this] = ACTIONS(3582), + [sym_super] = ACTIONS(3582), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [sym_null] = ACTIONS(3582), + [sym_undefined] = ACTIONS(3582), + [anon_sym_AT] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_readonly] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3582), + [anon_sym_set] = ACTIONS(3582), + [anon_sym_declare] = ACTIONS(3582), + [anon_sym_public] = ACTIONS(3582), + [anon_sym_private] = ACTIONS(3582), + [anon_sym_protected] = ACTIONS(3582), + [anon_sym_override] = ACTIONS(3582), + [anon_sym_module] = ACTIONS(3582), + [anon_sym_any] = ACTIONS(3582), + [anon_sym_number] = ACTIONS(3582), + [anon_sym_boolean] = ACTIONS(3582), + [anon_sym_string] = ACTIONS(3582), + [anon_sym_symbol] = ACTIONS(3582), + [anon_sym_object] = ACTIONS(3582), + [anon_sym_property] = ACTIONS(3582), + [anon_sym_signal] = ACTIONS(3582), + [anon_sym_on] = ACTIONS(3582), + [anon_sym_required] = ACTIONS(3582), + [anon_sym_component] = ACTIONS(3582), + [anon_sym_abstract] = ACTIONS(3582), + [anon_sym_interface] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), [sym_html_comment] = ACTIONS(5), }, - [1281] = { - [sym_comment] = STATE(1281), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1237] = { + [sym_comment] = STATE(1237), + [sym_identifier] = ACTIONS(3584), + [anon_sym_export] = ACTIONS(3584), + [anon_sym_default] = ACTIONS(3584), + [anon_sym_type] = ACTIONS(3584), + [anon_sym_namespace] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_typeof] = ACTIONS(3584), + [anon_sym_import] = ACTIONS(3584), + [anon_sym_from] = ACTIONS(3584), + [anon_sym_with] = ACTIONS(3584), + [anon_sym_var] = ACTIONS(3584), + [anon_sym_let] = ACTIONS(3584), + [anon_sym_const] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_if] = ACTIONS(3584), + [anon_sym_switch] = ACTIONS(3584), + [anon_sym_for] = ACTIONS(3584), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_await] = ACTIONS(3584), + [anon_sym_of] = ACTIONS(3584), + [anon_sym_while] = ACTIONS(3584), + [anon_sym_do] = ACTIONS(3584), + [anon_sym_try] = ACTIONS(3584), + [anon_sym_break] = ACTIONS(3584), + [anon_sym_continue] = ACTIONS(3584), + [anon_sym_debugger] = ACTIONS(3584), + [anon_sym_return] = ACTIONS(3584), + [anon_sym_throw] = ACTIONS(3584), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym_case] = ACTIONS(3584), + [anon_sym_yield] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3584), + [anon_sym_LTtemplate_GT] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_class] = ACTIONS(3584), + [anon_sym_async] = ACTIONS(3584), + [anon_sym_function] = ACTIONS(3584), + [anon_sym_new] = ACTIONS(3584), + [anon_sym_using] = ACTIONS(3584), + [anon_sym_PLUS] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_SLASH] = ACTIONS(3584), + [anon_sym_LT] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_void] = ACTIONS(3584), + [anon_sym_delete] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_DASH_DASH] = ACTIONS(3584), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(3584), + [sym_number] = ACTIONS(3584), + [sym_private_property_identifier] = ACTIONS(3584), + [sym_this] = ACTIONS(3584), + [sym_super] = ACTIONS(3584), + [sym_true] = ACTIONS(3584), + [sym_false] = ACTIONS(3584), + [sym_null] = ACTIONS(3584), + [sym_undefined] = ACTIONS(3584), + [anon_sym_AT] = ACTIONS(3584), + [anon_sym_static] = ACTIONS(3584), + [anon_sym_readonly] = ACTIONS(3584), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3584), + [anon_sym_declare] = ACTIONS(3584), + [anon_sym_public] = ACTIONS(3584), + [anon_sym_private] = ACTIONS(3584), + [anon_sym_protected] = ACTIONS(3584), + [anon_sym_override] = ACTIONS(3584), + [anon_sym_module] = ACTIONS(3584), + [anon_sym_any] = ACTIONS(3584), + [anon_sym_number] = ACTIONS(3584), + [anon_sym_boolean] = ACTIONS(3584), + [anon_sym_string] = ACTIONS(3584), + [anon_sym_symbol] = ACTIONS(3584), + [anon_sym_object] = ACTIONS(3584), + [anon_sym_property] = ACTIONS(3584), + [anon_sym_signal] = ACTIONS(3584), + [anon_sym_on] = ACTIONS(3584), + [anon_sym_required] = ACTIONS(3584), + [anon_sym_component] = ACTIONS(3584), + [anon_sym_abstract] = ACTIONS(3584), + [anon_sym_interface] = ACTIONS(3584), + [anon_sym_enum] = ACTIONS(3584), [sym_html_comment] = ACTIONS(5), }, - [1282] = { - [sym_comment] = STATE(1282), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1238] = { + [sym_comment] = STATE(1238), + [sym_identifier] = ACTIONS(3586), + [anon_sym_export] = ACTIONS(3586), + [anon_sym_default] = ACTIONS(3586), + [anon_sym_type] = ACTIONS(3586), + [anon_sym_namespace] = ACTIONS(3586), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_typeof] = ACTIONS(3586), + [anon_sym_import] = ACTIONS(3586), + [anon_sym_from] = ACTIONS(3586), + [anon_sym_with] = ACTIONS(3586), + [anon_sym_var] = ACTIONS(3586), + [anon_sym_let] = ACTIONS(3586), + [anon_sym_const] = ACTIONS(3586), + [anon_sym_BANG] = ACTIONS(3586), + [anon_sym_if] = ACTIONS(3586), + [anon_sym_switch] = ACTIONS(3586), + [anon_sym_for] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_await] = ACTIONS(3586), + [anon_sym_of] = ACTIONS(3586), + [anon_sym_while] = ACTIONS(3586), + [anon_sym_do] = ACTIONS(3586), + [anon_sym_try] = ACTIONS(3586), + [anon_sym_break] = ACTIONS(3586), + [anon_sym_continue] = ACTIONS(3586), + [anon_sym_debugger] = ACTIONS(3586), + [anon_sym_return] = ACTIONS(3586), + [anon_sym_throw] = ACTIONS(3586), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_case] = ACTIONS(3586), + [anon_sym_yield] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LTtemplate_GT] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3586), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_class] = ACTIONS(3586), + [anon_sym_async] = ACTIONS(3586), + [anon_sym_function] = ACTIONS(3586), + [anon_sym_new] = ACTIONS(3586), + [anon_sym_using] = ACTIONS(3586), + [anon_sym_PLUS] = ACTIONS(3586), + [anon_sym_DASH] = ACTIONS(3586), + [anon_sym_SLASH] = ACTIONS(3586), + [anon_sym_LT] = ACTIONS(3586), + [anon_sym_TILDE] = ACTIONS(3586), + [anon_sym_void] = ACTIONS(3586), + [anon_sym_delete] = ACTIONS(3586), + [anon_sym_PLUS_PLUS] = ACTIONS(3586), + [anon_sym_DASH_DASH] = ACTIONS(3586), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(3586), + [sym_number] = ACTIONS(3586), + [sym_private_property_identifier] = ACTIONS(3586), + [sym_this] = ACTIONS(3586), + [sym_super] = ACTIONS(3586), + [sym_true] = ACTIONS(3586), + [sym_false] = ACTIONS(3586), + [sym_null] = ACTIONS(3586), + [sym_undefined] = ACTIONS(3586), + [anon_sym_AT] = ACTIONS(3586), + [anon_sym_static] = ACTIONS(3586), + [anon_sym_readonly] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(3586), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_declare] = ACTIONS(3586), + [anon_sym_public] = ACTIONS(3586), + [anon_sym_private] = ACTIONS(3586), + [anon_sym_protected] = ACTIONS(3586), + [anon_sym_override] = ACTIONS(3586), + [anon_sym_module] = ACTIONS(3586), + [anon_sym_any] = ACTIONS(3586), + [anon_sym_number] = ACTIONS(3586), + [anon_sym_boolean] = ACTIONS(3586), + [anon_sym_string] = ACTIONS(3586), + [anon_sym_symbol] = ACTIONS(3586), + [anon_sym_object] = ACTIONS(3586), + [anon_sym_property] = ACTIONS(3586), + [anon_sym_signal] = ACTIONS(3586), + [anon_sym_on] = ACTIONS(3586), + [anon_sym_required] = ACTIONS(3586), + [anon_sym_component] = ACTIONS(3586), + [anon_sym_abstract] = ACTIONS(3586), + [anon_sym_interface] = ACTIONS(3586), + [anon_sym_enum] = ACTIONS(3586), [sym_html_comment] = ACTIONS(5), }, - [1283] = { - [sym_comment] = STATE(1283), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1239] = { + [sym_comment] = STATE(1239), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1284] = { - [sym_comment] = STATE(1284), - [sym_identifier] = ACTIONS(3534), - [anon_sym_export] = ACTIONS(3534), - [anon_sym_default] = ACTIONS(3534), - [anon_sym_type] = ACTIONS(3534), - [anon_sym_namespace] = ACTIONS(3534), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_RBRACE] = ACTIONS(3534), - [anon_sym_typeof] = ACTIONS(3534), - [anon_sym_import] = ACTIONS(3534), - [anon_sym_from] = ACTIONS(3534), - [anon_sym_with] = ACTIONS(3534), - [anon_sym_var] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_const] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_switch] = ACTIONS(3534), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_await] = ACTIONS(3534), - [anon_sym_of] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_break] = ACTIONS(3534), - [anon_sym_continue] = ACTIONS(3534), - [anon_sym_debugger] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_throw] = ACTIONS(3534), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym_case] = ACTIONS(3534), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LTtemplate_GT] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_SQUOTE] = ACTIONS(3534), - [anon_sym_class] = ACTIONS(3534), - [anon_sym_async] = ACTIONS(3534), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_using] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_SLASH] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_void] = ACTIONS(3534), - [anon_sym_delete] = ACTIONS(3534), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3534), + [1240] = { + [sym_comment] = STATE(1240), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3534), - [sym_number] = ACTIONS(3534), - [sym_private_property_identifier] = ACTIONS(3534), - [sym_this] = ACTIONS(3534), - [sym_super] = ACTIONS(3534), - [sym_true] = ACTIONS(3534), - [sym_false] = ACTIONS(3534), - [sym_null] = ACTIONS(3534), - [sym_undefined] = ACTIONS(3534), - [anon_sym_AT] = ACTIONS(3534), - [anon_sym_static] = ACTIONS(3534), - [anon_sym_readonly] = ACTIONS(3534), - [anon_sym_get] = ACTIONS(3534), - [anon_sym_set] = ACTIONS(3534), - [anon_sym_declare] = ACTIONS(3534), - [anon_sym_public] = ACTIONS(3534), - [anon_sym_private] = ACTIONS(3534), - [anon_sym_protected] = ACTIONS(3534), - [anon_sym_override] = ACTIONS(3534), - [anon_sym_module] = ACTIONS(3534), - [anon_sym_any] = ACTIONS(3534), - [anon_sym_number] = ACTIONS(3534), - [anon_sym_boolean] = ACTIONS(3534), - [anon_sym_string] = ACTIONS(3534), - [anon_sym_symbol] = ACTIONS(3534), - [anon_sym_object] = ACTIONS(3534), - [anon_sym_property] = ACTIONS(3534), - [anon_sym_signal] = ACTIONS(3534), - [anon_sym_on] = ACTIONS(3534), - [anon_sym_required] = ACTIONS(3534), - [anon_sym_component] = ACTIONS(3534), - [anon_sym_abstract] = ACTIONS(3534), - [anon_sym_interface] = ACTIONS(3534), - [anon_sym_enum] = ACTIONS(3534), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1285] = { - [sym_comment] = STATE(1285), - [sym_identifier] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3520), - [anon_sym_default] = ACTIONS(3520), - [anon_sym_type] = ACTIONS(3520), - [anon_sym_namespace] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_RBRACE] = ACTIONS(3520), - [anon_sym_typeof] = ACTIONS(3520), - [anon_sym_import] = ACTIONS(3520), - [anon_sym_from] = ACTIONS(3520), - [anon_sym_with] = ACTIONS(3520), - [anon_sym_var] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_BANG] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_await] = ACTIONS(3520), - [anon_sym_of] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_debugger] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3520), - [anon_sym_case] = ACTIONS(3520), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LTtemplate_GT] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_SQUOTE] = ACTIONS(3520), - [anon_sym_class] = ACTIONS(3520), - [anon_sym_async] = ACTIONS(3520), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_using] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3520), - [anon_sym_void] = ACTIONS(3520), - [anon_sym_delete] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3520), + [1241] = { + [sym_comment] = STATE(1241), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_default] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_case] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3520), - [sym_number] = ACTIONS(3520), - [sym_private_property_identifier] = ACTIONS(3520), - [sym_this] = ACTIONS(3520), - [sym_super] = ACTIONS(3520), - [sym_true] = ACTIONS(3520), - [sym_false] = ACTIONS(3520), - [sym_null] = ACTIONS(3520), - [sym_undefined] = ACTIONS(3520), - [anon_sym_AT] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_readonly] = ACTIONS(3520), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_declare] = ACTIONS(3520), - [anon_sym_public] = ACTIONS(3520), - [anon_sym_private] = ACTIONS(3520), - [anon_sym_protected] = ACTIONS(3520), - [anon_sym_override] = ACTIONS(3520), - [anon_sym_module] = ACTIONS(3520), - [anon_sym_any] = ACTIONS(3520), - [anon_sym_number] = ACTIONS(3520), - [anon_sym_boolean] = ACTIONS(3520), - [anon_sym_string] = ACTIONS(3520), - [anon_sym_symbol] = ACTIONS(3520), - [anon_sym_object] = ACTIONS(3520), - [anon_sym_property] = ACTIONS(3520), - [anon_sym_signal] = ACTIONS(3520), - [anon_sym_on] = ACTIONS(3520), - [anon_sym_required] = ACTIONS(3520), - [anon_sym_component] = ACTIONS(3520), - [anon_sym_abstract] = ACTIONS(3520), - [anon_sym_interface] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1286] = { - [sym_comment] = STATE(1286), + [1242] = { + [sym_comment] = STATE(1242), + [sym_identifier] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_default] = ACTIONS(3590), + [anon_sym_type] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_typeof] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_from] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3590), + [anon_sym_var] = ACTIONS(3590), + [anon_sym_let] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_await] = ACTIONS(3590), + [anon_sym_of] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_debugger] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_case] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_LTtemplate_GT] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_async] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_SLASH] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_void] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3590), + [sym_number] = ACTIONS(3590), + [sym_private_property_identifier] = ACTIONS(3590), + [sym_this] = ACTIONS(3590), + [sym_super] = ACTIONS(3590), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [sym_null] = ACTIONS(3590), + [sym_undefined] = ACTIONS(3590), + [anon_sym_AT] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_readonly] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(3590), + [anon_sym_set] = ACTIONS(3590), + [anon_sym_declare] = ACTIONS(3590), + [anon_sym_public] = ACTIONS(3590), + [anon_sym_private] = ACTIONS(3590), + [anon_sym_protected] = ACTIONS(3590), + [anon_sym_override] = ACTIONS(3590), + [anon_sym_module] = ACTIONS(3590), + [anon_sym_any] = ACTIONS(3590), + [anon_sym_number] = ACTIONS(3590), + [anon_sym_boolean] = ACTIONS(3590), + [anon_sym_string] = ACTIONS(3590), + [anon_sym_symbol] = ACTIONS(3590), + [anon_sym_object] = ACTIONS(3590), + [anon_sym_property] = ACTIONS(3590), + [anon_sym_signal] = ACTIONS(3590), + [anon_sym_on] = ACTIONS(3590), + [anon_sym_required] = ACTIONS(3590), + [anon_sym_component] = ACTIONS(3590), + [anon_sym_abstract] = ACTIONS(3590), + [anon_sym_interface] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), + [sym_html_comment] = ACTIONS(5), + }, + [1243] = { + [sym_comment] = STATE(1243), + [sym_identifier] = ACTIONS(3546), + [anon_sym_export] = ACTIONS(3546), + [anon_sym_default] = ACTIONS(3546), + [anon_sym_type] = ACTIONS(3546), + [anon_sym_namespace] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_typeof] = ACTIONS(3546), + [anon_sym_import] = ACTIONS(3546), + [anon_sym_from] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3546), + [anon_sym_var] = ACTIONS(3546), + [anon_sym_let] = ACTIONS(3546), + [anon_sym_const] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_if] = ACTIONS(3546), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3546), + [anon_sym_await] = ACTIONS(3546), + [anon_sym_of] = ACTIONS(3546), + [anon_sym_while] = ACTIONS(3546), + [anon_sym_do] = ACTIONS(3546), + [anon_sym_try] = ACTIONS(3546), + [anon_sym_break] = ACTIONS(3546), + [anon_sym_continue] = ACTIONS(3546), + [anon_sym_debugger] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3546), + [anon_sym_throw] = ACTIONS(3546), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_case] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_LTtemplate_GT] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_class] = ACTIONS(3546), + [anon_sym_async] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3546), + [anon_sym_using] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_void] = ACTIONS(3546), + [anon_sym_delete] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3546), + [sym_number] = ACTIONS(3546), + [sym_private_property_identifier] = ACTIONS(3546), + [sym_this] = ACTIONS(3546), + [sym_super] = ACTIONS(3546), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_null] = ACTIONS(3546), + [sym_undefined] = ACTIONS(3546), + [anon_sym_AT] = ACTIONS(3546), + [anon_sym_static] = ACTIONS(3546), + [anon_sym_readonly] = ACTIONS(3546), + [anon_sym_get] = ACTIONS(3546), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_declare] = ACTIONS(3546), + [anon_sym_public] = ACTIONS(3546), + [anon_sym_private] = ACTIONS(3546), + [anon_sym_protected] = ACTIONS(3546), + [anon_sym_override] = ACTIONS(3546), + [anon_sym_module] = ACTIONS(3546), + [anon_sym_any] = ACTIONS(3546), + [anon_sym_number] = ACTIONS(3546), + [anon_sym_boolean] = ACTIONS(3546), + [anon_sym_string] = ACTIONS(3546), + [anon_sym_symbol] = ACTIONS(3546), + [anon_sym_object] = ACTIONS(3546), + [anon_sym_property] = ACTIONS(3546), + [anon_sym_signal] = ACTIONS(3546), + [anon_sym_on] = ACTIONS(3546), + [anon_sym_required] = ACTIONS(3546), + [anon_sym_component] = ACTIONS(3546), + [anon_sym_abstract] = ACTIONS(3546), + [anon_sym_interface] = ACTIONS(3546), + [anon_sym_enum] = ACTIONS(3546), + [sym_html_comment] = ACTIONS(5), + }, + [1244] = { + [sym_comment] = STATE(1244), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3706), + [sym_html_comment] = ACTIONS(5), + }, + [1245] = { + [sym_comment] = STATE(1245), + [sym_identifier] = ACTIONS(3594), + [anon_sym_export] = ACTIONS(3594), + [anon_sym_default] = ACTIONS(3594), + [anon_sym_type] = ACTIONS(3594), + [anon_sym_namespace] = ACTIONS(3594), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_typeof] = ACTIONS(3594), + [anon_sym_import] = ACTIONS(3594), + [anon_sym_from] = ACTIONS(3594), + [anon_sym_with] = ACTIONS(3594), + [anon_sym_var] = ACTIONS(3594), + [anon_sym_let] = ACTIONS(3594), + [anon_sym_const] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_if] = ACTIONS(3594), + [anon_sym_switch] = ACTIONS(3594), + [anon_sym_for] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_await] = ACTIONS(3594), + [anon_sym_of] = ACTIONS(3594), + [anon_sym_while] = ACTIONS(3594), + [anon_sym_do] = ACTIONS(3594), + [anon_sym_try] = ACTIONS(3594), + [anon_sym_break] = ACTIONS(3594), + [anon_sym_continue] = ACTIONS(3594), + [anon_sym_debugger] = ACTIONS(3594), + [anon_sym_return] = ACTIONS(3594), + [anon_sym_throw] = ACTIONS(3594), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_case] = ACTIONS(3594), + [anon_sym_yield] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LTtemplate_GT] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_class] = ACTIONS(3594), + [anon_sym_async] = ACTIONS(3594), + [anon_sym_function] = ACTIONS(3594), + [anon_sym_new] = ACTIONS(3594), + [anon_sym_using] = ACTIONS(3594), + [anon_sym_PLUS] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3594), + [anon_sym_SLASH] = ACTIONS(3594), + [anon_sym_LT] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_void] = ACTIONS(3594), + [anon_sym_delete] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3594), + [sym_number] = ACTIONS(3594), + [sym_private_property_identifier] = ACTIONS(3594), + [sym_this] = ACTIONS(3594), + [sym_super] = ACTIONS(3594), + [sym_true] = ACTIONS(3594), + [sym_false] = ACTIONS(3594), + [sym_null] = ACTIONS(3594), + [sym_undefined] = ACTIONS(3594), + [anon_sym_AT] = ACTIONS(3594), + [anon_sym_static] = ACTIONS(3594), + [anon_sym_readonly] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(3594), + [anon_sym_set] = ACTIONS(3594), + [anon_sym_declare] = ACTIONS(3594), + [anon_sym_public] = ACTIONS(3594), + [anon_sym_private] = ACTIONS(3594), + [anon_sym_protected] = ACTIONS(3594), + [anon_sym_override] = ACTIONS(3594), + [anon_sym_module] = ACTIONS(3594), + [anon_sym_any] = ACTIONS(3594), + [anon_sym_number] = ACTIONS(3594), + [anon_sym_boolean] = ACTIONS(3594), + [anon_sym_string] = ACTIONS(3594), + [anon_sym_symbol] = ACTIONS(3594), + [anon_sym_object] = ACTIONS(3594), + [anon_sym_property] = ACTIONS(3594), + [anon_sym_signal] = ACTIONS(3594), + [anon_sym_on] = ACTIONS(3594), + [anon_sym_required] = ACTIONS(3594), + [anon_sym_component] = ACTIONS(3594), + [anon_sym_abstract] = ACTIONS(3594), + [anon_sym_interface] = ACTIONS(3594), + [anon_sym_enum] = ACTIONS(3594), + [sym_html_comment] = ACTIONS(5), + }, + [1246] = { + [sym_comment] = STATE(1246), + [sym_identifier] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_default] = ACTIONS(3596), + [anon_sym_type] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3596), + [anon_sym_typeof] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3596), + [anon_sym_await] = ACTIONS(3596), + [anon_sym_of] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_debugger] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_case] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LTtemplate_GT] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_async] = ACTIONS(3596), + [anon_sym_function] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_SLASH] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3596), + [anon_sym_void] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3596), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3596), + [sym_number] = ACTIONS(3596), + [sym_private_property_identifier] = ACTIONS(3596), + [sym_this] = ACTIONS(3596), + [sym_super] = ACTIONS(3596), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_null] = ACTIONS(3596), + [sym_undefined] = ACTIONS(3596), + [anon_sym_AT] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_readonly] = ACTIONS(3596), + [anon_sym_get] = ACTIONS(3596), + [anon_sym_set] = ACTIONS(3596), + [anon_sym_declare] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_override] = ACTIONS(3596), + [anon_sym_module] = ACTIONS(3596), + [anon_sym_any] = ACTIONS(3596), + [anon_sym_number] = ACTIONS(3596), + [anon_sym_boolean] = ACTIONS(3596), + [anon_sym_string] = ACTIONS(3596), + [anon_sym_symbol] = ACTIONS(3596), + [anon_sym_object] = ACTIONS(3596), + [anon_sym_property] = ACTIONS(3596), + [anon_sym_signal] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_required] = ACTIONS(3596), + [anon_sym_component] = ACTIONS(3596), + [anon_sym_abstract] = ACTIONS(3596), + [anon_sym_interface] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [sym_html_comment] = ACTIONS(5), + }, + [1247] = { + [sym_comment] = STATE(1247), [sym_identifier] = ACTIONS(3598), [anon_sym_export] = ACTIONS(3598), [anon_sym_default] = ACTIONS(3598), @@ -183465,4992 +179621,4903 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3598), [sym_html_comment] = ACTIONS(5), }, - [1287] = { - [sym_comment] = STATE(1287), - [sym_identifier] = ACTIONS(3536), - [anon_sym_export] = ACTIONS(3536), - [anon_sym_default] = ACTIONS(3536), - [anon_sym_type] = ACTIONS(3536), - [anon_sym_namespace] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_RBRACE] = ACTIONS(3536), - [anon_sym_typeof] = ACTIONS(3536), - [anon_sym_import] = ACTIONS(3536), - [anon_sym_from] = ACTIONS(3536), - [anon_sym_with] = ACTIONS(3536), - [anon_sym_var] = ACTIONS(3536), - [anon_sym_let] = ACTIONS(3536), - [anon_sym_const] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_if] = ACTIONS(3536), - [anon_sym_switch] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3536), - [anon_sym_await] = ACTIONS(3536), - [anon_sym_of] = ACTIONS(3536), - [anon_sym_while] = ACTIONS(3536), - [anon_sym_do] = ACTIONS(3536), - [anon_sym_try] = ACTIONS(3536), - [anon_sym_break] = ACTIONS(3536), - [anon_sym_continue] = ACTIONS(3536), - [anon_sym_debugger] = ACTIONS(3536), - [anon_sym_return] = ACTIONS(3536), - [anon_sym_throw] = ACTIONS(3536), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym_case] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3536), - [anon_sym_LTtemplate_GT] = ACTIONS(3536), - [anon_sym_DQUOTE] = ACTIONS(3536), - [anon_sym_SQUOTE] = ACTIONS(3536), - [anon_sym_class] = ACTIONS(3536), - [anon_sym_async] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3536), - [anon_sym_using] = ACTIONS(3536), - [anon_sym_PLUS] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [anon_sym_void] = ACTIONS(3536), - [anon_sym_delete] = ACTIONS(3536), - [anon_sym_PLUS_PLUS] = ACTIONS(3536), - [anon_sym_DASH_DASH] = ACTIONS(3536), + [1248] = { + [sym_comment] = STATE(1248), + [sym_identifier] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_type] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_of] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_debugger] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LTtemplate_GT] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3536), - [sym_number] = ACTIONS(3536), - [sym_private_property_identifier] = ACTIONS(3536), - [sym_this] = ACTIONS(3536), - [sym_super] = ACTIONS(3536), - [sym_true] = ACTIONS(3536), - [sym_false] = ACTIONS(3536), - [sym_null] = ACTIONS(3536), - [sym_undefined] = ACTIONS(3536), - [anon_sym_AT] = ACTIONS(3536), - [anon_sym_static] = ACTIONS(3536), - [anon_sym_readonly] = ACTIONS(3536), - [anon_sym_get] = ACTIONS(3536), - [anon_sym_set] = ACTIONS(3536), - [anon_sym_declare] = ACTIONS(3536), - [anon_sym_public] = ACTIONS(3536), - [anon_sym_private] = ACTIONS(3536), - [anon_sym_protected] = ACTIONS(3536), - [anon_sym_override] = ACTIONS(3536), - [anon_sym_module] = ACTIONS(3536), - [anon_sym_any] = ACTIONS(3536), - [anon_sym_number] = ACTIONS(3536), - [anon_sym_boolean] = ACTIONS(3536), - [anon_sym_string] = ACTIONS(3536), - [anon_sym_symbol] = ACTIONS(3536), - [anon_sym_object] = ACTIONS(3536), - [anon_sym_property] = ACTIONS(3536), - [anon_sym_signal] = ACTIONS(3536), - [anon_sym_on] = ACTIONS(3536), - [anon_sym_required] = ACTIONS(3536), - [anon_sym_component] = ACTIONS(3536), - [anon_sym_abstract] = ACTIONS(3536), - [anon_sym_interface] = ACTIONS(3536), - [anon_sym_enum] = ACTIONS(3536), - [sym_html_comment] = ACTIONS(5), - }, - [1288] = { - [sym_comment] = STATE(1288), - [sym_identifier] = ACTIONS(3570), - [anon_sym_export] = ACTIONS(3570), - [anon_sym_default] = ACTIONS(3570), - [anon_sym_type] = ACTIONS(3570), - [anon_sym_namespace] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym_typeof] = ACTIONS(3570), - [anon_sym_import] = ACTIONS(3570), - [anon_sym_from] = ACTIONS(3570), - [anon_sym_with] = ACTIONS(3570), - [anon_sym_var] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_const] = ACTIONS(3570), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_switch] = ACTIONS(3570), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_await] = ACTIONS(3570), - [anon_sym_of] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_break] = ACTIONS(3570), - [anon_sym_continue] = ACTIONS(3570), - [anon_sym_debugger] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_throw] = ACTIONS(3570), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym_case] = ACTIONS(3570), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LTtemplate_GT] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_SQUOTE] = ACTIONS(3570), - [anon_sym_class] = ACTIONS(3570), - [anon_sym_async] = ACTIONS(3570), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_using] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_void] = ACTIONS(3570), - [anon_sym_delete] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3570), - [sym_number] = ACTIONS(3570), - [sym_private_property_identifier] = ACTIONS(3570), - [sym_this] = ACTIONS(3570), - [sym_super] = ACTIONS(3570), - [sym_true] = ACTIONS(3570), - [sym_false] = ACTIONS(3570), - [sym_null] = ACTIONS(3570), - [sym_undefined] = ACTIONS(3570), - [anon_sym_AT] = ACTIONS(3570), - [anon_sym_static] = ACTIONS(3570), - [anon_sym_readonly] = ACTIONS(3570), - [anon_sym_get] = ACTIONS(3570), - [anon_sym_set] = ACTIONS(3570), - [anon_sym_declare] = ACTIONS(3570), - [anon_sym_public] = ACTIONS(3570), - [anon_sym_private] = ACTIONS(3570), - [anon_sym_protected] = ACTIONS(3570), - [anon_sym_override] = ACTIONS(3570), - [anon_sym_module] = ACTIONS(3570), - [anon_sym_any] = ACTIONS(3570), - [anon_sym_number] = ACTIONS(3570), - [anon_sym_boolean] = ACTIONS(3570), - [anon_sym_string] = ACTIONS(3570), - [anon_sym_symbol] = ACTIONS(3570), - [anon_sym_object] = ACTIONS(3570), - [anon_sym_property] = ACTIONS(3570), - [anon_sym_signal] = ACTIONS(3570), - [anon_sym_on] = ACTIONS(3570), - [anon_sym_required] = ACTIONS(3570), - [anon_sym_component] = ACTIONS(3570), - [anon_sym_abstract] = ACTIONS(3570), - [anon_sym_interface] = ACTIONS(3570), - [anon_sym_enum] = ACTIONS(3570), + [anon_sym_BQUOTE] = ACTIONS(3600), + [sym_number] = ACTIONS(3600), + [sym_private_property_identifier] = ACTIONS(3600), + [sym_this] = ACTIONS(3600), + [sym_super] = ACTIONS(3600), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [sym_null] = ACTIONS(3600), + [sym_undefined] = ACTIONS(3600), + [anon_sym_AT] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3600), + [anon_sym_set] = ACTIONS(3600), + [anon_sym_declare] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_any] = ACTIONS(3600), + [anon_sym_number] = ACTIONS(3600), + [anon_sym_boolean] = ACTIONS(3600), + [anon_sym_string] = ACTIONS(3600), + [anon_sym_symbol] = ACTIONS(3600), + [anon_sym_object] = ACTIONS(3600), + [anon_sym_property] = ACTIONS(3600), + [anon_sym_signal] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_component] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), [sym_html_comment] = ACTIONS(5), }, - [1289] = { - [sym_comment] = STATE(1289), - [sym_identifier] = ACTIONS(3538), - [anon_sym_export] = ACTIONS(3538), - [anon_sym_default] = ACTIONS(3538), - [anon_sym_type] = ACTIONS(3538), - [anon_sym_namespace] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3538), - [anon_sym_RBRACE] = ACTIONS(3538), - [anon_sym_typeof] = ACTIONS(3538), - [anon_sym_import] = ACTIONS(3538), - [anon_sym_from] = ACTIONS(3538), - [anon_sym_with] = ACTIONS(3538), - [anon_sym_var] = ACTIONS(3538), - [anon_sym_let] = ACTIONS(3538), - [anon_sym_const] = ACTIONS(3538), - [anon_sym_BANG] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(3538), - [anon_sym_switch] = ACTIONS(3538), - [anon_sym_for] = ACTIONS(3538), - [anon_sym_LPAREN] = ACTIONS(3538), - [anon_sym_await] = ACTIONS(3538), - [anon_sym_of] = ACTIONS(3538), - [anon_sym_while] = ACTIONS(3538), - [anon_sym_do] = ACTIONS(3538), - [anon_sym_try] = ACTIONS(3538), - [anon_sym_break] = ACTIONS(3538), - [anon_sym_continue] = ACTIONS(3538), - [anon_sym_debugger] = ACTIONS(3538), - [anon_sym_return] = ACTIONS(3538), - [anon_sym_throw] = ACTIONS(3538), - [anon_sym_SEMI] = ACTIONS(3538), - [anon_sym_case] = ACTIONS(3538), - [anon_sym_yield] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3538), - [anon_sym_LTtemplate_GT] = ACTIONS(3538), - [anon_sym_DQUOTE] = ACTIONS(3538), - [anon_sym_SQUOTE] = ACTIONS(3538), - [anon_sym_class] = ACTIONS(3538), - [anon_sym_async] = ACTIONS(3538), - [anon_sym_function] = ACTIONS(3538), - [anon_sym_new] = ACTIONS(3538), - [anon_sym_using] = ACTIONS(3538), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_SLASH] = ACTIONS(3538), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_void] = ACTIONS(3538), - [anon_sym_delete] = ACTIONS(3538), - [anon_sym_PLUS_PLUS] = ACTIONS(3538), - [anon_sym_DASH_DASH] = ACTIONS(3538), + [1249] = { + [sym_comment] = STATE(1249), + [sym_identifier] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_default] = ACTIONS(3600), + [anon_sym_type] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_of] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_debugger] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_case] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LTtemplate_GT] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3538), - [sym_number] = ACTIONS(3538), - [sym_private_property_identifier] = ACTIONS(3538), - [sym_this] = ACTIONS(3538), - [sym_super] = ACTIONS(3538), - [sym_true] = ACTIONS(3538), - [sym_false] = ACTIONS(3538), - [sym_null] = ACTIONS(3538), - [sym_undefined] = ACTIONS(3538), - [anon_sym_AT] = ACTIONS(3538), - [anon_sym_static] = ACTIONS(3538), - [anon_sym_readonly] = ACTIONS(3538), - [anon_sym_get] = ACTIONS(3538), - [anon_sym_set] = ACTIONS(3538), - [anon_sym_declare] = ACTIONS(3538), - [anon_sym_public] = ACTIONS(3538), - [anon_sym_private] = ACTIONS(3538), - [anon_sym_protected] = ACTIONS(3538), - [anon_sym_override] = ACTIONS(3538), - [anon_sym_module] = ACTIONS(3538), - [anon_sym_any] = ACTIONS(3538), - [anon_sym_number] = ACTIONS(3538), - [anon_sym_boolean] = ACTIONS(3538), - [anon_sym_string] = ACTIONS(3538), - [anon_sym_symbol] = ACTIONS(3538), - [anon_sym_object] = ACTIONS(3538), - [anon_sym_property] = ACTIONS(3538), - [anon_sym_signal] = ACTIONS(3538), - [anon_sym_on] = ACTIONS(3538), - [anon_sym_required] = ACTIONS(3538), - [anon_sym_component] = ACTIONS(3538), - [anon_sym_abstract] = ACTIONS(3538), - [anon_sym_interface] = ACTIONS(3538), - [anon_sym_enum] = ACTIONS(3538), + [anon_sym_BQUOTE] = ACTIONS(3600), + [sym_number] = ACTIONS(3600), + [sym_private_property_identifier] = ACTIONS(3600), + [sym_this] = ACTIONS(3600), + [sym_super] = ACTIONS(3600), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [sym_null] = ACTIONS(3600), + [sym_undefined] = ACTIONS(3600), + [anon_sym_AT] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3600), + [anon_sym_set] = ACTIONS(3600), + [anon_sym_declare] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_any] = ACTIONS(3600), + [anon_sym_number] = ACTIONS(3600), + [anon_sym_boolean] = ACTIONS(3600), + [anon_sym_string] = ACTIONS(3600), + [anon_sym_symbol] = ACTIONS(3600), + [anon_sym_object] = ACTIONS(3600), + [anon_sym_property] = ACTIONS(3600), + [anon_sym_signal] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_component] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), [sym_html_comment] = ACTIONS(5), }, - [1290] = { - [sym_comment] = STATE(1290), - [sym_identifier] = ACTIONS(3498), - [anon_sym_export] = ACTIONS(3498), - [anon_sym_default] = ACTIONS(3498), - [anon_sym_type] = ACTIONS(3498), - [anon_sym_namespace] = ACTIONS(3498), - [anon_sym_LBRACE] = ACTIONS(3498), - [anon_sym_RBRACE] = ACTIONS(3498), - [anon_sym_typeof] = ACTIONS(3498), - [anon_sym_import] = ACTIONS(3498), - [anon_sym_from] = ACTIONS(3498), - [anon_sym_with] = ACTIONS(3498), - [anon_sym_var] = ACTIONS(3498), - [anon_sym_let] = ACTIONS(3498), - [anon_sym_const] = ACTIONS(3498), - [anon_sym_BANG] = ACTIONS(3498), - [anon_sym_if] = ACTIONS(3498), - [anon_sym_switch] = ACTIONS(3498), - [anon_sym_for] = ACTIONS(3498), - [anon_sym_LPAREN] = ACTIONS(3498), - [anon_sym_await] = ACTIONS(3498), - [anon_sym_of] = ACTIONS(3498), - [anon_sym_while] = ACTIONS(3498), - [anon_sym_do] = ACTIONS(3498), - [anon_sym_try] = ACTIONS(3498), - [anon_sym_break] = ACTIONS(3498), - [anon_sym_continue] = ACTIONS(3498), - [anon_sym_debugger] = ACTIONS(3498), - [anon_sym_return] = ACTIONS(3498), - [anon_sym_throw] = ACTIONS(3498), - [anon_sym_SEMI] = ACTIONS(3498), - [anon_sym_case] = ACTIONS(3498), - [anon_sym_yield] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3498), - [anon_sym_LTtemplate_GT] = ACTIONS(3498), - [anon_sym_DQUOTE] = ACTIONS(3498), - [anon_sym_SQUOTE] = ACTIONS(3498), - [anon_sym_class] = ACTIONS(3498), - [anon_sym_async] = ACTIONS(3498), - [anon_sym_function] = ACTIONS(3498), - [anon_sym_new] = ACTIONS(3498), - [anon_sym_using] = ACTIONS(3498), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_SLASH] = ACTIONS(3498), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_TILDE] = ACTIONS(3498), - [anon_sym_void] = ACTIONS(3498), - [anon_sym_delete] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3498), - [sym_number] = ACTIONS(3498), - [sym_private_property_identifier] = ACTIONS(3498), - [sym_this] = ACTIONS(3498), - [sym_super] = ACTIONS(3498), - [sym_true] = ACTIONS(3498), - [sym_false] = ACTIONS(3498), - [sym_null] = ACTIONS(3498), - [sym_undefined] = ACTIONS(3498), - [anon_sym_AT] = ACTIONS(3498), - [anon_sym_static] = ACTIONS(3498), - [anon_sym_readonly] = ACTIONS(3498), - [anon_sym_get] = ACTIONS(3498), - [anon_sym_set] = ACTIONS(3498), - [anon_sym_declare] = ACTIONS(3498), - [anon_sym_public] = ACTIONS(3498), - [anon_sym_private] = ACTIONS(3498), - [anon_sym_protected] = ACTIONS(3498), - [anon_sym_override] = ACTIONS(3498), - [anon_sym_module] = ACTIONS(3498), - [anon_sym_any] = ACTIONS(3498), - [anon_sym_number] = ACTIONS(3498), - [anon_sym_boolean] = ACTIONS(3498), - [anon_sym_string] = ACTIONS(3498), - [anon_sym_symbol] = ACTIONS(3498), - [anon_sym_object] = ACTIONS(3498), - [anon_sym_property] = ACTIONS(3498), - [anon_sym_signal] = ACTIONS(3498), - [anon_sym_on] = ACTIONS(3498), - [anon_sym_required] = ACTIONS(3498), - [anon_sym_component] = ACTIONS(3498), - [anon_sym_abstract] = ACTIONS(3498), - [anon_sym_interface] = ACTIONS(3498), - [anon_sym_enum] = ACTIONS(3498), + [1250] = { + [sym_comment] = STATE(1250), + [sym_identifier] = ACTIONS(3602), + [anon_sym_export] = ACTIONS(3602), + [anon_sym_default] = ACTIONS(3602), + [anon_sym_type] = ACTIONS(3602), + [anon_sym_namespace] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_typeof] = ACTIONS(3602), + [anon_sym_import] = ACTIONS(3602), + [anon_sym_from] = ACTIONS(3602), + [anon_sym_with] = ACTIONS(3602), + [anon_sym_var] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_const] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_switch] = ACTIONS(3602), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_await] = ACTIONS(3602), + [anon_sym_of] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_break] = ACTIONS(3602), + [anon_sym_continue] = ACTIONS(3602), + [anon_sym_debugger] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_throw] = ACTIONS(3602), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym_case] = ACTIONS(3602), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LTtemplate_GT] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_class] = ACTIONS(3602), + [anon_sym_async] = ACTIONS(3602), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_using] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_SLASH] = ACTIONS(3602), + [anon_sym_LT] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_void] = ACTIONS(3602), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_DASH_DASH] = ACTIONS(3602), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3602), + [sym_number] = ACTIONS(3602), + [sym_private_property_identifier] = ACTIONS(3602), + [sym_this] = ACTIONS(3602), + [sym_super] = ACTIONS(3602), + [sym_true] = ACTIONS(3602), + [sym_false] = ACTIONS(3602), + [sym_null] = ACTIONS(3602), + [sym_undefined] = ACTIONS(3602), + [anon_sym_AT] = ACTIONS(3602), + [anon_sym_static] = ACTIONS(3602), + [anon_sym_readonly] = ACTIONS(3602), + [anon_sym_get] = ACTIONS(3602), + [anon_sym_set] = ACTIONS(3602), + [anon_sym_declare] = ACTIONS(3602), + [anon_sym_public] = ACTIONS(3602), + [anon_sym_private] = ACTIONS(3602), + [anon_sym_protected] = ACTIONS(3602), + [anon_sym_override] = ACTIONS(3602), + [anon_sym_module] = ACTIONS(3602), + [anon_sym_any] = ACTIONS(3602), + [anon_sym_number] = ACTIONS(3602), + [anon_sym_boolean] = ACTIONS(3602), + [anon_sym_string] = ACTIONS(3602), + [anon_sym_symbol] = ACTIONS(3602), + [anon_sym_object] = ACTIONS(3602), + [anon_sym_property] = ACTIONS(3602), + [anon_sym_signal] = ACTIONS(3602), + [anon_sym_on] = ACTIONS(3602), + [anon_sym_required] = ACTIONS(3602), + [anon_sym_component] = ACTIONS(3602), + [anon_sym_abstract] = ACTIONS(3602), + [anon_sym_interface] = ACTIONS(3602), + [anon_sym_enum] = ACTIONS(3602), [sym_html_comment] = ACTIONS(5), }, - [1291] = { - [sym_comment] = STATE(1291), - [sym_identifier] = ACTIONS(3502), - [anon_sym_export] = ACTIONS(3502), - [anon_sym_default] = ACTIONS(3502), - [anon_sym_type] = ACTIONS(3502), - [anon_sym_namespace] = ACTIONS(3502), - [anon_sym_LBRACE] = ACTIONS(3502), - [anon_sym_RBRACE] = ACTIONS(3502), - [anon_sym_typeof] = ACTIONS(3502), - [anon_sym_import] = ACTIONS(3502), - [anon_sym_from] = ACTIONS(3502), - [anon_sym_with] = ACTIONS(3502), - [anon_sym_var] = ACTIONS(3502), - [anon_sym_let] = ACTIONS(3502), - [anon_sym_const] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_if] = ACTIONS(3502), - [anon_sym_switch] = ACTIONS(3502), - [anon_sym_for] = ACTIONS(3502), - [anon_sym_LPAREN] = ACTIONS(3502), - [anon_sym_await] = ACTIONS(3502), - [anon_sym_of] = ACTIONS(3502), - [anon_sym_while] = ACTIONS(3502), - [anon_sym_do] = ACTIONS(3502), - [anon_sym_try] = ACTIONS(3502), - [anon_sym_break] = ACTIONS(3502), - [anon_sym_continue] = ACTIONS(3502), - [anon_sym_debugger] = ACTIONS(3502), - [anon_sym_return] = ACTIONS(3502), - [anon_sym_throw] = ACTIONS(3502), - [anon_sym_SEMI] = ACTIONS(3502), - [anon_sym_case] = ACTIONS(3502), - [anon_sym_yield] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3502), - [anon_sym_LTtemplate_GT] = ACTIONS(3502), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3502), - [anon_sym_class] = ACTIONS(3502), - [anon_sym_async] = ACTIONS(3502), - [anon_sym_function] = ACTIONS(3502), - [anon_sym_new] = ACTIONS(3502), - [anon_sym_using] = ACTIONS(3502), - [anon_sym_PLUS] = ACTIONS(3502), - [anon_sym_DASH] = ACTIONS(3502), - [anon_sym_SLASH] = ACTIONS(3502), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_TILDE] = ACTIONS(3502), - [anon_sym_void] = ACTIONS(3502), - [anon_sym_delete] = ACTIONS(3502), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3502), + [1251] = { + [sym_comment] = STATE(1251), + [sym_identifier] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_default] = ACTIONS(3604), + [anon_sym_type] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_typeof] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_from] = ACTIONS(3604), + [anon_sym_with] = ACTIONS(3604), + [anon_sym_var] = ACTIONS(3604), + [anon_sym_let] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_BANG] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym_await] = ACTIONS(3604), + [anon_sym_of] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_debugger] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_case] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LTtemplate_GT] = ACTIONS(3604), + [anon_sym_DQUOTE] = ACTIONS(3604), + [anon_sym_SQUOTE] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_async] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_SLASH] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3604), + [anon_sym_void] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_PLUS_PLUS] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3604), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3502), - [sym_number] = ACTIONS(3502), - [sym_private_property_identifier] = ACTIONS(3502), - [sym_this] = ACTIONS(3502), - [sym_super] = ACTIONS(3502), - [sym_true] = ACTIONS(3502), - [sym_false] = ACTIONS(3502), - [sym_null] = ACTIONS(3502), - [sym_undefined] = ACTIONS(3502), - [anon_sym_AT] = ACTIONS(3502), - [anon_sym_static] = ACTIONS(3502), - [anon_sym_readonly] = ACTIONS(3502), - [anon_sym_get] = ACTIONS(3502), - [anon_sym_set] = ACTIONS(3502), - [anon_sym_declare] = ACTIONS(3502), - [anon_sym_public] = ACTIONS(3502), - [anon_sym_private] = ACTIONS(3502), - [anon_sym_protected] = ACTIONS(3502), - [anon_sym_override] = ACTIONS(3502), - [anon_sym_module] = ACTIONS(3502), - [anon_sym_any] = ACTIONS(3502), - [anon_sym_number] = ACTIONS(3502), - [anon_sym_boolean] = ACTIONS(3502), - [anon_sym_string] = ACTIONS(3502), - [anon_sym_symbol] = ACTIONS(3502), - [anon_sym_object] = ACTIONS(3502), - [anon_sym_property] = ACTIONS(3502), - [anon_sym_signal] = ACTIONS(3502), - [anon_sym_on] = ACTIONS(3502), - [anon_sym_required] = ACTIONS(3502), - [anon_sym_component] = ACTIONS(3502), - [anon_sym_abstract] = ACTIONS(3502), - [anon_sym_interface] = ACTIONS(3502), - [anon_sym_enum] = ACTIONS(3502), + [anon_sym_BQUOTE] = ACTIONS(3604), + [sym_number] = ACTIONS(3604), + [sym_private_property_identifier] = ACTIONS(3604), + [sym_this] = ACTIONS(3604), + [sym_super] = ACTIONS(3604), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [sym_null] = ACTIONS(3604), + [sym_undefined] = ACTIONS(3604), + [anon_sym_AT] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_readonly] = ACTIONS(3604), + [anon_sym_get] = ACTIONS(3604), + [anon_sym_set] = ACTIONS(3604), + [anon_sym_declare] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_override] = ACTIONS(3604), + [anon_sym_module] = ACTIONS(3604), + [anon_sym_any] = ACTIONS(3604), + [anon_sym_number] = ACTIONS(3604), + [anon_sym_boolean] = ACTIONS(3604), + [anon_sym_string] = ACTIONS(3604), + [anon_sym_symbol] = ACTIONS(3604), + [anon_sym_object] = ACTIONS(3604), + [anon_sym_property] = ACTIONS(3604), + [anon_sym_signal] = ACTIONS(3604), + [anon_sym_on] = ACTIONS(3604), + [anon_sym_required] = ACTIONS(3604), + [anon_sym_component] = ACTIONS(3604), + [anon_sym_abstract] = ACTIONS(3604), + [anon_sym_interface] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), [sym_html_comment] = ACTIONS(5), }, - [1292] = { - [sym_comment] = STATE(1292), - [sym_identifier] = ACTIONS(3460), - [anon_sym_export] = ACTIONS(3460), - [anon_sym_type] = ACTIONS(3460), - [anon_sym_namespace] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_RBRACE] = ACTIONS(3460), - [anon_sym_typeof] = ACTIONS(3460), - [anon_sym_import] = ACTIONS(3460), - [anon_sym_from] = ACTIONS(3460), - [anon_sym_with] = ACTIONS(3460), - [anon_sym_var] = ACTIONS(3460), - [anon_sym_let] = ACTIONS(3460), - [anon_sym_const] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_else] = ACTIONS(3460), - [anon_sym_if] = ACTIONS(3460), - [anon_sym_switch] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3460), - [anon_sym_await] = ACTIONS(3460), - [anon_sym_of] = ACTIONS(3460), - [anon_sym_while] = ACTIONS(3460), - [anon_sym_do] = ACTIONS(3460), - [anon_sym_try] = ACTIONS(3460), - [anon_sym_break] = ACTIONS(3460), - [anon_sym_continue] = ACTIONS(3460), - [anon_sym_debugger] = ACTIONS(3460), - [anon_sym_return] = ACTIONS(3460), - [anon_sym_throw] = ACTIONS(3460), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_finally] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LTtemplate_GT] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [anon_sym_SQUOTE] = ACTIONS(3460), - [anon_sym_class] = ACTIONS(3460), - [anon_sym_async] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3460), - [anon_sym_using] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_SLASH] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_void] = ACTIONS(3460), - [anon_sym_delete] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3460), - [sym_number] = ACTIONS(3460), - [sym_private_property_identifier] = ACTIONS(3460), - [sym_this] = ACTIONS(3460), - [sym_super] = ACTIONS(3460), - [sym_true] = ACTIONS(3460), - [sym_false] = ACTIONS(3460), - [sym_null] = ACTIONS(3460), - [sym_undefined] = ACTIONS(3460), - [anon_sym_AT] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(3460), - [anon_sym_readonly] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(3460), - [anon_sym_set] = ACTIONS(3460), - [anon_sym_declare] = ACTIONS(3460), - [anon_sym_public] = ACTIONS(3460), - [anon_sym_private] = ACTIONS(3460), - [anon_sym_protected] = ACTIONS(3460), - [anon_sym_override] = ACTIONS(3460), - [anon_sym_module] = ACTIONS(3460), - [anon_sym_any] = ACTIONS(3460), - [anon_sym_number] = ACTIONS(3460), - [anon_sym_boolean] = ACTIONS(3460), - [anon_sym_string] = ACTIONS(3460), - [anon_sym_symbol] = ACTIONS(3460), - [anon_sym_object] = ACTIONS(3460), - [anon_sym_property] = ACTIONS(3460), - [anon_sym_signal] = ACTIONS(3460), - [anon_sym_on] = ACTIONS(3460), - [anon_sym_required] = ACTIONS(3460), - [anon_sym_component] = ACTIONS(3460), - [anon_sym_abstract] = ACTIONS(3460), - [anon_sym_interface] = ACTIONS(3460), - [anon_sym_enum] = ACTIONS(3460), + [1252] = { + [sym_comment] = STATE(1252), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_default] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_case] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), [sym_html_comment] = ACTIONS(5), }, - [1293] = { - [sym_comment] = STATE(1293), - [sym_identifier] = ACTIONS(3462), - [anon_sym_export] = ACTIONS(3462), - [anon_sym_type] = ACTIONS(3462), - [anon_sym_namespace] = ACTIONS(3462), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_RBRACE] = ACTIONS(3462), - [anon_sym_typeof] = ACTIONS(3462), - [anon_sym_import] = ACTIONS(3462), - [anon_sym_from] = ACTIONS(3462), - [anon_sym_with] = ACTIONS(3462), - [anon_sym_var] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_const] = ACTIONS(3462), - [anon_sym_BANG] = ACTIONS(3462), - [anon_sym_else] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_switch] = ACTIONS(3462), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_await] = ACTIONS(3462), - [anon_sym_of] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_break] = ACTIONS(3462), - [anon_sym_continue] = ACTIONS(3462), - [anon_sym_debugger] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_throw] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3462), - [anon_sym_finally] = ACTIONS(3462), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LTtemplate_GT] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_SQUOTE] = ACTIONS(3462), - [anon_sym_class] = ACTIONS(3462), - [anon_sym_async] = ACTIONS(3462), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_using] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_SLASH] = ACTIONS(3462), - [anon_sym_LT] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_void] = ACTIONS(3462), - [anon_sym_delete] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3462), - [sym_number] = ACTIONS(3462), - [sym_private_property_identifier] = ACTIONS(3462), - [sym_this] = ACTIONS(3462), - [sym_super] = ACTIONS(3462), - [sym_true] = ACTIONS(3462), - [sym_false] = ACTIONS(3462), - [sym_null] = ACTIONS(3462), - [sym_undefined] = ACTIONS(3462), - [anon_sym_AT] = ACTIONS(3462), - [anon_sym_static] = ACTIONS(3462), - [anon_sym_readonly] = ACTIONS(3462), - [anon_sym_get] = ACTIONS(3462), - [anon_sym_set] = ACTIONS(3462), - [anon_sym_declare] = ACTIONS(3462), - [anon_sym_public] = ACTIONS(3462), - [anon_sym_private] = ACTIONS(3462), - [anon_sym_protected] = ACTIONS(3462), - [anon_sym_override] = ACTIONS(3462), - [anon_sym_module] = ACTIONS(3462), - [anon_sym_any] = ACTIONS(3462), - [anon_sym_number] = ACTIONS(3462), - [anon_sym_boolean] = ACTIONS(3462), - [anon_sym_string] = ACTIONS(3462), - [anon_sym_symbol] = ACTIONS(3462), - [anon_sym_object] = ACTIONS(3462), - [anon_sym_property] = ACTIONS(3462), - [anon_sym_signal] = ACTIONS(3462), - [anon_sym_on] = ACTIONS(3462), - [anon_sym_required] = ACTIONS(3462), - [anon_sym_component] = ACTIONS(3462), - [anon_sym_abstract] = ACTIONS(3462), - [anon_sym_interface] = ACTIONS(3462), - [anon_sym_enum] = ACTIONS(3462), + [1253] = { + [sym_comment] = STATE(1253), + [sym_identifier] = ACTIONS(3608), + [anon_sym_export] = ACTIONS(3608), + [anon_sym_default] = ACTIONS(3608), + [anon_sym_type] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_RBRACE] = ACTIONS(3608), + [anon_sym_typeof] = ACTIONS(3608), + [anon_sym_import] = ACTIONS(3608), + [anon_sym_from] = ACTIONS(3608), + [anon_sym_with] = ACTIONS(3608), + [anon_sym_var] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_await] = ACTIONS(3608), + [anon_sym_of] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_debugger] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3608), + [anon_sym_case] = ACTIONS(3608), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LTtemplate_GT] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_SQUOTE] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_async] = ACTIONS(3608), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_SLASH] = ACTIONS(3608), + [anon_sym_LT] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3608), + [anon_sym_void] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_PLUS_PLUS] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3608), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3608), + [sym_number] = ACTIONS(3608), + [sym_private_property_identifier] = ACTIONS(3608), + [sym_this] = ACTIONS(3608), + [sym_super] = ACTIONS(3608), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [sym_null] = ACTIONS(3608), + [sym_undefined] = ACTIONS(3608), + [anon_sym_AT] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_readonly] = ACTIONS(3608), + [anon_sym_get] = ACTIONS(3608), + [anon_sym_set] = ACTIONS(3608), + [anon_sym_declare] = ACTIONS(3608), + [anon_sym_public] = ACTIONS(3608), + [anon_sym_private] = ACTIONS(3608), + [anon_sym_protected] = ACTIONS(3608), + [anon_sym_override] = ACTIONS(3608), + [anon_sym_module] = ACTIONS(3608), + [anon_sym_any] = ACTIONS(3608), + [anon_sym_number] = ACTIONS(3608), + [anon_sym_boolean] = ACTIONS(3608), + [anon_sym_string] = ACTIONS(3608), + [anon_sym_symbol] = ACTIONS(3608), + [anon_sym_object] = ACTIONS(3608), + [anon_sym_property] = ACTIONS(3608), + [anon_sym_signal] = ACTIONS(3608), + [anon_sym_on] = ACTIONS(3608), + [anon_sym_required] = ACTIONS(3608), + [anon_sym_component] = ACTIONS(3608), + [anon_sym_abstract] = ACTIONS(3608), + [anon_sym_interface] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), [sym_html_comment] = ACTIONS(5), }, - [1294] = { - [sym_comment] = STATE(1294), - [sym_identifier] = ACTIONS(3552), - [anon_sym_export] = ACTIONS(3552), - [anon_sym_default] = ACTIONS(3552), - [anon_sym_type] = ACTIONS(3552), - [anon_sym_namespace] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_RBRACE] = ACTIONS(3552), - [anon_sym_typeof] = ACTIONS(3552), - [anon_sym_import] = ACTIONS(3552), - [anon_sym_from] = ACTIONS(3552), - [anon_sym_with] = ACTIONS(3552), - [anon_sym_var] = ACTIONS(3552), - [anon_sym_let] = ACTIONS(3552), - [anon_sym_const] = ACTIONS(3552), - [anon_sym_BANG] = ACTIONS(3552), - [anon_sym_if] = ACTIONS(3552), - [anon_sym_switch] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3552), - [anon_sym_LPAREN] = ACTIONS(3552), - [anon_sym_await] = ACTIONS(3552), - [anon_sym_of] = ACTIONS(3552), - [anon_sym_while] = ACTIONS(3552), - [anon_sym_do] = ACTIONS(3552), - [anon_sym_try] = ACTIONS(3552), - [anon_sym_break] = ACTIONS(3552), - [anon_sym_continue] = ACTIONS(3552), - [anon_sym_debugger] = ACTIONS(3552), - [anon_sym_return] = ACTIONS(3552), - [anon_sym_throw] = ACTIONS(3552), - [anon_sym_SEMI] = ACTIONS(3552), - [anon_sym_case] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3552), - [anon_sym_LBRACK] = ACTIONS(3552), - [anon_sym_LTtemplate_GT] = ACTIONS(3552), - [anon_sym_DQUOTE] = ACTIONS(3552), - [anon_sym_SQUOTE] = ACTIONS(3552), - [anon_sym_class] = ACTIONS(3552), - [anon_sym_async] = ACTIONS(3552), - [anon_sym_function] = ACTIONS(3552), - [anon_sym_new] = ACTIONS(3552), - [anon_sym_using] = ACTIONS(3552), - [anon_sym_PLUS] = ACTIONS(3552), - [anon_sym_DASH] = ACTIONS(3552), - [anon_sym_SLASH] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_TILDE] = ACTIONS(3552), - [anon_sym_void] = ACTIONS(3552), - [anon_sym_delete] = ACTIONS(3552), - [anon_sym_PLUS_PLUS] = ACTIONS(3552), - [anon_sym_DASH_DASH] = ACTIONS(3552), + [1254] = { + [sym_comment] = STATE(1254), + [sym_identifier] = ACTIONS(3610), + [anon_sym_export] = ACTIONS(3610), + [anon_sym_default] = ACTIONS(3610), + [anon_sym_type] = ACTIONS(3610), + [anon_sym_namespace] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_typeof] = ACTIONS(3610), + [anon_sym_import] = ACTIONS(3610), + [anon_sym_from] = ACTIONS(3610), + [anon_sym_with] = ACTIONS(3610), + [anon_sym_var] = ACTIONS(3610), + [anon_sym_let] = ACTIONS(3610), + [anon_sym_const] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_if] = ACTIONS(3610), + [anon_sym_switch] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_await] = ACTIONS(3610), + [anon_sym_of] = ACTIONS(3610), + [anon_sym_while] = ACTIONS(3610), + [anon_sym_do] = ACTIONS(3610), + [anon_sym_try] = ACTIONS(3610), + [anon_sym_break] = ACTIONS(3610), + [anon_sym_continue] = ACTIONS(3610), + [anon_sym_debugger] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3610), + [anon_sym_throw] = ACTIONS(3610), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym_case] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3610), + [anon_sym_LTtemplate_GT] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_class] = ACTIONS(3610), + [anon_sym_async] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3610), + [anon_sym_using] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_SLASH] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_void] = ACTIONS(3610), + [anon_sym_delete] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_DASH_DASH] = ACTIONS(3610), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3552), - [sym_number] = ACTIONS(3552), - [sym_private_property_identifier] = ACTIONS(3552), - [sym_this] = ACTIONS(3552), - [sym_super] = ACTIONS(3552), - [sym_true] = ACTIONS(3552), - [sym_false] = ACTIONS(3552), - [sym_null] = ACTIONS(3552), - [sym_undefined] = ACTIONS(3552), - [anon_sym_AT] = ACTIONS(3552), - [anon_sym_static] = ACTIONS(3552), - [anon_sym_readonly] = ACTIONS(3552), - [anon_sym_get] = ACTIONS(3552), - [anon_sym_set] = ACTIONS(3552), - [anon_sym_declare] = ACTIONS(3552), - [anon_sym_public] = ACTIONS(3552), - [anon_sym_private] = ACTIONS(3552), - [anon_sym_protected] = ACTIONS(3552), - [anon_sym_override] = ACTIONS(3552), - [anon_sym_module] = ACTIONS(3552), - [anon_sym_any] = ACTIONS(3552), - [anon_sym_number] = ACTIONS(3552), - [anon_sym_boolean] = ACTIONS(3552), - [anon_sym_string] = ACTIONS(3552), - [anon_sym_symbol] = ACTIONS(3552), - [anon_sym_object] = ACTIONS(3552), - [anon_sym_property] = ACTIONS(3552), - [anon_sym_signal] = ACTIONS(3552), - [anon_sym_on] = ACTIONS(3552), - [anon_sym_required] = ACTIONS(3552), - [anon_sym_component] = ACTIONS(3552), - [anon_sym_abstract] = ACTIONS(3552), - [anon_sym_interface] = ACTIONS(3552), - [anon_sym_enum] = ACTIONS(3552), + [anon_sym_BQUOTE] = ACTIONS(3610), + [sym_number] = ACTIONS(3610), + [sym_private_property_identifier] = ACTIONS(3610), + [sym_this] = ACTIONS(3610), + [sym_super] = ACTIONS(3610), + [sym_true] = ACTIONS(3610), + [sym_false] = ACTIONS(3610), + [sym_null] = ACTIONS(3610), + [sym_undefined] = ACTIONS(3610), + [anon_sym_AT] = ACTIONS(3610), + [anon_sym_static] = ACTIONS(3610), + [anon_sym_readonly] = ACTIONS(3610), + [anon_sym_get] = ACTIONS(3610), + [anon_sym_set] = ACTIONS(3610), + [anon_sym_declare] = ACTIONS(3610), + [anon_sym_public] = ACTIONS(3610), + [anon_sym_private] = ACTIONS(3610), + [anon_sym_protected] = ACTIONS(3610), + [anon_sym_override] = ACTIONS(3610), + [anon_sym_module] = ACTIONS(3610), + [anon_sym_any] = ACTIONS(3610), + [anon_sym_number] = ACTIONS(3610), + [anon_sym_boolean] = ACTIONS(3610), + [anon_sym_string] = ACTIONS(3610), + [anon_sym_symbol] = ACTIONS(3610), + [anon_sym_object] = ACTIONS(3610), + [anon_sym_property] = ACTIONS(3610), + [anon_sym_signal] = ACTIONS(3610), + [anon_sym_on] = ACTIONS(3610), + [anon_sym_required] = ACTIONS(3610), + [anon_sym_component] = ACTIONS(3610), + [anon_sym_abstract] = ACTIONS(3610), + [anon_sym_interface] = ACTIONS(3610), + [anon_sym_enum] = ACTIONS(3610), [sym_html_comment] = ACTIONS(5), }, - [1295] = { - [sym_comment] = STATE(1295), - [sym_identifier] = ACTIONS(3554), - [anon_sym_export] = ACTIONS(3554), - [anon_sym_default] = ACTIONS(3554), - [anon_sym_type] = ACTIONS(3554), - [anon_sym_namespace] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(3554), - [anon_sym_RBRACE] = ACTIONS(3554), - [anon_sym_typeof] = ACTIONS(3554), - [anon_sym_import] = ACTIONS(3554), - [anon_sym_from] = ACTIONS(3554), - [anon_sym_with] = ACTIONS(3554), - [anon_sym_var] = ACTIONS(3554), - [anon_sym_let] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_BANG] = ACTIONS(3554), - [anon_sym_if] = ACTIONS(3554), - [anon_sym_switch] = ACTIONS(3554), - [anon_sym_for] = ACTIONS(3554), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_await] = ACTIONS(3554), - [anon_sym_of] = ACTIONS(3554), - [anon_sym_while] = ACTIONS(3554), - [anon_sym_do] = ACTIONS(3554), - [anon_sym_try] = ACTIONS(3554), - [anon_sym_break] = ACTIONS(3554), - [anon_sym_continue] = ACTIONS(3554), - [anon_sym_debugger] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3554), - [anon_sym_throw] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3554), - [anon_sym_case] = ACTIONS(3554), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LTtemplate_GT] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_SQUOTE] = ACTIONS(3554), - [anon_sym_class] = ACTIONS(3554), - [anon_sym_async] = ACTIONS(3554), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_using] = ACTIONS(3554), - [anon_sym_PLUS] = ACTIONS(3554), - [anon_sym_DASH] = ACTIONS(3554), - [anon_sym_SLASH] = ACTIONS(3554), - [anon_sym_LT] = ACTIONS(3554), - [anon_sym_TILDE] = ACTIONS(3554), - [anon_sym_void] = ACTIONS(3554), - [anon_sym_delete] = ACTIONS(3554), - [anon_sym_PLUS_PLUS] = ACTIONS(3554), - [anon_sym_DASH_DASH] = ACTIONS(3554), + [1255] = { + [sym_comment] = STATE(1255), + [sym_identifier] = ACTIONS(3612), + [anon_sym_export] = ACTIONS(3612), + [anon_sym_default] = ACTIONS(3612), + [anon_sym_type] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_typeof] = ACTIONS(3612), + [anon_sym_import] = ACTIONS(3612), + [anon_sym_from] = ACTIONS(3612), + [anon_sym_with] = ACTIONS(3612), + [anon_sym_var] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_switch] = ACTIONS(3612), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_await] = ACTIONS(3612), + [anon_sym_of] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_break] = ACTIONS(3612), + [anon_sym_continue] = ACTIONS(3612), + [anon_sym_debugger] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_throw] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym_case] = ACTIONS(3612), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LTtemplate_GT] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_async] = ACTIONS(3612), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_using] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_SLASH] = ACTIONS(3612), + [anon_sym_LT] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3612), + [anon_sym_void] = ACTIONS(3612), + [anon_sym_delete] = ACTIONS(3612), + [anon_sym_PLUS_PLUS] = ACTIONS(3612), + [anon_sym_DASH_DASH] = ACTIONS(3612), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3554), - [sym_number] = ACTIONS(3554), - [sym_private_property_identifier] = ACTIONS(3554), - [sym_this] = ACTIONS(3554), - [sym_super] = ACTIONS(3554), - [sym_true] = ACTIONS(3554), - [sym_false] = ACTIONS(3554), - [sym_null] = ACTIONS(3554), - [sym_undefined] = ACTIONS(3554), - [anon_sym_AT] = ACTIONS(3554), - [anon_sym_static] = ACTIONS(3554), - [anon_sym_readonly] = ACTIONS(3554), - [anon_sym_get] = ACTIONS(3554), - [anon_sym_set] = ACTIONS(3554), - [anon_sym_declare] = ACTIONS(3554), - [anon_sym_public] = ACTIONS(3554), - [anon_sym_private] = ACTIONS(3554), - [anon_sym_protected] = ACTIONS(3554), - [anon_sym_override] = ACTIONS(3554), - [anon_sym_module] = ACTIONS(3554), - [anon_sym_any] = ACTIONS(3554), - [anon_sym_number] = ACTIONS(3554), - [anon_sym_boolean] = ACTIONS(3554), - [anon_sym_string] = ACTIONS(3554), - [anon_sym_symbol] = ACTIONS(3554), - [anon_sym_object] = ACTIONS(3554), - [anon_sym_property] = ACTIONS(3554), - [anon_sym_signal] = ACTIONS(3554), - [anon_sym_on] = ACTIONS(3554), - [anon_sym_required] = ACTIONS(3554), - [anon_sym_component] = ACTIONS(3554), - [anon_sym_abstract] = ACTIONS(3554), - [anon_sym_interface] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), + [anon_sym_BQUOTE] = ACTIONS(3612), + [sym_number] = ACTIONS(3612), + [sym_private_property_identifier] = ACTIONS(3612), + [sym_this] = ACTIONS(3612), + [sym_super] = ACTIONS(3612), + [sym_true] = ACTIONS(3612), + [sym_false] = ACTIONS(3612), + [sym_null] = ACTIONS(3612), + [sym_undefined] = ACTIONS(3612), + [anon_sym_AT] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_readonly] = ACTIONS(3612), + [anon_sym_get] = ACTIONS(3612), + [anon_sym_set] = ACTIONS(3612), + [anon_sym_declare] = ACTIONS(3612), + [anon_sym_public] = ACTIONS(3612), + [anon_sym_private] = ACTIONS(3612), + [anon_sym_protected] = ACTIONS(3612), + [anon_sym_override] = ACTIONS(3612), + [anon_sym_module] = ACTIONS(3612), + [anon_sym_any] = ACTIONS(3612), + [anon_sym_number] = ACTIONS(3612), + [anon_sym_boolean] = ACTIONS(3612), + [anon_sym_string] = ACTIONS(3612), + [anon_sym_symbol] = ACTIONS(3612), + [anon_sym_object] = ACTIONS(3612), + [anon_sym_property] = ACTIONS(3612), + [anon_sym_signal] = ACTIONS(3612), + [anon_sym_on] = ACTIONS(3612), + [anon_sym_required] = ACTIONS(3612), + [anon_sym_component] = ACTIONS(3612), + [anon_sym_abstract] = ACTIONS(3612), + [anon_sym_interface] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), [sym_html_comment] = ACTIONS(5), }, - [1296] = { - [sym_comment] = STATE(1296), - [sym_identifier] = ACTIONS(3574), - [anon_sym_export] = ACTIONS(3574), - [anon_sym_default] = ACTIONS(3574), - [anon_sym_type] = ACTIONS(3574), - [anon_sym_namespace] = ACTIONS(3574), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_RBRACE] = ACTIONS(3574), - [anon_sym_typeof] = ACTIONS(3574), - [anon_sym_import] = ACTIONS(3574), - [anon_sym_from] = ACTIONS(3574), - [anon_sym_with] = ACTIONS(3574), - [anon_sym_var] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_const] = ACTIONS(3574), - [anon_sym_BANG] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_switch] = ACTIONS(3574), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_await] = ACTIONS(3574), - [anon_sym_of] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_break] = ACTIONS(3574), - [anon_sym_continue] = ACTIONS(3574), - [anon_sym_debugger] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_throw] = ACTIONS(3574), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym_case] = ACTIONS(3574), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LTtemplate_GT] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_SQUOTE] = ACTIONS(3574), - [anon_sym_class] = ACTIONS(3574), - [anon_sym_async] = ACTIONS(3574), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_using] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_SLASH] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_void] = ACTIONS(3574), - [anon_sym_delete] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_DASH_DASH] = ACTIONS(3574), + [1256] = { + [sym_comment] = STATE(1256), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_default] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_case] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3574), - [sym_number] = ACTIONS(3574), - [sym_private_property_identifier] = ACTIONS(3574), - [sym_this] = ACTIONS(3574), - [sym_super] = ACTIONS(3574), - [sym_true] = ACTIONS(3574), - [sym_false] = ACTIONS(3574), - [sym_null] = ACTIONS(3574), - [sym_undefined] = ACTIONS(3574), - [anon_sym_AT] = ACTIONS(3574), - [anon_sym_static] = ACTIONS(3574), - [anon_sym_readonly] = ACTIONS(3574), - [anon_sym_get] = ACTIONS(3574), - [anon_sym_set] = ACTIONS(3574), - [anon_sym_declare] = ACTIONS(3574), - [anon_sym_public] = ACTIONS(3574), - [anon_sym_private] = ACTIONS(3574), - [anon_sym_protected] = ACTIONS(3574), - [anon_sym_override] = ACTIONS(3574), - [anon_sym_module] = ACTIONS(3574), - [anon_sym_any] = ACTIONS(3574), - [anon_sym_number] = ACTIONS(3574), - [anon_sym_boolean] = ACTIONS(3574), - [anon_sym_string] = ACTIONS(3574), - [anon_sym_symbol] = ACTIONS(3574), - [anon_sym_object] = ACTIONS(3574), - [anon_sym_property] = ACTIONS(3574), - [anon_sym_signal] = ACTIONS(3574), - [anon_sym_on] = ACTIONS(3574), - [anon_sym_required] = ACTIONS(3574), - [anon_sym_component] = ACTIONS(3574), - [anon_sym_abstract] = ACTIONS(3574), - [anon_sym_interface] = ACTIONS(3574), - [anon_sym_enum] = ACTIONS(3574), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1297] = { - [sym_comment] = STATE(1297), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_catch] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym_html_comment] = ACTIONS(5), - }, - [1298] = { - [sym_comment] = STATE(1298), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), + [1257] = { + [sym_comment] = STATE(1257), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_default] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_case] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2466), - [sym_number] = ACTIONS(2466), - [sym_private_property_identifier] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1299] = { - [sym_comment] = STATE(1299), - [sym_identifier] = ACTIONS(3506), - [anon_sym_export] = ACTIONS(3506), - [anon_sym_default] = ACTIONS(3506), - [anon_sym_type] = ACTIONS(3506), - [anon_sym_namespace] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(3506), - [anon_sym_RBRACE] = ACTIONS(3506), - [anon_sym_typeof] = ACTIONS(3506), - [anon_sym_import] = ACTIONS(3506), - [anon_sym_from] = ACTIONS(3506), - [anon_sym_with] = ACTIONS(3506), - [anon_sym_var] = ACTIONS(3506), - [anon_sym_let] = ACTIONS(3506), - [anon_sym_const] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3506), - [anon_sym_if] = ACTIONS(3506), - [anon_sym_switch] = ACTIONS(3506), - [anon_sym_for] = ACTIONS(3506), - [anon_sym_LPAREN] = ACTIONS(3506), - [anon_sym_await] = ACTIONS(3506), - [anon_sym_of] = ACTIONS(3506), - [anon_sym_while] = ACTIONS(3506), - [anon_sym_do] = ACTIONS(3506), - [anon_sym_try] = ACTIONS(3506), - [anon_sym_break] = ACTIONS(3506), - [anon_sym_continue] = ACTIONS(3506), - [anon_sym_debugger] = ACTIONS(3506), - [anon_sym_return] = ACTIONS(3506), - [anon_sym_throw] = ACTIONS(3506), - [anon_sym_SEMI] = ACTIONS(3506), - [anon_sym_case] = ACTIONS(3506), - [anon_sym_yield] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(3506), - [anon_sym_LTtemplate_GT] = ACTIONS(3506), - [anon_sym_DQUOTE] = ACTIONS(3506), - [anon_sym_SQUOTE] = ACTIONS(3506), - [anon_sym_class] = ACTIONS(3506), - [anon_sym_async] = ACTIONS(3506), - [anon_sym_function] = ACTIONS(3506), - [anon_sym_new] = ACTIONS(3506), - [anon_sym_using] = ACTIONS(3506), - [anon_sym_PLUS] = ACTIONS(3506), - [anon_sym_DASH] = ACTIONS(3506), - [anon_sym_SLASH] = ACTIONS(3506), - [anon_sym_LT] = ACTIONS(3506), - [anon_sym_TILDE] = ACTIONS(3506), - [anon_sym_void] = ACTIONS(3506), - [anon_sym_delete] = ACTIONS(3506), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3506), - [sym_number] = ACTIONS(3506), - [sym_private_property_identifier] = ACTIONS(3506), - [sym_this] = ACTIONS(3506), - [sym_super] = ACTIONS(3506), - [sym_true] = ACTIONS(3506), - [sym_false] = ACTIONS(3506), - [sym_null] = ACTIONS(3506), - [sym_undefined] = ACTIONS(3506), - [anon_sym_AT] = ACTIONS(3506), - [anon_sym_static] = ACTIONS(3506), - [anon_sym_readonly] = ACTIONS(3506), - [anon_sym_get] = ACTIONS(3506), - [anon_sym_set] = ACTIONS(3506), - [anon_sym_declare] = ACTIONS(3506), - [anon_sym_public] = ACTIONS(3506), - [anon_sym_private] = ACTIONS(3506), - [anon_sym_protected] = ACTIONS(3506), - [anon_sym_override] = ACTIONS(3506), - [anon_sym_module] = ACTIONS(3506), - [anon_sym_any] = ACTIONS(3506), - [anon_sym_number] = ACTIONS(3506), - [anon_sym_boolean] = ACTIONS(3506), - [anon_sym_string] = ACTIONS(3506), - [anon_sym_symbol] = ACTIONS(3506), - [anon_sym_object] = ACTIONS(3506), - [anon_sym_property] = ACTIONS(3506), - [anon_sym_signal] = ACTIONS(3506), - [anon_sym_on] = ACTIONS(3506), - [anon_sym_required] = ACTIONS(3506), - [anon_sym_component] = ACTIONS(3506), - [anon_sym_abstract] = ACTIONS(3506), - [anon_sym_interface] = ACTIONS(3506), - [anon_sym_enum] = ACTIONS(3506), + [1258] = { + [sym_comment] = STATE(1258), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_default] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_case] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1300] = { - [sym_comment] = STATE(1300), - [sym_identifier] = ACTIONS(3518), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_default] = ACTIONS(3518), - [anon_sym_type] = ACTIONS(3518), - [anon_sym_namespace] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_typeof] = ACTIONS(3518), - [anon_sym_import] = ACTIONS(3518), - [anon_sym_from] = ACTIONS(3518), - [anon_sym_with] = ACTIONS(3518), - [anon_sym_var] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_BANG] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_switch] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_await] = ACTIONS(3518), - [anon_sym_of] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_debugger] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_throw] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_case] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LTtemplate_GT] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [anon_sym_SQUOTE] = ACTIONS(3518), - [anon_sym_class] = ACTIONS(3518), - [anon_sym_async] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3518), - [anon_sym_using] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_TILDE] = ACTIONS(3518), - [anon_sym_void] = ACTIONS(3518), - [anon_sym_delete] = ACTIONS(3518), - [anon_sym_PLUS_PLUS] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), + [1259] = { + [sym_comment] = STATE(1259), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_default] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_RBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_from] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_of] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_case] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3518), - [sym_number] = ACTIONS(3518), - [sym_private_property_identifier] = ACTIONS(3518), - [sym_this] = ACTIONS(3518), - [sym_super] = ACTIONS(3518), - [sym_true] = ACTIONS(3518), - [sym_false] = ACTIONS(3518), - [sym_null] = ACTIONS(3518), - [sym_undefined] = ACTIONS(3518), - [anon_sym_AT] = ACTIONS(3518), - [anon_sym_static] = ACTIONS(3518), - [anon_sym_readonly] = ACTIONS(3518), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3518), - [anon_sym_declare] = ACTIONS(3518), - [anon_sym_public] = ACTIONS(3518), - [anon_sym_private] = ACTIONS(3518), - [anon_sym_protected] = ACTIONS(3518), - [anon_sym_override] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_any] = ACTIONS(3518), - [anon_sym_number] = ACTIONS(3518), - [anon_sym_boolean] = ACTIONS(3518), - [anon_sym_string] = ACTIONS(3518), - [anon_sym_symbol] = ACTIONS(3518), - [anon_sym_object] = ACTIONS(3518), - [anon_sym_property] = ACTIONS(3518), - [anon_sym_signal] = ACTIONS(3518), - [anon_sym_on] = ACTIONS(3518), - [anon_sym_required] = ACTIONS(3518), - [anon_sym_component] = ACTIONS(3518), - [anon_sym_abstract] = ACTIONS(3518), - [anon_sym_interface] = ACTIONS(3518), - [anon_sym_enum] = ACTIONS(3518), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_property] = ACTIONS(3616), + [anon_sym_signal] = ACTIONS(3616), + [anon_sym_on] = ACTIONS(3616), + [anon_sym_required] = ACTIONS(3616), + [anon_sym_component] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), [sym_html_comment] = ACTIONS(5), }, - [1301] = { - [sym_comment] = STATE(1301), - [sym_identifier] = ACTIONS(3578), - [anon_sym_export] = ACTIONS(3578), - [anon_sym_default] = ACTIONS(3578), - [anon_sym_type] = ACTIONS(3578), - [anon_sym_namespace] = ACTIONS(3578), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_RBRACE] = ACTIONS(3578), - [anon_sym_typeof] = ACTIONS(3578), - [anon_sym_import] = ACTIONS(3578), - [anon_sym_from] = ACTIONS(3578), - [anon_sym_with] = ACTIONS(3578), - [anon_sym_var] = ACTIONS(3578), - [anon_sym_let] = ACTIONS(3578), - [anon_sym_const] = ACTIONS(3578), - [anon_sym_BANG] = ACTIONS(3578), - [anon_sym_if] = ACTIONS(3578), - [anon_sym_switch] = ACTIONS(3578), - [anon_sym_for] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_await] = ACTIONS(3578), - [anon_sym_of] = ACTIONS(3578), - [anon_sym_while] = ACTIONS(3578), - [anon_sym_do] = ACTIONS(3578), - [anon_sym_try] = ACTIONS(3578), - [anon_sym_break] = ACTIONS(3578), - [anon_sym_continue] = ACTIONS(3578), - [anon_sym_debugger] = ACTIONS(3578), - [anon_sym_return] = ACTIONS(3578), - [anon_sym_throw] = ACTIONS(3578), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_case] = ACTIONS(3578), - [anon_sym_yield] = ACTIONS(3578), - [anon_sym_LBRACK] = ACTIONS(3578), - [anon_sym_LTtemplate_GT] = ACTIONS(3578), - [anon_sym_DQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3578), - [anon_sym_class] = ACTIONS(3578), - [anon_sym_async] = ACTIONS(3578), - [anon_sym_function] = ACTIONS(3578), - [anon_sym_new] = ACTIONS(3578), - [anon_sym_using] = ACTIONS(3578), - [anon_sym_PLUS] = ACTIONS(3578), - [anon_sym_DASH] = ACTIONS(3578), - [anon_sym_SLASH] = ACTIONS(3578), - [anon_sym_LT] = ACTIONS(3578), - [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_void] = ACTIONS(3578), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_DASH_DASH] = ACTIONS(3578), + [1260] = { + [sym_comment] = STATE(1260), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_default] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_case] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3578), - [sym_number] = ACTIONS(3578), - [sym_private_property_identifier] = ACTIONS(3578), - [sym_this] = ACTIONS(3578), - [sym_super] = ACTIONS(3578), - [sym_true] = ACTIONS(3578), - [sym_false] = ACTIONS(3578), - [sym_null] = ACTIONS(3578), - [sym_undefined] = ACTIONS(3578), - [anon_sym_AT] = ACTIONS(3578), - [anon_sym_static] = ACTIONS(3578), - [anon_sym_readonly] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(3578), - [anon_sym_set] = ACTIONS(3578), - [anon_sym_declare] = ACTIONS(3578), - [anon_sym_public] = ACTIONS(3578), - [anon_sym_private] = ACTIONS(3578), - [anon_sym_protected] = ACTIONS(3578), - [anon_sym_override] = ACTIONS(3578), - [anon_sym_module] = ACTIONS(3578), - [anon_sym_any] = ACTIONS(3578), - [anon_sym_number] = ACTIONS(3578), - [anon_sym_boolean] = ACTIONS(3578), - [anon_sym_string] = ACTIONS(3578), - [anon_sym_symbol] = ACTIONS(3578), - [anon_sym_object] = ACTIONS(3578), - [anon_sym_property] = ACTIONS(3578), - [anon_sym_signal] = ACTIONS(3578), - [anon_sym_on] = ACTIONS(3578), - [anon_sym_required] = ACTIONS(3578), - [anon_sym_component] = ACTIONS(3578), - [anon_sym_abstract] = ACTIONS(3578), - [anon_sym_interface] = ACTIONS(3578), - [anon_sym_enum] = ACTIONS(3578), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), [sym_html_comment] = ACTIONS(5), }, - [1302] = { - [sym_comment] = STATE(1302), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_case] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), + [1261] = { + [sym_comment] = STATE(1261), + [sym_identifier] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_default] = ACTIONS(3520), + [anon_sym_type] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_from] = ACTIONS(3520), + [anon_sym_with] = ACTIONS(3520), + [anon_sym_var] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3520), + [anon_sym_of] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_debugger] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_case] = ACTIONS(3520), + [anon_sym_yield] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_LTtemplate_GT] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_async] = ACTIONS(3520), + [anon_sym_function] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3520), + [anon_sym_LT] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_void] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3520), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2466), - [sym_number] = ACTIONS(2466), - [sym_private_property_identifier] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_number] = ACTIONS(3520), + [sym_private_property_identifier] = ACTIONS(3520), + [sym_this] = ACTIONS(3520), + [sym_super] = ACTIONS(3520), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [sym_null] = ACTIONS(3520), + [sym_undefined] = ACTIONS(3520), + [anon_sym_AT] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_readonly] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3520), + [anon_sym_declare] = ACTIONS(3520), + [anon_sym_public] = ACTIONS(3520), + [anon_sym_private] = ACTIONS(3520), + [anon_sym_protected] = ACTIONS(3520), + [anon_sym_override] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_any] = ACTIONS(3520), + [anon_sym_number] = ACTIONS(3520), + [anon_sym_boolean] = ACTIONS(3520), + [anon_sym_string] = ACTIONS(3520), + [anon_sym_symbol] = ACTIONS(3520), + [anon_sym_object] = ACTIONS(3520), + [anon_sym_property] = ACTIONS(3520), + [anon_sym_signal] = ACTIONS(3520), + [anon_sym_on] = ACTIONS(3520), + [anon_sym_required] = ACTIONS(3520), + [anon_sym_component] = ACTIONS(3520), + [anon_sym_abstract] = ACTIONS(3520), + [anon_sym_interface] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), [sym_html_comment] = ACTIONS(5), }, - [1303] = { - [sym_comment] = STATE(1303), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_default] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_case] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), + [1262] = { + [sym_comment] = STATE(1262), + [sym_identifier] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_type] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_from] = ACTIONS(3652), + [anon_sym_with] = ACTIONS(3652), + [anon_sym_var] = ACTIONS(3652), + [anon_sym_let] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_await] = ACTIONS(3652), + [anon_sym_of] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_debugger] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_yield] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LTtemplate_GT] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_async] = ACTIONS(3652), + [anon_sym_function] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_SLASH] = ACTIONS(3652), + [anon_sym_LT] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3652), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), + [anon_sym_BQUOTE] = ACTIONS(3652), + [sym_number] = ACTIONS(3652), + [sym_private_property_identifier] = ACTIONS(3652), + [sym_this] = ACTIONS(3652), + [sym_super] = ACTIONS(3652), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [sym_null] = ACTIONS(3652), + [sym_undefined] = ACTIONS(3652), + [anon_sym_AT] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_readonly] = ACTIONS(3652), + [anon_sym_get] = ACTIONS(3652), + [anon_sym_set] = ACTIONS(3652), + [anon_sym_declare] = ACTIONS(3652), + [anon_sym_public] = ACTIONS(3652), + [anon_sym_private] = ACTIONS(3652), + [anon_sym_protected] = ACTIONS(3652), + [anon_sym_override] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_any] = ACTIONS(3652), + [anon_sym_number] = ACTIONS(3652), + [anon_sym_boolean] = ACTIONS(3652), + [anon_sym_string] = ACTIONS(3652), + [anon_sym_symbol] = ACTIONS(3652), + [anon_sym_object] = ACTIONS(3652), + [anon_sym_property] = ACTIONS(3652), + [anon_sym_signal] = ACTIONS(3652), + [anon_sym_on] = ACTIONS(3652), + [anon_sym_required] = ACTIONS(3652), + [anon_sym_component] = ACTIONS(3652), + [anon_sym_abstract] = ACTIONS(3652), + [anon_sym_interface] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), [sym_html_comment] = ACTIONS(5), }, - [1304] = { - [sym_comment] = STATE(1304), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_default] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_case] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), + [1263] = { + [sym_comment] = STATE(1263), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1305] = { - [sym_comment] = STATE(1305), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_default] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_case] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), + [1264] = { + [sym_comment] = STATE(1264), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1306] = { - [sym_comment] = STATE(1306), - [sym_identifier] = ACTIONS(3522), - [anon_sym_export] = ACTIONS(3522), - [anon_sym_default] = ACTIONS(3522), - [anon_sym_type] = ACTIONS(3522), - [anon_sym_namespace] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_RBRACE] = ACTIONS(3522), - [anon_sym_typeof] = ACTIONS(3522), - [anon_sym_import] = ACTIONS(3522), - [anon_sym_from] = ACTIONS(3522), - [anon_sym_with] = ACTIONS(3522), - [anon_sym_var] = ACTIONS(3522), - [anon_sym_let] = ACTIONS(3522), - [anon_sym_const] = ACTIONS(3522), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_if] = ACTIONS(3522), - [anon_sym_switch] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3522), - [anon_sym_await] = ACTIONS(3522), - [anon_sym_of] = ACTIONS(3522), - [anon_sym_while] = ACTIONS(3522), - [anon_sym_do] = ACTIONS(3522), - [anon_sym_try] = ACTIONS(3522), - [anon_sym_break] = ACTIONS(3522), - [anon_sym_continue] = ACTIONS(3522), - [anon_sym_debugger] = ACTIONS(3522), - [anon_sym_return] = ACTIONS(3522), - [anon_sym_throw] = ACTIONS(3522), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_case] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3522), - [anon_sym_LBRACK] = ACTIONS(3522), - [anon_sym_LTtemplate_GT] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [anon_sym_SQUOTE] = ACTIONS(3522), - [anon_sym_class] = ACTIONS(3522), - [anon_sym_async] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3522), - [anon_sym_using] = ACTIONS(3522), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_SLASH] = ACTIONS(3522), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_void] = ACTIONS(3522), - [anon_sym_delete] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3522), + [1265] = { + [sym_comment] = STATE(1265), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3522), - [sym_number] = ACTIONS(3522), - [sym_private_property_identifier] = ACTIONS(3522), - [sym_this] = ACTIONS(3522), - [sym_super] = ACTIONS(3522), - [sym_true] = ACTIONS(3522), - [sym_false] = ACTIONS(3522), - [sym_null] = ACTIONS(3522), - [sym_undefined] = ACTIONS(3522), - [anon_sym_AT] = ACTIONS(3522), - [anon_sym_static] = ACTIONS(3522), - [anon_sym_readonly] = ACTIONS(3522), - [anon_sym_get] = ACTIONS(3522), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_declare] = ACTIONS(3522), - [anon_sym_public] = ACTIONS(3522), - [anon_sym_private] = ACTIONS(3522), - [anon_sym_protected] = ACTIONS(3522), - [anon_sym_override] = ACTIONS(3522), - [anon_sym_module] = ACTIONS(3522), - [anon_sym_any] = ACTIONS(3522), - [anon_sym_number] = ACTIONS(3522), - [anon_sym_boolean] = ACTIONS(3522), - [anon_sym_string] = ACTIONS(3522), - [anon_sym_symbol] = ACTIONS(3522), - [anon_sym_object] = ACTIONS(3522), - [anon_sym_property] = ACTIONS(3522), - [anon_sym_signal] = ACTIONS(3522), - [anon_sym_on] = ACTIONS(3522), - [anon_sym_required] = ACTIONS(3522), - [anon_sym_component] = ACTIONS(3522), - [anon_sym_abstract] = ACTIONS(3522), - [anon_sym_interface] = ACTIONS(3522), - [anon_sym_enum] = ACTIONS(3522), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1307] = { - [sym_comment] = STATE(1307), - [sym_identifier] = ACTIONS(3584), - [anon_sym_export] = ACTIONS(3584), - [anon_sym_default] = ACTIONS(3584), - [anon_sym_type] = ACTIONS(3584), - [anon_sym_namespace] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3584), - [anon_sym_RBRACE] = ACTIONS(3584), - [anon_sym_typeof] = ACTIONS(3584), - [anon_sym_import] = ACTIONS(3584), - [anon_sym_from] = ACTIONS(3584), - [anon_sym_with] = ACTIONS(3584), - [anon_sym_var] = ACTIONS(3584), - [anon_sym_let] = ACTIONS(3584), - [anon_sym_const] = ACTIONS(3584), - [anon_sym_BANG] = ACTIONS(3584), - [anon_sym_if] = ACTIONS(3584), - [anon_sym_switch] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3584), - [anon_sym_await] = ACTIONS(3584), - [anon_sym_of] = ACTIONS(3584), - [anon_sym_while] = ACTIONS(3584), - [anon_sym_do] = ACTIONS(3584), - [anon_sym_try] = ACTIONS(3584), - [anon_sym_break] = ACTIONS(3584), - [anon_sym_continue] = ACTIONS(3584), - [anon_sym_debugger] = ACTIONS(3584), - [anon_sym_return] = ACTIONS(3584), - [anon_sym_throw] = ACTIONS(3584), - [anon_sym_SEMI] = ACTIONS(3584), - [anon_sym_case] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(3584), - [anon_sym_LTtemplate_GT] = ACTIONS(3584), - [anon_sym_DQUOTE] = ACTIONS(3584), - [anon_sym_SQUOTE] = ACTIONS(3584), - [anon_sym_class] = ACTIONS(3584), - [anon_sym_async] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3584), - [anon_sym_using] = ACTIONS(3584), - [anon_sym_PLUS] = ACTIONS(3584), - [anon_sym_DASH] = ACTIONS(3584), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_TILDE] = ACTIONS(3584), - [anon_sym_void] = ACTIONS(3584), - [anon_sym_delete] = ACTIONS(3584), - [anon_sym_PLUS_PLUS] = ACTIONS(3584), - [anon_sym_DASH_DASH] = ACTIONS(3584), + [1266] = { + [sym_comment] = STATE(1266), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3584), - [sym_number] = ACTIONS(3584), - [sym_private_property_identifier] = ACTIONS(3584), - [sym_this] = ACTIONS(3584), - [sym_super] = ACTIONS(3584), - [sym_true] = ACTIONS(3584), - [sym_false] = ACTIONS(3584), - [sym_null] = ACTIONS(3584), - [sym_undefined] = ACTIONS(3584), - [anon_sym_AT] = ACTIONS(3584), - [anon_sym_static] = ACTIONS(3584), - [anon_sym_readonly] = ACTIONS(3584), - [anon_sym_get] = ACTIONS(3584), - [anon_sym_set] = ACTIONS(3584), - [anon_sym_declare] = ACTIONS(3584), - [anon_sym_public] = ACTIONS(3584), - [anon_sym_private] = ACTIONS(3584), - [anon_sym_protected] = ACTIONS(3584), - [anon_sym_override] = ACTIONS(3584), - [anon_sym_module] = ACTIONS(3584), - [anon_sym_any] = ACTIONS(3584), - [anon_sym_number] = ACTIONS(3584), - [anon_sym_boolean] = ACTIONS(3584), - [anon_sym_string] = ACTIONS(3584), - [anon_sym_symbol] = ACTIONS(3584), - [anon_sym_object] = ACTIONS(3584), - [anon_sym_property] = ACTIONS(3584), - [anon_sym_signal] = ACTIONS(3584), - [anon_sym_on] = ACTIONS(3584), - [anon_sym_required] = ACTIONS(3584), - [anon_sym_component] = ACTIONS(3584), - [anon_sym_abstract] = ACTIONS(3584), - [anon_sym_interface] = ACTIONS(3584), - [anon_sym_enum] = ACTIONS(3584), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1308] = { - [sym_comment] = STATE(1308), - [sym_identifier] = ACTIONS(3586), - [anon_sym_export] = ACTIONS(3586), - [anon_sym_default] = ACTIONS(3586), - [anon_sym_type] = ACTIONS(3586), - [anon_sym_namespace] = ACTIONS(3586), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_RBRACE] = ACTIONS(3586), - [anon_sym_typeof] = ACTIONS(3586), - [anon_sym_import] = ACTIONS(3586), - [anon_sym_from] = ACTIONS(3586), - [anon_sym_with] = ACTIONS(3586), - [anon_sym_var] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_const] = ACTIONS(3586), - [anon_sym_BANG] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_switch] = ACTIONS(3586), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_await] = ACTIONS(3586), - [anon_sym_of] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_break] = ACTIONS(3586), - [anon_sym_continue] = ACTIONS(3586), - [anon_sym_debugger] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_throw] = ACTIONS(3586), - [anon_sym_SEMI] = ACTIONS(3586), - [anon_sym_case] = ACTIONS(3586), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LTtemplate_GT] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_SQUOTE] = ACTIONS(3586), - [anon_sym_class] = ACTIONS(3586), - [anon_sym_async] = ACTIONS(3586), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_using] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_SLASH] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3586), - [anon_sym_void] = ACTIONS(3586), - [anon_sym_delete] = ACTIONS(3586), - [anon_sym_PLUS_PLUS] = ACTIONS(3586), - [anon_sym_DASH_DASH] = ACTIONS(3586), + [1267] = { + [sym_comment] = STATE(1267), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_default] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_case] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3586), - [sym_number] = ACTIONS(3586), - [sym_private_property_identifier] = ACTIONS(3586), - [sym_this] = ACTIONS(3586), - [sym_super] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_null] = ACTIONS(3586), - [sym_undefined] = ACTIONS(3586), - [anon_sym_AT] = ACTIONS(3586), - [anon_sym_static] = ACTIONS(3586), - [anon_sym_readonly] = ACTIONS(3586), - [anon_sym_get] = ACTIONS(3586), - [anon_sym_set] = ACTIONS(3586), - [anon_sym_declare] = ACTIONS(3586), - [anon_sym_public] = ACTIONS(3586), - [anon_sym_private] = ACTIONS(3586), - [anon_sym_protected] = ACTIONS(3586), - [anon_sym_override] = ACTIONS(3586), - [anon_sym_module] = ACTIONS(3586), - [anon_sym_any] = ACTIONS(3586), - [anon_sym_number] = ACTIONS(3586), - [anon_sym_boolean] = ACTIONS(3586), - [anon_sym_string] = ACTIONS(3586), - [anon_sym_symbol] = ACTIONS(3586), - [anon_sym_object] = ACTIONS(3586), - [anon_sym_property] = ACTIONS(3586), - [anon_sym_signal] = ACTIONS(3586), - [anon_sym_on] = ACTIONS(3586), - [anon_sym_required] = ACTIONS(3586), - [anon_sym_component] = ACTIONS(3586), - [anon_sym_abstract] = ACTIONS(3586), - [anon_sym_interface] = ACTIONS(3586), - [anon_sym_enum] = ACTIONS(3586), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), [sym_html_comment] = ACTIONS(5), }, - [1309] = { - [sym_comment] = STATE(1309), - [sym_identifier] = ACTIONS(3588), - [anon_sym_export] = ACTIONS(3588), - [anon_sym_default] = ACTIONS(3588), - [anon_sym_type] = ACTIONS(3588), - [anon_sym_namespace] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3588), - [anon_sym_RBRACE] = ACTIONS(3588), - [anon_sym_typeof] = ACTIONS(3588), - [anon_sym_import] = ACTIONS(3588), - [anon_sym_from] = ACTIONS(3588), - [anon_sym_with] = ACTIONS(3588), - [anon_sym_var] = ACTIONS(3588), - [anon_sym_let] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3588), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_switch] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3588), - [anon_sym_await] = ACTIONS(3588), - [anon_sym_of] = ACTIONS(3588), - [anon_sym_while] = ACTIONS(3588), - [anon_sym_do] = ACTIONS(3588), - [anon_sym_try] = ACTIONS(3588), - [anon_sym_break] = ACTIONS(3588), - [anon_sym_continue] = ACTIONS(3588), - [anon_sym_debugger] = ACTIONS(3588), - [anon_sym_return] = ACTIONS(3588), - [anon_sym_throw] = ACTIONS(3588), - [anon_sym_SEMI] = ACTIONS(3588), - [anon_sym_case] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3588), - [anon_sym_LBRACK] = ACTIONS(3588), - [anon_sym_LTtemplate_GT] = ACTIONS(3588), - [anon_sym_DQUOTE] = ACTIONS(3588), - [anon_sym_SQUOTE] = ACTIONS(3588), - [anon_sym_class] = ACTIONS(3588), - [anon_sym_async] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3588), - [anon_sym_using] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_TILDE] = ACTIONS(3588), - [anon_sym_void] = ACTIONS(3588), - [anon_sym_delete] = ACTIONS(3588), - [anon_sym_PLUS_PLUS] = ACTIONS(3588), - [anon_sym_DASH_DASH] = ACTIONS(3588), + [1268] = { + [sym_comment] = STATE(1268), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_case] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3588), - [sym_number] = ACTIONS(3588), - [sym_private_property_identifier] = ACTIONS(3588), - [sym_this] = ACTIONS(3588), - [sym_super] = ACTIONS(3588), - [sym_true] = ACTIONS(3588), - [sym_false] = ACTIONS(3588), - [sym_null] = ACTIONS(3588), - [sym_undefined] = ACTIONS(3588), - [anon_sym_AT] = ACTIONS(3588), - [anon_sym_static] = ACTIONS(3588), - [anon_sym_readonly] = ACTIONS(3588), - [anon_sym_get] = ACTIONS(3588), - [anon_sym_set] = ACTIONS(3588), - [anon_sym_declare] = ACTIONS(3588), - [anon_sym_public] = ACTIONS(3588), - [anon_sym_private] = ACTIONS(3588), - [anon_sym_protected] = ACTIONS(3588), - [anon_sym_override] = ACTIONS(3588), - [anon_sym_module] = ACTIONS(3588), - [anon_sym_any] = ACTIONS(3588), - [anon_sym_number] = ACTIONS(3588), - [anon_sym_boolean] = ACTIONS(3588), - [anon_sym_string] = ACTIONS(3588), - [anon_sym_symbol] = ACTIONS(3588), - [anon_sym_object] = ACTIONS(3588), - [anon_sym_property] = ACTIONS(3588), - [anon_sym_signal] = ACTIONS(3588), - [anon_sym_on] = ACTIONS(3588), - [anon_sym_required] = ACTIONS(3588), - [anon_sym_component] = ACTIONS(3588), - [anon_sym_abstract] = ACTIONS(3588), - [anon_sym_interface] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), [sym_html_comment] = ACTIONS(5), }, - [1310] = { - [sym_comment] = STATE(1310), - [sym_identifier] = ACTIONS(3590), - [anon_sym_export] = ACTIONS(3590), - [anon_sym_default] = ACTIONS(3590), - [anon_sym_type] = ACTIONS(3590), - [anon_sym_namespace] = ACTIONS(3590), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_RBRACE] = ACTIONS(3590), - [anon_sym_typeof] = ACTIONS(3590), - [anon_sym_import] = ACTIONS(3590), - [anon_sym_from] = ACTIONS(3590), - [anon_sym_with] = ACTIONS(3590), - [anon_sym_var] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_const] = ACTIONS(3590), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_switch] = ACTIONS(3590), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_await] = ACTIONS(3590), - [anon_sym_of] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_break] = ACTIONS(3590), - [anon_sym_continue] = ACTIONS(3590), - [anon_sym_debugger] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_throw] = ACTIONS(3590), - [anon_sym_SEMI] = ACTIONS(3590), - [anon_sym_case] = ACTIONS(3590), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LTtemplate_GT] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_SQUOTE] = ACTIONS(3590), - [anon_sym_class] = ACTIONS(3590), - [anon_sym_async] = ACTIONS(3590), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_using] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_SLASH] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_void] = ACTIONS(3590), - [anon_sym_delete] = ACTIONS(3590), - [anon_sym_PLUS_PLUS] = ACTIONS(3590), - [anon_sym_DASH_DASH] = ACTIONS(3590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3590), - [sym_number] = ACTIONS(3590), - [sym_private_property_identifier] = ACTIONS(3590), - [sym_this] = ACTIONS(3590), - [sym_super] = ACTIONS(3590), - [sym_true] = ACTIONS(3590), - [sym_false] = ACTIONS(3590), - [sym_null] = ACTIONS(3590), - [sym_undefined] = ACTIONS(3590), - [anon_sym_AT] = ACTIONS(3590), - [anon_sym_static] = ACTIONS(3590), - [anon_sym_readonly] = ACTIONS(3590), - [anon_sym_get] = ACTIONS(3590), - [anon_sym_set] = ACTIONS(3590), - [anon_sym_declare] = ACTIONS(3590), - [anon_sym_public] = ACTIONS(3590), - [anon_sym_private] = ACTIONS(3590), - [anon_sym_protected] = ACTIONS(3590), - [anon_sym_override] = ACTIONS(3590), - [anon_sym_module] = ACTIONS(3590), - [anon_sym_any] = ACTIONS(3590), - [anon_sym_number] = ACTIONS(3590), - [anon_sym_boolean] = ACTIONS(3590), - [anon_sym_string] = ACTIONS(3590), - [anon_sym_symbol] = ACTIONS(3590), - [anon_sym_object] = ACTIONS(3590), - [anon_sym_property] = ACTIONS(3590), - [anon_sym_signal] = ACTIONS(3590), - [anon_sym_on] = ACTIONS(3590), - [anon_sym_required] = ACTIONS(3590), - [anon_sym_component] = ACTIONS(3590), - [anon_sym_abstract] = ACTIONS(3590), - [anon_sym_interface] = ACTIONS(3590), - [anon_sym_enum] = ACTIONS(3590), - [sym_html_comment] = ACTIONS(5), - }, - [1311] = { - [sym_comment] = STATE(1311), - [sym_identifier] = ACTIONS(3592), - [anon_sym_export] = ACTIONS(3592), - [anon_sym_default] = ACTIONS(3592), - [anon_sym_type] = ACTIONS(3592), - [anon_sym_namespace] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_RBRACE] = ACTIONS(3592), - [anon_sym_typeof] = ACTIONS(3592), - [anon_sym_import] = ACTIONS(3592), - [anon_sym_from] = ACTIONS(3592), - [anon_sym_with] = ACTIONS(3592), - [anon_sym_var] = ACTIONS(3592), - [anon_sym_let] = ACTIONS(3592), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_BANG] = ACTIONS(3592), - [anon_sym_if] = ACTIONS(3592), - [anon_sym_switch] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3592), - [anon_sym_await] = ACTIONS(3592), - [anon_sym_of] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3592), - [anon_sym_do] = ACTIONS(3592), - [anon_sym_try] = ACTIONS(3592), - [anon_sym_break] = ACTIONS(3592), - [anon_sym_continue] = ACTIONS(3592), - [anon_sym_debugger] = ACTIONS(3592), - [anon_sym_return] = ACTIONS(3592), - [anon_sym_throw] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(3592), - [anon_sym_case] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3592), - [anon_sym_LTtemplate_GT] = ACTIONS(3592), - [anon_sym_DQUOTE] = ACTIONS(3592), - [anon_sym_SQUOTE] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_async] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3592), - [anon_sym_using] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_SLASH] = ACTIONS(3592), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3592), - [anon_sym_void] = ACTIONS(3592), - [anon_sym_delete] = ACTIONS(3592), - [anon_sym_PLUS_PLUS] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3592), + [1269] = { + [sym_comment] = STATE(1269), + [sym_identifier] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_default] = ACTIONS(3626), + [anon_sym_type] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_typeof] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3626), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3626), + [anon_sym_await] = ACTIONS(3626), + [anon_sym_of] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_debugger] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_case] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_LTtemplate_GT] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_async] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_SLASH] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_void] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3626), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3592), - [sym_number] = ACTIONS(3592), - [sym_private_property_identifier] = ACTIONS(3592), - [sym_this] = ACTIONS(3592), - [sym_super] = ACTIONS(3592), - [sym_true] = ACTIONS(3592), - [sym_false] = ACTIONS(3592), - [sym_null] = ACTIONS(3592), - [sym_undefined] = ACTIONS(3592), - [anon_sym_AT] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_readonly] = ACTIONS(3592), - [anon_sym_get] = ACTIONS(3592), - [anon_sym_set] = ACTIONS(3592), - [anon_sym_declare] = ACTIONS(3592), - [anon_sym_public] = ACTIONS(3592), - [anon_sym_private] = ACTIONS(3592), - [anon_sym_protected] = ACTIONS(3592), - [anon_sym_override] = ACTIONS(3592), - [anon_sym_module] = ACTIONS(3592), - [anon_sym_any] = ACTIONS(3592), - [anon_sym_number] = ACTIONS(3592), - [anon_sym_boolean] = ACTIONS(3592), - [anon_sym_string] = ACTIONS(3592), - [anon_sym_symbol] = ACTIONS(3592), - [anon_sym_object] = ACTIONS(3592), - [anon_sym_property] = ACTIONS(3592), - [anon_sym_signal] = ACTIONS(3592), - [anon_sym_on] = ACTIONS(3592), - [anon_sym_required] = ACTIONS(3592), - [anon_sym_component] = ACTIONS(3592), - [anon_sym_abstract] = ACTIONS(3592), - [anon_sym_interface] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), + [anon_sym_BQUOTE] = ACTIONS(3626), + [sym_number] = ACTIONS(3626), + [sym_private_property_identifier] = ACTIONS(3626), + [sym_this] = ACTIONS(3626), + [sym_super] = ACTIONS(3626), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [sym_null] = ACTIONS(3626), + [sym_undefined] = ACTIONS(3626), + [anon_sym_AT] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_readonly] = ACTIONS(3626), + [anon_sym_get] = ACTIONS(3626), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_declare] = ACTIONS(3626), + [anon_sym_public] = ACTIONS(3626), + [anon_sym_private] = ACTIONS(3626), + [anon_sym_protected] = ACTIONS(3626), + [anon_sym_override] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_any] = ACTIONS(3626), + [anon_sym_number] = ACTIONS(3626), + [anon_sym_boolean] = ACTIONS(3626), + [anon_sym_string] = ACTIONS(3626), + [anon_sym_symbol] = ACTIONS(3626), + [anon_sym_object] = ACTIONS(3626), + [anon_sym_property] = ACTIONS(3626), + [anon_sym_signal] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_required] = ACTIONS(3626), + [anon_sym_component] = ACTIONS(3626), + [anon_sym_abstract] = ACTIONS(3626), + [anon_sym_interface] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), [sym_html_comment] = ACTIONS(5), }, - [1312] = { - [sym_comment] = STATE(1312), - [sym_identifier] = ACTIONS(3488), - [anon_sym_export] = ACTIONS(3488), - [anon_sym_default] = ACTIONS(3488), - [anon_sym_type] = ACTIONS(3488), - [anon_sym_namespace] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_RBRACE] = ACTIONS(3488), - [anon_sym_typeof] = ACTIONS(3488), - [anon_sym_import] = ACTIONS(3488), - [anon_sym_from] = ACTIONS(3488), - [anon_sym_with] = ACTIONS(3488), - [anon_sym_var] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_const] = ACTIONS(3488), - [anon_sym_BANG] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_switch] = ACTIONS(3488), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_await] = ACTIONS(3488), - [anon_sym_of] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_break] = ACTIONS(3488), - [anon_sym_continue] = ACTIONS(3488), - [anon_sym_debugger] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_throw] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym_case] = ACTIONS(3488), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LTtemplate_GT] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_SQUOTE] = ACTIONS(3488), - [anon_sym_class] = ACTIONS(3488), - [anon_sym_async] = ACTIONS(3488), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_using] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_SLASH] = ACTIONS(3488), - [anon_sym_LT] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3488), - [anon_sym_void] = ACTIONS(3488), - [anon_sym_delete] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(3488), - [anon_sym_DASH_DASH] = ACTIONS(3488), + [1270] = { + [sym_comment] = STATE(1270), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3488), - [sym_number] = ACTIONS(3488), - [sym_private_property_identifier] = ACTIONS(3488), - [sym_this] = ACTIONS(3488), - [sym_super] = ACTIONS(3488), - [sym_true] = ACTIONS(3488), - [sym_false] = ACTIONS(3488), - [sym_null] = ACTIONS(3488), - [sym_undefined] = ACTIONS(3488), - [anon_sym_AT] = ACTIONS(3488), - [anon_sym_static] = ACTIONS(3488), - [anon_sym_readonly] = ACTIONS(3488), - [anon_sym_get] = ACTIONS(3488), - [anon_sym_set] = ACTIONS(3488), - [anon_sym_declare] = ACTIONS(3488), - [anon_sym_public] = ACTIONS(3488), - [anon_sym_private] = ACTIONS(3488), - [anon_sym_protected] = ACTIONS(3488), - [anon_sym_override] = ACTIONS(3488), - [anon_sym_module] = ACTIONS(3488), - [anon_sym_any] = ACTIONS(3488), - [anon_sym_number] = ACTIONS(3488), - [anon_sym_boolean] = ACTIONS(3488), - [anon_sym_string] = ACTIONS(3488), - [anon_sym_symbol] = ACTIONS(3488), - [anon_sym_object] = ACTIONS(3488), - [anon_sym_property] = ACTIONS(3488), - [anon_sym_signal] = ACTIONS(3488), - [anon_sym_on] = ACTIONS(3488), - [anon_sym_required] = ACTIONS(3488), - [anon_sym_component] = ACTIONS(3488), - [anon_sym_abstract] = ACTIONS(3488), - [anon_sym_interface] = ACTIONS(3488), - [anon_sym_enum] = ACTIONS(3488), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1313] = { - [sym_comment] = STATE(1313), - [sym_identifier] = ACTIONS(3594), - [anon_sym_export] = ACTIONS(3594), - [anon_sym_default] = ACTIONS(3594), - [anon_sym_type] = ACTIONS(3594), - [anon_sym_namespace] = ACTIONS(3594), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_RBRACE] = ACTIONS(3594), - [anon_sym_typeof] = ACTIONS(3594), - [anon_sym_import] = ACTIONS(3594), - [anon_sym_from] = ACTIONS(3594), - [anon_sym_with] = ACTIONS(3594), - [anon_sym_var] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_const] = ACTIONS(3594), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_switch] = ACTIONS(3594), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_await] = ACTIONS(3594), - [anon_sym_of] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_break] = ACTIONS(3594), - [anon_sym_continue] = ACTIONS(3594), - [anon_sym_debugger] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_throw] = ACTIONS(3594), - [anon_sym_SEMI] = ACTIONS(3594), - [anon_sym_case] = ACTIONS(3594), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LTtemplate_GT] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_SQUOTE] = ACTIONS(3594), - [anon_sym_class] = ACTIONS(3594), - [anon_sym_async] = ACTIONS(3594), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_using] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_SLASH] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3594), - [anon_sym_void] = ACTIONS(3594), - [anon_sym_delete] = ACTIONS(3594), - [anon_sym_PLUS_PLUS] = ACTIONS(3594), - [anon_sym_DASH_DASH] = ACTIONS(3594), + [1271] = { + [sym_comment] = STATE(1271), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_default] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_case] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3594), - [sym_number] = ACTIONS(3594), - [sym_private_property_identifier] = ACTIONS(3594), - [sym_this] = ACTIONS(3594), - [sym_super] = ACTIONS(3594), - [sym_true] = ACTIONS(3594), - [sym_false] = ACTIONS(3594), - [sym_null] = ACTIONS(3594), - [sym_undefined] = ACTIONS(3594), - [anon_sym_AT] = ACTIONS(3594), - [anon_sym_static] = ACTIONS(3594), - [anon_sym_readonly] = ACTIONS(3594), - [anon_sym_get] = ACTIONS(3594), - [anon_sym_set] = ACTIONS(3594), - [anon_sym_declare] = ACTIONS(3594), - [anon_sym_public] = ACTIONS(3594), - [anon_sym_private] = ACTIONS(3594), - [anon_sym_protected] = ACTIONS(3594), - [anon_sym_override] = ACTIONS(3594), - [anon_sym_module] = ACTIONS(3594), - [anon_sym_any] = ACTIONS(3594), - [anon_sym_number] = ACTIONS(3594), - [anon_sym_boolean] = ACTIONS(3594), - [anon_sym_string] = ACTIONS(3594), - [anon_sym_symbol] = ACTIONS(3594), - [anon_sym_object] = ACTIONS(3594), - [anon_sym_property] = ACTIONS(3594), - [anon_sym_signal] = ACTIONS(3594), - [anon_sym_on] = ACTIONS(3594), - [anon_sym_required] = ACTIONS(3594), - [anon_sym_component] = ACTIONS(3594), - [anon_sym_abstract] = ACTIONS(3594), - [anon_sym_interface] = ACTIONS(3594), - [anon_sym_enum] = ACTIONS(3594), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1314] = { - [sym_comment] = STATE(1314), - [sym_identifier] = ACTIONS(3596), - [anon_sym_export] = ACTIONS(3596), - [anon_sym_default] = ACTIONS(3596), - [anon_sym_type] = ACTIONS(3596), - [anon_sym_namespace] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3596), - [anon_sym_RBRACE] = ACTIONS(3596), - [anon_sym_typeof] = ACTIONS(3596), - [anon_sym_import] = ACTIONS(3596), - [anon_sym_from] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_let] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_await] = ACTIONS(3596), - [anon_sym_of] = ACTIONS(3596), - [anon_sym_while] = ACTIONS(3596), - [anon_sym_do] = ACTIONS(3596), - [anon_sym_try] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_debugger] = ACTIONS(3596), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_throw] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3596), - [anon_sym_case] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3596), - [anon_sym_LTtemplate_GT] = ACTIONS(3596), - [anon_sym_DQUOTE] = ACTIONS(3596), - [anon_sym_SQUOTE] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_async] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_using] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_TILDE] = ACTIONS(3596), - [anon_sym_void] = ACTIONS(3596), - [anon_sym_delete] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3596), - [anon_sym_DASH_DASH] = ACTIONS(3596), + [1272] = { + [sym_comment] = STATE(1272), + [sym_identifier] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_default] = ACTIONS(3628), + [anon_sym_type] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_typeof] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_from] = ACTIONS(3628), + [anon_sym_with] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3628), + [anon_sym_let] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_await] = ACTIONS(3628), + [anon_sym_of] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_debugger] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_case] = ACTIONS(3628), + [anon_sym_yield] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_LTtemplate_GT] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_async] = ACTIONS(3628), + [anon_sym_function] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_void] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3596), - [sym_number] = ACTIONS(3596), - [sym_private_property_identifier] = ACTIONS(3596), - [sym_this] = ACTIONS(3596), - [sym_super] = ACTIONS(3596), - [sym_true] = ACTIONS(3596), - [sym_false] = ACTIONS(3596), - [sym_null] = ACTIONS(3596), - [sym_undefined] = ACTIONS(3596), - [anon_sym_AT] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_readonly] = ACTIONS(3596), - [anon_sym_get] = ACTIONS(3596), - [anon_sym_set] = ACTIONS(3596), - [anon_sym_declare] = ACTIONS(3596), - [anon_sym_public] = ACTIONS(3596), - [anon_sym_private] = ACTIONS(3596), - [anon_sym_protected] = ACTIONS(3596), - [anon_sym_override] = ACTIONS(3596), - [anon_sym_module] = ACTIONS(3596), - [anon_sym_any] = ACTIONS(3596), - [anon_sym_number] = ACTIONS(3596), - [anon_sym_boolean] = ACTIONS(3596), - [anon_sym_string] = ACTIONS(3596), - [anon_sym_symbol] = ACTIONS(3596), - [anon_sym_object] = ACTIONS(3596), - [anon_sym_property] = ACTIONS(3596), - [anon_sym_signal] = ACTIONS(3596), - [anon_sym_on] = ACTIONS(3596), - [anon_sym_required] = ACTIONS(3596), - [anon_sym_component] = ACTIONS(3596), - [anon_sym_abstract] = ACTIONS(3596), - [anon_sym_interface] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), + [anon_sym_BQUOTE] = ACTIONS(3628), + [sym_number] = ACTIONS(3628), + [sym_private_property_identifier] = ACTIONS(3628), + [sym_this] = ACTIONS(3628), + [sym_super] = ACTIONS(3628), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [sym_null] = ACTIONS(3628), + [sym_undefined] = ACTIONS(3628), + [anon_sym_AT] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_readonly] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(3628), + [anon_sym_set] = ACTIONS(3628), + [anon_sym_declare] = ACTIONS(3628), + [anon_sym_public] = ACTIONS(3628), + [anon_sym_private] = ACTIONS(3628), + [anon_sym_protected] = ACTIONS(3628), + [anon_sym_override] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_any] = ACTIONS(3628), + [anon_sym_number] = ACTIONS(3628), + [anon_sym_boolean] = ACTIONS(3628), + [anon_sym_string] = ACTIONS(3628), + [anon_sym_symbol] = ACTIONS(3628), + [anon_sym_object] = ACTIONS(3628), + [anon_sym_property] = ACTIONS(3628), + [anon_sym_signal] = ACTIONS(3628), + [anon_sym_on] = ACTIONS(3628), + [anon_sym_required] = ACTIONS(3628), + [anon_sym_component] = ACTIONS(3628), + [anon_sym_abstract] = ACTIONS(3628), + [anon_sym_interface] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), [sym_html_comment] = ACTIONS(5), }, - [1315] = { - [sym_comment] = STATE(1315), - [sym_identifier] = ACTIONS(3596), - [anon_sym_export] = ACTIONS(3596), - [anon_sym_default] = ACTIONS(3596), - [anon_sym_type] = ACTIONS(3596), - [anon_sym_namespace] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3596), - [anon_sym_RBRACE] = ACTIONS(3596), - [anon_sym_typeof] = ACTIONS(3596), - [anon_sym_import] = ACTIONS(3596), - [anon_sym_from] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_let] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_await] = ACTIONS(3596), - [anon_sym_of] = ACTIONS(3596), - [anon_sym_while] = ACTIONS(3596), - [anon_sym_do] = ACTIONS(3596), - [anon_sym_try] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_debugger] = ACTIONS(3596), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_throw] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3596), - [anon_sym_case] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3596), - [anon_sym_LTtemplate_GT] = ACTIONS(3596), - [anon_sym_DQUOTE] = ACTIONS(3596), - [anon_sym_SQUOTE] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_async] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_using] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_TILDE] = ACTIONS(3596), - [anon_sym_void] = ACTIONS(3596), - [anon_sym_delete] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3596), - [anon_sym_DASH_DASH] = ACTIONS(3596), + [1273] = { + [sym_comment] = STATE(1273), + [sym_identifier] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_default] = ACTIONS(3630), + [anon_sym_type] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_typeof] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [anon_sym_var] = ACTIONS(3630), + [anon_sym_let] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_await] = ACTIONS(3630), + [anon_sym_of] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_debugger] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_case] = ACTIONS(3630), + [anon_sym_yield] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LTtemplate_GT] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_async] = ACTIONS(3630), + [anon_sym_function] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_void] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3596), - [sym_number] = ACTIONS(3596), - [sym_private_property_identifier] = ACTIONS(3596), - [sym_this] = ACTIONS(3596), - [sym_super] = ACTIONS(3596), - [sym_true] = ACTIONS(3596), - [sym_false] = ACTIONS(3596), - [sym_null] = ACTIONS(3596), - [sym_undefined] = ACTIONS(3596), - [anon_sym_AT] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_readonly] = ACTIONS(3596), - [anon_sym_get] = ACTIONS(3596), - [anon_sym_set] = ACTIONS(3596), - [anon_sym_declare] = ACTIONS(3596), - [anon_sym_public] = ACTIONS(3596), - [anon_sym_private] = ACTIONS(3596), - [anon_sym_protected] = ACTIONS(3596), - [anon_sym_override] = ACTIONS(3596), - [anon_sym_module] = ACTIONS(3596), - [anon_sym_any] = ACTIONS(3596), - [anon_sym_number] = ACTIONS(3596), - [anon_sym_boolean] = ACTIONS(3596), - [anon_sym_string] = ACTIONS(3596), - [anon_sym_symbol] = ACTIONS(3596), - [anon_sym_object] = ACTIONS(3596), - [anon_sym_property] = ACTIONS(3596), - [anon_sym_signal] = ACTIONS(3596), - [anon_sym_on] = ACTIONS(3596), - [anon_sym_required] = ACTIONS(3596), - [anon_sym_component] = ACTIONS(3596), - [anon_sym_abstract] = ACTIONS(3596), - [anon_sym_interface] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), - [sym_html_comment] = ACTIONS(5), - }, - [1316] = { - [sym_comment] = STATE(1316), - [sym_identifier] = ACTIONS(3480), - [anon_sym_export] = ACTIONS(3480), - [anon_sym_default] = ACTIONS(3480), - [anon_sym_type] = ACTIONS(3480), - [anon_sym_namespace] = ACTIONS(3480), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_RBRACE] = ACTIONS(3480), - [anon_sym_typeof] = ACTIONS(3480), - [anon_sym_import] = ACTIONS(3480), - [anon_sym_from] = ACTIONS(3480), - [anon_sym_with] = ACTIONS(3480), - [anon_sym_var] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_const] = ACTIONS(3480), - [anon_sym_BANG] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_switch] = ACTIONS(3480), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_await] = ACTIONS(3480), - [anon_sym_of] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_break] = ACTIONS(3480), - [anon_sym_continue] = ACTIONS(3480), - [anon_sym_debugger] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_throw] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_case] = ACTIONS(3480), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LTtemplate_GT] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_SQUOTE] = ACTIONS(3480), - [anon_sym_class] = ACTIONS(3480), - [anon_sym_async] = ACTIONS(3480), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_SLASH] = ACTIONS(3480), - [anon_sym_LT] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3480), - [anon_sym_void] = ACTIONS(3480), - [anon_sym_delete] = ACTIONS(3480), - [anon_sym_PLUS_PLUS] = ACTIONS(3480), - [anon_sym_DASH_DASH] = ACTIONS(3480), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3480), - [sym_number] = ACTIONS(3480), - [sym_private_property_identifier] = ACTIONS(3480), - [sym_this] = ACTIONS(3480), - [sym_super] = ACTIONS(3480), - [sym_true] = ACTIONS(3480), - [sym_false] = ACTIONS(3480), - [sym_null] = ACTIONS(3480), - [sym_undefined] = ACTIONS(3480), - [anon_sym_AT] = ACTIONS(3480), - [anon_sym_static] = ACTIONS(3480), - [anon_sym_readonly] = ACTIONS(3480), - [anon_sym_get] = ACTIONS(3480), - [anon_sym_set] = ACTIONS(3480), - [anon_sym_declare] = ACTIONS(3480), - [anon_sym_public] = ACTIONS(3480), - [anon_sym_private] = ACTIONS(3480), - [anon_sym_protected] = ACTIONS(3480), - [anon_sym_override] = ACTIONS(3480), - [anon_sym_module] = ACTIONS(3480), - [anon_sym_any] = ACTIONS(3480), - [anon_sym_number] = ACTIONS(3480), - [anon_sym_boolean] = ACTIONS(3480), - [anon_sym_string] = ACTIONS(3480), - [anon_sym_symbol] = ACTIONS(3480), - [anon_sym_object] = ACTIONS(3480), - [anon_sym_property] = ACTIONS(3480), - [anon_sym_signal] = ACTIONS(3480), - [anon_sym_on] = ACTIONS(3480), - [anon_sym_required] = ACTIONS(3480), - [anon_sym_component] = ACTIONS(3480), - [anon_sym_abstract] = ACTIONS(3480), - [anon_sym_interface] = ACTIONS(3480), - [anon_sym_enum] = ACTIONS(3480), + [anon_sym_BQUOTE] = ACTIONS(3630), + [sym_number] = ACTIONS(3630), + [sym_private_property_identifier] = ACTIONS(3630), + [sym_this] = ACTIONS(3630), + [sym_super] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_null] = ACTIONS(3630), + [sym_undefined] = ACTIONS(3630), + [anon_sym_AT] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_readonly] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(3630), + [anon_sym_set] = ACTIONS(3630), + [anon_sym_declare] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_override] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_any] = ACTIONS(3630), + [anon_sym_number] = ACTIONS(3630), + [anon_sym_boolean] = ACTIONS(3630), + [anon_sym_string] = ACTIONS(3630), + [anon_sym_symbol] = ACTIONS(3630), + [anon_sym_object] = ACTIONS(3630), + [anon_sym_property] = ACTIONS(3630), + [anon_sym_signal] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_required] = ACTIONS(3630), + [anon_sym_component] = ACTIONS(3630), + [anon_sym_abstract] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), [sym_html_comment] = ACTIONS(5), }, - [1317] = { - [sym_comment] = STATE(1317), - [sym_identifier] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_namespace] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_typeof] = ACTIONS(2342), - [anon_sym_import] = ACTIONS(2342), - [anon_sym_from] = ACTIONS(2342), - [anon_sym_with] = ACTIONS(2342), - [anon_sym_var] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_else] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_switch] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(2342), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_debugger] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_throw] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_yield] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LTtemplate_GT] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), - [anon_sym_class] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_new] = ACTIONS(2342), - [anon_sym_using] = ACTIONS(2342), - [anon_sym_PLUS] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_void] = ACTIONS(2342), - [anon_sym_delete] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), + [1274] = { + [sym_comment] = STATE(1274), + [sym_identifier] = ACTIONS(3550), + [anon_sym_export] = ACTIONS(3550), + [anon_sym_default] = ACTIONS(3550), + [anon_sym_type] = ACTIONS(3550), + [anon_sym_namespace] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_typeof] = ACTIONS(3550), + [anon_sym_import] = ACTIONS(3550), + [anon_sym_from] = ACTIONS(3550), + [anon_sym_with] = ACTIONS(3550), + [anon_sym_var] = ACTIONS(3550), + [anon_sym_let] = ACTIONS(3550), + [anon_sym_const] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_if] = ACTIONS(3550), + [anon_sym_switch] = ACTIONS(3550), + [anon_sym_for] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_await] = ACTIONS(3550), + [anon_sym_of] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3550), + [anon_sym_do] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3550), + [anon_sym_break] = ACTIONS(3550), + [anon_sym_continue] = ACTIONS(3550), + [anon_sym_debugger] = ACTIONS(3550), + [anon_sym_return] = ACTIONS(3550), + [anon_sym_throw] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_case] = ACTIONS(3550), + [anon_sym_yield] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LTtemplate_GT] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_class] = ACTIONS(3550), + [anon_sym_async] = ACTIONS(3550), + [anon_sym_function] = ACTIONS(3550), + [anon_sym_new] = ACTIONS(3550), + [anon_sym_using] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3550), + [anon_sym_SLASH] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_void] = ACTIONS(3550), + [anon_sym_delete] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), - [sym_private_property_identifier] = ACTIONS(2342), - [sym_this] = ACTIONS(2342), - [sym_super] = ACTIONS(2342), - [sym_true] = ACTIONS(2342), - [sym_false] = ACTIONS(2342), - [sym_null] = ACTIONS(2342), - [sym_undefined] = ACTIONS(2342), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_readonly] = ACTIONS(2342), - [anon_sym_get] = ACTIONS(2342), - [anon_sym_set] = ACTIONS(2342), - [anon_sym_declare] = ACTIONS(2342), - [anon_sym_public] = ACTIONS(2342), - [anon_sym_private] = ACTIONS(2342), - [anon_sym_protected] = ACTIONS(2342), - [anon_sym_override] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_any] = ACTIONS(2342), - [anon_sym_number] = ACTIONS(2342), - [anon_sym_boolean] = ACTIONS(2342), - [anon_sym_string] = ACTIONS(2342), - [anon_sym_symbol] = ACTIONS(2342), - [anon_sym_object] = ACTIONS(2342), - [anon_sym_property] = ACTIONS(2342), - [anon_sym_signal] = ACTIONS(2342), - [anon_sym_on] = ACTIONS(2342), - [anon_sym_required] = ACTIONS(2342), - [anon_sym_component] = ACTIONS(2342), - [anon_sym_abstract] = ACTIONS(2342), - [anon_sym_interface] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(2616), - [sym_html_comment] = ACTIONS(5), - }, - [1318] = { - [sym_comment] = STATE(1318), - [sym_identifier] = ACTIONS(3504), - [anon_sym_export] = ACTIONS(3504), - [anon_sym_default] = ACTIONS(3504), - [anon_sym_type] = ACTIONS(3504), - [anon_sym_namespace] = ACTIONS(3504), - [anon_sym_LBRACE] = ACTIONS(3504), - [anon_sym_RBRACE] = ACTIONS(3504), - [anon_sym_typeof] = ACTIONS(3504), - [anon_sym_import] = ACTIONS(3504), - [anon_sym_from] = ACTIONS(3504), - [anon_sym_with] = ACTIONS(3504), - [anon_sym_var] = ACTIONS(3504), - [anon_sym_let] = ACTIONS(3504), - [anon_sym_const] = ACTIONS(3504), - [anon_sym_BANG] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3504), - [anon_sym_switch] = ACTIONS(3504), - [anon_sym_for] = ACTIONS(3504), - [anon_sym_LPAREN] = ACTIONS(3504), - [anon_sym_await] = ACTIONS(3504), - [anon_sym_of] = ACTIONS(3504), - [anon_sym_while] = ACTIONS(3504), - [anon_sym_do] = ACTIONS(3504), - [anon_sym_try] = ACTIONS(3504), - [anon_sym_break] = ACTIONS(3504), - [anon_sym_continue] = ACTIONS(3504), - [anon_sym_debugger] = ACTIONS(3504), - [anon_sym_return] = ACTIONS(3504), - [anon_sym_throw] = ACTIONS(3504), - [anon_sym_SEMI] = ACTIONS(3504), - [anon_sym_case] = ACTIONS(3504), - [anon_sym_yield] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_LTtemplate_GT] = ACTIONS(3504), - [anon_sym_DQUOTE] = ACTIONS(3504), - [anon_sym_SQUOTE] = ACTIONS(3504), - [anon_sym_class] = ACTIONS(3504), - [anon_sym_async] = ACTIONS(3504), - [anon_sym_function] = ACTIONS(3504), - [anon_sym_new] = ACTIONS(3504), - [anon_sym_using] = ACTIONS(3504), - [anon_sym_PLUS] = ACTIONS(3504), - [anon_sym_DASH] = ACTIONS(3504), - [anon_sym_SLASH] = ACTIONS(3504), - [anon_sym_LT] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3504), - [anon_sym_void] = ACTIONS(3504), - [anon_sym_delete] = ACTIONS(3504), - [anon_sym_PLUS_PLUS] = ACTIONS(3504), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3504), - [sym_number] = ACTIONS(3504), - [sym_private_property_identifier] = ACTIONS(3504), - [sym_this] = ACTIONS(3504), - [sym_super] = ACTIONS(3504), - [sym_true] = ACTIONS(3504), - [sym_false] = ACTIONS(3504), - [sym_null] = ACTIONS(3504), - [sym_undefined] = ACTIONS(3504), - [anon_sym_AT] = ACTIONS(3504), - [anon_sym_static] = ACTIONS(3504), - [anon_sym_readonly] = ACTIONS(3504), - [anon_sym_get] = ACTIONS(3504), - [anon_sym_set] = ACTIONS(3504), - [anon_sym_declare] = ACTIONS(3504), - [anon_sym_public] = ACTIONS(3504), - [anon_sym_private] = ACTIONS(3504), - [anon_sym_protected] = ACTIONS(3504), - [anon_sym_override] = ACTIONS(3504), - [anon_sym_module] = ACTIONS(3504), - [anon_sym_any] = ACTIONS(3504), - [anon_sym_number] = ACTIONS(3504), - [anon_sym_boolean] = ACTIONS(3504), - [anon_sym_string] = ACTIONS(3504), - [anon_sym_symbol] = ACTIONS(3504), - [anon_sym_object] = ACTIONS(3504), - [anon_sym_property] = ACTIONS(3504), - [anon_sym_signal] = ACTIONS(3504), - [anon_sym_on] = ACTIONS(3504), - [anon_sym_required] = ACTIONS(3504), - [anon_sym_component] = ACTIONS(3504), - [anon_sym_abstract] = ACTIONS(3504), - [anon_sym_interface] = ACTIONS(3504), - [anon_sym_enum] = ACTIONS(3504), + [anon_sym_BQUOTE] = ACTIONS(3550), + [sym_number] = ACTIONS(3550), + [sym_private_property_identifier] = ACTIONS(3550), + [sym_this] = ACTIONS(3550), + [sym_super] = ACTIONS(3550), + [sym_true] = ACTIONS(3550), + [sym_false] = ACTIONS(3550), + [sym_null] = ACTIONS(3550), + [sym_undefined] = ACTIONS(3550), + [anon_sym_AT] = ACTIONS(3550), + [anon_sym_static] = ACTIONS(3550), + [anon_sym_readonly] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3550), + [anon_sym_set] = ACTIONS(3550), + [anon_sym_declare] = ACTIONS(3550), + [anon_sym_public] = ACTIONS(3550), + [anon_sym_private] = ACTIONS(3550), + [anon_sym_protected] = ACTIONS(3550), + [anon_sym_override] = ACTIONS(3550), + [anon_sym_module] = ACTIONS(3550), + [anon_sym_any] = ACTIONS(3550), + [anon_sym_number] = ACTIONS(3550), + [anon_sym_boolean] = ACTIONS(3550), + [anon_sym_string] = ACTIONS(3550), + [anon_sym_symbol] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(3550), + [anon_sym_property] = ACTIONS(3550), + [anon_sym_signal] = ACTIONS(3550), + [anon_sym_on] = ACTIONS(3550), + [anon_sym_required] = ACTIONS(3550), + [anon_sym_component] = ACTIONS(3550), + [anon_sym_abstract] = ACTIONS(3550), + [anon_sym_interface] = ACTIONS(3550), + [anon_sym_enum] = ACTIONS(3550), [sym_html_comment] = ACTIONS(5), }, - [1319] = { - [sym_comment] = STATE(1319), - [sym_identifier] = ACTIONS(3600), - [anon_sym_export] = ACTIONS(3600), - [anon_sym_default] = ACTIONS(3600), - [anon_sym_type] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3600), - [anon_sym_RBRACE] = ACTIONS(3600), - [anon_sym_typeof] = ACTIONS(3600), - [anon_sym_import] = ACTIONS(3600), - [anon_sym_from] = ACTIONS(3600), - [anon_sym_with] = ACTIONS(3600), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_let] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3600), - [anon_sym_await] = ACTIONS(3600), - [anon_sym_of] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_debugger] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3600), - [anon_sym_case] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_LTtemplate_GT] = ACTIONS(3600), - [anon_sym_DQUOTE] = ACTIONS(3600), - [anon_sym_SQUOTE] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_async] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_TILDE] = ACTIONS(3600), - [anon_sym_void] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3600), + [1275] = { + [sym_comment] = STATE(1275), + [sym_identifier] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3548), + [anon_sym_type] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3548), + [anon_sym_RBRACE] = ACTIONS(3548), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_from] = ACTIONS(3548), + [anon_sym_with] = ACTIONS(3548), + [anon_sym_var] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_of] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_debugger] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LTtemplate_GT] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(3548), + [anon_sym_SQUOTE] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_function] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_LT] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_void] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_PLUS_PLUS] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3548), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3600), - [sym_number] = ACTIONS(3600), - [sym_private_property_identifier] = ACTIONS(3600), - [sym_this] = ACTIONS(3600), - [sym_super] = ACTIONS(3600), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [sym_null] = ACTIONS(3600), - [sym_undefined] = ACTIONS(3600), - [anon_sym_AT] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_readonly] = ACTIONS(3600), - [anon_sym_get] = ACTIONS(3600), - [anon_sym_set] = ACTIONS(3600), - [anon_sym_declare] = ACTIONS(3600), - [anon_sym_public] = ACTIONS(3600), - [anon_sym_private] = ACTIONS(3600), - [anon_sym_protected] = ACTIONS(3600), - [anon_sym_override] = ACTIONS(3600), - [anon_sym_module] = ACTIONS(3600), - [anon_sym_any] = ACTIONS(3600), - [anon_sym_number] = ACTIONS(3600), - [anon_sym_boolean] = ACTIONS(3600), - [anon_sym_string] = ACTIONS(3600), - [anon_sym_symbol] = ACTIONS(3600), - [anon_sym_object] = ACTIONS(3600), - [anon_sym_property] = ACTIONS(3600), - [anon_sym_signal] = ACTIONS(3600), - [anon_sym_on] = ACTIONS(3600), - [anon_sym_required] = ACTIONS(3600), - [anon_sym_component] = ACTIONS(3600), - [anon_sym_abstract] = ACTIONS(3600), - [anon_sym_interface] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), + [anon_sym_BQUOTE] = ACTIONS(3548), + [sym_number] = ACTIONS(3548), + [sym_private_property_identifier] = ACTIONS(3548), + [sym_this] = ACTIONS(3548), + [sym_super] = ACTIONS(3548), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [sym_null] = ACTIONS(3548), + [sym_undefined] = ACTIONS(3548), + [anon_sym_AT] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_get] = ACTIONS(3548), + [anon_sym_set] = ACTIONS(3548), + [anon_sym_declare] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_override] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_any] = ACTIONS(3548), + [anon_sym_number] = ACTIONS(3548), + [anon_sym_boolean] = ACTIONS(3548), + [anon_sym_string] = ACTIONS(3548), + [anon_sym_symbol] = ACTIONS(3548), + [anon_sym_object] = ACTIONS(3548), + [anon_sym_property] = ACTIONS(3548), + [anon_sym_signal] = ACTIONS(3548), + [anon_sym_on] = ACTIONS(3548), + [anon_sym_required] = ACTIONS(3548), + [anon_sym_component] = ACTIONS(3548), + [anon_sym_abstract] = ACTIONS(3548), + [anon_sym_interface] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), [sym_html_comment] = ACTIONS(5), }, - [1320] = { - [sym_comment] = STATE(1320), - [sym_identifier] = ACTIONS(3508), - [anon_sym_export] = ACTIONS(3508), - [anon_sym_default] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym_import] = ACTIONS(3508), - [anon_sym_from] = ACTIONS(3508), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_of] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_debugger] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3508), - [anon_sym_case] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LTtemplate_GT] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3508), - [anon_sym_class] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_using] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_SLASH] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3508), - [anon_sym_void] = ACTIONS(3508), - [anon_sym_delete] = ACTIONS(3508), - [anon_sym_PLUS_PLUS] = ACTIONS(3508), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3508), - [sym_number] = ACTIONS(3508), - [sym_private_property_identifier] = ACTIONS(3508), - [sym_this] = ACTIONS(3508), - [sym_super] = ACTIONS(3508), - [sym_true] = ACTIONS(3508), - [sym_false] = ACTIONS(3508), - [sym_null] = ACTIONS(3508), - [sym_undefined] = ACTIONS(3508), - [anon_sym_AT] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_get] = ACTIONS(3508), - [anon_sym_set] = ACTIONS(3508), - [anon_sym_declare] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_override] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_any] = ACTIONS(3508), - [anon_sym_number] = ACTIONS(3508), - [anon_sym_boolean] = ACTIONS(3508), - [anon_sym_string] = ACTIONS(3508), - [anon_sym_symbol] = ACTIONS(3508), - [anon_sym_object] = ACTIONS(3508), - [anon_sym_property] = ACTIONS(3508), - [anon_sym_signal] = ACTIONS(3508), - [anon_sym_on] = ACTIONS(3508), - [anon_sym_required] = ACTIONS(3508), - [anon_sym_component] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_interface] = ACTIONS(3508), - [anon_sym_enum] = ACTIONS(3508), + [1276] = { + [sym_comment] = STATE(1276), + [sym_identifier] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_default] = ACTIONS(3544), + [anon_sym_type] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_typeof] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_from] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3544), + [anon_sym_var] = ACTIONS(3544), + [anon_sym_let] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_await] = ACTIONS(3544), + [anon_sym_of] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_debugger] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_case] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_LTtemplate_GT] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_async] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_void] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3544), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3544), + [sym_number] = ACTIONS(3544), + [sym_private_property_identifier] = ACTIONS(3544), + [sym_this] = ACTIONS(3544), + [sym_super] = ACTIONS(3544), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [sym_null] = ACTIONS(3544), + [sym_undefined] = ACTIONS(3544), + [anon_sym_AT] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_readonly] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3544), + [anon_sym_declare] = ACTIONS(3544), + [anon_sym_public] = ACTIONS(3544), + [anon_sym_private] = ACTIONS(3544), + [anon_sym_protected] = ACTIONS(3544), + [anon_sym_override] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_any] = ACTIONS(3544), + [anon_sym_number] = ACTIONS(3544), + [anon_sym_boolean] = ACTIONS(3544), + [anon_sym_string] = ACTIONS(3544), + [anon_sym_symbol] = ACTIONS(3544), + [anon_sym_object] = ACTIONS(3544), + [anon_sym_property] = ACTIONS(3544), + [anon_sym_signal] = ACTIONS(3544), + [anon_sym_on] = ACTIONS(3544), + [anon_sym_required] = ACTIONS(3544), + [anon_sym_component] = ACTIONS(3544), + [anon_sym_abstract] = ACTIONS(3544), + [anon_sym_interface] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), [sym_html_comment] = ACTIONS(5), }, - [1321] = { - [sym_comment] = STATE(1321), - [sym_identifier] = ACTIONS(3508), - [anon_sym_export] = ACTIONS(3508), - [anon_sym_default] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym_import] = ACTIONS(3508), - [anon_sym_from] = ACTIONS(3508), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_of] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_debugger] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3508), - [anon_sym_case] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LTtemplate_GT] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3508), - [anon_sym_class] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_using] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_SLASH] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3508), - [anon_sym_void] = ACTIONS(3508), - [anon_sym_delete] = ACTIONS(3508), - [anon_sym_PLUS_PLUS] = ACTIONS(3508), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3508), - [sym_number] = ACTIONS(3508), - [sym_private_property_identifier] = ACTIONS(3508), - [sym_this] = ACTIONS(3508), - [sym_super] = ACTIONS(3508), - [sym_true] = ACTIONS(3508), - [sym_false] = ACTIONS(3508), - [sym_null] = ACTIONS(3508), - [sym_undefined] = ACTIONS(3508), - [anon_sym_AT] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_get] = ACTIONS(3508), - [anon_sym_set] = ACTIONS(3508), - [anon_sym_declare] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_override] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_any] = ACTIONS(3508), - [anon_sym_number] = ACTIONS(3508), - [anon_sym_boolean] = ACTIONS(3508), - [anon_sym_string] = ACTIONS(3508), - [anon_sym_symbol] = ACTIONS(3508), - [anon_sym_object] = ACTIONS(3508), - [anon_sym_property] = ACTIONS(3508), - [anon_sym_signal] = ACTIONS(3508), - [anon_sym_on] = ACTIONS(3508), - [anon_sym_required] = ACTIONS(3508), - [anon_sym_component] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_interface] = ACTIONS(3508), - [anon_sym_enum] = ACTIONS(3508), + [1277] = { + [sym_comment] = STATE(1277), + [sym_identifier] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_default] = ACTIONS(3542), + [anon_sym_type] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3542), + [anon_sym_typeof] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_from] = ACTIONS(3542), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_var] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_await] = ACTIONS(3542), + [anon_sym_of] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_debugger] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_case] = ACTIONS(3542), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LTtemplate_GT] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_async] = ACTIONS(3542), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_void] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3542), + [sym_number] = ACTIONS(3542), + [sym_private_property_identifier] = ACTIONS(3542), + [sym_this] = ACTIONS(3542), + [sym_super] = ACTIONS(3542), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [sym_null] = ACTIONS(3542), + [sym_undefined] = ACTIONS(3542), + [anon_sym_AT] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_readonly] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(3542), + [anon_sym_set] = ACTIONS(3542), + [anon_sym_declare] = ACTIONS(3542), + [anon_sym_public] = ACTIONS(3542), + [anon_sym_private] = ACTIONS(3542), + [anon_sym_protected] = ACTIONS(3542), + [anon_sym_override] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_any] = ACTIONS(3542), + [anon_sym_number] = ACTIONS(3542), + [anon_sym_boolean] = ACTIONS(3542), + [anon_sym_string] = ACTIONS(3542), + [anon_sym_symbol] = ACTIONS(3542), + [anon_sym_object] = ACTIONS(3542), + [anon_sym_property] = ACTIONS(3542), + [anon_sym_signal] = ACTIONS(3542), + [anon_sym_on] = ACTIONS(3542), + [anon_sym_required] = ACTIONS(3542), + [anon_sym_component] = ACTIONS(3542), + [anon_sym_abstract] = ACTIONS(3542), + [anon_sym_interface] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), [sym_html_comment] = ACTIONS(5), }, - [1322] = { - [sym_comment] = STATE(1322), - [sym_identifier] = ACTIONS(3602), - [anon_sym_export] = ACTIONS(3602), - [anon_sym_default] = ACTIONS(3602), - [anon_sym_type] = ACTIONS(3602), - [anon_sym_namespace] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_typeof] = ACTIONS(3602), - [anon_sym_import] = ACTIONS(3602), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [anon_sym_var] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_const] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_await] = ACTIONS(3602), - [anon_sym_of] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_break] = ACTIONS(3602), - [anon_sym_continue] = ACTIONS(3602), - [anon_sym_debugger] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_throw] = ACTIONS(3602), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_case] = ACTIONS(3602), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LTtemplate_GT] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_class] = ACTIONS(3602), - [anon_sym_async] = ACTIONS(3602), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_using] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_void] = ACTIONS(3602), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), + [1278] = { + [sym_comment] = STATE(1278), + [sym_identifier] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_default] = ACTIONS(3540), + [anon_sym_type] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_typeof] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_from] = ACTIONS(3540), + [anon_sym_with] = ACTIONS(3540), + [anon_sym_var] = ACTIONS(3540), + [anon_sym_let] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3540), + [anon_sym_await] = ACTIONS(3540), + [anon_sym_of] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_debugger] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym_case] = ACTIONS(3540), + [anon_sym_yield] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LTtemplate_GT] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_async] = ACTIONS(3540), + [anon_sym_function] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_SLASH] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_void] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3540), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3602), - [sym_number] = ACTIONS(3602), - [sym_private_property_identifier] = ACTIONS(3602), - [sym_this] = ACTIONS(3602), - [sym_super] = ACTIONS(3602), - [sym_true] = ACTIONS(3602), - [sym_false] = ACTIONS(3602), - [sym_null] = ACTIONS(3602), - [sym_undefined] = ACTIONS(3602), - [anon_sym_AT] = ACTIONS(3602), - [anon_sym_static] = ACTIONS(3602), - [anon_sym_readonly] = ACTIONS(3602), - [anon_sym_get] = ACTIONS(3602), - [anon_sym_set] = ACTIONS(3602), - [anon_sym_declare] = ACTIONS(3602), - [anon_sym_public] = ACTIONS(3602), - [anon_sym_private] = ACTIONS(3602), - [anon_sym_protected] = ACTIONS(3602), - [anon_sym_override] = ACTIONS(3602), - [anon_sym_module] = ACTIONS(3602), - [anon_sym_any] = ACTIONS(3602), - [anon_sym_number] = ACTIONS(3602), - [anon_sym_boolean] = ACTIONS(3602), - [anon_sym_string] = ACTIONS(3602), - [anon_sym_symbol] = ACTIONS(3602), - [anon_sym_object] = ACTIONS(3602), - [anon_sym_property] = ACTIONS(3602), - [anon_sym_signal] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_required] = ACTIONS(3602), - [anon_sym_component] = ACTIONS(3602), - [anon_sym_abstract] = ACTIONS(3602), - [anon_sym_interface] = ACTIONS(3602), - [anon_sym_enum] = ACTIONS(3602), + [anon_sym_BQUOTE] = ACTIONS(3540), + [sym_number] = ACTIONS(3540), + [sym_private_property_identifier] = ACTIONS(3540), + [sym_this] = ACTIONS(3540), + [sym_super] = ACTIONS(3540), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [sym_null] = ACTIONS(3540), + [sym_undefined] = ACTIONS(3540), + [anon_sym_AT] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_readonly] = ACTIONS(3540), + [anon_sym_get] = ACTIONS(3540), + [anon_sym_set] = ACTIONS(3540), + [anon_sym_declare] = ACTIONS(3540), + [anon_sym_public] = ACTIONS(3540), + [anon_sym_private] = ACTIONS(3540), + [anon_sym_protected] = ACTIONS(3540), + [anon_sym_override] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_any] = ACTIONS(3540), + [anon_sym_number] = ACTIONS(3540), + [anon_sym_boolean] = ACTIONS(3540), + [anon_sym_string] = ACTIONS(3540), + [anon_sym_symbol] = ACTIONS(3540), + [anon_sym_object] = ACTIONS(3540), + [anon_sym_property] = ACTIONS(3540), + [anon_sym_signal] = ACTIONS(3540), + [anon_sym_on] = ACTIONS(3540), + [anon_sym_required] = ACTIONS(3540), + [anon_sym_component] = ACTIONS(3540), + [anon_sym_abstract] = ACTIONS(3540), + [anon_sym_interface] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), [sym_html_comment] = ACTIONS(5), }, - [1323] = { - [sym_comment] = STATE(1323), - [sym_identifier] = ACTIONS(2402), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_typeof] = ACTIONS(2402), - [anon_sym_import] = ACTIONS(2402), - [anon_sym_from] = ACTIONS(2402), - [anon_sym_with] = ACTIONS(2402), - [anon_sym_var] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_switch] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_of] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_debugger] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_throw] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LTtemplate_GT] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_class] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_new] = ACTIONS(2402), - [anon_sym_using] = ACTIONS(2402), - [anon_sym_PLUS] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_void] = ACTIONS(2402), - [anon_sym_delete] = ACTIONS(2402), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_number] = ACTIONS(2402), - [sym_private_property_identifier] = ACTIONS(2402), - [sym_this] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_true] = ACTIONS(2402), - [sym_false] = ACTIONS(2402), - [sym_null] = ACTIONS(2402), - [sym_undefined] = ACTIONS(2402), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_readonly] = ACTIONS(2402), - [anon_sym_get] = ACTIONS(2402), - [anon_sym_set] = ACTIONS(2402), - [anon_sym_declare] = ACTIONS(2402), - [anon_sym_public] = ACTIONS(2402), - [anon_sym_private] = ACTIONS(2402), - [anon_sym_protected] = ACTIONS(2402), - [anon_sym_override] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_any] = ACTIONS(2402), - [anon_sym_number] = ACTIONS(2402), - [anon_sym_boolean] = ACTIONS(2402), - [anon_sym_string] = ACTIONS(2402), - [anon_sym_symbol] = ACTIONS(2402), - [anon_sym_object] = ACTIONS(2402), - [anon_sym_property] = ACTIONS(2402), - [anon_sym_signal] = ACTIONS(2402), - [anon_sym_on] = ACTIONS(2402), - [anon_sym_required] = ACTIONS(2402), - [anon_sym_component] = ACTIONS(2402), - [anon_sym_abstract] = ACTIONS(2402), - [anon_sym_interface] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [sym__automatic_semicolon] = ACTIONS(2612), + [1279] = { + [sym_comment] = STATE(1279), + [sym_identifier] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_default] = ACTIONS(3538), + [anon_sym_type] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_typeof] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_from] = ACTIONS(3538), + [anon_sym_with] = ACTIONS(3538), + [anon_sym_var] = ACTIONS(3538), + [anon_sym_let] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_await] = ACTIONS(3538), + [anon_sym_of] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_debugger] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_case] = ACTIONS(3538), + [anon_sym_yield] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_LTtemplate_GT] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_async] = ACTIONS(3538), + [anon_sym_function] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_SLASH] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_void] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3538), + [sym_number] = ACTIONS(3538), + [sym_private_property_identifier] = ACTIONS(3538), + [sym_this] = ACTIONS(3538), + [sym_super] = ACTIONS(3538), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [sym_null] = ACTIONS(3538), + [sym_undefined] = ACTIONS(3538), + [anon_sym_AT] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_readonly] = ACTIONS(3538), + [anon_sym_get] = ACTIONS(3538), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_declare] = ACTIONS(3538), + [anon_sym_public] = ACTIONS(3538), + [anon_sym_private] = ACTIONS(3538), + [anon_sym_protected] = ACTIONS(3538), + [anon_sym_override] = ACTIONS(3538), + [anon_sym_module] = ACTIONS(3538), + [anon_sym_any] = ACTIONS(3538), + [anon_sym_number] = ACTIONS(3538), + [anon_sym_boolean] = ACTIONS(3538), + [anon_sym_string] = ACTIONS(3538), + [anon_sym_symbol] = ACTIONS(3538), + [anon_sym_object] = ACTIONS(3538), + [anon_sym_property] = ACTIONS(3538), + [anon_sym_signal] = ACTIONS(3538), + [anon_sym_on] = ACTIONS(3538), + [anon_sym_required] = ACTIONS(3538), + [anon_sym_component] = ACTIONS(3538), + [anon_sym_abstract] = ACTIONS(3538), + [anon_sym_interface] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), [sym_html_comment] = ACTIONS(5), }, - [1324] = { - [sym_statement_block] = STATE(1822), - [sym_comment] = STATE(1324), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3708), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), + [1280] = { + [sym_comment] = STATE(1280), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_catch] = ACTIONS(2458), + [anon_sym_finally] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), [sym_html_comment] = ACTIONS(5), }, - [1325] = { - [sym_statement_block] = STATE(1822), - [sym_comment] = STATE(1325), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3710), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), + [1281] = { + [sym_comment] = STATE(1281), + [sym_identifier] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_default] = ACTIONS(3632), + [anon_sym_type] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_typeof] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_from] = ACTIONS(3632), + [anon_sym_with] = ACTIONS(3632), + [anon_sym_var] = ACTIONS(3632), + [anon_sym_let] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_await] = ACTIONS(3632), + [anon_sym_of] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_debugger] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_case] = ACTIONS(3632), + [anon_sym_yield] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_LTtemplate_GT] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_async] = ACTIONS(3632), + [anon_sym_function] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_void] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3632), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3632), + [sym_number] = ACTIONS(3632), + [sym_private_property_identifier] = ACTIONS(3632), + [sym_this] = ACTIONS(3632), + [sym_super] = ACTIONS(3632), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [sym_null] = ACTIONS(3632), + [sym_undefined] = ACTIONS(3632), + [anon_sym_AT] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_readonly] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(3632), + [anon_sym_set] = ACTIONS(3632), + [anon_sym_declare] = ACTIONS(3632), + [anon_sym_public] = ACTIONS(3632), + [anon_sym_private] = ACTIONS(3632), + [anon_sym_protected] = ACTIONS(3632), + [anon_sym_override] = ACTIONS(3632), + [anon_sym_module] = ACTIONS(3632), + [anon_sym_any] = ACTIONS(3632), + [anon_sym_number] = ACTIONS(3632), + [anon_sym_boolean] = ACTIONS(3632), + [anon_sym_string] = ACTIONS(3632), + [anon_sym_symbol] = ACTIONS(3632), + [anon_sym_object] = ACTIONS(3632), + [anon_sym_property] = ACTIONS(3632), + [anon_sym_signal] = ACTIONS(3632), + [anon_sym_on] = ACTIONS(3632), + [anon_sym_required] = ACTIONS(3632), + [anon_sym_component] = ACTIONS(3632), + [anon_sym_abstract] = ACTIONS(3632), + [anon_sym_interface] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), [sym_html_comment] = ACTIONS(5), }, - [1326] = { - [sym_comment] = STATE(1326), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1282] = { + [sym_comment] = STATE(1282), + [sym_identifier] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_default] = ACTIONS(3634), + [anon_sym_type] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_typeof] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_with] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_LPAREN] = ACTIONS(3634), + [anon_sym_await] = ACTIONS(3634), + [anon_sym_of] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_debugger] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_case] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_LTtemplate_GT] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_async] = ACTIONS(3634), + [anon_sym_function] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_void] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3634), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3634), + [sym_number] = ACTIONS(3634), + [sym_private_property_identifier] = ACTIONS(3634), + [sym_this] = ACTIONS(3634), + [sym_super] = ACTIONS(3634), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [sym_null] = ACTIONS(3634), + [sym_undefined] = ACTIONS(3634), + [anon_sym_AT] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_readonly] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(3634), + [anon_sym_set] = ACTIONS(3634), + [anon_sym_declare] = ACTIONS(3634), + [anon_sym_public] = ACTIONS(3634), + [anon_sym_private] = ACTIONS(3634), + [anon_sym_protected] = ACTIONS(3634), + [anon_sym_override] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_any] = ACTIONS(3634), + [anon_sym_number] = ACTIONS(3634), + [anon_sym_boolean] = ACTIONS(3634), + [anon_sym_string] = ACTIONS(3634), + [anon_sym_symbol] = ACTIONS(3634), + [anon_sym_object] = ACTIONS(3634), + [anon_sym_property] = ACTIONS(3634), + [anon_sym_signal] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_required] = ACTIONS(3634), + [anon_sym_component] = ACTIONS(3634), + [anon_sym_abstract] = ACTIONS(3634), + [anon_sym_interface] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), [sym_html_comment] = ACTIONS(5), }, - [1327] = { - [sym_comment] = STATE(1327), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_namespace] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(2450), - [anon_sym_import] = ACTIONS(2450), - [anon_sym_from] = 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(2450), - [anon_sym_else] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(2450), - [anon_sym_of] = 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(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LTtemplate_GT] = ACTIONS(2450), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), - [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(2450), - [anon_sym_void] = ACTIONS(2450), - [anon_sym_delete] = ACTIONS(2450), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_number] = ACTIONS(2450), - [sym_private_property_identifier] = ACTIONS(2450), - [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(2450), - [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_property] = ACTIONS(2450), - [anon_sym_signal] = ACTIONS(2450), - [anon_sym_on] = ACTIONS(2450), - [anon_sym_required] = ACTIONS(2450), - [anon_sym_component] = ACTIONS(2450), - [anon_sym_abstract] = ACTIONS(2450), - [anon_sym_interface] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [sym__automatic_semicolon] = ACTIONS(2610), - [sym_html_comment] = ACTIONS(5), - }, - [1328] = { - [sym_comment] = STATE(1328), - [sym_identifier] = ACTIONS(3604), - [anon_sym_export] = ACTIONS(3604), - [anon_sym_default] = ACTIONS(3604), - [anon_sym_type] = ACTIONS(3604), - [anon_sym_namespace] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3604), - [anon_sym_RBRACE] = ACTIONS(3604), - [anon_sym_typeof] = ACTIONS(3604), - [anon_sym_import] = ACTIONS(3604), - [anon_sym_from] = ACTIONS(3604), - [anon_sym_with] = ACTIONS(3604), - [anon_sym_var] = ACTIONS(3604), - [anon_sym_let] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_if] = ACTIONS(3604), - [anon_sym_switch] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3604), - [anon_sym_await] = ACTIONS(3604), - [anon_sym_of] = ACTIONS(3604), - [anon_sym_while] = ACTIONS(3604), - [anon_sym_do] = ACTIONS(3604), - [anon_sym_try] = ACTIONS(3604), - [anon_sym_break] = ACTIONS(3604), - [anon_sym_continue] = ACTIONS(3604), - [anon_sym_debugger] = ACTIONS(3604), - [anon_sym_return] = ACTIONS(3604), - [anon_sym_throw] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3604), - [anon_sym_case] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_LTtemplate_GT] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3604), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_async] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(3604), - [anon_sym_DASH] = ACTIONS(3604), - [anon_sym_SLASH] = ACTIONS(3604), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_TILDE] = ACTIONS(3604), - [anon_sym_void] = ACTIONS(3604), - [anon_sym_delete] = ACTIONS(3604), - [anon_sym_PLUS_PLUS] = ACTIONS(3604), - [anon_sym_DASH_DASH] = ACTIONS(3604), + [1283] = { + [sym_comment] = STATE(1283), + [sym_identifier] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_type] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_typeof] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_await] = ACTIONS(3636), + [anon_sym_of] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_debugger] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_yield] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_LTtemplate_GT] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_async] = ACTIONS(3636), + [anon_sym_function] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_void] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3604), - [sym_number] = ACTIONS(3604), - [sym_private_property_identifier] = ACTIONS(3604), - [sym_this] = ACTIONS(3604), - [sym_super] = ACTIONS(3604), - [sym_true] = ACTIONS(3604), - [sym_false] = ACTIONS(3604), - [sym_null] = ACTIONS(3604), - [sym_undefined] = ACTIONS(3604), - [anon_sym_AT] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_readonly] = ACTIONS(3604), - [anon_sym_get] = ACTIONS(3604), - [anon_sym_set] = ACTIONS(3604), - [anon_sym_declare] = ACTIONS(3604), - [anon_sym_public] = ACTIONS(3604), - [anon_sym_private] = ACTIONS(3604), - [anon_sym_protected] = ACTIONS(3604), - [anon_sym_override] = ACTIONS(3604), - [anon_sym_module] = ACTIONS(3604), - [anon_sym_any] = ACTIONS(3604), - [anon_sym_number] = ACTIONS(3604), - [anon_sym_boolean] = ACTIONS(3604), - [anon_sym_string] = ACTIONS(3604), - [anon_sym_symbol] = ACTIONS(3604), - [anon_sym_object] = ACTIONS(3604), - [anon_sym_property] = ACTIONS(3604), - [anon_sym_signal] = ACTIONS(3604), - [anon_sym_on] = ACTIONS(3604), - [anon_sym_required] = ACTIONS(3604), - [anon_sym_component] = ACTIONS(3604), - [anon_sym_abstract] = ACTIONS(3604), - [anon_sym_interface] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), + [anon_sym_BQUOTE] = ACTIONS(3636), + [sym_number] = ACTIONS(3636), + [sym_private_property_identifier] = ACTIONS(3636), + [sym_this] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [sym_null] = ACTIONS(3636), + [sym_undefined] = ACTIONS(3636), + [anon_sym_AT] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_readonly] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3636), + [anon_sym_set] = ACTIONS(3636), + [anon_sym_declare] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_override] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_any] = ACTIONS(3636), + [anon_sym_number] = ACTIONS(3636), + [anon_sym_boolean] = ACTIONS(3636), + [anon_sym_string] = ACTIONS(3636), + [anon_sym_symbol] = ACTIONS(3636), + [anon_sym_object] = ACTIONS(3636), + [anon_sym_property] = ACTIONS(3636), + [anon_sym_signal] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_required] = ACTIONS(3636), + [anon_sym_component] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), [sym_html_comment] = ACTIONS(5), }, - [1329] = { - [sym_comment] = STATE(1329), - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_typeof] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_with] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_await] = ACTIONS(2394), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_debugger] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_throw] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LTtemplate_GT] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_using] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_void] = ACTIONS(2394), - [anon_sym_delete] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2394), - [sym_number] = ACTIONS(2394), - [sym_private_property_identifier] = ACTIONS(2394), - [sym_this] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_undefined] = ACTIONS(2394), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_abstract] = ACTIONS(2394), - [anon_sym_interface] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [sym__automatic_semicolon] = ACTIONS(2600), + [1284] = { + [sym_comment] = STATE(1284), + [sym_identifier] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_default] = ACTIONS(3638), + [anon_sym_type] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_typeof] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_await] = ACTIONS(3638), + [anon_sym_of] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_debugger] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_case] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LTtemplate_GT] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_async] = ACTIONS(3638), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_void] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3638), + [sym_number] = ACTIONS(3638), + [sym_private_property_identifier] = ACTIONS(3638), + [sym_this] = ACTIONS(3638), + [sym_super] = ACTIONS(3638), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [sym_null] = ACTIONS(3638), + [sym_undefined] = ACTIONS(3638), + [anon_sym_AT] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_readonly] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3638), + [anon_sym_declare] = ACTIONS(3638), + [anon_sym_public] = ACTIONS(3638), + [anon_sym_private] = ACTIONS(3638), + [anon_sym_protected] = ACTIONS(3638), + [anon_sym_override] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_any] = ACTIONS(3638), + [anon_sym_number] = ACTIONS(3638), + [anon_sym_boolean] = ACTIONS(3638), + [anon_sym_string] = ACTIONS(3638), + [anon_sym_symbol] = ACTIONS(3638), + [anon_sym_object] = ACTIONS(3638), + [anon_sym_property] = ACTIONS(3638), + [anon_sym_signal] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_required] = ACTIONS(3638), + [anon_sym_component] = ACTIONS(3638), + [anon_sym_abstract] = ACTIONS(3638), + [anon_sym_interface] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), [sym_html_comment] = ACTIONS(5), }, - [1330] = { - [sym_comment] = STATE(1330), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_default] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_from] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_of] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_case] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), + [1285] = { + [sym_comment] = STATE(1285), + [sym_identifier] = ACTIONS(3536), + [anon_sym_export] = ACTIONS(3536), + [anon_sym_default] = ACTIONS(3536), + [anon_sym_type] = ACTIONS(3536), + [anon_sym_namespace] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_typeof] = ACTIONS(3536), + [anon_sym_import] = ACTIONS(3536), + [anon_sym_from] = ACTIONS(3536), + [anon_sym_with] = ACTIONS(3536), + [anon_sym_var] = ACTIONS(3536), + [anon_sym_let] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(3536), + [anon_sym_await] = ACTIONS(3536), + [anon_sym_of] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_try] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_debugger] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_throw] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym_case] = ACTIONS(3536), + [anon_sym_yield] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LTtemplate_GT] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3536), + [anon_sym_async] = ACTIONS(3536), + [anon_sym_function] = ACTIONS(3536), + [anon_sym_new] = ACTIONS(3536), + [anon_sym_using] = ACTIONS(3536), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_void] = ACTIONS(3536), + [anon_sym_delete] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_DASH_DASH] = ACTIONS(3536), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_property] = ACTIONS(3612), - [anon_sym_signal] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_required] = ACTIONS(3612), - [anon_sym_component] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), + [anon_sym_BQUOTE] = ACTIONS(3536), + [sym_number] = ACTIONS(3536), + [sym_private_property_identifier] = ACTIONS(3536), + [sym_this] = ACTIONS(3536), + [sym_super] = ACTIONS(3536), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_undefined] = ACTIONS(3536), + [anon_sym_AT] = ACTIONS(3536), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_readonly] = ACTIONS(3536), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3536), + [anon_sym_declare] = ACTIONS(3536), + [anon_sym_public] = ACTIONS(3536), + [anon_sym_private] = ACTIONS(3536), + [anon_sym_protected] = ACTIONS(3536), + [anon_sym_override] = ACTIONS(3536), + [anon_sym_module] = ACTIONS(3536), + [anon_sym_any] = ACTIONS(3536), + [anon_sym_number] = ACTIONS(3536), + [anon_sym_boolean] = ACTIONS(3536), + [anon_sym_string] = ACTIONS(3536), + [anon_sym_symbol] = ACTIONS(3536), + [anon_sym_object] = ACTIONS(3536), + [anon_sym_property] = ACTIONS(3536), + [anon_sym_signal] = ACTIONS(3536), + [anon_sym_on] = ACTIONS(3536), + [anon_sym_required] = ACTIONS(3536), + [anon_sym_component] = ACTIONS(3536), + [anon_sym_abstract] = ACTIONS(3536), + [anon_sym_interface] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), [sym_html_comment] = ACTIONS(5), }, - [1331] = { - [sym_comment] = STATE(1331), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1286] = { + [sym_comment] = STATE(1286), + [sym_identifier] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_type] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_typeof] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_from] = ACTIONS(3534), + [anon_sym_with] = ACTIONS(3534), + [anon_sym_var] = ACTIONS(3534), + [anon_sym_let] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3534), + [anon_sym_await] = ACTIONS(3534), + [anon_sym_of] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_debugger] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_yield] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_LTtemplate_GT] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_async] = ACTIONS(3534), + [anon_sym_function] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_SLASH] = ACTIONS(3534), + [anon_sym_LT] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_void] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3534), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3712), + [anon_sym_BQUOTE] = ACTIONS(3534), + [sym_number] = ACTIONS(3534), + [sym_private_property_identifier] = ACTIONS(3534), + [sym_this] = ACTIONS(3534), + [sym_super] = ACTIONS(3534), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [sym_null] = ACTIONS(3534), + [sym_undefined] = ACTIONS(3534), + [anon_sym_AT] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_readonly] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3534), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_declare] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_override] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_any] = ACTIONS(3534), + [anon_sym_number] = ACTIONS(3534), + [anon_sym_boolean] = ACTIONS(3534), + [anon_sym_string] = ACTIONS(3534), + [anon_sym_symbol] = ACTIONS(3534), + [anon_sym_object] = ACTIONS(3534), + [anon_sym_property] = ACTIONS(3534), + [anon_sym_signal] = ACTIONS(3534), + [anon_sym_on] = ACTIONS(3534), + [anon_sym_required] = ACTIONS(3534), + [anon_sym_component] = ACTIONS(3534), + [anon_sym_abstract] = ACTIONS(3534), + [anon_sym_interface] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), [sym_html_comment] = ACTIONS(5), }, - [1332] = { - [sym_comment] = STATE(1332), - [sym_identifier] = ACTIONS(3464), - [anon_sym_export] = ACTIONS(3464), - [anon_sym_type] = ACTIONS(3464), - [anon_sym_namespace] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_RBRACE] = ACTIONS(3464), - [anon_sym_typeof] = ACTIONS(3464), - [anon_sym_import] = ACTIONS(3464), - [anon_sym_from] = ACTIONS(3464), - [anon_sym_with] = ACTIONS(3464), - [anon_sym_var] = ACTIONS(3464), - [anon_sym_let] = ACTIONS(3464), - [anon_sym_const] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3464), - [anon_sym_else] = ACTIONS(3464), - [anon_sym_if] = ACTIONS(3464), - [anon_sym_switch] = ACTIONS(3464), - [anon_sym_for] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_await] = ACTIONS(3464), - [anon_sym_of] = ACTIONS(3464), - [anon_sym_while] = ACTIONS(3464), - [anon_sym_do] = ACTIONS(3464), - [anon_sym_try] = ACTIONS(3464), - [anon_sym_break] = ACTIONS(3464), - [anon_sym_continue] = ACTIONS(3464), - [anon_sym_debugger] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3464), - [anon_sym_throw] = ACTIONS(3464), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_yield] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_LTtemplate_GT] = ACTIONS(3464), - [anon_sym_DQUOTE] = ACTIONS(3464), - [anon_sym_SQUOTE] = ACTIONS(3464), - [anon_sym_class] = ACTIONS(3464), - [anon_sym_async] = ACTIONS(3464), - [anon_sym_function] = ACTIONS(3464), - [anon_sym_new] = ACTIONS(3464), - [anon_sym_using] = ACTIONS(3464), - [anon_sym_PLUS] = ACTIONS(3464), - [anon_sym_DASH] = ACTIONS(3464), - [anon_sym_SLASH] = ACTIONS(3464), - [anon_sym_LT] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3464), - [anon_sym_void] = ACTIONS(3464), - [anon_sym_delete] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3464), - [anon_sym_DASH_DASH] = ACTIONS(3464), + [1287] = { + [sym_comment] = STATE(1287), + [sym_identifier] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_default] = ACTIONS(3532), + [anon_sym_type] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_from] = ACTIONS(3532), + [anon_sym_with] = ACTIONS(3532), + [anon_sym_var] = ACTIONS(3532), + [anon_sym_let] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3532), + [anon_sym_of] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_debugger] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_case] = ACTIONS(3532), + [anon_sym_yield] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LTtemplate_GT] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_async] = ACTIONS(3532), + [anon_sym_function] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_SLASH] = ACTIONS(3532), + [anon_sym_LT] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_void] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3532), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3464), - [sym_number] = ACTIONS(3464), - [sym_private_property_identifier] = ACTIONS(3464), - [sym_this] = ACTIONS(3464), - [sym_super] = ACTIONS(3464), - [sym_true] = ACTIONS(3464), - [sym_false] = ACTIONS(3464), - [sym_null] = ACTIONS(3464), - [sym_undefined] = ACTIONS(3464), - [anon_sym_AT] = ACTIONS(3464), - [anon_sym_static] = ACTIONS(3464), - [anon_sym_readonly] = ACTIONS(3464), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3464), - [anon_sym_declare] = ACTIONS(3464), - [anon_sym_public] = ACTIONS(3464), - [anon_sym_private] = ACTIONS(3464), - [anon_sym_protected] = ACTIONS(3464), - [anon_sym_override] = ACTIONS(3464), - [anon_sym_module] = ACTIONS(3464), - [anon_sym_any] = ACTIONS(3464), - [anon_sym_number] = ACTIONS(3464), - [anon_sym_boolean] = ACTIONS(3464), - [anon_sym_string] = ACTIONS(3464), - [anon_sym_symbol] = ACTIONS(3464), - [anon_sym_object] = ACTIONS(3464), - [anon_sym_property] = ACTIONS(3464), - [anon_sym_signal] = ACTIONS(3464), - [anon_sym_on] = ACTIONS(3464), - [anon_sym_required] = ACTIONS(3464), - [anon_sym_component] = ACTIONS(3464), - [anon_sym_abstract] = ACTIONS(3464), - [anon_sym_interface] = ACTIONS(3464), - [anon_sym_enum] = ACTIONS(3464), - [sym__automatic_semicolon] = ACTIONS(3466), + [anon_sym_BQUOTE] = ACTIONS(3532), + [sym_number] = ACTIONS(3532), + [sym_private_property_identifier] = ACTIONS(3532), + [sym_this] = ACTIONS(3532), + [sym_super] = ACTIONS(3532), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [sym_null] = ACTIONS(3532), + [sym_undefined] = ACTIONS(3532), + [anon_sym_AT] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_readonly] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3532), + [anon_sym_declare] = ACTIONS(3532), + [anon_sym_public] = ACTIONS(3532), + [anon_sym_private] = ACTIONS(3532), + [anon_sym_protected] = ACTIONS(3532), + [anon_sym_override] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_any] = ACTIONS(3532), + [anon_sym_number] = ACTIONS(3532), + [anon_sym_boolean] = ACTIONS(3532), + [anon_sym_string] = ACTIONS(3532), + [anon_sym_symbol] = ACTIONS(3532), + [anon_sym_object] = ACTIONS(3532), + [anon_sym_property] = ACTIONS(3532), + [anon_sym_signal] = ACTIONS(3532), + [anon_sym_on] = ACTIONS(3532), + [anon_sym_required] = ACTIONS(3532), + [anon_sym_component] = ACTIONS(3532), + [anon_sym_abstract] = ACTIONS(3532), + [anon_sym_interface] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), [sym_html_comment] = ACTIONS(5), }, - [1333] = { - [sym_comment] = STATE(1333), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_default] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_case] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), + [1288] = { + [sym_comment] = STATE(1288), + [sym_identifier] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_default] = ACTIONS(3524), + [anon_sym_type] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_from] = ACTIONS(3524), + [anon_sym_with] = ACTIONS(3524), + [anon_sym_var] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3524), + [anon_sym_of] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_debugger] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_case] = ACTIONS(3524), + [anon_sym_yield] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_LTtemplate_GT] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_async] = ACTIONS(3524), + [anon_sym_function] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_void] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3524), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [anon_sym_BQUOTE] = ACTIONS(3524), + [sym_number] = ACTIONS(3524), + [sym_private_property_identifier] = ACTIONS(3524), + [sym_this] = ACTIONS(3524), + [sym_super] = ACTIONS(3524), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [sym_null] = ACTIONS(3524), + [sym_undefined] = ACTIONS(3524), + [anon_sym_AT] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_readonly] = ACTIONS(3524), + [anon_sym_get] = ACTIONS(3524), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_declare] = ACTIONS(3524), + [anon_sym_public] = ACTIONS(3524), + [anon_sym_private] = ACTIONS(3524), + [anon_sym_protected] = ACTIONS(3524), + [anon_sym_override] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_any] = ACTIONS(3524), + [anon_sym_number] = ACTIONS(3524), + [anon_sym_boolean] = ACTIONS(3524), + [anon_sym_string] = ACTIONS(3524), + [anon_sym_symbol] = ACTIONS(3524), + [anon_sym_object] = ACTIONS(3524), + [anon_sym_property] = ACTIONS(3524), + [anon_sym_signal] = ACTIONS(3524), + [anon_sym_on] = ACTIONS(3524), + [anon_sym_required] = ACTIONS(3524), + [anon_sym_component] = ACTIONS(3524), + [anon_sym_abstract] = ACTIONS(3524), + [anon_sym_interface] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), [sym_html_comment] = ACTIONS(5), }, - [1334] = { - [sym_comment] = STATE(1334), - [sym_identifier] = ACTIONS(3428), - [anon_sym_export] = ACTIONS(3428), - [anon_sym_type] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_RBRACE] = ACTIONS(3428), - [anon_sym_typeof] = ACTIONS(3428), - [anon_sym_import] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_with] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_else] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_await] = ACTIONS(3428), - [anon_sym_of] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_debugger] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LTtemplate_GT] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_SQUOTE] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_SLASH] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3428), - [anon_sym_void] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3428), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3428), - [sym_number] = ACTIONS(3428), - [sym_private_property_identifier] = ACTIONS(3428), - [sym_this] = ACTIONS(3428), - [sym_super] = ACTIONS(3428), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_null] = ACTIONS(3428), - [sym_undefined] = ACTIONS(3428), - [anon_sym_AT] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3428), - [anon_sym_set] = ACTIONS(3428), - [anon_sym_declare] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_module] = ACTIONS(3428), - [anon_sym_any] = ACTIONS(3428), - [anon_sym_number] = ACTIONS(3428), - [anon_sym_boolean] = ACTIONS(3428), - [anon_sym_string] = ACTIONS(3428), - [anon_sym_symbol] = ACTIONS(3428), - [anon_sym_object] = ACTIONS(3428), - [anon_sym_property] = ACTIONS(3428), - [anon_sym_signal] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_component] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [sym__automatic_semicolon] = ACTIONS(3430), + [1289] = { + [sym_comment] = STATE(1289), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_typeof] = ACTIONS(2434), + [anon_sym_import] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_with] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_debugger] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_throw] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LTtemplate_GT] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_class] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2434), + [anon_sym_delete] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_private_property_identifier] = ACTIONS(2434), + [sym_this] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_true] = ACTIONS(2434), + [sym_false] = ACTIONS(2434), + [sym_null] = ACTIONS(2434), + [sym_undefined] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_abstract] = ACTIONS(2434), + [anon_sym_interface] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [sym__automatic_semicolon] = ACTIONS(2436), [sym_html_comment] = ACTIONS(5), }, - [1335] = { - [sym_comment] = STATE(1335), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_default] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_case] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), + [1290] = { + [sym_comment] = STATE(1290), + [sym_identifier] = ACTIONS(3692), + [anon_sym_export] = ACTIONS(3692), + [anon_sym_default] = ACTIONS(3692), + [anon_sym_type] = ACTIONS(3692), + [anon_sym_namespace] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_typeof] = ACTIONS(3692), + [anon_sym_import] = ACTIONS(3692), + [anon_sym_from] = ACTIONS(3692), + [anon_sym_with] = ACTIONS(3692), + [anon_sym_var] = ACTIONS(3692), + [anon_sym_let] = ACTIONS(3692), + [anon_sym_const] = ACTIONS(3692), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_if] = ACTIONS(3692), + [anon_sym_switch] = ACTIONS(3692), + [anon_sym_for] = ACTIONS(3692), + [anon_sym_LPAREN] = ACTIONS(3692), + [anon_sym_await] = ACTIONS(3692), + [anon_sym_of] = ACTIONS(3692), + [anon_sym_while] = ACTIONS(3692), + [anon_sym_do] = ACTIONS(3692), + [anon_sym_try] = ACTIONS(3692), + [anon_sym_break] = ACTIONS(3692), + [anon_sym_continue] = ACTIONS(3692), + [anon_sym_debugger] = ACTIONS(3692), + [anon_sym_return] = ACTIONS(3692), + [anon_sym_throw] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym_case] = ACTIONS(3692), + [anon_sym_yield] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_LTtemplate_GT] = ACTIONS(3692), + [anon_sym_DQUOTE] = ACTIONS(3692), + [anon_sym_SQUOTE] = ACTIONS(3692), + [anon_sym_class] = ACTIONS(3692), + [anon_sym_async] = ACTIONS(3692), + [anon_sym_function] = ACTIONS(3692), + [anon_sym_new] = ACTIONS(3692), + [anon_sym_using] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_LT] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_void] = ACTIONS(3692), + [anon_sym_delete] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3692), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [anon_sym_BQUOTE] = ACTIONS(3692), + [sym_number] = ACTIONS(3692), + [sym_private_property_identifier] = ACTIONS(3692), + [sym_this] = ACTIONS(3692), + [sym_super] = ACTIONS(3692), + [sym_true] = ACTIONS(3692), + [sym_false] = ACTIONS(3692), + [sym_null] = ACTIONS(3692), + [sym_undefined] = ACTIONS(3692), + [anon_sym_AT] = ACTIONS(3692), + [anon_sym_static] = ACTIONS(3692), + [anon_sym_readonly] = ACTIONS(3692), + [anon_sym_get] = ACTIONS(3692), + [anon_sym_set] = ACTIONS(3692), + [anon_sym_declare] = ACTIONS(3692), + [anon_sym_public] = ACTIONS(3692), + [anon_sym_private] = ACTIONS(3692), + [anon_sym_protected] = ACTIONS(3692), + [anon_sym_override] = ACTIONS(3692), + [anon_sym_module] = ACTIONS(3692), + [anon_sym_any] = ACTIONS(3692), + [anon_sym_number] = ACTIONS(3692), + [anon_sym_boolean] = ACTIONS(3692), + [anon_sym_string] = ACTIONS(3692), + [anon_sym_symbol] = ACTIONS(3692), + [anon_sym_object] = ACTIONS(3692), + [anon_sym_property] = ACTIONS(3692), + [anon_sym_signal] = ACTIONS(3692), + [anon_sym_on] = ACTIONS(3692), + [anon_sym_required] = ACTIONS(3692), + [anon_sym_component] = ACTIONS(3692), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_interface] = ACTIONS(3692), + [anon_sym_enum] = ACTIONS(3692), [sym_html_comment] = ACTIONS(5), }, - [1336] = { - [sym_comment] = STATE(1336), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1291] = { + [sym_comment] = STATE(1291), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3708), [sym_html_comment] = ACTIONS(5), }, - [1337] = { - [sym_comment] = STATE(1337), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_default] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_case] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), + [1292] = { + [sym_comment] = STATE(1292), + [sym_identifier] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_with] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_of] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_debugger] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LTtemplate_GT] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_function] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_private_property_identifier] = ACTIONS(3464), + [sym_this] = ACTIONS(3464), + [sym_super] = ACTIONS(3464), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [sym_null] = ACTIONS(3464), + [sym_undefined] = ACTIONS(3464), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3464), + [anon_sym_declare] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_any] = ACTIONS(3464), + [anon_sym_number] = ACTIONS(3464), + [anon_sym_boolean] = ACTIONS(3464), + [anon_sym_string] = ACTIONS(3464), + [anon_sym_symbol] = ACTIONS(3464), + [anon_sym_object] = ACTIONS(3464), + [anon_sym_property] = ACTIONS(3464), + [anon_sym_signal] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_component] = ACTIONS(3464), + [anon_sym_abstract] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [sym__automatic_semicolon] = ACTIONS(3466), [sym_html_comment] = ACTIONS(5), }, - [1338] = { - [sym_comment] = STATE(1338), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1293] = { + [sym_comment] = STATE(1293), + [sym_identifier] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_default] = ACTIONS(3642), + [anon_sym_type] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_typeof] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_await] = ACTIONS(3642), + [anon_sym_of] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_debugger] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_case] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LTtemplate_GT] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_async] = ACTIONS(3642), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_void] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3642), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3642), + [sym_number] = ACTIONS(3642), + [sym_private_property_identifier] = ACTIONS(3642), + [sym_this] = ACTIONS(3642), + [sym_super] = ACTIONS(3642), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [sym_null] = ACTIONS(3642), + [sym_undefined] = ACTIONS(3642), + [anon_sym_AT] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_readonly] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(3642), + [anon_sym_set] = ACTIONS(3642), + [anon_sym_declare] = ACTIONS(3642), + [anon_sym_public] = ACTIONS(3642), + [anon_sym_private] = ACTIONS(3642), + [anon_sym_protected] = ACTIONS(3642), + [anon_sym_override] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_any] = ACTIONS(3642), + [anon_sym_number] = ACTIONS(3642), + [anon_sym_boolean] = ACTIONS(3642), + [anon_sym_string] = ACTIONS(3642), + [anon_sym_symbol] = ACTIONS(3642), + [anon_sym_object] = ACTIONS(3642), + [anon_sym_property] = ACTIONS(3642), + [anon_sym_signal] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_required] = ACTIONS(3642), + [anon_sym_component] = ACTIONS(3642), + [anon_sym_abstract] = ACTIONS(3642), + [anon_sym_interface] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), [sym_html_comment] = ACTIONS(5), }, - [1339] = { - [sym_comment] = STATE(1339), - [sym_identifier] = ACTIONS(3620), - [anon_sym_export] = ACTIONS(3620), - [anon_sym_default] = ACTIONS(3620), - [anon_sym_type] = ACTIONS(3620), - [anon_sym_namespace] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_typeof] = ACTIONS(3620), - [anon_sym_import] = ACTIONS(3620), - [anon_sym_from] = ACTIONS(3620), - [anon_sym_with] = ACTIONS(3620), - [anon_sym_var] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3620), - [anon_sym_const] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_if] = ACTIONS(3620), - [anon_sym_switch] = ACTIONS(3620), - [anon_sym_for] = ACTIONS(3620), - [anon_sym_LPAREN] = ACTIONS(3620), - [anon_sym_await] = ACTIONS(3620), - [anon_sym_of] = ACTIONS(3620), - [anon_sym_while] = ACTIONS(3620), - [anon_sym_do] = ACTIONS(3620), - [anon_sym_try] = ACTIONS(3620), - [anon_sym_break] = ACTIONS(3620), - [anon_sym_continue] = ACTIONS(3620), - [anon_sym_debugger] = ACTIONS(3620), - [anon_sym_return] = ACTIONS(3620), - [anon_sym_throw] = ACTIONS(3620), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_case] = ACTIONS(3620), - [anon_sym_yield] = ACTIONS(3620), - [anon_sym_LBRACK] = ACTIONS(3620), - [anon_sym_LTtemplate_GT] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_class] = ACTIONS(3620), - [anon_sym_async] = ACTIONS(3620), - [anon_sym_function] = ACTIONS(3620), - [anon_sym_new] = ACTIONS(3620), - [anon_sym_using] = ACTIONS(3620), - [anon_sym_PLUS] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3620), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_void] = ACTIONS(3620), - [anon_sym_delete] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), + [1294] = { + [sym_comment] = STATE(1294), + [sym_identifier] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_from] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_else] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_of] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_debugger] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LTtemplate_GT] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_function] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_LT] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3620), - [sym_number] = ACTIONS(3620), - [sym_private_property_identifier] = ACTIONS(3620), - [sym_this] = ACTIONS(3620), - [sym_super] = ACTIONS(3620), - [sym_true] = ACTIONS(3620), - [sym_false] = ACTIONS(3620), - [sym_null] = ACTIONS(3620), - [sym_undefined] = ACTIONS(3620), - [anon_sym_AT] = ACTIONS(3620), - [anon_sym_static] = ACTIONS(3620), - [anon_sym_readonly] = ACTIONS(3620), - [anon_sym_get] = ACTIONS(3620), - [anon_sym_set] = ACTIONS(3620), - [anon_sym_declare] = ACTIONS(3620), - [anon_sym_public] = ACTIONS(3620), - [anon_sym_private] = ACTIONS(3620), - [anon_sym_protected] = ACTIONS(3620), - [anon_sym_override] = ACTIONS(3620), - [anon_sym_module] = ACTIONS(3620), - [anon_sym_any] = ACTIONS(3620), - [anon_sym_number] = ACTIONS(3620), - [anon_sym_boolean] = ACTIONS(3620), - [anon_sym_string] = ACTIONS(3620), - [anon_sym_symbol] = ACTIONS(3620), - [anon_sym_object] = ACTIONS(3620), - [anon_sym_property] = ACTIONS(3620), - [anon_sym_signal] = ACTIONS(3620), - [anon_sym_on] = ACTIONS(3620), - [anon_sym_required] = ACTIONS(3620), - [anon_sym_component] = ACTIONS(3620), - [anon_sym_abstract] = ACTIONS(3620), - [anon_sym_interface] = ACTIONS(3620), - [anon_sym_enum] = ACTIONS(3620), + [anon_sym_BQUOTE] = ACTIONS(3454), + [sym_number] = ACTIONS(3454), + [sym_private_property_identifier] = ACTIONS(3454), + [sym_this] = ACTIONS(3454), + [sym_super] = ACTIONS(3454), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [anon_sym_AT] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_get] = ACTIONS(3454), + [anon_sym_set] = ACTIONS(3454), + [anon_sym_declare] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_override] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_any] = ACTIONS(3454), + [anon_sym_number] = ACTIONS(3454), + [anon_sym_boolean] = ACTIONS(3454), + [anon_sym_string] = ACTIONS(3454), + [anon_sym_symbol] = ACTIONS(3454), + [anon_sym_object] = ACTIONS(3454), + [anon_sym_property] = ACTIONS(3454), + [anon_sym_signal] = ACTIONS(3454), + [anon_sym_on] = ACTIONS(3454), + [anon_sym_required] = ACTIONS(3454), + [anon_sym_component] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [sym__automatic_semicolon] = ACTIONS(3456), [sym_html_comment] = ACTIONS(5), }, - [1340] = { - [sym_comment] = STATE(1340), - [sym_identifier] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_type] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_RBRACE] = ACTIONS(3622), - [anon_sym_typeof] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_from] = ACTIONS(3622), - [anon_sym_with] = ACTIONS(3622), - [anon_sym_var] = ACTIONS(3622), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_BANG] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_await] = ACTIONS(3622), - [anon_sym_of] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_debugger] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_LTtemplate_GT] = ACTIONS(3622), - [anon_sym_DQUOTE] = ACTIONS(3622), - [anon_sym_SQUOTE] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_async] = ACTIONS(3622), - [anon_sym_function] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_SLASH] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_TILDE] = ACTIONS(3622), - [anon_sym_void] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_PLUS_PLUS] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3622), + [1295] = { + [sym_comment] = STATE(1295), + [sym_identifier] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_type] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_typeof] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_await] = ACTIONS(3644), + [anon_sym_of] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_debugger] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LTtemplate_GT] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_async] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_void] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3622), - [sym_number] = ACTIONS(3622), - [sym_private_property_identifier] = ACTIONS(3622), - [sym_this] = ACTIONS(3622), - [sym_super] = ACTIONS(3622), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [sym_null] = ACTIONS(3622), - [sym_undefined] = ACTIONS(3622), - [anon_sym_AT] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_readonly] = ACTIONS(3622), - [anon_sym_get] = ACTIONS(3622), - [anon_sym_set] = ACTIONS(3622), - [anon_sym_declare] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_override] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_any] = ACTIONS(3622), - [anon_sym_number] = ACTIONS(3622), - [anon_sym_boolean] = ACTIONS(3622), - [anon_sym_string] = ACTIONS(3622), - [anon_sym_symbol] = ACTIONS(3622), - [anon_sym_object] = ACTIONS(3622), - [anon_sym_property] = ACTIONS(3622), - [anon_sym_signal] = ACTIONS(3622), - [anon_sym_on] = ACTIONS(3622), - [anon_sym_required] = ACTIONS(3622), - [anon_sym_component] = ACTIONS(3622), - [anon_sym_abstract] = ACTIONS(3622), - [anon_sym_interface] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), + [anon_sym_BQUOTE] = ACTIONS(3644), + [sym_number] = ACTIONS(3644), + [sym_private_property_identifier] = ACTIONS(3644), + [sym_this] = ACTIONS(3644), + [sym_super] = ACTIONS(3644), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [sym_null] = ACTIONS(3644), + [sym_undefined] = ACTIONS(3644), + [anon_sym_AT] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_readonly] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(3644), + [anon_sym_set] = ACTIONS(3644), + [anon_sym_declare] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_override] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_any] = ACTIONS(3644), + [anon_sym_number] = ACTIONS(3644), + [anon_sym_boolean] = ACTIONS(3644), + [anon_sym_string] = ACTIONS(3644), + [anon_sym_symbol] = ACTIONS(3644), + [anon_sym_object] = ACTIONS(3644), + [anon_sym_property] = ACTIONS(3644), + [anon_sym_signal] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_required] = ACTIONS(3644), + [anon_sym_component] = ACTIONS(3644), + [anon_sym_abstract] = ACTIONS(3644), + [anon_sym_interface] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), [sym_html_comment] = ACTIONS(5), }, - [1341] = { - [sym_comment] = STATE(1341), - [sym_identifier] = ACTIONS(3624), - [anon_sym_export] = ACTIONS(3624), - [anon_sym_default] = ACTIONS(3624), - [anon_sym_type] = ACTIONS(3624), - [anon_sym_namespace] = ACTIONS(3624), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3624), - [anon_sym_typeof] = ACTIONS(3624), - [anon_sym_import] = ACTIONS(3624), - [anon_sym_from] = ACTIONS(3624), - [anon_sym_with] = ACTIONS(3624), - [anon_sym_var] = ACTIONS(3624), - [anon_sym_let] = ACTIONS(3624), - [anon_sym_const] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_if] = ACTIONS(3624), - [anon_sym_switch] = ACTIONS(3624), - [anon_sym_for] = ACTIONS(3624), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_await] = ACTIONS(3624), - [anon_sym_of] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3624), - [anon_sym_do] = ACTIONS(3624), - [anon_sym_try] = ACTIONS(3624), - [anon_sym_break] = ACTIONS(3624), - [anon_sym_continue] = ACTIONS(3624), - [anon_sym_debugger] = ACTIONS(3624), - [anon_sym_return] = ACTIONS(3624), - [anon_sym_throw] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_case] = ACTIONS(3624), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LTtemplate_GT] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_class] = ACTIONS(3624), - [anon_sym_async] = ACTIONS(3624), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_using] = ACTIONS(3624), - [anon_sym_PLUS] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3624), - [anon_sym_SLASH] = ACTIONS(3624), - [anon_sym_LT] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_void] = ACTIONS(3624), - [anon_sym_delete] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_DASH_DASH] = ACTIONS(3624), + [1296] = { + [sym_comment] = STATE(1296), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_default] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_case] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3624), - [sym_number] = ACTIONS(3624), - [sym_private_property_identifier] = ACTIONS(3624), - [sym_this] = ACTIONS(3624), - [sym_super] = ACTIONS(3624), - [sym_true] = ACTIONS(3624), - [sym_false] = ACTIONS(3624), - [sym_null] = ACTIONS(3624), - [sym_undefined] = ACTIONS(3624), - [anon_sym_AT] = ACTIONS(3624), - [anon_sym_static] = ACTIONS(3624), - [anon_sym_readonly] = ACTIONS(3624), - [anon_sym_get] = ACTIONS(3624), - [anon_sym_set] = ACTIONS(3624), - [anon_sym_declare] = ACTIONS(3624), - [anon_sym_public] = ACTIONS(3624), - [anon_sym_private] = ACTIONS(3624), - [anon_sym_protected] = ACTIONS(3624), - [anon_sym_override] = ACTIONS(3624), - [anon_sym_module] = ACTIONS(3624), - [anon_sym_any] = ACTIONS(3624), - [anon_sym_number] = ACTIONS(3624), - [anon_sym_boolean] = ACTIONS(3624), - [anon_sym_string] = ACTIONS(3624), - [anon_sym_symbol] = ACTIONS(3624), - [anon_sym_object] = ACTIONS(3624), - [anon_sym_property] = ACTIONS(3624), - [anon_sym_signal] = ACTIONS(3624), - [anon_sym_on] = ACTIONS(3624), - [anon_sym_required] = ACTIONS(3624), - [anon_sym_component] = ACTIONS(3624), - [anon_sym_abstract] = ACTIONS(3624), - [anon_sym_interface] = ACTIONS(3624), - [anon_sym_enum] = ACTIONS(3624), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), [sym_html_comment] = ACTIONS(5), }, - [1342] = { - [sym_comment] = STATE(1342), - [sym_identifier] = ACTIONS(3634), - [anon_sym_export] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_type] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3634), - [anon_sym_RBRACE] = ACTIONS(3634), - [anon_sym_typeof] = ACTIONS(3634), - [anon_sym_import] = ACTIONS(3634), - [anon_sym_from] = ACTIONS(3634), - [anon_sym_with] = ACTIONS(3634), - [anon_sym_var] = ACTIONS(3634), - [anon_sym_let] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_await] = ACTIONS(3634), - [anon_sym_of] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_debugger] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_LTtemplate_GT] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(3634), - [anon_sym_SQUOTE] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_async] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_SLASH] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(3634), - [anon_sym_void] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_PLUS_PLUS] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3634), + [1297] = { + [sym_comment] = STATE(1297), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3634), - [sym_number] = ACTIONS(3634), - [sym_private_property_identifier] = ACTIONS(3634), - [sym_this] = ACTIONS(3634), - [sym_super] = ACTIONS(3634), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [sym_null] = ACTIONS(3634), - [sym_undefined] = ACTIONS(3634), - [anon_sym_AT] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_readonly] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(3634), - [anon_sym_set] = ACTIONS(3634), - [anon_sym_declare] = ACTIONS(3634), - [anon_sym_public] = ACTIONS(3634), - [anon_sym_private] = ACTIONS(3634), - [anon_sym_protected] = ACTIONS(3634), - [anon_sym_override] = ACTIONS(3634), - [anon_sym_module] = ACTIONS(3634), - [anon_sym_any] = ACTIONS(3634), - [anon_sym_number] = ACTIONS(3634), - [anon_sym_boolean] = ACTIONS(3634), - [anon_sym_string] = ACTIONS(3634), - [anon_sym_symbol] = ACTIONS(3634), - [anon_sym_object] = ACTIONS(3634), - [anon_sym_property] = ACTIONS(3634), - [anon_sym_signal] = ACTIONS(3634), - [anon_sym_on] = ACTIONS(3634), - [anon_sym_required] = ACTIONS(3634), - [anon_sym_component] = ACTIONS(3634), - [anon_sym_abstract] = ACTIONS(3634), - [anon_sym_interface] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2460), [sym_html_comment] = ACTIONS(5), }, - [1343] = { - [sym_comment] = STATE(1343), + [1298] = { + [sym_comment] = STATE(1298), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym_html_comment] = ACTIONS(5), + }, + [1299] = { + [sym_comment] = STATE(1299), + [sym_identifier] = ACTIONS(3500), + [anon_sym_export] = ACTIONS(3500), + [anon_sym_default] = ACTIONS(3500), + [anon_sym_type] = ACTIONS(3500), + [anon_sym_namespace] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_typeof] = ACTIONS(3500), + [anon_sym_import] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_with] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_if] = ACTIONS(3500), + [anon_sym_switch] = ACTIONS(3500), + [anon_sym_for] = ACTIONS(3500), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_await] = ACTIONS(3500), + [anon_sym_of] = ACTIONS(3500), + [anon_sym_while] = ACTIONS(3500), + [anon_sym_do] = ACTIONS(3500), + [anon_sym_try] = ACTIONS(3500), + [anon_sym_break] = ACTIONS(3500), + [anon_sym_continue] = ACTIONS(3500), + [anon_sym_debugger] = ACTIONS(3500), + [anon_sym_return] = ACTIONS(3500), + [anon_sym_throw] = ACTIONS(3500), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_case] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_LTtemplate_GT] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_class] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_function] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_using] = ACTIONS(3500), + [anon_sym_PLUS] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_void] = ACTIONS(3500), + [anon_sym_delete] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3500), + [sym_number] = ACTIONS(3500), + [sym_private_property_identifier] = ACTIONS(3500), + [sym_this] = ACTIONS(3500), + [sym_super] = ACTIONS(3500), + [sym_true] = ACTIONS(3500), + [sym_false] = ACTIONS(3500), + [sym_null] = ACTIONS(3500), + [sym_undefined] = ACTIONS(3500), + [anon_sym_AT] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3500), + [anon_sym_set] = ACTIONS(3500), + [anon_sym_declare] = ACTIONS(3500), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_module] = ACTIONS(3500), + [anon_sym_any] = ACTIONS(3500), + [anon_sym_number] = ACTIONS(3500), + [anon_sym_boolean] = ACTIONS(3500), + [anon_sym_string] = ACTIONS(3500), + [anon_sym_symbol] = ACTIONS(3500), + [anon_sym_object] = ACTIONS(3500), + [anon_sym_property] = ACTIONS(3500), + [anon_sym_signal] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_component] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_interface] = ACTIONS(3500), + [anon_sym_enum] = ACTIONS(3500), + [sym_html_comment] = ACTIONS(5), + }, + [1300] = { + [sym_comment] = STATE(1300), + [sym_identifier] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_default] = ACTIONS(3494), + [anon_sym_type] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3494), + [anon_sym_RBRACE] = ACTIONS(3494), + [anon_sym_typeof] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_with] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3494), + [anon_sym_await] = ACTIONS(3494), + [anon_sym_of] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_debugger] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_case] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LTtemplate_GT] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(3494), + [anon_sym_SQUOTE] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_function] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_SLASH] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3494), + [anon_sym_TILDE] = ACTIONS(3494), + [anon_sym_void] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3494), + [sym_number] = ACTIONS(3494), + [sym_private_property_identifier] = ACTIONS(3494), + [sym_this] = ACTIONS(3494), + [sym_super] = ACTIONS(3494), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [sym_null] = ACTIONS(3494), + [sym_undefined] = ACTIONS(3494), + [anon_sym_AT] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3494), + [anon_sym_set] = ACTIONS(3494), + [anon_sym_declare] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_any] = ACTIONS(3494), + [anon_sym_number] = ACTIONS(3494), + [anon_sym_boolean] = ACTIONS(3494), + [anon_sym_string] = ACTIONS(3494), + [anon_sym_symbol] = ACTIONS(3494), + [anon_sym_object] = ACTIONS(3494), + [anon_sym_property] = ACTIONS(3494), + [anon_sym_signal] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_component] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [sym_html_comment] = ACTIONS(5), + }, + [1301] = { + [sym_comment] = STATE(1301), + [sym_identifier] = ACTIONS(3492), + [anon_sym_export] = ACTIONS(3492), + [anon_sym_default] = ACTIONS(3492), + [anon_sym_type] = ACTIONS(3492), + [anon_sym_namespace] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym_import] = ACTIONS(3492), + [anon_sym_from] = ACTIONS(3492), + [anon_sym_with] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_of] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_debugger] = ACTIONS(3492), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_case] = ACTIONS(3492), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3492), + [anon_sym_LTtemplate_GT] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_class] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_function] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_using] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_SLASH] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_void] = ACTIONS(3492), + [anon_sym_delete] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3492), + [sym_number] = ACTIONS(3492), + [sym_private_property_identifier] = ACTIONS(3492), + [sym_this] = ACTIONS(3492), + [sym_super] = ACTIONS(3492), + [sym_true] = ACTIONS(3492), + [sym_false] = ACTIONS(3492), + [sym_null] = ACTIONS(3492), + [sym_undefined] = ACTIONS(3492), + [anon_sym_AT] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3492), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_declare] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_override] = ACTIONS(3492), + [anon_sym_module] = ACTIONS(3492), + [anon_sym_any] = ACTIONS(3492), + [anon_sym_number] = ACTIONS(3492), + [anon_sym_boolean] = ACTIONS(3492), + [anon_sym_string] = ACTIONS(3492), + [anon_sym_symbol] = ACTIONS(3492), + [anon_sym_object] = ACTIONS(3492), + [anon_sym_property] = ACTIONS(3492), + [anon_sym_signal] = ACTIONS(3492), + [anon_sym_on] = ACTIONS(3492), + [anon_sym_required] = ACTIONS(3492), + [anon_sym_component] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_interface] = ACTIONS(3492), + [anon_sym_enum] = ACTIONS(3492), + [sym_html_comment] = ACTIONS(5), + }, + [1302] = { + [sym_comment] = STATE(1302), + [sym_identifier] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_type] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_typeof] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_from] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3648), + [anon_sym_var] = ACTIONS(3648), + [anon_sym_let] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3648), + [anon_sym_await] = ACTIONS(3648), + [anon_sym_of] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_debugger] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_LTtemplate_GT] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_async] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_SLASH] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_void] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3648), + [sym_number] = ACTIONS(3648), + [sym_private_property_identifier] = ACTIONS(3648), + [sym_this] = ACTIONS(3648), + [sym_super] = ACTIONS(3648), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_undefined] = ACTIONS(3648), + [anon_sym_AT] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_readonly] = ACTIONS(3648), + [anon_sym_get] = ACTIONS(3648), + [anon_sym_set] = ACTIONS(3648), + [anon_sym_declare] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_override] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_any] = ACTIONS(3648), + [anon_sym_number] = ACTIONS(3648), + [anon_sym_boolean] = ACTIONS(3648), + [anon_sym_string] = ACTIONS(3648), + [anon_sym_symbol] = ACTIONS(3648), + [anon_sym_object] = ACTIONS(3648), + [anon_sym_property] = ACTIONS(3648), + [anon_sym_signal] = ACTIONS(3648), + [anon_sym_on] = ACTIONS(3648), + [anon_sym_required] = ACTIONS(3648), + [anon_sym_component] = ACTIONS(3648), + [anon_sym_abstract] = ACTIONS(3648), + [anon_sym_interface] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [sym_html_comment] = ACTIONS(5), + }, + [1303] = { + [sym_comment] = STATE(1303), [sym_identifier] = ACTIONS(3650), [anon_sym_export] = ACTIONS(3650), [anon_sym_default] = ACTIONS(3650), @@ -188538,2767 +184605,2233 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3650), [sym_html_comment] = ACTIONS(5), }, - [1344] = { - [sym_comment] = STATE(1344), - [sym_identifier] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_type] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_typeof] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_await] = ACTIONS(3662), - [anon_sym_of] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_debugger] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_LTtemplate_GT] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_async] = ACTIONS(3662), - [anon_sym_function] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_void] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3662), - [sym_number] = ACTIONS(3662), - [sym_private_property_identifier] = ACTIONS(3662), - [sym_this] = ACTIONS(3662), - [sym_super] = ACTIONS(3662), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [sym_null] = ACTIONS(3662), - [sym_undefined] = ACTIONS(3662), - [anon_sym_AT] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_readonly] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(3662), - [anon_sym_set] = ACTIONS(3662), - [anon_sym_declare] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_override] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_any] = ACTIONS(3662), - [anon_sym_number] = ACTIONS(3662), - [anon_sym_boolean] = ACTIONS(3662), - [anon_sym_string] = ACTIONS(3662), - [anon_sym_symbol] = ACTIONS(3662), - [anon_sym_object] = ACTIONS(3662), - [anon_sym_property] = ACTIONS(3662), - [anon_sym_signal] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_required] = ACTIONS(3662), - [anon_sym_component] = ACTIONS(3662), - [anon_sym_abstract] = ACTIONS(3662), - [anon_sym_interface] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), + [1304] = { + [sym_comment] = STATE(1304), + [sym_identifier] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_default] = ACTIONS(3490), + [anon_sym_type] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_typeof] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_from] = ACTIONS(3490), + [anon_sym_with] = ACTIONS(3490), + [anon_sym_var] = ACTIONS(3490), + [anon_sym_let] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_await] = ACTIONS(3490), + [anon_sym_of] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_debugger] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_case] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LTtemplate_GT] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(3490), + [anon_sym_SQUOTE] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_async] = ACTIONS(3490), + [anon_sym_function] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_SLASH] = ACTIONS(3490), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_void] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3490), + [sym_number] = ACTIONS(3490), + [sym_private_property_identifier] = ACTIONS(3490), + [sym_this] = ACTIONS(3490), + [sym_super] = ACTIONS(3490), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [sym_null] = ACTIONS(3490), + [sym_undefined] = ACTIONS(3490), + [anon_sym_AT] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_readonly] = ACTIONS(3490), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3490), + [anon_sym_declare] = ACTIONS(3490), + [anon_sym_public] = ACTIONS(3490), + [anon_sym_private] = ACTIONS(3490), + [anon_sym_protected] = ACTIONS(3490), + [anon_sym_override] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_any] = ACTIONS(3490), + [anon_sym_number] = ACTIONS(3490), + [anon_sym_boolean] = ACTIONS(3490), + [anon_sym_string] = ACTIONS(3490), + [anon_sym_symbol] = ACTIONS(3490), + [anon_sym_object] = ACTIONS(3490), + [anon_sym_property] = ACTIONS(3490), + [anon_sym_signal] = ACTIONS(3490), + [anon_sym_on] = ACTIONS(3490), + [anon_sym_required] = ACTIONS(3490), + [anon_sym_component] = ACTIONS(3490), + [anon_sym_abstract] = ACTIONS(3490), + [anon_sym_interface] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), [sym_html_comment] = ACTIONS(5), }, - [1345] = { - [sym_comment] = STATE(1345), - [sym_identifier] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_type] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_typeof] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_await] = ACTIONS(3662), - [anon_sym_of] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_debugger] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_LTtemplate_GT] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_async] = ACTIONS(3662), - [anon_sym_function] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_void] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), + [1305] = { + [sym_comment] = STATE(1305), + [sym_identifier] = ACTIONS(3488), + [anon_sym_export] = ACTIONS(3488), + [anon_sym_default] = ACTIONS(3488), + [anon_sym_type] = ACTIONS(3488), + [anon_sym_namespace] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_typeof] = ACTIONS(3488), + [anon_sym_import] = ACTIONS(3488), + [anon_sym_from] = ACTIONS(3488), + [anon_sym_with] = ACTIONS(3488), + [anon_sym_var] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_const] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_if] = ACTIONS(3488), + [anon_sym_switch] = ACTIONS(3488), + [anon_sym_for] = ACTIONS(3488), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_await] = ACTIONS(3488), + [anon_sym_of] = ACTIONS(3488), + [anon_sym_while] = ACTIONS(3488), + [anon_sym_do] = ACTIONS(3488), + [anon_sym_try] = ACTIONS(3488), + [anon_sym_break] = ACTIONS(3488), + [anon_sym_continue] = ACTIONS(3488), + [anon_sym_debugger] = ACTIONS(3488), + [anon_sym_return] = ACTIONS(3488), + [anon_sym_throw] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym_case] = ACTIONS(3488), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3488), + [anon_sym_LTtemplate_GT] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_class] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_function] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_using] = ACTIONS(3488), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_void] = ACTIONS(3488), + [anon_sym_delete] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_DASH_DASH] = ACTIONS(3488), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3662), - [sym_number] = ACTIONS(3662), - [sym_private_property_identifier] = ACTIONS(3662), - [sym_this] = ACTIONS(3662), - [sym_super] = ACTIONS(3662), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [sym_null] = ACTIONS(3662), - [sym_undefined] = ACTIONS(3662), - [anon_sym_AT] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_readonly] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(3662), - [anon_sym_set] = ACTIONS(3662), - [anon_sym_declare] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_override] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_any] = ACTIONS(3662), - [anon_sym_number] = ACTIONS(3662), - [anon_sym_boolean] = ACTIONS(3662), - [anon_sym_string] = ACTIONS(3662), - [anon_sym_symbol] = ACTIONS(3662), - [anon_sym_object] = ACTIONS(3662), - [anon_sym_property] = ACTIONS(3662), - [anon_sym_signal] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_required] = ACTIONS(3662), - [anon_sym_component] = ACTIONS(3662), - [anon_sym_abstract] = ACTIONS(3662), - [anon_sym_interface] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), + [anon_sym_BQUOTE] = ACTIONS(3488), + [sym_number] = ACTIONS(3488), + [sym_private_property_identifier] = ACTIONS(3488), + [sym_this] = ACTIONS(3488), + [sym_super] = ACTIONS(3488), + [sym_true] = ACTIONS(3488), + [sym_false] = ACTIONS(3488), + [sym_null] = ACTIONS(3488), + [sym_undefined] = ACTIONS(3488), + [anon_sym_AT] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_get] = ACTIONS(3488), + [anon_sym_set] = ACTIONS(3488), + [anon_sym_declare] = ACTIONS(3488), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_override] = ACTIONS(3488), + [anon_sym_module] = ACTIONS(3488), + [anon_sym_any] = ACTIONS(3488), + [anon_sym_number] = ACTIONS(3488), + [anon_sym_boolean] = ACTIONS(3488), + [anon_sym_string] = ACTIONS(3488), + [anon_sym_symbol] = ACTIONS(3488), + [anon_sym_object] = ACTIONS(3488), + [anon_sym_property] = ACTIONS(3488), + [anon_sym_signal] = ACTIONS(3488), + [anon_sym_on] = ACTIONS(3488), + [anon_sym_required] = ACTIONS(3488), + [anon_sym_component] = ACTIONS(3488), + [anon_sym_abstract] = ACTIONS(3488), + [anon_sym_interface] = ACTIONS(3488), + [anon_sym_enum] = ACTIONS(3488), [sym_html_comment] = ACTIONS(5), }, - [1346] = { - [sym_comment] = STATE(1346), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [1306] = { + [sym_statement_block] = STATE(1534), + [sym_comment] = STATE(1306), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, - [1347] = { - [sym_comment] = STATE(1347), - [sym_identifier] = ACTIONS(3666), - [anon_sym_export] = ACTIONS(3666), - [anon_sym_default] = ACTIONS(3666), - [anon_sym_type] = ACTIONS(3666), - [anon_sym_namespace] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3666), - [anon_sym_RBRACE] = ACTIONS(3666), - [anon_sym_typeof] = ACTIONS(3666), - [anon_sym_import] = ACTIONS(3666), - [anon_sym_from] = ACTIONS(3666), - [anon_sym_with] = ACTIONS(3666), - [anon_sym_var] = ACTIONS(3666), - [anon_sym_let] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_if] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_for] = ACTIONS(3666), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_await] = ACTIONS(3666), - [anon_sym_of] = ACTIONS(3666), - [anon_sym_while] = ACTIONS(3666), - [anon_sym_do] = ACTIONS(3666), - [anon_sym_try] = ACTIONS(3666), - [anon_sym_break] = ACTIONS(3666), - [anon_sym_continue] = ACTIONS(3666), - [anon_sym_debugger] = ACTIONS(3666), - [anon_sym_return] = ACTIONS(3666), - [anon_sym_throw] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym_case] = ACTIONS(3666), - [anon_sym_yield] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_LTtemplate_GT] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3666), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_async] = ACTIONS(3666), - [anon_sym_function] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_TILDE] = ACTIONS(3666), - [anon_sym_void] = ACTIONS(3666), - [anon_sym_delete] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3666), - [anon_sym_DASH_DASH] = ACTIONS(3666), + [1307] = { + [sym_comment] = STATE(1307), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_finally] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3666), - [sym_number] = ACTIONS(3666), - [sym_private_property_identifier] = ACTIONS(3666), - [sym_this] = ACTIONS(3666), - [sym_super] = ACTIONS(3666), - [sym_true] = ACTIONS(3666), - [sym_false] = ACTIONS(3666), - [sym_null] = ACTIONS(3666), - [sym_undefined] = ACTIONS(3666), - [anon_sym_AT] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_readonly] = ACTIONS(3666), - [anon_sym_get] = ACTIONS(3666), - [anon_sym_set] = ACTIONS(3666), - [anon_sym_declare] = ACTIONS(3666), - [anon_sym_public] = ACTIONS(3666), - [anon_sym_private] = ACTIONS(3666), - [anon_sym_protected] = ACTIONS(3666), - [anon_sym_override] = ACTIONS(3666), - [anon_sym_module] = ACTIONS(3666), - [anon_sym_any] = ACTIONS(3666), - [anon_sym_number] = ACTIONS(3666), - [anon_sym_boolean] = ACTIONS(3666), - [anon_sym_string] = ACTIONS(3666), - [anon_sym_symbol] = ACTIONS(3666), - [anon_sym_object] = ACTIONS(3666), - [anon_sym_property] = ACTIONS(3666), - [anon_sym_signal] = ACTIONS(3666), - [anon_sym_on] = ACTIONS(3666), - [anon_sym_required] = ACTIONS(3666), - [anon_sym_component] = ACTIONS(3666), - [anon_sym_abstract] = ACTIONS(3666), - [anon_sym_interface] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), [sym_html_comment] = ACTIONS(5), }, - [1348] = { - [sym_comment] = STATE(1348), - [sym_identifier] = ACTIONS(3558), - [anon_sym_export] = ACTIONS(3558), - [anon_sym_default] = ACTIONS(3558), - [anon_sym_type] = ACTIONS(3558), - [anon_sym_namespace] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_RBRACE] = ACTIONS(3558), - [anon_sym_typeof] = ACTIONS(3558), - [anon_sym_import] = ACTIONS(3558), - [anon_sym_from] = ACTIONS(3558), - [anon_sym_with] = ACTIONS(3558), - [anon_sym_var] = ACTIONS(3558), - [anon_sym_let] = ACTIONS(3558), - [anon_sym_const] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_if] = ACTIONS(3558), - [anon_sym_switch] = ACTIONS(3558), - [anon_sym_for] = ACTIONS(3558), - [anon_sym_LPAREN] = ACTIONS(3558), - [anon_sym_await] = ACTIONS(3558), - [anon_sym_of] = ACTIONS(3558), - [anon_sym_while] = ACTIONS(3558), - [anon_sym_do] = ACTIONS(3558), - [anon_sym_try] = ACTIONS(3558), - [anon_sym_break] = ACTIONS(3558), - [anon_sym_continue] = ACTIONS(3558), - [anon_sym_debugger] = ACTIONS(3558), - [anon_sym_return] = ACTIONS(3558), - [anon_sym_throw] = ACTIONS(3558), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym_case] = ACTIONS(3558), - [anon_sym_yield] = ACTIONS(3558), - [anon_sym_LBRACK] = ACTIONS(3558), - [anon_sym_LTtemplate_GT] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_class] = ACTIONS(3558), - [anon_sym_async] = ACTIONS(3558), - [anon_sym_function] = ACTIONS(3558), - [anon_sym_new] = ACTIONS(3558), - [anon_sym_using] = ACTIONS(3558), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_SLASH] = ACTIONS(3558), - [anon_sym_LT] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_void] = ACTIONS(3558), - [anon_sym_delete] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_DASH_DASH] = ACTIONS(3558), + [1308] = { + [sym_comment] = STATE(1308), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_catch] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3558), - [sym_number] = ACTIONS(3558), - [sym_private_property_identifier] = ACTIONS(3558), - [sym_this] = ACTIONS(3558), - [sym_super] = ACTIONS(3558), - [sym_true] = ACTIONS(3558), - [sym_false] = ACTIONS(3558), - [sym_null] = ACTIONS(3558), - [sym_undefined] = ACTIONS(3558), - [anon_sym_AT] = ACTIONS(3558), - [anon_sym_static] = ACTIONS(3558), - [anon_sym_readonly] = ACTIONS(3558), - [anon_sym_get] = ACTIONS(3558), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_declare] = ACTIONS(3558), - [anon_sym_public] = ACTIONS(3558), - [anon_sym_private] = ACTIONS(3558), - [anon_sym_protected] = ACTIONS(3558), - [anon_sym_override] = ACTIONS(3558), - [anon_sym_module] = ACTIONS(3558), - [anon_sym_any] = ACTIONS(3558), - [anon_sym_number] = ACTIONS(3558), - [anon_sym_boolean] = ACTIONS(3558), - [anon_sym_string] = ACTIONS(3558), - [anon_sym_symbol] = ACTIONS(3558), - [anon_sym_object] = ACTIONS(3558), - [anon_sym_property] = ACTIONS(3558), - [anon_sym_signal] = ACTIONS(3558), - [anon_sym_on] = ACTIONS(3558), - [anon_sym_required] = ACTIONS(3558), - [anon_sym_component] = ACTIONS(3558), - [anon_sym_abstract] = ACTIONS(3558), - [anon_sym_interface] = ACTIONS(3558), - [anon_sym_enum] = ACTIONS(3558), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), [sym_html_comment] = ACTIONS(5), }, - [1349] = { - [sym_comment] = STATE(1349), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1309] = { + [sym_comment] = STATE(1309), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), [sym_html_comment] = ACTIONS(5), }, - [1350] = { - [sym_else_clause] = STATE(1484), - [sym_comment] = STATE(1350), - [sym_identifier] = ACTIONS(3444), - [anon_sym_export] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_typeof] = ACTIONS(3444), - [anon_sym_import] = ACTIONS(3444), - [anon_sym_from] = ACTIONS(3444), - [anon_sym_with] = ACTIONS(3444), - [anon_sym_var] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_else] = ACTIONS(3714), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_await] = ACTIONS(3444), - [anon_sym_of] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_debugger] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_yield] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_LTtemplate_GT] = ACTIONS(3444), - [anon_sym_DQUOTE] = ACTIONS(3444), - [anon_sym_SQUOTE] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_async] = ACTIONS(3444), - [anon_sym_function] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_using] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_void] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), + [1310] = { + [sym_comment] = STATE(1310), + [sym_identifier] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_type] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_typeof] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_from] = ACTIONS(3522), + [anon_sym_with] = ACTIONS(3522), + [anon_sym_var] = ACTIONS(3522), + [anon_sym_let] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3522), + [anon_sym_await] = ACTIONS(3522), + [anon_sym_of] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_debugger] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_yield] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_LTtemplate_GT] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_async] = ACTIONS(3522), + [anon_sym_function] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_SLASH] = ACTIONS(3522), + [anon_sym_LT] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_void] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3444), - [sym_number] = ACTIONS(3444), - [sym_private_property_identifier] = ACTIONS(3444), - [sym_this] = ACTIONS(3444), - [sym_super] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_null] = ACTIONS(3444), - [sym_undefined] = ACTIONS(3444), - [anon_sym_AT] = ACTIONS(3444), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_readonly] = ACTIONS(3444), - [anon_sym_get] = ACTIONS(3444), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_declare] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_protected] = ACTIONS(3444), - [anon_sym_override] = ACTIONS(3444), - [anon_sym_module] = ACTIONS(3444), - [anon_sym_any] = ACTIONS(3444), - [anon_sym_number] = ACTIONS(3444), - [anon_sym_boolean] = ACTIONS(3444), - [anon_sym_string] = ACTIONS(3444), - [anon_sym_symbol] = ACTIONS(3444), - [anon_sym_object] = ACTIONS(3444), - [anon_sym_property] = ACTIONS(3444), - [anon_sym_signal] = ACTIONS(3444), - [anon_sym_on] = ACTIONS(3444), - [anon_sym_required] = ACTIONS(3444), - [anon_sym_component] = ACTIONS(3444), - [anon_sym_abstract] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), + [anon_sym_BQUOTE] = ACTIONS(3522), + [sym_number] = ACTIONS(3522), + [sym_private_property_identifier] = ACTIONS(3522), + [sym_this] = ACTIONS(3522), + [sym_super] = ACTIONS(3522), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_undefined] = ACTIONS(3522), + [anon_sym_AT] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_readonly] = ACTIONS(3522), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_declare] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_override] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_any] = ACTIONS(3522), + [anon_sym_number] = ACTIONS(3522), + [anon_sym_boolean] = ACTIONS(3522), + [anon_sym_string] = ACTIONS(3522), + [anon_sym_symbol] = ACTIONS(3522), + [anon_sym_object] = ACTIONS(3522), + [anon_sym_property] = ACTIONS(3522), + [anon_sym_signal] = ACTIONS(3522), + [anon_sym_on] = ACTIONS(3522), + [anon_sym_required] = ACTIONS(3522), + [anon_sym_component] = ACTIONS(3522), + [anon_sym_abstract] = ACTIONS(3522), + [anon_sym_interface] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), [sym_html_comment] = ACTIONS(5), }, - [1351] = { - [sym_comment] = STATE(1351), - [sym_identifier] = ACTIONS(3550), - [anon_sym_export] = ACTIONS(3550), - [anon_sym_default] = ACTIONS(3550), - [anon_sym_type] = ACTIONS(3550), - [anon_sym_namespace] = ACTIONS(3550), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_RBRACE] = ACTIONS(3550), - [anon_sym_typeof] = ACTIONS(3550), - [anon_sym_import] = ACTIONS(3550), - [anon_sym_from] = ACTIONS(3550), - [anon_sym_with] = ACTIONS(3550), - [anon_sym_var] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_const] = ACTIONS(3550), - [anon_sym_BANG] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_switch] = ACTIONS(3550), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_await] = ACTIONS(3550), - [anon_sym_of] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_break] = ACTIONS(3550), - [anon_sym_continue] = ACTIONS(3550), - [anon_sym_debugger] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_throw] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3550), - [anon_sym_case] = ACTIONS(3550), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LTtemplate_GT] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_SQUOTE] = ACTIONS(3550), - [anon_sym_class] = ACTIONS(3550), - [anon_sym_async] = ACTIONS(3550), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_using] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_SLASH] = ACTIONS(3550), - [anon_sym_LT] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3550), - [anon_sym_void] = ACTIONS(3550), - [anon_sym_delete] = ACTIONS(3550), - [anon_sym_PLUS_PLUS] = ACTIONS(3550), - [anon_sym_DASH_DASH] = ACTIONS(3550), + [1311] = { + [sym_comment] = STATE(1311), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3710), + [sym_html_comment] = ACTIONS(5), + }, + [1312] = { + [sym_comment] = STATE(1312), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3550), - [sym_number] = ACTIONS(3550), - [sym_private_property_identifier] = ACTIONS(3550), - [sym_this] = ACTIONS(3550), - [sym_super] = ACTIONS(3550), - [sym_true] = ACTIONS(3550), - [sym_false] = ACTIONS(3550), - [sym_null] = ACTIONS(3550), - [sym_undefined] = ACTIONS(3550), - [anon_sym_AT] = ACTIONS(3550), - [anon_sym_static] = ACTIONS(3550), - [anon_sym_readonly] = ACTIONS(3550), - [anon_sym_get] = ACTIONS(3550), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_declare] = ACTIONS(3550), - [anon_sym_public] = ACTIONS(3550), - [anon_sym_private] = ACTIONS(3550), - [anon_sym_protected] = ACTIONS(3550), - [anon_sym_override] = ACTIONS(3550), - [anon_sym_module] = ACTIONS(3550), - [anon_sym_any] = ACTIONS(3550), - [anon_sym_number] = ACTIONS(3550), - [anon_sym_boolean] = ACTIONS(3550), - [anon_sym_string] = ACTIONS(3550), - [anon_sym_symbol] = ACTIONS(3550), - [anon_sym_object] = ACTIONS(3550), - [anon_sym_property] = ACTIONS(3550), - [anon_sym_signal] = ACTIONS(3550), - [anon_sym_on] = ACTIONS(3550), - [anon_sym_required] = ACTIONS(3550), - [anon_sym_component] = ACTIONS(3550), - [anon_sym_abstract] = ACTIONS(3550), - [anon_sym_interface] = ACTIONS(3550), - [anon_sym_enum] = ACTIONS(3550), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), [sym_html_comment] = ACTIONS(5), }, - [1352] = { - [sym_comment] = STATE(1352), - [sym_identifier] = ACTIONS(3560), - [anon_sym_export] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_type] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_RBRACE] = ACTIONS(3560), - [anon_sym_typeof] = ACTIONS(3560), - [anon_sym_import] = ACTIONS(3560), - [anon_sym_from] = ACTIONS(3560), - [anon_sym_with] = ACTIONS(3560), - [anon_sym_var] = ACTIONS(3560), - [anon_sym_let] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3560), - [anon_sym_await] = ACTIONS(3560), - [anon_sym_of] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_debugger] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_yield] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_LTtemplate_GT] = ACTIONS(3560), - [anon_sym_DQUOTE] = ACTIONS(3560), - [anon_sym_SQUOTE] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_async] = ACTIONS(3560), - [anon_sym_function] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3560), - [anon_sym_TILDE] = ACTIONS(3560), - [anon_sym_void] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_PLUS_PLUS] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3560), + [1313] = { + [sym_comment] = STATE(1313), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_case] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3560), - [sym_number] = ACTIONS(3560), - [sym_private_property_identifier] = ACTIONS(3560), - [sym_this] = ACTIONS(3560), - [sym_super] = ACTIONS(3560), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [sym_null] = ACTIONS(3560), - [sym_undefined] = ACTIONS(3560), - [anon_sym_AT] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_readonly] = ACTIONS(3560), - [anon_sym_get] = ACTIONS(3560), - [anon_sym_set] = ACTIONS(3560), - [anon_sym_declare] = ACTIONS(3560), - [anon_sym_public] = ACTIONS(3560), - [anon_sym_private] = ACTIONS(3560), - [anon_sym_protected] = ACTIONS(3560), - [anon_sym_override] = ACTIONS(3560), - [anon_sym_module] = ACTIONS(3560), - [anon_sym_any] = ACTIONS(3560), - [anon_sym_number] = ACTIONS(3560), - [anon_sym_boolean] = ACTIONS(3560), - [anon_sym_string] = ACTIONS(3560), - [anon_sym_symbol] = ACTIONS(3560), - [anon_sym_object] = ACTIONS(3560), - [anon_sym_property] = ACTIONS(3560), - [anon_sym_signal] = ACTIONS(3560), - [anon_sym_on] = ACTIONS(3560), - [anon_sym_required] = ACTIONS(3560), - [anon_sym_component] = ACTIONS(3560), - [anon_sym_abstract] = ACTIONS(3560), - [anon_sym_interface] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), [sym_html_comment] = ACTIONS(5), }, - [1353] = { - [sym_comment] = STATE(1353), - [sym_identifier] = ACTIONS(3674), - [anon_sym_export] = ACTIONS(3674), - [anon_sym_default] = ACTIONS(3674), - [anon_sym_type] = ACTIONS(3674), - [anon_sym_namespace] = ACTIONS(3674), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_RBRACE] = ACTIONS(3674), - [anon_sym_typeof] = ACTIONS(3674), - [anon_sym_import] = ACTIONS(3674), - [anon_sym_from] = ACTIONS(3674), - [anon_sym_with] = ACTIONS(3674), - [anon_sym_var] = ACTIONS(3674), - [anon_sym_let] = ACTIONS(3674), - [anon_sym_const] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_if] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_for] = ACTIONS(3674), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_await] = ACTIONS(3674), - [anon_sym_of] = ACTIONS(3674), - [anon_sym_while] = ACTIONS(3674), - [anon_sym_do] = ACTIONS(3674), - [anon_sym_try] = ACTIONS(3674), - [anon_sym_break] = ACTIONS(3674), - [anon_sym_continue] = ACTIONS(3674), - [anon_sym_debugger] = ACTIONS(3674), - [anon_sym_return] = ACTIONS(3674), - [anon_sym_throw] = ACTIONS(3674), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym_case] = ACTIONS(3674), - [anon_sym_yield] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_LTtemplate_GT] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3674), - [anon_sym_SQUOTE] = ACTIONS(3674), - [anon_sym_class] = ACTIONS(3674), - [anon_sym_async] = ACTIONS(3674), - [anon_sym_function] = ACTIONS(3674), - [anon_sym_new] = ACTIONS(3674), - [anon_sym_using] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_void] = ACTIONS(3674), - [anon_sym_delete] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3674), + [1314] = { + [sym_comment] = STATE(1314), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3674), - [sym_number] = ACTIONS(3674), - [sym_private_property_identifier] = ACTIONS(3674), - [sym_this] = ACTIONS(3674), - [sym_super] = ACTIONS(3674), - [sym_true] = ACTIONS(3674), - [sym_false] = ACTIONS(3674), - [sym_null] = ACTIONS(3674), - [sym_undefined] = ACTIONS(3674), - [anon_sym_AT] = ACTIONS(3674), - [anon_sym_static] = ACTIONS(3674), - [anon_sym_readonly] = ACTIONS(3674), - [anon_sym_get] = ACTIONS(3674), - [anon_sym_set] = ACTIONS(3674), - [anon_sym_declare] = ACTIONS(3674), - [anon_sym_public] = ACTIONS(3674), - [anon_sym_private] = ACTIONS(3674), - [anon_sym_protected] = ACTIONS(3674), - [anon_sym_override] = ACTIONS(3674), - [anon_sym_module] = ACTIONS(3674), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_property] = ACTIONS(3674), - [anon_sym_signal] = ACTIONS(3674), - [anon_sym_on] = ACTIONS(3674), - [anon_sym_required] = ACTIONS(3674), - [anon_sym_component] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3674), - [anon_sym_interface] = ACTIONS(3674), - [anon_sym_enum] = ACTIONS(3674), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), [sym_html_comment] = ACTIONS(5), }, - [1354] = { - [sym_comment] = STATE(1354), - [sym_identifier] = ACTIONS(3548), - [anon_sym_export] = ACTIONS(3548), - [anon_sym_default] = ACTIONS(3548), - [anon_sym_type] = ACTIONS(3548), - [anon_sym_namespace] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3548), - [anon_sym_RBRACE] = ACTIONS(3548), - [anon_sym_typeof] = ACTIONS(3548), - [anon_sym_import] = ACTIONS(3548), - [anon_sym_from] = ACTIONS(3548), - [anon_sym_with] = ACTIONS(3548), - [anon_sym_var] = ACTIONS(3548), - [anon_sym_let] = ACTIONS(3548), - [anon_sym_const] = ACTIONS(3548), - [anon_sym_BANG] = ACTIONS(3548), - [anon_sym_if] = ACTIONS(3548), - [anon_sym_switch] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_await] = ACTIONS(3548), - [anon_sym_of] = ACTIONS(3548), - [anon_sym_while] = ACTIONS(3548), - [anon_sym_do] = ACTIONS(3548), - [anon_sym_try] = ACTIONS(3548), - [anon_sym_break] = ACTIONS(3548), - [anon_sym_continue] = ACTIONS(3548), - [anon_sym_debugger] = ACTIONS(3548), - [anon_sym_return] = ACTIONS(3548), - [anon_sym_throw] = ACTIONS(3548), - [anon_sym_SEMI] = ACTIONS(3548), - [anon_sym_case] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3548), - [anon_sym_LBRACK] = ACTIONS(3548), - [anon_sym_LTtemplate_GT] = ACTIONS(3548), - [anon_sym_DQUOTE] = ACTIONS(3548), - [anon_sym_SQUOTE] = ACTIONS(3548), - [anon_sym_class] = ACTIONS(3548), - [anon_sym_async] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3548), - [anon_sym_using] = ACTIONS(3548), - [anon_sym_PLUS] = ACTIONS(3548), - [anon_sym_DASH] = ACTIONS(3548), - [anon_sym_SLASH] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_TILDE] = ACTIONS(3548), - [anon_sym_void] = ACTIONS(3548), - [anon_sym_delete] = ACTIONS(3548), - [anon_sym_PLUS_PLUS] = ACTIONS(3548), - [anon_sym_DASH_DASH] = ACTIONS(3548), + [1315] = { + [sym_comment] = STATE(1315), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3548), - [sym_number] = ACTIONS(3548), - [sym_private_property_identifier] = ACTIONS(3548), - [sym_this] = ACTIONS(3548), - [sym_super] = ACTIONS(3548), - [sym_true] = ACTIONS(3548), - [sym_false] = ACTIONS(3548), - [sym_null] = ACTIONS(3548), - [sym_undefined] = ACTIONS(3548), - [anon_sym_AT] = ACTIONS(3548), - [anon_sym_static] = ACTIONS(3548), - [anon_sym_readonly] = ACTIONS(3548), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3548), - [anon_sym_declare] = ACTIONS(3548), - [anon_sym_public] = ACTIONS(3548), - [anon_sym_private] = ACTIONS(3548), - [anon_sym_protected] = ACTIONS(3548), - [anon_sym_override] = ACTIONS(3548), - [anon_sym_module] = ACTIONS(3548), - [anon_sym_any] = ACTIONS(3548), - [anon_sym_number] = ACTIONS(3548), - [anon_sym_boolean] = ACTIONS(3548), - [anon_sym_string] = ACTIONS(3548), - [anon_sym_symbol] = ACTIONS(3548), - [anon_sym_object] = ACTIONS(3548), - [anon_sym_property] = ACTIONS(3548), - [anon_sym_signal] = ACTIONS(3548), - [anon_sym_on] = ACTIONS(3548), - [anon_sym_required] = ACTIONS(3548), - [anon_sym_component] = ACTIONS(3548), - [anon_sym_abstract] = ACTIONS(3548), - [anon_sym_interface] = ACTIONS(3548), - [anon_sym_enum] = ACTIONS(3548), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), [sym_html_comment] = ACTIONS(5), }, - [1355] = { - [sym_comment] = STATE(1355), - [sym_identifier] = ACTIONS(3546), - [anon_sym_export] = ACTIONS(3546), - [anon_sym_default] = ACTIONS(3546), - [anon_sym_type] = ACTIONS(3546), - [anon_sym_namespace] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_RBRACE] = ACTIONS(3546), - [anon_sym_typeof] = ACTIONS(3546), - [anon_sym_import] = ACTIONS(3546), - [anon_sym_from] = ACTIONS(3546), - [anon_sym_with] = ACTIONS(3546), - [anon_sym_var] = ACTIONS(3546), - [anon_sym_let] = ACTIONS(3546), - [anon_sym_const] = ACTIONS(3546), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_if] = ACTIONS(3546), - [anon_sym_switch] = ACTIONS(3546), - [anon_sym_for] = ACTIONS(3546), - [anon_sym_LPAREN] = ACTIONS(3546), - [anon_sym_await] = ACTIONS(3546), - [anon_sym_of] = ACTIONS(3546), - [anon_sym_while] = ACTIONS(3546), - [anon_sym_do] = ACTIONS(3546), - [anon_sym_try] = ACTIONS(3546), - [anon_sym_break] = ACTIONS(3546), - [anon_sym_continue] = ACTIONS(3546), - [anon_sym_debugger] = ACTIONS(3546), - [anon_sym_return] = ACTIONS(3546), - [anon_sym_throw] = ACTIONS(3546), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_case] = ACTIONS(3546), - [anon_sym_yield] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3546), - [anon_sym_LTtemplate_GT] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(3546), - [anon_sym_SQUOTE] = ACTIONS(3546), - [anon_sym_class] = ACTIONS(3546), - [anon_sym_async] = ACTIONS(3546), - [anon_sym_function] = ACTIONS(3546), - [anon_sym_new] = ACTIONS(3546), - [anon_sym_using] = ACTIONS(3546), - [anon_sym_PLUS] = ACTIONS(3546), - [anon_sym_DASH] = ACTIONS(3546), - [anon_sym_SLASH] = ACTIONS(3546), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_void] = ACTIONS(3546), - [anon_sym_delete] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_DASH_DASH] = ACTIONS(3546), + [1316] = { + [sym_comment] = STATE(1316), + [sym_identifier] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_import] = ACTIONS(2466), + [anon_sym_from] = ACTIONS(2466), + [anon_sym_with] = ACTIONS(2466), + [anon_sym_var] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_await] = ACTIONS(2466), + [anon_sym_of] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_debugger] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_throw] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_yield] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_LTtemplate_GT] = ACTIONS(2466), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_class] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2466), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_using] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_void] = ACTIONS(2466), + [anon_sym_delete] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3546), - [sym_number] = ACTIONS(3546), - [sym_private_property_identifier] = ACTIONS(3546), - [sym_this] = ACTIONS(3546), - [sym_super] = ACTIONS(3546), - [sym_true] = ACTIONS(3546), - [sym_false] = ACTIONS(3546), - [sym_null] = ACTIONS(3546), - [sym_undefined] = ACTIONS(3546), - [anon_sym_AT] = ACTIONS(3546), - [anon_sym_static] = ACTIONS(3546), - [anon_sym_readonly] = ACTIONS(3546), - [anon_sym_get] = ACTIONS(3546), - [anon_sym_set] = ACTIONS(3546), - [anon_sym_declare] = ACTIONS(3546), - [anon_sym_public] = ACTIONS(3546), - [anon_sym_private] = ACTIONS(3546), - [anon_sym_protected] = ACTIONS(3546), - [anon_sym_override] = ACTIONS(3546), - [anon_sym_module] = ACTIONS(3546), - [anon_sym_any] = ACTIONS(3546), - [anon_sym_number] = ACTIONS(3546), - [anon_sym_boolean] = ACTIONS(3546), - [anon_sym_string] = ACTIONS(3546), - [anon_sym_symbol] = ACTIONS(3546), - [anon_sym_object] = ACTIONS(3546), - [anon_sym_property] = ACTIONS(3546), - [anon_sym_signal] = ACTIONS(3546), - [anon_sym_on] = ACTIONS(3546), - [anon_sym_required] = ACTIONS(3546), - [anon_sym_component] = ACTIONS(3546), - [anon_sym_abstract] = ACTIONS(3546), - [anon_sym_interface] = ACTIONS(3546), - [anon_sym_enum] = ACTIONS(3546), + [anon_sym_BQUOTE] = ACTIONS(2466), + [sym_number] = ACTIONS(2466), + [sym_private_property_identifier] = ACTIONS(2466), + [sym_this] = ACTIONS(2466), + [sym_super] = ACTIONS(2466), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [sym_null] = ACTIONS(2466), + [sym_undefined] = ACTIONS(2466), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), + [anon_sym_property] = ACTIONS(2466), + [anon_sym_signal] = ACTIONS(2466), + [anon_sym_on] = ACTIONS(2466), + [anon_sym_required] = ACTIONS(2466), + [anon_sym_component] = ACTIONS(2466), + [anon_sym_abstract] = ACTIONS(2466), + [anon_sym_interface] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), [sym_html_comment] = ACTIONS(5), }, - [1356] = { - [sym_comment] = STATE(1356), - [sym_identifier] = ACTIONS(3544), - [anon_sym_export] = ACTIONS(3544), - [anon_sym_default] = ACTIONS(3544), - [anon_sym_type] = ACTIONS(3544), - [anon_sym_namespace] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3544), - [anon_sym_RBRACE] = ACTIONS(3544), - [anon_sym_typeof] = ACTIONS(3544), - [anon_sym_import] = ACTIONS(3544), - [anon_sym_from] = ACTIONS(3544), - [anon_sym_with] = ACTIONS(3544), - [anon_sym_var] = ACTIONS(3544), - [anon_sym_let] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_BANG] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3544), - [anon_sym_switch] = ACTIONS(3544), - [anon_sym_for] = ACTIONS(3544), - [anon_sym_LPAREN] = ACTIONS(3544), - [anon_sym_await] = ACTIONS(3544), - [anon_sym_of] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_do] = ACTIONS(3544), - [anon_sym_try] = ACTIONS(3544), - [anon_sym_break] = ACTIONS(3544), - [anon_sym_continue] = ACTIONS(3544), - [anon_sym_debugger] = ACTIONS(3544), - [anon_sym_return] = ACTIONS(3544), - [anon_sym_throw] = ACTIONS(3544), - [anon_sym_SEMI] = ACTIONS(3544), - [anon_sym_case] = ACTIONS(3544), - [anon_sym_yield] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3544), - [anon_sym_LTtemplate_GT] = ACTIONS(3544), - [anon_sym_DQUOTE] = ACTIONS(3544), - [anon_sym_SQUOTE] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3544), - [anon_sym_async] = ACTIONS(3544), - [anon_sym_function] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_using] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3544), - [anon_sym_TILDE] = ACTIONS(3544), - [anon_sym_void] = ACTIONS(3544), - [anon_sym_delete] = ACTIONS(3544), - [anon_sym_PLUS_PLUS] = ACTIONS(3544), - [anon_sym_DASH_DASH] = ACTIONS(3544), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3544), - [sym_number] = ACTIONS(3544), - [sym_private_property_identifier] = ACTIONS(3544), - [sym_this] = ACTIONS(3544), - [sym_super] = ACTIONS(3544), - [sym_true] = ACTIONS(3544), - [sym_false] = ACTIONS(3544), - [sym_null] = ACTIONS(3544), - [sym_undefined] = ACTIONS(3544), - [anon_sym_AT] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_readonly] = ACTIONS(3544), - [anon_sym_get] = ACTIONS(3544), - [anon_sym_set] = ACTIONS(3544), - [anon_sym_declare] = ACTIONS(3544), - [anon_sym_public] = ACTIONS(3544), - [anon_sym_private] = ACTIONS(3544), - [anon_sym_protected] = ACTIONS(3544), - [anon_sym_override] = ACTIONS(3544), - [anon_sym_module] = ACTIONS(3544), - [anon_sym_any] = ACTIONS(3544), - [anon_sym_number] = ACTIONS(3544), - [anon_sym_boolean] = ACTIONS(3544), - [anon_sym_string] = ACTIONS(3544), - [anon_sym_symbol] = ACTIONS(3544), - [anon_sym_object] = ACTIONS(3544), - [anon_sym_property] = ACTIONS(3544), - [anon_sym_signal] = ACTIONS(3544), - [anon_sym_on] = ACTIONS(3544), - [anon_sym_required] = ACTIONS(3544), - [anon_sym_component] = ACTIONS(3544), - [anon_sym_abstract] = ACTIONS(3544), - [anon_sym_interface] = ACTIONS(3544), - [anon_sym_enum] = ACTIONS(3544), + [1317] = { + [sym_comment] = STATE(1317), + [sym_identifier] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_default] = ACTIONS(3670), + [anon_sym_type] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_typeof] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_from] = ACTIONS(3670), + [anon_sym_with] = ACTIONS(3670), + [anon_sym_var] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_await] = ACTIONS(3670), + [anon_sym_of] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_debugger] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_case] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LTtemplate_GT] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_async] = ACTIONS(3670), + [anon_sym_function] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_void] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3670), + [sym_number] = ACTIONS(3670), + [sym_private_property_identifier] = ACTIONS(3670), + [sym_this] = ACTIONS(3670), + [sym_super] = ACTIONS(3670), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [sym_null] = ACTIONS(3670), + [sym_undefined] = ACTIONS(3670), + [anon_sym_AT] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_readonly] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(3670), + [anon_sym_set] = ACTIONS(3670), + [anon_sym_declare] = ACTIONS(3670), + [anon_sym_public] = ACTIONS(3670), + [anon_sym_private] = ACTIONS(3670), + [anon_sym_protected] = ACTIONS(3670), + [anon_sym_override] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_any] = ACTIONS(3670), + [anon_sym_number] = ACTIONS(3670), + [anon_sym_boolean] = ACTIONS(3670), + [anon_sym_string] = ACTIONS(3670), + [anon_sym_symbol] = ACTIONS(3670), + [anon_sym_object] = ACTIONS(3670), + [anon_sym_property] = ACTIONS(3670), + [anon_sym_signal] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3670), + [anon_sym_required] = ACTIONS(3670), + [anon_sym_component] = ACTIONS(3670), + [anon_sym_abstract] = ACTIONS(3670), + [anon_sym_interface] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), [sym_html_comment] = ACTIONS(5), }, - [1357] = { - [sym_comment] = STATE(1357), - [sym_identifier] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_default] = ACTIONS(3572), - [anon_sym_type] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3572), - [anon_sym_RBRACE] = ACTIONS(3572), - [anon_sym_typeof] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_from] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3572), - [anon_sym_var] = ACTIONS(3572), - [anon_sym_let] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_await] = ACTIONS(3572), - [anon_sym_of] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_debugger] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3572), - [anon_sym_case] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_LTtemplate_GT] = ACTIONS(3572), - [anon_sym_DQUOTE] = ACTIONS(3572), - [anon_sym_SQUOTE] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_async] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_SLASH] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_TILDE] = ACTIONS(3572), - [anon_sym_void] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3572), + [1318] = { + [sym_comment] = STATE(1318), + [sym_identifier] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_import] = ACTIONS(2474), + [anon_sym_from] = ACTIONS(2474), + [anon_sym_with] = ACTIONS(2474), + [anon_sym_var] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_await] = ACTIONS(2474), + [anon_sym_of] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_debugger] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_throw] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LTtemplate_GT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2474), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2474), + [anon_sym_using] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_SLASH] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2474), + [anon_sym_TILDE] = ACTIONS(2474), + [anon_sym_void] = ACTIONS(2474), + [anon_sym_delete] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3572), - [sym_number] = ACTIONS(3572), - [sym_private_property_identifier] = ACTIONS(3572), - [sym_this] = ACTIONS(3572), - [sym_super] = ACTIONS(3572), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [sym_null] = ACTIONS(3572), - [sym_undefined] = ACTIONS(3572), - [anon_sym_AT] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_readonly] = ACTIONS(3572), - [anon_sym_get] = ACTIONS(3572), - [anon_sym_set] = ACTIONS(3572), - [anon_sym_declare] = ACTIONS(3572), - [anon_sym_public] = ACTIONS(3572), - [anon_sym_private] = ACTIONS(3572), - [anon_sym_protected] = ACTIONS(3572), - [anon_sym_override] = ACTIONS(3572), - [anon_sym_module] = ACTIONS(3572), - [anon_sym_any] = ACTIONS(3572), - [anon_sym_number] = ACTIONS(3572), - [anon_sym_boolean] = ACTIONS(3572), - [anon_sym_string] = ACTIONS(3572), - [anon_sym_symbol] = ACTIONS(3572), - [anon_sym_object] = ACTIONS(3572), - [anon_sym_property] = ACTIONS(3572), - [anon_sym_signal] = ACTIONS(3572), - [anon_sym_on] = ACTIONS(3572), - [anon_sym_required] = ACTIONS(3572), - [anon_sym_component] = ACTIONS(3572), - [anon_sym_abstract] = ACTIONS(3572), - [anon_sym_interface] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), + [anon_sym_BQUOTE] = ACTIONS(2474), + [sym_number] = ACTIONS(2474), + [sym_private_property_identifier] = ACTIONS(2474), + [sym_this] = ACTIONS(2474), + [sym_super] = ACTIONS(2474), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [sym_null] = ACTIONS(2474), + [sym_undefined] = ACTIONS(2474), + [anon_sym_AT] = ACTIONS(2474), + [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_property] = ACTIONS(2474), + [anon_sym_signal] = ACTIONS(2474), + [anon_sym_on] = ACTIONS(2474), + [anon_sym_required] = ACTIONS(2474), + [anon_sym_component] = ACTIONS(2474), + [anon_sym_abstract] = ACTIONS(2474), + [anon_sym_interface] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [sym__automatic_semicolon] = ACTIONS(2616), [sym_html_comment] = ACTIONS(5), }, - [1358] = { - [sym_comment] = STATE(1358), - [sym_identifier] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_default] = ACTIONS(3572), - [anon_sym_type] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3572), - [anon_sym_RBRACE] = ACTIONS(3572), - [anon_sym_typeof] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_from] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3572), - [anon_sym_var] = ACTIONS(3572), - [anon_sym_let] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_await] = ACTIONS(3572), - [anon_sym_of] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_debugger] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3572), - [anon_sym_case] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_LTtemplate_GT] = ACTIONS(3572), - [anon_sym_DQUOTE] = ACTIONS(3572), - [anon_sym_SQUOTE] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_async] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_SLASH] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_TILDE] = ACTIONS(3572), - [anon_sym_void] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3572), - [sym_number] = ACTIONS(3572), - [sym_private_property_identifier] = ACTIONS(3572), - [sym_this] = ACTIONS(3572), - [sym_super] = ACTIONS(3572), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [sym_null] = ACTIONS(3572), - [sym_undefined] = ACTIONS(3572), - [anon_sym_AT] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_readonly] = ACTIONS(3572), - [anon_sym_get] = ACTIONS(3572), - [anon_sym_set] = ACTIONS(3572), - [anon_sym_declare] = ACTIONS(3572), - [anon_sym_public] = ACTIONS(3572), - [anon_sym_private] = ACTIONS(3572), - [anon_sym_protected] = ACTIONS(3572), - [anon_sym_override] = ACTIONS(3572), - [anon_sym_module] = ACTIONS(3572), - [anon_sym_any] = ACTIONS(3572), - [anon_sym_number] = ACTIONS(3572), - [anon_sym_boolean] = ACTIONS(3572), - [anon_sym_string] = ACTIONS(3572), - [anon_sym_symbol] = ACTIONS(3572), - [anon_sym_object] = ACTIONS(3572), - [anon_sym_property] = ACTIONS(3572), - [anon_sym_signal] = ACTIONS(3572), - [anon_sym_on] = ACTIONS(3572), - [anon_sym_required] = ACTIONS(3572), - [anon_sym_component] = ACTIONS(3572), - [anon_sym_abstract] = ACTIONS(3572), - [anon_sym_interface] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), + [1319] = { + [sym_comment] = STATE(1319), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), [sym_html_comment] = ACTIONS(5), }, - [1359] = { - [sym_comment] = STATE(1359), - [sym_identifier] = ACTIONS(3606), - [anon_sym_export] = ACTIONS(3606), - [anon_sym_default] = ACTIONS(3606), - [anon_sym_type] = ACTIONS(3606), - [anon_sym_namespace] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_RBRACE] = ACTIONS(3606), - [anon_sym_typeof] = ACTIONS(3606), - [anon_sym_import] = ACTIONS(3606), - [anon_sym_from] = ACTIONS(3606), - [anon_sym_with] = ACTIONS(3606), - [anon_sym_var] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_const] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_switch] = ACTIONS(3606), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_await] = ACTIONS(3606), - [anon_sym_of] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_break] = ACTIONS(3606), - [anon_sym_continue] = ACTIONS(3606), - [anon_sym_debugger] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_throw] = ACTIONS(3606), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym_case] = ACTIONS(3606), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LTtemplate_GT] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_SQUOTE] = ACTIONS(3606), - [anon_sym_class] = ACTIONS(3606), - [anon_sym_async] = ACTIONS(3606), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_using] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_void] = ACTIONS(3606), - [anon_sym_delete] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_DASH_DASH] = ACTIONS(3606), + [1320] = { + [sym_comment] = STATE(1320), + [sym_identifier] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_default] = ACTIONS(3682), + [anon_sym_type] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_typeof] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_from] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_var] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_await] = ACTIONS(3682), + [anon_sym_of] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_debugger] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym_case] = ACTIONS(3682), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LTtemplate_GT] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_async] = ACTIONS(3682), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_void] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3682), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3606), - [sym_number] = ACTIONS(3606), - [sym_private_property_identifier] = ACTIONS(3606), - [sym_this] = ACTIONS(3606), - [sym_super] = ACTIONS(3606), - [sym_true] = ACTIONS(3606), - [sym_false] = ACTIONS(3606), - [sym_null] = ACTIONS(3606), - [sym_undefined] = ACTIONS(3606), - [anon_sym_AT] = ACTIONS(3606), - [anon_sym_static] = ACTIONS(3606), - [anon_sym_readonly] = ACTIONS(3606), - [anon_sym_get] = ACTIONS(3606), - [anon_sym_set] = ACTIONS(3606), - [anon_sym_declare] = ACTIONS(3606), - [anon_sym_public] = ACTIONS(3606), - [anon_sym_private] = ACTIONS(3606), - [anon_sym_protected] = ACTIONS(3606), - [anon_sym_override] = ACTIONS(3606), - [anon_sym_module] = ACTIONS(3606), - [anon_sym_any] = ACTIONS(3606), - [anon_sym_number] = ACTIONS(3606), - [anon_sym_boolean] = ACTIONS(3606), - [anon_sym_string] = ACTIONS(3606), - [anon_sym_symbol] = ACTIONS(3606), - [anon_sym_object] = ACTIONS(3606), - [anon_sym_property] = ACTIONS(3606), - [anon_sym_signal] = ACTIONS(3606), - [anon_sym_on] = ACTIONS(3606), - [anon_sym_required] = ACTIONS(3606), - [anon_sym_component] = ACTIONS(3606), - [anon_sym_abstract] = ACTIONS(3606), - [anon_sym_interface] = ACTIONS(3606), - [anon_sym_enum] = ACTIONS(3606), - [sym_html_comment] = ACTIONS(5), - }, - [1360] = { - [sym_comment] = STATE(1360), - [sym_identifier] = ACTIONS(3608), - [anon_sym_export] = ACTIONS(3608), - [anon_sym_default] = ACTIONS(3608), - [anon_sym_type] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_typeof] = ACTIONS(3608), - [anon_sym_import] = ACTIONS(3608), - [anon_sym_from] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3608), - [anon_sym_var] = ACTIONS(3608), - [anon_sym_let] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_BANG] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_await] = ACTIONS(3608), - [anon_sym_of] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_debugger] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3608), - [anon_sym_case] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_LTtemplate_GT] = ACTIONS(3608), - [anon_sym_DQUOTE] = ACTIONS(3608), - [anon_sym_SQUOTE] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_async] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_SLASH] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_TILDE] = ACTIONS(3608), - [anon_sym_void] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3608), - [sym_number] = ACTIONS(3608), - [sym_private_property_identifier] = ACTIONS(3608), - [sym_this] = ACTIONS(3608), - [sym_super] = ACTIONS(3608), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [sym_null] = ACTIONS(3608), - [sym_undefined] = ACTIONS(3608), - [anon_sym_AT] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_readonly] = ACTIONS(3608), - [anon_sym_get] = ACTIONS(3608), - [anon_sym_set] = ACTIONS(3608), - [anon_sym_declare] = ACTIONS(3608), - [anon_sym_public] = ACTIONS(3608), - [anon_sym_private] = ACTIONS(3608), - [anon_sym_protected] = ACTIONS(3608), - [anon_sym_override] = ACTIONS(3608), - [anon_sym_module] = ACTIONS(3608), - [anon_sym_any] = ACTIONS(3608), - [anon_sym_number] = ACTIONS(3608), - [anon_sym_boolean] = ACTIONS(3608), - [anon_sym_string] = ACTIONS(3608), - [anon_sym_symbol] = ACTIONS(3608), - [anon_sym_object] = ACTIONS(3608), - [anon_sym_property] = ACTIONS(3608), - [anon_sym_signal] = ACTIONS(3608), - [anon_sym_on] = ACTIONS(3608), - [anon_sym_required] = ACTIONS(3608), - [anon_sym_component] = ACTIONS(3608), - [anon_sym_abstract] = ACTIONS(3608), - [anon_sym_interface] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3682), + [sym_private_property_identifier] = ACTIONS(3682), + [sym_this] = ACTIONS(3682), + [sym_super] = ACTIONS(3682), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [sym_null] = ACTIONS(3682), + [sym_undefined] = ACTIONS(3682), + [anon_sym_AT] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_get] = ACTIONS(3682), + [anon_sym_set] = ACTIONS(3682), + [anon_sym_declare] = ACTIONS(3682), + [anon_sym_public] = ACTIONS(3682), + [anon_sym_private] = ACTIONS(3682), + [anon_sym_protected] = ACTIONS(3682), + [anon_sym_override] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_any] = ACTIONS(3682), + [anon_sym_number] = ACTIONS(3682), + [anon_sym_boolean] = ACTIONS(3682), + [anon_sym_string] = ACTIONS(3682), + [anon_sym_symbol] = ACTIONS(3682), + [anon_sym_object] = ACTIONS(3682), + [anon_sym_property] = ACTIONS(3682), + [anon_sym_signal] = ACTIONS(3682), + [anon_sym_on] = ACTIONS(3682), + [anon_sym_required] = ACTIONS(3682), + [anon_sym_component] = ACTIONS(3682), + [anon_sym_abstract] = ACTIONS(3682), + [anon_sym_interface] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), [sym_html_comment] = ACTIONS(5), }, - [1361] = { - [sym_comment] = STATE(1361), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_typeof] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_from] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_await] = ACTIONS(2416), - [anon_sym_of] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_debugger] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LTtemplate_GT] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_using] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_void] = ACTIONS(2416), - [anon_sym_delete] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_number] = ACTIONS(2416), - [sym_private_property_identifier] = ACTIONS(2416), - [sym_this] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_true] = ACTIONS(2416), - [sym_false] = ACTIONS(2416), - [sym_null] = ACTIONS(2416), - [sym_undefined] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_property] = ACTIONS(2416), - [anon_sym_signal] = ACTIONS(2416), - [anon_sym_on] = ACTIONS(2416), - [anon_sym_required] = ACTIONS(2416), - [anon_sym_component] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [sym__automatic_semicolon] = ACTIONS(2594), + [1321] = { + [sym_comment] = STATE(1321), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), [sym_html_comment] = ACTIONS(5), }, - [1362] = { - [sym_comment] = STATE(1362), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), + [1322] = { + [sym_comment] = STATE(1322), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_default] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_case] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), [sym_html_comment] = ACTIONS(5), }, - [1363] = { - [sym_comment] = STATE(1363), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1323] = { + [sym_comment] = STATE(1323), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2628), [sym_html_comment] = ACTIONS(5), }, - [1364] = { - [sym_statement_block] = STATE(1576), - [sym_comment] = STATE(1364), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), + [1324] = { + [sym_comment] = STATE(1324), + [sym_identifier] = ACTIONS(2358), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_namespace] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_typeof] = ACTIONS(2358), + [anon_sym_import] = ACTIONS(2358), + [anon_sym_from] = ACTIONS(2358), + [anon_sym_with] = ACTIONS(2358), + [anon_sym_var] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_switch] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2358), + [anon_sym_of] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_debugger] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_throw] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_yield] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LTtemplate_GT] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2358), + [anon_sym_new] = ACTIONS(2358), + [anon_sym_using] = ACTIONS(2358), + [anon_sym_PLUS] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2358), + [anon_sym_delete] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_private_property_identifier] = ACTIONS(2358), + [sym_this] = ACTIONS(2358), + [sym_super] = ACTIONS(2358), + [sym_true] = ACTIONS(2358), + [sym_false] = ACTIONS(2358), + [sym_null] = ACTIONS(2358), + [sym_undefined] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_readonly] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), + [anon_sym_declare] = ACTIONS(2358), + [anon_sym_public] = ACTIONS(2358), + [anon_sym_private] = ACTIONS(2358), + [anon_sym_protected] = ACTIONS(2358), + [anon_sym_override] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_any] = ACTIONS(2358), + [anon_sym_number] = ACTIONS(2358), + [anon_sym_boolean] = ACTIONS(2358), + [anon_sym_string] = ACTIONS(2358), + [anon_sym_symbol] = ACTIONS(2358), + [anon_sym_object] = ACTIONS(2358), + [anon_sym_property] = ACTIONS(2358), + [anon_sym_signal] = ACTIONS(2358), + [anon_sym_on] = ACTIONS(2358), + [anon_sym_required] = ACTIONS(2358), + [anon_sym_component] = ACTIONS(2358), + [anon_sym_abstract] = ACTIONS(2358), + [anon_sym_interface] = ACTIONS(2358), + [anon_sym_enum] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(2630), [sym_html_comment] = ACTIONS(5), }, - [1365] = { - [sym_comment] = STATE(1365), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1325] = { + [sym_comment] = STATE(1325), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_LBRACE] = ACTIONS(2332), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_typeof] = ACTIONS(2332), + [anon_sym_import] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_with] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_const] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_if] = ACTIONS(2332), + [anon_sym_switch] = ACTIONS(2332), + [anon_sym_for] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_await] = ACTIONS(2332), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_while] = ACTIONS(2332), + [anon_sym_do] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2332), + [anon_sym_break] = ACTIONS(2332), + [anon_sym_continue] = ACTIONS(2332), + [anon_sym_debugger] = ACTIONS(2332), + [anon_sym_return] = ACTIONS(2332), + [anon_sym_throw] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_yield] = ACTIONS(2332), + [anon_sym_LBRACK] = ACTIONS(2332), + [anon_sym_LTtemplate_GT] = ACTIONS(2332), + [anon_sym_DQUOTE] = ACTIONS(2332), + [anon_sym_SQUOTE] = ACTIONS(2332), + [anon_sym_class] = ACTIONS(2332), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_new] = ACTIONS(2332), + [anon_sym_using] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_SLASH] = ACTIONS(2332), + [anon_sym_LT] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2332), + [anon_sym_void] = ACTIONS(2332), + [anon_sym_delete] = ACTIONS(2332), + [anon_sym_PLUS_PLUS] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2332), + [sym_number] = ACTIONS(2332), + [sym_private_property_identifier] = ACTIONS(2332), + [sym_this] = ACTIONS(2332), + [sym_super] = ACTIONS(2332), + [sym_true] = ACTIONS(2332), + [sym_false] = ACTIONS(2332), + [sym_null] = ACTIONS(2332), + [sym_undefined] = ACTIONS(2332), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_abstract] = ACTIONS(2332), + [anon_sym_interface] = ACTIONS(2332), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2614), [sym_html_comment] = ACTIONS(5), }, - [1366] = { - [sym_comment] = STATE(1366), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1326] = { + [sym_comment] = STATE(1326), + [sym_identifier] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_typeof] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_await] = ACTIONS(3678), + [anon_sym_of] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_debugger] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_case] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LTtemplate_GT] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_async] = ACTIONS(3678), + [anon_sym_function] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_void] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3678), + [sym_number] = ACTIONS(3678), + [sym_private_property_identifier] = ACTIONS(3678), + [sym_this] = ACTIONS(3678), + [sym_super] = ACTIONS(3678), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_AT] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(3678), + [anon_sym_set] = ACTIONS(3678), + [anon_sym_declare] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_override] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_any] = ACTIONS(3678), + [anon_sym_number] = ACTIONS(3678), + [anon_sym_boolean] = ACTIONS(3678), + [anon_sym_string] = ACTIONS(3678), + [anon_sym_symbol] = ACTIONS(3678), + [anon_sym_object] = ACTIONS(3678), + [anon_sym_property] = ACTIONS(3678), + [anon_sym_signal] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_required] = ACTIONS(3678), + [anon_sym_component] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_interface] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), [sym_html_comment] = ACTIONS(5), }, - [1367] = { - [sym_comment] = STATE(1367), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1327] = { + [sym_comment] = STATE(1327), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), [sym_html_comment] = ACTIONS(5), }, - [1368] = { - [sym_comment] = STATE(1368), - [sym_identifier] = ACTIONS(3454), - [anon_sym_export] = ACTIONS(3454), - [anon_sym_type] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_RBRACE] = ACTIONS(3454), - [anon_sym_typeof] = ACTIONS(3454), - [anon_sym_import] = ACTIONS(3454), - [anon_sym_from] = ACTIONS(3454), - [anon_sym_with] = ACTIONS(3454), - [anon_sym_var] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_BANG] = ACTIONS(3454), - [anon_sym_else] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_await] = ACTIONS(3454), - [anon_sym_of] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_debugger] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3716), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LTtemplate_GT] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_SQUOTE] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_async] = ACTIONS(3454), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_SLASH] = ACTIONS(3454), - [anon_sym_LT] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_void] = ACTIONS(3454), - [anon_sym_delete] = ACTIONS(3454), - [anon_sym_PLUS_PLUS] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3454), + [1328] = { + [sym_comment] = STATE(1328), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_default] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_case] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3454), - [sym_number] = ACTIONS(3454), - [sym_private_property_identifier] = ACTIONS(3454), - [sym_this] = ACTIONS(3454), - [sym_super] = ACTIONS(3454), - [sym_true] = ACTIONS(3454), - [sym_false] = ACTIONS(3454), - [sym_null] = ACTIONS(3454), - [sym_undefined] = ACTIONS(3454), - [anon_sym_AT] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_readonly] = ACTIONS(3454), - [anon_sym_get] = ACTIONS(3454), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_declare] = ACTIONS(3454), - [anon_sym_public] = ACTIONS(3454), - [anon_sym_private] = ACTIONS(3454), - [anon_sym_protected] = ACTIONS(3454), - [anon_sym_override] = ACTIONS(3454), - [anon_sym_module] = ACTIONS(3454), - [anon_sym_any] = ACTIONS(3454), - [anon_sym_number] = ACTIONS(3454), - [anon_sym_boolean] = ACTIONS(3454), - [anon_sym_string] = ACTIONS(3454), - [anon_sym_symbol] = ACTIONS(3454), - [anon_sym_object] = ACTIONS(3454), - [anon_sym_property] = ACTIONS(3454), - [anon_sym_signal] = ACTIONS(3454), - [anon_sym_on] = ACTIONS(3454), - [anon_sym_required] = ACTIONS(3454), - [anon_sym_component] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(3454), - [anon_sym_interface] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [sym__automatic_semicolon] = ACTIONS(3718), - [sym_html_comment] = ACTIONS(5), - }, - [1369] = { - [sym_comment] = STATE(1369), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1370] = { - [sym_comment] = STATE(1370), - [sym_identifier] = ACTIONS(2410), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_typeof] = ACTIONS(2410), - [anon_sym_import] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_with] = ACTIONS(2410), - [anon_sym_var] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_switch] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_of] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_debugger] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_throw] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LTtemplate_GT] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_function] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_using] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_void] = ACTIONS(2410), - [anon_sym_delete] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2410), - [sym_number] = ACTIONS(2410), - [sym_private_property_identifier] = ACTIONS(2410), - [sym_this] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), - [sym_null] = ACTIONS(2410), - [sym_undefined] = ACTIONS(2410), - [anon_sym_AT] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_signal] = ACTIONS(2410), - [anon_sym_on] = ACTIONS(2410), - [anon_sym_required] = ACTIONS(2410), - [anon_sym_component] = ACTIONS(2410), - [anon_sym_abstract] = ACTIONS(2410), - [anon_sym_interface] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [sym_html_comment] = ACTIONS(5), - }, - [1371] = { - [sym_comment] = STATE(1371), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1372] = { - [sym_comment] = STATE(1372), - [sym_identifier] = ACTIONS(2370), - [anon_sym_export] = ACTIONS(2370), - [anon_sym_type] = ACTIONS(2370), - [anon_sym_namespace] = ACTIONS(2370), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_typeof] = ACTIONS(2370), - [anon_sym_import] = ACTIONS(2370), - [anon_sym_from] = ACTIONS(2370), - [anon_sym_with] = ACTIONS(2370), - [anon_sym_var] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_const] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_else] = ACTIONS(2370), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_switch] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_await] = ACTIONS(2370), - [anon_sym_of] = ACTIONS(2370), - [anon_sym_while] = ACTIONS(2370), - [anon_sym_do] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_debugger] = ACTIONS(2370), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_throw] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_yield] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2370), - [anon_sym_LTtemplate_GT] = ACTIONS(2370), - [anon_sym_DOT] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_class] = ACTIONS(2370), - [anon_sym_async] = ACTIONS(2370), - [anon_sym_function] = ACTIONS(2370), - [anon_sym_new] = ACTIONS(2370), - [anon_sym_using] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_SLASH] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_void] = ACTIONS(2370), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2370), - [sym_number] = ACTIONS(2370), - [sym_private_property_identifier] = ACTIONS(2370), - [sym_this] = ACTIONS(2370), - [sym_super] = ACTIONS(2370), - [sym_true] = ACTIONS(2370), - [sym_false] = ACTIONS(2370), - [sym_null] = ACTIONS(2370), - [sym_undefined] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_readonly] = ACTIONS(2370), - [anon_sym_get] = ACTIONS(2370), - [anon_sym_set] = ACTIONS(2370), - [anon_sym_declare] = ACTIONS(2370), - [anon_sym_public] = ACTIONS(2370), - [anon_sym_private] = ACTIONS(2370), - [anon_sym_protected] = ACTIONS(2370), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2370), - [anon_sym_any] = ACTIONS(2370), - [anon_sym_number] = ACTIONS(2370), - [anon_sym_boolean] = ACTIONS(2370), - [anon_sym_string] = ACTIONS(2370), - [anon_sym_symbol] = ACTIONS(2370), - [anon_sym_object] = ACTIONS(2370), - [anon_sym_property] = ACTIONS(2370), - [anon_sym_signal] = ACTIONS(2370), - [anon_sym_on] = ACTIONS(2370), - [anon_sym_required] = ACTIONS(2370), - [anon_sym_component] = ACTIONS(2370), - [anon_sym_abstract] = ACTIONS(2370), - [anon_sym_interface] = ACTIONS(2370), - [anon_sym_enum] = ACTIONS(2370), - [sym_html_comment] = ACTIONS(5), - }, - [1373] = { - [sym_comment] = STATE(1373), - [sym_identifier] = ACTIONS(3610), - [anon_sym_export] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_typeof] = ACTIONS(3610), - [anon_sym_import] = ACTIONS(3610), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_await] = ACTIONS(3610), - [anon_sym_of] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_debugger] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym_case] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LTtemplate_GT] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_async] = ACTIONS(3610), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_void] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3610), - [sym_number] = ACTIONS(3610), - [sym_private_property_identifier] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [sym_super] = ACTIONS(3610), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [sym_null] = ACTIONS(3610), - [sym_undefined] = ACTIONS(3610), - [anon_sym_AT] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_readonly] = ACTIONS(3610), - [anon_sym_get] = ACTIONS(3610), - [anon_sym_set] = ACTIONS(3610), - [anon_sym_declare] = ACTIONS(3610), - [anon_sym_public] = ACTIONS(3610), - [anon_sym_private] = ACTIONS(3610), - [anon_sym_protected] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_any] = ACTIONS(3610), - [anon_sym_number] = ACTIONS(3610), - [anon_sym_boolean] = ACTIONS(3610), - [anon_sym_string] = ACTIONS(3610), - [anon_sym_symbol] = ACTIONS(3610), - [anon_sym_object] = ACTIONS(3610), - [anon_sym_property] = ACTIONS(3610), - [anon_sym_signal] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_required] = ACTIONS(3610), - [anon_sym_component] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_interface] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), - [sym_html_comment] = ACTIONS(5), - }, - [1374] = { - [sym_comment] = STATE(1374), - [sym_identifier] = ACTIONS(3610), - [anon_sym_export] = ACTIONS(3610), - [anon_sym_default] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_typeof] = ACTIONS(3610), - [anon_sym_import] = ACTIONS(3610), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_await] = ACTIONS(3610), - [anon_sym_of] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_debugger] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym_case] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LTtemplate_GT] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_async] = ACTIONS(3610), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_void] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3610), - [sym_number] = ACTIONS(3610), - [sym_private_property_identifier] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [sym_super] = ACTIONS(3610), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [sym_null] = ACTIONS(3610), - [sym_undefined] = ACTIONS(3610), - [anon_sym_AT] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_readonly] = ACTIONS(3610), - [anon_sym_get] = ACTIONS(3610), - [anon_sym_set] = ACTIONS(3610), - [anon_sym_declare] = ACTIONS(3610), - [anon_sym_public] = ACTIONS(3610), - [anon_sym_private] = ACTIONS(3610), - [anon_sym_protected] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_any] = ACTIONS(3610), - [anon_sym_number] = ACTIONS(3610), - [anon_sym_boolean] = ACTIONS(3610), - [anon_sym_string] = ACTIONS(3610), - [anon_sym_symbol] = ACTIONS(3610), - [anon_sym_object] = ACTIONS(3610), - [anon_sym_property] = ACTIONS(3610), - [anon_sym_signal] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_required] = ACTIONS(3610), - [anon_sym_component] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_interface] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), [sym_html_comment] = ACTIONS(5), }, - [1375] = { - [sym_comment] = STATE(1375), + [1329] = { + [sym_comment] = STATE(1329), [sym_identifier] = ACTIONS(3694), [anon_sym_export] = ACTIONS(3694), [anon_sym_default] = ACTIONS(3694), @@ -191386,97 +186919,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3694), [sym_html_comment] = ACTIONS(5), }, - [1376] = { - [sym_comment] = STATE(1376), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_typeof] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_with] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_await] = ACTIONS(2362), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_debugger] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_LTtemplate_GT] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2362), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_void] = ACTIONS(2362), - [anon_sym_delete] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2362), - [sym_number] = ACTIONS(2362), - [sym_private_property_identifier] = ACTIONS(2362), - [sym_this] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_true] = ACTIONS(2362), - [sym_false] = ACTIONS(2362), - [sym_null] = ACTIONS(2362), - [sym_undefined] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - [sym__automatic_semicolon] = ACTIONS(2598), + [1330] = { + [sym_comment] = STATE(1330), + [sym_identifier] = ACTIONS(3696), + [anon_sym_export] = ACTIONS(3696), + [anon_sym_default] = ACTIONS(3696), + [anon_sym_type] = ACTIONS(3696), + [anon_sym_namespace] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_typeof] = ACTIONS(3696), + [anon_sym_import] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_with] = ACTIONS(3696), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_const] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_await] = ACTIONS(3696), + [anon_sym_of] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(3696), + [anon_sym_continue] = ACTIONS(3696), + [anon_sym_debugger] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_throw] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_case] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LTtemplate_GT] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_SQUOTE] = ACTIONS(3696), + [anon_sym_class] = ACTIONS(3696), + [anon_sym_async] = ACTIONS(3696), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_using] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3696), + [anon_sym_void] = ACTIONS(3696), + [anon_sym_delete] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3696), + [anon_sym_DASH_DASH] = ACTIONS(3696), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3696), + [sym_number] = ACTIONS(3696), + [sym_private_property_identifier] = ACTIONS(3696), + [sym_this] = ACTIONS(3696), + [sym_super] = ACTIONS(3696), + [sym_true] = ACTIONS(3696), + [sym_false] = ACTIONS(3696), + [sym_null] = ACTIONS(3696), + [sym_undefined] = ACTIONS(3696), + [anon_sym_AT] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3696), + [anon_sym_readonly] = ACTIONS(3696), + [anon_sym_get] = ACTIONS(3696), + [anon_sym_set] = ACTIONS(3696), + [anon_sym_declare] = ACTIONS(3696), + [anon_sym_public] = ACTIONS(3696), + [anon_sym_private] = ACTIONS(3696), + [anon_sym_protected] = ACTIONS(3696), + [anon_sym_override] = ACTIONS(3696), + [anon_sym_module] = ACTIONS(3696), + [anon_sym_any] = ACTIONS(3696), + [anon_sym_number] = ACTIONS(3696), + [anon_sym_boolean] = ACTIONS(3696), + [anon_sym_string] = ACTIONS(3696), + [anon_sym_symbol] = ACTIONS(3696), + [anon_sym_object] = ACTIONS(3696), + [anon_sym_property] = ACTIONS(3696), + [anon_sym_signal] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_required] = ACTIONS(3696), + [anon_sym_component] = ACTIONS(3696), + [anon_sym_abstract] = ACTIONS(3696), + [anon_sym_interface] = ACTIONS(3696), + [anon_sym_enum] = ACTIONS(3696), [sym_html_comment] = ACTIONS(5), }, - [1377] = { - [sym_comment] = STATE(1377), + [1331] = { + [sym_comment] = STATE(1331), + [sym_identifier] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_default] = ACTIONS(3698), + [anon_sym_type] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_typeof] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_from] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3698), + [anon_sym_var] = ACTIONS(3698), + [anon_sym_let] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_await] = ACTIONS(3698), + [anon_sym_of] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_debugger] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_case] = ACTIONS(3698), + [anon_sym_yield] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LTtemplate_GT] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_async] = ACTIONS(3698), + [anon_sym_function] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_void] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3698), + [sym_number] = ACTIONS(3698), + [sym_private_property_identifier] = ACTIONS(3698), + [sym_this] = ACTIONS(3698), + [sym_super] = ACTIONS(3698), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [sym_null] = ACTIONS(3698), + [sym_undefined] = ACTIONS(3698), + [anon_sym_AT] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_readonly] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(3698), + [anon_sym_set] = ACTIONS(3698), + [anon_sym_declare] = ACTIONS(3698), + [anon_sym_public] = ACTIONS(3698), + [anon_sym_private] = ACTIONS(3698), + [anon_sym_protected] = ACTIONS(3698), + [anon_sym_override] = ACTIONS(3698), + [anon_sym_module] = ACTIONS(3698), + [anon_sym_any] = ACTIONS(3698), + [anon_sym_number] = ACTIONS(3698), + [anon_sym_boolean] = ACTIONS(3698), + [anon_sym_string] = ACTIONS(3698), + [anon_sym_symbol] = ACTIONS(3698), + [anon_sym_object] = ACTIONS(3698), + [anon_sym_property] = ACTIONS(3698), + [anon_sym_signal] = ACTIONS(3698), + [anon_sym_on] = ACTIONS(3698), + [anon_sym_required] = ACTIONS(3698), + [anon_sym_component] = ACTIONS(3698), + [anon_sym_abstract] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [sym_html_comment] = ACTIONS(5), + }, + [1332] = { + [sym_comment] = STATE(1332), + [sym_identifier] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_default] = ACTIONS(3698), + [anon_sym_type] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_typeof] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_from] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3698), + [anon_sym_var] = ACTIONS(3698), + [anon_sym_let] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_await] = ACTIONS(3698), + [anon_sym_of] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_debugger] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_case] = ACTIONS(3698), + [anon_sym_yield] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LTtemplate_GT] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_async] = ACTIONS(3698), + [anon_sym_function] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_void] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3698), + [sym_number] = ACTIONS(3698), + [sym_private_property_identifier] = ACTIONS(3698), + [sym_this] = ACTIONS(3698), + [sym_super] = ACTIONS(3698), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [sym_null] = ACTIONS(3698), + [sym_undefined] = ACTIONS(3698), + [anon_sym_AT] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_readonly] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(3698), + [anon_sym_set] = ACTIONS(3698), + [anon_sym_declare] = ACTIONS(3698), + [anon_sym_public] = ACTIONS(3698), + [anon_sym_private] = ACTIONS(3698), + [anon_sym_protected] = ACTIONS(3698), + [anon_sym_override] = ACTIONS(3698), + [anon_sym_module] = ACTIONS(3698), + [anon_sym_any] = ACTIONS(3698), + [anon_sym_number] = ACTIONS(3698), + [anon_sym_boolean] = ACTIONS(3698), + [anon_sym_string] = ACTIONS(3698), + [anon_sym_symbol] = ACTIONS(3698), + [anon_sym_object] = ACTIONS(3698), + [anon_sym_property] = ACTIONS(3698), + [anon_sym_signal] = ACTIONS(3698), + [anon_sym_on] = ACTIONS(3698), + [anon_sym_required] = ACTIONS(3698), + [anon_sym_component] = ACTIONS(3698), + [anon_sym_abstract] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [sym_html_comment] = ACTIONS(5), + }, + [1333] = { + [sym_comment] = STATE(1333), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2604), + [sym_html_comment] = ACTIONS(5), + }, + [1334] = { + [sym_comment] = STATE(1334), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2634), + [sym_html_comment] = ACTIONS(5), + }, + [1335] = { + [sym_comment] = STATE(1335), [sym_identifier] = ACTIONS(2426), [anon_sym_export] = ACTIONS(2426), [anon_sym_type] = ACTIONS(2426), @@ -191561,1168 +187450,1613 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2426), [anon_sym_interface] = ACTIONS(2426), [anon_sym_enum] = ACTIONS(2426), - [sym__automatic_semicolon] = ACTIONS(2584), - [sym_html_comment] = ACTIONS(5), - }, - [1378] = { - [sym_comment] = STATE(1378), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_typeof] = ACTIONS(2478), - [anon_sym_import] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_with] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_await] = ACTIONS(2478), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LTtemplate_GT] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2478), - [sym_number] = ACTIONS(2478), - [sym_private_property_identifier] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_undefined] = ACTIONS(2478), - [anon_sym_AT] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_object] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_interface] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(2576), - [sym_html_comment] = ACTIONS(5), - }, - [1379] = { - [sym_comment] = STATE(1379), - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_namespace] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_typeof] = ACTIONS(2354), - [anon_sym_import] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_with] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_else] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_await] = ACTIONS(2354), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_debugger] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_throw] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_yield] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LTtemplate_GT] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_class] = ACTIONS(2354), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_new] = ACTIONS(2354), - [anon_sym_using] = ACTIONS(2354), - [anon_sym_PLUS] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_void] = ACTIONS(2354), - [anon_sym_delete] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2354), - [sym_number] = ACTIONS(2354), - [sym_private_property_identifier] = ACTIONS(2354), - [sym_this] = ACTIONS(2354), - [sym_super] = ACTIONS(2354), - [sym_true] = ACTIONS(2354), - [sym_false] = ACTIONS(2354), - [sym_null] = ACTIONS(2354), - [sym_undefined] = ACTIONS(2354), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_object] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2354), - [anon_sym_interface] = ACTIONS(2354), - [anon_sym_enum] = ACTIONS(2354), - [sym__automatic_semicolon] = ACTIONS(2604), + [sym__automatic_semicolon] = ACTIONS(2580), [sym_html_comment] = ACTIONS(5), }, - [1380] = { - [sym_comment] = STATE(1380), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_LTtemplate_GT] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_number] = ACTIONS(2374), - [sym_private_property_identifier] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(2608), + [1336] = { + [sym_comment] = STATE(1336), + [sym_identifier] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_default] = ACTIONS(3686), + [anon_sym_type] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_typeof] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_var] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_await] = ACTIONS(3686), + [anon_sym_of] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_debugger] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_case] = ACTIONS(3686), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LTtemplate_GT] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_async] = ACTIONS(3686), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_void] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3686), + [sym_number] = ACTIONS(3686), + [sym_private_property_identifier] = ACTIONS(3686), + [sym_this] = ACTIONS(3686), + [sym_super] = ACTIONS(3686), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [sym_null] = ACTIONS(3686), + [sym_undefined] = ACTIONS(3686), + [anon_sym_AT] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_readonly] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(3686), + [anon_sym_set] = ACTIONS(3686), + [anon_sym_declare] = ACTIONS(3686), + [anon_sym_public] = ACTIONS(3686), + [anon_sym_private] = ACTIONS(3686), + [anon_sym_protected] = ACTIONS(3686), + [anon_sym_override] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_any] = ACTIONS(3686), + [anon_sym_number] = ACTIONS(3686), + [anon_sym_boolean] = ACTIONS(3686), + [anon_sym_string] = ACTIONS(3686), + [anon_sym_symbol] = ACTIONS(3686), + [anon_sym_object] = ACTIONS(3686), + [anon_sym_property] = ACTIONS(3686), + [anon_sym_signal] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_required] = ACTIONS(3686), + [anon_sym_component] = ACTIONS(3686), + [anon_sym_abstract] = ACTIONS(3686), + [anon_sym_interface] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), [sym_html_comment] = ACTIONS(5), }, - [1381] = { - [sym_comment] = STATE(1381), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1337] = { + [sym_comment] = STATE(1337), + [sym_identifier] = ACTIONS(3690), + [anon_sym_export] = ACTIONS(3690), + [anon_sym_default] = ACTIONS(3690), + [anon_sym_type] = ACTIONS(3690), + [anon_sym_namespace] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_typeof] = ACTIONS(3690), + [anon_sym_import] = ACTIONS(3690), + [anon_sym_from] = ACTIONS(3690), + [anon_sym_with] = ACTIONS(3690), + [anon_sym_var] = ACTIONS(3690), + [anon_sym_let] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_if] = ACTIONS(3690), + [anon_sym_switch] = ACTIONS(3690), + [anon_sym_for] = ACTIONS(3690), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_await] = ACTIONS(3690), + [anon_sym_of] = ACTIONS(3690), + [anon_sym_while] = ACTIONS(3690), + [anon_sym_do] = ACTIONS(3690), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_break] = ACTIONS(3690), + [anon_sym_continue] = ACTIONS(3690), + [anon_sym_debugger] = ACTIONS(3690), + [anon_sym_return] = ACTIONS(3690), + [anon_sym_throw] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym_case] = ACTIONS(3690), + [anon_sym_yield] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_LTtemplate_GT] = ACTIONS(3690), + [anon_sym_DQUOTE] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_class] = ACTIONS(3690), + [anon_sym_async] = ACTIONS(3690), + [anon_sym_function] = ACTIONS(3690), + [anon_sym_new] = ACTIONS(3690), + [anon_sym_using] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_SLASH] = ACTIONS(3690), + [anon_sym_LT] = ACTIONS(3690), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_void] = ACTIONS(3690), + [anon_sym_delete] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3690), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3690), + [sym_number] = ACTIONS(3690), + [sym_private_property_identifier] = ACTIONS(3690), + [sym_this] = ACTIONS(3690), + [sym_super] = ACTIONS(3690), + [sym_true] = ACTIONS(3690), + [sym_false] = ACTIONS(3690), + [sym_null] = ACTIONS(3690), + [sym_undefined] = ACTIONS(3690), + [anon_sym_AT] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_readonly] = ACTIONS(3690), + [anon_sym_get] = ACTIONS(3690), + [anon_sym_set] = ACTIONS(3690), + [anon_sym_declare] = ACTIONS(3690), + [anon_sym_public] = ACTIONS(3690), + [anon_sym_private] = ACTIONS(3690), + [anon_sym_protected] = ACTIONS(3690), + [anon_sym_override] = ACTIONS(3690), + [anon_sym_module] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3690), + [anon_sym_number] = ACTIONS(3690), + [anon_sym_boolean] = ACTIONS(3690), + [anon_sym_string] = ACTIONS(3690), + [anon_sym_symbol] = ACTIONS(3690), + [anon_sym_object] = ACTIONS(3690), + [anon_sym_property] = ACTIONS(3690), + [anon_sym_signal] = ACTIONS(3690), + [anon_sym_on] = ACTIONS(3690), + [anon_sym_required] = ACTIONS(3690), + [anon_sym_component] = ACTIONS(3690), + [anon_sym_abstract] = ACTIONS(3690), + [anon_sym_interface] = ACTIONS(3690), + [anon_sym_enum] = ACTIONS(3690), [sym_html_comment] = ACTIONS(5), }, - [1382] = { - [sym_comment] = STATE(1382), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1338] = { + [sym_comment] = STATE(1338), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_case] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1383] = { - [sym_comment] = STATE(1383), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_finally] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3720), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), [sym_html_comment] = ACTIONS(5), }, - [1384] = { - [sym_comment] = STATE(1384), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1339] = { + [sym_comment] = STATE(1339), + [sym_identifier] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_default] = ACTIONS(3672), + [anon_sym_type] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_typeof] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [anon_sym_var] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_await] = ACTIONS(3672), + [anon_sym_of] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_debugger] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_case] = ACTIONS(3672), + [anon_sym_yield] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_LTtemplate_GT] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_async] = ACTIONS(3672), + [anon_sym_function] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_void] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3672), + [sym_number] = ACTIONS(3672), + [sym_private_property_identifier] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [sym_null] = ACTIONS(3672), + [sym_undefined] = ACTIONS(3672), + [anon_sym_AT] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_readonly] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(3672), + [anon_sym_set] = ACTIONS(3672), + [anon_sym_declare] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_override] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_any] = ACTIONS(3672), + [anon_sym_number] = ACTIONS(3672), + [anon_sym_boolean] = ACTIONS(3672), + [anon_sym_string] = ACTIONS(3672), + [anon_sym_symbol] = ACTIONS(3672), + [anon_sym_object] = ACTIONS(3672), + [anon_sym_property] = ACTIONS(3672), + [anon_sym_signal] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_required] = ACTIONS(3672), + [anon_sym_component] = ACTIONS(3672), + [anon_sym_abstract] = ACTIONS(3672), + [anon_sym_interface] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), [sym_html_comment] = ACTIONS(5), }, - [1385] = { - [sym_comment] = STATE(1385), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1340] = { + [sym_comment] = STATE(1340), + [sym_identifier] = ACTIONS(3702), + [anon_sym_export] = ACTIONS(3702), + [anon_sym_default] = ACTIONS(3702), + [anon_sym_type] = ACTIONS(3702), + [anon_sym_namespace] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_typeof] = ACTIONS(3702), + [anon_sym_import] = ACTIONS(3702), + [anon_sym_from] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3702), + [anon_sym_var] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_const] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_await] = ACTIONS(3702), + [anon_sym_of] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_break] = ACTIONS(3702), + [anon_sym_continue] = ACTIONS(3702), + [anon_sym_debugger] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_throw] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_case] = ACTIONS(3702), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LTtemplate_GT] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_SQUOTE] = ACTIONS(3702), + [anon_sym_class] = ACTIONS(3702), + [anon_sym_async] = ACTIONS(3702), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_using] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3702), + [anon_sym_void] = ACTIONS(3702), + [anon_sym_delete] = ACTIONS(3702), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3702), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3702), + [sym_number] = ACTIONS(3702), + [sym_private_property_identifier] = ACTIONS(3702), + [sym_this] = ACTIONS(3702), + [sym_super] = ACTIONS(3702), + [sym_true] = ACTIONS(3702), + [sym_false] = ACTIONS(3702), + [sym_null] = ACTIONS(3702), + [sym_undefined] = ACTIONS(3702), + [anon_sym_AT] = ACTIONS(3702), + [anon_sym_static] = ACTIONS(3702), + [anon_sym_readonly] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(3702), + [anon_sym_set] = ACTIONS(3702), + [anon_sym_declare] = ACTIONS(3702), + [anon_sym_public] = ACTIONS(3702), + [anon_sym_private] = ACTIONS(3702), + [anon_sym_protected] = ACTIONS(3702), + [anon_sym_override] = ACTIONS(3702), + [anon_sym_module] = ACTIONS(3702), + [anon_sym_any] = ACTIONS(3702), + [anon_sym_number] = ACTIONS(3702), + [anon_sym_boolean] = ACTIONS(3702), + [anon_sym_string] = ACTIONS(3702), + [anon_sym_symbol] = ACTIONS(3702), + [anon_sym_object] = ACTIONS(3702), + [anon_sym_property] = ACTIONS(3702), + [anon_sym_signal] = ACTIONS(3702), + [anon_sym_on] = ACTIONS(3702), + [anon_sym_required] = ACTIONS(3702), + [anon_sym_component] = ACTIONS(3702), + [anon_sym_abstract] = ACTIONS(3702), + [anon_sym_interface] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(3702), [sym_html_comment] = ACTIONS(5), }, - [1386] = { - [sym_comment] = STATE(1386), - [sym_identifier] = ACTIONS(3500), - [anon_sym_export] = ACTIONS(3500), - [anon_sym_default] = ACTIONS(3500), - [anon_sym_type] = ACTIONS(3500), - [anon_sym_namespace] = ACTIONS(3500), - [anon_sym_LBRACE] = ACTIONS(3500), - [anon_sym_RBRACE] = ACTIONS(3500), - [anon_sym_typeof] = ACTIONS(3500), - [anon_sym_import] = ACTIONS(3500), - [anon_sym_from] = ACTIONS(3500), - [anon_sym_with] = ACTIONS(3500), - [anon_sym_var] = ACTIONS(3500), - [anon_sym_let] = ACTIONS(3500), - [anon_sym_const] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3500), - [anon_sym_if] = ACTIONS(3500), - [anon_sym_switch] = ACTIONS(3500), - [anon_sym_for] = ACTIONS(3500), - [anon_sym_LPAREN] = ACTIONS(3500), - [anon_sym_await] = ACTIONS(3500), - [anon_sym_of] = ACTIONS(3500), - [anon_sym_while] = ACTIONS(3500), - [anon_sym_do] = ACTIONS(3500), - [anon_sym_try] = ACTIONS(3500), - [anon_sym_break] = ACTIONS(3500), - [anon_sym_continue] = ACTIONS(3500), - [anon_sym_debugger] = ACTIONS(3500), - [anon_sym_return] = ACTIONS(3500), - [anon_sym_throw] = ACTIONS(3500), - [anon_sym_SEMI] = ACTIONS(3500), - [anon_sym_case] = ACTIONS(3500), - [anon_sym_yield] = ACTIONS(3500), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_LTtemplate_GT] = ACTIONS(3500), - [anon_sym_DQUOTE] = ACTIONS(3500), - [anon_sym_SQUOTE] = ACTIONS(3500), - [anon_sym_class] = ACTIONS(3500), - [anon_sym_async] = ACTIONS(3500), - [anon_sym_function] = ACTIONS(3500), - [anon_sym_new] = ACTIONS(3500), - [anon_sym_using] = ACTIONS(3500), - [anon_sym_PLUS] = ACTIONS(3500), - [anon_sym_DASH] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3500), - [anon_sym_TILDE] = ACTIONS(3500), - [anon_sym_void] = ACTIONS(3500), - [anon_sym_delete] = ACTIONS(3500), - [anon_sym_PLUS_PLUS] = ACTIONS(3500), - [anon_sym_DASH_DASH] = ACTIONS(3500), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3500), - [sym_number] = ACTIONS(3500), - [sym_private_property_identifier] = ACTIONS(3500), - [sym_this] = ACTIONS(3500), - [sym_super] = ACTIONS(3500), - [sym_true] = ACTIONS(3500), - [sym_false] = ACTIONS(3500), - [sym_null] = ACTIONS(3500), - [sym_undefined] = ACTIONS(3500), - [anon_sym_AT] = ACTIONS(3500), - [anon_sym_static] = ACTIONS(3500), - [anon_sym_readonly] = ACTIONS(3500), - [anon_sym_get] = ACTIONS(3500), - [anon_sym_set] = ACTIONS(3500), - [anon_sym_declare] = ACTIONS(3500), - [anon_sym_public] = ACTIONS(3500), - [anon_sym_private] = ACTIONS(3500), - [anon_sym_protected] = ACTIONS(3500), - [anon_sym_override] = ACTIONS(3500), - [anon_sym_module] = ACTIONS(3500), - [anon_sym_any] = ACTIONS(3500), - [anon_sym_number] = ACTIONS(3500), - [anon_sym_boolean] = ACTIONS(3500), - [anon_sym_string] = ACTIONS(3500), - [anon_sym_symbol] = ACTIONS(3500), - [anon_sym_object] = ACTIONS(3500), - [anon_sym_property] = ACTIONS(3500), - [anon_sym_signal] = ACTIONS(3500), - [anon_sym_on] = ACTIONS(3500), - [anon_sym_required] = ACTIONS(3500), - [anon_sym_component] = ACTIONS(3500), - [anon_sym_abstract] = ACTIONS(3500), - [anon_sym_interface] = ACTIONS(3500), - [anon_sym_enum] = ACTIONS(3500), + [1341] = { + [sym_comment] = STATE(1341), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_case] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), [sym_html_comment] = ACTIONS(5), }, - [1387] = { - [sym_comment] = STATE(1387), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [1342] = { + [sym_comment] = STATE(1342), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_default] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_case] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), [sym_html_comment] = ACTIONS(5), }, - [1388] = { - [sym_comment] = STATE(1388), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1343] = { + [sym_comment] = STATE(1343), + [sym_identifier] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_default] = ACTIONS(3674), + [anon_sym_type] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_typeof] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_with] = ACTIONS(3674), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_await] = ACTIONS(3674), + [anon_sym_of] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_debugger] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_case] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LTtemplate_GT] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_async] = ACTIONS(3674), + [anon_sym_function] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3674), + [sym_number] = ACTIONS(3674), + [sym_private_property_identifier] = ACTIONS(3674), + [sym_this] = ACTIONS(3674), + [sym_super] = ACTIONS(3674), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [sym_null] = ACTIONS(3674), + [sym_undefined] = ACTIONS(3674), + [anon_sym_AT] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_readonly] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(3674), + [anon_sym_set] = ACTIONS(3674), + [anon_sym_declare] = ACTIONS(3674), + [anon_sym_public] = ACTIONS(3674), + [anon_sym_private] = ACTIONS(3674), + [anon_sym_protected] = ACTIONS(3674), + [anon_sym_override] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_any] = ACTIONS(3674), + [anon_sym_number] = ACTIONS(3674), + [anon_sym_boolean] = ACTIONS(3674), + [anon_sym_string] = ACTIONS(3674), + [anon_sym_symbol] = ACTIONS(3674), + [anon_sym_object] = ACTIONS(3674), + [anon_sym_property] = ACTIONS(3674), + [anon_sym_signal] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_required] = ACTIONS(3674), + [anon_sym_component] = ACTIONS(3674), + [anon_sym_abstract] = ACTIONS(3674), + [anon_sym_interface] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), [sym_html_comment] = ACTIONS(5), }, - [1389] = { - [sym_comment] = STATE(1389), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1344] = { + [sym_comment] = STATE(1344), + [sym_identifier] = ACTIONS(3700), + [anon_sym_export] = ACTIONS(3700), + [anon_sym_default] = ACTIONS(3700), + [anon_sym_type] = ACTIONS(3700), + [anon_sym_namespace] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_typeof] = ACTIONS(3700), + [anon_sym_import] = ACTIONS(3700), + [anon_sym_from] = ACTIONS(3700), + [anon_sym_with] = ACTIONS(3700), + [anon_sym_var] = ACTIONS(3700), + [anon_sym_let] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_await] = ACTIONS(3700), + [anon_sym_of] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_try] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_debugger] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_throw] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym_case] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_LTtemplate_GT] = ACTIONS(3700), + [anon_sym_DQUOTE] = ACTIONS(3700), + [anon_sym_SQUOTE] = ACTIONS(3700), + [anon_sym_class] = ACTIONS(3700), + [anon_sym_async] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3700), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_SLASH] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_void] = ACTIONS(3700), + [anon_sym_delete] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3700), + [sym_number] = ACTIONS(3700), + [sym_private_property_identifier] = ACTIONS(3700), + [sym_this] = ACTIONS(3700), + [sym_super] = ACTIONS(3700), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [sym_null] = ACTIONS(3700), + [sym_undefined] = ACTIONS(3700), + [anon_sym_AT] = ACTIONS(3700), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_readonly] = ACTIONS(3700), + [anon_sym_get] = ACTIONS(3700), + [anon_sym_set] = ACTIONS(3700), + [anon_sym_declare] = ACTIONS(3700), + [anon_sym_public] = ACTIONS(3700), + [anon_sym_private] = ACTIONS(3700), + [anon_sym_protected] = ACTIONS(3700), + [anon_sym_override] = ACTIONS(3700), + [anon_sym_module] = ACTIONS(3700), + [anon_sym_any] = ACTIONS(3700), + [anon_sym_number] = ACTIONS(3700), + [anon_sym_boolean] = ACTIONS(3700), + [anon_sym_string] = ACTIONS(3700), + [anon_sym_symbol] = ACTIONS(3700), + [anon_sym_object] = ACTIONS(3700), + [anon_sym_property] = ACTIONS(3700), + [anon_sym_signal] = ACTIONS(3700), + [anon_sym_on] = ACTIONS(3700), + [anon_sym_required] = ACTIONS(3700), + [anon_sym_component] = ACTIONS(3700), + [anon_sym_abstract] = ACTIONS(3700), + [anon_sym_interface] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), [sym_html_comment] = ACTIONS(5), }, - [1390] = { - [sym_comment] = STATE(1390), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1345] = { + [sym_comment] = STATE(1345), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_typeof] = ACTIONS(2442), + [anon_sym_import] = ACTIONS(2442), + [anon_sym_from] = ACTIONS(2442), + [anon_sym_with] = ACTIONS(2442), + [anon_sym_var] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_switch] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_await] = ACTIONS(2442), + [anon_sym_of] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_debugger] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_throw] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LTtemplate_GT] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_class] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_using] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_void] = ACTIONS(2442), + [anon_sym_delete] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_number] = ACTIONS(2442), + [sym_private_property_identifier] = ACTIONS(2442), + [sym_this] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_true] = ACTIONS(2442), + [sym_false] = ACTIONS(2442), + [sym_null] = ACTIONS(2442), + [sym_undefined] = ACTIONS(2442), + [anon_sym_AT] = ACTIONS(2442), + [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_property] = ACTIONS(2442), + [anon_sym_signal] = ACTIONS(2442), + [anon_sym_on] = ACTIONS(2442), + [anon_sym_required] = ACTIONS(2442), + [anon_sym_component] = ACTIONS(2442), + [anon_sym_abstract] = ACTIONS(2442), + [anon_sym_interface] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), + [sym__automatic_semicolon] = ACTIONS(2612), [sym_html_comment] = ACTIONS(5), }, - [1391] = { - [sym_comment] = STATE(1391), + [1346] = { + [sym_comment] = STATE(1346), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_case] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym_html_comment] = ACTIONS(5), + }, + [1347] = { + [sym_comment] = STATE(1347), + [sym_identifier] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_type] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_typeof] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_await] = ACTIONS(3668), + [anon_sym_of] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_debugger] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_yield] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LTtemplate_GT] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_async] = ACTIONS(3668), + [anon_sym_function] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_void] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3668), + [sym_number] = ACTIONS(3668), + [sym_private_property_identifier] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [sym_super] = ACTIONS(3668), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [sym_null] = ACTIONS(3668), + [sym_undefined] = ACTIONS(3668), + [anon_sym_AT] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_readonly] = ACTIONS(3668), + [anon_sym_get] = ACTIONS(3668), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_declare] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_override] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_any] = ACTIONS(3668), + [anon_sym_number] = ACTIONS(3668), + [anon_sym_boolean] = ACTIONS(3668), + [anon_sym_string] = ACTIONS(3668), + [anon_sym_symbol] = ACTIONS(3668), + [anon_sym_object] = ACTIONS(3668), + [anon_sym_property] = ACTIONS(3668), + [anon_sym_signal] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_required] = ACTIONS(3668), + [anon_sym_component] = ACTIONS(3668), + [anon_sym_abstract] = ACTIONS(3668), + [anon_sym_interface] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [sym_html_comment] = ACTIONS(5), + }, + [1348] = { + [sym_comment] = STATE(1348), + [sym_identifier] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_default] = ACTIONS(3666), + [anon_sym_type] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_typeof] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_with] = ACTIONS(3666), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_await] = ACTIONS(3666), + [anon_sym_of] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_debugger] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym_case] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_LTtemplate_GT] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_async] = ACTIONS(3666), + [anon_sym_function] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_void] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3666), + [sym_number] = ACTIONS(3666), + [sym_private_property_identifier] = ACTIONS(3666), + [sym_this] = ACTIONS(3666), + [sym_super] = ACTIONS(3666), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [sym_null] = ACTIONS(3666), + [sym_undefined] = ACTIONS(3666), + [anon_sym_AT] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_readonly] = ACTIONS(3666), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_declare] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_override] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_any] = ACTIONS(3666), + [anon_sym_number] = ACTIONS(3666), + [anon_sym_boolean] = ACTIONS(3666), + [anon_sym_string] = ACTIONS(3666), + [anon_sym_symbol] = ACTIONS(3666), + [anon_sym_object] = ACTIONS(3666), + [anon_sym_property] = ACTIONS(3666), + [anon_sym_signal] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_required] = ACTIONS(3666), + [anon_sym_component] = ACTIONS(3666), + [anon_sym_abstract] = ACTIONS(3666), + [anon_sym_interface] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [sym_html_comment] = ACTIONS(5), + }, + [1349] = { + [sym_comment] = STATE(1349), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_finally] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3712), + [sym_html_comment] = ACTIONS(5), + }, + [1350] = { + [sym_comment] = STATE(1350), + [sym_identifier] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_type] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_typeof] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_await] = ACTIONS(3664), + [anon_sym_of] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_debugger] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_yield] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_LTtemplate_GT] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_async] = ACTIONS(3664), + [anon_sym_function] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_void] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3664), + [sym_number] = ACTIONS(3664), + [sym_private_property_identifier] = ACTIONS(3664), + [sym_this] = ACTIONS(3664), + [sym_super] = ACTIONS(3664), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [sym_null] = ACTIONS(3664), + [sym_undefined] = ACTIONS(3664), + [anon_sym_AT] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_readonly] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3664), + [anon_sym_declare] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_override] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_any] = ACTIONS(3664), + [anon_sym_number] = ACTIONS(3664), + [anon_sym_boolean] = ACTIONS(3664), + [anon_sym_string] = ACTIONS(3664), + [anon_sym_symbol] = ACTIONS(3664), + [anon_sym_object] = ACTIONS(3664), + [anon_sym_property] = ACTIONS(3664), + [anon_sym_signal] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_required] = ACTIONS(3664), + [anon_sym_component] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [sym_html_comment] = ACTIONS(5), + }, + [1351] = { + [sym_comment] = STATE(1351), + [sym_identifier] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_default] = ACTIONS(3662), + [anon_sym_type] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_typeof] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3662), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3662), + [anon_sym_await] = ACTIONS(3662), + [anon_sym_of] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_debugger] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_case] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_LTtemplate_GT] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_async] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_void] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3662), + [sym_number] = ACTIONS(3662), + [sym_private_property_identifier] = ACTIONS(3662), + [sym_this] = ACTIONS(3662), + [sym_super] = ACTIONS(3662), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [sym_null] = ACTIONS(3662), + [sym_undefined] = ACTIONS(3662), + [anon_sym_AT] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_readonly] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3662), + [anon_sym_set] = ACTIONS(3662), + [anon_sym_declare] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_override] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_any] = ACTIONS(3662), + [anon_sym_number] = ACTIONS(3662), + [anon_sym_boolean] = ACTIONS(3662), + [anon_sym_string] = ACTIONS(3662), + [anon_sym_symbol] = ACTIONS(3662), + [anon_sym_object] = ACTIONS(3662), + [anon_sym_property] = ACTIONS(3662), + [anon_sym_signal] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_required] = ACTIONS(3662), + [anon_sym_component] = ACTIONS(3662), + [anon_sym_abstract] = ACTIONS(3662), + [anon_sym_interface] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), + [sym_html_comment] = ACTIONS(5), + }, + [1352] = { + [sym_comment] = STATE(1352), + [sym_identifier] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_default] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_from] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_await] = ACTIONS(3658), + [anon_sym_of] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_case] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LTtemplate_GT] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_async] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_void] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3658), + [sym_number] = ACTIONS(3658), + [sym_private_property_identifier] = ACTIONS(3658), + [sym_this] = ACTIONS(3658), + [sym_super] = ACTIONS(3658), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [sym_null] = ACTIONS(3658), + [sym_undefined] = ACTIONS(3658), + [anon_sym_AT] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_readonly] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_declare] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_override] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_any] = ACTIONS(3658), + [anon_sym_number] = ACTIONS(3658), + [anon_sym_boolean] = ACTIONS(3658), + [anon_sym_string] = ACTIONS(3658), + [anon_sym_symbol] = ACTIONS(3658), + [anon_sym_object] = ACTIONS(3658), + [anon_sym_property] = ACTIONS(3658), + [anon_sym_signal] = ACTIONS(3658), + [anon_sym_on] = ACTIONS(3658), + [anon_sym_required] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), + [sym_html_comment] = ACTIONS(5), + }, + [1353] = { + [sym_comment] = STATE(1353), + [sym_identifier] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_default] = ACTIONS(3654), + [anon_sym_type] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_from] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_await] = ACTIONS(3654), + [anon_sym_of] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym_case] = ACTIONS(3654), + [anon_sym_yield] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_LTtemplate_GT] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_async] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_LT] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_void] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3654), + [sym_number] = ACTIONS(3654), + [sym_private_property_identifier] = ACTIONS(3654), + [sym_this] = ACTIONS(3654), + [sym_super] = ACTIONS(3654), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [sym_null] = ACTIONS(3654), + [sym_undefined] = ACTIONS(3654), + [anon_sym_AT] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_readonly] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_declare] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_protected] = ACTIONS(3654), + [anon_sym_override] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_any] = ACTIONS(3654), + [anon_sym_number] = ACTIONS(3654), + [anon_sym_boolean] = ACTIONS(3654), + [anon_sym_string] = ACTIONS(3654), + [anon_sym_symbol] = ACTIONS(3654), + [anon_sym_object] = ACTIONS(3654), + [anon_sym_property] = ACTIONS(3654), + [anon_sym_signal] = ACTIONS(3654), + [anon_sym_on] = ACTIONS(3654), + [anon_sym_required] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), + [sym_html_comment] = ACTIONS(5), + }, + [1354] = { + [sym_comment] = STATE(1354), [sym_identifier] = ACTIONS(3640), [anon_sym_export] = ACTIONS(3640), [anon_sym_default] = ACTIONS(3640), @@ -192810,186 +189144,809 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3640), [sym_html_comment] = ACTIONS(5), }, - [1392] = { - [sym_comment] = STATE(1392), - [sym_identifier] = ACTIONS(3656), - [anon_sym_export] = ACTIONS(3656), - [anon_sym_default] = ACTIONS(3656), - [anon_sym_type] = ACTIONS(3656), - [anon_sym_namespace] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_import] = ACTIONS(3656), - [anon_sym_from] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [anon_sym_var] = ACTIONS(3656), - [anon_sym_let] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3656), - [anon_sym_if] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_for] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_await] = ACTIONS(3656), - [anon_sym_of] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3656), - [anon_sym_do] = ACTIONS(3656), - [anon_sym_try] = ACTIONS(3656), - [anon_sym_break] = ACTIONS(3656), - [anon_sym_continue] = ACTIONS(3656), - [anon_sym_debugger] = ACTIONS(3656), - [anon_sym_return] = ACTIONS(3656), - [anon_sym_throw] = ACTIONS(3656), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_case] = ACTIONS(3656), - [anon_sym_yield] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_LTtemplate_GT] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(3656), - [anon_sym_SQUOTE] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_async] = ACTIONS(3656), - [anon_sym_function] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_using] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3656), - [anon_sym_TILDE] = ACTIONS(3656), - [anon_sym_void] = ACTIONS(3656), - [anon_sym_delete] = ACTIONS(3656), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3656), - [sym_number] = ACTIONS(3656), - [sym_private_property_identifier] = ACTIONS(3656), - [sym_this] = ACTIONS(3656), - [sym_super] = ACTIONS(3656), - [sym_true] = ACTIONS(3656), - [sym_false] = ACTIONS(3656), - [sym_null] = ACTIONS(3656), - [sym_undefined] = ACTIONS(3656), - [anon_sym_AT] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_readonly] = ACTIONS(3656), - [anon_sym_get] = ACTIONS(3656), - [anon_sym_set] = ACTIONS(3656), - [anon_sym_declare] = ACTIONS(3656), - [anon_sym_public] = ACTIONS(3656), - [anon_sym_private] = ACTIONS(3656), - [anon_sym_protected] = ACTIONS(3656), - [anon_sym_override] = ACTIONS(3656), - [anon_sym_module] = ACTIONS(3656), - [anon_sym_any] = ACTIONS(3656), - [anon_sym_number] = ACTIONS(3656), - [anon_sym_boolean] = ACTIONS(3656), - [anon_sym_string] = ACTIONS(3656), - [anon_sym_symbol] = ACTIONS(3656), - [anon_sym_object] = ACTIONS(3656), - [anon_sym_property] = ACTIONS(3656), - [anon_sym_signal] = ACTIONS(3656), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_required] = ACTIONS(3656), - [anon_sym_component] = ACTIONS(3656), - [anon_sym_abstract] = ACTIONS(3656), - [anon_sym_interface] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), + [1355] = { + [sym_comment] = STATE(1355), + [sym_identifier] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_default] = ACTIONS(3620), + [anon_sym_type] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_typeof] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_from] = ACTIONS(3620), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_var] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_await] = ACTIONS(3620), + [anon_sym_of] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_debugger] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym_case] = ACTIONS(3620), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LTtemplate_GT] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_async] = ACTIONS(3620), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_SLASH] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_void] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3620), + [sym_number] = ACTIONS(3620), + [sym_private_property_identifier] = ACTIONS(3620), + [sym_this] = ACTIONS(3620), + [sym_super] = ACTIONS(3620), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [sym_null] = ACTIONS(3620), + [sym_undefined] = ACTIONS(3620), + [anon_sym_AT] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_readonly] = ACTIONS(3620), + [anon_sym_get] = ACTIONS(3620), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_declare] = ACTIONS(3620), + [anon_sym_public] = ACTIONS(3620), + [anon_sym_private] = ACTIONS(3620), + [anon_sym_protected] = ACTIONS(3620), + [anon_sym_override] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_any] = ACTIONS(3620), + [anon_sym_number] = ACTIONS(3620), + [anon_sym_boolean] = ACTIONS(3620), + [anon_sym_string] = ACTIONS(3620), + [anon_sym_symbol] = ACTIONS(3620), + [anon_sym_object] = ACTIONS(3620), + [anon_sym_property] = ACTIONS(3620), + [anon_sym_signal] = ACTIONS(3620), + [anon_sym_on] = ACTIONS(3620), + [anon_sym_required] = ACTIONS(3620), + [anon_sym_component] = ACTIONS(3620), + [anon_sym_abstract] = ACTIONS(3620), + [anon_sym_interface] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), [sym_html_comment] = ACTIONS(5), }, - [1393] = { - [sym_comment] = STATE(1393), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1356] = { + [sym_comment] = STATE(1356), + [sym_identifier] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_default] = ACTIONS(3592), + [anon_sym_type] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_typeof] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_from] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_var] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_await] = ACTIONS(3592), + [anon_sym_of] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_debugger] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_case] = ACTIONS(3592), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LTtemplate_GT] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_async] = ACTIONS(3592), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_SLASH] = ACTIONS(3592), + [anon_sym_LT] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_void] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3592), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2336), + [anon_sym_BQUOTE] = ACTIONS(3592), + [sym_number] = ACTIONS(3592), + [sym_private_property_identifier] = ACTIONS(3592), + [sym_this] = ACTIONS(3592), + [sym_super] = ACTIONS(3592), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [sym_null] = ACTIONS(3592), + [sym_undefined] = ACTIONS(3592), + [anon_sym_AT] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_readonly] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(3592), + [anon_sym_set] = ACTIONS(3592), + [anon_sym_declare] = ACTIONS(3592), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_override] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_any] = ACTIONS(3592), + [anon_sym_number] = ACTIONS(3592), + [anon_sym_boolean] = ACTIONS(3592), + [anon_sym_string] = ACTIONS(3592), + [anon_sym_symbol] = ACTIONS(3592), + [anon_sym_object] = ACTIONS(3592), + [anon_sym_property] = ACTIONS(3592), + [anon_sym_signal] = ACTIONS(3592), + [anon_sym_on] = ACTIONS(3592), + [anon_sym_required] = ACTIONS(3592), + [anon_sym_component] = ACTIONS(3592), + [anon_sym_abstract] = ACTIONS(3592), + [anon_sym_interface] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), [sym_html_comment] = ACTIONS(5), }, - [1394] = { - [sym_comment] = STATE(1394), + [1357] = { + [sym_comment] = STATE(1357), + [sym_identifier] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_default] = ACTIONS(3528), + [anon_sym_type] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_with] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3528), + [anon_sym_of] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_debugger] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_case] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_LTtemplate_GT] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_function] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_SLASH] = ACTIONS(3528), + [anon_sym_LT] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_void] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3528), + [sym_number] = ACTIONS(3528), + [sym_private_property_identifier] = ACTIONS(3528), + [sym_this] = ACTIONS(3528), + [sym_super] = ACTIONS(3528), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [sym_null] = ACTIONS(3528), + [sym_undefined] = ACTIONS(3528), + [anon_sym_AT] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3528), + [anon_sym_declare] = ACTIONS(3528), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_module] = ACTIONS(3528), + [anon_sym_any] = ACTIONS(3528), + [anon_sym_number] = ACTIONS(3528), + [anon_sym_boolean] = ACTIONS(3528), + [anon_sym_string] = ACTIONS(3528), + [anon_sym_symbol] = ACTIONS(3528), + [anon_sym_object] = ACTIONS(3528), + [anon_sym_property] = ACTIONS(3528), + [anon_sym_signal] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_component] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), + [sym_html_comment] = ACTIONS(5), + }, + [1358] = { + [sym_comment] = STATE(1358), + [sym_identifier] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_default] = ACTIONS(3526), + [anon_sym_type] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_RBRACE] = ACTIONS(3526), + [anon_sym_typeof] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_from] = ACTIONS(3526), + [anon_sym_with] = ACTIONS(3526), + [anon_sym_var] = ACTIONS(3526), + [anon_sym_let] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_await] = ACTIONS(3526), + [anon_sym_of] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_debugger] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_case] = ACTIONS(3526), + [anon_sym_yield] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_LTtemplate_GT] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_async] = ACTIONS(3526), + [anon_sym_function] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_SLASH] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_void] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3526), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3526), + [sym_number] = ACTIONS(3526), + [sym_private_property_identifier] = ACTIONS(3526), + [sym_this] = ACTIONS(3526), + [sym_super] = ACTIONS(3526), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [sym_null] = ACTIONS(3526), + [sym_undefined] = ACTIONS(3526), + [anon_sym_AT] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_readonly] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(3526), + [anon_sym_set] = ACTIONS(3526), + [anon_sym_declare] = ACTIONS(3526), + [anon_sym_public] = ACTIONS(3526), + [anon_sym_private] = ACTIONS(3526), + [anon_sym_protected] = ACTIONS(3526), + [anon_sym_override] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_any] = ACTIONS(3526), + [anon_sym_number] = ACTIONS(3526), + [anon_sym_boolean] = ACTIONS(3526), + [anon_sym_string] = ACTIONS(3526), + [anon_sym_symbol] = ACTIONS(3526), + [anon_sym_object] = ACTIONS(3526), + [anon_sym_property] = ACTIONS(3526), + [anon_sym_signal] = ACTIONS(3526), + [anon_sym_on] = ACTIONS(3526), + [anon_sym_required] = ACTIONS(3526), + [anon_sym_component] = ACTIONS(3526), + [anon_sym_abstract] = ACTIONS(3526), + [anon_sym_interface] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), + [sym_html_comment] = ACTIONS(5), + }, + [1359] = { + [sym_comment] = STATE(1359), + [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(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_import] = ACTIONS(2450), + [anon_sym_from] = 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(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2450), + [anon_sym_of] = 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(2450), + [anon_sym_case] = ACTIONS(2450), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LTtemplate_GT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [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(2450), + [anon_sym_void] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [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(2450), + [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_property] = ACTIONS(2450), + [anon_sym_signal] = ACTIONS(2450), + [anon_sym_on] = ACTIONS(2450), + [anon_sym_required] = ACTIONS(2450), + [anon_sym_component] = ACTIONS(2450), + [anon_sym_abstract] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [sym_html_comment] = ACTIONS(5), + }, + [1360] = { + [sym_comment] = STATE(1360), + [sym_identifier] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_type] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_typeof] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_from] = ACTIONS(3518), + [anon_sym_with] = ACTIONS(3518), + [anon_sym_var] = ACTIONS(3518), + [anon_sym_let] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_BANG] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3518), + [anon_sym_await] = ACTIONS(3518), + [anon_sym_of] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_debugger] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_yield] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_LTtemplate_GT] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(3518), + [anon_sym_SQUOTE] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_async] = ACTIONS(3518), + [anon_sym_function] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3518), + [anon_sym_void] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3518), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3518), + [sym_number] = ACTIONS(3518), + [sym_private_property_identifier] = ACTIONS(3518), + [sym_this] = ACTIONS(3518), + [sym_super] = ACTIONS(3518), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_undefined] = ACTIONS(3518), + [anon_sym_AT] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_readonly] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3518), + [anon_sym_set] = ACTIONS(3518), + [anon_sym_declare] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_override] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_any] = ACTIONS(3518), + [anon_sym_number] = ACTIONS(3518), + [anon_sym_boolean] = ACTIONS(3518), + [anon_sym_string] = ACTIONS(3518), + [anon_sym_symbol] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(3518), + [anon_sym_property] = ACTIONS(3518), + [anon_sym_signal] = ACTIONS(3518), + [anon_sym_on] = ACTIONS(3518), + [anon_sym_required] = ACTIONS(3518), + [anon_sym_component] = ACTIONS(3518), + [anon_sym_abstract] = ACTIONS(3518), + [anon_sym_interface] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [sym_html_comment] = ACTIONS(5), + }, + [1361] = { + [sym_comment] = STATE(1361), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_from] = ACTIONS(2462), + [anon_sym_with] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_debugger] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_case] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_void] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_undefined] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_override] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_object] = ACTIONS(2462), + [anon_sym_property] = ACTIONS(2462), + [anon_sym_signal] = ACTIONS(2462), + [anon_sym_on] = ACTIONS(2462), + [anon_sym_required] = ACTIONS(2462), + [anon_sym_component] = ACTIONS(2462), + [anon_sym_abstract] = ACTIONS(2462), + [anon_sym_interface] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [sym_html_comment] = ACTIONS(5), + }, + [1362] = { + [sym_comment] = STATE(1362), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3714), + [sym_html_comment] = ACTIONS(5), + }, + [1363] = { + [sym_comment] = STATE(1363), + [sym_identifier] = ACTIONS(3516), + [anon_sym_export] = ACTIONS(3516), + [anon_sym_default] = ACTIONS(3516), + [anon_sym_type] = ACTIONS(3516), + [anon_sym_namespace] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_typeof] = ACTIONS(3516), + [anon_sym_import] = ACTIONS(3516), + [anon_sym_from] = ACTIONS(3516), + [anon_sym_with] = ACTIONS(3516), + [anon_sym_var] = ACTIONS(3516), + [anon_sym_let] = ACTIONS(3516), + [anon_sym_const] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_if] = ACTIONS(3516), + [anon_sym_switch] = ACTIONS(3516), + [anon_sym_for] = ACTIONS(3516), + [anon_sym_LPAREN] = ACTIONS(3516), + [anon_sym_await] = ACTIONS(3516), + [anon_sym_of] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3516), + [anon_sym_do] = ACTIONS(3516), + [anon_sym_try] = ACTIONS(3516), + [anon_sym_break] = ACTIONS(3516), + [anon_sym_continue] = ACTIONS(3516), + [anon_sym_debugger] = ACTIONS(3516), + [anon_sym_return] = ACTIONS(3516), + [anon_sym_throw] = ACTIONS(3516), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym_case] = ACTIONS(3516), + [anon_sym_yield] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3516), + [anon_sym_LTtemplate_GT] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_class] = ACTIONS(3516), + [anon_sym_async] = ACTIONS(3516), + [anon_sym_function] = ACTIONS(3516), + [anon_sym_new] = ACTIONS(3516), + [anon_sym_using] = ACTIONS(3516), + [anon_sym_PLUS] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_SLASH] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_void] = ACTIONS(3516), + [anon_sym_delete] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3516), + [sym_number] = ACTIONS(3516), + [sym_private_property_identifier] = ACTIONS(3516), + [sym_this] = ACTIONS(3516), + [sym_super] = ACTIONS(3516), + [sym_true] = ACTIONS(3516), + [sym_false] = ACTIONS(3516), + [sym_null] = ACTIONS(3516), + [sym_undefined] = ACTIONS(3516), + [anon_sym_AT] = ACTIONS(3516), + [anon_sym_static] = ACTIONS(3516), + [anon_sym_readonly] = ACTIONS(3516), + [anon_sym_get] = ACTIONS(3516), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_declare] = ACTIONS(3516), + [anon_sym_public] = ACTIONS(3516), + [anon_sym_private] = ACTIONS(3516), + [anon_sym_protected] = ACTIONS(3516), + [anon_sym_override] = ACTIONS(3516), + [anon_sym_module] = ACTIONS(3516), + [anon_sym_any] = ACTIONS(3516), + [anon_sym_number] = ACTIONS(3516), + [anon_sym_boolean] = ACTIONS(3516), + [anon_sym_string] = ACTIONS(3516), + [anon_sym_symbol] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(3516), + [anon_sym_property] = ACTIONS(3516), + [anon_sym_signal] = ACTIONS(3516), + [anon_sym_on] = ACTIONS(3516), + [anon_sym_required] = ACTIONS(3516), + [anon_sym_component] = ACTIONS(3516), + [anon_sym_abstract] = ACTIONS(3516), + [anon_sym_interface] = ACTIONS(3516), + [anon_sym_enum] = ACTIONS(3516), + [sym_html_comment] = ACTIONS(5), + }, + [1364] = { + [sym_comment] = STATE(1364), [sym_identifier] = ACTIONS(2434), [anon_sym_export] = ACTIONS(2434), [anon_sym_default] = ACTIONS(2434), @@ -193077,990 +190034,2323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2434), [sym_html_comment] = ACTIONS(5), }, - [1395] = { - [sym_comment] = STATE(1395), - [sym_identifier] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_default] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_namespace] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2338), - [anon_sym_import] = ACTIONS(2338), - [anon_sym_from] = ACTIONS(2338), - [anon_sym_with] = ACTIONS(2338), - [anon_sym_var] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_do] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_debugger] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_throw] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_case] = ACTIONS(2338), - [anon_sym_yield] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LTtemplate_GT] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_class] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_using] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2338), - [anon_sym_delete] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_private_property_identifier] = ACTIONS(2338), - [sym_this] = ACTIONS(2338), - [sym_super] = ACTIONS(2338), - [sym_true] = ACTIONS(2338), - [sym_false] = ACTIONS(2338), - [sym_null] = ACTIONS(2338), - [sym_undefined] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_readonly] = ACTIONS(2338), - [anon_sym_get] = ACTIONS(2338), - [anon_sym_set] = ACTIONS(2338), - [anon_sym_declare] = ACTIONS(2338), - [anon_sym_public] = ACTIONS(2338), - [anon_sym_private] = ACTIONS(2338), - [anon_sym_protected] = ACTIONS(2338), - [anon_sym_override] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_any] = ACTIONS(2338), - [anon_sym_number] = ACTIONS(2338), - [anon_sym_boolean] = ACTIONS(2338), - [anon_sym_string] = ACTIONS(2338), - [anon_sym_symbol] = ACTIONS(2338), - [anon_sym_object] = ACTIONS(2338), - [anon_sym_property] = ACTIONS(2338), - [anon_sym_signal] = ACTIONS(2338), - [anon_sym_on] = ACTIONS(2338), - [anon_sym_required] = ACTIONS(2338), - [anon_sym_component] = ACTIONS(2338), - [anon_sym_abstract] = ACTIONS(2338), - [anon_sym_interface] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), + [1365] = { + [sym_comment] = STATE(1365), + [sym_identifier] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_default] = ACTIONS(3514), + [anon_sym_type] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_RBRACE] = ACTIONS(3514), + [anon_sym_typeof] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_from] = ACTIONS(3514), + [anon_sym_with] = ACTIONS(3514), + [anon_sym_var] = ACTIONS(3514), + [anon_sym_let] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_await] = ACTIONS(3514), + [anon_sym_of] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_debugger] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_case] = ACTIONS(3514), + [anon_sym_yield] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_LTtemplate_GT] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(3514), + [anon_sym_SQUOTE] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_async] = ACTIONS(3514), + [anon_sym_function] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_void] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3514), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3514), + [sym_number] = ACTIONS(3514), + [sym_private_property_identifier] = ACTIONS(3514), + [sym_this] = ACTIONS(3514), + [sym_super] = ACTIONS(3514), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [sym_null] = ACTIONS(3514), + [sym_undefined] = ACTIONS(3514), + [anon_sym_AT] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_readonly] = ACTIONS(3514), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3514), + [anon_sym_declare] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_override] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_any] = ACTIONS(3514), + [anon_sym_number] = ACTIONS(3514), + [anon_sym_boolean] = ACTIONS(3514), + [anon_sym_string] = ACTIONS(3514), + [anon_sym_symbol] = ACTIONS(3514), + [anon_sym_object] = ACTIONS(3514), + [anon_sym_property] = ACTIONS(3514), + [anon_sym_signal] = ACTIONS(3514), + [anon_sym_on] = ACTIONS(3514), + [anon_sym_required] = ACTIONS(3514), + [anon_sym_component] = ACTIONS(3514), + [anon_sym_abstract] = ACTIONS(3514), + [anon_sym_interface] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), [sym_html_comment] = ACTIONS(5), }, - [1396] = { - [sym_comment] = STATE(1396), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3722), + [1366] = { + [sym_comment] = STATE(1366), + [sym_identifier] = ACTIONS(3512), + [anon_sym_export] = ACTIONS(3512), + [anon_sym_default] = ACTIONS(3512), + [anon_sym_type] = ACTIONS(3512), + [anon_sym_namespace] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3512), + [anon_sym_import] = ACTIONS(3512), + [anon_sym_from] = ACTIONS(3512), + [anon_sym_with] = ACTIONS(3512), + [anon_sym_var] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(3512), + [anon_sym_const] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_if] = ACTIONS(3512), + [anon_sym_switch] = ACTIONS(3512), + [anon_sym_for] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3512), + [anon_sym_of] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(3512), + [anon_sym_do] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3512), + [anon_sym_break] = ACTIONS(3512), + [anon_sym_continue] = ACTIONS(3512), + [anon_sym_debugger] = ACTIONS(3512), + [anon_sym_return] = ACTIONS(3512), + [anon_sym_throw] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_case] = ACTIONS(3512), + [anon_sym_yield] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LTtemplate_GT] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_class] = ACTIONS(3512), + [anon_sym_async] = ACTIONS(3512), + [anon_sym_function] = ACTIONS(3512), + [anon_sym_new] = ACTIONS(3512), + [anon_sym_using] = ACTIONS(3512), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_SLASH] = ACTIONS(3512), + [anon_sym_LT] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_void] = ACTIONS(3512), + [anon_sym_delete] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_number] = ACTIONS(3512), + [sym_private_property_identifier] = ACTIONS(3512), + [sym_this] = ACTIONS(3512), + [sym_super] = ACTIONS(3512), + [sym_true] = ACTIONS(3512), + [sym_false] = ACTIONS(3512), + [sym_null] = ACTIONS(3512), + [sym_undefined] = ACTIONS(3512), + [anon_sym_AT] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3512), + [anon_sym_readonly] = ACTIONS(3512), + [anon_sym_get] = ACTIONS(3512), + [anon_sym_set] = ACTIONS(3512), + [anon_sym_declare] = ACTIONS(3512), + [anon_sym_public] = ACTIONS(3512), + [anon_sym_private] = ACTIONS(3512), + [anon_sym_protected] = ACTIONS(3512), + [anon_sym_override] = ACTIONS(3512), + [anon_sym_module] = ACTIONS(3512), + [anon_sym_any] = ACTIONS(3512), + [anon_sym_number] = ACTIONS(3512), + [anon_sym_boolean] = ACTIONS(3512), + [anon_sym_string] = ACTIONS(3512), + [anon_sym_symbol] = ACTIONS(3512), + [anon_sym_object] = ACTIONS(3512), + [anon_sym_property] = ACTIONS(3512), + [anon_sym_signal] = ACTIONS(3512), + [anon_sym_on] = ACTIONS(3512), + [anon_sym_required] = ACTIONS(3512), + [anon_sym_component] = ACTIONS(3512), + [anon_sym_abstract] = ACTIONS(3512), + [anon_sym_interface] = ACTIONS(3512), + [anon_sym_enum] = ACTIONS(3512), [sym_html_comment] = ACTIONS(5), }, - [1397] = { - [sym_comment] = STATE(1397), - [sym_identifier] = ACTIONS(3672), - [anon_sym_export] = ACTIONS(3672), - [anon_sym_default] = ACTIONS(3672), - [anon_sym_type] = ACTIONS(3672), - [anon_sym_namespace] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_typeof] = ACTIONS(3672), - [anon_sym_import] = ACTIONS(3672), - [anon_sym_from] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3672), - [anon_sym_var] = ACTIONS(3672), - [anon_sym_let] = ACTIONS(3672), - [anon_sym_const] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(3672), - [anon_sym_if] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_for] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_await] = ACTIONS(3672), - [anon_sym_of] = ACTIONS(3672), - [anon_sym_while] = ACTIONS(3672), - [anon_sym_do] = ACTIONS(3672), - [anon_sym_try] = ACTIONS(3672), - [anon_sym_break] = ACTIONS(3672), - [anon_sym_continue] = ACTIONS(3672), - [anon_sym_debugger] = ACTIONS(3672), - [anon_sym_return] = ACTIONS(3672), - [anon_sym_throw] = ACTIONS(3672), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_case] = ACTIONS(3672), - [anon_sym_yield] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_LTtemplate_GT] = ACTIONS(3672), - [anon_sym_DQUOTE] = ACTIONS(3672), - [anon_sym_SQUOTE] = ACTIONS(3672), - [anon_sym_class] = ACTIONS(3672), - [anon_sym_async] = ACTIONS(3672), - [anon_sym_function] = ACTIONS(3672), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_using] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_SLASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_TILDE] = ACTIONS(3672), - [anon_sym_void] = ACTIONS(3672), - [anon_sym_delete] = ACTIONS(3672), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), + [1367] = { + [sym_comment] = STATE(1367), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_default] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_typeof] = ACTIONS(2438), + [anon_sym_import] = ACTIONS(2438), + [anon_sym_from] = ACTIONS(2438), + [anon_sym_with] = ACTIONS(2438), + [anon_sym_var] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_debugger] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_case] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LTtemplate_GT] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_class] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2438), + [anon_sym_delete] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3672), - [sym_number] = ACTIONS(3672), - [sym_private_property_identifier] = ACTIONS(3672), - [sym_this] = ACTIONS(3672), - [sym_super] = ACTIONS(3672), - [sym_true] = ACTIONS(3672), - [sym_false] = ACTIONS(3672), - [sym_null] = ACTIONS(3672), - [sym_undefined] = ACTIONS(3672), - [anon_sym_AT] = ACTIONS(3672), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_readonly] = ACTIONS(3672), - [anon_sym_get] = ACTIONS(3672), - [anon_sym_set] = ACTIONS(3672), - [anon_sym_declare] = ACTIONS(3672), - [anon_sym_public] = ACTIONS(3672), - [anon_sym_private] = ACTIONS(3672), - [anon_sym_protected] = ACTIONS(3672), - [anon_sym_override] = ACTIONS(3672), - [anon_sym_module] = ACTIONS(3672), - [anon_sym_any] = ACTIONS(3672), - [anon_sym_number] = ACTIONS(3672), - [anon_sym_boolean] = ACTIONS(3672), - [anon_sym_string] = ACTIONS(3672), - [anon_sym_symbol] = ACTIONS(3672), - [anon_sym_object] = ACTIONS(3672), - [anon_sym_property] = ACTIONS(3672), - [anon_sym_signal] = ACTIONS(3672), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_required] = ACTIONS(3672), - [anon_sym_component] = ACTIONS(3672), - [anon_sym_abstract] = ACTIONS(3672), - [anon_sym_interface] = ACTIONS(3672), - [anon_sym_enum] = ACTIONS(3672), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_private_property_identifier] = ACTIONS(2438), + [sym_this] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_true] = ACTIONS(2438), + [sym_false] = ACTIONS(2438), + [sym_null] = ACTIONS(2438), + [sym_undefined] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2438), + [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_property] = ACTIONS(2438), + [anon_sym_signal] = ACTIONS(2438), + [anon_sym_on] = ACTIONS(2438), + [anon_sym_required] = ACTIONS(2438), + [anon_sym_component] = ACTIONS(2438), + [anon_sym_abstract] = ACTIONS(2438), + [anon_sym_interface] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), [sym_html_comment] = ACTIONS(5), }, - [1398] = { - [sym_comment] = STATE(1398), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1368] = { + [sym_comment] = STATE(1368), + [sym_identifier] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_default] = ACTIONS(3510), + [anon_sym_type] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3510), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_typeof] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_from] = ACTIONS(3510), + [anon_sym_with] = ACTIONS(3510), + [anon_sym_var] = ACTIONS(3510), + [anon_sym_let] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_await] = ACTIONS(3510), + [anon_sym_of] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_debugger] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_case] = ACTIONS(3510), + [anon_sym_yield] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_LTtemplate_GT] = ACTIONS(3510), + [anon_sym_DQUOTE] = ACTIONS(3510), + [anon_sym_SQUOTE] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_async] = ACTIONS(3510), + [anon_sym_function] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_SLASH] = ACTIONS(3510), + [anon_sym_LT] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3510), + [anon_sym_void] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3724), + [anon_sym_BQUOTE] = ACTIONS(3510), + [sym_number] = ACTIONS(3510), + [sym_private_property_identifier] = ACTIONS(3510), + [sym_this] = ACTIONS(3510), + [sym_super] = ACTIONS(3510), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [sym_null] = ACTIONS(3510), + [sym_undefined] = ACTIONS(3510), + [anon_sym_AT] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_readonly] = ACTIONS(3510), + [anon_sym_get] = ACTIONS(3510), + [anon_sym_set] = ACTIONS(3510), + [anon_sym_declare] = ACTIONS(3510), + [anon_sym_public] = ACTIONS(3510), + [anon_sym_private] = ACTIONS(3510), + [anon_sym_protected] = ACTIONS(3510), + [anon_sym_override] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_any] = ACTIONS(3510), + [anon_sym_number] = ACTIONS(3510), + [anon_sym_boolean] = ACTIONS(3510), + [anon_sym_string] = ACTIONS(3510), + [anon_sym_symbol] = ACTIONS(3510), + [anon_sym_object] = ACTIONS(3510), + [anon_sym_property] = ACTIONS(3510), + [anon_sym_signal] = ACTIONS(3510), + [anon_sym_on] = ACTIONS(3510), + [anon_sym_required] = ACTIONS(3510), + [anon_sym_component] = ACTIONS(3510), + [anon_sym_abstract] = ACTIONS(3510), + [anon_sym_interface] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), [sym_html_comment] = ACTIONS(5), }, - [1399] = { - [sym_comment] = STATE(1399), - [sym_identifier] = ACTIONS(3684), - [anon_sym_export] = ACTIONS(3684), - [anon_sym_default] = ACTIONS(3684), - [anon_sym_type] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3684), - [anon_sym_RBRACE] = ACTIONS(3684), - [anon_sym_typeof] = ACTIONS(3684), - [anon_sym_import] = ACTIONS(3684), - [anon_sym_from] = ACTIONS(3684), - [anon_sym_with] = ACTIONS(3684), - [anon_sym_var] = ACTIONS(3684), - [anon_sym_let] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_LPAREN] = ACTIONS(3684), - [anon_sym_await] = ACTIONS(3684), - [anon_sym_of] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_debugger] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3684), - [anon_sym_case] = ACTIONS(3684), - [anon_sym_yield] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_LTtemplate_GT] = ACTIONS(3684), - [anon_sym_DQUOTE] = ACTIONS(3684), - [anon_sym_SQUOTE] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_async] = ACTIONS(3684), - [anon_sym_function] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_TILDE] = ACTIONS(3684), - [anon_sym_void] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3684), + [1369] = { + [sym_comment] = STATE(1369), + [sym_identifier] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_default] = ACTIONS(3502), + [anon_sym_type] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_typeof] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_from] = ACTIONS(3502), + [anon_sym_with] = ACTIONS(3502), + [anon_sym_var] = ACTIONS(3502), + [anon_sym_let] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_await] = ACTIONS(3502), + [anon_sym_of] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_debugger] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3502), + [anon_sym_case] = ACTIONS(3502), + [anon_sym_yield] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LTtemplate_GT] = ACTIONS(3502), + [anon_sym_DQUOTE] = ACTIONS(3502), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(3502), + [anon_sym_function] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_SLASH] = ACTIONS(3502), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3502), + [anon_sym_void] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3502), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3684), - [sym_number] = ACTIONS(3684), - [sym_private_property_identifier] = ACTIONS(3684), - [sym_this] = ACTIONS(3684), - [sym_super] = ACTIONS(3684), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_AT] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_get] = ACTIONS(3684), - [anon_sym_set] = ACTIONS(3684), - [anon_sym_declare] = ACTIONS(3684), - [anon_sym_public] = ACTIONS(3684), - [anon_sym_private] = ACTIONS(3684), - [anon_sym_protected] = ACTIONS(3684), - [anon_sym_override] = ACTIONS(3684), - [anon_sym_module] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3684), - [anon_sym_number] = ACTIONS(3684), - [anon_sym_boolean] = ACTIONS(3684), - [anon_sym_string] = ACTIONS(3684), - [anon_sym_symbol] = ACTIONS(3684), - [anon_sym_object] = ACTIONS(3684), - [anon_sym_property] = ACTIONS(3684), - [anon_sym_signal] = ACTIONS(3684), - [anon_sym_on] = ACTIONS(3684), - [anon_sym_required] = ACTIONS(3684), - [anon_sym_component] = ACTIONS(3684), - [anon_sym_abstract] = ACTIONS(3684), - [anon_sym_interface] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), + [anon_sym_BQUOTE] = ACTIONS(3502), + [sym_number] = ACTIONS(3502), + [sym_private_property_identifier] = ACTIONS(3502), + [sym_this] = ACTIONS(3502), + [sym_super] = ACTIONS(3502), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [sym_null] = ACTIONS(3502), + [sym_undefined] = ACTIONS(3502), + [anon_sym_AT] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_readonly] = ACTIONS(3502), + [anon_sym_get] = ACTIONS(3502), + [anon_sym_set] = ACTIONS(3502), + [anon_sym_declare] = ACTIONS(3502), + [anon_sym_public] = ACTIONS(3502), + [anon_sym_private] = ACTIONS(3502), + [anon_sym_protected] = ACTIONS(3502), + [anon_sym_override] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_any] = ACTIONS(3502), + [anon_sym_number] = ACTIONS(3502), + [anon_sym_boolean] = ACTIONS(3502), + [anon_sym_string] = ACTIONS(3502), + [anon_sym_symbol] = ACTIONS(3502), + [anon_sym_object] = ACTIONS(3502), + [anon_sym_property] = ACTIONS(3502), + [anon_sym_signal] = ACTIONS(3502), + [anon_sym_on] = ACTIONS(3502), + [anon_sym_required] = ACTIONS(3502), + [anon_sym_component] = ACTIONS(3502), + [anon_sym_abstract] = ACTIONS(3502), + [anon_sym_interface] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), [sym_html_comment] = ACTIONS(5), }, - [1400] = { - [sym_comment] = STATE(1400), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_finally] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), + [1370] = { + [sym_comment] = STATE(1370), + [sym_identifier] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_default] = ACTIONS(3498), + [anon_sym_type] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_RBRACE] = ACTIONS(3498), + [anon_sym_typeof] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_from] = ACTIONS(3498), + [anon_sym_with] = ACTIONS(3498), + [anon_sym_var] = ACTIONS(3498), + [anon_sym_let] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_BANG] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3498), + [anon_sym_await] = ACTIONS(3498), + [anon_sym_of] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_debugger] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_case] = ACTIONS(3498), + [anon_sym_yield] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_LTtemplate_GT] = ACTIONS(3498), + [anon_sym_DQUOTE] = ACTIONS(3498), + [anon_sym_SQUOTE] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_async] = ACTIONS(3498), + [anon_sym_function] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_SLASH] = ACTIONS(3498), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_TILDE] = ACTIONS(3498), + [anon_sym_void] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3498), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym_html_comment] = ACTIONS(5), - }, - [1401] = { - [sym_comment] = STATE(1401), - [sym_identifier] = ACTIONS(3568), - [anon_sym_export] = ACTIONS(3568), - [anon_sym_default] = ACTIONS(3568), - [anon_sym_type] = ACTIONS(3568), - [anon_sym_namespace] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3568), - [anon_sym_RBRACE] = ACTIONS(3568), - [anon_sym_typeof] = ACTIONS(3568), - [anon_sym_import] = ACTIONS(3568), - [anon_sym_from] = ACTIONS(3568), - [anon_sym_with] = ACTIONS(3568), - [anon_sym_var] = ACTIONS(3568), - [anon_sym_let] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_BANG] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_await] = ACTIONS(3568), - [anon_sym_of] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_debugger] = ACTIONS(3568), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_SEMI] = ACTIONS(3568), - [anon_sym_case] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_LTtemplate_GT] = ACTIONS(3568), - [anon_sym_DQUOTE] = ACTIONS(3568), - [anon_sym_SQUOTE] = ACTIONS(3568), - [anon_sym_class] = ACTIONS(3568), - [anon_sym_async] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_using] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_SLASH] = ACTIONS(3568), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_TILDE] = ACTIONS(3568), - [anon_sym_void] = ACTIONS(3568), - [anon_sym_delete] = ACTIONS(3568), - [anon_sym_PLUS_PLUS] = ACTIONS(3568), - [anon_sym_DASH_DASH] = ACTIONS(3568), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3568), - [sym_number] = ACTIONS(3568), - [sym_private_property_identifier] = ACTIONS(3568), - [sym_this] = ACTIONS(3568), - [sym_super] = ACTIONS(3568), - [sym_true] = ACTIONS(3568), - [sym_false] = ACTIONS(3568), - [sym_null] = ACTIONS(3568), - [sym_undefined] = ACTIONS(3568), - [anon_sym_AT] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_readonly] = ACTIONS(3568), - [anon_sym_get] = ACTIONS(3568), - [anon_sym_set] = ACTIONS(3568), - [anon_sym_declare] = ACTIONS(3568), - [anon_sym_public] = ACTIONS(3568), - [anon_sym_private] = ACTIONS(3568), - [anon_sym_protected] = ACTIONS(3568), - [anon_sym_override] = ACTIONS(3568), - [anon_sym_module] = ACTIONS(3568), - [anon_sym_any] = ACTIONS(3568), - [anon_sym_number] = ACTIONS(3568), - [anon_sym_boolean] = ACTIONS(3568), - [anon_sym_string] = ACTIONS(3568), - [anon_sym_symbol] = ACTIONS(3568), - [anon_sym_object] = ACTIONS(3568), - [anon_sym_property] = ACTIONS(3568), - [anon_sym_signal] = ACTIONS(3568), - [anon_sym_on] = ACTIONS(3568), - [anon_sym_required] = ACTIONS(3568), - [anon_sym_component] = ACTIONS(3568), - [anon_sym_abstract] = ACTIONS(3568), - [anon_sym_interface] = ACTIONS(3568), - [anon_sym_enum] = ACTIONS(3568), + [anon_sym_BQUOTE] = ACTIONS(3498), + [sym_number] = ACTIONS(3498), + [sym_private_property_identifier] = ACTIONS(3498), + [sym_this] = ACTIONS(3498), + [sym_super] = ACTIONS(3498), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [sym_null] = ACTIONS(3498), + [sym_undefined] = ACTIONS(3498), + [anon_sym_AT] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_readonly] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3498), + [anon_sym_set] = ACTIONS(3498), + [anon_sym_declare] = ACTIONS(3498), + [anon_sym_public] = ACTIONS(3498), + [anon_sym_private] = ACTIONS(3498), + [anon_sym_protected] = ACTIONS(3498), + [anon_sym_override] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_any] = ACTIONS(3498), + [anon_sym_number] = ACTIONS(3498), + [anon_sym_boolean] = ACTIONS(3498), + [anon_sym_string] = ACTIONS(3498), + [anon_sym_symbol] = ACTIONS(3498), + [anon_sym_object] = ACTIONS(3498), + [anon_sym_property] = ACTIONS(3498), + [anon_sym_signal] = ACTIONS(3498), + [anon_sym_on] = ACTIONS(3498), + [anon_sym_required] = ACTIONS(3498), + [anon_sym_component] = ACTIONS(3498), + [anon_sym_abstract] = ACTIONS(3498), + [anon_sym_interface] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), [sym_html_comment] = ACTIONS(5), }, - [1402] = { - [sym_comment] = STATE(1402), - [sym_identifier] = ACTIONS(3700), - [anon_sym_export] = ACTIONS(3700), - [anon_sym_default] = ACTIONS(3700), - [anon_sym_type] = ACTIONS(3700), - [anon_sym_namespace] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_typeof] = ACTIONS(3700), - [anon_sym_import] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_const] = ACTIONS(3700), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_await] = ACTIONS(3700), - [anon_sym_of] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_debugger] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_throw] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_case] = ACTIONS(3700), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LTtemplate_GT] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_SQUOTE] = ACTIONS(3700), - [anon_sym_class] = ACTIONS(3700), - [anon_sym_async] = ACTIONS(3700), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_using] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3700), - [anon_sym_void] = ACTIONS(3700), - [anon_sym_delete] = ACTIONS(3700), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), + [1371] = { + [sym_comment] = STATE(1371), + [sym_identifier] = ACTIONS(3496), + [anon_sym_export] = ACTIONS(3496), + [anon_sym_default] = ACTIONS(3496), + [anon_sym_type] = ACTIONS(3496), + [anon_sym_namespace] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_typeof] = ACTIONS(3496), + [anon_sym_import] = ACTIONS(3496), + [anon_sym_from] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_var] = ACTIONS(3496), + [anon_sym_let] = ACTIONS(3496), + [anon_sym_const] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_switch] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_await] = ACTIONS(3496), + [anon_sym_of] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_try] = ACTIONS(3496), + [anon_sym_break] = ACTIONS(3496), + [anon_sym_continue] = ACTIONS(3496), + [anon_sym_debugger] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_throw] = ACTIONS(3496), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_case] = ACTIONS(3496), + [anon_sym_yield] = ACTIONS(3496), + [anon_sym_LBRACK] = ACTIONS(3496), + [anon_sym_LTtemplate_GT] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_class] = ACTIONS(3496), + [anon_sym_async] = ACTIONS(3496), + [anon_sym_function] = ACTIONS(3496), + [anon_sym_new] = ACTIONS(3496), + [anon_sym_using] = ACTIONS(3496), + [anon_sym_PLUS] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_void] = ACTIONS(3496), + [anon_sym_delete] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_DASH_DASH] = ACTIONS(3496), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3700), - [sym_number] = ACTIONS(3700), - [sym_private_property_identifier] = ACTIONS(3700), - [sym_this] = ACTIONS(3700), - [sym_super] = ACTIONS(3700), - [sym_true] = ACTIONS(3700), - [sym_false] = ACTIONS(3700), - [sym_null] = ACTIONS(3700), - [sym_undefined] = ACTIONS(3700), - [anon_sym_AT] = ACTIONS(3700), - [anon_sym_static] = ACTIONS(3700), - [anon_sym_readonly] = ACTIONS(3700), - [anon_sym_get] = ACTIONS(3700), - [anon_sym_set] = ACTIONS(3700), - [anon_sym_declare] = ACTIONS(3700), - [anon_sym_public] = ACTIONS(3700), - [anon_sym_private] = ACTIONS(3700), - [anon_sym_protected] = ACTIONS(3700), - [anon_sym_override] = ACTIONS(3700), - [anon_sym_module] = ACTIONS(3700), - [anon_sym_any] = ACTIONS(3700), - [anon_sym_number] = ACTIONS(3700), - [anon_sym_boolean] = ACTIONS(3700), - [anon_sym_string] = ACTIONS(3700), - [anon_sym_symbol] = ACTIONS(3700), - [anon_sym_object] = ACTIONS(3700), - [anon_sym_property] = ACTIONS(3700), - [anon_sym_signal] = ACTIONS(3700), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_required] = ACTIONS(3700), - [anon_sym_component] = ACTIONS(3700), - [anon_sym_abstract] = ACTIONS(3700), - [anon_sym_interface] = ACTIONS(3700), - [anon_sym_enum] = ACTIONS(3700), + [anon_sym_BQUOTE] = ACTIONS(3496), + [sym_number] = ACTIONS(3496), + [sym_private_property_identifier] = ACTIONS(3496), + [sym_this] = ACTIONS(3496), + [sym_super] = ACTIONS(3496), + [sym_true] = ACTIONS(3496), + [sym_false] = ACTIONS(3496), + [sym_null] = ACTIONS(3496), + [sym_undefined] = ACTIONS(3496), + [anon_sym_AT] = ACTIONS(3496), + [anon_sym_static] = ACTIONS(3496), + [anon_sym_readonly] = ACTIONS(3496), + [anon_sym_get] = ACTIONS(3496), + [anon_sym_set] = ACTIONS(3496), + [anon_sym_declare] = ACTIONS(3496), + [anon_sym_public] = ACTIONS(3496), + [anon_sym_private] = ACTIONS(3496), + [anon_sym_protected] = ACTIONS(3496), + [anon_sym_override] = ACTIONS(3496), + [anon_sym_module] = ACTIONS(3496), + [anon_sym_any] = ACTIONS(3496), + [anon_sym_number] = ACTIONS(3496), + [anon_sym_boolean] = ACTIONS(3496), + [anon_sym_string] = ACTIONS(3496), + [anon_sym_symbol] = ACTIONS(3496), + [anon_sym_object] = ACTIONS(3496), + [anon_sym_property] = ACTIONS(3496), + [anon_sym_signal] = ACTIONS(3496), + [anon_sym_on] = ACTIONS(3496), + [anon_sym_required] = ACTIONS(3496), + [anon_sym_component] = ACTIONS(3496), + [anon_sym_abstract] = ACTIONS(3496), + [anon_sym_interface] = ACTIONS(3496), + [anon_sym_enum] = ACTIONS(3496), [sym_html_comment] = ACTIONS(5), }, - [1403] = { - [sym_comment] = STATE(1403), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3726), + [1372] = { + [sym_comment] = STATE(1372), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2492), [sym_html_comment] = ACTIONS(5), }, - [1404] = { - [sym_comment] = STATE(1404), - [sym_identifier] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_type] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_RBRACE] = ACTIONS(3630), - [anon_sym_typeof] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_from] = ACTIONS(3630), - [anon_sym_with] = ACTIONS(3630), - [anon_sym_var] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_await] = ACTIONS(3630), - [anon_sym_of] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_debugger] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LTtemplate_GT] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_SQUOTE] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_async] = ACTIONS(3630), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_SLASH] = ACTIONS(3630), - [anon_sym_LT] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3630), - [anon_sym_void] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3630), + [1373] = { + [sym_comment] = STATE(1373), + [sym_identifier] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_from] = ACTIONS(3486), + [anon_sym_with] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_of] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_debugger] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_case] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LTtemplate_GT] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_function] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_SLASH] = ACTIONS(3486), + [anon_sym_LT] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3630), - [sym_number] = ACTIONS(3630), - [sym_private_property_identifier] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [sym_super] = ACTIONS(3630), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [sym_null] = ACTIONS(3630), - [sym_undefined] = ACTIONS(3630), - [anon_sym_AT] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_readonly] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(3630), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_declare] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_override] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_any] = ACTIONS(3630), - [anon_sym_number] = ACTIONS(3630), - [anon_sym_boolean] = ACTIONS(3630), - [anon_sym_string] = ACTIONS(3630), - [anon_sym_symbol] = ACTIONS(3630), - [anon_sym_object] = ACTIONS(3630), - [anon_sym_property] = ACTIONS(3630), - [anon_sym_signal] = ACTIONS(3630), - [anon_sym_on] = ACTIONS(3630), - [anon_sym_required] = ACTIONS(3630), - [anon_sym_component] = ACTIONS(3630), - [anon_sym_abstract] = ACTIONS(3630), - [anon_sym_interface] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), + [anon_sym_BQUOTE] = ACTIONS(3486), + [sym_number] = ACTIONS(3486), + [sym_private_property_identifier] = ACTIONS(3486), + [sym_this] = ACTIONS(3486), + [sym_super] = ACTIONS(3486), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [anon_sym_AT] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_get] = ACTIONS(3486), + [anon_sym_set] = ACTIONS(3486), + [anon_sym_declare] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_override] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_any] = ACTIONS(3486), + [anon_sym_number] = ACTIONS(3486), + [anon_sym_boolean] = ACTIONS(3486), + [anon_sym_string] = ACTIONS(3486), + [anon_sym_symbol] = ACTIONS(3486), + [anon_sym_object] = ACTIONS(3486), + [anon_sym_property] = ACTIONS(3486), + [anon_sym_signal] = ACTIONS(3486), + [anon_sym_on] = ACTIONS(3486), + [anon_sym_required] = ACTIONS(3486), + [anon_sym_component] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), [sym_html_comment] = ACTIONS(5), }, - [1405] = { - [sym_comment] = STATE(1405), - [sym_identifier] = ACTIONS(3628), - [anon_sym_export] = ACTIONS(3628), - [anon_sym_default] = ACTIONS(3628), - [anon_sym_type] = ACTIONS(3628), - [anon_sym_namespace] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_typeof] = ACTIONS(3628), - [anon_sym_import] = ACTIONS(3628), - [anon_sym_from] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3628), - [anon_sym_var] = ACTIONS(3628), - [anon_sym_let] = ACTIONS(3628), - [anon_sym_const] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_if] = ACTIONS(3628), - [anon_sym_switch] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_await] = ACTIONS(3628), - [anon_sym_of] = ACTIONS(3628), - [anon_sym_while] = ACTIONS(3628), - [anon_sym_do] = ACTIONS(3628), - [anon_sym_try] = ACTIONS(3628), - [anon_sym_break] = ACTIONS(3628), - [anon_sym_continue] = ACTIONS(3628), - [anon_sym_debugger] = ACTIONS(3628), - [anon_sym_return] = ACTIONS(3628), - [anon_sym_throw] = ACTIONS(3628), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_case] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3628), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LTtemplate_GT] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_class] = ACTIONS(3628), - [anon_sym_async] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3628), - [anon_sym_using] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_SLASH] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_void] = ACTIONS(3628), - [anon_sym_delete] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3628), - [sym_number] = ACTIONS(3628), - [sym_private_property_identifier] = ACTIONS(3628), - [sym_this] = ACTIONS(3628), - [sym_super] = ACTIONS(3628), - [sym_true] = ACTIONS(3628), - [sym_false] = ACTIONS(3628), - [sym_null] = ACTIONS(3628), - [sym_undefined] = ACTIONS(3628), - [anon_sym_AT] = ACTIONS(3628), - [anon_sym_static] = ACTIONS(3628), - [anon_sym_readonly] = ACTIONS(3628), - [anon_sym_get] = ACTIONS(3628), - [anon_sym_set] = ACTIONS(3628), - [anon_sym_declare] = ACTIONS(3628), - [anon_sym_public] = ACTIONS(3628), - [anon_sym_private] = ACTIONS(3628), - [anon_sym_protected] = ACTIONS(3628), - [anon_sym_override] = ACTIONS(3628), - [anon_sym_module] = ACTIONS(3628), - [anon_sym_any] = ACTIONS(3628), - [anon_sym_number] = ACTIONS(3628), - [anon_sym_boolean] = ACTIONS(3628), - [anon_sym_string] = ACTIONS(3628), - [anon_sym_symbol] = ACTIONS(3628), - [anon_sym_object] = ACTIONS(3628), - [anon_sym_property] = ACTIONS(3628), - [anon_sym_signal] = ACTIONS(3628), - [anon_sym_on] = ACTIONS(3628), - [anon_sym_required] = ACTIONS(3628), - [anon_sym_component] = ACTIONS(3628), - [anon_sym_abstract] = ACTIONS(3628), - [anon_sym_interface] = ACTIONS(3628), - [anon_sym_enum] = ACTIONS(3628), + [1374] = { + [sym_comment] = STATE(1374), + [sym_identifier] = ACTIONS(3444), + [anon_sym_export] = ACTIONS(3444), + [anon_sym_type] = ACTIONS(3444), + [anon_sym_namespace] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_typeof] = ACTIONS(3444), + [anon_sym_import] = ACTIONS(3444), + [anon_sym_from] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3444), + [anon_sym_var] = ACTIONS(3444), + [anon_sym_let] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_else] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3444), + [anon_sym_await] = ACTIONS(3444), + [anon_sym_of] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_debugger] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_finally] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_LTtemplate_GT] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_async] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_SLASH] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_void] = ACTIONS(3444), + [anon_sym_delete] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3444), + [sym_number] = ACTIONS(3444), + [sym_private_property_identifier] = ACTIONS(3444), + [sym_this] = ACTIONS(3444), + [sym_super] = ACTIONS(3444), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [sym_null] = ACTIONS(3444), + [sym_undefined] = ACTIONS(3444), + [anon_sym_AT] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_readonly] = ACTIONS(3444), + [anon_sym_get] = ACTIONS(3444), + [anon_sym_set] = ACTIONS(3444), + [anon_sym_declare] = ACTIONS(3444), + [anon_sym_public] = ACTIONS(3444), + [anon_sym_private] = ACTIONS(3444), + [anon_sym_protected] = ACTIONS(3444), + [anon_sym_override] = ACTIONS(3444), + [anon_sym_module] = ACTIONS(3444), + [anon_sym_any] = ACTIONS(3444), + [anon_sym_number] = ACTIONS(3444), + [anon_sym_boolean] = ACTIONS(3444), + [anon_sym_string] = ACTIONS(3444), + [anon_sym_symbol] = ACTIONS(3444), + [anon_sym_object] = ACTIONS(3444), + [anon_sym_property] = ACTIONS(3444), + [anon_sym_signal] = ACTIONS(3444), + [anon_sym_on] = ACTIONS(3444), + [anon_sym_required] = ACTIONS(3444), + [anon_sym_component] = ACTIONS(3444), + [anon_sym_abstract] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), [sym_html_comment] = ACTIONS(5), }, - [1406] = { - [sym_comment] = STATE(1406), + [1375] = { + [sym_comment] = STATE(1375), + [sym_identifier] = ACTIONS(3440), + [anon_sym_export] = ACTIONS(3440), + [anon_sym_type] = ACTIONS(3440), + [anon_sym_namespace] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_typeof] = ACTIONS(3440), + [anon_sym_import] = ACTIONS(3440), + [anon_sym_from] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3440), + [anon_sym_var] = ACTIONS(3440), + [anon_sym_let] = ACTIONS(3440), + [anon_sym_const] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_else] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_switch] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_await] = ACTIONS(3440), + [anon_sym_of] = ACTIONS(3440), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(3440), + [anon_sym_try] = ACTIONS(3440), + [anon_sym_break] = ACTIONS(3440), + [anon_sym_continue] = ACTIONS(3440), + [anon_sym_debugger] = ACTIONS(3440), + [anon_sym_return] = ACTIONS(3440), + [anon_sym_throw] = ACTIONS(3440), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_finally] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_LTtemplate_GT] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [anon_sym_class] = ACTIONS(3440), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3440), + [anon_sym_using] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_SLASH] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_void] = ACTIONS(3440), + [anon_sym_delete] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3440), + [sym_number] = ACTIONS(3440), + [sym_private_property_identifier] = ACTIONS(3440), + [sym_this] = ACTIONS(3440), + [sym_super] = ACTIONS(3440), + [sym_true] = ACTIONS(3440), + [sym_false] = ACTIONS(3440), + [sym_null] = ACTIONS(3440), + [sym_undefined] = ACTIONS(3440), + [anon_sym_AT] = ACTIONS(3440), + [anon_sym_static] = ACTIONS(3440), + [anon_sym_readonly] = ACTIONS(3440), + [anon_sym_get] = ACTIONS(3440), + [anon_sym_set] = ACTIONS(3440), + [anon_sym_declare] = ACTIONS(3440), + [anon_sym_public] = ACTIONS(3440), + [anon_sym_private] = ACTIONS(3440), + [anon_sym_protected] = ACTIONS(3440), + [anon_sym_override] = ACTIONS(3440), + [anon_sym_module] = ACTIONS(3440), + [anon_sym_any] = ACTIONS(3440), + [anon_sym_number] = ACTIONS(3440), + [anon_sym_boolean] = ACTIONS(3440), + [anon_sym_string] = ACTIONS(3440), + [anon_sym_symbol] = ACTIONS(3440), + [anon_sym_object] = ACTIONS(3440), + [anon_sym_property] = ACTIONS(3440), + [anon_sym_signal] = ACTIONS(3440), + [anon_sym_on] = ACTIONS(3440), + [anon_sym_required] = ACTIONS(3440), + [anon_sym_component] = ACTIONS(3440), + [anon_sym_abstract] = ACTIONS(3440), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), + [sym_html_comment] = ACTIONS(5), + }, + [1376] = { + [sym_comment] = STATE(1376), + [sym_identifier] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_default] = ACTIONS(3716), + [anon_sym_type] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_RBRACE] = ACTIONS(3716), + [anon_sym_typeof] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_with] = ACTIONS(3716), + [anon_sym_var] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_await] = ACTIONS(3716), + [anon_sym_of] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_debugger] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_case] = ACTIONS(3716), + [anon_sym_yield] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_LTtemplate_GT] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_async] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3716), + [sym_number] = ACTIONS(3716), + [sym_private_property_identifier] = ACTIONS(3716), + [sym_this] = ACTIONS(3716), + [sym_super] = ACTIONS(3716), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), + [sym_undefined] = ACTIONS(3716), + [anon_sym_AT] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_readonly] = ACTIONS(3716), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3716), + [anon_sym_declare] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_override] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_any] = ACTIONS(3716), + [anon_sym_number] = ACTIONS(3716), + [anon_sym_boolean] = ACTIONS(3716), + [anon_sym_string] = ACTIONS(3716), + [anon_sym_symbol] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3716), + [anon_sym_property] = ACTIONS(3716), + [anon_sym_signal] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_required] = ACTIONS(3716), + [anon_sym_component] = ACTIONS(3716), + [anon_sym_abstract] = ACTIONS(3716), + [anon_sym_interface] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), + [sym_html_comment] = ACTIONS(5), + }, + [1377] = { + [sym_comment] = STATE(1377), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2626), + [sym_html_comment] = ACTIONS(5), + }, + [1378] = { + [sym_else_clause] = STATE(1569), + [sym_comment] = STATE(1378), + [sym_identifier] = ACTIONS(3428), + [anon_sym_export] = ACTIONS(3428), + [anon_sym_type] = ACTIONS(3428), + [anon_sym_namespace] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_typeof] = ACTIONS(3428), + [anon_sym_import] = ACTIONS(3428), + [anon_sym_from] = ACTIONS(3428), + [anon_sym_with] = ACTIONS(3428), + [anon_sym_var] = ACTIONS(3428), + [anon_sym_let] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3428), + [anon_sym_else] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_await] = ACTIONS(3428), + [anon_sym_of] = ACTIONS(3428), + [anon_sym_while] = ACTIONS(3428), + [anon_sym_do] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_debugger] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_throw] = ACTIONS(3428), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_yield] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_LTtemplate_GT] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(3428), + [anon_sym_SQUOTE] = ACTIONS(3428), + [anon_sym_class] = ACTIONS(3428), + [anon_sym_async] = ACTIONS(3428), + [anon_sym_function] = ACTIONS(3428), + [anon_sym_new] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_void] = ACTIONS(3428), + [anon_sym_delete] = ACTIONS(3428), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3428), + [sym_number] = ACTIONS(3428), + [sym_private_property_identifier] = ACTIONS(3428), + [sym_this] = ACTIONS(3428), + [sym_super] = ACTIONS(3428), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [sym_null] = ACTIONS(3428), + [sym_undefined] = ACTIONS(3428), + [anon_sym_AT] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3428), + [anon_sym_readonly] = ACTIONS(3428), + [anon_sym_get] = ACTIONS(3428), + [anon_sym_set] = ACTIONS(3428), + [anon_sym_declare] = ACTIONS(3428), + [anon_sym_public] = ACTIONS(3428), + [anon_sym_private] = ACTIONS(3428), + [anon_sym_protected] = ACTIONS(3428), + [anon_sym_override] = ACTIONS(3428), + [anon_sym_module] = ACTIONS(3428), + [anon_sym_any] = ACTIONS(3428), + [anon_sym_number] = ACTIONS(3428), + [anon_sym_boolean] = ACTIONS(3428), + [anon_sym_string] = ACTIONS(3428), + [anon_sym_symbol] = ACTIONS(3428), + [anon_sym_object] = ACTIONS(3428), + [anon_sym_property] = ACTIONS(3428), + [anon_sym_signal] = ACTIONS(3428), + [anon_sym_on] = ACTIONS(3428), + [anon_sym_required] = ACTIONS(3428), + [anon_sym_component] = ACTIONS(3428), + [anon_sym_abstract] = ACTIONS(3428), + [anon_sym_interface] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [sym_html_comment] = ACTIONS(5), + }, + [1379] = { + [sym_finally_clause] = STATE(1599), + [sym_comment] = STATE(1379), + [sym_identifier] = ACTIONS(3410), + [anon_sym_export] = ACTIONS(3410), + [anon_sym_type] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_typeof] = ACTIONS(3410), + [anon_sym_import] = ACTIONS(3410), + [anon_sym_from] = ACTIONS(3410), + [anon_sym_with] = ACTIONS(3410), + [anon_sym_var] = ACTIONS(3410), + [anon_sym_let] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_await] = ACTIONS(3410), + [anon_sym_of] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_debugger] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_finally] = ACTIONS(3452), + [anon_sym_yield] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_LTtemplate_GT] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_SQUOTE] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_async] = ACTIONS(3410), + [anon_sym_function] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_using] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_SLASH] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_void] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3410), + [sym_number] = ACTIONS(3410), + [sym_private_property_identifier] = ACTIONS(3410), + [sym_this] = ACTIONS(3410), + [sym_super] = ACTIONS(3410), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [sym_null] = ACTIONS(3410), + [sym_undefined] = ACTIONS(3410), + [anon_sym_AT] = ACTIONS(3410), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_readonly] = ACTIONS(3410), + [anon_sym_get] = ACTIONS(3410), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_declare] = ACTIONS(3410), + [anon_sym_public] = ACTIONS(3410), + [anon_sym_private] = ACTIONS(3410), + [anon_sym_protected] = ACTIONS(3410), + [anon_sym_override] = ACTIONS(3410), + [anon_sym_module] = ACTIONS(3410), + [anon_sym_any] = ACTIONS(3410), + [anon_sym_number] = ACTIONS(3410), + [anon_sym_boolean] = ACTIONS(3410), + [anon_sym_string] = ACTIONS(3410), + [anon_sym_symbol] = ACTIONS(3410), + [anon_sym_object] = ACTIONS(3410), + [anon_sym_property] = ACTIONS(3410), + [anon_sym_signal] = ACTIONS(3410), + [anon_sym_on] = ACTIONS(3410), + [anon_sym_required] = ACTIONS(3410), + [anon_sym_component] = ACTIONS(3410), + [anon_sym_abstract] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), + [sym_html_comment] = ACTIONS(5), + }, + [1380] = { + [sym_comment] = STATE(1380), + [sym_identifier] = ACTIONS(3434), + [anon_sym_export] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_typeof] = ACTIONS(3434), + [anon_sym_import] = ACTIONS(3434), + [anon_sym_from] = ACTIONS(3434), + [anon_sym_with] = ACTIONS(3434), + [anon_sym_var] = ACTIONS(3434), + [anon_sym_let] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_else] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_await] = ACTIONS(3434), + [anon_sym_of] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_debugger] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym_yield] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_LTtemplate_GT] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_function] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_void] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3434), + [sym_number] = ACTIONS(3434), + [sym_private_property_identifier] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [sym_super] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_null] = ACTIONS(3434), + [sym_undefined] = ACTIONS(3434), + [anon_sym_AT] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_readonly] = ACTIONS(3434), + [anon_sym_get] = ACTIONS(3434), + [anon_sym_set] = ACTIONS(3434), + [anon_sym_declare] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_override] = ACTIONS(3434), + [anon_sym_module] = ACTIONS(3434), + [anon_sym_any] = ACTIONS(3434), + [anon_sym_number] = ACTIONS(3434), + [anon_sym_boolean] = ACTIONS(3434), + [anon_sym_string] = ACTIONS(3434), + [anon_sym_symbol] = ACTIONS(3434), + [anon_sym_object] = ACTIONS(3434), + [anon_sym_property] = ACTIONS(3434), + [anon_sym_signal] = ACTIONS(3434), + [anon_sym_on] = ACTIONS(3434), + [anon_sym_required] = ACTIONS(3434), + [anon_sym_component] = ACTIONS(3434), + [anon_sym_abstract] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [sym__automatic_semicolon] = ACTIONS(3722), + [sym_html_comment] = ACTIONS(5), + }, + [1381] = { + [sym_comment] = STATE(1381), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_namespace] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_typeof] = ACTIONS(2386), + [anon_sym_import] = ACTIONS(2386), + [anon_sym_from] = ACTIONS(2386), + [anon_sym_with] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_else] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_switch] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2386), + [anon_sym_of] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_do] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_debugger] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_throw] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_yield] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LTtemplate_GT] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_class] = ACTIONS(2386), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_function] = ACTIONS(2386), + [anon_sym_new] = ACTIONS(2386), + [anon_sym_using] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2386), + [anon_sym_delete] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_private_property_identifier] = ACTIONS(2386), + [sym_this] = ACTIONS(2386), + [sym_super] = ACTIONS(2386), + [sym_true] = ACTIONS(2386), + [sym_false] = ACTIONS(2386), + [sym_null] = ACTIONS(2386), + [sym_undefined] = ACTIONS(2386), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_readonly] = ACTIONS(2386), + [anon_sym_get] = ACTIONS(2386), + [anon_sym_set] = ACTIONS(2386), + [anon_sym_declare] = ACTIONS(2386), + [anon_sym_public] = ACTIONS(2386), + [anon_sym_private] = ACTIONS(2386), + [anon_sym_protected] = ACTIONS(2386), + [anon_sym_override] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_any] = ACTIONS(2386), + [anon_sym_number] = ACTIONS(2386), + [anon_sym_boolean] = ACTIONS(2386), + [anon_sym_string] = ACTIONS(2386), + [anon_sym_symbol] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(2386), + [anon_sym_property] = ACTIONS(2386), + [anon_sym_signal] = ACTIONS(2386), + [anon_sym_on] = ACTIONS(2386), + [anon_sym_required] = ACTIONS(2386), + [anon_sym_component] = ACTIONS(2386), + [anon_sym_abstract] = ACTIONS(2386), + [anon_sym_interface] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [sym__automatic_semicolon] = ACTIONS(2624), + [sym_html_comment] = ACTIONS(5), + }, + [1382] = { + [sym_comment] = STATE(1382), + [sym_identifier] = ACTIONS(3442), + [anon_sym_export] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_RBRACE] = ACTIONS(3442), + [anon_sym_typeof] = ACTIONS(3442), + [anon_sym_import] = ACTIONS(3442), + [anon_sym_from] = ACTIONS(3442), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_var] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_else] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_await] = ACTIONS(3442), + [anon_sym_of] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_debugger] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_SEMI] = ACTIONS(3442), + [anon_sym_finally] = ACTIONS(3442), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LTtemplate_GT] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_SQUOTE] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_async] = ACTIONS(3442), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_SLASH] = ACTIONS(3442), + [anon_sym_LT] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_void] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3442), + [sym_number] = ACTIONS(3442), + [sym_private_property_identifier] = ACTIONS(3442), + [sym_this] = ACTIONS(3442), + [sym_super] = ACTIONS(3442), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [sym_null] = ACTIONS(3442), + [sym_undefined] = ACTIONS(3442), + [anon_sym_AT] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_readonly] = ACTIONS(3442), + [anon_sym_get] = ACTIONS(3442), + [anon_sym_set] = ACTIONS(3442), + [anon_sym_declare] = ACTIONS(3442), + [anon_sym_public] = ACTIONS(3442), + [anon_sym_private] = ACTIONS(3442), + [anon_sym_protected] = ACTIONS(3442), + [anon_sym_override] = ACTIONS(3442), + [anon_sym_module] = ACTIONS(3442), + [anon_sym_any] = ACTIONS(3442), + [anon_sym_number] = ACTIONS(3442), + [anon_sym_boolean] = ACTIONS(3442), + [anon_sym_string] = ACTIONS(3442), + [anon_sym_symbol] = ACTIONS(3442), + [anon_sym_object] = ACTIONS(3442), + [anon_sym_property] = ACTIONS(3442), + [anon_sym_signal] = ACTIONS(3442), + [anon_sym_on] = ACTIONS(3442), + [anon_sym_required] = ACTIONS(3442), + [anon_sym_component] = ACTIONS(3442), + [anon_sym_abstract] = ACTIONS(3442), + [anon_sym_interface] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), + [sym_html_comment] = ACTIONS(5), + }, + [1383] = { + [sym_comment] = STATE(1383), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2642), + [sym_html_comment] = ACTIONS(5), + }, + [1384] = { + [sym_comment] = STATE(1384), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2632), + [sym_html_comment] = ACTIONS(5), + }, + [1385] = { + [sym_comment] = STATE(1385), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_from] = ACTIONS(2482), + [anon_sym_with] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_of] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_throw] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_case] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_property] = ACTIONS(2482), + [anon_sym_signal] = ACTIONS(2482), + [anon_sym_on] = ACTIONS(2482), + [anon_sym_required] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_interface] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [sym_html_comment] = ACTIONS(5), + }, + [1386] = { + [sym_statement_block] = STATE(1584), + [sym_comment] = STATE(1386), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3726), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_html_comment] = ACTIONS(5), + }, + [1387] = { + [sym_comment] = STATE(1387), + [sym_identifier] = ACTIONS(2366), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_default] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2366), + [anon_sym_import] = ACTIONS(2366), + [anon_sym_from] = ACTIONS(2366), + [anon_sym_with] = ACTIONS(2366), + [anon_sym_var] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_switch] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2366), + [anon_sym_of] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_debugger] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_throw] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_case] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LTtemplate_GT] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_class] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_function] = ACTIONS(2366), + [anon_sym_new] = ACTIONS(2366), + [anon_sym_using] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_private_property_identifier] = ACTIONS(2366), + [sym_this] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_true] = ACTIONS(2366), + [sym_false] = ACTIONS(2366), + [sym_null] = ACTIONS(2366), + [sym_undefined] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_readonly] = ACTIONS(2366), + [anon_sym_get] = ACTIONS(2366), + [anon_sym_set] = ACTIONS(2366), + [anon_sym_declare] = ACTIONS(2366), + [anon_sym_public] = ACTIONS(2366), + [anon_sym_private] = ACTIONS(2366), + [anon_sym_protected] = ACTIONS(2366), + [anon_sym_override] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_any] = ACTIONS(2366), + [anon_sym_number] = ACTIONS(2366), + [anon_sym_boolean] = ACTIONS(2366), + [anon_sym_string] = ACTIONS(2366), + [anon_sym_symbol] = ACTIONS(2366), + [anon_sym_object] = ACTIONS(2366), + [anon_sym_property] = ACTIONS(2366), + [anon_sym_signal] = ACTIONS(2366), + [anon_sym_on] = ACTIONS(2366), + [anon_sym_required] = ACTIONS(2366), + [anon_sym_component] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), + [sym_html_comment] = ACTIONS(5), + }, + [1388] = { + [sym_comment] = STATE(1388), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_typeof] = ACTIONS(2438), + [anon_sym_import] = ACTIONS(2438), + [anon_sym_from] = ACTIONS(2438), + [anon_sym_with] = ACTIONS(2438), + [anon_sym_var] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_debugger] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LTtemplate_GT] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_class] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2438), + [anon_sym_delete] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_private_property_identifier] = ACTIONS(2438), + [sym_this] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_true] = ACTIONS(2438), + [sym_false] = ACTIONS(2438), + [sym_null] = ACTIONS(2438), + [sym_undefined] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2438), + [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_property] = ACTIONS(2438), + [anon_sym_signal] = ACTIONS(2438), + [anon_sym_on] = ACTIONS(2438), + [anon_sym_required] = ACTIONS(2438), + [anon_sym_component] = ACTIONS(2438), + [anon_sym_abstract] = ACTIONS(2438), + [anon_sym_interface] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), + [sym__automatic_semicolon] = ACTIONS(2440), + [sym_html_comment] = ACTIONS(5), + }, + [1389] = { + [sym_statement_block] = STATE(1584), + [sym_comment] = STATE(1389), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3728), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_html_comment] = ACTIONS(5), + }, + [1390] = { + [sym_comment] = STATE(1390), + [sym_identifier] = ACTIONS(2358), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_namespace] = ACTIONS(2358), + [anon_sym_LBRACE] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_typeof] = ACTIONS(2358), + [anon_sym_import] = ACTIONS(2358), + [anon_sym_from] = ACTIONS(2358), + [anon_sym_with] = ACTIONS(2358), + [anon_sym_var] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_switch] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_await] = ACTIONS(2358), + [anon_sym_of] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_debugger] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_throw] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2358), + [anon_sym_yield] = ACTIONS(2358), + [anon_sym_LBRACK] = ACTIONS(2358), + [anon_sym_LTtemplate_GT] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_class] = ACTIONS(2358), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2358), + [anon_sym_new] = ACTIONS(2358), + [anon_sym_using] = ACTIONS(2358), + [anon_sym_PLUS] = ACTIONS(2358), + [anon_sym_DASH] = ACTIONS(2358), + [anon_sym_SLASH] = ACTIONS(2358), + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_TILDE] = ACTIONS(2358), + [anon_sym_void] = ACTIONS(2358), + [anon_sym_delete] = ACTIONS(2358), + [anon_sym_PLUS_PLUS] = ACTIONS(2358), + [anon_sym_DASH_DASH] = ACTIONS(2358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2358), + [sym_number] = ACTIONS(2358), + [sym_private_property_identifier] = ACTIONS(2358), + [sym_this] = ACTIONS(2358), + [sym_super] = ACTIONS(2358), + [sym_true] = ACTIONS(2358), + [sym_false] = ACTIONS(2358), + [sym_null] = ACTIONS(2358), + [sym_undefined] = ACTIONS(2358), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_readonly] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), + [anon_sym_declare] = ACTIONS(2358), + [anon_sym_public] = ACTIONS(2358), + [anon_sym_private] = ACTIONS(2358), + [anon_sym_protected] = ACTIONS(2358), + [anon_sym_override] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_any] = ACTIONS(2358), + [anon_sym_number] = ACTIONS(2358), + [anon_sym_boolean] = ACTIONS(2358), + [anon_sym_string] = ACTIONS(2358), + [anon_sym_symbol] = ACTIONS(2358), + [anon_sym_object] = ACTIONS(2358), + [anon_sym_property] = ACTIONS(2358), + [anon_sym_signal] = ACTIONS(2358), + [anon_sym_on] = ACTIONS(2358), + [anon_sym_required] = ACTIONS(2358), + [anon_sym_component] = ACTIONS(2358), + [anon_sym_abstract] = ACTIONS(2358), + [anon_sym_interface] = ACTIONS(2358), + [anon_sym_enum] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(2684), + [sym_html_comment] = ACTIONS(5), + }, + [1391] = { + [sym_comment] = STATE(1391), [sym_identifier] = ACTIONS(3698), [anon_sym_export] = ACTIONS(3698), - [anon_sym_default] = ACTIONS(3698), [anon_sym_type] = ACTIONS(3698), [anon_sym_namespace] = ACTIONS(3698), [anon_sym_LBRACE] = ACTIONS(3698), @@ -194073,6 +192363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3698), [anon_sym_const] = ACTIONS(3698), [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_else] = ACTIONS(3698), [anon_sym_if] = ACTIONS(3698), [anon_sym_switch] = ACTIONS(3698), [anon_sym_for] = ACTIONS(3698), @@ -194088,7 +192379,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3698), [anon_sym_throw] = ACTIONS(3698), [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_case] = ACTIONS(3698), [anon_sym_yield] = ACTIONS(3698), [anon_sym_LBRACK] = ACTIONS(3698), [anon_sym_LTtemplate_GT] = ACTIONS(3698), @@ -194145,8 +192435,536 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, - [1407] = { - [sym_comment] = STATE(1407), + [1392] = { + [sym_comment] = STATE(1392), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_else] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), + [sym_html_comment] = ACTIONS(5), + }, + [1393] = { + [sym_comment] = STATE(1393), + [sym_identifier] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_typeof] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_from] = ACTIONS(3582), + [anon_sym_with] = ACTIONS(3582), + [anon_sym_var] = ACTIONS(3582), + [anon_sym_let] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_else] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3582), + [anon_sym_await] = ACTIONS(3582), + [anon_sym_of] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_debugger] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_yield] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LTtemplate_GT] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_async] = ACTIONS(3582), + [anon_sym_function] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_SLASH] = ACTIONS(3582), + [anon_sym_LT] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_void] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3582), + [sym_number] = ACTIONS(3582), + [sym_private_property_identifier] = ACTIONS(3582), + [sym_this] = ACTIONS(3582), + [sym_super] = ACTIONS(3582), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [sym_null] = ACTIONS(3582), + [sym_undefined] = ACTIONS(3582), + [anon_sym_AT] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_readonly] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3582), + [anon_sym_set] = ACTIONS(3582), + [anon_sym_declare] = ACTIONS(3582), + [anon_sym_public] = ACTIONS(3582), + [anon_sym_private] = ACTIONS(3582), + [anon_sym_protected] = ACTIONS(3582), + [anon_sym_override] = ACTIONS(3582), + [anon_sym_module] = ACTIONS(3582), + [anon_sym_any] = ACTIONS(3582), + [anon_sym_number] = ACTIONS(3582), + [anon_sym_boolean] = ACTIONS(3582), + [anon_sym_string] = ACTIONS(3582), + [anon_sym_symbol] = ACTIONS(3582), + [anon_sym_object] = ACTIONS(3582), + [anon_sym_property] = ACTIONS(3582), + [anon_sym_signal] = ACTIONS(3582), + [anon_sym_on] = ACTIONS(3582), + [anon_sym_required] = ACTIONS(3582), + [anon_sym_component] = ACTIONS(3582), + [anon_sym_abstract] = ACTIONS(3582), + [anon_sym_interface] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), + [sym_html_comment] = ACTIONS(5), + }, + [1394] = { + [sym_comment] = STATE(1394), + [sym_identifier] = ACTIONS(3584), + [anon_sym_export] = ACTIONS(3584), + [anon_sym_type] = ACTIONS(3584), + [anon_sym_namespace] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_typeof] = ACTIONS(3584), + [anon_sym_import] = ACTIONS(3584), + [anon_sym_from] = ACTIONS(3584), + [anon_sym_with] = ACTIONS(3584), + [anon_sym_var] = ACTIONS(3584), + [anon_sym_let] = ACTIONS(3584), + [anon_sym_const] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_else] = ACTIONS(3584), + [anon_sym_if] = ACTIONS(3584), + [anon_sym_switch] = ACTIONS(3584), + [anon_sym_for] = ACTIONS(3584), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_await] = ACTIONS(3584), + [anon_sym_of] = ACTIONS(3584), + [anon_sym_while] = ACTIONS(3584), + [anon_sym_do] = ACTIONS(3584), + [anon_sym_try] = ACTIONS(3584), + [anon_sym_break] = ACTIONS(3584), + [anon_sym_continue] = ACTIONS(3584), + [anon_sym_debugger] = ACTIONS(3584), + [anon_sym_return] = ACTIONS(3584), + [anon_sym_throw] = ACTIONS(3584), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym_yield] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3584), + [anon_sym_LTtemplate_GT] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_class] = ACTIONS(3584), + [anon_sym_async] = ACTIONS(3584), + [anon_sym_function] = ACTIONS(3584), + [anon_sym_new] = ACTIONS(3584), + [anon_sym_using] = ACTIONS(3584), + [anon_sym_PLUS] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_SLASH] = ACTIONS(3584), + [anon_sym_LT] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_void] = ACTIONS(3584), + [anon_sym_delete] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_DASH_DASH] = ACTIONS(3584), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3584), + [sym_number] = ACTIONS(3584), + [sym_private_property_identifier] = ACTIONS(3584), + [sym_this] = ACTIONS(3584), + [sym_super] = ACTIONS(3584), + [sym_true] = ACTIONS(3584), + [sym_false] = ACTIONS(3584), + [sym_null] = ACTIONS(3584), + [sym_undefined] = ACTIONS(3584), + [anon_sym_AT] = ACTIONS(3584), + [anon_sym_static] = ACTIONS(3584), + [anon_sym_readonly] = ACTIONS(3584), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3584), + [anon_sym_declare] = ACTIONS(3584), + [anon_sym_public] = ACTIONS(3584), + [anon_sym_private] = ACTIONS(3584), + [anon_sym_protected] = ACTIONS(3584), + [anon_sym_override] = ACTIONS(3584), + [anon_sym_module] = ACTIONS(3584), + [anon_sym_any] = ACTIONS(3584), + [anon_sym_number] = ACTIONS(3584), + [anon_sym_boolean] = ACTIONS(3584), + [anon_sym_string] = ACTIONS(3584), + [anon_sym_symbol] = ACTIONS(3584), + [anon_sym_object] = ACTIONS(3584), + [anon_sym_property] = ACTIONS(3584), + [anon_sym_signal] = ACTIONS(3584), + [anon_sym_on] = ACTIONS(3584), + [anon_sym_required] = ACTIONS(3584), + [anon_sym_component] = ACTIONS(3584), + [anon_sym_abstract] = ACTIONS(3584), + [anon_sym_interface] = ACTIONS(3584), + [anon_sym_enum] = ACTIONS(3584), + [sym_html_comment] = ACTIONS(5), + }, + [1395] = { + [sym_comment] = STATE(1395), + [sym_identifier] = ACTIONS(3574), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_type] = ACTIONS(3574), + [anon_sym_namespace] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_typeof] = ACTIONS(3574), + [anon_sym_import] = ACTIONS(3574), + [anon_sym_from] = ACTIONS(3574), + [anon_sym_with] = ACTIONS(3574), + [anon_sym_var] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_else] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_switch] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_await] = ACTIONS(3574), + [anon_sym_of] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_debugger] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_throw] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym_yield] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LTtemplate_GT] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_class] = ACTIONS(3574), + [anon_sym_async] = ACTIONS(3574), + [anon_sym_function] = ACTIONS(3574), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_using] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_SLASH] = ACTIONS(3574), + [anon_sym_LT] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_void] = ACTIONS(3574), + [anon_sym_delete] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3574), + [sym_number] = ACTIONS(3574), + [sym_private_property_identifier] = ACTIONS(3574), + [sym_this] = ACTIONS(3574), + [sym_super] = ACTIONS(3574), + [sym_true] = ACTIONS(3574), + [sym_false] = ACTIONS(3574), + [sym_null] = ACTIONS(3574), + [sym_undefined] = ACTIONS(3574), + [anon_sym_AT] = ACTIONS(3574), + [anon_sym_static] = ACTIONS(3574), + [anon_sym_readonly] = ACTIONS(3574), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3574), + [anon_sym_declare] = ACTIONS(3574), + [anon_sym_public] = ACTIONS(3574), + [anon_sym_private] = ACTIONS(3574), + [anon_sym_protected] = ACTIONS(3574), + [anon_sym_override] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_any] = ACTIONS(3574), + [anon_sym_number] = ACTIONS(3574), + [anon_sym_boolean] = ACTIONS(3574), + [anon_sym_string] = ACTIONS(3574), + [anon_sym_symbol] = ACTIONS(3574), + [anon_sym_object] = ACTIONS(3574), + [anon_sym_property] = ACTIONS(3574), + [anon_sym_signal] = ACTIONS(3574), + [anon_sym_on] = ACTIONS(3574), + [anon_sym_required] = ACTIONS(3574), + [anon_sym_component] = ACTIONS(3574), + [anon_sym_abstract] = ACTIONS(3574), + [anon_sym_interface] = ACTIONS(3574), + [anon_sym_enum] = ACTIONS(3574), + [sym_html_comment] = ACTIONS(5), + }, + [1396] = { + [sym_comment] = STATE(1396), + [sym_identifier] = ACTIONS(3578), + [anon_sym_export] = ACTIONS(3578), + [anon_sym_type] = ACTIONS(3578), + [anon_sym_namespace] = ACTIONS(3578), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_RBRACE] = ACTIONS(3578), + [anon_sym_typeof] = ACTIONS(3578), + [anon_sym_import] = ACTIONS(3578), + [anon_sym_from] = ACTIONS(3578), + [anon_sym_with] = ACTIONS(3578), + [anon_sym_var] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_const] = ACTIONS(3578), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_else] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_switch] = ACTIONS(3578), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_await] = ACTIONS(3578), + [anon_sym_of] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_break] = ACTIONS(3578), + [anon_sym_continue] = ACTIONS(3578), + [anon_sym_debugger] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_throw] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LTtemplate_GT] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_SQUOTE] = ACTIONS(3578), + [anon_sym_class] = ACTIONS(3578), + [anon_sym_async] = ACTIONS(3578), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_using] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_SLASH] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_void] = ACTIONS(3578), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3578), + [sym_number] = ACTIONS(3578), + [sym_private_property_identifier] = ACTIONS(3578), + [sym_this] = ACTIONS(3578), + [sym_super] = ACTIONS(3578), + [sym_true] = ACTIONS(3578), + [sym_false] = ACTIONS(3578), + [sym_null] = ACTIONS(3578), + [sym_undefined] = ACTIONS(3578), + [anon_sym_AT] = ACTIONS(3578), + [anon_sym_static] = ACTIONS(3578), + [anon_sym_readonly] = ACTIONS(3578), + [anon_sym_get] = ACTIONS(3578), + [anon_sym_set] = ACTIONS(3578), + [anon_sym_declare] = ACTIONS(3578), + [anon_sym_public] = ACTIONS(3578), + [anon_sym_private] = ACTIONS(3578), + [anon_sym_protected] = ACTIONS(3578), + [anon_sym_override] = ACTIONS(3578), + [anon_sym_module] = ACTIONS(3578), + [anon_sym_any] = ACTIONS(3578), + [anon_sym_number] = ACTIONS(3578), + [anon_sym_boolean] = ACTIONS(3578), + [anon_sym_string] = ACTIONS(3578), + [anon_sym_symbol] = ACTIONS(3578), + [anon_sym_object] = ACTIONS(3578), + [anon_sym_property] = ACTIONS(3578), + [anon_sym_signal] = ACTIONS(3578), + [anon_sym_on] = ACTIONS(3578), + [anon_sym_required] = ACTIONS(3578), + [anon_sym_component] = ACTIONS(3578), + [anon_sym_abstract] = ACTIONS(3578), + [anon_sym_interface] = ACTIONS(3578), + [anon_sym_enum] = ACTIONS(3578), + [sym_html_comment] = ACTIONS(5), + }, + [1397] = { + [sym_comment] = STATE(1397), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_LBRACE] = ACTIONS(2376), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_typeof] = ACTIONS(2376), + [anon_sym_import] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_with] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_const] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2376), + [anon_sym_if] = ACTIONS(2376), + [anon_sym_switch] = ACTIONS(2376), + [anon_sym_for] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2376), + [anon_sym_await] = ACTIONS(2376), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_while] = ACTIONS(2376), + [anon_sym_do] = ACTIONS(2376), + [anon_sym_try] = ACTIONS(2376), + [anon_sym_break] = ACTIONS(2376), + [anon_sym_continue] = ACTIONS(2376), + [anon_sym_debugger] = ACTIONS(2376), + [anon_sym_return] = ACTIONS(2376), + [anon_sym_throw] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2376), + [anon_sym_yield] = ACTIONS(2376), + [anon_sym_LBRACK] = ACTIONS(2376), + [anon_sym_LTtemplate_GT] = ACTIONS(2376), + [anon_sym_DQUOTE] = ACTIONS(2376), + [anon_sym_SQUOTE] = ACTIONS(2376), + [anon_sym_class] = ACTIONS(2376), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_new] = ACTIONS(2376), + [anon_sym_using] = ACTIONS(2376), + [anon_sym_PLUS] = ACTIONS(2376), + [anon_sym_DASH] = ACTIONS(2376), + [anon_sym_SLASH] = ACTIONS(2376), + [anon_sym_LT] = ACTIONS(2376), + [anon_sym_TILDE] = ACTIONS(2376), + [anon_sym_void] = ACTIONS(2376), + [anon_sym_delete] = ACTIONS(2376), + [anon_sym_PLUS_PLUS] = ACTIONS(2376), + [anon_sym_DASH_DASH] = ACTIONS(2376), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2376), + [sym_number] = ACTIONS(2376), + [sym_private_property_identifier] = ACTIONS(2376), + [sym_this] = ACTIONS(2376), + [sym_super] = ACTIONS(2376), + [sym_true] = ACTIONS(2376), + [sym_false] = ACTIONS(2376), + [sym_null] = ACTIONS(2376), + [sym_undefined] = ACTIONS(2376), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_abstract] = ACTIONS(2376), + [anon_sym_interface] = ACTIONS(2376), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(2668), + [sym_html_comment] = ACTIONS(5), + }, + [1398] = { + [sym_comment] = STATE(1398), [sym_identifier] = ACTIONS(2332), [anon_sym_export] = ACTIONS(2332), [anon_sym_type] = ACTIONS(2332), @@ -194161,7 +192979,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2332), [anon_sym_const] = ACTIONS(2332), [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), [anon_sym_if] = ACTIONS(2332), [anon_sym_switch] = ACTIONS(2332), [anon_sym_for] = ACTIONS(2332), @@ -194177,7 +192994,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2332), [anon_sym_throw] = ACTIONS(2332), [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), [anon_sym_yield] = ACTIONS(2332), [anon_sym_LBRACK] = ACTIONS(2332), [anon_sym_LTtemplate_GT] = ACTIONS(2332), @@ -194232,636 +193048,189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2332), [anon_sym_interface] = ACTIONS(2332), [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(2698), [sym_html_comment] = ACTIONS(5), }, - [1408] = { - [sym_comment] = STATE(1408), - [sym_identifier] = ACTIONS(3692), - [anon_sym_export] = ACTIONS(3692), - [anon_sym_default] = ACTIONS(3692), - [anon_sym_type] = ACTIONS(3692), - [anon_sym_namespace] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3692), - [anon_sym_RBRACE] = ACTIONS(3692), - [anon_sym_typeof] = ACTIONS(3692), - [anon_sym_import] = ACTIONS(3692), - [anon_sym_from] = ACTIONS(3692), - [anon_sym_with] = ACTIONS(3692), - [anon_sym_var] = ACTIONS(3692), - [anon_sym_let] = ACTIONS(3692), - [anon_sym_const] = ACTIONS(3692), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_if] = ACTIONS(3692), - [anon_sym_switch] = ACTIONS(3692), - [anon_sym_for] = ACTIONS(3692), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_await] = ACTIONS(3692), - [anon_sym_of] = ACTIONS(3692), - [anon_sym_while] = ACTIONS(3692), - [anon_sym_do] = ACTIONS(3692), - [anon_sym_try] = ACTIONS(3692), - [anon_sym_break] = ACTIONS(3692), - [anon_sym_continue] = ACTIONS(3692), - [anon_sym_debugger] = ACTIONS(3692), - [anon_sym_return] = ACTIONS(3692), - [anon_sym_throw] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_case] = ACTIONS(3692), - [anon_sym_yield] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3692), - [anon_sym_LTtemplate_GT] = ACTIONS(3692), - [anon_sym_DQUOTE] = ACTIONS(3692), - [anon_sym_SQUOTE] = ACTIONS(3692), - [anon_sym_class] = ACTIONS(3692), - [anon_sym_async] = ACTIONS(3692), - [anon_sym_function] = ACTIONS(3692), - [anon_sym_new] = ACTIONS(3692), - [anon_sym_using] = ACTIONS(3692), - [anon_sym_PLUS] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3692), - [anon_sym_SLASH] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_void] = ACTIONS(3692), - [anon_sym_delete] = ACTIONS(3692), - [anon_sym_PLUS_PLUS] = ACTIONS(3692), - [anon_sym_DASH_DASH] = ACTIONS(3692), + [1399] = { + [sym_comment] = STATE(1399), + [sym_identifier] = ACTIONS(3638), + [anon_sym_export] = ACTIONS(3638), + [anon_sym_type] = ACTIONS(3638), + [anon_sym_namespace] = ACTIONS(3638), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_typeof] = ACTIONS(3638), + [anon_sym_import] = ACTIONS(3638), + [anon_sym_from] = ACTIONS(3638), + [anon_sym_with] = ACTIONS(3638), + [anon_sym_var] = ACTIONS(3638), + [anon_sym_let] = ACTIONS(3638), + [anon_sym_const] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_else] = ACTIONS(3638), + [anon_sym_if] = ACTIONS(3638), + [anon_sym_switch] = ACTIONS(3638), + [anon_sym_for] = ACTIONS(3638), + [anon_sym_LPAREN] = ACTIONS(3638), + [anon_sym_await] = ACTIONS(3638), + [anon_sym_of] = ACTIONS(3638), + [anon_sym_while] = ACTIONS(3638), + [anon_sym_do] = ACTIONS(3638), + [anon_sym_try] = ACTIONS(3638), + [anon_sym_break] = ACTIONS(3638), + [anon_sym_continue] = ACTIONS(3638), + [anon_sym_debugger] = ACTIONS(3638), + [anon_sym_return] = ACTIONS(3638), + [anon_sym_throw] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym_yield] = ACTIONS(3638), + [anon_sym_LBRACK] = ACTIONS(3638), + [anon_sym_LTtemplate_GT] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_class] = ACTIONS(3638), + [anon_sym_async] = ACTIONS(3638), + [anon_sym_function] = ACTIONS(3638), + [anon_sym_new] = ACTIONS(3638), + [anon_sym_using] = ACTIONS(3638), + [anon_sym_PLUS] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3638), + [anon_sym_SLASH] = ACTIONS(3638), + [anon_sym_LT] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_void] = ACTIONS(3638), + [anon_sym_delete] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_DASH_DASH] = ACTIONS(3638), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3692), - [sym_number] = ACTIONS(3692), - [sym_private_property_identifier] = ACTIONS(3692), - [sym_this] = ACTIONS(3692), - [sym_super] = ACTIONS(3692), - [sym_true] = ACTIONS(3692), - [sym_false] = ACTIONS(3692), - [sym_null] = ACTIONS(3692), - [sym_undefined] = ACTIONS(3692), - [anon_sym_AT] = ACTIONS(3692), - [anon_sym_static] = ACTIONS(3692), - [anon_sym_readonly] = ACTIONS(3692), - [anon_sym_get] = ACTIONS(3692), - [anon_sym_set] = ACTIONS(3692), - [anon_sym_declare] = ACTIONS(3692), - [anon_sym_public] = ACTIONS(3692), - [anon_sym_private] = ACTIONS(3692), - [anon_sym_protected] = ACTIONS(3692), - [anon_sym_override] = ACTIONS(3692), - [anon_sym_module] = ACTIONS(3692), - [anon_sym_any] = ACTIONS(3692), - [anon_sym_number] = ACTIONS(3692), - [anon_sym_boolean] = ACTIONS(3692), - [anon_sym_string] = ACTIONS(3692), - [anon_sym_symbol] = ACTIONS(3692), - [anon_sym_object] = ACTIONS(3692), - [anon_sym_property] = ACTIONS(3692), - [anon_sym_signal] = ACTIONS(3692), - [anon_sym_on] = ACTIONS(3692), - [anon_sym_required] = ACTIONS(3692), - [anon_sym_component] = ACTIONS(3692), - [anon_sym_abstract] = ACTIONS(3692), - [anon_sym_interface] = ACTIONS(3692), - [anon_sym_enum] = ACTIONS(3692), - [sym_html_comment] = ACTIONS(5), - }, - [1409] = { - [sym_comment] = STATE(1409), - [sym_identifier] = ACTIONS(3688), - [anon_sym_export] = ACTIONS(3688), - [anon_sym_default] = ACTIONS(3688), - [anon_sym_type] = ACTIONS(3688), - [anon_sym_namespace] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3688), - [anon_sym_RBRACE] = ACTIONS(3688), - [anon_sym_typeof] = ACTIONS(3688), - [anon_sym_import] = ACTIONS(3688), - [anon_sym_from] = ACTIONS(3688), - [anon_sym_with] = ACTIONS(3688), - [anon_sym_var] = ACTIONS(3688), - [anon_sym_let] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_BANG] = ACTIONS(3688), - [anon_sym_if] = ACTIONS(3688), - [anon_sym_switch] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_await] = ACTIONS(3688), - [anon_sym_of] = ACTIONS(3688), - [anon_sym_while] = ACTIONS(3688), - [anon_sym_do] = ACTIONS(3688), - [anon_sym_try] = ACTIONS(3688), - [anon_sym_break] = ACTIONS(3688), - [anon_sym_continue] = ACTIONS(3688), - [anon_sym_debugger] = ACTIONS(3688), - [anon_sym_return] = ACTIONS(3688), - [anon_sym_throw] = ACTIONS(3688), - [anon_sym_SEMI] = ACTIONS(3688), - [anon_sym_case] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3688), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LTtemplate_GT] = ACTIONS(3688), - [anon_sym_DQUOTE] = ACTIONS(3688), - [anon_sym_SQUOTE] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_async] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3688), - [anon_sym_using] = ACTIONS(3688), - [anon_sym_PLUS] = ACTIONS(3688), - [anon_sym_DASH] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_TILDE] = ACTIONS(3688), - [anon_sym_void] = ACTIONS(3688), - [anon_sym_delete] = ACTIONS(3688), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3688), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3688), - [sym_number] = ACTIONS(3688), - [sym_private_property_identifier] = ACTIONS(3688), - [sym_this] = ACTIONS(3688), - [sym_super] = ACTIONS(3688), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [sym_null] = ACTIONS(3688), - [sym_undefined] = ACTIONS(3688), - [anon_sym_AT] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_get] = ACTIONS(3688), - [anon_sym_set] = ACTIONS(3688), - [anon_sym_declare] = ACTIONS(3688), - [anon_sym_public] = ACTIONS(3688), - [anon_sym_private] = ACTIONS(3688), - [anon_sym_protected] = ACTIONS(3688), - [anon_sym_override] = ACTIONS(3688), - [anon_sym_module] = ACTIONS(3688), - [anon_sym_any] = ACTIONS(3688), - [anon_sym_number] = ACTIONS(3688), - [anon_sym_boolean] = ACTIONS(3688), - [anon_sym_string] = ACTIONS(3688), - [anon_sym_symbol] = ACTIONS(3688), - [anon_sym_object] = ACTIONS(3688), - [anon_sym_property] = ACTIONS(3688), - [anon_sym_signal] = ACTIONS(3688), - [anon_sym_on] = ACTIONS(3688), - [anon_sym_required] = ACTIONS(3688), - [anon_sym_component] = ACTIONS(3688), - [anon_sym_abstract] = ACTIONS(3688), - [anon_sym_interface] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), + [anon_sym_BQUOTE] = ACTIONS(3638), + [sym_number] = ACTIONS(3638), + [sym_private_property_identifier] = ACTIONS(3638), + [sym_this] = ACTIONS(3638), + [sym_super] = ACTIONS(3638), + [sym_true] = ACTIONS(3638), + [sym_false] = ACTIONS(3638), + [sym_null] = ACTIONS(3638), + [sym_undefined] = ACTIONS(3638), + [anon_sym_AT] = ACTIONS(3638), + [anon_sym_static] = ACTIONS(3638), + [anon_sym_readonly] = ACTIONS(3638), + [anon_sym_get] = ACTIONS(3638), + [anon_sym_set] = ACTIONS(3638), + [anon_sym_declare] = ACTIONS(3638), + [anon_sym_public] = ACTIONS(3638), + [anon_sym_private] = ACTIONS(3638), + [anon_sym_protected] = ACTIONS(3638), + [anon_sym_override] = ACTIONS(3638), + [anon_sym_module] = ACTIONS(3638), + [anon_sym_any] = ACTIONS(3638), + [anon_sym_number] = ACTIONS(3638), + [anon_sym_boolean] = ACTIONS(3638), + [anon_sym_string] = ACTIONS(3638), + [anon_sym_symbol] = ACTIONS(3638), + [anon_sym_object] = ACTIONS(3638), + [anon_sym_property] = ACTIONS(3638), + [anon_sym_signal] = ACTIONS(3638), + [anon_sym_on] = ACTIONS(3638), + [anon_sym_required] = ACTIONS(3638), + [anon_sym_component] = ACTIONS(3638), + [anon_sym_abstract] = ACTIONS(3638), + [anon_sym_interface] = ACTIONS(3638), + [anon_sym_enum] = ACTIONS(3638), [sym_html_comment] = ACTIONS(5), }, - [1410] = { - [sym_comment] = STATE(1410), - [sym_identifier] = ACTIONS(3696), - [anon_sym_export] = ACTIONS(3696), - [anon_sym_default] = ACTIONS(3696), - [anon_sym_type] = ACTIONS(3696), - [anon_sym_namespace] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_typeof] = ACTIONS(3696), - [anon_sym_import] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3696), - [anon_sym_let] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_BANG] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_await] = ACTIONS(3696), - [anon_sym_of] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_debugger] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_throw] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_case] = ACTIONS(3696), - [anon_sym_yield] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LTtemplate_GT] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3696), - [anon_sym_class] = ACTIONS(3696), - [anon_sym_async] = ACTIONS(3696), - [anon_sym_function] = ACTIONS(3696), - [anon_sym_new] = ACTIONS(3696), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3696), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_TILDE] = ACTIONS(3696), - [anon_sym_void] = ACTIONS(3696), - [anon_sym_delete] = ACTIONS(3696), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3696), - [sym_number] = ACTIONS(3696), - [sym_private_property_identifier] = ACTIONS(3696), - [sym_this] = ACTIONS(3696), - [sym_super] = ACTIONS(3696), - [sym_true] = ACTIONS(3696), - [sym_false] = ACTIONS(3696), - [sym_null] = ACTIONS(3696), - [sym_undefined] = ACTIONS(3696), - [anon_sym_AT] = ACTIONS(3696), - [anon_sym_static] = ACTIONS(3696), - [anon_sym_readonly] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3696), - [anon_sym_declare] = ACTIONS(3696), - [anon_sym_public] = ACTIONS(3696), - [anon_sym_private] = ACTIONS(3696), - [anon_sym_protected] = ACTIONS(3696), - [anon_sym_override] = ACTIONS(3696), - [anon_sym_module] = ACTIONS(3696), - [anon_sym_any] = ACTIONS(3696), - [anon_sym_number] = ACTIONS(3696), - [anon_sym_boolean] = ACTIONS(3696), - [anon_sym_string] = ACTIONS(3696), - [anon_sym_symbol] = ACTIONS(3696), - [anon_sym_object] = ACTIONS(3696), - [anon_sym_property] = ACTIONS(3696), - [anon_sym_signal] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_required] = ACTIONS(3696), - [anon_sym_component] = ACTIONS(3696), - [anon_sym_abstract] = ACTIONS(3696), - [anon_sym_interface] = ACTIONS(3696), - [anon_sym_enum] = ACTIONS(3696), - [sym_html_comment] = ACTIONS(5), - }, - [1411] = { - [sym_comment] = STATE(1411), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_case] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_private_property_identifier] = ACTIONS(2442), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [sym_html_comment] = ACTIONS(5), - }, - [1412] = { - [sym_comment] = STATE(1412), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2512), - [sym_html_comment] = ACTIONS(5), - }, - [1413] = { - [sym_comment] = STATE(1413), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym_html_comment] = ACTIONS(5), - }, - [1414] = { - [sym_comment] = STATE(1414), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1400] = { + [sym_comment] = STATE(1400), + [sym_identifier] = ACTIONS(3586), + [anon_sym_export] = ACTIONS(3586), + [anon_sym_type] = ACTIONS(3586), + [anon_sym_namespace] = ACTIONS(3586), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_typeof] = ACTIONS(3586), + [anon_sym_import] = ACTIONS(3586), + [anon_sym_from] = ACTIONS(3586), + [anon_sym_with] = ACTIONS(3586), + [anon_sym_var] = ACTIONS(3586), + [anon_sym_let] = ACTIONS(3586), + [anon_sym_const] = ACTIONS(3586), + [anon_sym_BANG] = ACTIONS(3586), + [anon_sym_else] = ACTIONS(3586), + [anon_sym_if] = ACTIONS(3586), + [anon_sym_switch] = ACTIONS(3586), + [anon_sym_for] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_await] = ACTIONS(3586), + [anon_sym_of] = ACTIONS(3586), + [anon_sym_while] = ACTIONS(3586), + [anon_sym_do] = ACTIONS(3586), + [anon_sym_try] = ACTIONS(3586), + [anon_sym_break] = ACTIONS(3586), + [anon_sym_continue] = ACTIONS(3586), + [anon_sym_debugger] = ACTIONS(3586), + [anon_sym_return] = ACTIONS(3586), + [anon_sym_throw] = ACTIONS(3586), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_yield] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LTtemplate_GT] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3586), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_class] = ACTIONS(3586), + [anon_sym_async] = ACTIONS(3586), + [anon_sym_function] = ACTIONS(3586), + [anon_sym_new] = ACTIONS(3586), + [anon_sym_using] = ACTIONS(3586), + [anon_sym_PLUS] = ACTIONS(3586), + [anon_sym_DASH] = ACTIONS(3586), + [anon_sym_SLASH] = ACTIONS(3586), + [anon_sym_LT] = ACTIONS(3586), + [anon_sym_TILDE] = ACTIONS(3586), + [anon_sym_void] = ACTIONS(3586), + [anon_sym_delete] = ACTIONS(3586), + [anon_sym_PLUS_PLUS] = ACTIONS(3586), + [anon_sym_DASH_DASH] = ACTIONS(3586), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3586), + [sym_number] = ACTIONS(3586), + [sym_private_property_identifier] = ACTIONS(3586), + [sym_this] = ACTIONS(3586), + [sym_super] = ACTIONS(3586), + [sym_true] = ACTIONS(3586), + [sym_false] = ACTIONS(3586), + [sym_null] = ACTIONS(3586), + [sym_undefined] = ACTIONS(3586), + [anon_sym_AT] = ACTIONS(3586), + [anon_sym_static] = ACTIONS(3586), + [anon_sym_readonly] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(3586), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_declare] = ACTIONS(3586), + [anon_sym_public] = ACTIONS(3586), + [anon_sym_private] = ACTIONS(3586), + [anon_sym_protected] = ACTIONS(3586), + [anon_sym_override] = ACTIONS(3586), + [anon_sym_module] = ACTIONS(3586), + [anon_sym_any] = ACTIONS(3586), + [anon_sym_number] = ACTIONS(3586), + [anon_sym_boolean] = ACTIONS(3586), + [anon_sym_string] = ACTIONS(3586), + [anon_sym_symbol] = ACTIONS(3586), + [anon_sym_object] = ACTIONS(3586), + [anon_sym_property] = ACTIONS(3586), + [anon_sym_signal] = ACTIONS(3586), + [anon_sym_on] = ACTIONS(3586), + [anon_sym_required] = ACTIONS(3586), + [anon_sym_component] = ACTIONS(3586), + [anon_sym_abstract] = ACTIONS(3586), + [anon_sym_interface] = ACTIONS(3586), + [anon_sym_enum] = ACTIONS(3586), [sym_html_comment] = ACTIONS(5), }, - [1415] = { - [sym_comment] = STATE(1415), + [1401] = { + [sym_comment] = STATE(1401), [sym_identifier] = ACTIONS(3636), [anon_sym_export] = ACTIONS(3636), - [anon_sym_default] = ACTIONS(3636), [anon_sym_type] = ACTIONS(3636), [anon_sym_namespace] = ACTIONS(3636), [anon_sym_LBRACE] = ACTIONS(3636), @@ -194874,6 +193243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3636), [anon_sym_const] = ACTIONS(3636), [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), [anon_sym_if] = ACTIONS(3636), [anon_sym_switch] = ACTIONS(3636), [anon_sym_for] = ACTIONS(3636), @@ -194889,7 +193259,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3636), [anon_sym_throw] = ACTIONS(3636), [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_case] = ACTIONS(3636), [anon_sym_yield] = ACTIONS(3636), [anon_sym_LBRACK] = ACTIONS(3636), [anon_sym_LTtemplate_GT] = ACTIONS(3636), @@ -194946,6529 +193315,7009 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3636), [sym_html_comment] = ACTIONS(5), }, - [1416] = { - [sym_comment] = STATE(1416), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1402] = { + [sym_comment] = STATE(1402), + [sym_identifier] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_type] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_typeof] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_from] = ACTIONS(3572), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_var] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_else] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_await] = ACTIONS(3572), + [anon_sym_of] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_debugger] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LTtemplate_GT] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_async] = ACTIONS(3572), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_SLASH] = ACTIONS(3572), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_void] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3572), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3572), + [sym_number] = ACTIONS(3572), + [sym_private_property_identifier] = ACTIONS(3572), + [sym_this] = ACTIONS(3572), + [sym_super] = ACTIONS(3572), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [sym_null] = ACTIONS(3572), + [sym_undefined] = ACTIONS(3572), + [anon_sym_AT] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_readonly] = ACTIONS(3572), + [anon_sym_get] = ACTIONS(3572), + [anon_sym_set] = ACTIONS(3572), + [anon_sym_declare] = ACTIONS(3572), + [anon_sym_public] = ACTIONS(3572), + [anon_sym_private] = ACTIONS(3572), + [anon_sym_protected] = ACTIONS(3572), + [anon_sym_override] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_any] = ACTIONS(3572), + [anon_sym_number] = ACTIONS(3572), + [anon_sym_boolean] = ACTIONS(3572), + [anon_sym_string] = ACTIONS(3572), + [anon_sym_symbol] = ACTIONS(3572), + [anon_sym_object] = ACTIONS(3572), + [anon_sym_property] = ACTIONS(3572), + [anon_sym_signal] = ACTIONS(3572), + [anon_sym_on] = ACTIONS(3572), + [anon_sym_required] = ACTIONS(3572), + [anon_sym_component] = ACTIONS(3572), + [anon_sym_abstract] = ACTIONS(3572), + [anon_sym_interface] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), [sym_html_comment] = ACTIONS(5), }, - [1417] = { - [sym_comment] = STATE(1417), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1403] = { + [sym_comment] = STATE(1403), + [sym_identifier] = ACTIONS(3566), + [anon_sym_export] = ACTIONS(3566), + [anon_sym_type] = ACTIONS(3566), + [anon_sym_namespace] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_typeof] = ACTIONS(3566), + [anon_sym_import] = ACTIONS(3566), + [anon_sym_from] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3566), + [anon_sym_var] = ACTIONS(3566), + [anon_sym_let] = ACTIONS(3566), + [anon_sym_const] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_else] = ACTIONS(3566), + [anon_sym_if] = ACTIONS(3566), + [anon_sym_switch] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_await] = ACTIONS(3566), + [anon_sym_of] = ACTIONS(3566), + [anon_sym_while] = ACTIONS(3566), + [anon_sym_do] = ACTIONS(3566), + [anon_sym_try] = ACTIONS(3566), + [anon_sym_break] = ACTIONS(3566), + [anon_sym_continue] = ACTIONS(3566), + [anon_sym_debugger] = ACTIONS(3566), + [anon_sym_return] = ACTIONS(3566), + [anon_sym_throw] = ACTIONS(3566), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LTtemplate_GT] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_class] = ACTIONS(3566), + [anon_sym_async] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3566), + [anon_sym_using] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_void] = ACTIONS(3566), + [anon_sym_delete] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3566), + [sym_number] = ACTIONS(3566), + [sym_private_property_identifier] = ACTIONS(3566), + [sym_this] = ACTIONS(3566), + [sym_super] = ACTIONS(3566), + [sym_true] = ACTIONS(3566), + [sym_false] = ACTIONS(3566), + [sym_null] = ACTIONS(3566), + [sym_undefined] = ACTIONS(3566), + [anon_sym_AT] = ACTIONS(3566), + [anon_sym_static] = ACTIONS(3566), + [anon_sym_readonly] = ACTIONS(3566), + [anon_sym_get] = ACTIONS(3566), + [anon_sym_set] = ACTIONS(3566), + [anon_sym_declare] = ACTIONS(3566), + [anon_sym_public] = ACTIONS(3566), + [anon_sym_private] = ACTIONS(3566), + [anon_sym_protected] = ACTIONS(3566), + [anon_sym_override] = ACTIONS(3566), + [anon_sym_module] = ACTIONS(3566), + [anon_sym_any] = ACTIONS(3566), + [anon_sym_number] = ACTIONS(3566), + [anon_sym_boolean] = ACTIONS(3566), + [anon_sym_string] = ACTIONS(3566), + [anon_sym_symbol] = ACTIONS(3566), + [anon_sym_object] = ACTIONS(3566), + [anon_sym_property] = ACTIONS(3566), + [anon_sym_signal] = ACTIONS(3566), + [anon_sym_on] = ACTIONS(3566), + [anon_sym_required] = ACTIONS(3566), + [anon_sym_component] = ACTIONS(3566), + [anon_sym_abstract] = ACTIONS(3566), + [anon_sym_interface] = ACTIONS(3566), + [anon_sym_enum] = ACTIONS(3566), + [sym_html_comment] = ACTIONS(5), + }, + [1404] = { + [sym_comment] = STATE(1404), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), [sym_html_comment] = ACTIONS(5), }, - [1418] = { - [sym_comment] = STATE(1418), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1405] = { + [sym_comment] = STATE(1405), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_else] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), [sym_html_comment] = ACTIONS(5), }, - [1419] = { - [sym_comment] = STATE(1419), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1406] = { + [sym_comment] = STATE(1406), + [sym_identifier] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_type] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3682), + [anon_sym_RBRACE] = ACTIONS(3682), + [anon_sym_typeof] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_from] = ACTIONS(3682), + [anon_sym_with] = ACTIONS(3682), + [anon_sym_var] = ACTIONS(3682), + [anon_sym_let] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_BANG] = ACTIONS(3682), + [anon_sym_else] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_LPAREN] = ACTIONS(3682), + [anon_sym_await] = ACTIONS(3682), + [anon_sym_of] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_debugger] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3682), + [anon_sym_yield] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_LTtemplate_GT] = ACTIONS(3682), + [anon_sym_DQUOTE] = ACTIONS(3682), + [anon_sym_SQUOTE] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_async] = ACTIONS(3682), + [anon_sym_function] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_SLASH] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(3682), + [anon_sym_TILDE] = ACTIONS(3682), + [anon_sym_void] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_PLUS_PLUS] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3682), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_number] = ACTIONS(3682), + [sym_private_property_identifier] = ACTIONS(3682), + [sym_this] = ACTIONS(3682), + [sym_super] = ACTIONS(3682), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [sym_null] = ACTIONS(3682), + [sym_undefined] = ACTIONS(3682), + [anon_sym_AT] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_get] = ACTIONS(3682), + [anon_sym_set] = ACTIONS(3682), + [anon_sym_declare] = ACTIONS(3682), + [anon_sym_public] = ACTIONS(3682), + [anon_sym_private] = ACTIONS(3682), + [anon_sym_protected] = ACTIONS(3682), + [anon_sym_override] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_any] = ACTIONS(3682), + [anon_sym_number] = ACTIONS(3682), + [anon_sym_boolean] = ACTIONS(3682), + [anon_sym_string] = ACTIONS(3682), + [anon_sym_symbol] = ACTIONS(3682), + [anon_sym_object] = ACTIONS(3682), + [anon_sym_property] = ACTIONS(3682), + [anon_sym_signal] = ACTIONS(3682), + [anon_sym_on] = ACTIONS(3682), + [anon_sym_required] = ACTIONS(3682), + [anon_sym_component] = ACTIONS(3682), + [anon_sym_abstract] = ACTIONS(3682), + [anon_sym_interface] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), [sym_html_comment] = ACTIONS(5), }, - [1420] = { - [sym_comment] = STATE(1420), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1407] = { + [sym_comment] = STATE(1407), + [sym_identifier] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_type] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_typeof] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_with] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_else] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_LPAREN] = ACTIONS(3634), + [anon_sym_await] = ACTIONS(3634), + [anon_sym_of] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_debugger] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_LTtemplate_GT] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_async] = ACTIONS(3634), + [anon_sym_function] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_void] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3634), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3634), + [sym_number] = ACTIONS(3634), + [sym_private_property_identifier] = ACTIONS(3634), + [sym_this] = ACTIONS(3634), + [sym_super] = ACTIONS(3634), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [sym_null] = ACTIONS(3634), + [sym_undefined] = ACTIONS(3634), + [anon_sym_AT] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_readonly] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(3634), + [anon_sym_set] = ACTIONS(3634), + [anon_sym_declare] = ACTIONS(3634), + [anon_sym_public] = ACTIONS(3634), + [anon_sym_private] = ACTIONS(3634), + [anon_sym_protected] = ACTIONS(3634), + [anon_sym_override] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_any] = ACTIONS(3634), + [anon_sym_number] = ACTIONS(3634), + [anon_sym_boolean] = ACTIONS(3634), + [anon_sym_string] = ACTIONS(3634), + [anon_sym_symbol] = ACTIONS(3634), + [anon_sym_object] = ACTIONS(3634), + [anon_sym_property] = ACTIONS(3634), + [anon_sym_signal] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_required] = ACTIONS(3634), + [anon_sym_component] = ACTIONS(3634), + [anon_sym_abstract] = ACTIONS(3634), + [anon_sym_interface] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), [sym_html_comment] = ACTIONS(5), }, - [1421] = { - [sym_comment] = STATE(1421), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2382), - [anon_sym_else] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_LTtemplate_GT] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2382), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_number] = ACTIONS(2382), - [sym_private_property_identifier] = ACTIONS(2382), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [sym__automatic_semicolon] = ACTIONS(2614), + [1408] = { + [sym_comment] = STATE(1408), + [sym_identifier] = ACTIONS(3434), + [anon_sym_export] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_typeof] = ACTIONS(3434), + [anon_sym_import] = ACTIONS(3434), + [anon_sym_from] = ACTIONS(3434), + [anon_sym_with] = ACTIONS(3434), + [anon_sym_var] = ACTIONS(3434), + [anon_sym_let] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_await] = ACTIONS(3434), + [anon_sym_of] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_debugger] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3730), + [anon_sym_yield] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_LTtemplate_GT] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_function] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_void] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3434), + [sym_number] = ACTIONS(3434), + [sym_private_property_identifier] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [sym_super] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_null] = ACTIONS(3434), + [sym_undefined] = ACTIONS(3434), + [anon_sym_AT] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_readonly] = ACTIONS(3434), + [anon_sym_get] = ACTIONS(3434), + [anon_sym_set] = ACTIONS(3434), + [anon_sym_declare] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_override] = ACTIONS(3434), + [anon_sym_module] = ACTIONS(3434), + [anon_sym_any] = ACTIONS(3434), + [anon_sym_number] = ACTIONS(3434), + [anon_sym_boolean] = ACTIONS(3434), + [anon_sym_string] = ACTIONS(3434), + [anon_sym_symbol] = ACTIONS(3434), + [anon_sym_object] = ACTIONS(3434), + [anon_sym_property] = ACTIONS(3434), + [anon_sym_signal] = ACTIONS(3434), + [anon_sym_on] = ACTIONS(3434), + [anon_sym_required] = ACTIONS(3434), + [anon_sym_component] = ACTIONS(3434), + [anon_sym_abstract] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [sym__automatic_semicolon] = ACTIONS(3732), [sym_html_comment] = ACTIONS(5), }, - [1422] = { - [sym_comment] = STATE(1422), - [sym_identifier] = ACTIONS(3682), - [anon_sym_export] = ACTIONS(3682), - [anon_sym_default] = ACTIONS(3682), - [anon_sym_type] = ACTIONS(3682), - [anon_sym_namespace] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_typeof] = ACTIONS(3682), - [anon_sym_import] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [anon_sym_var] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_const] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_for] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_await] = ACTIONS(3682), - [anon_sym_of] = ACTIONS(3682), - [anon_sym_while] = ACTIONS(3682), - [anon_sym_do] = ACTIONS(3682), - [anon_sym_try] = ACTIONS(3682), - [anon_sym_break] = ACTIONS(3682), - [anon_sym_continue] = ACTIONS(3682), - [anon_sym_debugger] = ACTIONS(3682), - [anon_sym_return] = ACTIONS(3682), - [anon_sym_throw] = ACTIONS(3682), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_case] = ACTIONS(3682), - [anon_sym_yield] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_LTtemplate_GT] = ACTIONS(3682), - [anon_sym_DQUOTE] = ACTIONS(3682), - [anon_sym_SQUOTE] = ACTIONS(3682), - [anon_sym_class] = ACTIONS(3682), - [anon_sym_async] = ACTIONS(3682), - [anon_sym_function] = ACTIONS(3682), - [anon_sym_new] = ACTIONS(3682), - [anon_sym_using] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3682), - [anon_sym_DASH] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_void] = ACTIONS(3682), - [anon_sym_delete] = ACTIONS(3682), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3682), - [sym_private_property_identifier] = ACTIONS(3682), - [sym_this] = ACTIONS(3682), - [sym_super] = ACTIONS(3682), - [sym_true] = ACTIONS(3682), - [sym_false] = ACTIONS(3682), - [sym_null] = ACTIONS(3682), - [sym_undefined] = ACTIONS(3682), - [anon_sym_AT] = ACTIONS(3682), - [anon_sym_static] = ACTIONS(3682), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_get] = ACTIONS(3682), - [anon_sym_set] = ACTIONS(3682), - [anon_sym_declare] = ACTIONS(3682), - [anon_sym_public] = ACTIONS(3682), - [anon_sym_private] = ACTIONS(3682), - [anon_sym_protected] = ACTIONS(3682), - [anon_sym_override] = ACTIONS(3682), - [anon_sym_module] = ACTIONS(3682), - [anon_sym_any] = ACTIONS(3682), - [anon_sym_number] = ACTIONS(3682), - [anon_sym_boolean] = ACTIONS(3682), - [anon_sym_string] = ACTIONS(3682), - [anon_sym_symbol] = ACTIONS(3682), - [anon_sym_object] = ACTIONS(3682), - [anon_sym_property] = ACTIONS(3682), - [anon_sym_signal] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_required] = ACTIONS(3682), - [anon_sym_component] = ACTIONS(3682), - [anon_sym_abstract] = ACTIONS(3682), - [anon_sym_interface] = ACTIONS(3682), - [anon_sym_enum] = ACTIONS(3682), + [1409] = { + [sym_comment] = STATE(1409), + [sym_identifier] = ACTIONS(3476), + [anon_sym_export] = ACTIONS(3476), + [anon_sym_type] = ACTIONS(3476), + [anon_sym_namespace] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3476), + [anon_sym_import] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3476), + [anon_sym_with] = ACTIONS(3476), + [anon_sym_var] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_else] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3476), + [anon_sym_of] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_debugger] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_throw] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LTtemplate_GT] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_function] = ACTIONS(3476), + [anon_sym_new] = ACTIONS(3476), + [anon_sym_using] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3476), + [anon_sym_delete] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_number] = ACTIONS(3476), + [sym_private_property_identifier] = ACTIONS(3476), + [sym_this] = ACTIONS(3476), + [sym_super] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_undefined] = ACTIONS(3476), + [anon_sym_AT] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_readonly] = ACTIONS(3476), + [anon_sym_get] = ACTIONS(3476), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_declare] = ACTIONS(3476), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_override] = ACTIONS(3476), + [anon_sym_module] = ACTIONS(3476), + [anon_sym_any] = ACTIONS(3476), + [anon_sym_number] = ACTIONS(3476), + [anon_sym_boolean] = ACTIONS(3476), + [anon_sym_string] = ACTIONS(3476), + [anon_sym_symbol] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(3476), + [anon_sym_property] = ACTIONS(3476), + [anon_sym_signal] = ACTIONS(3476), + [anon_sym_on] = ACTIONS(3476), + [anon_sym_required] = ACTIONS(3476), + [anon_sym_component] = ACTIONS(3476), + [anon_sym_abstract] = ACTIONS(3476), + [anon_sym_interface] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), [sym_html_comment] = ACTIONS(5), }, - [1423] = { - [sym_comment] = STATE(1423), - [sym_identifier] = ACTIONS(3632), - [anon_sym_export] = ACTIONS(3632), - [anon_sym_default] = ACTIONS(3632), - [anon_sym_type] = ACTIONS(3632), - [anon_sym_namespace] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_typeof] = ACTIONS(3632), - [anon_sym_import] = ACTIONS(3632), - [anon_sym_from] = ACTIONS(3632), - [anon_sym_with] = ACTIONS(3632), - [anon_sym_var] = ACTIONS(3632), - [anon_sym_let] = ACTIONS(3632), - [anon_sym_const] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_if] = ACTIONS(3632), - [anon_sym_switch] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_await] = ACTIONS(3632), - [anon_sym_of] = ACTIONS(3632), - [anon_sym_while] = ACTIONS(3632), - [anon_sym_do] = ACTIONS(3632), - [anon_sym_try] = ACTIONS(3632), - [anon_sym_break] = ACTIONS(3632), - [anon_sym_continue] = ACTIONS(3632), - [anon_sym_debugger] = ACTIONS(3632), - [anon_sym_return] = ACTIONS(3632), - [anon_sym_throw] = ACTIONS(3632), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_case] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3632), - [anon_sym_LBRACK] = ACTIONS(3632), - [anon_sym_LTtemplate_GT] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_class] = ACTIONS(3632), - [anon_sym_async] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3632), - [anon_sym_using] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_void] = ACTIONS(3632), - [anon_sym_delete] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3632), - [sym_number] = ACTIONS(3632), - [sym_private_property_identifier] = ACTIONS(3632), - [sym_this] = ACTIONS(3632), - [sym_super] = ACTIONS(3632), - [sym_true] = ACTIONS(3632), - [sym_false] = ACTIONS(3632), - [sym_null] = ACTIONS(3632), - [sym_undefined] = ACTIONS(3632), - [anon_sym_AT] = ACTIONS(3632), - [anon_sym_static] = ACTIONS(3632), - [anon_sym_readonly] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3632), - [anon_sym_declare] = ACTIONS(3632), - [anon_sym_public] = ACTIONS(3632), - [anon_sym_private] = ACTIONS(3632), - [anon_sym_protected] = ACTIONS(3632), - [anon_sym_override] = ACTIONS(3632), - [anon_sym_module] = ACTIONS(3632), - [anon_sym_any] = ACTIONS(3632), - [anon_sym_number] = ACTIONS(3632), - [anon_sym_boolean] = ACTIONS(3632), - [anon_sym_string] = ACTIONS(3632), - [anon_sym_symbol] = ACTIONS(3632), - [anon_sym_object] = ACTIONS(3632), - [anon_sym_property] = ACTIONS(3632), - [anon_sym_signal] = ACTIONS(3632), - [anon_sym_on] = ACTIONS(3632), - [anon_sym_required] = ACTIONS(3632), - [anon_sym_component] = ACTIONS(3632), - [anon_sym_abstract] = ACTIONS(3632), - [anon_sym_interface] = ACTIONS(3632), - [anon_sym_enum] = ACTIONS(3632), + [1410] = { + [sym_comment] = STATE(1410), + [sym_identifier] = ACTIONS(3562), + [anon_sym_export] = ACTIONS(3562), + [anon_sym_type] = ACTIONS(3562), + [anon_sym_namespace] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_RBRACE] = ACTIONS(3562), + [anon_sym_typeof] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_from] = ACTIONS(3562), + [anon_sym_with] = ACTIONS(3562), + [anon_sym_var] = ACTIONS(3562), + [anon_sym_let] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_else] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3562), + [anon_sym_await] = ACTIONS(3562), + [anon_sym_of] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_debugger] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym_yield] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_LTtemplate_GT] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_async] = ACTIONS(3562), + [anon_sym_function] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_using] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_SLASH] = ACTIONS(3562), + [anon_sym_LT] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_void] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3562), + [sym_number] = ACTIONS(3562), + [sym_private_property_identifier] = ACTIONS(3562), + [sym_this] = ACTIONS(3562), + [sym_super] = ACTIONS(3562), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [sym_null] = ACTIONS(3562), + [sym_undefined] = ACTIONS(3562), + [anon_sym_AT] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_readonly] = ACTIONS(3562), + [anon_sym_get] = ACTIONS(3562), + [anon_sym_set] = ACTIONS(3562), + [anon_sym_declare] = ACTIONS(3562), + [anon_sym_public] = ACTIONS(3562), + [anon_sym_private] = ACTIONS(3562), + [anon_sym_protected] = ACTIONS(3562), + [anon_sym_override] = ACTIONS(3562), + [anon_sym_module] = ACTIONS(3562), + [anon_sym_any] = ACTIONS(3562), + [anon_sym_number] = ACTIONS(3562), + [anon_sym_boolean] = ACTIONS(3562), + [anon_sym_string] = ACTIONS(3562), + [anon_sym_symbol] = ACTIONS(3562), + [anon_sym_object] = ACTIONS(3562), + [anon_sym_property] = ACTIONS(3562), + [anon_sym_signal] = ACTIONS(3562), + [anon_sym_on] = ACTIONS(3562), + [anon_sym_required] = ACTIONS(3562), + [anon_sym_component] = ACTIONS(3562), + [anon_sym_abstract] = ACTIONS(3562), + [anon_sym_interface] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), [sym_html_comment] = ACTIONS(5), }, - [1424] = { - [sym_comment] = STATE(1424), - [sym_identifier] = ACTIONS(3690), - [anon_sym_export] = ACTIONS(3690), - [anon_sym_default] = ACTIONS(3690), - [anon_sym_type] = ACTIONS(3690), - [anon_sym_namespace] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_typeof] = ACTIONS(3690), - [anon_sym_import] = ACTIONS(3690), - [anon_sym_from] = ACTIONS(3690), - [anon_sym_with] = ACTIONS(3690), - [anon_sym_var] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_const] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_switch] = ACTIONS(3690), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_await] = ACTIONS(3690), - [anon_sym_of] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_break] = ACTIONS(3690), - [anon_sym_continue] = ACTIONS(3690), - [anon_sym_debugger] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_throw] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym_case] = ACTIONS(3690), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LTtemplate_GT] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_SQUOTE] = ACTIONS(3690), - [anon_sym_class] = ACTIONS(3690), - [anon_sym_async] = ACTIONS(3690), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_using] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_SLASH] = ACTIONS(3690), - [anon_sym_LT] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3690), - [anon_sym_void] = ACTIONS(3690), - [anon_sym_delete] = ACTIONS(3690), - [anon_sym_PLUS_PLUS] = ACTIONS(3690), - [anon_sym_DASH_DASH] = ACTIONS(3690), + [1411] = { + [sym_comment] = STATE(1411), + [sym_identifier] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_type] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_RBRACE] = ACTIONS(3560), + [anon_sym_typeof] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_from] = ACTIONS(3560), + [anon_sym_with] = ACTIONS(3560), + [anon_sym_var] = ACTIONS(3560), + [anon_sym_let] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_else] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_LPAREN] = ACTIONS(3560), + [anon_sym_await] = ACTIONS(3560), + [anon_sym_of] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_debugger] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym_yield] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_LTtemplate_GT] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_async] = ACTIONS(3560), + [anon_sym_function] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_void] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3560), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3690), - [sym_number] = ACTIONS(3690), - [sym_private_property_identifier] = ACTIONS(3690), - [sym_this] = ACTIONS(3690), - [sym_super] = ACTIONS(3690), - [sym_true] = ACTIONS(3690), - [sym_false] = ACTIONS(3690), - [sym_null] = ACTIONS(3690), - [sym_undefined] = ACTIONS(3690), - [anon_sym_AT] = ACTIONS(3690), - [anon_sym_static] = ACTIONS(3690), - [anon_sym_readonly] = ACTIONS(3690), - [anon_sym_get] = ACTIONS(3690), - [anon_sym_set] = ACTIONS(3690), - [anon_sym_declare] = ACTIONS(3690), - [anon_sym_public] = ACTIONS(3690), - [anon_sym_private] = ACTIONS(3690), - [anon_sym_protected] = ACTIONS(3690), - [anon_sym_override] = ACTIONS(3690), - [anon_sym_module] = ACTIONS(3690), - [anon_sym_any] = ACTIONS(3690), - [anon_sym_number] = ACTIONS(3690), - [anon_sym_boolean] = ACTIONS(3690), - [anon_sym_string] = ACTIONS(3690), - [anon_sym_symbol] = ACTIONS(3690), - [anon_sym_object] = ACTIONS(3690), - [anon_sym_property] = ACTIONS(3690), - [anon_sym_signal] = ACTIONS(3690), - [anon_sym_on] = ACTIONS(3690), - [anon_sym_required] = ACTIONS(3690), - [anon_sym_component] = ACTIONS(3690), - [anon_sym_abstract] = ACTIONS(3690), - [anon_sym_interface] = ACTIONS(3690), - [anon_sym_enum] = ACTIONS(3690), + [anon_sym_BQUOTE] = ACTIONS(3560), + [sym_number] = ACTIONS(3560), + [sym_private_property_identifier] = ACTIONS(3560), + [sym_this] = ACTIONS(3560), + [sym_super] = ACTIONS(3560), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [sym_null] = ACTIONS(3560), + [sym_undefined] = ACTIONS(3560), + [anon_sym_AT] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_readonly] = ACTIONS(3560), + [anon_sym_get] = ACTIONS(3560), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_declare] = ACTIONS(3560), + [anon_sym_public] = ACTIONS(3560), + [anon_sym_private] = ACTIONS(3560), + [anon_sym_protected] = ACTIONS(3560), + [anon_sym_override] = ACTIONS(3560), + [anon_sym_module] = ACTIONS(3560), + [anon_sym_any] = ACTIONS(3560), + [anon_sym_number] = ACTIONS(3560), + [anon_sym_boolean] = ACTIONS(3560), + [anon_sym_string] = ACTIONS(3560), + [anon_sym_symbol] = ACTIONS(3560), + [anon_sym_object] = ACTIONS(3560), + [anon_sym_property] = ACTIONS(3560), + [anon_sym_signal] = ACTIONS(3560), + [anon_sym_on] = ACTIONS(3560), + [anon_sym_required] = ACTIONS(3560), + [anon_sym_component] = ACTIONS(3560), + [anon_sym_abstract] = ACTIONS(3560), + [anon_sym_interface] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), [sym_html_comment] = ACTIONS(5), }, - [1425] = { - [sym_comment] = STATE(1425), - [sym_identifier] = ACTIONS(3614), - [anon_sym_export] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_type] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_RBRACE] = ACTIONS(3614), - [anon_sym_typeof] = ACTIONS(3614), - [anon_sym_import] = ACTIONS(3614), - [anon_sym_from] = ACTIONS(3614), - [anon_sym_with] = ACTIONS(3614), - [anon_sym_var] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_await] = ACTIONS(3614), - [anon_sym_of] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_debugger] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LTtemplate_GT] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_SQUOTE] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_async] = ACTIONS(3614), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_SLASH] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_void] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3614), - [sym_number] = ACTIONS(3614), - [sym_private_property_identifier] = ACTIONS(3614), - [sym_this] = ACTIONS(3614), - [sym_super] = ACTIONS(3614), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [sym_null] = ACTIONS(3614), - [sym_undefined] = ACTIONS(3614), - [anon_sym_AT] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_readonly] = ACTIONS(3614), - [anon_sym_get] = ACTIONS(3614), - [anon_sym_set] = ACTIONS(3614), - [anon_sym_declare] = ACTIONS(3614), - [anon_sym_public] = ACTIONS(3614), - [anon_sym_private] = ACTIONS(3614), - [anon_sym_protected] = ACTIONS(3614), - [anon_sym_override] = ACTIONS(3614), - [anon_sym_module] = ACTIONS(3614), - [anon_sym_any] = ACTIONS(3614), - [anon_sym_number] = ACTIONS(3614), - [anon_sym_boolean] = ACTIONS(3614), - [anon_sym_string] = ACTIONS(3614), - [anon_sym_symbol] = ACTIONS(3614), - [anon_sym_object] = ACTIONS(3614), - [anon_sym_property] = ACTIONS(3614), - [anon_sym_signal] = ACTIONS(3614), - [anon_sym_on] = ACTIONS(3614), - [anon_sym_required] = ACTIONS(3614), - [anon_sym_component] = ACTIONS(3614), - [anon_sym_abstract] = ACTIONS(3614), - [anon_sym_interface] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), + [1412] = { + [sym_comment] = STATE(1412), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_LBRACE] = ACTIONS(2348), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_typeof] = ACTIONS(2348), + [anon_sym_import] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_with] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_const] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2348), + [anon_sym_if] = ACTIONS(2348), + [anon_sym_switch] = ACTIONS(2348), + [anon_sym_for] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_await] = ACTIONS(2348), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_while] = ACTIONS(2348), + [anon_sym_do] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2348), + [anon_sym_break] = ACTIONS(2348), + [anon_sym_continue] = ACTIONS(2348), + [anon_sym_debugger] = ACTIONS(2348), + [anon_sym_return] = ACTIONS(2348), + [anon_sym_throw] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2348), + [anon_sym_yield] = ACTIONS(2348), + [anon_sym_LBRACK] = ACTIONS(2348), + [anon_sym_LTtemplate_GT] = ACTIONS(2348), + [anon_sym_DQUOTE] = ACTIONS(2348), + [anon_sym_SQUOTE] = ACTIONS(2348), + [anon_sym_class] = ACTIONS(2348), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_new] = ACTIONS(2348), + [anon_sym_using] = ACTIONS(2348), + [anon_sym_PLUS] = ACTIONS(2348), + [anon_sym_DASH] = ACTIONS(2348), + [anon_sym_SLASH] = ACTIONS(2348), + [anon_sym_LT] = ACTIONS(2348), + [anon_sym_TILDE] = ACTIONS(2348), + [anon_sym_void] = ACTIONS(2348), + [anon_sym_delete] = ACTIONS(2348), + [anon_sym_PLUS_PLUS] = ACTIONS(2348), + [anon_sym_DASH_DASH] = ACTIONS(2348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2348), + [sym_number] = ACTIONS(2348), + [sym_private_property_identifier] = ACTIONS(2348), + [sym_this] = ACTIONS(2348), + [sym_super] = ACTIONS(2348), + [sym_true] = ACTIONS(2348), + [sym_false] = ACTIONS(2348), + [sym_null] = ACTIONS(2348), + [sym_undefined] = ACTIONS(2348), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_abstract] = ACTIONS(2348), + [anon_sym_interface] = ACTIONS(2348), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(2694), [sym_html_comment] = ACTIONS(5), }, - [1426] = { - [sym_comment] = STATE(1426), - [sym_identifier] = ACTIONS(3680), - [anon_sym_export] = ACTIONS(3680), - [anon_sym_default] = ACTIONS(3680), - [anon_sym_type] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3680), - [anon_sym_RBRACE] = ACTIONS(3680), - [anon_sym_typeof] = ACTIONS(3680), - [anon_sym_import] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_with] = ACTIONS(3680), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_for] = ACTIONS(3680), - [anon_sym_LPAREN] = ACTIONS(3680), - [anon_sym_await] = ACTIONS(3680), - [anon_sym_of] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), - [anon_sym_do] = ACTIONS(3680), - [anon_sym_try] = ACTIONS(3680), - [anon_sym_break] = ACTIONS(3680), - [anon_sym_continue] = ACTIONS(3680), - [anon_sym_debugger] = ACTIONS(3680), - [anon_sym_return] = ACTIONS(3680), - [anon_sym_throw] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_case] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_LTtemplate_GT] = ACTIONS(3680), - [anon_sym_DQUOTE] = ACTIONS(3680), - [anon_sym_SQUOTE] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_async] = ACTIONS(3680), - [anon_sym_function] = ACTIONS(3680), - [anon_sym_new] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_void] = ACTIONS(3680), - [anon_sym_delete] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3680), - [sym_number] = ACTIONS(3680), - [sym_private_property_identifier] = ACTIONS(3680), - [sym_this] = ACTIONS(3680), - [sym_super] = ACTIONS(3680), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_AT] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3680), - [anon_sym_get] = ACTIONS(3680), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_declare] = ACTIONS(3680), - [anon_sym_public] = ACTIONS(3680), - [anon_sym_private] = ACTIONS(3680), - [anon_sym_protected] = ACTIONS(3680), - [anon_sym_override] = ACTIONS(3680), - [anon_sym_module] = ACTIONS(3680), - [anon_sym_any] = ACTIONS(3680), - [anon_sym_number] = ACTIONS(3680), - [anon_sym_boolean] = ACTIONS(3680), - [anon_sym_string] = ACTIONS(3680), - [anon_sym_symbol] = ACTIONS(3680), - [anon_sym_object] = ACTIONS(3680), - [anon_sym_property] = ACTIONS(3680), - [anon_sym_signal] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_required] = ACTIONS(3680), - [anon_sym_component] = ACTIONS(3680), - [anon_sym_abstract] = ACTIONS(3680), - [anon_sym_interface] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), + [1413] = { + [sym_comment] = STATE(1413), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_LBRACE] = ACTIONS(2340), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_typeof] = ACTIONS(2340), + [anon_sym_import] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_with] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_const] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2340), + [anon_sym_if] = ACTIONS(2340), + [anon_sym_switch] = ACTIONS(2340), + [anon_sym_for] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_await] = ACTIONS(2340), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_while] = ACTIONS(2340), + [anon_sym_do] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2340), + [anon_sym_break] = ACTIONS(2340), + [anon_sym_continue] = ACTIONS(2340), + [anon_sym_debugger] = ACTIONS(2340), + [anon_sym_return] = ACTIONS(2340), + [anon_sym_throw] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2340), + [anon_sym_yield] = ACTIONS(2340), + [anon_sym_LBRACK] = ACTIONS(2340), + [anon_sym_LTtemplate_GT] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2340), + [anon_sym_SQUOTE] = ACTIONS(2340), + [anon_sym_class] = ACTIONS(2340), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_new] = ACTIONS(2340), + [anon_sym_using] = ACTIONS(2340), + [anon_sym_PLUS] = ACTIONS(2340), + [anon_sym_DASH] = ACTIONS(2340), + [anon_sym_SLASH] = ACTIONS(2340), + [anon_sym_LT] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [anon_sym_void] = ACTIONS(2340), + [anon_sym_delete] = ACTIONS(2340), + [anon_sym_PLUS_PLUS] = ACTIONS(2340), + [anon_sym_DASH_DASH] = ACTIONS(2340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2340), + [sym_number] = ACTIONS(2340), + [sym_private_property_identifier] = ACTIONS(2340), + [sym_this] = ACTIONS(2340), + [sym_super] = ACTIONS(2340), + [sym_true] = ACTIONS(2340), + [sym_false] = ACTIONS(2340), + [sym_null] = ACTIONS(2340), + [sym_undefined] = ACTIONS(2340), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_abstract] = ACTIONS(2340), + [anon_sym_interface] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(2696), [sym_html_comment] = ACTIONS(5), }, - [1427] = { - [sym_comment] = STATE(1427), - [sym_identifier] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_type] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_RBRACE] = ACTIONS(3618), - [anon_sym_typeof] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_from] = ACTIONS(3618), - [anon_sym_with] = ACTIONS(3618), - [anon_sym_var] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_await] = ACTIONS(3618), - [anon_sym_of] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_debugger] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LTtemplate_GT] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_async] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_void] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), + [1414] = { + [sym_comment] = STATE(1414), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3618), - [sym_number] = ACTIONS(3618), - [sym_private_property_identifier] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [sym_super] = ACTIONS(3618), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [sym_undefined] = ACTIONS(3618), - [anon_sym_AT] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_readonly] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3618), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_declare] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_override] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_any] = ACTIONS(3618), - [anon_sym_number] = ACTIONS(3618), - [anon_sym_boolean] = ACTIONS(3618), - [anon_sym_string] = ACTIONS(3618), - [anon_sym_symbol] = ACTIONS(3618), - [anon_sym_object] = ACTIONS(3618), - [anon_sym_property] = ACTIONS(3618), - [anon_sym_signal] = ACTIONS(3618), - [anon_sym_on] = ACTIONS(3618), - [anon_sym_required] = ACTIONS(3618), - [anon_sym_component] = ACTIONS(3618), - [anon_sym_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), [sym_html_comment] = ACTIONS(5), }, - [1428] = { - [sym_comment] = STATE(1428), - [sym_identifier] = ACTIONS(3678), - [anon_sym_export] = ACTIONS(3678), - [anon_sym_default] = ACTIONS(3678), - [anon_sym_type] = ACTIONS(3678), - [anon_sym_namespace] = ACTIONS(3678), - [anon_sym_LBRACE] = ACTIONS(3678), - [anon_sym_RBRACE] = ACTIONS(3678), - [anon_sym_typeof] = ACTIONS(3678), - [anon_sym_import] = ACTIONS(3678), - [anon_sym_from] = ACTIONS(3678), - [anon_sym_with] = ACTIONS(3678), - [anon_sym_var] = ACTIONS(3678), - [anon_sym_let] = ACTIONS(3678), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_if] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3678), - [anon_sym_for] = ACTIONS(3678), - [anon_sym_LPAREN] = ACTIONS(3678), - [anon_sym_await] = ACTIONS(3678), - [anon_sym_of] = ACTIONS(3678), - [anon_sym_while] = ACTIONS(3678), - [anon_sym_do] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_break] = ACTIONS(3678), - [anon_sym_continue] = ACTIONS(3678), - [anon_sym_debugger] = ACTIONS(3678), - [anon_sym_return] = ACTIONS(3678), - [anon_sym_throw] = ACTIONS(3678), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym_case] = ACTIONS(3678), - [anon_sym_yield] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_LTtemplate_GT] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_async] = ACTIONS(3678), - [anon_sym_function] = ACTIONS(3678), - [anon_sym_new] = ACTIONS(3678), - [anon_sym_using] = ACTIONS(3678), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_SLASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_void] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_DASH_DASH] = ACTIONS(3678), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3678), - [sym_private_property_identifier] = ACTIONS(3678), - [sym_this] = ACTIONS(3678), - [sym_super] = ACTIONS(3678), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_AT] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3678), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3678), - [anon_sym_declare] = ACTIONS(3678), - [anon_sym_public] = ACTIONS(3678), - [anon_sym_private] = ACTIONS(3678), - [anon_sym_protected] = ACTIONS(3678), - [anon_sym_override] = ACTIONS(3678), - [anon_sym_module] = ACTIONS(3678), - [anon_sym_any] = ACTIONS(3678), - [anon_sym_number] = ACTIONS(3678), - [anon_sym_boolean] = ACTIONS(3678), - [anon_sym_string] = ACTIONS(3678), - [anon_sym_symbol] = ACTIONS(3678), - [anon_sym_object] = ACTIONS(3678), - [anon_sym_property] = ACTIONS(3678), - [anon_sym_signal] = ACTIONS(3678), - [anon_sym_on] = ACTIONS(3678), - [anon_sym_required] = ACTIONS(3678), - [anon_sym_component] = ACTIONS(3678), - [anon_sym_abstract] = ACTIONS(3678), - [anon_sym_interface] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), + [1415] = { + [sym_comment] = STATE(1415), + [sym_identifier] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_type] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_typeof] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_from] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3556), + [anon_sym_var] = ACTIONS(3556), + [anon_sym_let] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_else] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3556), + [anon_sym_await] = ACTIONS(3556), + [anon_sym_of] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_debugger] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_LTtemplate_GT] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_async] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_SLASH] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_void] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3556), + [sym_number] = ACTIONS(3556), + [sym_private_property_identifier] = ACTIONS(3556), + [sym_this] = ACTIONS(3556), + [sym_super] = ACTIONS(3556), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [sym_null] = ACTIONS(3556), + [sym_undefined] = ACTIONS(3556), + [anon_sym_AT] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_readonly] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3556), + [anon_sym_set] = ACTIONS(3556), + [anon_sym_declare] = ACTIONS(3556), + [anon_sym_public] = ACTIONS(3556), + [anon_sym_private] = ACTIONS(3556), + [anon_sym_protected] = ACTIONS(3556), + [anon_sym_override] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_any] = ACTIONS(3556), + [anon_sym_number] = ACTIONS(3556), + [anon_sym_boolean] = ACTIONS(3556), + [anon_sym_string] = ACTIONS(3556), + [anon_sym_symbol] = ACTIONS(3556), + [anon_sym_object] = ACTIONS(3556), + [anon_sym_property] = ACTIONS(3556), + [anon_sym_signal] = ACTIONS(3556), + [anon_sym_on] = ACTIONS(3556), + [anon_sym_required] = ACTIONS(3556), + [anon_sym_component] = ACTIONS(3556), + [anon_sym_abstract] = ACTIONS(3556), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), [sym_html_comment] = ACTIONS(5), }, - [1429] = { - [sym_comment] = STATE(1429), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1430] = { - [sym_comment] = STATE(1430), - [sym_identifier] = ACTIONS(3676), - [anon_sym_export] = ACTIONS(3676), - [anon_sym_default] = ACTIONS(3676), - [anon_sym_type] = ACTIONS(3676), - [anon_sym_namespace] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_typeof] = ACTIONS(3676), - [anon_sym_import] = ACTIONS(3676), - [anon_sym_from] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [anon_sym_var] = ACTIONS(3676), - [anon_sym_let] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3676), - [anon_sym_if] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_for] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_await] = ACTIONS(3676), - [anon_sym_of] = ACTIONS(3676), - [anon_sym_while] = ACTIONS(3676), - [anon_sym_do] = ACTIONS(3676), - [anon_sym_try] = ACTIONS(3676), - [anon_sym_break] = ACTIONS(3676), - [anon_sym_continue] = ACTIONS(3676), - [anon_sym_debugger] = ACTIONS(3676), - [anon_sym_return] = ACTIONS(3676), - [anon_sym_throw] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_case] = ACTIONS(3676), - [anon_sym_yield] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_LTtemplate_GT] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(3676), - [anon_sym_SQUOTE] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_async] = ACTIONS(3676), - [anon_sym_function] = ACTIONS(3676), - [anon_sym_new] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3676), - [anon_sym_TILDE] = ACTIONS(3676), - [anon_sym_void] = ACTIONS(3676), - [anon_sym_delete] = ACTIONS(3676), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3676), - [sym_private_property_identifier] = ACTIONS(3676), - [sym_this] = ACTIONS(3676), - [sym_super] = ACTIONS(3676), - [sym_true] = ACTIONS(3676), - [sym_false] = ACTIONS(3676), - [sym_null] = ACTIONS(3676), - [sym_undefined] = ACTIONS(3676), - [anon_sym_AT] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_readonly] = ACTIONS(3676), - [anon_sym_get] = ACTIONS(3676), - [anon_sym_set] = ACTIONS(3676), - [anon_sym_declare] = ACTIONS(3676), - [anon_sym_public] = ACTIONS(3676), - [anon_sym_private] = ACTIONS(3676), - [anon_sym_protected] = ACTIONS(3676), - [anon_sym_override] = ACTIONS(3676), - [anon_sym_module] = ACTIONS(3676), - [anon_sym_any] = ACTIONS(3676), - [anon_sym_number] = ACTIONS(3676), - [anon_sym_boolean] = ACTIONS(3676), - [anon_sym_string] = ACTIONS(3676), - [anon_sym_symbol] = ACTIONS(3676), - [anon_sym_object] = ACTIONS(3676), - [anon_sym_property] = ACTIONS(3676), - [anon_sym_signal] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_required] = ACTIONS(3676), - [anon_sym_component] = ACTIONS(3676), - [anon_sym_abstract] = ACTIONS(3676), - [anon_sym_interface] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), + [1416] = { + [sym_comment] = STATE(1416), + [sym_identifier] = ACTIONS(3554), + [anon_sym_export] = ACTIONS(3554), + [anon_sym_type] = ACTIONS(3554), + [anon_sym_namespace] = ACTIONS(3554), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_RBRACE] = ACTIONS(3554), + [anon_sym_typeof] = ACTIONS(3554), + [anon_sym_import] = ACTIONS(3554), + [anon_sym_from] = ACTIONS(3554), + [anon_sym_with] = ACTIONS(3554), + [anon_sym_var] = ACTIONS(3554), + [anon_sym_let] = ACTIONS(3554), + [anon_sym_const] = ACTIONS(3554), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_else] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3554), + [anon_sym_switch] = ACTIONS(3554), + [anon_sym_for] = ACTIONS(3554), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_await] = ACTIONS(3554), + [anon_sym_of] = ACTIONS(3554), + [anon_sym_while] = ACTIONS(3554), + [anon_sym_do] = ACTIONS(3554), + [anon_sym_try] = ACTIONS(3554), + [anon_sym_break] = ACTIONS(3554), + [anon_sym_continue] = ACTIONS(3554), + [anon_sym_debugger] = ACTIONS(3554), + [anon_sym_return] = ACTIONS(3554), + [anon_sym_throw] = ACTIONS(3554), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym_yield] = ACTIONS(3554), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LTtemplate_GT] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_SQUOTE] = ACTIONS(3554), + [anon_sym_class] = ACTIONS(3554), + [anon_sym_async] = ACTIONS(3554), + [anon_sym_function] = ACTIONS(3554), + [anon_sym_new] = ACTIONS(3554), + [anon_sym_using] = ACTIONS(3554), + [anon_sym_PLUS] = ACTIONS(3554), + [anon_sym_DASH] = ACTIONS(3554), + [anon_sym_SLASH] = ACTIONS(3554), + [anon_sym_LT] = ACTIONS(3554), + [anon_sym_TILDE] = ACTIONS(3554), + [anon_sym_void] = ACTIONS(3554), + [anon_sym_delete] = ACTIONS(3554), + [anon_sym_PLUS_PLUS] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3554), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3554), + [sym_number] = ACTIONS(3554), + [sym_private_property_identifier] = ACTIONS(3554), + [sym_this] = ACTIONS(3554), + [sym_super] = ACTIONS(3554), + [sym_true] = ACTIONS(3554), + [sym_false] = ACTIONS(3554), + [sym_null] = ACTIONS(3554), + [sym_undefined] = ACTIONS(3554), + [anon_sym_AT] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3554), + [anon_sym_readonly] = ACTIONS(3554), + [anon_sym_get] = ACTIONS(3554), + [anon_sym_set] = ACTIONS(3554), + [anon_sym_declare] = ACTIONS(3554), + [anon_sym_public] = ACTIONS(3554), + [anon_sym_private] = ACTIONS(3554), + [anon_sym_protected] = ACTIONS(3554), + [anon_sym_override] = ACTIONS(3554), + [anon_sym_module] = ACTIONS(3554), + [anon_sym_any] = ACTIONS(3554), + [anon_sym_number] = ACTIONS(3554), + [anon_sym_boolean] = ACTIONS(3554), + [anon_sym_string] = ACTIONS(3554), + [anon_sym_symbol] = ACTIONS(3554), + [anon_sym_object] = ACTIONS(3554), + [anon_sym_property] = ACTIONS(3554), + [anon_sym_signal] = ACTIONS(3554), + [anon_sym_on] = ACTIONS(3554), + [anon_sym_required] = ACTIONS(3554), + [anon_sym_component] = ACTIONS(3554), + [anon_sym_abstract] = ACTIONS(3554), + [anon_sym_interface] = ACTIONS(3554), + [anon_sym_enum] = ACTIONS(3554), [sym_html_comment] = ACTIONS(5), }, - [1431] = { - [sym_comment] = STATE(1431), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1417] = { + [sym_comment] = STATE(1417), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_else] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), [sym_html_comment] = ACTIONS(5), }, - [1432] = { - [sym_comment] = STATE(1432), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1418] = { + [sym_comment] = STATE(1418), + [sym_identifier] = ACTIONS(3550), + [anon_sym_export] = ACTIONS(3550), + [anon_sym_type] = ACTIONS(3550), + [anon_sym_namespace] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_typeof] = ACTIONS(3550), + [anon_sym_import] = ACTIONS(3550), + [anon_sym_from] = ACTIONS(3550), + [anon_sym_with] = ACTIONS(3550), + [anon_sym_var] = ACTIONS(3550), + [anon_sym_let] = ACTIONS(3550), + [anon_sym_const] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_else] = ACTIONS(3550), + [anon_sym_if] = ACTIONS(3550), + [anon_sym_switch] = ACTIONS(3550), + [anon_sym_for] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_await] = ACTIONS(3550), + [anon_sym_of] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3550), + [anon_sym_do] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3550), + [anon_sym_break] = ACTIONS(3550), + [anon_sym_continue] = ACTIONS(3550), + [anon_sym_debugger] = ACTIONS(3550), + [anon_sym_return] = ACTIONS(3550), + [anon_sym_throw] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_yield] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LTtemplate_GT] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_class] = ACTIONS(3550), + [anon_sym_async] = ACTIONS(3550), + [anon_sym_function] = ACTIONS(3550), + [anon_sym_new] = ACTIONS(3550), + [anon_sym_using] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3550), + [anon_sym_SLASH] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_void] = ACTIONS(3550), + [anon_sym_delete] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3550), + [sym_number] = ACTIONS(3550), + [sym_private_property_identifier] = ACTIONS(3550), + [sym_this] = ACTIONS(3550), + [sym_super] = ACTIONS(3550), + [sym_true] = ACTIONS(3550), + [sym_false] = ACTIONS(3550), + [sym_null] = ACTIONS(3550), + [sym_undefined] = ACTIONS(3550), + [anon_sym_AT] = ACTIONS(3550), + [anon_sym_static] = ACTIONS(3550), + [anon_sym_readonly] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3550), + [anon_sym_set] = ACTIONS(3550), + [anon_sym_declare] = ACTIONS(3550), + [anon_sym_public] = ACTIONS(3550), + [anon_sym_private] = ACTIONS(3550), + [anon_sym_protected] = ACTIONS(3550), + [anon_sym_override] = ACTIONS(3550), + [anon_sym_module] = ACTIONS(3550), + [anon_sym_any] = ACTIONS(3550), + [anon_sym_number] = ACTIONS(3550), + [anon_sym_boolean] = ACTIONS(3550), + [anon_sym_string] = ACTIONS(3550), + [anon_sym_symbol] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(3550), + [anon_sym_property] = ACTIONS(3550), + [anon_sym_signal] = ACTIONS(3550), + [anon_sym_on] = ACTIONS(3550), + [anon_sym_required] = ACTIONS(3550), + [anon_sym_component] = ACTIONS(3550), + [anon_sym_abstract] = ACTIONS(3550), + [anon_sym_interface] = ACTIONS(3550), + [anon_sym_enum] = ACTIONS(3550), [sym_html_comment] = ACTIONS(5), }, - [1433] = { - [sym_comment] = STATE(1433), - [sym_identifier] = ACTIONS(3664), - [anon_sym_export] = ACTIONS(3664), - [anon_sym_default] = ACTIONS(3664), - [anon_sym_type] = ACTIONS(3664), - [anon_sym_namespace] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_typeof] = ACTIONS(3664), - [anon_sym_import] = ACTIONS(3664), - [anon_sym_from] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [anon_sym_var] = ACTIONS(3664), - [anon_sym_let] = ACTIONS(3664), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_for] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_await] = ACTIONS(3664), - [anon_sym_of] = ACTIONS(3664), - [anon_sym_while] = ACTIONS(3664), - [anon_sym_do] = ACTIONS(3664), - [anon_sym_try] = ACTIONS(3664), - [anon_sym_break] = ACTIONS(3664), - [anon_sym_continue] = ACTIONS(3664), - [anon_sym_debugger] = ACTIONS(3664), - [anon_sym_return] = ACTIONS(3664), - [anon_sym_throw] = ACTIONS(3664), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_case] = ACTIONS(3664), - [anon_sym_yield] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_LTtemplate_GT] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_class] = ACTIONS(3664), - [anon_sym_async] = ACTIONS(3664), - [anon_sym_function] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3664), - [anon_sym_using] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_void] = ACTIONS(3664), - [anon_sym_delete] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), + [1419] = { + [sym_comment] = STATE(1419), + [sym_identifier] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_type] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3548), + [anon_sym_RBRACE] = ACTIONS(3548), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_from] = ACTIONS(3548), + [anon_sym_with] = ACTIONS(3548), + [anon_sym_var] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_of] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_debugger] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LTtemplate_GT] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(3548), + [anon_sym_SQUOTE] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_function] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_LT] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_void] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_PLUS_PLUS] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3548), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3664), - [sym_number] = ACTIONS(3664), - [sym_private_property_identifier] = ACTIONS(3664), - [sym_this] = ACTIONS(3664), - [sym_super] = ACTIONS(3664), - [sym_true] = ACTIONS(3664), - [sym_false] = ACTIONS(3664), - [sym_null] = ACTIONS(3664), - [sym_undefined] = ACTIONS(3664), - [anon_sym_AT] = ACTIONS(3664), - [anon_sym_static] = ACTIONS(3664), - [anon_sym_readonly] = ACTIONS(3664), - [anon_sym_get] = ACTIONS(3664), - [anon_sym_set] = ACTIONS(3664), - [anon_sym_declare] = ACTIONS(3664), - [anon_sym_public] = ACTIONS(3664), - [anon_sym_private] = ACTIONS(3664), - [anon_sym_protected] = ACTIONS(3664), - [anon_sym_override] = ACTIONS(3664), - [anon_sym_module] = ACTIONS(3664), - [anon_sym_any] = ACTIONS(3664), - [anon_sym_number] = ACTIONS(3664), - [anon_sym_boolean] = ACTIONS(3664), - [anon_sym_string] = ACTIONS(3664), - [anon_sym_symbol] = ACTIONS(3664), - [anon_sym_object] = ACTIONS(3664), - [anon_sym_property] = ACTIONS(3664), - [anon_sym_signal] = ACTIONS(3664), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_required] = ACTIONS(3664), - [anon_sym_component] = ACTIONS(3664), - [anon_sym_abstract] = ACTIONS(3664), - [anon_sym_interface] = ACTIONS(3664), - [anon_sym_enum] = ACTIONS(3664), + [anon_sym_BQUOTE] = ACTIONS(3548), + [sym_number] = ACTIONS(3548), + [sym_private_property_identifier] = ACTIONS(3548), + [sym_this] = ACTIONS(3548), + [sym_super] = ACTIONS(3548), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [sym_null] = ACTIONS(3548), + [sym_undefined] = ACTIONS(3548), + [anon_sym_AT] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_get] = ACTIONS(3548), + [anon_sym_set] = ACTIONS(3548), + [anon_sym_declare] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_override] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_any] = ACTIONS(3548), + [anon_sym_number] = ACTIONS(3548), + [anon_sym_boolean] = ACTIONS(3548), + [anon_sym_string] = ACTIONS(3548), + [anon_sym_symbol] = ACTIONS(3548), + [anon_sym_object] = ACTIONS(3548), + [anon_sym_property] = ACTIONS(3548), + [anon_sym_signal] = ACTIONS(3548), + [anon_sym_on] = ACTIONS(3548), + [anon_sym_required] = ACTIONS(3548), + [anon_sym_component] = ACTIONS(3548), + [anon_sym_abstract] = ACTIONS(3548), + [anon_sym_interface] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), [sym_html_comment] = ACTIONS(5), }, - [1434] = { - [sym_comment] = STATE(1434), - [sym_identifier] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3652), - [anon_sym_default] = ACTIONS(3652), - [anon_sym_type] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3652), - [anon_sym_import] = ACTIONS(3652), - [anon_sym_from] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [anon_sym_var] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_await] = ACTIONS(3652), - [anon_sym_of] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_debugger] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_case] = ACTIONS(3652), - [anon_sym_yield] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_LTtemplate_GT] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_async] = ACTIONS(3652), - [anon_sym_function] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_void] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), + [1420] = { + [sym_comment] = STATE(1420), + [sym_identifier] = ACTIONS(3692), + [anon_sym_export] = ACTIONS(3692), + [anon_sym_type] = ACTIONS(3692), + [anon_sym_namespace] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_typeof] = ACTIONS(3692), + [anon_sym_import] = ACTIONS(3692), + [anon_sym_from] = ACTIONS(3692), + [anon_sym_with] = ACTIONS(3692), + [anon_sym_var] = ACTIONS(3692), + [anon_sym_let] = ACTIONS(3692), + [anon_sym_const] = ACTIONS(3692), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_else] = ACTIONS(3692), + [anon_sym_if] = ACTIONS(3692), + [anon_sym_switch] = ACTIONS(3692), + [anon_sym_for] = ACTIONS(3692), + [anon_sym_LPAREN] = ACTIONS(3692), + [anon_sym_await] = ACTIONS(3692), + [anon_sym_of] = ACTIONS(3692), + [anon_sym_while] = ACTIONS(3692), + [anon_sym_do] = ACTIONS(3692), + [anon_sym_try] = ACTIONS(3692), + [anon_sym_break] = ACTIONS(3692), + [anon_sym_continue] = ACTIONS(3692), + [anon_sym_debugger] = ACTIONS(3692), + [anon_sym_return] = ACTIONS(3692), + [anon_sym_throw] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym_yield] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_LTtemplate_GT] = ACTIONS(3692), + [anon_sym_DQUOTE] = ACTIONS(3692), + [anon_sym_SQUOTE] = ACTIONS(3692), + [anon_sym_class] = ACTIONS(3692), + [anon_sym_async] = ACTIONS(3692), + [anon_sym_function] = ACTIONS(3692), + [anon_sym_new] = ACTIONS(3692), + [anon_sym_using] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_LT] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_void] = ACTIONS(3692), + [anon_sym_delete] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3692), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3652), - [sym_number] = ACTIONS(3652), - [sym_private_property_identifier] = ACTIONS(3652), - [sym_this] = ACTIONS(3652), - [sym_super] = ACTIONS(3652), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [sym_null] = ACTIONS(3652), - [sym_undefined] = ACTIONS(3652), - [anon_sym_AT] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_readonly] = ACTIONS(3652), - [anon_sym_get] = ACTIONS(3652), - [anon_sym_set] = ACTIONS(3652), - [anon_sym_declare] = ACTIONS(3652), - [anon_sym_public] = ACTIONS(3652), - [anon_sym_private] = ACTIONS(3652), - [anon_sym_protected] = ACTIONS(3652), - [anon_sym_override] = ACTIONS(3652), - [anon_sym_module] = ACTIONS(3652), - [anon_sym_any] = ACTIONS(3652), - [anon_sym_number] = ACTIONS(3652), - [anon_sym_boolean] = ACTIONS(3652), - [anon_sym_string] = ACTIONS(3652), - [anon_sym_symbol] = ACTIONS(3652), - [anon_sym_object] = ACTIONS(3652), - [anon_sym_property] = ACTIONS(3652), - [anon_sym_signal] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_required] = ACTIONS(3652), - [anon_sym_component] = ACTIONS(3652), - [anon_sym_abstract] = ACTIONS(3652), - [anon_sym_interface] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), + [anon_sym_BQUOTE] = ACTIONS(3692), + [sym_number] = ACTIONS(3692), + [sym_private_property_identifier] = ACTIONS(3692), + [sym_this] = ACTIONS(3692), + [sym_super] = ACTIONS(3692), + [sym_true] = ACTIONS(3692), + [sym_false] = ACTIONS(3692), + [sym_null] = ACTIONS(3692), + [sym_undefined] = ACTIONS(3692), + [anon_sym_AT] = ACTIONS(3692), + [anon_sym_static] = ACTIONS(3692), + [anon_sym_readonly] = ACTIONS(3692), + [anon_sym_get] = ACTIONS(3692), + [anon_sym_set] = ACTIONS(3692), + [anon_sym_declare] = ACTIONS(3692), + [anon_sym_public] = ACTIONS(3692), + [anon_sym_private] = ACTIONS(3692), + [anon_sym_protected] = ACTIONS(3692), + [anon_sym_override] = ACTIONS(3692), + [anon_sym_module] = ACTIONS(3692), + [anon_sym_any] = ACTIONS(3692), + [anon_sym_number] = ACTIONS(3692), + [anon_sym_boolean] = ACTIONS(3692), + [anon_sym_string] = ACTIONS(3692), + [anon_sym_symbol] = ACTIONS(3692), + [anon_sym_object] = ACTIONS(3692), + [anon_sym_property] = ACTIONS(3692), + [anon_sym_signal] = ACTIONS(3692), + [anon_sym_on] = ACTIONS(3692), + [anon_sym_required] = ACTIONS(3692), + [anon_sym_component] = ACTIONS(3692), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_interface] = ACTIONS(3692), + [anon_sym_enum] = ACTIONS(3692), [sym_html_comment] = ACTIONS(5), }, - [1435] = { - [sym_comment] = STATE(1435), - [sym_identifier] = ACTIONS(3646), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_default] = ACTIONS(3646), - [anon_sym_type] = ACTIONS(3646), - [anon_sym_namespace] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(3646), - [anon_sym_typeof] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_from] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_const] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_LPAREN] = ACTIONS(3646), - [anon_sym_await] = ACTIONS(3646), - [anon_sym_of] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym_case] = ACTIONS(3646), - [anon_sym_yield] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3646), - [anon_sym_LTtemplate_GT] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_class] = ACTIONS(3646), - [anon_sym_async] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_using] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_LT] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_void] = ACTIONS(3646), - [anon_sym_delete] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3646), - [sym_number] = ACTIONS(3646), - [sym_private_property_identifier] = ACTIONS(3646), - [sym_this] = ACTIONS(3646), - [sym_super] = ACTIONS(3646), - [sym_true] = ACTIONS(3646), - [sym_false] = ACTIONS(3646), - [sym_null] = ACTIONS(3646), - [sym_undefined] = ACTIONS(3646), - [anon_sym_AT] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_readonly] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_declare] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_protected] = ACTIONS(3646), - [anon_sym_override] = ACTIONS(3646), - [anon_sym_module] = ACTIONS(3646), - [anon_sym_any] = ACTIONS(3646), - [anon_sym_number] = ACTIONS(3646), - [anon_sym_boolean] = ACTIONS(3646), - [anon_sym_string] = ACTIONS(3646), - [anon_sym_symbol] = ACTIONS(3646), - [anon_sym_object] = ACTIONS(3646), - [anon_sym_property] = ACTIONS(3646), - [anon_sym_signal] = ACTIONS(3646), - [anon_sym_on] = ACTIONS(3646), - [anon_sym_required] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_enum] = ACTIONS(3646), + [1421] = { + [sym_comment] = STATE(1421), + [sym_identifier] = ACTIONS(3442), + [anon_sym_export] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3442), + [anon_sym_RBRACE] = ACTIONS(3442), + [anon_sym_typeof] = ACTIONS(3442), + [anon_sym_import] = ACTIONS(3442), + [anon_sym_from] = ACTIONS(3442), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_var] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3442), + [anon_sym_await] = ACTIONS(3442), + [anon_sym_of] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_debugger] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_SEMI] = ACTIONS(3442), + [anon_sym_finally] = ACTIONS(3442), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_LTtemplate_GT] = ACTIONS(3442), + [anon_sym_DQUOTE] = ACTIONS(3442), + [anon_sym_SQUOTE] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_async] = ACTIONS(3442), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_using] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_SLASH] = ACTIONS(3442), + [anon_sym_LT] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_void] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3442), + [anon_sym_DASH_DASH] = ACTIONS(3442), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3442), + [sym_number] = ACTIONS(3442), + [sym_private_property_identifier] = ACTIONS(3442), + [sym_this] = ACTIONS(3442), + [sym_super] = ACTIONS(3442), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [sym_null] = ACTIONS(3442), + [sym_undefined] = ACTIONS(3442), + [anon_sym_AT] = ACTIONS(3442), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_readonly] = ACTIONS(3442), + [anon_sym_get] = ACTIONS(3442), + [anon_sym_set] = ACTIONS(3442), + [anon_sym_declare] = ACTIONS(3442), + [anon_sym_public] = ACTIONS(3442), + [anon_sym_private] = ACTIONS(3442), + [anon_sym_protected] = ACTIONS(3442), + [anon_sym_override] = ACTIONS(3442), + [anon_sym_module] = ACTIONS(3442), + [anon_sym_any] = ACTIONS(3442), + [anon_sym_number] = ACTIONS(3442), + [anon_sym_boolean] = ACTIONS(3442), + [anon_sym_string] = ACTIONS(3442), + [anon_sym_symbol] = ACTIONS(3442), + [anon_sym_object] = ACTIONS(3442), + [anon_sym_property] = ACTIONS(3442), + [anon_sym_signal] = ACTIONS(3442), + [anon_sym_on] = ACTIONS(3442), + [anon_sym_required] = ACTIONS(3442), + [anon_sym_component] = ACTIONS(3442), + [anon_sym_abstract] = ACTIONS(3442), + [anon_sym_interface] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), [sym_html_comment] = ACTIONS(5), }, - [1436] = { - [sym_comment] = STATE(1436), - [sym_identifier] = ACTIONS(3644), - [anon_sym_export] = ACTIONS(3644), - [anon_sym_default] = ACTIONS(3644), - [anon_sym_type] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3644), - [anon_sym_RBRACE] = ACTIONS(3644), - [anon_sym_typeof] = ACTIONS(3644), - [anon_sym_import] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3644), - [anon_sym_with] = ACTIONS(3644), - [anon_sym_var] = ACTIONS(3644), - [anon_sym_let] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_LPAREN] = ACTIONS(3644), - [anon_sym_await] = ACTIONS(3644), - [anon_sym_of] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_debugger] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym_case] = ACTIONS(3644), - [anon_sym_yield] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_LTtemplate_GT] = ACTIONS(3644), - [anon_sym_DQUOTE] = ACTIONS(3644), - [anon_sym_SQUOTE] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_async] = ACTIONS(3644), - [anon_sym_function] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(3644), - [anon_sym_void] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3644), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3644), - [sym_number] = ACTIONS(3644), - [sym_private_property_identifier] = ACTIONS(3644), - [sym_this] = ACTIONS(3644), - [sym_super] = ACTIONS(3644), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [sym_null] = ACTIONS(3644), - [sym_undefined] = ACTIONS(3644), - [anon_sym_AT] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_readonly] = ACTIONS(3644), - [anon_sym_get] = ACTIONS(3644), - [anon_sym_set] = ACTIONS(3644), - [anon_sym_declare] = ACTIONS(3644), - [anon_sym_public] = ACTIONS(3644), - [anon_sym_private] = ACTIONS(3644), - [anon_sym_protected] = ACTIONS(3644), - [anon_sym_override] = ACTIONS(3644), - [anon_sym_module] = ACTIONS(3644), - [anon_sym_any] = ACTIONS(3644), - [anon_sym_number] = ACTIONS(3644), - [anon_sym_boolean] = ACTIONS(3644), - [anon_sym_string] = ACTIONS(3644), - [anon_sym_symbol] = ACTIONS(3644), - [anon_sym_object] = ACTIONS(3644), - [anon_sym_property] = ACTIONS(3644), - [anon_sym_signal] = ACTIONS(3644), - [anon_sym_on] = ACTIONS(3644), - [anon_sym_required] = ACTIONS(3644), - [anon_sym_component] = ACTIONS(3644), - [anon_sym_abstract] = ACTIONS(3644), - [anon_sym_interface] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), + [1422] = { + [sym_comment] = STATE(1422), + [sym_identifier] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_type] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_typeof] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_from] = ACTIONS(3670), + [anon_sym_with] = ACTIONS(3670), + [anon_sym_var] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_else] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_await] = ACTIONS(3670), + [anon_sym_of] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_debugger] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LTtemplate_GT] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_async] = ACTIONS(3670), + [anon_sym_function] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_void] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3670), + [sym_number] = ACTIONS(3670), + [sym_private_property_identifier] = ACTIONS(3670), + [sym_this] = ACTIONS(3670), + [sym_super] = ACTIONS(3670), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [sym_null] = ACTIONS(3670), + [sym_undefined] = ACTIONS(3670), + [anon_sym_AT] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_readonly] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(3670), + [anon_sym_set] = ACTIONS(3670), + [anon_sym_declare] = ACTIONS(3670), + [anon_sym_public] = ACTIONS(3670), + [anon_sym_private] = ACTIONS(3670), + [anon_sym_protected] = ACTIONS(3670), + [anon_sym_override] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_any] = ACTIONS(3670), + [anon_sym_number] = ACTIONS(3670), + [anon_sym_boolean] = ACTIONS(3670), + [anon_sym_string] = ACTIONS(3670), + [anon_sym_symbol] = ACTIONS(3670), + [anon_sym_object] = ACTIONS(3670), + [anon_sym_property] = ACTIONS(3670), + [anon_sym_signal] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3670), + [anon_sym_required] = ACTIONS(3670), + [anon_sym_component] = ACTIONS(3670), + [anon_sym_abstract] = ACTIONS(3670), + [anon_sym_interface] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), [sym_html_comment] = ACTIONS(5), }, - [1437] = { - [sym_comment] = STATE(1437), - [sym_identifier] = ACTIONS(3642), - [anon_sym_export] = ACTIONS(3642), - [anon_sym_default] = ACTIONS(3642), - [anon_sym_type] = ACTIONS(3642), - [anon_sym_namespace] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_typeof] = ACTIONS(3642), - [anon_sym_import] = ACTIONS(3642), - [anon_sym_from] = ACTIONS(3642), - [anon_sym_with] = ACTIONS(3642), - [anon_sym_var] = ACTIONS(3642), - [anon_sym_let] = ACTIONS(3642), - [anon_sym_const] = ACTIONS(3642), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_if] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_for] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_await] = ACTIONS(3642), - [anon_sym_of] = ACTIONS(3642), - [anon_sym_while] = ACTIONS(3642), - [anon_sym_do] = ACTIONS(3642), - [anon_sym_try] = ACTIONS(3642), - [anon_sym_break] = ACTIONS(3642), - [anon_sym_continue] = ACTIONS(3642), - [anon_sym_debugger] = ACTIONS(3642), - [anon_sym_return] = ACTIONS(3642), - [anon_sym_throw] = ACTIONS(3642), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_case] = ACTIONS(3642), - [anon_sym_yield] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_LTtemplate_GT] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(3642), - [anon_sym_SQUOTE] = ACTIONS(3642), - [anon_sym_class] = ACTIONS(3642), - [anon_sym_async] = ACTIONS(3642), - [anon_sym_function] = ACTIONS(3642), - [anon_sym_new] = ACTIONS(3642), - [anon_sym_using] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_SLASH] = ACTIONS(3642), - [anon_sym_LT] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_void] = ACTIONS(3642), - [anon_sym_delete] = ACTIONS(3642), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), + [1423] = { + [sym_comment] = STATE(1423), + [sym_identifier] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_type] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_typeof] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_from] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3544), + [anon_sym_var] = ACTIONS(3544), + [anon_sym_let] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_else] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_await] = ACTIONS(3544), + [anon_sym_of] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_debugger] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_LTtemplate_GT] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_async] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_void] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3544), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3642), - [sym_number] = ACTIONS(3642), - [sym_private_property_identifier] = ACTIONS(3642), - [sym_this] = ACTIONS(3642), - [sym_super] = ACTIONS(3642), - [sym_true] = ACTIONS(3642), - [sym_false] = ACTIONS(3642), - [sym_null] = ACTIONS(3642), - [sym_undefined] = ACTIONS(3642), - [anon_sym_AT] = ACTIONS(3642), - [anon_sym_static] = ACTIONS(3642), - [anon_sym_readonly] = ACTIONS(3642), - [anon_sym_get] = ACTIONS(3642), - [anon_sym_set] = ACTIONS(3642), - [anon_sym_declare] = ACTIONS(3642), - [anon_sym_public] = ACTIONS(3642), - [anon_sym_private] = ACTIONS(3642), - [anon_sym_protected] = ACTIONS(3642), - [anon_sym_override] = ACTIONS(3642), - [anon_sym_module] = ACTIONS(3642), - [anon_sym_any] = ACTIONS(3642), - [anon_sym_number] = ACTIONS(3642), - [anon_sym_boolean] = ACTIONS(3642), - [anon_sym_string] = ACTIONS(3642), - [anon_sym_symbol] = ACTIONS(3642), - [anon_sym_object] = ACTIONS(3642), - [anon_sym_property] = ACTIONS(3642), - [anon_sym_signal] = ACTIONS(3642), - [anon_sym_on] = ACTIONS(3642), - [anon_sym_required] = ACTIONS(3642), - [anon_sym_component] = ACTIONS(3642), - [anon_sym_abstract] = ACTIONS(3642), - [anon_sym_interface] = ACTIONS(3642), - [anon_sym_enum] = ACTIONS(3642), + [anon_sym_BQUOTE] = ACTIONS(3544), + [sym_number] = ACTIONS(3544), + [sym_private_property_identifier] = ACTIONS(3544), + [sym_this] = ACTIONS(3544), + [sym_super] = ACTIONS(3544), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [sym_null] = ACTIONS(3544), + [sym_undefined] = ACTIONS(3544), + [anon_sym_AT] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_readonly] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3544), + [anon_sym_declare] = ACTIONS(3544), + [anon_sym_public] = ACTIONS(3544), + [anon_sym_private] = ACTIONS(3544), + [anon_sym_protected] = ACTIONS(3544), + [anon_sym_override] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_any] = ACTIONS(3544), + [anon_sym_number] = ACTIONS(3544), + [anon_sym_boolean] = ACTIONS(3544), + [anon_sym_string] = ACTIONS(3544), + [anon_sym_symbol] = ACTIONS(3544), + [anon_sym_object] = ACTIONS(3544), + [anon_sym_property] = ACTIONS(3544), + [anon_sym_signal] = ACTIONS(3544), + [anon_sym_on] = ACTIONS(3544), + [anon_sym_required] = ACTIONS(3544), + [anon_sym_component] = ACTIONS(3544), + [anon_sym_abstract] = ACTIONS(3544), + [anon_sym_interface] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), [sym_html_comment] = ACTIONS(5), }, - [1438] = { - [sym_comment] = STATE(1438), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1424] = { + [sym_comment] = STATE(1424), + [sym_identifier] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_type] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3542), + [anon_sym_typeof] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_from] = ACTIONS(3542), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_var] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_else] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_await] = ACTIONS(3542), + [anon_sym_of] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_debugger] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LTtemplate_GT] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_async] = ACTIONS(3542), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_void] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3542), + [sym_number] = ACTIONS(3542), + [sym_private_property_identifier] = ACTIONS(3542), + [sym_this] = ACTIONS(3542), + [sym_super] = ACTIONS(3542), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [sym_null] = ACTIONS(3542), + [sym_undefined] = ACTIONS(3542), + [anon_sym_AT] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_readonly] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(3542), + [anon_sym_set] = ACTIONS(3542), + [anon_sym_declare] = ACTIONS(3542), + [anon_sym_public] = ACTIONS(3542), + [anon_sym_private] = ACTIONS(3542), + [anon_sym_protected] = ACTIONS(3542), + [anon_sym_override] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_any] = ACTIONS(3542), + [anon_sym_number] = ACTIONS(3542), + [anon_sym_boolean] = ACTIONS(3542), + [anon_sym_string] = ACTIONS(3542), + [anon_sym_symbol] = ACTIONS(3542), + [anon_sym_object] = ACTIONS(3542), + [anon_sym_property] = ACTIONS(3542), + [anon_sym_signal] = ACTIONS(3542), + [anon_sym_on] = ACTIONS(3542), + [anon_sym_required] = ACTIONS(3542), + [anon_sym_component] = ACTIONS(3542), + [anon_sym_abstract] = ACTIONS(3542), + [anon_sym_interface] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), [sym_html_comment] = ACTIONS(5), }, - [1439] = { - [sym_comment] = STATE(1439), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1425] = { + [sym_comment] = STATE(1425), + [sym_identifier] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_type] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_typeof] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_from] = ACTIONS(3540), + [anon_sym_with] = ACTIONS(3540), + [anon_sym_var] = ACTIONS(3540), + [anon_sym_let] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_else] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3540), + [anon_sym_await] = ACTIONS(3540), + [anon_sym_of] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_debugger] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym_yield] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LTtemplate_GT] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_async] = ACTIONS(3540), + [anon_sym_function] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_SLASH] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_void] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3540), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3540), + [sym_number] = ACTIONS(3540), + [sym_private_property_identifier] = ACTIONS(3540), + [sym_this] = ACTIONS(3540), + [sym_super] = ACTIONS(3540), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [sym_null] = ACTIONS(3540), + [sym_undefined] = ACTIONS(3540), + [anon_sym_AT] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_readonly] = ACTIONS(3540), + [anon_sym_get] = ACTIONS(3540), + [anon_sym_set] = ACTIONS(3540), + [anon_sym_declare] = ACTIONS(3540), + [anon_sym_public] = ACTIONS(3540), + [anon_sym_private] = ACTIONS(3540), + [anon_sym_protected] = ACTIONS(3540), + [anon_sym_override] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_any] = ACTIONS(3540), + [anon_sym_number] = ACTIONS(3540), + [anon_sym_boolean] = ACTIONS(3540), + [anon_sym_string] = ACTIONS(3540), + [anon_sym_symbol] = ACTIONS(3540), + [anon_sym_object] = ACTIONS(3540), + [anon_sym_property] = ACTIONS(3540), + [anon_sym_signal] = ACTIONS(3540), + [anon_sym_on] = ACTIONS(3540), + [anon_sym_required] = ACTIONS(3540), + [anon_sym_component] = ACTIONS(3540), + [anon_sym_abstract] = ACTIONS(3540), + [anon_sym_interface] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), [sym_html_comment] = ACTIONS(5), }, - [1440] = { - [sym_comment] = STATE(1440), - [sym_identifier] = ACTIONS(3638), - [anon_sym_export] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_type] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_typeof] = ACTIONS(3638), - [anon_sym_import] = ACTIONS(3638), - [anon_sym_from] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3638), - [anon_sym_var] = ACTIONS(3638), - [anon_sym_let] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_await] = ACTIONS(3638), - [anon_sym_of] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_debugger] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_yield] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LTtemplate_GT] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(3638), - [anon_sym_SQUOTE] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_async] = ACTIONS(3638), - [anon_sym_function] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_SLASH] = ACTIONS(3638), - [anon_sym_LT] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_void] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), + [1426] = { + [sym_comment] = STATE(1426), + [sym_identifier] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_type] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_typeof] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_from] = ACTIONS(3538), + [anon_sym_with] = ACTIONS(3538), + [anon_sym_var] = ACTIONS(3538), + [anon_sym_let] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_else] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_await] = ACTIONS(3538), + [anon_sym_of] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_debugger] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_yield] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_LTtemplate_GT] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_async] = ACTIONS(3538), + [anon_sym_function] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_SLASH] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_void] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3638), - [sym_number] = ACTIONS(3638), - [sym_private_property_identifier] = ACTIONS(3638), - [sym_this] = ACTIONS(3638), - [sym_super] = ACTIONS(3638), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [sym_null] = ACTIONS(3638), - [sym_undefined] = ACTIONS(3638), - [anon_sym_AT] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_readonly] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(3638), - [anon_sym_set] = ACTIONS(3638), - [anon_sym_declare] = ACTIONS(3638), - [anon_sym_public] = ACTIONS(3638), - [anon_sym_private] = ACTIONS(3638), - [anon_sym_protected] = ACTIONS(3638), - [anon_sym_override] = ACTIONS(3638), - [anon_sym_module] = ACTIONS(3638), - [anon_sym_any] = ACTIONS(3638), - [anon_sym_number] = ACTIONS(3638), - [anon_sym_boolean] = ACTIONS(3638), - [anon_sym_string] = ACTIONS(3638), - [anon_sym_symbol] = ACTIONS(3638), - [anon_sym_object] = ACTIONS(3638), - [anon_sym_property] = ACTIONS(3638), - [anon_sym_signal] = ACTIONS(3638), - [anon_sym_on] = ACTIONS(3638), - [anon_sym_required] = ACTIONS(3638), - [anon_sym_component] = ACTIONS(3638), - [anon_sym_abstract] = ACTIONS(3638), - [anon_sym_interface] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), + [anon_sym_BQUOTE] = ACTIONS(3538), + [sym_number] = ACTIONS(3538), + [sym_private_property_identifier] = ACTIONS(3538), + [sym_this] = ACTIONS(3538), + [sym_super] = ACTIONS(3538), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [sym_null] = ACTIONS(3538), + [sym_undefined] = ACTIONS(3538), + [anon_sym_AT] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_readonly] = ACTIONS(3538), + [anon_sym_get] = ACTIONS(3538), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_declare] = ACTIONS(3538), + [anon_sym_public] = ACTIONS(3538), + [anon_sym_private] = ACTIONS(3538), + [anon_sym_protected] = ACTIONS(3538), + [anon_sym_override] = ACTIONS(3538), + [anon_sym_module] = ACTIONS(3538), + [anon_sym_any] = ACTIONS(3538), + [anon_sym_number] = ACTIONS(3538), + [anon_sym_boolean] = ACTIONS(3538), + [anon_sym_string] = ACTIONS(3538), + [anon_sym_symbol] = ACTIONS(3538), + [anon_sym_object] = ACTIONS(3538), + [anon_sym_property] = ACTIONS(3538), + [anon_sym_signal] = ACTIONS(3538), + [anon_sym_on] = ACTIONS(3538), + [anon_sym_required] = ACTIONS(3538), + [anon_sym_component] = ACTIONS(3538), + [anon_sym_abstract] = ACTIONS(3538), + [anon_sym_interface] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), [sym_html_comment] = ACTIONS(5), }, - [1441] = { - [sym_comment] = STATE(1441), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1427] = { + [sym_comment] = STATE(1427), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3734), [sym_html_comment] = ACTIONS(5), }, - [1442] = { - [sym_comment] = STATE(1442), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1428] = { + [sym_comment] = STATE(1428), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1443] = { - [sym_comment] = STATE(1443), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1429] = { + [sym_comment] = STATE(1429), + [sym_identifier] = ACTIONS(3536), + [anon_sym_export] = ACTIONS(3536), + [anon_sym_type] = ACTIONS(3536), + [anon_sym_namespace] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_typeof] = ACTIONS(3536), + [anon_sym_import] = ACTIONS(3536), + [anon_sym_from] = ACTIONS(3536), + [anon_sym_with] = ACTIONS(3536), + [anon_sym_var] = ACTIONS(3536), + [anon_sym_let] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_else] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(3536), + [anon_sym_await] = ACTIONS(3536), + [anon_sym_of] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_try] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_debugger] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_throw] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym_yield] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LTtemplate_GT] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3536), + [anon_sym_async] = ACTIONS(3536), + [anon_sym_function] = ACTIONS(3536), + [anon_sym_new] = ACTIONS(3536), + [anon_sym_using] = ACTIONS(3536), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_void] = ACTIONS(3536), + [anon_sym_delete] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_DASH_DASH] = ACTIONS(3536), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3536), + [sym_number] = ACTIONS(3536), + [sym_private_property_identifier] = ACTIONS(3536), + [sym_this] = ACTIONS(3536), + [sym_super] = ACTIONS(3536), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_undefined] = ACTIONS(3536), + [anon_sym_AT] = ACTIONS(3536), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_readonly] = ACTIONS(3536), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3536), + [anon_sym_declare] = ACTIONS(3536), + [anon_sym_public] = ACTIONS(3536), + [anon_sym_private] = ACTIONS(3536), + [anon_sym_protected] = ACTIONS(3536), + [anon_sym_override] = ACTIONS(3536), + [anon_sym_module] = ACTIONS(3536), + [anon_sym_any] = ACTIONS(3536), + [anon_sym_number] = ACTIONS(3536), + [anon_sym_boolean] = ACTIONS(3536), + [anon_sym_string] = ACTIONS(3536), + [anon_sym_symbol] = ACTIONS(3536), + [anon_sym_object] = ACTIONS(3536), + [anon_sym_property] = ACTIONS(3536), + [anon_sym_signal] = ACTIONS(3536), + [anon_sym_on] = ACTIONS(3536), + [anon_sym_required] = ACTIONS(3536), + [anon_sym_component] = ACTIONS(3536), + [anon_sym_abstract] = ACTIONS(3536), + [anon_sym_interface] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), [sym_html_comment] = ACTIONS(5), }, - [1444] = { - [sym_comment] = STATE(1444), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_default] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_typeof] = ACTIONS(2474), - [anon_sym_import] = ACTIONS(2474), - [anon_sym_from] = ACTIONS(2474), - [anon_sym_with] = ACTIONS(2474), - [anon_sym_var] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_await] = ACTIONS(2474), - [anon_sym_of] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_debugger] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_case] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LTtemplate_GT] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_class] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_TILDE] = ACTIONS(2474), - [anon_sym_void] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), + [1430] = { + [sym_comment] = STATE(1430), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2474), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_undefined] = ACTIONS(2474), - [anon_sym_AT] = ACTIONS(2474), - [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_property] = ACTIONS(2474), - [anon_sym_signal] = ACTIONS(2474), - [anon_sym_on] = ACTIONS(2474), - [anon_sym_required] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_interface] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1445] = { - [sym_comment] = STATE(1445), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1431] = { + [sym_comment] = STATE(1431), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_else] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1446] = { - [sym_comment] = STATE(1446), - [sym_identifier] = ACTIONS(3660), - [anon_sym_export] = ACTIONS(3660), - [anon_sym_default] = ACTIONS(3660), - [anon_sym_type] = ACTIONS(3660), - [anon_sym_namespace] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_import] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_with] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_for] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_await] = ACTIONS(3660), - [anon_sym_of] = ACTIONS(3660), - [anon_sym_while] = ACTIONS(3660), - [anon_sym_do] = ACTIONS(3660), - [anon_sym_try] = ACTIONS(3660), - [anon_sym_break] = ACTIONS(3660), - [anon_sym_continue] = ACTIONS(3660), - [anon_sym_debugger] = ACTIONS(3660), - [anon_sym_return] = ACTIONS(3660), - [anon_sym_throw] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_case] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_LTtemplate_GT] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_class] = ACTIONS(3660), - [anon_sym_async] = ACTIONS(3660), - [anon_sym_function] = ACTIONS(3660), - [anon_sym_new] = ACTIONS(3660), - [anon_sym_using] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_void] = ACTIONS(3660), - [anon_sym_delete] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3660), + [1432] = { + [sym_comment] = STATE(1432), + [sym_identifier] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_type] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_typeof] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_from] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3590), + [anon_sym_var] = ACTIONS(3590), + [anon_sym_let] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_else] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_await] = ACTIONS(3590), + [anon_sym_of] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_debugger] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_LTtemplate_GT] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_async] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_SLASH] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_void] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3660), - [sym_number] = ACTIONS(3660), - [sym_private_property_identifier] = ACTIONS(3660), - [sym_this] = ACTIONS(3660), - [sym_super] = ACTIONS(3660), - [sym_true] = ACTIONS(3660), - [sym_false] = ACTIONS(3660), - [sym_null] = ACTIONS(3660), - [sym_undefined] = ACTIONS(3660), - [anon_sym_AT] = ACTIONS(3660), - [anon_sym_static] = ACTIONS(3660), - [anon_sym_readonly] = ACTIONS(3660), - [anon_sym_get] = ACTIONS(3660), - [anon_sym_set] = ACTIONS(3660), - [anon_sym_declare] = ACTIONS(3660), - [anon_sym_public] = ACTIONS(3660), - [anon_sym_private] = ACTIONS(3660), - [anon_sym_protected] = ACTIONS(3660), - [anon_sym_override] = ACTIONS(3660), - [anon_sym_module] = ACTIONS(3660), - [anon_sym_any] = ACTIONS(3660), - [anon_sym_number] = ACTIONS(3660), - [anon_sym_boolean] = ACTIONS(3660), - [anon_sym_string] = ACTIONS(3660), - [anon_sym_symbol] = ACTIONS(3660), - [anon_sym_object] = ACTIONS(3660), - [anon_sym_property] = ACTIONS(3660), - [anon_sym_signal] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_required] = ACTIONS(3660), - [anon_sym_component] = ACTIONS(3660), - [anon_sym_abstract] = ACTIONS(3660), - [anon_sym_interface] = ACTIONS(3660), - [anon_sym_enum] = ACTIONS(3660), + [anon_sym_BQUOTE] = ACTIONS(3590), + [sym_number] = ACTIONS(3590), + [sym_private_property_identifier] = ACTIONS(3590), + [sym_this] = ACTIONS(3590), + [sym_super] = ACTIONS(3590), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [sym_null] = ACTIONS(3590), + [sym_undefined] = ACTIONS(3590), + [anon_sym_AT] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_readonly] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(3590), + [anon_sym_set] = ACTIONS(3590), + [anon_sym_declare] = ACTIONS(3590), + [anon_sym_public] = ACTIONS(3590), + [anon_sym_private] = ACTIONS(3590), + [anon_sym_protected] = ACTIONS(3590), + [anon_sym_override] = ACTIONS(3590), + [anon_sym_module] = ACTIONS(3590), + [anon_sym_any] = ACTIONS(3590), + [anon_sym_number] = ACTIONS(3590), + [anon_sym_boolean] = ACTIONS(3590), + [anon_sym_string] = ACTIONS(3590), + [anon_sym_symbol] = ACTIONS(3590), + [anon_sym_object] = ACTIONS(3590), + [anon_sym_property] = ACTIONS(3590), + [anon_sym_signal] = ACTIONS(3590), + [anon_sym_on] = ACTIONS(3590), + [anon_sym_required] = ACTIONS(3590), + [anon_sym_component] = ACTIONS(3590), + [anon_sym_abstract] = ACTIONS(3590), + [anon_sym_interface] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), [sym_html_comment] = ACTIONS(5), }, - [1447] = { - [sym_comment] = STATE(1447), - [sym_identifier] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3648), - [anon_sym_default] = ACTIONS(3648), - [anon_sym_type] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_RBRACE] = ACTIONS(3648), - [anon_sym_typeof] = ACTIONS(3648), - [anon_sym_import] = ACTIONS(3648), - [anon_sym_from] = ACTIONS(3648), - [anon_sym_with] = ACTIONS(3648), - [anon_sym_var] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_await] = ACTIONS(3648), - [anon_sym_of] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_debugger] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_case] = ACTIONS(3648), - [anon_sym_yield] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_LTtemplate_GT] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_async] = ACTIONS(3648), - [anon_sym_function] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3648), - [anon_sym_LT] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [anon_sym_void] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), + [1433] = { + [sym_comment] = STATE(1433), + [sym_identifier] = ACTIONS(3546), + [anon_sym_export] = ACTIONS(3546), + [anon_sym_type] = ACTIONS(3546), + [anon_sym_namespace] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_typeof] = ACTIONS(3546), + [anon_sym_import] = ACTIONS(3546), + [anon_sym_from] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3546), + [anon_sym_var] = ACTIONS(3546), + [anon_sym_let] = ACTIONS(3546), + [anon_sym_const] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_else] = ACTIONS(3546), + [anon_sym_if] = ACTIONS(3546), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3546), + [anon_sym_await] = ACTIONS(3546), + [anon_sym_of] = ACTIONS(3546), + [anon_sym_while] = ACTIONS(3546), + [anon_sym_do] = ACTIONS(3546), + [anon_sym_try] = ACTIONS(3546), + [anon_sym_break] = ACTIONS(3546), + [anon_sym_continue] = ACTIONS(3546), + [anon_sym_debugger] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3546), + [anon_sym_throw] = ACTIONS(3546), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_LTtemplate_GT] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_class] = ACTIONS(3546), + [anon_sym_async] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3546), + [anon_sym_using] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_void] = ACTIONS(3546), + [anon_sym_delete] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3648), - [sym_number] = ACTIONS(3648), - [sym_private_property_identifier] = ACTIONS(3648), - [sym_this] = ACTIONS(3648), - [sym_super] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_null] = ACTIONS(3648), - [sym_undefined] = ACTIONS(3648), - [anon_sym_AT] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_readonly] = ACTIONS(3648), - [anon_sym_get] = ACTIONS(3648), - [anon_sym_set] = ACTIONS(3648), - [anon_sym_declare] = ACTIONS(3648), - [anon_sym_public] = ACTIONS(3648), - [anon_sym_private] = ACTIONS(3648), - [anon_sym_protected] = ACTIONS(3648), - [anon_sym_override] = ACTIONS(3648), - [anon_sym_module] = ACTIONS(3648), - [anon_sym_any] = ACTIONS(3648), - [anon_sym_number] = ACTIONS(3648), - [anon_sym_boolean] = ACTIONS(3648), - [anon_sym_string] = ACTIONS(3648), - [anon_sym_symbol] = ACTIONS(3648), - [anon_sym_object] = ACTIONS(3648), - [anon_sym_property] = ACTIONS(3648), - [anon_sym_signal] = ACTIONS(3648), - [anon_sym_on] = ACTIONS(3648), - [anon_sym_required] = ACTIONS(3648), - [anon_sym_component] = ACTIONS(3648), - [anon_sym_abstract] = ACTIONS(3648), - [anon_sym_interface] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), - [sym_html_comment] = ACTIONS(5), - }, - [1448] = { - [sym_comment] = STATE(1448), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), + [anon_sym_BQUOTE] = ACTIONS(3546), + [sym_number] = ACTIONS(3546), + [sym_private_property_identifier] = ACTIONS(3546), + [sym_this] = ACTIONS(3546), + [sym_super] = ACTIONS(3546), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_null] = ACTIONS(3546), + [sym_undefined] = ACTIONS(3546), + [anon_sym_AT] = ACTIONS(3546), + [anon_sym_static] = ACTIONS(3546), + [anon_sym_readonly] = ACTIONS(3546), + [anon_sym_get] = ACTIONS(3546), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_declare] = ACTIONS(3546), + [anon_sym_public] = ACTIONS(3546), + [anon_sym_private] = ACTIONS(3546), + [anon_sym_protected] = ACTIONS(3546), + [anon_sym_override] = ACTIONS(3546), + [anon_sym_module] = ACTIONS(3546), + [anon_sym_any] = ACTIONS(3546), + [anon_sym_number] = ACTIONS(3546), + [anon_sym_boolean] = ACTIONS(3546), + [anon_sym_string] = ACTIONS(3546), + [anon_sym_symbol] = ACTIONS(3546), + [anon_sym_object] = ACTIONS(3546), + [anon_sym_property] = ACTIONS(3546), + [anon_sym_signal] = ACTIONS(3546), + [anon_sym_on] = ACTIONS(3546), + [anon_sym_required] = ACTIONS(3546), + [anon_sym_component] = ACTIONS(3546), + [anon_sym_abstract] = ACTIONS(3546), + [anon_sym_interface] = ACTIONS(3546), + [anon_sym_enum] = ACTIONS(3546), [sym_html_comment] = ACTIONS(5), }, - [1449] = { - [sym_comment] = STATE(1449), - [sym_identifier] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_default] = ACTIONS(3654), - [anon_sym_type] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_with] = ACTIONS(3654), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_await] = ACTIONS(3654), - [anon_sym_of] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_debugger] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_case] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_LTtemplate_GT] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_async] = ACTIONS(3654), - [anon_sym_function] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_void] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3654), + [1434] = { + [sym_comment] = STATE(1434), + [sym_identifier] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_typeof] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_await] = ACTIONS(3678), + [anon_sym_of] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_debugger] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LTtemplate_GT] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_async] = ACTIONS(3678), + [anon_sym_function] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_void] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3654), - [sym_number] = ACTIONS(3654), - [sym_private_property_identifier] = ACTIONS(3654), - [sym_this] = ACTIONS(3654), - [sym_super] = ACTIONS(3654), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [sym_null] = ACTIONS(3654), - [sym_undefined] = ACTIONS(3654), - [anon_sym_AT] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_readonly] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(3654), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_declare] = ACTIONS(3654), - [anon_sym_public] = ACTIONS(3654), - [anon_sym_private] = ACTIONS(3654), - [anon_sym_protected] = ACTIONS(3654), - [anon_sym_override] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_any] = ACTIONS(3654), - [anon_sym_number] = ACTIONS(3654), - [anon_sym_boolean] = ACTIONS(3654), - [anon_sym_string] = ACTIONS(3654), - [anon_sym_symbol] = ACTIONS(3654), - [anon_sym_object] = ACTIONS(3654), - [anon_sym_property] = ACTIONS(3654), - [anon_sym_signal] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_required] = ACTIONS(3654), - [anon_sym_component] = ACTIONS(3654), - [anon_sym_abstract] = ACTIONS(3654), - [anon_sym_interface] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3678), + [sym_number] = ACTIONS(3678), + [sym_private_property_identifier] = ACTIONS(3678), + [sym_this] = ACTIONS(3678), + [sym_super] = ACTIONS(3678), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_AT] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(3678), + [anon_sym_set] = ACTIONS(3678), + [anon_sym_declare] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_override] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_any] = ACTIONS(3678), + [anon_sym_number] = ACTIONS(3678), + [anon_sym_boolean] = ACTIONS(3678), + [anon_sym_string] = ACTIONS(3678), + [anon_sym_symbol] = ACTIONS(3678), + [anon_sym_object] = ACTIONS(3678), + [anon_sym_property] = ACTIONS(3678), + [anon_sym_signal] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_required] = ACTIONS(3678), + [anon_sym_component] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_interface] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), [sym_html_comment] = ACTIONS(5), }, - [1450] = { - [sym_comment] = STATE(1450), - [sym_identifier] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_default] = ACTIONS(3654), - [anon_sym_type] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_with] = ACTIONS(3654), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_await] = ACTIONS(3654), - [anon_sym_of] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_debugger] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_case] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_LTtemplate_GT] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_async] = ACTIONS(3654), - [anon_sym_function] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_void] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3654), + [1435] = { + [sym_comment] = STATE(1435), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3654), - [sym_number] = ACTIONS(3654), - [sym_private_property_identifier] = ACTIONS(3654), - [sym_this] = ACTIONS(3654), - [sym_super] = ACTIONS(3654), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [sym_null] = ACTIONS(3654), - [sym_undefined] = ACTIONS(3654), - [anon_sym_AT] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_readonly] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(3654), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_declare] = ACTIONS(3654), - [anon_sym_public] = ACTIONS(3654), - [anon_sym_private] = ACTIONS(3654), - [anon_sym_protected] = ACTIONS(3654), - [anon_sym_override] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_any] = ACTIONS(3654), - [anon_sym_number] = ACTIONS(3654), - [anon_sym_boolean] = ACTIONS(3654), - [anon_sym_string] = ACTIONS(3654), - [anon_sym_symbol] = ACTIONS(3654), - [anon_sym_object] = ACTIONS(3654), - [anon_sym_property] = ACTIONS(3654), - [anon_sym_signal] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_required] = ACTIONS(3654), - [anon_sym_component] = ACTIONS(3654), - [anon_sym_abstract] = ACTIONS(3654), - [anon_sym_interface] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), [sym_html_comment] = ACTIONS(5), }, - [1451] = { - [sym_comment] = STATE(1451), - [sym_identifier] = ACTIONS(3658), - [anon_sym_export] = ACTIONS(3658), - [anon_sym_default] = ACTIONS(3658), - [anon_sym_type] = ACTIONS(3658), - [anon_sym_namespace] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_RBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3658), - [anon_sym_import] = ACTIONS(3658), - [anon_sym_from] = ACTIONS(3658), - [anon_sym_with] = ACTIONS(3658), - [anon_sym_var] = ACTIONS(3658), - [anon_sym_let] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_if] = ACTIONS(3658), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_for] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_await] = ACTIONS(3658), - [anon_sym_of] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_try] = ACTIONS(3658), - [anon_sym_break] = ACTIONS(3658), - [anon_sym_continue] = ACTIONS(3658), - [anon_sym_debugger] = ACTIONS(3658), - [anon_sym_return] = ACTIONS(3658), - [anon_sym_throw] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym_case] = ACTIONS(3658), - [anon_sym_yield] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_LTtemplate_GT] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [anon_sym_SQUOTE] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_async] = ACTIONS(3658), - [anon_sym_function] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_void] = ACTIONS(3658), - [anon_sym_delete] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3658), + [1436] = { + [sym_comment] = STATE(1436), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_else] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3658), - [sym_number] = ACTIONS(3658), - [sym_private_property_identifier] = ACTIONS(3658), - [sym_this] = ACTIONS(3658), - [sym_super] = ACTIONS(3658), - [sym_true] = ACTIONS(3658), - [sym_false] = ACTIONS(3658), - [sym_null] = ACTIONS(3658), - [sym_undefined] = ACTIONS(3658), - [anon_sym_AT] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_readonly] = ACTIONS(3658), - [anon_sym_get] = ACTIONS(3658), - [anon_sym_set] = ACTIONS(3658), - [anon_sym_declare] = ACTIONS(3658), - [anon_sym_public] = ACTIONS(3658), - [anon_sym_private] = ACTIONS(3658), - [anon_sym_protected] = ACTIONS(3658), - [anon_sym_override] = ACTIONS(3658), - [anon_sym_module] = ACTIONS(3658), - [anon_sym_any] = ACTIONS(3658), - [anon_sym_number] = ACTIONS(3658), - [anon_sym_boolean] = ACTIONS(3658), - [anon_sym_string] = ACTIONS(3658), - [anon_sym_symbol] = ACTIONS(3658), - [anon_sym_object] = ACTIONS(3658), - [anon_sym_property] = ACTIONS(3658), - [anon_sym_signal] = ACTIONS(3658), - [anon_sym_on] = ACTIONS(3658), - [anon_sym_required] = ACTIONS(3658), - [anon_sym_component] = ACTIONS(3658), - [anon_sym_abstract] = ACTIONS(3658), - [anon_sym_interface] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), [sym_html_comment] = ACTIONS(5), }, - [1452] = { - [sym_comment] = STATE(1452), - [sym_identifier] = ACTIONS(3668), - [anon_sym_export] = ACTIONS(3668), - [anon_sym_default] = ACTIONS(3668), - [anon_sym_type] = ACTIONS(3668), - [anon_sym_namespace] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_typeof] = ACTIONS(3668), - [anon_sym_import] = ACTIONS(3668), - [anon_sym_from] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [anon_sym_var] = ACTIONS(3668), - [anon_sym_let] = ACTIONS(3668), - [anon_sym_const] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3668), - [anon_sym_if] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_for] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_await] = ACTIONS(3668), - [anon_sym_of] = ACTIONS(3668), - [anon_sym_while] = ACTIONS(3668), - [anon_sym_do] = ACTIONS(3668), - [anon_sym_try] = ACTIONS(3668), - [anon_sym_break] = ACTIONS(3668), - [anon_sym_continue] = ACTIONS(3668), - [anon_sym_debugger] = ACTIONS(3668), - [anon_sym_return] = ACTIONS(3668), - [anon_sym_throw] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_case] = ACTIONS(3668), - [anon_sym_yield] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_LTtemplate_GT] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3668), - [anon_sym_class] = ACTIONS(3668), - [anon_sym_async] = ACTIONS(3668), - [anon_sym_function] = ACTIONS(3668), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_using] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_void] = ACTIONS(3668), - [anon_sym_delete] = ACTIONS(3668), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), + [1437] = { + [sym_comment] = STATE(1437), + [sym_identifier] = ACTIONS(3500), + [anon_sym_export] = ACTIONS(3500), + [anon_sym_type] = ACTIONS(3500), + [anon_sym_namespace] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_typeof] = ACTIONS(3500), + [anon_sym_import] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_with] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_else] = ACTIONS(3500), + [anon_sym_if] = ACTIONS(3500), + [anon_sym_switch] = ACTIONS(3500), + [anon_sym_for] = ACTIONS(3500), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_await] = ACTIONS(3500), + [anon_sym_of] = ACTIONS(3500), + [anon_sym_while] = ACTIONS(3500), + [anon_sym_do] = ACTIONS(3500), + [anon_sym_try] = ACTIONS(3500), + [anon_sym_break] = ACTIONS(3500), + [anon_sym_continue] = ACTIONS(3500), + [anon_sym_debugger] = ACTIONS(3500), + [anon_sym_return] = ACTIONS(3500), + [anon_sym_throw] = ACTIONS(3500), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_LTtemplate_GT] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_class] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_function] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_using] = ACTIONS(3500), + [anon_sym_PLUS] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_void] = ACTIONS(3500), + [anon_sym_delete] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_DASH_DASH] = ACTIONS(3500), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3668), - [sym_number] = ACTIONS(3668), - [sym_private_property_identifier] = ACTIONS(3668), - [sym_this] = ACTIONS(3668), - [sym_super] = ACTIONS(3668), - [sym_true] = ACTIONS(3668), - [sym_false] = ACTIONS(3668), - [sym_null] = ACTIONS(3668), - [sym_undefined] = ACTIONS(3668), - [anon_sym_AT] = ACTIONS(3668), - [anon_sym_static] = ACTIONS(3668), - [anon_sym_readonly] = ACTIONS(3668), - [anon_sym_get] = ACTIONS(3668), - [anon_sym_set] = ACTIONS(3668), - [anon_sym_declare] = ACTIONS(3668), - [anon_sym_public] = ACTIONS(3668), - [anon_sym_private] = ACTIONS(3668), - [anon_sym_protected] = ACTIONS(3668), - [anon_sym_override] = ACTIONS(3668), - [anon_sym_module] = ACTIONS(3668), - [anon_sym_any] = ACTIONS(3668), - [anon_sym_number] = ACTIONS(3668), - [anon_sym_boolean] = ACTIONS(3668), - [anon_sym_string] = ACTIONS(3668), - [anon_sym_symbol] = ACTIONS(3668), - [anon_sym_object] = ACTIONS(3668), - [anon_sym_property] = ACTIONS(3668), - [anon_sym_signal] = ACTIONS(3668), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_required] = ACTIONS(3668), - [anon_sym_component] = ACTIONS(3668), - [anon_sym_abstract] = ACTIONS(3668), - [anon_sym_interface] = ACTIONS(3668), - [anon_sym_enum] = ACTIONS(3668), + [anon_sym_BQUOTE] = ACTIONS(3500), + [sym_number] = ACTIONS(3500), + [sym_private_property_identifier] = ACTIONS(3500), + [sym_this] = ACTIONS(3500), + [sym_super] = ACTIONS(3500), + [sym_true] = ACTIONS(3500), + [sym_false] = ACTIONS(3500), + [sym_null] = ACTIONS(3500), + [sym_undefined] = ACTIONS(3500), + [anon_sym_AT] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3500), + [anon_sym_set] = ACTIONS(3500), + [anon_sym_declare] = ACTIONS(3500), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_module] = ACTIONS(3500), + [anon_sym_any] = ACTIONS(3500), + [anon_sym_number] = ACTIONS(3500), + [anon_sym_boolean] = ACTIONS(3500), + [anon_sym_string] = ACTIONS(3500), + [anon_sym_symbol] = ACTIONS(3500), + [anon_sym_object] = ACTIONS(3500), + [anon_sym_property] = ACTIONS(3500), + [anon_sym_signal] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_component] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_interface] = ACTIONS(3500), + [anon_sym_enum] = ACTIONS(3500), [sym_html_comment] = ACTIONS(5), }, - [1453] = { - [sym_comment] = STATE(1453), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1438] = { + [sym_comment] = STATE(1438), + [sym_identifier] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_typeof] = ACTIONS(2466), + [anon_sym_import] = ACTIONS(2466), + [anon_sym_from] = ACTIONS(2466), + [anon_sym_with] = ACTIONS(2466), + [anon_sym_var] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_const] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_if] = ACTIONS(2466), + [anon_sym_switch] = ACTIONS(2466), + [anon_sym_for] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_await] = ACTIONS(2466), + [anon_sym_of] = ACTIONS(2466), + [anon_sym_while] = ACTIONS(2466), + [anon_sym_do] = ACTIONS(2466), + [anon_sym_try] = ACTIONS(2466), + [anon_sym_break] = ACTIONS(2466), + [anon_sym_continue] = ACTIONS(2466), + [anon_sym_debugger] = ACTIONS(2466), + [anon_sym_return] = ACTIONS(2466), + [anon_sym_throw] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_yield] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_LTtemplate_GT] = ACTIONS(2466), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_DQUOTE] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2466), + [anon_sym_class] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2466), + [anon_sym_new] = ACTIONS(2466), + [anon_sym_using] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_TILDE] = ACTIONS(2466), + [anon_sym_void] = ACTIONS(2466), + [anon_sym_delete] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2466), + [sym_number] = ACTIONS(2466), + [sym_private_property_identifier] = ACTIONS(2466), + [sym_this] = ACTIONS(2466), + [sym_super] = ACTIONS(2466), + [sym_true] = ACTIONS(2466), + [sym_false] = ACTIONS(2466), + [sym_null] = ACTIONS(2466), + [sym_undefined] = ACTIONS(2466), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), + [anon_sym_property] = ACTIONS(2466), + [anon_sym_signal] = ACTIONS(2466), + [anon_sym_on] = ACTIONS(2466), + [anon_sym_required] = ACTIONS(2466), + [anon_sym_component] = ACTIONS(2466), + [anon_sym_abstract] = ACTIONS(2466), + [anon_sym_interface] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), [sym_html_comment] = ACTIONS(5), }, - [1454] = { - [sym_comment] = STATE(1454), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1439] = { + [sym_comment] = STATE(1439), + [sym_identifier] = ACTIONS(3444), + [anon_sym_export] = ACTIONS(3444), + [anon_sym_type] = ACTIONS(3444), + [anon_sym_namespace] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_typeof] = ACTIONS(3444), + [anon_sym_import] = ACTIONS(3444), + [anon_sym_from] = ACTIONS(3444), + [anon_sym_with] = ACTIONS(3444), + [anon_sym_var] = ACTIONS(3444), + [anon_sym_let] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_switch] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3444), + [anon_sym_await] = ACTIONS(3444), + [anon_sym_of] = ACTIONS(3444), + [anon_sym_while] = ACTIONS(3444), + [anon_sym_do] = ACTIONS(3444), + [anon_sym_try] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_debugger] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_throw] = ACTIONS(3444), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_finally] = ACTIONS(3444), + [anon_sym_yield] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_LTtemplate_GT] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [anon_sym_class] = ACTIONS(3444), + [anon_sym_async] = ACTIONS(3444), + [anon_sym_function] = ACTIONS(3444), + [anon_sym_new] = ACTIONS(3444), + [anon_sym_using] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_SLASH] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_void] = ACTIONS(3444), + [anon_sym_delete] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3444), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3444), + [sym_number] = ACTIONS(3444), + [sym_private_property_identifier] = ACTIONS(3444), + [sym_this] = ACTIONS(3444), + [sym_super] = ACTIONS(3444), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [sym_null] = ACTIONS(3444), + [sym_undefined] = ACTIONS(3444), + [anon_sym_AT] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3444), + [anon_sym_readonly] = ACTIONS(3444), + [anon_sym_get] = ACTIONS(3444), + [anon_sym_set] = ACTIONS(3444), + [anon_sym_declare] = ACTIONS(3444), + [anon_sym_public] = ACTIONS(3444), + [anon_sym_private] = ACTIONS(3444), + [anon_sym_protected] = ACTIONS(3444), + [anon_sym_override] = ACTIONS(3444), + [anon_sym_module] = ACTIONS(3444), + [anon_sym_any] = ACTIONS(3444), + [anon_sym_number] = ACTIONS(3444), + [anon_sym_boolean] = ACTIONS(3444), + [anon_sym_string] = ACTIONS(3444), + [anon_sym_symbol] = ACTIONS(3444), + [anon_sym_object] = ACTIONS(3444), + [anon_sym_property] = ACTIONS(3444), + [anon_sym_signal] = ACTIONS(3444), + [anon_sym_on] = ACTIONS(3444), + [anon_sym_required] = ACTIONS(3444), + [anon_sym_component] = ACTIONS(3444), + [anon_sym_abstract] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), [sym_html_comment] = ACTIONS(5), }, - [1455] = { - [sym_comment] = STATE(1455), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1440] = { + [sym_comment] = STATE(1440), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_typeof] = ACTIONS(2470), + [anon_sym_import] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_with] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_const] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_if] = ACTIONS(2470), + [anon_sym_switch] = ACTIONS(2470), + [anon_sym_for] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_await] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_while] = ACTIONS(2470), + [anon_sym_do] = ACTIONS(2470), + [anon_sym_try] = ACTIONS(2470), + [anon_sym_break] = ACTIONS(2470), + [anon_sym_continue] = ACTIONS(2470), + [anon_sym_debugger] = ACTIONS(2470), + [anon_sym_return] = ACTIONS(2470), + [anon_sym_throw] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_yield] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_DQUOTE] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2470), + [anon_sym_class] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2470), + [anon_sym_using] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_TILDE] = ACTIONS(2470), + [anon_sym_void] = ACTIONS(2470), + [anon_sym_delete] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [sym_number] = ACTIONS(2470), + [sym_private_property_identifier] = ACTIONS(2470), + [sym_this] = ACTIONS(2470), + [sym_super] = ACTIONS(2470), + [sym_true] = ACTIONS(2470), + [sym_false] = ACTIONS(2470), + [sym_null] = ACTIONS(2470), + [sym_undefined] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_abstract] = ACTIONS(2470), + [anon_sym_interface] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), [sym_html_comment] = ACTIONS(5), }, - [1456] = { - [sym_comment] = STATE(1456), - [sym_identifier] = ACTIONS(3474), - [anon_sym_export] = ACTIONS(3474), - [anon_sym_type] = ACTIONS(3474), - [anon_sym_namespace] = ACTIONS(3474), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_RBRACE] = ACTIONS(3474), - [anon_sym_typeof] = ACTIONS(3474), - [anon_sym_import] = ACTIONS(3474), - [anon_sym_from] = ACTIONS(3474), - [anon_sym_with] = ACTIONS(3474), - [anon_sym_var] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_const] = ACTIONS(3474), - [anon_sym_BANG] = ACTIONS(3474), - [anon_sym_else] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_switch] = ACTIONS(3474), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_await] = ACTIONS(3474), - [anon_sym_of] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_break] = ACTIONS(3474), - [anon_sym_continue] = ACTIONS(3474), - [anon_sym_debugger] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_throw] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_finally] = ACTIONS(3474), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LTtemplate_GT] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_SQUOTE] = ACTIONS(3474), - [anon_sym_class] = ACTIONS(3474), - [anon_sym_async] = ACTIONS(3474), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_using] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3474), - [anon_sym_LT] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_void] = ACTIONS(3474), - [anon_sym_delete] = ACTIONS(3474), - [anon_sym_PLUS_PLUS] = ACTIONS(3474), - [anon_sym_DASH_DASH] = ACTIONS(3474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3474), - [sym_number] = ACTIONS(3474), - [sym_private_property_identifier] = ACTIONS(3474), - [sym_this] = ACTIONS(3474), - [sym_super] = ACTIONS(3474), - [sym_true] = ACTIONS(3474), - [sym_false] = ACTIONS(3474), - [sym_null] = ACTIONS(3474), - [sym_undefined] = ACTIONS(3474), - [anon_sym_AT] = ACTIONS(3474), - [anon_sym_static] = ACTIONS(3474), - [anon_sym_readonly] = ACTIONS(3474), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3474), - [anon_sym_declare] = ACTIONS(3474), - [anon_sym_public] = ACTIONS(3474), - [anon_sym_private] = ACTIONS(3474), - [anon_sym_protected] = ACTIONS(3474), - [anon_sym_override] = ACTIONS(3474), - [anon_sym_module] = ACTIONS(3474), - [anon_sym_any] = ACTIONS(3474), - [anon_sym_number] = ACTIONS(3474), - [anon_sym_boolean] = ACTIONS(3474), - [anon_sym_string] = ACTIONS(3474), - [anon_sym_symbol] = ACTIONS(3474), - [anon_sym_object] = ACTIONS(3474), - [anon_sym_property] = ACTIONS(3474), - [anon_sym_signal] = ACTIONS(3474), - [anon_sym_on] = ACTIONS(3474), - [anon_sym_required] = ACTIONS(3474), - [anon_sym_component] = ACTIONS(3474), - [anon_sym_abstract] = ACTIONS(3474), - [anon_sym_interface] = ACTIONS(3474), - [anon_sym_enum] = ACTIONS(3474), + [1441] = { + [sym_comment] = STATE(1441), + [sym_identifier] = ACTIONS(3594), + [anon_sym_export] = ACTIONS(3594), + [anon_sym_type] = ACTIONS(3594), + [anon_sym_namespace] = ACTIONS(3594), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_typeof] = ACTIONS(3594), + [anon_sym_import] = ACTIONS(3594), + [anon_sym_from] = ACTIONS(3594), + [anon_sym_with] = ACTIONS(3594), + [anon_sym_var] = ACTIONS(3594), + [anon_sym_let] = ACTIONS(3594), + [anon_sym_const] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_else] = ACTIONS(3594), + [anon_sym_if] = ACTIONS(3594), + [anon_sym_switch] = ACTIONS(3594), + [anon_sym_for] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_await] = ACTIONS(3594), + [anon_sym_of] = ACTIONS(3594), + [anon_sym_while] = ACTIONS(3594), + [anon_sym_do] = ACTIONS(3594), + [anon_sym_try] = ACTIONS(3594), + [anon_sym_break] = ACTIONS(3594), + [anon_sym_continue] = ACTIONS(3594), + [anon_sym_debugger] = ACTIONS(3594), + [anon_sym_return] = ACTIONS(3594), + [anon_sym_throw] = ACTIONS(3594), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_yield] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LTtemplate_GT] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_class] = ACTIONS(3594), + [anon_sym_async] = ACTIONS(3594), + [anon_sym_function] = ACTIONS(3594), + [anon_sym_new] = ACTIONS(3594), + [anon_sym_using] = ACTIONS(3594), + [anon_sym_PLUS] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3594), + [anon_sym_SLASH] = ACTIONS(3594), + [anon_sym_LT] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_void] = ACTIONS(3594), + [anon_sym_delete] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3594), + [sym_number] = ACTIONS(3594), + [sym_private_property_identifier] = ACTIONS(3594), + [sym_this] = ACTIONS(3594), + [sym_super] = ACTIONS(3594), + [sym_true] = ACTIONS(3594), + [sym_false] = ACTIONS(3594), + [sym_null] = ACTIONS(3594), + [sym_undefined] = ACTIONS(3594), + [anon_sym_AT] = ACTIONS(3594), + [anon_sym_static] = ACTIONS(3594), + [anon_sym_readonly] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(3594), + [anon_sym_set] = ACTIONS(3594), + [anon_sym_declare] = ACTIONS(3594), + [anon_sym_public] = ACTIONS(3594), + [anon_sym_private] = ACTIONS(3594), + [anon_sym_protected] = ACTIONS(3594), + [anon_sym_override] = ACTIONS(3594), + [anon_sym_module] = ACTIONS(3594), + [anon_sym_any] = ACTIONS(3594), + [anon_sym_number] = ACTIONS(3594), + [anon_sym_boolean] = ACTIONS(3594), + [anon_sym_string] = ACTIONS(3594), + [anon_sym_symbol] = ACTIONS(3594), + [anon_sym_object] = ACTIONS(3594), + [anon_sym_property] = ACTIONS(3594), + [anon_sym_signal] = ACTIONS(3594), + [anon_sym_on] = ACTIONS(3594), + [anon_sym_required] = ACTIONS(3594), + [anon_sym_component] = ACTIONS(3594), + [anon_sym_abstract] = ACTIONS(3594), + [anon_sym_interface] = ACTIONS(3594), + [anon_sym_enum] = ACTIONS(3594), [sym_html_comment] = ACTIONS(5), }, - [1457] = { - [sym_comment] = STATE(1457), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_namespace] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_typeof] = ACTIONS(2438), - [anon_sym_import] = ACTIONS(2438), - [anon_sym_from] = ACTIONS(2438), - [anon_sym_with] = ACTIONS(2438), - [anon_sym_var] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_switch] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_await] = ACTIONS(2438), - [anon_sym_of] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_debugger] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_throw] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_case] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_LTtemplate_GT] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2438), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_class] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2438), - [anon_sym_new] = ACTIONS(2438), - [anon_sym_using] = ACTIONS(2438), - [anon_sym_PLUS] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_SLASH] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_TILDE] = ACTIONS(2438), - [anon_sym_void] = ACTIONS(2438), - [anon_sym_delete] = ACTIONS(2438), - [anon_sym_PLUS_PLUS] = ACTIONS(2438), - [anon_sym_DASH_DASH] = ACTIONS(2438), + [1442] = { + [sym_comment] = STATE(1442), + [sym_identifier] = ACTIONS(3694), + [anon_sym_export] = ACTIONS(3694), + [anon_sym_type] = ACTIONS(3694), + [anon_sym_namespace] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_typeof] = ACTIONS(3694), + [anon_sym_import] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3694), + [anon_sym_let] = ACTIONS(3694), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_else] = ACTIONS(3694), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_await] = ACTIONS(3694), + [anon_sym_of] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3694), + [anon_sym_do] = ACTIONS(3694), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_break] = ACTIONS(3694), + [anon_sym_continue] = ACTIONS(3694), + [anon_sym_debugger] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(3694), + [anon_sym_throw] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LTtemplate_GT] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3694), + [anon_sym_SQUOTE] = ACTIONS(3694), + [anon_sym_class] = ACTIONS(3694), + [anon_sym_async] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3694), + [anon_sym_using] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_SLASH] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_void] = ACTIONS(3694), + [anon_sym_delete] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2438), - [sym_number] = ACTIONS(2438), - [sym_private_property_identifier] = ACTIONS(2438), - [sym_this] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_true] = ACTIONS(2438), - [sym_false] = ACTIONS(2438), - [sym_null] = ACTIONS(2438), - [sym_undefined] = ACTIONS(2438), - [anon_sym_AT] = ACTIONS(2438), - [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_property] = ACTIONS(2438), - [anon_sym_signal] = ACTIONS(2438), - [anon_sym_on] = ACTIONS(2438), - [anon_sym_required] = ACTIONS(2438), - [anon_sym_component] = ACTIONS(2438), - [anon_sym_abstract] = ACTIONS(2438), - [anon_sym_interface] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), + [anon_sym_BQUOTE] = ACTIONS(3694), + [sym_number] = ACTIONS(3694), + [sym_private_property_identifier] = ACTIONS(3694), + [sym_this] = ACTIONS(3694), + [sym_super] = ACTIONS(3694), + [sym_true] = ACTIONS(3694), + [sym_false] = ACTIONS(3694), + [sym_null] = ACTIONS(3694), + [sym_undefined] = ACTIONS(3694), + [anon_sym_AT] = ACTIONS(3694), + [anon_sym_static] = ACTIONS(3694), + [anon_sym_readonly] = ACTIONS(3694), + [anon_sym_get] = ACTIONS(3694), + [anon_sym_set] = ACTIONS(3694), + [anon_sym_declare] = ACTIONS(3694), + [anon_sym_public] = ACTIONS(3694), + [anon_sym_private] = ACTIONS(3694), + [anon_sym_protected] = ACTIONS(3694), + [anon_sym_override] = ACTIONS(3694), + [anon_sym_module] = ACTIONS(3694), + [anon_sym_any] = ACTIONS(3694), + [anon_sym_number] = ACTIONS(3694), + [anon_sym_boolean] = ACTIONS(3694), + [anon_sym_string] = ACTIONS(3694), + [anon_sym_symbol] = ACTIONS(3694), + [anon_sym_object] = ACTIONS(3694), + [anon_sym_property] = ACTIONS(3694), + [anon_sym_signal] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_required] = ACTIONS(3694), + [anon_sym_component] = ACTIONS(3694), + [anon_sym_abstract] = ACTIONS(3694), + [anon_sym_interface] = ACTIONS(3694), + [anon_sym_enum] = ACTIONS(3694), [sym_html_comment] = ACTIONS(5), }, - [1458] = { - [sym_comment] = STATE(1458), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1443] = { + [sym_comment] = STATE(1443), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_else] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), [sym_html_comment] = ACTIONS(5), }, - [1459] = { - [sym_comment] = STATE(1459), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_LBRACE] = ACTIONS(2458), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_typeof] = ACTIONS(2458), - [anon_sym_import] = ACTIONS(2458), - [anon_sym_from] = ACTIONS(2458), - [anon_sym_with] = ACTIONS(2458), - [anon_sym_var] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2458), - [anon_sym_else] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_switch] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2458), - [anon_sym_await] = ACTIONS(2458), - [anon_sym_of] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_do] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_debugger] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_throw] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_LBRACK] = ACTIONS(2458), - [anon_sym_LTtemplate_GT] = ACTIONS(2458), - [anon_sym_DQUOTE] = ACTIONS(2458), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_new] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2458), - [anon_sym_PLUS] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2458), - [anon_sym_SLASH] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2458), - [anon_sym_void] = ACTIONS(2458), - [anon_sym_delete] = ACTIONS(2458), - [anon_sym_PLUS_PLUS] = ACTIONS(2458), - [anon_sym_DASH_DASH] = ACTIONS(2458), + [1444] = { + [sym_comment] = STATE(1444), + [sym_identifier] = ACTIONS(3696), + [anon_sym_export] = ACTIONS(3696), + [anon_sym_type] = ACTIONS(3696), + [anon_sym_namespace] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_typeof] = ACTIONS(3696), + [anon_sym_import] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_with] = ACTIONS(3696), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_const] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_else] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_await] = ACTIONS(3696), + [anon_sym_of] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(3696), + [anon_sym_continue] = ACTIONS(3696), + [anon_sym_debugger] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_throw] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LTtemplate_GT] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_SQUOTE] = ACTIONS(3696), + [anon_sym_class] = ACTIONS(3696), + [anon_sym_async] = ACTIONS(3696), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_using] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3696), + [anon_sym_void] = ACTIONS(3696), + [anon_sym_delete] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3696), + [anon_sym_DASH_DASH] = ACTIONS(3696), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2458), - [sym_number] = ACTIONS(2458), - [sym_private_property_identifier] = ACTIONS(2458), - [sym_this] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_true] = ACTIONS(2458), - [sym_false] = ACTIONS(2458), - [sym_null] = ACTIONS(2458), - [sym_undefined] = ACTIONS(2458), - [anon_sym_AT] = ACTIONS(2458), - [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_property] = ACTIONS(2458), - [anon_sym_signal] = ACTIONS(2458), - [anon_sym_on] = ACTIONS(2458), - [anon_sym_required] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_abstract] = ACTIONS(2458), - [anon_sym_interface] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(2606), + [anon_sym_BQUOTE] = ACTIONS(3696), + [sym_number] = ACTIONS(3696), + [sym_private_property_identifier] = ACTIONS(3696), + [sym_this] = ACTIONS(3696), + [sym_super] = ACTIONS(3696), + [sym_true] = ACTIONS(3696), + [sym_false] = ACTIONS(3696), + [sym_null] = ACTIONS(3696), + [sym_undefined] = ACTIONS(3696), + [anon_sym_AT] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3696), + [anon_sym_readonly] = ACTIONS(3696), + [anon_sym_get] = ACTIONS(3696), + [anon_sym_set] = ACTIONS(3696), + [anon_sym_declare] = ACTIONS(3696), + [anon_sym_public] = ACTIONS(3696), + [anon_sym_private] = ACTIONS(3696), + [anon_sym_protected] = ACTIONS(3696), + [anon_sym_override] = ACTIONS(3696), + [anon_sym_module] = ACTIONS(3696), + [anon_sym_any] = ACTIONS(3696), + [anon_sym_number] = ACTIONS(3696), + [anon_sym_boolean] = ACTIONS(3696), + [anon_sym_string] = ACTIONS(3696), + [anon_sym_symbol] = ACTIONS(3696), + [anon_sym_object] = ACTIONS(3696), + [anon_sym_property] = ACTIONS(3696), + [anon_sym_signal] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_required] = ACTIONS(3696), + [anon_sym_component] = ACTIONS(3696), + [anon_sym_abstract] = ACTIONS(3696), + [anon_sym_interface] = ACTIONS(3696), + [anon_sym_enum] = ACTIONS(3696), [sym_html_comment] = ACTIONS(5), }, - [1460] = { - [sym_comment] = STATE(1460), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1445] = { + [sym_comment] = STATE(1445), + [sym_identifier] = ACTIONS(3662), + [anon_sym_export] = ACTIONS(3662), + [anon_sym_type] = ACTIONS(3662), + [anon_sym_namespace] = ACTIONS(3662), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_typeof] = ACTIONS(3662), + [anon_sym_import] = ACTIONS(3662), + [anon_sym_from] = ACTIONS(3662), + [anon_sym_with] = ACTIONS(3662), + [anon_sym_var] = ACTIONS(3662), + [anon_sym_let] = ACTIONS(3662), + [anon_sym_const] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_else] = ACTIONS(3662), + [anon_sym_if] = ACTIONS(3662), + [anon_sym_switch] = ACTIONS(3662), + [anon_sym_for] = ACTIONS(3662), + [anon_sym_LPAREN] = ACTIONS(3662), + [anon_sym_await] = ACTIONS(3662), + [anon_sym_of] = ACTIONS(3662), + [anon_sym_while] = ACTIONS(3662), + [anon_sym_do] = ACTIONS(3662), + [anon_sym_try] = ACTIONS(3662), + [anon_sym_break] = ACTIONS(3662), + [anon_sym_continue] = ACTIONS(3662), + [anon_sym_debugger] = ACTIONS(3662), + [anon_sym_return] = ACTIONS(3662), + [anon_sym_throw] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym_yield] = ACTIONS(3662), + [anon_sym_LBRACK] = ACTIONS(3662), + [anon_sym_LTtemplate_GT] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_class] = ACTIONS(3662), + [anon_sym_async] = ACTIONS(3662), + [anon_sym_function] = ACTIONS(3662), + [anon_sym_new] = ACTIONS(3662), + [anon_sym_using] = ACTIONS(3662), + [anon_sym_PLUS] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3662), + [anon_sym_SLASH] = ACTIONS(3662), + [anon_sym_LT] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_void] = ACTIONS(3662), + [anon_sym_delete] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_DASH_DASH] = ACTIONS(3662), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3662), + [sym_number] = ACTIONS(3662), + [sym_private_property_identifier] = ACTIONS(3662), + [sym_this] = ACTIONS(3662), + [sym_super] = ACTIONS(3662), + [sym_true] = ACTIONS(3662), + [sym_false] = ACTIONS(3662), + [sym_null] = ACTIONS(3662), + [sym_undefined] = ACTIONS(3662), + [anon_sym_AT] = ACTIONS(3662), + [anon_sym_static] = ACTIONS(3662), + [anon_sym_readonly] = ACTIONS(3662), + [anon_sym_get] = ACTIONS(3662), + [anon_sym_set] = ACTIONS(3662), + [anon_sym_declare] = ACTIONS(3662), + [anon_sym_public] = ACTIONS(3662), + [anon_sym_private] = ACTIONS(3662), + [anon_sym_protected] = ACTIONS(3662), + [anon_sym_override] = ACTIONS(3662), + [anon_sym_module] = ACTIONS(3662), + [anon_sym_any] = ACTIONS(3662), + [anon_sym_number] = ACTIONS(3662), + [anon_sym_boolean] = ACTIONS(3662), + [anon_sym_string] = ACTIONS(3662), + [anon_sym_symbol] = ACTIONS(3662), + [anon_sym_object] = ACTIONS(3662), + [anon_sym_property] = ACTIONS(3662), + [anon_sym_signal] = ACTIONS(3662), + [anon_sym_on] = ACTIONS(3662), + [anon_sym_required] = ACTIONS(3662), + [anon_sym_component] = ACTIONS(3662), + [anon_sym_abstract] = ACTIONS(3662), + [anon_sym_interface] = ACTIONS(3662), + [anon_sym_enum] = ACTIONS(3662), [sym_html_comment] = ACTIONS(5), }, - [1461] = { - [sym_comment] = STATE(1461), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), + [1446] = { + [sym_comment] = STATE(1446), + [sym_identifier] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_type] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_typeof] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_from] = ACTIONS(3518), + [anon_sym_with] = ACTIONS(3518), + [anon_sym_var] = ACTIONS(3518), + [anon_sym_let] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_BANG] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3518), + [anon_sym_await] = ACTIONS(3518), + [anon_sym_of] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_debugger] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_yield] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_LTtemplate_GT] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(3518), + [anon_sym_SQUOTE] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_async] = ACTIONS(3518), + [anon_sym_function] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3518), + [anon_sym_void] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3518), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_private_property_identifier] = ACTIONS(2442), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), + [anon_sym_BQUOTE] = ACTIONS(3518), + [sym_number] = ACTIONS(3518), + [sym_private_property_identifier] = ACTIONS(3518), + [sym_this] = ACTIONS(3518), + [sym_super] = ACTIONS(3518), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_undefined] = ACTIONS(3518), + [anon_sym_AT] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_readonly] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3518), + [anon_sym_set] = ACTIONS(3518), + [anon_sym_declare] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_override] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_any] = ACTIONS(3518), + [anon_sym_number] = ACTIONS(3518), + [anon_sym_boolean] = ACTIONS(3518), + [anon_sym_string] = ACTIONS(3518), + [anon_sym_symbol] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(3518), + [anon_sym_property] = ACTIONS(3518), + [anon_sym_signal] = ACTIONS(3518), + [anon_sym_on] = ACTIONS(3518), + [anon_sym_required] = ACTIONS(3518), + [anon_sym_component] = ACTIONS(3518), + [anon_sym_abstract] = ACTIONS(3518), + [anon_sym_interface] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), [sym_html_comment] = ACTIONS(5), }, - [1462] = { - [sym_comment] = STATE(1462), - [sym_identifier] = ACTIONS(3686), - [anon_sym_export] = ACTIONS(3686), - [anon_sym_default] = ACTIONS(3686), - [anon_sym_type] = ACTIONS(3686), - [anon_sym_namespace] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_typeof] = ACTIONS(3686), - [anon_sym_import] = ACTIONS(3686), - [anon_sym_from] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [anon_sym_var] = ACTIONS(3686), - [anon_sym_let] = ACTIONS(3686), - [anon_sym_const] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_if] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_for] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_await] = ACTIONS(3686), - [anon_sym_of] = ACTIONS(3686), - [anon_sym_while] = ACTIONS(3686), - [anon_sym_do] = ACTIONS(3686), - [anon_sym_try] = ACTIONS(3686), - [anon_sym_break] = ACTIONS(3686), - [anon_sym_continue] = ACTIONS(3686), - [anon_sym_debugger] = ACTIONS(3686), - [anon_sym_return] = ACTIONS(3686), - [anon_sym_throw] = ACTIONS(3686), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_case] = ACTIONS(3686), - [anon_sym_yield] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_LTtemplate_GT] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_class] = ACTIONS(3686), - [anon_sym_async] = ACTIONS(3686), - [anon_sym_function] = ACTIONS(3686), - [anon_sym_new] = ACTIONS(3686), - [anon_sym_using] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_SLASH] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_void] = ACTIONS(3686), - [anon_sym_delete] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), + [1447] = { + [sym_comment] = STATE(1447), + [sym_identifier] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_type] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_typeof] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_from] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3698), + [anon_sym_var] = ACTIONS(3698), + [anon_sym_let] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_else] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_await] = ACTIONS(3698), + [anon_sym_of] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_debugger] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_yield] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LTtemplate_GT] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_async] = ACTIONS(3698), + [anon_sym_function] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_void] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3686), - [sym_number] = ACTIONS(3686), - [sym_private_property_identifier] = ACTIONS(3686), - [sym_this] = ACTIONS(3686), - [sym_super] = ACTIONS(3686), - [sym_true] = ACTIONS(3686), - [sym_false] = ACTIONS(3686), - [sym_null] = ACTIONS(3686), - [sym_undefined] = ACTIONS(3686), - [anon_sym_AT] = ACTIONS(3686), - [anon_sym_static] = ACTIONS(3686), - [anon_sym_readonly] = ACTIONS(3686), - [anon_sym_get] = ACTIONS(3686), - [anon_sym_set] = ACTIONS(3686), - [anon_sym_declare] = ACTIONS(3686), - [anon_sym_public] = ACTIONS(3686), - [anon_sym_private] = ACTIONS(3686), - [anon_sym_protected] = ACTIONS(3686), - [anon_sym_override] = ACTIONS(3686), - [anon_sym_module] = ACTIONS(3686), - [anon_sym_any] = ACTIONS(3686), - [anon_sym_number] = ACTIONS(3686), - [anon_sym_boolean] = ACTIONS(3686), - [anon_sym_string] = ACTIONS(3686), - [anon_sym_symbol] = ACTIONS(3686), - [anon_sym_object] = ACTIONS(3686), - [anon_sym_property] = ACTIONS(3686), - [anon_sym_signal] = ACTIONS(3686), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_required] = ACTIONS(3686), - [anon_sym_component] = ACTIONS(3686), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_interface] = ACTIONS(3686), - [anon_sym_enum] = ACTIONS(3686), + [anon_sym_BQUOTE] = ACTIONS(3698), + [sym_number] = ACTIONS(3698), + [sym_private_property_identifier] = ACTIONS(3698), + [sym_this] = ACTIONS(3698), + [sym_super] = ACTIONS(3698), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [sym_null] = ACTIONS(3698), + [sym_undefined] = ACTIONS(3698), + [anon_sym_AT] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_readonly] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(3698), + [anon_sym_set] = ACTIONS(3698), + [anon_sym_declare] = ACTIONS(3698), + [anon_sym_public] = ACTIONS(3698), + [anon_sym_private] = ACTIONS(3698), + [anon_sym_protected] = ACTIONS(3698), + [anon_sym_override] = ACTIONS(3698), + [anon_sym_module] = ACTIONS(3698), + [anon_sym_any] = ACTIONS(3698), + [anon_sym_number] = ACTIONS(3698), + [anon_sym_boolean] = ACTIONS(3698), + [anon_sym_string] = ACTIONS(3698), + [anon_sym_symbol] = ACTIONS(3698), + [anon_sym_object] = ACTIONS(3698), + [anon_sym_property] = ACTIONS(3698), + [anon_sym_signal] = ACTIONS(3698), + [anon_sym_on] = ACTIONS(3698), + [anon_sym_required] = ACTIONS(3698), + [anon_sym_component] = ACTIONS(3698), + [anon_sym_abstract] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, - [1463] = { - [sym_comment] = STATE(1463), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1448] = { + [sym_comment] = STATE(1448), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_typeof] = ACTIONS(2434), + [anon_sym_import] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_with] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_debugger] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_throw] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LTtemplate_GT] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_class] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2434), + [anon_sym_delete] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_private_property_identifier] = ACTIONS(2434), + [sym_this] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_true] = ACTIONS(2434), + [sym_false] = ACTIONS(2434), + [sym_null] = ACTIONS(2434), + [sym_undefined] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_abstract] = ACTIONS(2434), + [anon_sym_interface] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [sym__automatic_semicolon] = ACTIONS(2436), [sym_html_comment] = ACTIONS(5), }, - [1464] = { - [sym_comment] = STATE(1464), - [sym_identifier] = ACTIONS(3686), - [anon_sym_export] = ACTIONS(3686), - [anon_sym_type] = ACTIONS(3686), - [anon_sym_namespace] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_typeof] = ACTIONS(3686), - [anon_sym_import] = ACTIONS(3686), - [anon_sym_from] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [anon_sym_var] = ACTIONS(3686), - [anon_sym_let] = ACTIONS(3686), - [anon_sym_const] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_else] = ACTIONS(3686), - [anon_sym_if] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_for] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_await] = ACTIONS(3686), - [anon_sym_of] = ACTIONS(3686), - [anon_sym_while] = ACTIONS(3686), - [anon_sym_do] = ACTIONS(3686), - [anon_sym_try] = ACTIONS(3686), - [anon_sym_break] = ACTIONS(3686), - [anon_sym_continue] = ACTIONS(3686), - [anon_sym_debugger] = ACTIONS(3686), - [anon_sym_return] = ACTIONS(3686), - [anon_sym_throw] = ACTIONS(3686), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_yield] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_LTtemplate_GT] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_class] = ACTIONS(3686), - [anon_sym_async] = ACTIONS(3686), - [anon_sym_function] = ACTIONS(3686), - [anon_sym_new] = ACTIONS(3686), - [anon_sym_using] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_SLASH] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_void] = ACTIONS(3686), - [anon_sym_delete] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), + [1449] = { + [sym_comment] = STATE(1449), + [sym_identifier] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_type] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_typeof] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_await] = ACTIONS(3664), + [anon_sym_of] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_debugger] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_yield] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_LTtemplate_GT] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_async] = ACTIONS(3664), + [anon_sym_function] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_void] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3686), - [sym_number] = ACTIONS(3686), - [sym_private_property_identifier] = ACTIONS(3686), - [sym_this] = ACTIONS(3686), - [sym_super] = ACTIONS(3686), - [sym_true] = ACTIONS(3686), - [sym_false] = ACTIONS(3686), - [sym_null] = ACTIONS(3686), - [sym_undefined] = ACTIONS(3686), - [anon_sym_AT] = ACTIONS(3686), - [anon_sym_static] = ACTIONS(3686), - [anon_sym_readonly] = ACTIONS(3686), - [anon_sym_get] = ACTIONS(3686), - [anon_sym_set] = ACTIONS(3686), - [anon_sym_declare] = ACTIONS(3686), - [anon_sym_public] = ACTIONS(3686), - [anon_sym_private] = ACTIONS(3686), - [anon_sym_protected] = ACTIONS(3686), - [anon_sym_override] = ACTIONS(3686), - [anon_sym_module] = ACTIONS(3686), - [anon_sym_any] = ACTIONS(3686), - [anon_sym_number] = ACTIONS(3686), - [anon_sym_boolean] = ACTIONS(3686), - [anon_sym_string] = ACTIONS(3686), - [anon_sym_symbol] = ACTIONS(3686), - [anon_sym_object] = ACTIONS(3686), - [anon_sym_property] = ACTIONS(3686), - [anon_sym_signal] = ACTIONS(3686), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_required] = ACTIONS(3686), - [anon_sym_component] = ACTIONS(3686), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_interface] = ACTIONS(3686), - [anon_sym_enum] = ACTIONS(3686), + [anon_sym_BQUOTE] = ACTIONS(3664), + [sym_number] = ACTIONS(3664), + [sym_private_property_identifier] = ACTIONS(3664), + [sym_this] = ACTIONS(3664), + [sym_super] = ACTIONS(3664), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [sym_null] = ACTIONS(3664), + [sym_undefined] = ACTIONS(3664), + [anon_sym_AT] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_readonly] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3664), + [anon_sym_declare] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_override] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_any] = ACTIONS(3664), + [anon_sym_number] = ACTIONS(3664), + [anon_sym_boolean] = ACTIONS(3664), + [anon_sym_string] = ACTIONS(3664), + [anon_sym_symbol] = ACTIONS(3664), + [anon_sym_object] = ACTIONS(3664), + [anon_sym_property] = ACTIONS(3664), + [anon_sym_signal] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_required] = ACTIONS(3664), + [anon_sym_component] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), [sym_html_comment] = ACTIONS(5), }, - [1465] = { - [sym_comment] = STATE(1465), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1450] = { + [sym_comment] = STATE(1450), + [sym_identifier] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_type] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3596), + [anon_sym_typeof] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3596), + [anon_sym_await] = ACTIONS(3596), + [anon_sym_of] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_debugger] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LTtemplate_GT] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_async] = ACTIONS(3596), + [anon_sym_function] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_SLASH] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3596), + [anon_sym_void] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3596), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3596), + [sym_number] = ACTIONS(3596), + [sym_private_property_identifier] = ACTIONS(3596), + [sym_this] = ACTIONS(3596), + [sym_super] = ACTIONS(3596), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_null] = ACTIONS(3596), + [sym_undefined] = ACTIONS(3596), + [anon_sym_AT] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_readonly] = ACTIONS(3596), + [anon_sym_get] = ACTIONS(3596), + [anon_sym_set] = ACTIONS(3596), + [anon_sym_declare] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_override] = ACTIONS(3596), + [anon_sym_module] = ACTIONS(3596), + [anon_sym_any] = ACTIONS(3596), + [anon_sym_number] = ACTIONS(3596), + [anon_sym_boolean] = ACTIONS(3596), + [anon_sym_string] = ACTIONS(3596), + [anon_sym_symbol] = ACTIONS(3596), + [anon_sym_object] = ACTIONS(3596), + [anon_sym_property] = ACTIONS(3596), + [anon_sym_signal] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_required] = ACTIONS(3596), + [anon_sym_component] = ACTIONS(3596), + [anon_sym_abstract] = ACTIONS(3596), + [anon_sym_interface] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), [sym_html_comment] = ACTIONS(5), }, - [1466] = { - [sym_comment] = STATE(1466), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1451] = { + [sym_comment] = STATE(1451), + [sym_identifier] = ACTIONS(3602), + [anon_sym_export] = ACTIONS(3602), + [anon_sym_type] = ACTIONS(3602), + [anon_sym_namespace] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_typeof] = ACTIONS(3602), + [anon_sym_import] = ACTIONS(3602), + [anon_sym_from] = ACTIONS(3602), + [anon_sym_with] = ACTIONS(3602), + [anon_sym_var] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_const] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_else] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_switch] = ACTIONS(3602), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_await] = ACTIONS(3602), + [anon_sym_of] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_break] = ACTIONS(3602), + [anon_sym_continue] = ACTIONS(3602), + [anon_sym_debugger] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_throw] = ACTIONS(3602), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LTtemplate_GT] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_class] = ACTIONS(3602), + [anon_sym_async] = ACTIONS(3602), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_using] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_SLASH] = ACTIONS(3602), + [anon_sym_LT] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_void] = ACTIONS(3602), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_DASH_DASH] = ACTIONS(3602), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3602), + [sym_number] = ACTIONS(3602), + [sym_private_property_identifier] = ACTIONS(3602), + [sym_this] = ACTIONS(3602), + [sym_super] = ACTIONS(3602), + [sym_true] = ACTIONS(3602), + [sym_false] = ACTIONS(3602), + [sym_null] = ACTIONS(3602), + [sym_undefined] = ACTIONS(3602), + [anon_sym_AT] = ACTIONS(3602), + [anon_sym_static] = ACTIONS(3602), + [anon_sym_readonly] = ACTIONS(3602), + [anon_sym_get] = ACTIONS(3602), + [anon_sym_set] = ACTIONS(3602), + [anon_sym_declare] = ACTIONS(3602), + [anon_sym_public] = ACTIONS(3602), + [anon_sym_private] = ACTIONS(3602), + [anon_sym_protected] = ACTIONS(3602), + [anon_sym_override] = ACTIONS(3602), + [anon_sym_module] = ACTIONS(3602), + [anon_sym_any] = ACTIONS(3602), + [anon_sym_number] = ACTIONS(3602), + [anon_sym_boolean] = ACTIONS(3602), + [anon_sym_string] = ACTIONS(3602), + [anon_sym_symbol] = ACTIONS(3602), + [anon_sym_object] = ACTIONS(3602), + [anon_sym_property] = ACTIONS(3602), + [anon_sym_signal] = ACTIONS(3602), + [anon_sym_on] = ACTIONS(3602), + [anon_sym_required] = ACTIONS(3602), + [anon_sym_component] = ACTIONS(3602), + [anon_sym_abstract] = ACTIONS(3602), + [anon_sym_interface] = ACTIONS(3602), + [anon_sym_enum] = ACTIONS(3602), [sym_html_comment] = ACTIONS(5), }, - [1467] = { - [sym_comment] = STATE(1467), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1452] = { + [sym_comment] = STATE(1452), + [sym_identifier] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_type] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_typeof] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_from] = ACTIONS(3522), + [anon_sym_with] = ACTIONS(3522), + [anon_sym_var] = ACTIONS(3522), + [anon_sym_let] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3522), + [anon_sym_await] = ACTIONS(3522), + [anon_sym_of] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_debugger] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_yield] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_LTtemplate_GT] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_async] = ACTIONS(3522), + [anon_sym_function] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_SLASH] = ACTIONS(3522), + [anon_sym_LT] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_void] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3522), + [sym_number] = ACTIONS(3522), + [sym_private_property_identifier] = ACTIONS(3522), + [sym_this] = ACTIONS(3522), + [sym_super] = ACTIONS(3522), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_undefined] = ACTIONS(3522), + [anon_sym_AT] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_readonly] = ACTIONS(3522), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_declare] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_override] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_any] = ACTIONS(3522), + [anon_sym_number] = ACTIONS(3522), + [anon_sym_boolean] = ACTIONS(3522), + [anon_sym_string] = ACTIONS(3522), + [anon_sym_symbol] = ACTIONS(3522), + [anon_sym_object] = ACTIONS(3522), + [anon_sym_property] = ACTIONS(3522), + [anon_sym_signal] = ACTIONS(3522), + [anon_sym_on] = ACTIONS(3522), + [anon_sym_required] = ACTIONS(3522), + [anon_sym_component] = ACTIONS(3522), + [anon_sym_abstract] = ACTIONS(3522), + [anon_sym_interface] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), [sym_html_comment] = ACTIONS(5), }, - [1468] = { - [sym_comment] = STATE(1468), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1453] = { + [sym_comment] = STATE(1453), + [sym_identifier] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_type] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_from] = ACTIONS(3652), + [anon_sym_with] = ACTIONS(3652), + [anon_sym_var] = ACTIONS(3652), + [anon_sym_let] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_await] = ACTIONS(3652), + [anon_sym_of] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_debugger] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym_yield] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LTtemplate_GT] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_async] = ACTIONS(3652), + [anon_sym_function] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_SLASH] = ACTIONS(3652), + [anon_sym_LT] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3652), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3652), + [sym_number] = ACTIONS(3652), + [sym_private_property_identifier] = ACTIONS(3652), + [sym_this] = ACTIONS(3652), + [sym_super] = ACTIONS(3652), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [sym_null] = ACTIONS(3652), + [sym_undefined] = ACTIONS(3652), + [anon_sym_AT] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_readonly] = ACTIONS(3652), + [anon_sym_get] = ACTIONS(3652), + [anon_sym_set] = ACTIONS(3652), + [anon_sym_declare] = ACTIONS(3652), + [anon_sym_public] = ACTIONS(3652), + [anon_sym_private] = ACTIONS(3652), + [anon_sym_protected] = ACTIONS(3652), + [anon_sym_override] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_any] = ACTIONS(3652), + [anon_sym_number] = ACTIONS(3652), + [anon_sym_boolean] = ACTIONS(3652), + [anon_sym_string] = ACTIONS(3652), + [anon_sym_symbol] = ACTIONS(3652), + [anon_sym_object] = ACTIONS(3652), + [anon_sym_property] = ACTIONS(3652), + [anon_sym_signal] = ACTIONS(3652), + [anon_sym_on] = ACTIONS(3652), + [anon_sym_required] = ACTIONS(3652), + [anon_sym_component] = ACTIONS(3652), + [anon_sym_abstract] = ACTIONS(3652), + [anon_sym_interface] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), [sym_html_comment] = ACTIONS(5), }, - [1469] = { - [sym_comment] = STATE(1469), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1454] = { + [sym_comment] = STATE(1454), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), [sym_html_comment] = ACTIONS(5), }, - [1470] = { - [sym_comment] = STATE(1470), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1455] = { + [sym_comment] = STATE(1455), + [sym_identifier] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_type] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_typeof] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_await] = ACTIONS(3644), + [anon_sym_of] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_debugger] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LTtemplate_GT] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_async] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_void] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3644), + [sym_number] = ACTIONS(3644), + [sym_private_property_identifier] = ACTIONS(3644), + [sym_this] = ACTIONS(3644), + [sym_super] = ACTIONS(3644), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [sym_null] = ACTIONS(3644), + [sym_undefined] = ACTIONS(3644), + [anon_sym_AT] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_readonly] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(3644), + [anon_sym_set] = ACTIONS(3644), + [anon_sym_declare] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_override] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_any] = ACTIONS(3644), + [anon_sym_number] = ACTIONS(3644), + [anon_sym_boolean] = ACTIONS(3644), + [anon_sym_string] = ACTIONS(3644), + [anon_sym_symbol] = ACTIONS(3644), + [anon_sym_object] = ACTIONS(3644), + [anon_sym_property] = ACTIONS(3644), + [anon_sym_signal] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_required] = ACTIONS(3644), + [anon_sym_component] = ACTIONS(3644), + [anon_sym_abstract] = ACTIONS(3644), + [anon_sym_interface] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), [sym_html_comment] = ACTIONS(5), }, - [1471] = { - [sym_comment] = STATE(1471), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1456] = { + [sym_comment] = STATE(1456), + [sym_identifier] = ACTIONS(3642), + [anon_sym_export] = ACTIONS(3642), + [anon_sym_type] = ACTIONS(3642), + [anon_sym_namespace] = ACTIONS(3642), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_typeof] = ACTIONS(3642), + [anon_sym_import] = ACTIONS(3642), + [anon_sym_from] = ACTIONS(3642), + [anon_sym_with] = ACTIONS(3642), + [anon_sym_var] = ACTIONS(3642), + [anon_sym_let] = ACTIONS(3642), + [anon_sym_const] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_else] = ACTIONS(3642), + [anon_sym_if] = ACTIONS(3642), + [anon_sym_switch] = ACTIONS(3642), + [anon_sym_for] = ACTIONS(3642), + [anon_sym_LPAREN] = ACTIONS(3642), + [anon_sym_await] = ACTIONS(3642), + [anon_sym_of] = ACTIONS(3642), + [anon_sym_while] = ACTIONS(3642), + [anon_sym_do] = ACTIONS(3642), + [anon_sym_try] = ACTIONS(3642), + [anon_sym_break] = ACTIONS(3642), + [anon_sym_continue] = ACTIONS(3642), + [anon_sym_debugger] = ACTIONS(3642), + [anon_sym_return] = ACTIONS(3642), + [anon_sym_throw] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym_yield] = ACTIONS(3642), + [anon_sym_LBRACK] = ACTIONS(3642), + [anon_sym_LTtemplate_GT] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_class] = ACTIONS(3642), + [anon_sym_async] = ACTIONS(3642), + [anon_sym_function] = ACTIONS(3642), + [anon_sym_new] = ACTIONS(3642), + [anon_sym_using] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3642), + [anon_sym_SLASH] = ACTIONS(3642), + [anon_sym_LT] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_void] = ACTIONS(3642), + [anon_sym_delete] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_DASH_DASH] = ACTIONS(3642), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3642), + [sym_number] = ACTIONS(3642), + [sym_private_property_identifier] = ACTIONS(3642), + [sym_this] = ACTIONS(3642), + [sym_super] = ACTIONS(3642), + [sym_true] = ACTIONS(3642), + [sym_false] = ACTIONS(3642), + [sym_null] = ACTIONS(3642), + [sym_undefined] = ACTIONS(3642), + [anon_sym_AT] = ACTIONS(3642), + [anon_sym_static] = ACTIONS(3642), + [anon_sym_readonly] = ACTIONS(3642), + [anon_sym_get] = ACTIONS(3642), + [anon_sym_set] = ACTIONS(3642), + [anon_sym_declare] = ACTIONS(3642), + [anon_sym_public] = ACTIONS(3642), + [anon_sym_private] = ACTIONS(3642), + [anon_sym_protected] = ACTIONS(3642), + [anon_sym_override] = ACTIONS(3642), + [anon_sym_module] = ACTIONS(3642), + [anon_sym_any] = ACTIONS(3642), + [anon_sym_number] = ACTIONS(3642), + [anon_sym_boolean] = ACTIONS(3642), + [anon_sym_string] = ACTIONS(3642), + [anon_sym_symbol] = ACTIONS(3642), + [anon_sym_object] = ACTIONS(3642), + [anon_sym_property] = ACTIONS(3642), + [anon_sym_signal] = ACTIONS(3642), + [anon_sym_on] = ACTIONS(3642), + [anon_sym_required] = ACTIONS(3642), + [anon_sym_component] = ACTIONS(3642), + [anon_sym_abstract] = ACTIONS(3642), + [anon_sym_interface] = ACTIONS(3642), + [anon_sym_enum] = ACTIONS(3642), [sym_html_comment] = ACTIONS(5), }, - [1472] = { - [sym_comment] = STATE(1472), - [sym_identifier] = ACTIONS(3640), - [anon_sym_export] = ACTIONS(3640), - [anon_sym_type] = ACTIONS(3640), - [anon_sym_namespace] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_RBRACE] = ACTIONS(3640), - [anon_sym_typeof] = ACTIONS(3640), - [anon_sym_import] = ACTIONS(3640), - [anon_sym_from] = ACTIONS(3640), - [anon_sym_with] = ACTIONS(3640), - [anon_sym_var] = ACTIONS(3640), - [anon_sym_let] = ACTIONS(3640), - [anon_sym_const] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_else] = ACTIONS(3640), - [anon_sym_if] = ACTIONS(3640), - [anon_sym_switch] = ACTIONS(3640), - [anon_sym_for] = ACTIONS(3640), - [anon_sym_LPAREN] = ACTIONS(3640), - [anon_sym_await] = ACTIONS(3640), - [anon_sym_of] = ACTIONS(3640), - [anon_sym_while] = ACTIONS(3640), - [anon_sym_do] = ACTIONS(3640), - [anon_sym_try] = ACTIONS(3640), - [anon_sym_break] = ACTIONS(3640), - [anon_sym_continue] = ACTIONS(3640), - [anon_sym_debugger] = ACTIONS(3640), - [anon_sym_return] = ACTIONS(3640), - [anon_sym_throw] = ACTIONS(3640), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_yield] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3640), - [anon_sym_LTtemplate_GT] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_class] = ACTIONS(3640), - [anon_sym_async] = ACTIONS(3640), - [anon_sym_function] = ACTIONS(3640), - [anon_sym_new] = ACTIONS(3640), - [anon_sym_using] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_SLASH] = ACTIONS(3640), - [anon_sym_LT] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_void] = ACTIONS(3640), - [anon_sym_delete] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(3640), + [1457] = { + [sym_comment] = STATE(1457), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_typeof] = ACTIONS(2410), + [anon_sym_import] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_with] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_const] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_if] = ACTIONS(2410), + [anon_sym_switch] = ACTIONS(2410), + [anon_sym_for] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_await] = ACTIONS(2410), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_while] = ACTIONS(2410), + [anon_sym_do] = ACTIONS(2410), + [anon_sym_try] = ACTIONS(2410), + [anon_sym_break] = ACTIONS(2410), + [anon_sym_continue] = ACTIONS(2410), + [anon_sym_debugger] = ACTIONS(2410), + [anon_sym_return] = ACTIONS(2410), + [anon_sym_throw] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_yield] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LTtemplate_GT] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2410), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_new] = ACTIONS(2410), + [anon_sym_using] = ACTIONS(2410), + [anon_sym_PLUS] = ACTIONS(2410), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_SLASH] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_TILDE] = ACTIONS(2410), + [anon_sym_void] = ACTIONS(2410), + [anon_sym_delete] = ACTIONS(2410), + [anon_sym_PLUS_PLUS] = ACTIONS(2410), + [anon_sym_DASH_DASH] = ACTIONS(2410), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3640), - [sym_number] = ACTIONS(3640), - [sym_private_property_identifier] = ACTIONS(3640), - [sym_this] = ACTIONS(3640), - [sym_super] = ACTIONS(3640), - [sym_true] = ACTIONS(3640), - [sym_false] = ACTIONS(3640), - [sym_null] = ACTIONS(3640), - [sym_undefined] = ACTIONS(3640), - [anon_sym_AT] = ACTIONS(3640), - [anon_sym_static] = ACTIONS(3640), - [anon_sym_readonly] = ACTIONS(3640), - [anon_sym_get] = ACTIONS(3640), - [anon_sym_set] = ACTIONS(3640), - [anon_sym_declare] = ACTIONS(3640), - [anon_sym_public] = ACTIONS(3640), - [anon_sym_private] = ACTIONS(3640), - [anon_sym_protected] = ACTIONS(3640), - [anon_sym_override] = ACTIONS(3640), - [anon_sym_module] = ACTIONS(3640), - [anon_sym_any] = ACTIONS(3640), - [anon_sym_number] = ACTIONS(3640), - [anon_sym_boolean] = ACTIONS(3640), - [anon_sym_string] = ACTIONS(3640), - [anon_sym_symbol] = ACTIONS(3640), - [anon_sym_object] = ACTIONS(3640), - [anon_sym_property] = ACTIONS(3640), - [anon_sym_signal] = ACTIONS(3640), - [anon_sym_on] = ACTIONS(3640), - [anon_sym_required] = ACTIONS(3640), - [anon_sym_component] = ACTIONS(3640), - [anon_sym_abstract] = ACTIONS(3640), - [anon_sym_interface] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), + [anon_sym_BQUOTE] = ACTIONS(2410), + [sym_number] = ACTIONS(2410), + [sym_private_property_identifier] = ACTIONS(2410), + [sym_this] = ACTIONS(2410), + [sym_super] = ACTIONS(2410), + [sym_true] = ACTIONS(2410), + [sym_false] = ACTIONS(2410), + [sym_null] = ACTIONS(2410), + [sym_undefined] = ACTIONS(2410), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_abstract] = ACTIONS(2410), + [anon_sym_interface] = ACTIONS(2410), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(2678), [sym_html_comment] = ACTIONS(5), }, - [1473] = { - [sym_comment] = STATE(1473), - [sym_identifier] = ACTIONS(3656), - [anon_sym_export] = ACTIONS(3656), - [anon_sym_type] = ACTIONS(3656), - [anon_sym_namespace] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_import] = ACTIONS(3656), - [anon_sym_from] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [anon_sym_var] = ACTIONS(3656), - [anon_sym_let] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3656), - [anon_sym_else] = ACTIONS(3656), - [anon_sym_if] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_for] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_await] = ACTIONS(3656), - [anon_sym_of] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3656), - [anon_sym_do] = ACTIONS(3656), - [anon_sym_try] = ACTIONS(3656), - [anon_sym_break] = ACTIONS(3656), - [anon_sym_continue] = ACTIONS(3656), - [anon_sym_debugger] = ACTIONS(3656), - [anon_sym_return] = ACTIONS(3656), - [anon_sym_throw] = ACTIONS(3656), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_yield] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_LTtemplate_GT] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(3656), - [anon_sym_SQUOTE] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_async] = ACTIONS(3656), - [anon_sym_function] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_using] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3656), - [anon_sym_TILDE] = ACTIONS(3656), - [anon_sym_void] = ACTIONS(3656), - [anon_sym_delete] = ACTIONS(3656), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), + [1458] = { + [sym_comment] = STATE(1458), + [sym_identifier] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_type] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_RBRACE] = ACTIONS(3526), + [anon_sym_typeof] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_from] = ACTIONS(3526), + [anon_sym_with] = ACTIONS(3526), + [anon_sym_var] = ACTIONS(3526), + [anon_sym_let] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_else] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_await] = ACTIONS(3526), + [anon_sym_of] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_debugger] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_yield] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_LTtemplate_GT] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_async] = ACTIONS(3526), + [anon_sym_function] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_SLASH] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_void] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3526), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3656), - [sym_number] = ACTIONS(3656), - [sym_private_property_identifier] = ACTIONS(3656), - [sym_this] = ACTIONS(3656), - [sym_super] = ACTIONS(3656), - [sym_true] = ACTIONS(3656), - [sym_false] = ACTIONS(3656), - [sym_null] = ACTIONS(3656), - [sym_undefined] = ACTIONS(3656), - [anon_sym_AT] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_readonly] = ACTIONS(3656), - [anon_sym_get] = ACTIONS(3656), - [anon_sym_set] = ACTIONS(3656), - [anon_sym_declare] = ACTIONS(3656), - [anon_sym_public] = ACTIONS(3656), - [anon_sym_private] = ACTIONS(3656), - [anon_sym_protected] = ACTIONS(3656), - [anon_sym_override] = ACTIONS(3656), - [anon_sym_module] = ACTIONS(3656), - [anon_sym_any] = ACTIONS(3656), - [anon_sym_number] = ACTIONS(3656), - [anon_sym_boolean] = ACTIONS(3656), - [anon_sym_string] = ACTIONS(3656), - [anon_sym_symbol] = ACTIONS(3656), - [anon_sym_object] = ACTIONS(3656), - [anon_sym_property] = ACTIONS(3656), - [anon_sym_signal] = ACTIONS(3656), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_required] = ACTIONS(3656), - [anon_sym_component] = ACTIONS(3656), - [anon_sym_abstract] = ACTIONS(3656), - [anon_sym_interface] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), + [anon_sym_BQUOTE] = ACTIONS(3526), + [sym_number] = ACTIONS(3526), + [sym_private_property_identifier] = ACTIONS(3526), + [sym_this] = ACTIONS(3526), + [sym_super] = ACTIONS(3526), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [sym_null] = ACTIONS(3526), + [sym_undefined] = ACTIONS(3526), + [anon_sym_AT] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_readonly] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(3526), + [anon_sym_set] = ACTIONS(3526), + [anon_sym_declare] = ACTIONS(3526), + [anon_sym_public] = ACTIONS(3526), + [anon_sym_private] = ACTIONS(3526), + [anon_sym_protected] = ACTIONS(3526), + [anon_sym_override] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_any] = ACTIONS(3526), + [anon_sym_number] = ACTIONS(3526), + [anon_sym_boolean] = ACTIONS(3526), + [anon_sym_string] = ACTIONS(3526), + [anon_sym_symbol] = ACTIONS(3526), + [anon_sym_object] = ACTIONS(3526), + [anon_sym_property] = ACTIONS(3526), + [anon_sym_signal] = ACTIONS(3526), + [anon_sym_on] = ACTIONS(3526), + [anon_sym_required] = ACTIONS(3526), + [anon_sym_component] = ACTIONS(3526), + [anon_sym_abstract] = ACTIONS(3526), + [anon_sym_interface] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), [sym_html_comment] = ACTIONS(5), }, - [1474] = { - [sym_comment] = STATE(1474), - [sym_identifier] = ACTIONS(3596), - [anon_sym_export] = ACTIONS(3596), - [anon_sym_type] = ACTIONS(3596), - [anon_sym_namespace] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3596), - [anon_sym_RBRACE] = ACTIONS(3596), - [anon_sym_typeof] = ACTIONS(3596), - [anon_sym_import] = ACTIONS(3596), - [anon_sym_from] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_let] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3596), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_await] = ACTIONS(3596), - [anon_sym_of] = ACTIONS(3596), - [anon_sym_while] = ACTIONS(3596), - [anon_sym_do] = ACTIONS(3596), - [anon_sym_try] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_debugger] = ACTIONS(3596), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_throw] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3596), - [anon_sym_LTtemplate_GT] = ACTIONS(3596), - [anon_sym_DQUOTE] = ACTIONS(3596), - [anon_sym_SQUOTE] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_async] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_using] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_TILDE] = ACTIONS(3596), - [anon_sym_void] = ACTIONS(3596), - [anon_sym_delete] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3596), - [anon_sym_DASH_DASH] = ACTIONS(3596), + [1459] = { + [sym_comment] = STATE(1459), + [sym_identifier] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_RBRACE] = ACTIONS(3454), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_from] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_of] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_debugger] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LTtemplate_GT] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_function] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_LT] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3596), - [sym_number] = ACTIONS(3596), - [sym_private_property_identifier] = ACTIONS(3596), - [sym_this] = ACTIONS(3596), - [sym_super] = ACTIONS(3596), - [sym_true] = ACTIONS(3596), - [sym_false] = ACTIONS(3596), - [sym_null] = ACTIONS(3596), - [sym_undefined] = ACTIONS(3596), - [anon_sym_AT] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_readonly] = ACTIONS(3596), - [anon_sym_get] = ACTIONS(3596), - [anon_sym_set] = ACTIONS(3596), - [anon_sym_declare] = ACTIONS(3596), - [anon_sym_public] = ACTIONS(3596), - [anon_sym_private] = ACTIONS(3596), - [anon_sym_protected] = ACTIONS(3596), - [anon_sym_override] = ACTIONS(3596), - [anon_sym_module] = ACTIONS(3596), - [anon_sym_any] = ACTIONS(3596), - [anon_sym_number] = ACTIONS(3596), - [anon_sym_boolean] = ACTIONS(3596), - [anon_sym_string] = ACTIONS(3596), - [anon_sym_symbol] = ACTIONS(3596), - [anon_sym_object] = ACTIONS(3596), - [anon_sym_property] = ACTIONS(3596), - [anon_sym_signal] = ACTIONS(3596), - [anon_sym_on] = ACTIONS(3596), - [anon_sym_required] = ACTIONS(3596), - [anon_sym_component] = ACTIONS(3596), - [anon_sym_abstract] = ACTIONS(3596), - [anon_sym_interface] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), + [anon_sym_BQUOTE] = ACTIONS(3454), + [sym_number] = ACTIONS(3454), + [sym_private_property_identifier] = ACTIONS(3454), + [sym_this] = ACTIONS(3454), + [sym_super] = ACTIONS(3454), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [anon_sym_AT] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_get] = ACTIONS(3454), + [anon_sym_set] = ACTIONS(3454), + [anon_sym_declare] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_override] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_any] = ACTIONS(3454), + [anon_sym_number] = ACTIONS(3454), + [anon_sym_boolean] = ACTIONS(3454), + [anon_sym_string] = ACTIONS(3454), + [anon_sym_symbol] = ACTIONS(3454), + [anon_sym_object] = ACTIONS(3454), + [anon_sym_property] = ACTIONS(3454), + [anon_sym_signal] = ACTIONS(3454), + [anon_sym_on] = ACTIONS(3454), + [anon_sym_required] = ACTIONS(3454), + [anon_sym_component] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [sym__automatic_semicolon] = ACTIONS(3456), [sym_html_comment] = ACTIONS(5), }, - [1475] = { - [sym_comment] = STATE(1475), - [sym_identifier] = ACTIONS(3596), - [anon_sym_export] = ACTIONS(3596), - [anon_sym_type] = ACTIONS(3596), - [anon_sym_namespace] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3596), - [anon_sym_RBRACE] = ACTIONS(3596), - [anon_sym_typeof] = ACTIONS(3596), - [anon_sym_import] = ACTIONS(3596), - [anon_sym_from] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_let] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3596), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_await] = ACTIONS(3596), - [anon_sym_of] = ACTIONS(3596), - [anon_sym_while] = ACTIONS(3596), - [anon_sym_do] = ACTIONS(3596), - [anon_sym_try] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_debugger] = ACTIONS(3596), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_throw] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3596), - [anon_sym_LTtemplate_GT] = ACTIONS(3596), - [anon_sym_DQUOTE] = ACTIONS(3596), - [anon_sym_SQUOTE] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_async] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_using] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_TILDE] = ACTIONS(3596), - [anon_sym_void] = ACTIONS(3596), - [anon_sym_delete] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3596), - [anon_sym_DASH_DASH] = ACTIONS(3596), + [1460] = { + [sym_comment] = STATE(1460), + [sym_identifier] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_type] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3632), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_typeof] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_from] = ACTIONS(3632), + [anon_sym_with] = ACTIONS(3632), + [anon_sym_var] = ACTIONS(3632), + [anon_sym_let] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_BANG] = ACTIONS(3632), + [anon_sym_else] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_LPAREN] = ACTIONS(3632), + [anon_sym_await] = ACTIONS(3632), + [anon_sym_of] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_debugger] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3632), + [anon_sym_yield] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_LTtemplate_GT] = ACTIONS(3632), + [anon_sym_DQUOTE] = ACTIONS(3632), + [anon_sym_SQUOTE] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_async] = ACTIONS(3632), + [anon_sym_function] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(3632), + [anon_sym_LT] = ACTIONS(3632), + [anon_sym_TILDE] = ACTIONS(3632), + [anon_sym_void] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_PLUS_PLUS] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3632), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3596), - [sym_number] = ACTIONS(3596), - [sym_private_property_identifier] = ACTIONS(3596), - [sym_this] = ACTIONS(3596), - [sym_super] = ACTIONS(3596), - [sym_true] = ACTIONS(3596), - [sym_false] = ACTIONS(3596), - [sym_null] = ACTIONS(3596), - [sym_undefined] = ACTIONS(3596), - [anon_sym_AT] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_readonly] = ACTIONS(3596), - [anon_sym_get] = ACTIONS(3596), - [anon_sym_set] = ACTIONS(3596), - [anon_sym_declare] = ACTIONS(3596), - [anon_sym_public] = ACTIONS(3596), - [anon_sym_private] = ACTIONS(3596), - [anon_sym_protected] = ACTIONS(3596), - [anon_sym_override] = ACTIONS(3596), - [anon_sym_module] = ACTIONS(3596), - [anon_sym_any] = ACTIONS(3596), - [anon_sym_number] = ACTIONS(3596), - [anon_sym_boolean] = ACTIONS(3596), - [anon_sym_string] = ACTIONS(3596), - [anon_sym_symbol] = ACTIONS(3596), - [anon_sym_object] = ACTIONS(3596), - [anon_sym_property] = ACTIONS(3596), - [anon_sym_signal] = ACTIONS(3596), - [anon_sym_on] = ACTIONS(3596), - [anon_sym_required] = ACTIONS(3596), - [anon_sym_component] = ACTIONS(3596), - [anon_sym_abstract] = ACTIONS(3596), - [anon_sym_interface] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), + [anon_sym_BQUOTE] = ACTIONS(3632), + [sym_number] = ACTIONS(3632), + [sym_private_property_identifier] = ACTIONS(3632), + [sym_this] = ACTIONS(3632), + [sym_super] = ACTIONS(3632), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [sym_null] = ACTIONS(3632), + [sym_undefined] = ACTIONS(3632), + [anon_sym_AT] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_readonly] = ACTIONS(3632), + [anon_sym_get] = ACTIONS(3632), + [anon_sym_set] = ACTIONS(3632), + [anon_sym_declare] = ACTIONS(3632), + [anon_sym_public] = ACTIONS(3632), + [anon_sym_private] = ACTIONS(3632), + [anon_sym_protected] = ACTIONS(3632), + [anon_sym_override] = ACTIONS(3632), + [anon_sym_module] = ACTIONS(3632), + [anon_sym_any] = ACTIONS(3632), + [anon_sym_number] = ACTIONS(3632), + [anon_sym_boolean] = ACTIONS(3632), + [anon_sym_string] = ACTIONS(3632), + [anon_sym_symbol] = ACTIONS(3632), + [anon_sym_object] = ACTIONS(3632), + [anon_sym_property] = ACTIONS(3632), + [anon_sym_signal] = ACTIONS(3632), + [anon_sym_on] = ACTIONS(3632), + [anon_sym_required] = ACTIONS(3632), + [anon_sym_component] = ACTIONS(3632), + [anon_sym_abstract] = ACTIONS(3632), + [anon_sym_interface] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), [sym_html_comment] = ACTIONS(5), }, - [1476] = { - [sym_comment] = STATE(1476), - [sym_identifier] = ACTIONS(3592), - [anon_sym_export] = ACTIONS(3592), - [anon_sym_type] = ACTIONS(3592), - [anon_sym_namespace] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_RBRACE] = ACTIONS(3592), - [anon_sym_typeof] = ACTIONS(3592), - [anon_sym_import] = ACTIONS(3592), - [anon_sym_from] = ACTIONS(3592), - [anon_sym_with] = ACTIONS(3592), - [anon_sym_var] = ACTIONS(3592), - [anon_sym_let] = ACTIONS(3592), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_BANG] = ACTIONS(3592), - [anon_sym_else] = ACTIONS(3592), - [anon_sym_if] = ACTIONS(3592), - [anon_sym_switch] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3592), - [anon_sym_await] = ACTIONS(3592), - [anon_sym_of] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3592), - [anon_sym_do] = ACTIONS(3592), - [anon_sym_try] = ACTIONS(3592), - [anon_sym_break] = ACTIONS(3592), - [anon_sym_continue] = ACTIONS(3592), - [anon_sym_debugger] = ACTIONS(3592), - [anon_sym_return] = ACTIONS(3592), - [anon_sym_throw] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3592), - [anon_sym_LTtemplate_GT] = ACTIONS(3592), - [anon_sym_DQUOTE] = ACTIONS(3592), - [anon_sym_SQUOTE] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_async] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3592), - [anon_sym_using] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_SLASH] = ACTIONS(3592), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3592), - [anon_sym_void] = ACTIONS(3592), - [anon_sym_delete] = ACTIONS(3592), - [anon_sym_PLUS_PLUS] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3592), + [1461] = { + [sym_comment] = STATE(1461), + [sym_identifier] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_type] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_from] = ACTIONS(3524), + [anon_sym_with] = ACTIONS(3524), + [anon_sym_var] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3524), + [anon_sym_of] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_debugger] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_yield] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_LTtemplate_GT] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_async] = ACTIONS(3524), + [anon_sym_function] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_void] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3524), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3592), - [sym_number] = ACTIONS(3592), - [sym_private_property_identifier] = ACTIONS(3592), - [sym_this] = ACTIONS(3592), - [sym_super] = ACTIONS(3592), - [sym_true] = ACTIONS(3592), - [sym_false] = ACTIONS(3592), - [sym_null] = ACTIONS(3592), - [sym_undefined] = ACTIONS(3592), - [anon_sym_AT] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_readonly] = ACTIONS(3592), - [anon_sym_get] = ACTIONS(3592), - [anon_sym_set] = ACTIONS(3592), - [anon_sym_declare] = ACTIONS(3592), - [anon_sym_public] = ACTIONS(3592), - [anon_sym_private] = ACTIONS(3592), - [anon_sym_protected] = ACTIONS(3592), - [anon_sym_override] = ACTIONS(3592), - [anon_sym_module] = ACTIONS(3592), - [anon_sym_any] = ACTIONS(3592), - [anon_sym_number] = ACTIONS(3592), - [anon_sym_boolean] = ACTIONS(3592), - [anon_sym_string] = ACTIONS(3592), - [anon_sym_symbol] = ACTIONS(3592), - [anon_sym_object] = ACTIONS(3592), - [anon_sym_property] = ACTIONS(3592), - [anon_sym_signal] = ACTIONS(3592), - [anon_sym_on] = ACTIONS(3592), - [anon_sym_required] = ACTIONS(3592), - [anon_sym_component] = ACTIONS(3592), - [anon_sym_abstract] = ACTIONS(3592), - [anon_sym_interface] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), + [anon_sym_BQUOTE] = ACTIONS(3524), + [sym_number] = ACTIONS(3524), + [sym_private_property_identifier] = ACTIONS(3524), + [sym_this] = ACTIONS(3524), + [sym_super] = ACTIONS(3524), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [sym_null] = ACTIONS(3524), + [sym_undefined] = ACTIONS(3524), + [anon_sym_AT] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_readonly] = ACTIONS(3524), + [anon_sym_get] = ACTIONS(3524), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_declare] = ACTIONS(3524), + [anon_sym_public] = ACTIONS(3524), + [anon_sym_private] = ACTIONS(3524), + [anon_sym_protected] = ACTIONS(3524), + [anon_sym_override] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_any] = ACTIONS(3524), + [anon_sym_number] = ACTIONS(3524), + [anon_sym_boolean] = ACTIONS(3524), + [anon_sym_string] = ACTIONS(3524), + [anon_sym_symbol] = ACTIONS(3524), + [anon_sym_object] = ACTIONS(3524), + [anon_sym_property] = ACTIONS(3524), + [anon_sym_signal] = ACTIONS(3524), + [anon_sym_on] = ACTIONS(3524), + [anon_sym_required] = ACTIONS(3524), + [anon_sym_component] = ACTIONS(3524), + [anon_sym_abstract] = ACTIONS(3524), + [anon_sym_interface] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), [sym_html_comment] = ACTIONS(5), }, - [1477] = { - [sym_comment] = STATE(1477), - [sym_identifier] = ACTIONS(3672), - [anon_sym_export] = ACTIONS(3672), - [anon_sym_type] = ACTIONS(3672), - [anon_sym_namespace] = ACTIONS(3672), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_typeof] = ACTIONS(3672), - [anon_sym_import] = ACTIONS(3672), - [anon_sym_from] = ACTIONS(3672), - [anon_sym_with] = ACTIONS(3672), - [anon_sym_var] = ACTIONS(3672), - [anon_sym_let] = ACTIONS(3672), - [anon_sym_const] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(3672), - [anon_sym_else] = ACTIONS(3672), - [anon_sym_if] = ACTIONS(3672), - [anon_sym_switch] = ACTIONS(3672), - [anon_sym_for] = ACTIONS(3672), - [anon_sym_LPAREN] = ACTIONS(3672), - [anon_sym_await] = ACTIONS(3672), - [anon_sym_of] = ACTIONS(3672), - [anon_sym_while] = ACTIONS(3672), - [anon_sym_do] = ACTIONS(3672), - [anon_sym_try] = ACTIONS(3672), - [anon_sym_break] = ACTIONS(3672), - [anon_sym_continue] = ACTIONS(3672), - [anon_sym_debugger] = ACTIONS(3672), - [anon_sym_return] = ACTIONS(3672), - [anon_sym_throw] = ACTIONS(3672), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym_yield] = ACTIONS(3672), - [anon_sym_LBRACK] = ACTIONS(3672), - [anon_sym_LTtemplate_GT] = ACTIONS(3672), - [anon_sym_DQUOTE] = ACTIONS(3672), - [anon_sym_SQUOTE] = ACTIONS(3672), - [anon_sym_class] = ACTIONS(3672), - [anon_sym_async] = ACTIONS(3672), - [anon_sym_function] = ACTIONS(3672), - [anon_sym_new] = ACTIONS(3672), - [anon_sym_using] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3672), - [anon_sym_SLASH] = ACTIONS(3672), - [anon_sym_LT] = ACTIONS(3672), - [anon_sym_TILDE] = ACTIONS(3672), - [anon_sym_void] = ACTIONS(3672), - [anon_sym_delete] = ACTIONS(3672), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3672), - [sym_number] = ACTIONS(3672), - [sym_private_property_identifier] = ACTIONS(3672), - [sym_this] = ACTIONS(3672), - [sym_super] = ACTIONS(3672), - [sym_true] = ACTIONS(3672), - [sym_false] = ACTIONS(3672), - [sym_null] = ACTIONS(3672), - [sym_undefined] = ACTIONS(3672), - [anon_sym_AT] = ACTIONS(3672), - [anon_sym_static] = ACTIONS(3672), - [anon_sym_readonly] = ACTIONS(3672), - [anon_sym_get] = ACTIONS(3672), - [anon_sym_set] = ACTIONS(3672), - [anon_sym_declare] = ACTIONS(3672), - [anon_sym_public] = ACTIONS(3672), - [anon_sym_private] = ACTIONS(3672), - [anon_sym_protected] = ACTIONS(3672), - [anon_sym_override] = ACTIONS(3672), - [anon_sym_module] = ACTIONS(3672), - [anon_sym_any] = ACTIONS(3672), - [anon_sym_number] = ACTIONS(3672), - [anon_sym_boolean] = ACTIONS(3672), - [anon_sym_string] = ACTIONS(3672), - [anon_sym_symbol] = ACTIONS(3672), - [anon_sym_object] = ACTIONS(3672), - [anon_sym_property] = ACTIONS(3672), - [anon_sym_signal] = ACTIONS(3672), - [anon_sym_on] = ACTIONS(3672), - [anon_sym_required] = ACTIONS(3672), - [anon_sym_component] = ACTIONS(3672), - [anon_sym_abstract] = ACTIONS(3672), - [anon_sym_interface] = ACTIONS(3672), - [anon_sym_enum] = ACTIONS(3672), + [1462] = { + [sym_comment] = STATE(1462), + [sym_identifier] = ACTIONS(3440), + [anon_sym_export] = ACTIONS(3440), + [anon_sym_type] = ACTIONS(3440), + [anon_sym_namespace] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_typeof] = ACTIONS(3440), + [anon_sym_import] = ACTIONS(3440), + [anon_sym_from] = ACTIONS(3440), + [anon_sym_with] = ACTIONS(3440), + [anon_sym_var] = ACTIONS(3440), + [anon_sym_let] = ACTIONS(3440), + [anon_sym_const] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_switch] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_await] = ACTIONS(3440), + [anon_sym_of] = ACTIONS(3440), + [anon_sym_while] = ACTIONS(3440), + [anon_sym_do] = ACTIONS(3440), + [anon_sym_try] = ACTIONS(3440), + [anon_sym_break] = ACTIONS(3440), + [anon_sym_continue] = ACTIONS(3440), + [anon_sym_debugger] = ACTIONS(3440), + [anon_sym_return] = ACTIONS(3440), + [anon_sym_throw] = ACTIONS(3440), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_finally] = ACTIONS(3440), + [anon_sym_yield] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_LTtemplate_GT] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [anon_sym_class] = ACTIONS(3440), + [anon_sym_async] = ACTIONS(3440), + [anon_sym_function] = ACTIONS(3440), + [anon_sym_new] = ACTIONS(3440), + [anon_sym_using] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_SLASH] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_void] = ACTIONS(3440), + [anon_sym_delete] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3440), + [sym_number] = ACTIONS(3440), + [sym_private_property_identifier] = ACTIONS(3440), + [sym_this] = ACTIONS(3440), + [sym_super] = ACTIONS(3440), + [sym_true] = ACTIONS(3440), + [sym_false] = ACTIONS(3440), + [sym_null] = ACTIONS(3440), + [sym_undefined] = ACTIONS(3440), + [anon_sym_AT] = ACTIONS(3440), + [anon_sym_static] = ACTIONS(3440), + [anon_sym_readonly] = ACTIONS(3440), + [anon_sym_get] = ACTIONS(3440), + [anon_sym_set] = ACTIONS(3440), + [anon_sym_declare] = ACTIONS(3440), + [anon_sym_public] = ACTIONS(3440), + [anon_sym_private] = ACTIONS(3440), + [anon_sym_protected] = ACTIONS(3440), + [anon_sym_override] = ACTIONS(3440), + [anon_sym_module] = ACTIONS(3440), + [anon_sym_any] = ACTIONS(3440), + [anon_sym_number] = ACTIONS(3440), + [anon_sym_boolean] = ACTIONS(3440), + [anon_sym_string] = ACTIONS(3440), + [anon_sym_symbol] = ACTIONS(3440), + [anon_sym_object] = ACTIONS(3440), + [anon_sym_property] = ACTIONS(3440), + [anon_sym_signal] = ACTIONS(3440), + [anon_sym_on] = ACTIONS(3440), + [anon_sym_required] = ACTIONS(3440), + [anon_sym_component] = ACTIONS(3440), + [anon_sym_abstract] = ACTIONS(3440), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), [sym_html_comment] = ACTIONS(5), }, - [1478] = { - [sym_comment] = STATE(1478), - [sym_identifier] = ACTIONS(3454), - [anon_sym_export] = ACTIONS(3454), - [anon_sym_type] = ACTIONS(3454), - [anon_sym_namespace] = ACTIONS(3454), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_RBRACE] = ACTIONS(3454), - [anon_sym_typeof] = ACTIONS(3454), - [anon_sym_import] = ACTIONS(3454), - [anon_sym_from] = ACTIONS(3454), - [anon_sym_with] = ACTIONS(3454), - [anon_sym_var] = ACTIONS(3454), - [anon_sym_let] = ACTIONS(3454), - [anon_sym_const] = ACTIONS(3454), - [anon_sym_BANG] = ACTIONS(3454), - [anon_sym_if] = ACTIONS(3454), - [anon_sym_switch] = ACTIONS(3454), - [anon_sym_for] = ACTIONS(3454), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_await] = ACTIONS(3454), - [anon_sym_of] = ACTIONS(3454), - [anon_sym_while] = ACTIONS(3454), - [anon_sym_do] = ACTIONS(3454), - [anon_sym_try] = ACTIONS(3454), - [anon_sym_break] = ACTIONS(3454), - [anon_sym_continue] = ACTIONS(3454), - [anon_sym_debugger] = ACTIONS(3454), - [anon_sym_return] = ACTIONS(3454), - [anon_sym_throw] = ACTIONS(3454), - [anon_sym_SEMI] = ACTIONS(3728), - [anon_sym_yield] = ACTIONS(3454), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LTtemplate_GT] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_SQUOTE] = ACTIONS(3454), - [anon_sym_class] = ACTIONS(3454), - [anon_sym_async] = ACTIONS(3454), - [anon_sym_function] = ACTIONS(3454), - [anon_sym_new] = ACTIONS(3454), - [anon_sym_using] = ACTIONS(3454), - [anon_sym_PLUS] = ACTIONS(3454), - [anon_sym_DASH] = ACTIONS(3454), - [anon_sym_SLASH] = ACTIONS(3454), - [anon_sym_LT] = ACTIONS(3454), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_void] = ACTIONS(3454), - [anon_sym_delete] = ACTIONS(3454), - [anon_sym_PLUS_PLUS] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3454), + [1463] = { + [sym_comment] = STATE(1463), + [sym_identifier] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_type] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_with] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3528), + [anon_sym_of] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_debugger] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_LTtemplate_GT] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_function] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_SLASH] = ACTIONS(3528), + [anon_sym_LT] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_void] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3528), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3454), - [sym_number] = ACTIONS(3454), - [sym_private_property_identifier] = ACTIONS(3454), - [sym_this] = ACTIONS(3454), - [sym_super] = ACTIONS(3454), - [sym_true] = ACTIONS(3454), - [sym_false] = ACTIONS(3454), - [sym_null] = ACTIONS(3454), - [sym_undefined] = ACTIONS(3454), - [anon_sym_AT] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3454), - [anon_sym_readonly] = ACTIONS(3454), - [anon_sym_get] = ACTIONS(3454), - [anon_sym_set] = ACTIONS(3454), - [anon_sym_declare] = ACTIONS(3454), - [anon_sym_public] = ACTIONS(3454), - [anon_sym_private] = ACTIONS(3454), - [anon_sym_protected] = ACTIONS(3454), - [anon_sym_override] = ACTIONS(3454), - [anon_sym_module] = ACTIONS(3454), - [anon_sym_any] = ACTIONS(3454), - [anon_sym_number] = ACTIONS(3454), - [anon_sym_boolean] = ACTIONS(3454), - [anon_sym_string] = ACTIONS(3454), - [anon_sym_symbol] = ACTIONS(3454), - [anon_sym_object] = ACTIONS(3454), - [anon_sym_property] = ACTIONS(3454), - [anon_sym_signal] = ACTIONS(3454), - [anon_sym_on] = ACTIONS(3454), - [anon_sym_required] = ACTIONS(3454), - [anon_sym_component] = ACTIONS(3454), - [anon_sym_abstract] = ACTIONS(3454), - [anon_sym_interface] = ACTIONS(3454), - [anon_sym_enum] = ACTIONS(3454), - [sym__automatic_semicolon] = ACTIONS(3730), + [anon_sym_BQUOTE] = ACTIONS(3528), + [sym_number] = ACTIONS(3528), + [sym_private_property_identifier] = ACTIONS(3528), + [sym_this] = ACTIONS(3528), + [sym_super] = ACTIONS(3528), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [sym_null] = ACTIONS(3528), + [sym_undefined] = ACTIONS(3528), + [anon_sym_AT] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3528), + [anon_sym_declare] = ACTIONS(3528), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_module] = ACTIONS(3528), + [anon_sym_any] = ACTIONS(3528), + [anon_sym_number] = ACTIONS(3528), + [anon_sym_boolean] = ACTIONS(3528), + [anon_sym_string] = ACTIONS(3528), + [anon_sym_symbol] = ACTIONS(3528), + [anon_sym_object] = ACTIONS(3528), + [anon_sym_property] = ACTIONS(3528), + [anon_sym_signal] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_component] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), [sym_html_comment] = ACTIONS(5), }, - [1479] = { - [sym_comment] = STATE(1479), - [sym_identifier] = ACTIONS(3684), - [anon_sym_export] = ACTIONS(3684), - [anon_sym_type] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3684), - [anon_sym_RBRACE] = ACTIONS(3684), - [anon_sym_typeof] = ACTIONS(3684), - [anon_sym_import] = ACTIONS(3684), - [anon_sym_from] = ACTIONS(3684), - [anon_sym_with] = ACTIONS(3684), - [anon_sym_var] = ACTIONS(3684), - [anon_sym_let] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_else] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_LPAREN] = ACTIONS(3684), - [anon_sym_await] = ACTIONS(3684), - [anon_sym_of] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_debugger] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3684), - [anon_sym_yield] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_LTtemplate_GT] = ACTIONS(3684), - [anon_sym_DQUOTE] = ACTIONS(3684), - [anon_sym_SQUOTE] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_async] = ACTIONS(3684), - [anon_sym_function] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_TILDE] = ACTIONS(3684), - [anon_sym_void] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3684), + [1464] = { + [sym_comment] = STATE(1464), + [sym_identifier] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_type] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3494), + [anon_sym_RBRACE] = ACTIONS(3494), + [anon_sym_typeof] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_with] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_else] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3494), + [anon_sym_await] = ACTIONS(3494), + [anon_sym_of] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_debugger] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LTtemplate_GT] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(3494), + [anon_sym_SQUOTE] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_function] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_SLASH] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3494), + [anon_sym_TILDE] = ACTIONS(3494), + [anon_sym_void] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3684), - [sym_number] = ACTIONS(3684), - [sym_private_property_identifier] = ACTIONS(3684), - [sym_this] = ACTIONS(3684), - [sym_super] = ACTIONS(3684), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_AT] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_get] = ACTIONS(3684), - [anon_sym_set] = ACTIONS(3684), - [anon_sym_declare] = ACTIONS(3684), - [anon_sym_public] = ACTIONS(3684), - [anon_sym_private] = ACTIONS(3684), - [anon_sym_protected] = ACTIONS(3684), - [anon_sym_override] = ACTIONS(3684), - [anon_sym_module] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3684), - [anon_sym_number] = ACTIONS(3684), - [anon_sym_boolean] = ACTIONS(3684), - [anon_sym_string] = ACTIONS(3684), - [anon_sym_symbol] = ACTIONS(3684), - [anon_sym_object] = ACTIONS(3684), - [anon_sym_property] = ACTIONS(3684), - [anon_sym_signal] = ACTIONS(3684), - [anon_sym_on] = ACTIONS(3684), - [anon_sym_required] = ACTIONS(3684), - [anon_sym_component] = ACTIONS(3684), - [anon_sym_abstract] = ACTIONS(3684), - [anon_sym_interface] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), + [anon_sym_BQUOTE] = ACTIONS(3494), + [sym_number] = ACTIONS(3494), + [sym_private_property_identifier] = ACTIONS(3494), + [sym_this] = ACTIONS(3494), + [sym_super] = ACTIONS(3494), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [sym_null] = ACTIONS(3494), + [sym_undefined] = ACTIONS(3494), + [anon_sym_AT] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3494), + [anon_sym_set] = ACTIONS(3494), + [anon_sym_declare] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_any] = ACTIONS(3494), + [anon_sym_number] = ACTIONS(3494), + [anon_sym_boolean] = ACTIONS(3494), + [anon_sym_string] = ACTIONS(3494), + [anon_sym_symbol] = ACTIONS(3494), + [anon_sym_object] = ACTIONS(3494), + [anon_sym_property] = ACTIONS(3494), + [anon_sym_signal] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_component] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), [sym_html_comment] = ACTIONS(5), }, - [1480] = { - [sym_comment] = STATE(1480), - [sym_identifier] = ACTIONS(3628), - [anon_sym_export] = ACTIONS(3628), - [anon_sym_type] = ACTIONS(3628), - [anon_sym_namespace] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_typeof] = ACTIONS(3628), - [anon_sym_import] = ACTIONS(3628), - [anon_sym_from] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3628), - [anon_sym_var] = ACTIONS(3628), - [anon_sym_let] = ACTIONS(3628), - [anon_sym_const] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_else] = ACTIONS(3628), - [anon_sym_if] = ACTIONS(3628), - [anon_sym_switch] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_await] = ACTIONS(3628), - [anon_sym_of] = ACTIONS(3628), - [anon_sym_while] = ACTIONS(3628), - [anon_sym_do] = ACTIONS(3628), - [anon_sym_try] = ACTIONS(3628), - [anon_sym_break] = ACTIONS(3628), - [anon_sym_continue] = ACTIONS(3628), - [anon_sym_debugger] = ACTIONS(3628), - [anon_sym_return] = ACTIONS(3628), - [anon_sym_throw] = ACTIONS(3628), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3628), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LTtemplate_GT] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_class] = ACTIONS(3628), - [anon_sym_async] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3628), - [anon_sym_using] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_SLASH] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_void] = ACTIONS(3628), - [anon_sym_delete] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), + [1465] = { + [sym_comment] = STATE(1465), + [sym_identifier] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_type] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_typeof] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_var] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_else] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_await] = ACTIONS(3686), + [anon_sym_of] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_debugger] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LTtemplate_GT] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_async] = ACTIONS(3686), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_void] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3628), - [sym_number] = ACTIONS(3628), - [sym_private_property_identifier] = ACTIONS(3628), - [sym_this] = ACTIONS(3628), - [sym_super] = ACTIONS(3628), - [sym_true] = ACTIONS(3628), - [sym_false] = ACTIONS(3628), - [sym_null] = ACTIONS(3628), - [sym_undefined] = ACTIONS(3628), - [anon_sym_AT] = ACTIONS(3628), - [anon_sym_static] = ACTIONS(3628), - [anon_sym_readonly] = ACTIONS(3628), - [anon_sym_get] = ACTIONS(3628), - [anon_sym_set] = ACTIONS(3628), - [anon_sym_declare] = ACTIONS(3628), - [anon_sym_public] = ACTIONS(3628), - [anon_sym_private] = ACTIONS(3628), - [anon_sym_protected] = ACTIONS(3628), - [anon_sym_override] = ACTIONS(3628), - [anon_sym_module] = ACTIONS(3628), - [anon_sym_any] = ACTIONS(3628), - [anon_sym_number] = ACTIONS(3628), - [anon_sym_boolean] = ACTIONS(3628), - [anon_sym_string] = ACTIONS(3628), - [anon_sym_symbol] = ACTIONS(3628), - [anon_sym_object] = ACTIONS(3628), - [anon_sym_property] = ACTIONS(3628), - [anon_sym_signal] = ACTIONS(3628), - [anon_sym_on] = ACTIONS(3628), - [anon_sym_required] = ACTIONS(3628), - [anon_sym_component] = ACTIONS(3628), - [anon_sym_abstract] = ACTIONS(3628), - [anon_sym_interface] = ACTIONS(3628), - [anon_sym_enum] = ACTIONS(3628), - [sym_html_comment] = ACTIONS(5), - }, - [1481] = { - [sym_comment] = STATE(1481), - [sym_identifier] = ACTIONS(3484), - [anon_sym_export] = ACTIONS(3484), - [anon_sym_type] = ACTIONS(3484), - [anon_sym_namespace] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3484), - [anon_sym_RBRACE] = ACTIONS(3484), - [anon_sym_typeof] = ACTIONS(3484), - [anon_sym_import] = ACTIONS(3484), - [anon_sym_from] = ACTIONS(3484), - [anon_sym_with] = ACTIONS(3484), - [anon_sym_var] = ACTIONS(3484), - [anon_sym_let] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3484), - [anon_sym_else] = ACTIONS(3484), - [anon_sym_if] = ACTIONS(3484), - [anon_sym_switch] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_await] = ACTIONS(3484), - [anon_sym_of] = ACTIONS(3484), - [anon_sym_while] = ACTIONS(3484), - [anon_sym_do] = ACTIONS(3484), - [anon_sym_try] = ACTIONS(3484), - [anon_sym_break] = ACTIONS(3484), - [anon_sym_continue] = ACTIONS(3484), - [anon_sym_debugger] = ACTIONS(3484), - [anon_sym_return] = ACTIONS(3484), - [anon_sym_throw] = ACTIONS(3484), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3484), - [anon_sym_LBRACK] = ACTIONS(3484), - [anon_sym_LTtemplate_GT] = ACTIONS(3484), - [anon_sym_DQUOTE] = ACTIONS(3484), - [anon_sym_SQUOTE] = ACTIONS(3484), - [anon_sym_class] = ACTIONS(3484), - [anon_sym_async] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3484), - [anon_sym_using] = ACTIONS(3484), - [anon_sym_PLUS] = ACTIONS(3484), - [anon_sym_DASH] = ACTIONS(3484), - [anon_sym_SLASH] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_TILDE] = ACTIONS(3484), - [anon_sym_void] = ACTIONS(3484), - [anon_sym_delete] = ACTIONS(3484), - [anon_sym_PLUS_PLUS] = ACTIONS(3484), - [anon_sym_DASH_DASH] = ACTIONS(3484), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3484), - [sym_number] = ACTIONS(3484), - [sym_private_property_identifier] = ACTIONS(3484), - [sym_this] = ACTIONS(3484), - [sym_super] = ACTIONS(3484), - [sym_true] = ACTIONS(3484), - [sym_false] = ACTIONS(3484), - [sym_null] = ACTIONS(3484), - [sym_undefined] = ACTIONS(3484), - [anon_sym_AT] = ACTIONS(3484), - [anon_sym_static] = ACTIONS(3484), - [anon_sym_readonly] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3484), - [anon_sym_set] = ACTIONS(3484), - [anon_sym_declare] = ACTIONS(3484), - [anon_sym_public] = ACTIONS(3484), - [anon_sym_private] = ACTIONS(3484), - [anon_sym_protected] = ACTIONS(3484), - [anon_sym_override] = ACTIONS(3484), - [anon_sym_module] = ACTIONS(3484), - [anon_sym_any] = ACTIONS(3484), - [anon_sym_number] = ACTIONS(3484), - [anon_sym_boolean] = ACTIONS(3484), - [anon_sym_string] = ACTIONS(3484), - [anon_sym_symbol] = ACTIONS(3484), - [anon_sym_object] = ACTIONS(3484), - [anon_sym_property] = ACTIONS(3484), - [anon_sym_signal] = ACTIONS(3484), - [anon_sym_on] = ACTIONS(3484), - [anon_sym_required] = ACTIONS(3484), - [anon_sym_component] = ACTIONS(3484), - [anon_sym_abstract] = ACTIONS(3484), - [anon_sym_interface] = ACTIONS(3484), - [anon_sym_enum] = ACTIONS(3484), + [anon_sym_BQUOTE] = ACTIONS(3686), + [sym_number] = ACTIONS(3686), + [sym_private_property_identifier] = ACTIONS(3686), + [sym_this] = ACTIONS(3686), + [sym_super] = ACTIONS(3686), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [sym_null] = ACTIONS(3686), + [sym_undefined] = ACTIONS(3686), + [anon_sym_AT] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_readonly] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(3686), + [anon_sym_set] = ACTIONS(3686), + [anon_sym_declare] = ACTIONS(3686), + [anon_sym_public] = ACTIONS(3686), + [anon_sym_private] = ACTIONS(3686), + [anon_sym_protected] = ACTIONS(3686), + [anon_sym_override] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_any] = ACTIONS(3686), + [anon_sym_number] = ACTIONS(3686), + [anon_sym_boolean] = ACTIONS(3686), + [anon_sym_string] = ACTIONS(3686), + [anon_sym_symbol] = ACTIONS(3686), + [anon_sym_object] = ACTIONS(3686), + [anon_sym_property] = ACTIONS(3686), + [anon_sym_signal] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_required] = ACTIONS(3686), + [anon_sym_component] = ACTIONS(3686), + [anon_sym_abstract] = ACTIONS(3686), + [anon_sym_interface] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), [sym_html_comment] = ACTIONS(5), }, - [1482] = { - [sym_comment] = STATE(1482), - [sym_identifier] = ACTIONS(3516), - [anon_sym_export] = ACTIONS(3516), - [anon_sym_type] = ACTIONS(3516), - [anon_sym_namespace] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_RBRACE] = ACTIONS(3516), - [anon_sym_typeof] = ACTIONS(3516), - [anon_sym_import] = ACTIONS(3516), - [anon_sym_from] = ACTIONS(3516), - [anon_sym_with] = ACTIONS(3516), - [anon_sym_var] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_const] = ACTIONS(3516), - [anon_sym_BANG] = ACTIONS(3516), - [anon_sym_else] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_switch] = ACTIONS(3516), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_await] = ACTIONS(3516), - [anon_sym_of] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_break] = ACTIONS(3516), - [anon_sym_continue] = ACTIONS(3516), - [anon_sym_debugger] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_throw] = ACTIONS(3516), - [anon_sym_SEMI] = ACTIONS(3516), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LTtemplate_GT] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_SQUOTE] = ACTIONS(3516), - [anon_sym_class] = ACTIONS(3516), - [anon_sym_async] = ACTIONS(3516), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_using] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_void] = ACTIONS(3516), - [anon_sym_delete] = ACTIONS(3516), - [anon_sym_PLUS_PLUS] = ACTIONS(3516), - [anon_sym_DASH_DASH] = ACTIONS(3516), + [1466] = { + [sym_comment] = STATE(1466), + [sym_identifier] = ACTIONS(3690), + [anon_sym_export] = ACTIONS(3690), + [anon_sym_type] = ACTIONS(3690), + [anon_sym_namespace] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_typeof] = ACTIONS(3690), + [anon_sym_import] = ACTIONS(3690), + [anon_sym_from] = ACTIONS(3690), + [anon_sym_with] = ACTIONS(3690), + [anon_sym_var] = ACTIONS(3690), + [anon_sym_let] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_else] = ACTIONS(3690), + [anon_sym_if] = ACTIONS(3690), + [anon_sym_switch] = ACTIONS(3690), + [anon_sym_for] = ACTIONS(3690), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_await] = ACTIONS(3690), + [anon_sym_of] = ACTIONS(3690), + [anon_sym_while] = ACTIONS(3690), + [anon_sym_do] = ACTIONS(3690), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_break] = ACTIONS(3690), + [anon_sym_continue] = ACTIONS(3690), + [anon_sym_debugger] = ACTIONS(3690), + [anon_sym_return] = ACTIONS(3690), + [anon_sym_throw] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym_yield] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_LTtemplate_GT] = ACTIONS(3690), + [anon_sym_DQUOTE] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_class] = ACTIONS(3690), + [anon_sym_async] = ACTIONS(3690), + [anon_sym_function] = ACTIONS(3690), + [anon_sym_new] = ACTIONS(3690), + [anon_sym_using] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_SLASH] = ACTIONS(3690), + [anon_sym_LT] = ACTIONS(3690), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_void] = ACTIONS(3690), + [anon_sym_delete] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3690), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3516), - [sym_number] = ACTIONS(3516), - [sym_private_property_identifier] = ACTIONS(3516), - [sym_this] = ACTIONS(3516), - [sym_super] = ACTIONS(3516), - [sym_true] = ACTIONS(3516), - [sym_false] = ACTIONS(3516), - [sym_null] = ACTIONS(3516), - [sym_undefined] = ACTIONS(3516), - [anon_sym_AT] = ACTIONS(3516), - [anon_sym_static] = ACTIONS(3516), - [anon_sym_readonly] = ACTIONS(3516), - [anon_sym_get] = ACTIONS(3516), - [anon_sym_set] = ACTIONS(3516), - [anon_sym_declare] = ACTIONS(3516), - [anon_sym_public] = ACTIONS(3516), - [anon_sym_private] = ACTIONS(3516), - [anon_sym_protected] = ACTIONS(3516), - [anon_sym_override] = ACTIONS(3516), - [anon_sym_module] = ACTIONS(3516), - [anon_sym_any] = ACTIONS(3516), - [anon_sym_number] = ACTIONS(3516), - [anon_sym_boolean] = ACTIONS(3516), - [anon_sym_string] = ACTIONS(3516), - [anon_sym_symbol] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(3516), - [anon_sym_property] = ACTIONS(3516), - [anon_sym_signal] = ACTIONS(3516), - [anon_sym_on] = ACTIONS(3516), - [anon_sym_required] = ACTIONS(3516), - [anon_sym_component] = ACTIONS(3516), - [anon_sym_abstract] = ACTIONS(3516), - [anon_sym_interface] = ACTIONS(3516), - [anon_sym_enum] = ACTIONS(3516), + [anon_sym_BQUOTE] = ACTIONS(3690), + [sym_number] = ACTIONS(3690), + [sym_private_property_identifier] = ACTIONS(3690), + [sym_this] = ACTIONS(3690), + [sym_super] = ACTIONS(3690), + [sym_true] = ACTIONS(3690), + [sym_false] = ACTIONS(3690), + [sym_null] = ACTIONS(3690), + [sym_undefined] = ACTIONS(3690), + [anon_sym_AT] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_readonly] = ACTIONS(3690), + [anon_sym_get] = ACTIONS(3690), + [anon_sym_set] = ACTIONS(3690), + [anon_sym_declare] = ACTIONS(3690), + [anon_sym_public] = ACTIONS(3690), + [anon_sym_private] = ACTIONS(3690), + [anon_sym_protected] = ACTIONS(3690), + [anon_sym_override] = ACTIONS(3690), + [anon_sym_module] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3690), + [anon_sym_number] = ACTIONS(3690), + [anon_sym_boolean] = ACTIONS(3690), + [anon_sym_string] = ACTIONS(3690), + [anon_sym_symbol] = ACTIONS(3690), + [anon_sym_object] = ACTIONS(3690), + [anon_sym_property] = ACTIONS(3690), + [anon_sym_signal] = ACTIONS(3690), + [anon_sym_on] = ACTIONS(3690), + [anon_sym_required] = ACTIONS(3690), + [anon_sym_component] = ACTIONS(3690), + [anon_sym_abstract] = ACTIONS(3690), + [anon_sym_interface] = ACTIONS(3690), + [anon_sym_enum] = ACTIONS(3690), [sym_html_comment] = ACTIONS(5), }, - [1483] = { - [sym_comment] = STATE(1483), - [sym_identifier] = ACTIONS(3496), - [anon_sym_export] = ACTIONS(3496), - [anon_sym_type] = ACTIONS(3496), - [anon_sym_namespace] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(3496), - [anon_sym_RBRACE] = ACTIONS(3496), - [anon_sym_typeof] = ACTIONS(3496), - [anon_sym_import] = ACTIONS(3496), - [anon_sym_from] = ACTIONS(3496), - [anon_sym_with] = ACTIONS(3496), - [anon_sym_var] = ACTIONS(3496), - [anon_sym_let] = ACTIONS(3496), - [anon_sym_const] = ACTIONS(3496), - [anon_sym_BANG] = ACTIONS(3496), - [anon_sym_else] = ACTIONS(3496), - [anon_sym_if] = ACTIONS(3496), - [anon_sym_switch] = ACTIONS(3496), - [anon_sym_for] = ACTIONS(3496), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_await] = ACTIONS(3496), - [anon_sym_of] = ACTIONS(3496), - [anon_sym_while] = ACTIONS(3496), - [anon_sym_do] = ACTIONS(3496), - [anon_sym_try] = ACTIONS(3496), - [anon_sym_break] = ACTIONS(3496), - [anon_sym_continue] = ACTIONS(3496), - [anon_sym_debugger] = ACTIONS(3496), - [anon_sym_return] = ACTIONS(3496), - [anon_sym_throw] = ACTIONS(3496), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_yield] = ACTIONS(3496), - [anon_sym_LBRACK] = ACTIONS(3496), - [anon_sym_LTtemplate_GT] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(3496), - [anon_sym_SQUOTE] = ACTIONS(3496), - [anon_sym_class] = ACTIONS(3496), - [anon_sym_async] = ACTIONS(3496), - [anon_sym_function] = ACTIONS(3496), - [anon_sym_new] = ACTIONS(3496), - [anon_sym_using] = ACTIONS(3496), - [anon_sym_PLUS] = ACTIONS(3496), - [anon_sym_DASH] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(3496), - [anon_sym_void] = ACTIONS(3496), - [anon_sym_delete] = ACTIONS(3496), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3496), + [1467] = { + [sym_comment] = STATE(1467), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_else] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3496), - [sym_number] = ACTIONS(3496), - [sym_private_property_identifier] = ACTIONS(3496), - [sym_this] = ACTIONS(3496), - [sym_super] = ACTIONS(3496), - [sym_true] = ACTIONS(3496), - [sym_false] = ACTIONS(3496), - [sym_null] = ACTIONS(3496), - [sym_undefined] = ACTIONS(3496), - [anon_sym_AT] = ACTIONS(3496), - [anon_sym_static] = ACTIONS(3496), - [anon_sym_readonly] = ACTIONS(3496), - [anon_sym_get] = ACTIONS(3496), - [anon_sym_set] = ACTIONS(3496), - [anon_sym_declare] = ACTIONS(3496), - [anon_sym_public] = ACTIONS(3496), - [anon_sym_private] = ACTIONS(3496), - [anon_sym_protected] = ACTIONS(3496), - [anon_sym_override] = ACTIONS(3496), - [anon_sym_module] = ACTIONS(3496), - [anon_sym_any] = ACTIONS(3496), - [anon_sym_number] = ACTIONS(3496), - [anon_sym_boolean] = ACTIONS(3496), - [anon_sym_string] = ACTIONS(3496), - [anon_sym_symbol] = ACTIONS(3496), - [anon_sym_object] = ACTIONS(3496), - [anon_sym_property] = ACTIONS(3496), - [anon_sym_signal] = ACTIONS(3496), - [anon_sym_on] = ACTIONS(3496), - [anon_sym_required] = ACTIONS(3496), - [anon_sym_component] = ACTIONS(3496), - [anon_sym_abstract] = ACTIONS(3496), - [anon_sym_interface] = ACTIONS(3496), - [anon_sym_enum] = ACTIONS(3496), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), [sym_html_comment] = ACTIONS(5), }, - [1484] = { - [sym_comment] = STATE(1484), - [sym_identifier] = ACTIONS(3696), - [anon_sym_export] = ACTIONS(3696), - [anon_sym_type] = ACTIONS(3696), - [anon_sym_namespace] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_typeof] = ACTIONS(3696), - [anon_sym_import] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3696), - [anon_sym_let] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_BANG] = ACTIONS(3696), - [anon_sym_else] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_await] = ACTIONS(3696), - [anon_sym_of] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_debugger] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_throw] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_yield] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LTtemplate_GT] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3696), - [anon_sym_class] = ACTIONS(3696), - [anon_sym_async] = ACTIONS(3696), - [anon_sym_function] = ACTIONS(3696), - [anon_sym_new] = ACTIONS(3696), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3696), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_TILDE] = ACTIONS(3696), - [anon_sym_void] = ACTIONS(3696), - [anon_sym_delete] = ACTIONS(3696), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), + [1468] = { + [sym_comment] = STATE(1468), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_typeof] = ACTIONS(2442), + [anon_sym_import] = ACTIONS(2442), + [anon_sym_from] = ACTIONS(2442), + [anon_sym_with] = ACTIONS(2442), + [anon_sym_var] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_const] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_if] = ACTIONS(2442), + [anon_sym_switch] = ACTIONS(2442), + [anon_sym_for] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_await] = ACTIONS(2442), + [anon_sym_of] = ACTIONS(2442), + [anon_sym_while] = ACTIONS(2442), + [anon_sym_do] = ACTIONS(2442), + [anon_sym_try] = ACTIONS(2442), + [anon_sym_break] = ACTIONS(2442), + [anon_sym_continue] = ACTIONS(2442), + [anon_sym_debugger] = ACTIONS(2442), + [anon_sym_return] = ACTIONS(2442), + [anon_sym_throw] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_yield] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LTtemplate_GT] = ACTIONS(2442), + [anon_sym_DQUOTE] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2442), + [anon_sym_class] = ACTIONS(2442), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_new] = ACTIONS(2442), + [anon_sym_using] = ACTIONS(2442), + [anon_sym_PLUS] = ACTIONS(2442), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_SLASH] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_TILDE] = ACTIONS(2442), + [anon_sym_void] = ACTIONS(2442), + [anon_sym_delete] = ACTIONS(2442), + [anon_sym_PLUS_PLUS] = ACTIONS(2442), + [anon_sym_DASH_DASH] = ACTIONS(2442), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3696), - [sym_number] = ACTIONS(3696), - [sym_private_property_identifier] = ACTIONS(3696), - [sym_this] = ACTIONS(3696), - [sym_super] = ACTIONS(3696), - [sym_true] = ACTIONS(3696), - [sym_false] = ACTIONS(3696), - [sym_null] = ACTIONS(3696), - [sym_undefined] = ACTIONS(3696), - [anon_sym_AT] = ACTIONS(3696), - [anon_sym_static] = ACTIONS(3696), - [anon_sym_readonly] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3696), - [anon_sym_declare] = ACTIONS(3696), - [anon_sym_public] = ACTIONS(3696), - [anon_sym_private] = ACTIONS(3696), - [anon_sym_protected] = ACTIONS(3696), - [anon_sym_override] = ACTIONS(3696), - [anon_sym_module] = ACTIONS(3696), - [anon_sym_any] = ACTIONS(3696), - [anon_sym_number] = ACTIONS(3696), - [anon_sym_boolean] = ACTIONS(3696), - [anon_sym_string] = ACTIONS(3696), - [anon_sym_symbol] = ACTIONS(3696), - [anon_sym_object] = ACTIONS(3696), - [anon_sym_property] = ACTIONS(3696), - [anon_sym_signal] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_required] = ACTIONS(3696), - [anon_sym_component] = ACTIONS(3696), - [anon_sym_abstract] = ACTIONS(3696), - [anon_sym_interface] = ACTIONS(3696), - [anon_sym_enum] = ACTIONS(3696), + [anon_sym_BQUOTE] = ACTIONS(2442), + [sym_number] = ACTIONS(2442), + [sym_private_property_identifier] = ACTIONS(2442), + [sym_this] = ACTIONS(2442), + [sym_super] = ACTIONS(2442), + [sym_true] = ACTIONS(2442), + [sym_false] = ACTIONS(2442), + [sym_null] = ACTIONS(2442), + [sym_undefined] = ACTIONS(2442), + [anon_sym_AT] = ACTIONS(2442), + [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_property] = ACTIONS(2442), + [anon_sym_signal] = ACTIONS(2442), + [anon_sym_on] = ACTIONS(2442), + [anon_sym_required] = ACTIONS(2442), + [anon_sym_component] = ACTIONS(2442), + [anon_sym_abstract] = ACTIONS(2442), + [anon_sym_interface] = ACTIONS(2442), + [anon_sym_enum] = ACTIONS(2442), + [sym__automatic_semicolon] = ACTIONS(2680), [sym_html_comment] = ACTIONS(5), }, - [1485] = { - [sym_comment] = STATE(1485), - [sym_identifier] = ACTIONS(3690), - [anon_sym_export] = ACTIONS(3690), - [anon_sym_type] = ACTIONS(3690), - [anon_sym_namespace] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_typeof] = ACTIONS(3690), - [anon_sym_import] = ACTIONS(3690), - [anon_sym_from] = ACTIONS(3690), - [anon_sym_with] = ACTIONS(3690), - [anon_sym_var] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_const] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3690), - [anon_sym_else] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_switch] = ACTIONS(3690), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_await] = ACTIONS(3690), - [anon_sym_of] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_break] = ACTIONS(3690), - [anon_sym_continue] = ACTIONS(3690), - [anon_sym_debugger] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_throw] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LTtemplate_GT] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_SQUOTE] = ACTIONS(3690), - [anon_sym_class] = ACTIONS(3690), - [anon_sym_async] = ACTIONS(3690), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_using] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_SLASH] = ACTIONS(3690), - [anon_sym_LT] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3690), - [anon_sym_void] = ACTIONS(3690), - [anon_sym_delete] = ACTIONS(3690), - [anon_sym_PLUS_PLUS] = ACTIONS(3690), - [anon_sym_DASH_DASH] = ACTIONS(3690), + [1469] = { + [sym_comment] = STATE(1469), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3690), - [sym_number] = ACTIONS(3690), - [sym_private_property_identifier] = ACTIONS(3690), - [sym_this] = ACTIONS(3690), - [sym_super] = ACTIONS(3690), - [sym_true] = ACTIONS(3690), - [sym_false] = ACTIONS(3690), - [sym_null] = ACTIONS(3690), - [sym_undefined] = ACTIONS(3690), - [anon_sym_AT] = ACTIONS(3690), - [anon_sym_static] = ACTIONS(3690), - [anon_sym_readonly] = ACTIONS(3690), - [anon_sym_get] = ACTIONS(3690), - [anon_sym_set] = ACTIONS(3690), - [anon_sym_declare] = ACTIONS(3690), - [anon_sym_public] = ACTIONS(3690), - [anon_sym_private] = ACTIONS(3690), - [anon_sym_protected] = ACTIONS(3690), - [anon_sym_override] = ACTIONS(3690), - [anon_sym_module] = ACTIONS(3690), - [anon_sym_any] = ACTIONS(3690), - [anon_sym_number] = ACTIONS(3690), - [anon_sym_boolean] = ACTIONS(3690), - [anon_sym_string] = ACTIONS(3690), - [anon_sym_symbol] = ACTIONS(3690), - [anon_sym_object] = ACTIONS(3690), - [anon_sym_property] = ACTIONS(3690), - [anon_sym_signal] = ACTIONS(3690), - [anon_sym_on] = ACTIONS(3690), - [anon_sym_required] = ACTIONS(3690), - [anon_sym_component] = ACTIONS(3690), - [anon_sym_abstract] = ACTIONS(3690), - [anon_sym_interface] = ACTIONS(3690), - [anon_sym_enum] = ACTIONS(3690), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1486] = { - [sym_comment] = STATE(1486), - [sym_identifier] = ACTIONS(3428), - [anon_sym_export] = ACTIONS(3428), - [anon_sym_type] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_RBRACE] = ACTIONS(3428), - [anon_sym_typeof] = ACTIONS(3428), - [anon_sym_import] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_with] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_await] = ACTIONS(3428), - [anon_sym_of] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_debugger] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LTtemplate_GT] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_SQUOTE] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_SLASH] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3428), - [anon_sym_void] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3428), + [1470] = { + [sym_comment] = STATE(1470), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3428), - [sym_number] = ACTIONS(3428), - [sym_private_property_identifier] = ACTIONS(3428), - [sym_this] = ACTIONS(3428), - [sym_super] = ACTIONS(3428), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_null] = ACTIONS(3428), - [sym_undefined] = ACTIONS(3428), - [anon_sym_AT] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3428), - [anon_sym_set] = ACTIONS(3428), - [anon_sym_declare] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_module] = ACTIONS(3428), - [anon_sym_any] = ACTIONS(3428), - [anon_sym_number] = ACTIONS(3428), - [anon_sym_boolean] = ACTIONS(3428), - [anon_sym_string] = ACTIONS(3428), - [anon_sym_symbol] = ACTIONS(3428), - [anon_sym_object] = ACTIONS(3428), - [anon_sym_property] = ACTIONS(3428), - [anon_sym_signal] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_component] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), - [sym__automatic_semicolon] = ACTIONS(3430), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1487] = { - [sym_comment] = STATE(1487), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), + [1471] = { + [sym_comment] = STATE(1471), + [sym_identifier] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_type] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_typeof] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3626), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_else] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3626), + [anon_sym_await] = ACTIONS(3626), + [anon_sym_of] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_debugger] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_LTtemplate_GT] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_async] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_SLASH] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_void] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3626), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2466), - [sym_number] = ACTIONS(2466), - [sym_private_property_identifier] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), + [anon_sym_BQUOTE] = ACTIONS(3626), + [sym_number] = ACTIONS(3626), + [sym_private_property_identifier] = ACTIONS(3626), + [sym_this] = ACTIONS(3626), + [sym_super] = ACTIONS(3626), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [sym_null] = ACTIONS(3626), + [sym_undefined] = ACTIONS(3626), + [anon_sym_AT] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_readonly] = ACTIONS(3626), + [anon_sym_get] = ACTIONS(3626), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_declare] = ACTIONS(3626), + [anon_sym_public] = ACTIONS(3626), + [anon_sym_private] = ACTIONS(3626), + [anon_sym_protected] = ACTIONS(3626), + [anon_sym_override] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_any] = ACTIONS(3626), + [anon_sym_number] = ACTIONS(3626), + [anon_sym_boolean] = ACTIONS(3626), + [anon_sym_string] = ACTIONS(3626), + [anon_sym_symbol] = ACTIONS(3626), + [anon_sym_object] = ACTIONS(3626), + [anon_sym_property] = ACTIONS(3626), + [anon_sym_signal] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_required] = ACTIONS(3626), + [anon_sym_component] = ACTIONS(3626), + [anon_sym_abstract] = ACTIONS(3626), + [anon_sym_interface] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), [sym_html_comment] = ACTIONS(5), }, - [1488] = { - [sym_comment] = STATE(1488), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), + [1472] = { + [sym_comment] = STATE(1472), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2352), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), [sym_html_comment] = ACTIONS(5), }, - [1489] = { - [sym_comment] = STATE(1489), - [sym_identifier] = ACTIONS(3668), - [anon_sym_export] = ACTIONS(3668), - [anon_sym_type] = ACTIONS(3668), - [anon_sym_namespace] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_typeof] = ACTIONS(3668), - [anon_sym_import] = ACTIONS(3668), - [anon_sym_from] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [anon_sym_var] = ACTIONS(3668), - [anon_sym_let] = ACTIONS(3668), - [anon_sym_const] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3668), - [anon_sym_else] = ACTIONS(3668), - [anon_sym_if] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_for] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_await] = ACTIONS(3668), - [anon_sym_of] = ACTIONS(3668), - [anon_sym_while] = ACTIONS(3668), - [anon_sym_do] = ACTIONS(3668), - [anon_sym_try] = ACTIONS(3668), - [anon_sym_break] = ACTIONS(3668), - [anon_sym_continue] = ACTIONS(3668), - [anon_sym_debugger] = ACTIONS(3668), - [anon_sym_return] = ACTIONS(3668), - [anon_sym_throw] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_yield] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_LTtemplate_GT] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3668), - [anon_sym_class] = ACTIONS(3668), - [anon_sym_async] = ACTIONS(3668), - [anon_sym_function] = ACTIONS(3668), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_using] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_void] = ACTIONS(3668), - [anon_sym_delete] = ACTIONS(3668), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), + [1473] = { + [sym_comment] = STATE(1473), + [sym_identifier] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2474), + [anon_sym_import] = ACTIONS(2474), + [anon_sym_from] = ACTIONS(2474), + [anon_sym_with] = ACTIONS(2474), + [anon_sym_var] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_const] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_if] = ACTIONS(2474), + [anon_sym_switch] = ACTIONS(2474), + [anon_sym_for] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_await] = ACTIONS(2474), + [anon_sym_of] = ACTIONS(2474), + [anon_sym_while] = ACTIONS(2474), + [anon_sym_do] = ACTIONS(2474), + [anon_sym_try] = ACTIONS(2474), + [anon_sym_break] = ACTIONS(2474), + [anon_sym_continue] = ACTIONS(2474), + [anon_sym_debugger] = ACTIONS(2474), + [anon_sym_return] = ACTIONS(2474), + [anon_sym_throw] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LTtemplate_GT] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2474), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2474), + [anon_sym_using] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2474), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_SLASH] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2474), + [anon_sym_TILDE] = ACTIONS(2474), + [anon_sym_void] = ACTIONS(2474), + [anon_sym_delete] = ACTIONS(2474), + [anon_sym_PLUS_PLUS] = ACTIONS(2474), + [anon_sym_DASH_DASH] = ACTIONS(2474), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2474), + [sym_number] = ACTIONS(2474), + [sym_private_property_identifier] = ACTIONS(2474), + [sym_this] = ACTIONS(2474), + [sym_super] = ACTIONS(2474), + [sym_true] = ACTIONS(2474), + [sym_false] = ACTIONS(2474), + [sym_null] = ACTIONS(2474), + [sym_undefined] = ACTIONS(2474), + [anon_sym_AT] = ACTIONS(2474), + [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_property] = ACTIONS(2474), + [anon_sym_signal] = ACTIONS(2474), + [anon_sym_on] = ACTIONS(2474), + [anon_sym_required] = ACTIONS(2474), + [anon_sym_component] = ACTIONS(2474), + [anon_sym_abstract] = ACTIONS(2474), + [anon_sym_interface] = ACTIONS(2474), + [anon_sym_enum] = ACTIONS(2474), + [sym__automatic_semicolon] = ACTIONS(2662), + [sym_html_comment] = ACTIONS(5), + }, + [1474] = { + [sym_comment] = STATE(1474), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [sym_html_comment] = ACTIONS(5), + }, + [1475] = { + [sym_comment] = STATE(1475), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [sym_html_comment] = ACTIONS(5), + }, + [1476] = { + [sym_comment] = STATE(1476), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [sym_html_comment] = ACTIONS(5), + }, + [1477] = { + [sym_comment] = STATE(1477), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_else] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), + [sym_html_comment] = ACTIONS(5), + }, + [1478] = { + [sym_comment] = STATE(1478), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [1479] = { + [sym_comment] = STATE(1479), + [sym_identifier] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_type] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_typeof] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_from] = ACTIONS(3604), + [anon_sym_with] = ACTIONS(3604), + [anon_sym_var] = ACTIONS(3604), + [anon_sym_let] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_BANG] = ACTIONS(3604), + [anon_sym_else] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym_await] = ACTIONS(3604), + [anon_sym_of] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_debugger] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LTtemplate_GT] = ACTIONS(3604), + [anon_sym_DQUOTE] = ACTIONS(3604), + [anon_sym_SQUOTE] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_async] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_SLASH] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3604), + [anon_sym_void] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_PLUS_PLUS] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3604), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3604), + [sym_number] = ACTIONS(3604), + [sym_private_property_identifier] = ACTIONS(3604), + [sym_this] = ACTIONS(3604), + [sym_super] = ACTIONS(3604), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [sym_null] = ACTIONS(3604), + [sym_undefined] = ACTIONS(3604), + [anon_sym_AT] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_readonly] = ACTIONS(3604), + [anon_sym_get] = ACTIONS(3604), + [anon_sym_set] = ACTIONS(3604), + [anon_sym_declare] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_override] = ACTIONS(3604), + [anon_sym_module] = ACTIONS(3604), + [anon_sym_any] = ACTIONS(3604), + [anon_sym_number] = ACTIONS(3604), + [anon_sym_boolean] = ACTIONS(3604), + [anon_sym_string] = ACTIONS(3604), + [anon_sym_symbol] = ACTIONS(3604), + [anon_sym_object] = ACTIONS(3604), + [anon_sym_property] = ACTIONS(3604), + [anon_sym_signal] = ACTIONS(3604), + [anon_sym_on] = ACTIONS(3604), + [anon_sym_required] = ACTIONS(3604), + [anon_sym_component] = ACTIONS(3604), + [anon_sym_abstract] = ACTIONS(3604), + [anon_sym_interface] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), + [sym_html_comment] = ACTIONS(5), + }, + [1480] = { + [sym_comment] = STATE(1480), + [sym_identifier] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_type] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_typeof] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_with] = ACTIONS(3666), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_else] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_await] = ACTIONS(3666), + [anon_sym_of] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_debugger] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_LTtemplate_GT] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_async] = ACTIONS(3666), + [anon_sym_function] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_void] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3666), + [sym_number] = ACTIONS(3666), + [sym_private_property_identifier] = ACTIONS(3666), + [sym_this] = ACTIONS(3666), + [sym_super] = ACTIONS(3666), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [sym_null] = ACTIONS(3666), + [sym_undefined] = ACTIONS(3666), + [anon_sym_AT] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_readonly] = ACTIONS(3666), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_declare] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_override] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_any] = ACTIONS(3666), + [anon_sym_number] = ACTIONS(3666), + [anon_sym_boolean] = ACTIONS(3666), + [anon_sym_string] = ACTIONS(3666), + [anon_sym_symbol] = ACTIONS(3666), + [anon_sym_object] = ACTIONS(3666), + [anon_sym_property] = ACTIONS(3666), + [anon_sym_signal] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_required] = ACTIONS(3666), + [anon_sym_component] = ACTIONS(3666), + [anon_sym_abstract] = ACTIONS(3666), + [anon_sym_interface] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), + [sym_html_comment] = ACTIONS(5), + }, + [1481] = { + [sym_comment] = STATE(1481), + [sym_identifier] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_type] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_typeof] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_await] = ACTIONS(3668), + [anon_sym_of] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_debugger] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_yield] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LTtemplate_GT] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_async] = ACTIONS(3668), + [anon_sym_function] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_void] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3668), [sym_number] = ACTIONS(3668), @@ -201506,2912 +200355,2208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3668), [sym_html_comment] = ACTIONS(5), }, - [1490] = { - [sym_comment] = STATE(1490), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1482] = { + [sym_comment] = STATE(1482), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2336), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, - [1491] = { - [sym_comment] = STATE(1491), - [sym_identifier] = ACTIONS(3526), - [anon_sym_export] = ACTIONS(3526), - [anon_sym_type] = ACTIONS(3526), - [anon_sym_namespace] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_RBRACE] = ACTIONS(3526), - [anon_sym_typeof] = ACTIONS(3526), - [anon_sym_import] = ACTIONS(3526), - [anon_sym_from] = ACTIONS(3526), - [anon_sym_with] = ACTIONS(3526), - [anon_sym_var] = ACTIONS(3526), - [anon_sym_let] = ACTIONS(3526), - [anon_sym_const] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_else] = ACTIONS(3526), - [anon_sym_if] = ACTIONS(3526), - [anon_sym_switch] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3526), - [anon_sym_await] = ACTIONS(3526), - [anon_sym_of] = ACTIONS(3526), - [anon_sym_while] = ACTIONS(3526), - [anon_sym_do] = ACTIONS(3526), - [anon_sym_try] = ACTIONS(3526), - [anon_sym_break] = ACTIONS(3526), - [anon_sym_continue] = ACTIONS(3526), - [anon_sym_debugger] = ACTIONS(3526), - [anon_sym_return] = ACTIONS(3526), - [anon_sym_throw] = ACTIONS(3526), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3526), - [anon_sym_LTtemplate_GT] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [anon_sym_SQUOTE] = ACTIONS(3526), - [anon_sym_class] = ACTIONS(3526), - [anon_sym_async] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3526), - [anon_sym_new] = ACTIONS(3526), - [anon_sym_using] = ACTIONS(3526), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_void] = ACTIONS(3526), - [anon_sym_delete] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_DASH_DASH] = ACTIONS(3526), + [1483] = { + [sym_comment] = STATE(1483), + [sym_identifier] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_type] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_of] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_debugger] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LTtemplate_GT] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3526), - [sym_number] = ACTIONS(3526), - [sym_private_property_identifier] = ACTIONS(3526), - [sym_this] = ACTIONS(3526), - [sym_super] = ACTIONS(3526), - [sym_true] = ACTIONS(3526), - [sym_false] = ACTIONS(3526), - [sym_null] = ACTIONS(3526), - [sym_undefined] = ACTIONS(3526), - [anon_sym_AT] = ACTIONS(3526), - [anon_sym_static] = ACTIONS(3526), - [anon_sym_readonly] = ACTIONS(3526), - [anon_sym_get] = ACTIONS(3526), - [anon_sym_set] = ACTIONS(3526), - [anon_sym_declare] = ACTIONS(3526), - [anon_sym_public] = ACTIONS(3526), - [anon_sym_private] = ACTIONS(3526), - [anon_sym_protected] = ACTIONS(3526), - [anon_sym_override] = ACTIONS(3526), - [anon_sym_module] = ACTIONS(3526), - [anon_sym_any] = ACTIONS(3526), - [anon_sym_number] = ACTIONS(3526), - [anon_sym_boolean] = ACTIONS(3526), - [anon_sym_string] = ACTIONS(3526), - [anon_sym_symbol] = ACTIONS(3526), - [anon_sym_object] = ACTIONS(3526), - [anon_sym_property] = ACTIONS(3526), - [anon_sym_signal] = ACTIONS(3526), - [anon_sym_on] = ACTIONS(3526), - [anon_sym_required] = ACTIONS(3526), - [anon_sym_component] = ACTIONS(3526), - [anon_sym_abstract] = ACTIONS(3526), - [anon_sym_interface] = ACTIONS(3526), - [anon_sym_enum] = ACTIONS(3526), - [sym_html_comment] = ACTIONS(5), - }, - [1492] = { - [sym_comment] = STATE(1492), - [sym_identifier] = ACTIONS(3532), - [anon_sym_export] = ACTIONS(3532), - [anon_sym_type] = ACTIONS(3532), - [anon_sym_namespace] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_RBRACE] = ACTIONS(3532), - [anon_sym_typeof] = ACTIONS(3532), - [anon_sym_import] = ACTIONS(3532), - [anon_sym_from] = ACTIONS(3532), - [anon_sym_with] = ACTIONS(3532), - [anon_sym_var] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_BANG] = ACTIONS(3532), - [anon_sym_else] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_await] = ACTIONS(3532), - [anon_sym_of] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_debugger] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_SEMI] = ACTIONS(3532), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LTtemplate_GT] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_SQUOTE] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3532), - [anon_sym_async] = ACTIONS(3532), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_using] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_SLASH] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3532), - [anon_sym_void] = ACTIONS(3532), - [anon_sym_delete] = ACTIONS(3532), - [anon_sym_PLUS_PLUS] = ACTIONS(3532), - [anon_sym_DASH_DASH] = ACTIONS(3532), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3532), - [sym_number] = ACTIONS(3532), - [sym_private_property_identifier] = ACTIONS(3532), - [sym_this] = ACTIONS(3532), - [sym_super] = ACTIONS(3532), - [sym_true] = ACTIONS(3532), - [sym_false] = ACTIONS(3532), - [sym_null] = ACTIONS(3532), - [sym_undefined] = ACTIONS(3532), - [anon_sym_AT] = ACTIONS(3532), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_readonly] = ACTIONS(3532), - [anon_sym_get] = ACTIONS(3532), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_declare] = ACTIONS(3532), - [anon_sym_public] = ACTIONS(3532), - [anon_sym_private] = ACTIONS(3532), - [anon_sym_protected] = ACTIONS(3532), - [anon_sym_override] = ACTIONS(3532), - [anon_sym_module] = ACTIONS(3532), - [anon_sym_any] = ACTIONS(3532), - [anon_sym_number] = ACTIONS(3532), - [anon_sym_boolean] = ACTIONS(3532), - [anon_sym_string] = ACTIONS(3532), - [anon_sym_symbol] = ACTIONS(3532), - [anon_sym_object] = ACTIONS(3532), - [anon_sym_property] = ACTIONS(3532), - [anon_sym_signal] = ACTIONS(3532), - [anon_sym_on] = ACTIONS(3532), - [anon_sym_required] = ACTIONS(3532), - [anon_sym_component] = ACTIONS(3532), - [anon_sym_abstract] = ACTIONS(3532), - [anon_sym_interface] = ACTIONS(3532), - [anon_sym_enum] = ACTIONS(3532), + [anon_sym_BQUOTE] = ACTIONS(3600), + [sym_number] = ACTIONS(3600), + [sym_private_property_identifier] = ACTIONS(3600), + [sym_this] = ACTIONS(3600), + [sym_super] = ACTIONS(3600), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [sym_null] = ACTIONS(3600), + [sym_undefined] = ACTIONS(3600), + [anon_sym_AT] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3600), + [anon_sym_set] = ACTIONS(3600), + [anon_sym_declare] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_any] = ACTIONS(3600), + [anon_sym_number] = ACTIONS(3600), + [anon_sym_boolean] = ACTIONS(3600), + [anon_sym_string] = ACTIONS(3600), + [anon_sym_symbol] = ACTIONS(3600), + [anon_sym_object] = ACTIONS(3600), + [anon_sym_property] = ACTIONS(3600), + [anon_sym_signal] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_component] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), [sym_html_comment] = ACTIONS(5), }, - [1493] = { - [sym_comment] = STATE(1493), - [sym_identifier] = ACTIONS(3558), - [anon_sym_export] = ACTIONS(3558), - [anon_sym_type] = ACTIONS(3558), - [anon_sym_namespace] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_RBRACE] = ACTIONS(3558), - [anon_sym_typeof] = ACTIONS(3558), - [anon_sym_import] = ACTIONS(3558), - [anon_sym_from] = ACTIONS(3558), - [anon_sym_with] = ACTIONS(3558), - [anon_sym_var] = ACTIONS(3558), - [anon_sym_let] = ACTIONS(3558), - [anon_sym_const] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_else] = ACTIONS(3558), - [anon_sym_if] = ACTIONS(3558), - [anon_sym_switch] = ACTIONS(3558), - [anon_sym_for] = ACTIONS(3558), - [anon_sym_LPAREN] = ACTIONS(3558), - [anon_sym_await] = ACTIONS(3558), - [anon_sym_of] = ACTIONS(3558), - [anon_sym_while] = ACTIONS(3558), - [anon_sym_do] = ACTIONS(3558), - [anon_sym_try] = ACTIONS(3558), - [anon_sym_break] = ACTIONS(3558), - [anon_sym_continue] = ACTIONS(3558), - [anon_sym_debugger] = ACTIONS(3558), - [anon_sym_return] = ACTIONS(3558), - [anon_sym_throw] = ACTIONS(3558), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym_yield] = ACTIONS(3558), - [anon_sym_LBRACK] = ACTIONS(3558), - [anon_sym_LTtemplate_GT] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_class] = ACTIONS(3558), - [anon_sym_async] = ACTIONS(3558), - [anon_sym_function] = ACTIONS(3558), - [anon_sym_new] = ACTIONS(3558), - [anon_sym_using] = ACTIONS(3558), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_SLASH] = ACTIONS(3558), - [anon_sym_LT] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_void] = ACTIONS(3558), - [anon_sym_delete] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_DASH_DASH] = ACTIONS(3558), + [1484] = { + [sym_comment] = STATE(1484), + [sym_identifier] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_type] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_else] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_of] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_debugger] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LTtemplate_GT] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3558), - [sym_number] = ACTIONS(3558), - [sym_private_property_identifier] = ACTIONS(3558), - [sym_this] = ACTIONS(3558), - [sym_super] = ACTIONS(3558), - [sym_true] = ACTIONS(3558), - [sym_false] = ACTIONS(3558), - [sym_null] = ACTIONS(3558), - [sym_undefined] = ACTIONS(3558), - [anon_sym_AT] = ACTIONS(3558), - [anon_sym_static] = ACTIONS(3558), - [anon_sym_readonly] = ACTIONS(3558), - [anon_sym_get] = ACTIONS(3558), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_declare] = ACTIONS(3558), - [anon_sym_public] = ACTIONS(3558), - [anon_sym_private] = ACTIONS(3558), - [anon_sym_protected] = ACTIONS(3558), - [anon_sym_override] = ACTIONS(3558), - [anon_sym_module] = ACTIONS(3558), - [anon_sym_any] = ACTIONS(3558), - [anon_sym_number] = ACTIONS(3558), - [anon_sym_boolean] = ACTIONS(3558), - [anon_sym_string] = ACTIONS(3558), - [anon_sym_symbol] = ACTIONS(3558), - [anon_sym_object] = ACTIONS(3558), - [anon_sym_property] = ACTIONS(3558), - [anon_sym_signal] = ACTIONS(3558), - [anon_sym_on] = ACTIONS(3558), - [anon_sym_required] = ACTIONS(3558), - [anon_sym_component] = ACTIONS(3558), - [anon_sym_abstract] = ACTIONS(3558), - [anon_sym_interface] = ACTIONS(3558), - [anon_sym_enum] = ACTIONS(3558), + [anon_sym_BQUOTE] = ACTIONS(3600), + [sym_number] = ACTIONS(3600), + [sym_private_property_identifier] = ACTIONS(3600), + [sym_this] = ACTIONS(3600), + [sym_super] = ACTIONS(3600), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [sym_null] = ACTIONS(3600), + [sym_undefined] = ACTIONS(3600), + [anon_sym_AT] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3600), + [anon_sym_set] = ACTIONS(3600), + [anon_sym_declare] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_any] = ACTIONS(3600), + [anon_sym_number] = ACTIONS(3600), + [anon_sym_boolean] = ACTIONS(3600), + [anon_sym_string] = ACTIONS(3600), + [anon_sym_symbol] = ACTIONS(3600), + [anon_sym_object] = ACTIONS(3600), + [anon_sym_property] = ACTIONS(3600), + [anon_sym_signal] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_component] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), [sym_html_comment] = ACTIONS(5), }, - [1494] = { - [sym_comment] = STATE(1494), - [sym_identifier] = ACTIONS(3660), - [anon_sym_export] = ACTIONS(3660), - [anon_sym_type] = ACTIONS(3660), - [anon_sym_namespace] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_import] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_with] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_else] = ACTIONS(3660), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_for] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_await] = ACTIONS(3660), - [anon_sym_of] = ACTIONS(3660), - [anon_sym_while] = ACTIONS(3660), - [anon_sym_do] = ACTIONS(3660), - [anon_sym_try] = ACTIONS(3660), - [anon_sym_break] = ACTIONS(3660), - [anon_sym_continue] = ACTIONS(3660), - [anon_sym_debugger] = ACTIONS(3660), - [anon_sym_return] = ACTIONS(3660), - [anon_sym_throw] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_LTtemplate_GT] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_class] = ACTIONS(3660), - [anon_sym_async] = ACTIONS(3660), - [anon_sym_function] = ACTIONS(3660), - [anon_sym_new] = ACTIONS(3660), - [anon_sym_using] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_void] = ACTIONS(3660), - [anon_sym_delete] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3660), + [1485] = { + [sym_comment] = STATE(1485), + [sym_identifier] = ACTIONS(3598), + [anon_sym_export] = ACTIONS(3598), + [anon_sym_type] = ACTIONS(3598), + [anon_sym_namespace] = ACTIONS(3598), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_RBRACE] = ACTIONS(3598), + [anon_sym_typeof] = ACTIONS(3598), + [anon_sym_import] = ACTIONS(3598), + [anon_sym_from] = ACTIONS(3598), + [anon_sym_with] = ACTIONS(3598), + [anon_sym_var] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_const] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_else] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_switch] = ACTIONS(3598), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_await] = ACTIONS(3598), + [anon_sym_of] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_break] = ACTIONS(3598), + [anon_sym_continue] = ACTIONS(3598), + [anon_sym_debugger] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_throw] = ACTIONS(3598), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LTtemplate_GT] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_class] = ACTIONS(3598), + [anon_sym_async] = ACTIONS(3598), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_using] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_SLASH] = ACTIONS(3598), + [anon_sym_LT] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_void] = ACTIONS(3598), + [anon_sym_delete] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_DASH_DASH] = ACTIONS(3598), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3660), - [sym_number] = ACTIONS(3660), - [sym_private_property_identifier] = ACTIONS(3660), - [sym_this] = ACTIONS(3660), - [sym_super] = ACTIONS(3660), - [sym_true] = ACTIONS(3660), - [sym_false] = ACTIONS(3660), - [sym_null] = ACTIONS(3660), - [sym_undefined] = ACTIONS(3660), - [anon_sym_AT] = ACTIONS(3660), - [anon_sym_static] = ACTIONS(3660), - [anon_sym_readonly] = ACTIONS(3660), - [anon_sym_get] = ACTIONS(3660), - [anon_sym_set] = ACTIONS(3660), - [anon_sym_declare] = ACTIONS(3660), - [anon_sym_public] = ACTIONS(3660), - [anon_sym_private] = ACTIONS(3660), - [anon_sym_protected] = ACTIONS(3660), - [anon_sym_override] = ACTIONS(3660), - [anon_sym_module] = ACTIONS(3660), - [anon_sym_any] = ACTIONS(3660), - [anon_sym_number] = ACTIONS(3660), - [anon_sym_boolean] = ACTIONS(3660), - [anon_sym_string] = ACTIONS(3660), - [anon_sym_symbol] = ACTIONS(3660), - [anon_sym_object] = ACTIONS(3660), - [anon_sym_property] = ACTIONS(3660), - [anon_sym_signal] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_required] = ACTIONS(3660), - [anon_sym_component] = ACTIONS(3660), - [anon_sym_abstract] = ACTIONS(3660), - [anon_sym_interface] = ACTIONS(3660), - [anon_sym_enum] = ACTIONS(3660), + [anon_sym_BQUOTE] = ACTIONS(3598), + [sym_number] = ACTIONS(3598), + [sym_private_property_identifier] = ACTIONS(3598), + [sym_this] = ACTIONS(3598), + [sym_super] = ACTIONS(3598), + [sym_true] = ACTIONS(3598), + [sym_false] = ACTIONS(3598), + [sym_null] = ACTIONS(3598), + [sym_undefined] = ACTIONS(3598), + [anon_sym_AT] = ACTIONS(3598), + [anon_sym_static] = ACTIONS(3598), + [anon_sym_readonly] = ACTIONS(3598), + [anon_sym_get] = ACTIONS(3598), + [anon_sym_set] = ACTIONS(3598), + [anon_sym_declare] = ACTIONS(3598), + [anon_sym_public] = ACTIONS(3598), + [anon_sym_private] = ACTIONS(3598), + [anon_sym_protected] = ACTIONS(3598), + [anon_sym_override] = ACTIONS(3598), + [anon_sym_module] = ACTIONS(3598), + [anon_sym_any] = ACTIONS(3598), + [anon_sym_number] = ACTIONS(3598), + [anon_sym_boolean] = ACTIONS(3598), + [anon_sym_string] = ACTIONS(3598), + [anon_sym_symbol] = ACTIONS(3598), + [anon_sym_object] = ACTIONS(3598), + [anon_sym_property] = ACTIONS(3598), + [anon_sym_signal] = ACTIONS(3598), + [anon_sym_on] = ACTIONS(3598), + [anon_sym_required] = ACTIONS(3598), + [anon_sym_component] = ACTIONS(3598), + [anon_sym_abstract] = ACTIONS(3598), + [anon_sym_interface] = ACTIONS(3598), + [anon_sym_enum] = ACTIONS(3598), [sym_html_comment] = ACTIONS(5), }, - [1495] = { - [sym_comment] = STATE(1495), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3732), + [1486] = { + [sym_comment] = STATE(1486), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3736), [sym_html_comment] = ACTIONS(5), }, - [1496] = { - [sym_comment] = STATE(1496), - [sym_identifier] = ACTIONS(3658), - [anon_sym_export] = ACTIONS(3658), - [anon_sym_type] = ACTIONS(3658), - [anon_sym_namespace] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_RBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3658), - [anon_sym_import] = ACTIONS(3658), - [anon_sym_from] = ACTIONS(3658), - [anon_sym_with] = ACTIONS(3658), - [anon_sym_var] = ACTIONS(3658), - [anon_sym_let] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_if] = ACTIONS(3658), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_for] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_await] = ACTIONS(3658), - [anon_sym_of] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_try] = ACTIONS(3658), - [anon_sym_break] = ACTIONS(3658), - [anon_sym_continue] = ACTIONS(3658), - [anon_sym_debugger] = ACTIONS(3658), - [anon_sym_return] = ACTIONS(3658), - [anon_sym_throw] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym_yield] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_LTtemplate_GT] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [anon_sym_SQUOTE] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_async] = ACTIONS(3658), - [anon_sym_function] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_void] = ACTIONS(3658), - [anon_sym_delete] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3658), + [1487] = { + [sym_comment] = STATE(1487), + [sym_identifier] = ACTIONS(3608), + [anon_sym_export] = ACTIONS(3608), + [anon_sym_type] = ACTIONS(3608), + [anon_sym_namespace] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_RBRACE] = ACTIONS(3608), + [anon_sym_typeof] = ACTIONS(3608), + [anon_sym_import] = ACTIONS(3608), + [anon_sym_from] = ACTIONS(3608), + [anon_sym_with] = ACTIONS(3608), + [anon_sym_var] = ACTIONS(3608), + [anon_sym_let] = ACTIONS(3608), + [anon_sym_const] = ACTIONS(3608), + [anon_sym_BANG] = ACTIONS(3608), + [anon_sym_else] = ACTIONS(3608), + [anon_sym_if] = ACTIONS(3608), + [anon_sym_switch] = ACTIONS(3608), + [anon_sym_for] = ACTIONS(3608), + [anon_sym_LPAREN] = ACTIONS(3608), + [anon_sym_await] = ACTIONS(3608), + [anon_sym_of] = ACTIONS(3608), + [anon_sym_while] = ACTIONS(3608), + [anon_sym_do] = ACTIONS(3608), + [anon_sym_try] = ACTIONS(3608), + [anon_sym_break] = ACTIONS(3608), + [anon_sym_continue] = ACTIONS(3608), + [anon_sym_debugger] = ACTIONS(3608), + [anon_sym_return] = ACTIONS(3608), + [anon_sym_throw] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3608), + [anon_sym_yield] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(3608), + [anon_sym_LTtemplate_GT] = ACTIONS(3608), + [anon_sym_DQUOTE] = ACTIONS(3608), + [anon_sym_SQUOTE] = ACTIONS(3608), + [anon_sym_class] = ACTIONS(3608), + [anon_sym_async] = ACTIONS(3608), + [anon_sym_function] = ACTIONS(3608), + [anon_sym_new] = ACTIONS(3608), + [anon_sym_using] = ACTIONS(3608), + [anon_sym_PLUS] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_SLASH] = ACTIONS(3608), + [anon_sym_LT] = ACTIONS(3608), + [anon_sym_TILDE] = ACTIONS(3608), + [anon_sym_void] = ACTIONS(3608), + [anon_sym_delete] = ACTIONS(3608), + [anon_sym_PLUS_PLUS] = ACTIONS(3608), + [anon_sym_DASH_DASH] = ACTIONS(3608), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3658), - [sym_number] = ACTIONS(3658), - [sym_private_property_identifier] = ACTIONS(3658), - [sym_this] = ACTIONS(3658), - [sym_super] = ACTIONS(3658), - [sym_true] = ACTIONS(3658), - [sym_false] = ACTIONS(3658), - [sym_null] = ACTIONS(3658), - [sym_undefined] = ACTIONS(3658), - [anon_sym_AT] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_readonly] = ACTIONS(3658), - [anon_sym_get] = ACTIONS(3658), - [anon_sym_set] = ACTIONS(3658), - [anon_sym_declare] = ACTIONS(3658), - [anon_sym_public] = ACTIONS(3658), - [anon_sym_private] = ACTIONS(3658), - [anon_sym_protected] = ACTIONS(3658), - [anon_sym_override] = ACTIONS(3658), - [anon_sym_module] = ACTIONS(3658), - [anon_sym_any] = ACTIONS(3658), - [anon_sym_number] = ACTIONS(3658), - [anon_sym_boolean] = ACTIONS(3658), - [anon_sym_string] = ACTIONS(3658), - [anon_sym_symbol] = ACTIONS(3658), - [anon_sym_object] = ACTIONS(3658), - [anon_sym_property] = ACTIONS(3658), - [anon_sym_signal] = ACTIONS(3658), - [anon_sym_on] = ACTIONS(3658), - [anon_sym_required] = ACTIONS(3658), - [anon_sym_component] = ACTIONS(3658), - [anon_sym_abstract] = ACTIONS(3658), - [anon_sym_interface] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(3608), + [sym_number] = ACTIONS(3608), + [sym_private_property_identifier] = ACTIONS(3608), + [sym_this] = ACTIONS(3608), + [sym_super] = ACTIONS(3608), + [sym_true] = ACTIONS(3608), + [sym_false] = ACTIONS(3608), + [sym_null] = ACTIONS(3608), + [sym_undefined] = ACTIONS(3608), + [anon_sym_AT] = ACTIONS(3608), + [anon_sym_static] = ACTIONS(3608), + [anon_sym_readonly] = ACTIONS(3608), + [anon_sym_get] = ACTIONS(3608), + [anon_sym_set] = ACTIONS(3608), + [anon_sym_declare] = ACTIONS(3608), + [anon_sym_public] = ACTIONS(3608), + [anon_sym_private] = ACTIONS(3608), + [anon_sym_protected] = ACTIONS(3608), + [anon_sym_override] = ACTIONS(3608), + [anon_sym_module] = ACTIONS(3608), + [anon_sym_any] = ACTIONS(3608), + [anon_sym_number] = ACTIONS(3608), + [anon_sym_boolean] = ACTIONS(3608), + [anon_sym_string] = ACTIONS(3608), + [anon_sym_symbol] = ACTIONS(3608), + [anon_sym_object] = ACTIONS(3608), + [anon_sym_property] = ACTIONS(3608), + [anon_sym_signal] = ACTIONS(3608), + [anon_sym_on] = ACTIONS(3608), + [anon_sym_required] = ACTIONS(3608), + [anon_sym_component] = ACTIONS(3608), + [anon_sym_abstract] = ACTIONS(3608), + [anon_sym_interface] = ACTIONS(3608), + [anon_sym_enum] = ACTIONS(3608), [sym_html_comment] = ACTIONS(5), }, - [1497] = { - [sym_comment] = STATE(1497), - [sym_identifier] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_type] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_with] = ACTIONS(3654), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_await] = ACTIONS(3654), - [anon_sym_of] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_debugger] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_LTtemplate_GT] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_async] = ACTIONS(3654), - [anon_sym_function] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_void] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3654), + [1488] = { + [sym_comment] = STATE(1488), + [sym_identifier] = ACTIONS(3610), + [anon_sym_export] = ACTIONS(3610), + [anon_sym_type] = ACTIONS(3610), + [anon_sym_namespace] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_typeof] = ACTIONS(3610), + [anon_sym_import] = ACTIONS(3610), + [anon_sym_from] = ACTIONS(3610), + [anon_sym_with] = ACTIONS(3610), + [anon_sym_var] = ACTIONS(3610), + [anon_sym_let] = ACTIONS(3610), + [anon_sym_const] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_else] = ACTIONS(3610), + [anon_sym_if] = ACTIONS(3610), + [anon_sym_switch] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_await] = ACTIONS(3610), + [anon_sym_of] = ACTIONS(3610), + [anon_sym_while] = ACTIONS(3610), + [anon_sym_do] = ACTIONS(3610), + [anon_sym_try] = ACTIONS(3610), + [anon_sym_break] = ACTIONS(3610), + [anon_sym_continue] = ACTIONS(3610), + [anon_sym_debugger] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3610), + [anon_sym_throw] = ACTIONS(3610), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3610), + [anon_sym_LTtemplate_GT] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_class] = ACTIONS(3610), + [anon_sym_async] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3610), + [anon_sym_using] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_SLASH] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_void] = ACTIONS(3610), + [anon_sym_delete] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_DASH_DASH] = ACTIONS(3610), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3654), - [sym_number] = ACTIONS(3654), - [sym_private_property_identifier] = ACTIONS(3654), - [sym_this] = ACTIONS(3654), - [sym_super] = ACTIONS(3654), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [sym_null] = ACTIONS(3654), - [sym_undefined] = ACTIONS(3654), - [anon_sym_AT] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_readonly] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(3654), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_declare] = ACTIONS(3654), - [anon_sym_public] = ACTIONS(3654), - [anon_sym_private] = ACTIONS(3654), - [anon_sym_protected] = ACTIONS(3654), - [anon_sym_override] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_any] = ACTIONS(3654), - [anon_sym_number] = ACTIONS(3654), - [anon_sym_boolean] = ACTIONS(3654), - [anon_sym_string] = ACTIONS(3654), - [anon_sym_symbol] = ACTIONS(3654), - [anon_sym_object] = ACTIONS(3654), - [anon_sym_property] = ACTIONS(3654), - [anon_sym_signal] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_required] = ACTIONS(3654), - [anon_sym_component] = ACTIONS(3654), - [anon_sym_abstract] = ACTIONS(3654), - [anon_sym_interface] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3610), + [sym_number] = ACTIONS(3610), + [sym_private_property_identifier] = ACTIONS(3610), + [sym_this] = ACTIONS(3610), + [sym_super] = ACTIONS(3610), + [sym_true] = ACTIONS(3610), + [sym_false] = ACTIONS(3610), + [sym_null] = ACTIONS(3610), + [sym_undefined] = ACTIONS(3610), + [anon_sym_AT] = ACTIONS(3610), + [anon_sym_static] = ACTIONS(3610), + [anon_sym_readonly] = ACTIONS(3610), + [anon_sym_get] = ACTIONS(3610), + [anon_sym_set] = ACTIONS(3610), + [anon_sym_declare] = ACTIONS(3610), + [anon_sym_public] = ACTIONS(3610), + [anon_sym_private] = ACTIONS(3610), + [anon_sym_protected] = ACTIONS(3610), + [anon_sym_override] = ACTIONS(3610), + [anon_sym_module] = ACTIONS(3610), + [anon_sym_any] = ACTIONS(3610), + [anon_sym_number] = ACTIONS(3610), + [anon_sym_boolean] = ACTIONS(3610), + [anon_sym_string] = ACTIONS(3610), + [anon_sym_symbol] = ACTIONS(3610), + [anon_sym_object] = ACTIONS(3610), + [anon_sym_property] = ACTIONS(3610), + [anon_sym_signal] = ACTIONS(3610), + [anon_sym_on] = ACTIONS(3610), + [anon_sym_required] = ACTIONS(3610), + [anon_sym_component] = ACTIONS(3610), + [anon_sym_abstract] = ACTIONS(3610), + [anon_sym_interface] = ACTIONS(3610), + [anon_sym_enum] = ACTIONS(3610), [sym_html_comment] = ACTIONS(5), }, - [1498] = { - [sym_comment] = STATE(1498), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), + [1489] = { + [sym_comment] = STATE(1489), + [sym_identifier] = ACTIONS(3612), + [anon_sym_export] = ACTIONS(3612), + [anon_sym_type] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_typeof] = ACTIONS(3612), + [anon_sym_import] = ACTIONS(3612), + [anon_sym_from] = ACTIONS(3612), + [anon_sym_with] = ACTIONS(3612), + [anon_sym_var] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_else] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_switch] = ACTIONS(3612), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_await] = ACTIONS(3612), + [anon_sym_of] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_break] = ACTIONS(3612), + [anon_sym_continue] = ACTIONS(3612), + [anon_sym_debugger] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_throw] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LTtemplate_GT] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_async] = ACTIONS(3612), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_using] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_SLASH] = ACTIONS(3612), + [anon_sym_LT] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3612), + [anon_sym_void] = ACTIONS(3612), + [anon_sym_delete] = ACTIONS(3612), + [anon_sym_PLUS_PLUS] = ACTIONS(3612), + [anon_sym_DASH_DASH] = ACTIONS(3612), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3612), + [sym_number] = ACTIONS(3612), + [sym_private_property_identifier] = ACTIONS(3612), + [sym_this] = ACTIONS(3612), + [sym_super] = ACTIONS(3612), + [sym_true] = ACTIONS(3612), + [sym_false] = ACTIONS(3612), + [sym_null] = ACTIONS(3612), + [sym_undefined] = ACTIONS(3612), + [anon_sym_AT] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_readonly] = ACTIONS(3612), + [anon_sym_get] = ACTIONS(3612), + [anon_sym_set] = ACTIONS(3612), + [anon_sym_declare] = ACTIONS(3612), + [anon_sym_public] = ACTIONS(3612), + [anon_sym_private] = ACTIONS(3612), + [anon_sym_protected] = ACTIONS(3612), + [anon_sym_override] = ACTIONS(3612), + [anon_sym_module] = ACTIONS(3612), + [anon_sym_any] = ACTIONS(3612), + [anon_sym_number] = ACTIONS(3612), + [anon_sym_boolean] = ACTIONS(3612), + [anon_sym_string] = ACTIONS(3612), + [anon_sym_symbol] = ACTIONS(3612), + [anon_sym_object] = ACTIONS(3612), + [anon_sym_property] = ACTIONS(3612), + [anon_sym_signal] = ACTIONS(3612), + [anon_sym_on] = ACTIONS(3612), + [anon_sym_required] = ACTIONS(3612), + [anon_sym_component] = ACTIONS(3612), + [anon_sym_abstract] = ACTIONS(3612), + [anon_sym_interface] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), [sym_html_comment] = ACTIONS(5), }, - [1499] = { - [sym_comment] = STATE(1499), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_finally] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), + [1490] = { + [sym_comment] = STATE(1490), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1500] = { - [sym_comment] = STATE(1500), - [sym_identifier] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_type] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_with] = ACTIONS(3654), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_await] = ACTIONS(3654), - [anon_sym_of] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_debugger] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_LTtemplate_GT] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_async] = ACTIONS(3654), - [anon_sym_function] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_void] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3654), + [1491] = { + [sym_comment] = STATE(1491), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3654), - [sym_number] = ACTIONS(3654), - [sym_private_property_identifier] = ACTIONS(3654), - [sym_this] = ACTIONS(3654), - [sym_super] = ACTIONS(3654), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [sym_null] = ACTIONS(3654), - [sym_undefined] = ACTIONS(3654), - [anon_sym_AT] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_readonly] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(3654), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_declare] = ACTIONS(3654), - [anon_sym_public] = ACTIONS(3654), - [anon_sym_private] = ACTIONS(3654), - [anon_sym_protected] = ACTIONS(3654), - [anon_sym_override] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_any] = ACTIONS(3654), - [anon_sym_number] = ACTIONS(3654), - [anon_sym_boolean] = ACTIONS(3654), - [anon_sym_string] = ACTIONS(3654), - [anon_sym_symbol] = ACTIONS(3654), - [anon_sym_object] = ACTIONS(3654), - [anon_sym_property] = ACTIONS(3654), - [anon_sym_signal] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_required] = ACTIONS(3654), - [anon_sym_component] = ACTIONS(3654), - [anon_sym_abstract] = ACTIONS(3654), - [anon_sym_interface] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1501] = { - [sym_comment] = STATE(1501), - [sym_identifier] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3648), - [anon_sym_type] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_RBRACE] = ACTIONS(3648), - [anon_sym_typeof] = ACTIONS(3648), - [anon_sym_import] = ACTIONS(3648), - [anon_sym_from] = ACTIONS(3648), - [anon_sym_with] = ACTIONS(3648), - [anon_sym_var] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_else] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_await] = ACTIONS(3648), - [anon_sym_of] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_debugger] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_yield] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_LTtemplate_GT] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_async] = ACTIONS(3648), - [anon_sym_function] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3648), - [anon_sym_LT] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [anon_sym_void] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), + [1492] = { + [sym_comment] = STATE(1492), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_typeof] = ACTIONS(2434), + [anon_sym_import] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_with] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_debugger] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_throw] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LTtemplate_GT] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_class] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2434), + [anon_sym_delete] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3648), - [sym_number] = ACTIONS(3648), - [sym_private_property_identifier] = ACTIONS(3648), - [sym_this] = ACTIONS(3648), - [sym_super] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_null] = ACTIONS(3648), - [sym_undefined] = ACTIONS(3648), - [anon_sym_AT] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_readonly] = ACTIONS(3648), - [anon_sym_get] = ACTIONS(3648), - [anon_sym_set] = ACTIONS(3648), - [anon_sym_declare] = ACTIONS(3648), - [anon_sym_public] = ACTIONS(3648), - [anon_sym_private] = ACTIONS(3648), - [anon_sym_protected] = ACTIONS(3648), - [anon_sym_override] = ACTIONS(3648), - [anon_sym_module] = ACTIONS(3648), - [anon_sym_any] = ACTIONS(3648), - [anon_sym_number] = ACTIONS(3648), - [anon_sym_boolean] = ACTIONS(3648), - [anon_sym_string] = ACTIONS(3648), - [anon_sym_symbol] = ACTIONS(3648), - [anon_sym_object] = ACTIONS(3648), - [anon_sym_property] = ACTIONS(3648), - [anon_sym_signal] = ACTIONS(3648), - [anon_sym_on] = ACTIONS(3648), - [anon_sym_required] = ACTIONS(3648), - [anon_sym_component] = ACTIONS(3648), - [anon_sym_abstract] = ACTIONS(3648), - [anon_sym_interface] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_private_property_identifier] = ACTIONS(2434), + [sym_this] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_true] = ACTIONS(2434), + [sym_false] = ACTIONS(2434), + [sym_null] = ACTIONS(2434), + [sym_undefined] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_abstract] = ACTIONS(2434), + [anon_sym_interface] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), [sym_html_comment] = ACTIONS(5), }, - [1502] = { - [sym_comment] = STATE(1502), - [sym_identifier] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_type] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_RBRACE] = ACTIONS(3630), - [anon_sym_typeof] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_from] = ACTIONS(3630), - [anon_sym_with] = ACTIONS(3630), - [anon_sym_var] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_await] = ACTIONS(3630), - [anon_sym_of] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_debugger] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LTtemplate_GT] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_SQUOTE] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_async] = ACTIONS(3630), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_SLASH] = ACTIONS(3630), - [anon_sym_LT] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3630), - [anon_sym_void] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3630), + [1493] = { + [sym_comment] = STATE(1493), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3630), - [sym_number] = ACTIONS(3630), - [sym_private_property_identifier] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [sym_super] = ACTIONS(3630), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [sym_null] = ACTIONS(3630), - [sym_undefined] = ACTIONS(3630), - [anon_sym_AT] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_readonly] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(3630), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_declare] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_override] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_any] = ACTIONS(3630), - [anon_sym_number] = ACTIONS(3630), - [anon_sym_boolean] = ACTIONS(3630), - [anon_sym_string] = ACTIONS(3630), - [anon_sym_symbol] = ACTIONS(3630), - [anon_sym_object] = ACTIONS(3630), - [anon_sym_property] = ACTIONS(3630), - [anon_sym_signal] = ACTIONS(3630), - [anon_sym_on] = ACTIONS(3630), - [anon_sym_required] = ACTIONS(3630), - [anon_sym_component] = ACTIONS(3630), - [anon_sym_abstract] = ACTIONS(3630), - [anon_sym_interface] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3738), [sym_html_comment] = ACTIONS(5), }, - [1503] = { - [sym_comment] = STATE(1503), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), + [1494] = { + [sym_comment] = STATE(1494), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_finally] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_private_property_identifier] = ACTIONS(2442), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), [sym_html_comment] = ACTIONS(5), }, - [1504] = { - [sym_comment] = STATE(1504), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_finally] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1495] = { + [sym_comment] = STATE(1495), + [sym_identifier] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_type] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(3576), + [anon_sym_typeof] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_from] = ACTIONS(3576), + [anon_sym_with] = ACTIONS(3576), + [anon_sym_var] = ACTIONS(3576), + [anon_sym_let] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3576), + [anon_sym_else] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_await] = ACTIONS(3576), + [anon_sym_of] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_debugger] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3576), + [anon_sym_yield] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_LTtemplate_GT] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(3576), + [anon_sym_SQUOTE] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_async] = ACTIONS(3576), + [anon_sym_function] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_TILDE] = ACTIONS(3576), + [anon_sym_void] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_PLUS_PLUS] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3576), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym_html_comment] = ACTIONS(5), - }, - [1505] = { - [sym_comment] = STATE(1505), - [sym_identifier] = ACTIONS(3570), - [anon_sym_export] = ACTIONS(3570), - [anon_sym_type] = ACTIONS(3570), - [anon_sym_namespace] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym_typeof] = ACTIONS(3570), - [anon_sym_import] = ACTIONS(3570), - [anon_sym_from] = ACTIONS(3570), - [anon_sym_with] = ACTIONS(3570), - [anon_sym_var] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_const] = ACTIONS(3570), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_else] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_switch] = ACTIONS(3570), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_await] = ACTIONS(3570), - [anon_sym_of] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_break] = ACTIONS(3570), - [anon_sym_continue] = ACTIONS(3570), - [anon_sym_debugger] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_throw] = ACTIONS(3570), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LTtemplate_GT] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_SQUOTE] = ACTIONS(3570), - [anon_sym_class] = ACTIONS(3570), - [anon_sym_async] = ACTIONS(3570), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_using] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_void] = ACTIONS(3570), - [anon_sym_delete] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3570), - [sym_number] = ACTIONS(3570), - [sym_private_property_identifier] = ACTIONS(3570), - [sym_this] = ACTIONS(3570), - [sym_super] = ACTIONS(3570), - [sym_true] = ACTIONS(3570), - [sym_false] = ACTIONS(3570), - [sym_null] = ACTIONS(3570), - [sym_undefined] = ACTIONS(3570), - [anon_sym_AT] = ACTIONS(3570), - [anon_sym_static] = ACTIONS(3570), - [anon_sym_readonly] = ACTIONS(3570), - [anon_sym_get] = ACTIONS(3570), - [anon_sym_set] = ACTIONS(3570), - [anon_sym_declare] = ACTIONS(3570), - [anon_sym_public] = ACTIONS(3570), - [anon_sym_private] = ACTIONS(3570), - [anon_sym_protected] = ACTIONS(3570), - [anon_sym_override] = ACTIONS(3570), - [anon_sym_module] = ACTIONS(3570), - [anon_sym_any] = ACTIONS(3570), - [anon_sym_number] = ACTIONS(3570), - [anon_sym_boolean] = ACTIONS(3570), - [anon_sym_string] = ACTIONS(3570), - [anon_sym_symbol] = ACTIONS(3570), - [anon_sym_object] = ACTIONS(3570), - [anon_sym_property] = ACTIONS(3570), - [anon_sym_signal] = ACTIONS(3570), - [anon_sym_on] = ACTIONS(3570), - [anon_sym_required] = ACTIONS(3570), - [anon_sym_component] = ACTIONS(3570), - [anon_sym_abstract] = ACTIONS(3570), - [anon_sym_interface] = ACTIONS(3570), - [anon_sym_enum] = ACTIONS(3570), + [anon_sym_BQUOTE] = ACTIONS(3576), + [sym_number] = ACTIONS(3576), + [sym_private_property_identifier] = ACTIONS(3576), + [sym_this] = ACTIONS(3576), + [sym_super] = ACTIONS(3576), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [sym_null] = ACTIONS(3576), + [sym_undefined] = ACTIONS(3576), + [anon_sym_AT] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_readonly] = ACTIONS(3576), + [anon_sym_get] = ACTIONS(3576), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_declare] = ACTIONS(3576), + [anon_sym_public] = ACTIONS(3576), + [anon_sym_private] = ACTIONS(3576), + [anon_sym_protected] = ACTIONS(3576), + [anon_sym_override] = ACTIONS(3576), + [anon_sym_module] = ACTIONS(3576), + [anon_sym_any] = ACTIONS(3576), + [anon_sym_number] = ACTIONS(3576), + [anon_sym_boolean] = ACTIONS(3576), + [anon_sym_string] = ACTIONS(3576), + [anon_sym_symbol] = ACTIONS(3576), + [anon_sym_object] = ACTIONS(3576), + [anon_sym_property] = ACTIONS(3576), + [anon_sym_signal] = ACTIONS(3576), + [anon_sym_on] = ACTIONS(3576), + [anon_sym_required] = ACTIONS(3576), + [anon_sym_component] = ACTIONS(3576), + [anon_sym_abstract] = ACTIONS(3576), + [anon_sym_interface] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), [sym_html_comment] = ACTIONS(5), }, - [1506] = { - [sym_comment] = STATE(1506), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1496] = { + [sym_comment] = STATE(1496), + [sym_identifier] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_type] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_typeof] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_from] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_var] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_await] = ACTIONS(3592), + [anon_sym_of] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_debugger] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LTtemplate_GT] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_async] = ACTIONS(3592), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_SLASH] = ACTIONS(3592), + [anon_sym_LT] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_void] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3592), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3592), + [sym_number] = ACTIONS(3592), + [sym_private_property_identifier] = ACTIONS(3592), + [sym_this] = ACTIONS(3592), + [sym_super] = ACTIONS(3592), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [sym_null] = ACTIONS(3592), + [sym_undefined] = ACTIONS(3592), + [anon_sym_AT] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_readonly] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(3592), + [anon_sym_set] = ACTIONS(3592), + [anon_sym_declare] = ACTIONS(3592), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_override] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_any] = ACTIONS(3592), + [anon_sym_number] = ACTIONS(3592), + [anon_sym_boolean] = ACTIONS(3592), + [anon_sym_string] = ACTIONS(3592), + [anon_sym_symbol] = ACTIONS(3592), + [anon_sym_object] = ACTIONS(3592), + [anon_sym_property] = ACTIONS(3592), + [anon_sym_signal] = ACTIONS(3592), + [anon_sym_on] = ACTIONS(3592), + [anon_sym_required] = ACTIONS(3592), + [anon_sym_component] = ACTIONS(3592), + [anon_sym_abstract] = ACTIONS(3592), + [anon_sym_interface] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), [sym_html_comment] = ACTIONS(5), }, - [1507] = { - [sym_comment] = STATE(1507), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1497] = { + [sym_comment] = STATE(1497), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), [sym_html_comment] = ACTIONS(5), }, - [1508] = { - [sym_comment] = STATE(1508), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1498] = { + [sym_comment] = STATE(1498), + [sym_identifier] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_type] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_typeof] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_from] = ACTIONS(3534), + [anon_sym_with] = ACTIONS(3534), + [anon_sym_var] = ACTIONS(3534), + [anon_sym_let] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_else] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3534), + [anon_sym_await] = ACTIONS(3534), + [anon_sym_of] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_debugger] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_yield] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_LTtemplate_GT] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_async] = ACTIONS(3534), + [anon_sym_function] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_SLASH] = ACTIONS(3534), + [anon_sym_LT] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_void] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3534), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3534), + [sym_number] = ACTIONS(3534), + [sym_private_property_identifier] = ACTIONS(3534), + [sym_this] = ACTIONS(3534), + [sym_super] = ACTIONS(3534), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [sym_null] = ACTIONS(3534), + [sym_undefined] = ACTIONS(3534), + [anon_sym_AT] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_readonly] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3534), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_declare] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_override] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_any] = ACTIONS(3534), + [anon_sym_number] = ACTIONS(3534), + [anon_sym_boolean] = ACTIONS(3534), + [anon_sym_string] = ACTIONS(3534), + [anon_sym_symbol] = ACTIONS(3534), + [anon_sym_object] = ACTIONS(3534), + [anon_sym_property] = ACTIONS(3534), + [anon_sym_signal] = ACTIONS(3534), + [anon_sym_on] = ACTIONS(3534), + [anon_sym_required] = ACTIONS(3534), + [anon_sym_component] = ACTIONS(3534), + [anon_sym_abstract] = ACTIONS(3534), + [anon_sym_interface] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), [sym_html_comment] = ACTIONS(5), }, - [1509] = { - [sym_comment] = STATE(1509), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1499] = { + [sym_comment] = STATE(1499), + [sym_identifier] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_type] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(3576), + [anon_sym_typeof] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_from] = ACTIONS(3576), + [anon_sym_with] = ACTIONS(3576), + [anon_sym_var] = ACTIONS(3576), + [anon_sym_let] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3576), + [anon_sym_else] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_await] = ACTIONS(3576), + [anon_sym_of] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_debugger] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3576), + [anon_sym_yield] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_LTtemplate_GT] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(3576), + [anon_sym_SQUOTE] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_async] = ACTIONS(3576), + [anon_sym_function] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_TILDE] = ACTIONS(3576), + [anon_sym_void] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_PLUS_PLUS] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3576), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(3576), + [sym_number] = ACTIONS(3576), + [sym_private_property_identifier] = ACTIONS(3576), + [sym_this] = ACTIONS(3576), + [sym_super] = ACTIONS(3576), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [sym_null] = ACTIONS(3576), + [sym_undefined] = ACTIONS(3576), + [anon_sym_AT] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_readonly] = ACTIONS(3576), + [anon_sym_get] = ACTIONS(3576), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_declare] = ACTIONS(3576), + [anon_sym_public] = ACTIONS(3576), + [anon_sym_private] = ACTIONS(3576), + [anon_sym_protected] = ACTIONS(3576), + [anon_sym_override] = ACTIONS(3576), + [anon_sym_module] = ACTIONS(3576), + [anon_sym_any] = ACTIONS(3576), + [anon_sym_number] = ACTIONS(3576), + [anon_sym_boolean] = ACTIONS(3576), + [anon_sym_string] = ACTIONS(3576), + [anon_sym_symbol] = ACTIONS(3576), + [anon_sym_object] = ACTIONS(3576), + [anon_sym_property] = ACTIONS(3576), + [anon_sym_signal] = ACTIONS(3576), + [anon_sym_on] = ACTIONS(3576), + [anon_sym_required] = ACTIONS(3576), + [anon_sym_component] = ACTIONS(3576), + [anon_sym_abstract] = ACTIONS(3576), + [anon_sym_interface] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), [sym_html_comment] = ACTIONS(5), }, - [1510] = { - [sym_comment] = STATE(1510), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1500] = { + [sym_comment] = STATE(1500), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_typeof] = ACTIONS(2438), + [anon_sym_import] = ACTIONS(2438), + [anon_sym_from] = ACTIONS(2438), + [anon_sym_with] = ACTIONS(2438), + [anon_sym_var] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_debugger] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LTtemplate_GT] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_class] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2438), + [anon_sym_delete] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_private_property_identifier] = ACTIONS(2438), + [sym_this] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_true] = ACTIONS(2438), + [sym_false] = ACTIONS(2438), + [sym_null] = ACTIONS(2438), + [sym_undefined] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2438), + [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_property] = ACTIONS(2438), + [anon_sym_signal] = ACTIONS(2438), + [anon_sym_on] = ACTIONS(2438), + [anon_sym_required] = ACTIONS(2438), + [anon_sym_component] = ACTIONS(2438), + [anon_sym_abstract] = ACTIONS(2438), + [anon_sym_interface] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), [sym_html_comment] = ACTIONS(5), }, - [1511] = { - [sym_comment] = STATE(1511), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1501] = { + [sym_comment] = STATE(1501), + [sym_identifier] = ACTIONS(3516), + [anon_sym_export] = ACTIONS(3516), + [anon_sym_type] = ACTIONS(3516), + [anon_sym_namespace] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_typeof] = ACTIONS(3516), + [anon_sym_import] = ACTIONS(3516), + [anon_sym_from] = ACTIONS(3516), + [anon_sym_with] = ACTIONS(3516), + [anon_sym_var] = ACTIONS(3516), + [anon_sym_let] = ACTIONS(3516), + [anon_sym_const] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_else] = ACTIONS(3516), + [anon_sym_if] = ACTIONS(3516), + [anon_sym_switch] = ACTIONS(3516), + [anon_sym_for] = ACTIONS(3516), + [anon_sym_LPAREN] = ACTIONS(3516), + [anon_sym_await] = ACTIONS(3516), + [anon_sym_of] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3516), + [anon_sym_do] = ACTIONS(3516), + [anon_sym_try] = ACTIONS(3516), + [anon_sym_break] = ACTIONS(3516), + [anon_sym_continue] = ACTIONS(3516), + [anon_sym_debugger] = ACTIONS(3516), + [anon_sym_return] = ACTIONS(3516), + [anon_sym_throw] = ACTIONS(3516), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym_yield] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3516), + [anon_sym_LTtemplate_GT] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_class] = ACTIONS(3516), + [anon_sym_async] = ACTIONS(3516), + [anon_sym_function] = ACTIONS(3516), + [anon_sym_new] = ACTIONS(3516), + [anon_sym_using] = ACTIONS(3516), + [anon_sym_PLUS] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_SLASH] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_void] = ACTIONS(3516), + [anon_sym_delete] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_DASH_DASH] = ACTIONS(3516), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(3516), + [sym_number] = ACTIONS(3516), + [sym_private_property_identifier] = ACTIONS(3516), + [sym_this] = ACTIONS(3516), + [sym_super] = ACTIONS(3516), + [sym_true] = ACTIONS(3516), + [sym_false] = ACTIONS(3516), + [sym_null] = ACTIONS(3516), + [sym_undefined] = ACTIONS(3516), + [anon_sym_AT] = ACTIONS(3516), + [anon_sym_static] = ACTIONS(3516), + [anon_sym_readonly] = ACTIONS(3516), + [anon_sym_get] = ACTIONS(3516), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_declare] = ACTIONS(3516), + [anon_sym_public] = ACTIONS(3516), + [anon_sym_private] = ACTIONS(3516), + [anon_sym_protected] = ACTIONS(3516), + [anon_sym_override] = ACTIONS(3516), + [anon_sym_module] = ACTIONS(3516), + [anon_sym_any] = ACTIONS(3516), + [anon_sym_number] = ACTIONS(3516), + [anon_sym_boolean] = ACTIONS(3516), + [anon_sym_string] = ACTIONS(3516), + [anon_sym_symbol] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(3516), + [anon_sym_property] = ACTIONS(3516), + [anon_sym_signal] = ACTIONS(3516), + [anon_sym_on] = ACTIONS(3516), + [anon_sym_required] = ACTIONS(3516), + [anon_sym_component] = ACTIONS(3516), + [anon_sym_abstract] = ACTIONS(3516), + [anon_sym_interface] = ACTIONS(3516), + [anon_sym_enum] = ACTIONS(3516), [sym_html_comment] = ACTIONS(5), }, - [1512] = { - [sym_comment] = STATE(1512), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1502] = { + [sym_comment] = STATE(1502), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_typeof] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_with] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_const] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2396), + [anon_sym_if] = ACTIONS(2396), + [anon_sym_switch] = ACTIONS(2396), + [anon_sym_for] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2396), + [anon_sym_await] = ACTIONS(2396), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_while] = ACTIONS(2396), + [anon_sym_do] = ACTIONS(2396), + [anon_sym_try] = ACTIONS(2396), + [anon_sym_break] = ACTIONS(2396), + [anon_sym_continue] = ACTIONS(2396), + [anon_sym_debugger] = ACTIONS(2396), + [anon_sym_return] = ACTIONS(2396), + [anon_sym_throw] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2396), + [anon_sym_yield] = ACTIONS(2396), + [anon_sym_LBRACK] = ACTIONS(2396), + [anon_sym_LTtemplate_GT] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2396), + [anon_sym_SQUOTE] = ACTIONS(2396), + [anon_sym_class] = ACTIONS(2396), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_new] = ACTIONS(2396), + [anon_sym_using] = ACTIONS(2396), + [anon_sym_PLUS] = ACTIONS(2396), + [anon_sym_DASH] = ACTIONS(2396), + [anon_sym_SLASH] = ACTIONS(2396), + [anon_sym_LT] = ACTIONS(2396), + [anon_sym_TILDE] = ACTIONS(2396), + [anon_sym_void] = ACTIONS(2396), + [anon_sym_delete] = ACTIONS(2396), + [anon_sym_PLUS_PLUS] = ACTIONS(2396), + [anon_sym_DASH_DASH] = ACTIONS(2396), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2396), + [sym_number] = ACTIONS(2396), + [sym_private_property_identifier] = ACTIONS(2396), + [sym_this] = ACTIONS(2396), + [sym_super] = ACTIONS(2396), + [sym_true] = ACTIONS(2396), + [sym_false] = ACTIONS(2396), + [sym_null] = ACTIONS(2396), + [sym_undefined] = ACTIONS(2396), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_abstract] = ACTIONS(2396), + [anon_sym_interface] = ACTIONS(2396), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(2666), [sym_html_comment] = ACTIONS(5), }, - [1513] = { - [sym_comment] = STATE(1513), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1503] = { + [sym_comment] = STATE(1503), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_finally] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [sym_html_comment] = ACTIONS(5), - }, - [1514] = { - [sym_comment] = STATE(1514), - [sym_identifier] = ACTIONS(3542), - [anon_sym_export] = ACTIONS(3542), - [anon_sym_type] = ACTIONS(3542), - [anon_sym_namespace] = ACTIONS(3542), - [anon_sym_LBRACE] = ACTIONS(3542), - [anon_sym_RBRACE] = ACTIONS(3542), - [anon_sym_typeof] = ACTIONS(3542), - [anon_sym_import] = ACTIONS(3542), - [anon_sym_from] = ACTIONS(3542), - [anon_sym_with] = ACTIONS(3542), - [anon_sym_var] = ACTIONS(3542), - [anon_sym_let] = ACTIONS(3542), - [anon_sym_const] = ACTIONS(3542), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_else] = ACTIONS(3542), - [anon_sym_if] = ACTIONS(3542), - [anon_sym_switch] = ACTIONS(3542), - [anon_sym_for] = ACTIONS(3542), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_await] = ACTIONS(3542), - [anon_sym_of] = ACTIONS(3542), - [anon_sym_while] = ACTIONS(3542), - [anon_sym_do] = ACTIONS(3542), - [anon_sym_try] = ACTIONS(3542), - [anon_sym_break] = ACTIONS(3542), - [anon_sym_continue] = ACTIONS(3542), - [anon_sym_debugger] = ACTIONS(3542), - [anon_sym_return] = ACTIONS(3542), - [anon_sym_throw] = ACTIONS(3542), - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym_yield] = ACTIONS(3542), - [anon_sym_LBRACK] = ACTIONS(3542), - [anon_sym_LTtemplate_GT] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3542), - [anon_sym_SQUOTE] = ACTIONS(3542), - [anon_sym_class] = ACTIONS(3542), - [anon_sym_async] = ACTIONS(3542), - [anon_sym_function] = ACTIONS(3542), - [anon_sym_new] = ACTIONS(3542), - [anon_sym_using] = ACTIONS(3542), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_SLASH] = ACTIONS(3542), - [anon_sym_LT] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_void] = ACTIONS(3542), - [anon_sym_delete] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_DASH_DASH] = ACTIONS(3542), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3542), - [sym_number] = ACTIONS(3542), - [sym_private_property_identifier] = ACTIONS(3542), - [sym_this] = ACTIONS(3542), - [sym_super] = ACTIONS(3542), - [sym_true] = ACTIONS(3542), - [sym_false] = ACTIONS(3542), - [sym_null] = ACTIONS(3542), - [sym_undefined] = ACTIONS(3542), - [anon_sym_AT] = ACTIONS(3542), - [anon_sym_static] = ACTIONS(3542), - [anon_sym_readonly] = ACTIONS(3542), - [anon_sym_get] = ACTIONS(3542), - [anon_sym_set] = ACTIONS(3542), - [anon_sym_declare] = ACTIONS(3542), - [anon_sym_public] = ACTIONS(3542), - [anon_sym_private] = ACTIONS(3542), - [anon_sym_protected] = ACTIONS(3542), - [anon_sym_override] = ACTIONS(3542), - [anon_sym_module] = ACTIONS(3542), - [anon_sym_any] = ACTIONS(3542), - [anon_sym_number] = ACTIONS(3542), - [anon_sym_boolean] = ACTIONS(3542), - [anon_sym_string] = ACTIONS(3542), - [anon_sym_symbol] = ACTIONS(3542), - [anon_sym_object] = ACTIONS(3542), - [anon_sym_property] = ACTIONS(3542), - [anon_sym_signal] = ACTIONS(3542), - [anon_sym_on] = ACTIONS(3542), - [anon_sym_required] = ACTIONS(3542), - [anon_sym_component] = ACTIONS(3542), - [anon_sym_abstract] = ACTIONS(3542), - [anon_sym_interface] = ACTIONS(3542), - [anon_sym_enum] = ACTIONS(3542), - [sym_html_comment] = ACTIONS(5), - }, - [1515] = { - [sym_comment] = STATE(1515), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1516] = { - [sym_comment] = STATE(1516), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1517] = { - [sym_comment] = STATE(1517), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1518] = { - [sym_comment] = STATE(1518), - [sym_identifier] = ACTIONS(3550), - [anon_sym_export] = ACTIONS(3550), - [anon_sym_type] = ACTIONS(3550), - [anon_sym_namespace] = ACTIONS(3550), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_RBRACE] = ACTIONS(3550), - [anon_sym_typeof] = ACTIONS(3550), - [anon_sym_import] = ACTIONS(3550), - [anon_sym_from] = ACTIONS(3550), - [anon_sym_with] = ACTIONS(3550), - [anon_sym_var] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_const] = ACTIONS(3550), - [anon_sym_BANG] = ACTIONS(3550), - [anon_sym_else] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_switch] = ACTIONS(3550), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_await] = ACTIONS(3550), - [anon_sym_of] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_break] = ACTIONS(3550), - [anon_sym_continue] = ACTIONS(3550), - [anon_sym_debugger] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_throw] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3550), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LTtemplate_GT] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_SQUOTE] = ACTIONS(3550), - [anon_sym_class] = ACTIONS(3550), - [anon_sym_async] = ACTIONS(3550), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_using] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_SLASH] = ACTIONS(3550), - [anon_sym_LT] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3550), - [anon_sym_void] = ACTIONS(3550), - [anon_sym_delete] = ACTIONS(3550), - [anon_sym_PLUS_PLUS] = ACTIONS(3550), - [anon_sym_DASH_DASH] = ACTIONS(3550), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3550), - [sym_number] = ACTIONS(3550), - [sym_private_property_identifier] = ACTIONS(3550), - [sym_this] = ACTIONS(3550), - [sym_super] = ACTIONS(3550), - [sym_true] = ACTIONS(3550), - [sym_false] = ACTIONS(3550), - [sym_null] = ACTIONS(3550), - [sym_undefined] = ACTIONS(3550), - [anon_sym_AT] = ACTIONS(3550), - [anon_sym_static] = ACTIONS(3550), - [anon_sym_readonly] = ACTIONS(3550), - [anon_sym_get] = ACTIONS(3550), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_declare] = ACTIONS(3550), - [anon_sym_public] = ACTIONS(3550), - [anon_sym_private] = ACTIONS(3550), - [anon_sym_protected] = ACTIONS(3550), - [anon_sym_override] = ACTIONS(3550), - [anon_sym_module] = ACTIONS(3550), - [anon_sym_any] = ACTIONS(3550), - [anon_sym_number] = ACTIONS(3550), - [anon_sym_boolean] = ACTIONS(3550), - [anon_sym_string] = ACTIONS(3550), - [anon_sym_symbol] = ACTIONS(3550), - [anon_sym_object] = ACTIONS(3550), - [anon_sym_property] = ACTIONS(3550), - [anon_sym_signal] = ACTIONS(3550), - [anon_sym_on] = ACTIONS(3550), - [anon_sym_required] = ACTIONS(3550), - [anon_sym_component] = ACTIONS(3550), - [anon_sym_abstract] = ACTIONS(3550), - [anon_sym_interface] = ACTIONS(3550), - [anon_sym_enum] = ACTIONS(3550), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), [sym_html_comment] = ACTIONS(5), }, - [1519] = { - [sym_comment] = STATE(1519), - [sym_identifier] = ACTIONS(3540), - [anon_sym_export] = ACTIONS(3540), - [anon_sym_type] = ACTIONS(3540), - [anon_sym_namespace] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_RBRACE] = ACTIONS(3540), - [anon_sym_typeof] = ACTIONS(3540), - [anon_sym_import] = ACTIONS(3540), - [anon_sym_from] = ACTIONS(3540), - [anon_sym_with] = ACTIONS(3540), - [anon_sym_var] = ACTIONS(3540), - [anon_sym_let] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_BANG] = ACTIONS(3540), - [anon_sym_else] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_switch] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3540), - [anon_sym_await] = ACTIONS(3540), - [anon_sym_of] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_do] = ACTIONS(3540), - [anon_sym_try] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_debugger] = ACTIONS(3540), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_throw] = ACTIONS(3540), - [anon_sym_SEMI] = ACTIONS(3540), - [anon_sym_yield] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LTtemplate_GT] = ACTIONS(3540), - [anon_sym_DQUOTE] = ACTIONS(3540), - [anon_sym_SQUOTE] = ACTIONS(3540), - [anon_sym_class] = ACTIONS(3540), - [anon_sym_async] = ACTIONS(3540), - [anon_sym_function] = ACTIONS(3540), - [anon_sym_new] = ACTIONS(3540), - [anon_sym_using] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_SLASH] = ACTIONS(3540), - [anon_sym_LT] = ACTIONS(3540), - [anon_sym_TILDE] = ACTIONS(3540), - [anon_sym_void] = ACTIONS(3540), - [anon_sym_delete] = ACTIONS(3540), - [anon_sym_PLUS_PLUS] = ACTIONS(3540), - [anon_sym_DASH_DASH] = ACTIONS(3540), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3540), - [sym_number] = ACTIONS(3540), - [sym_private_property_identifier] = ACTIONS(3540), - [sym_this] = ACTIONS(3540), - [sym_super] = ACTIONS(3540), - [sym_true] = ACTIONS(3540), - [sym_false] = ACTIONS(3540), - [sym_null] = ACTIONS(3540), - [sym_undefined] = ACTIONS(3540), - [anon_sym_AT] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_readonly] = ACTIONS(3540), - [anon_sym_get] = ACTIONS(3540), - [anon_sym_set] = ACTIONS(3540), - [anon_sym_declare] = ACTIONS(3540), - [anon_sym_public] = ACTIONS(3540), - [anon_sym_private] = ACTIONS(3540), - [anon_sym_protected] = ACTIONS(3540), - [anon_sym_override] = ACTIONS(3540), - [anon_sym_module] = ACTIONS(3540), - [anon_sym_any] = ACTIONS(3540), - [anon_sym_number] = ACTIONS(3540), - [anon_sym_boolean] = ACTIONS(3540), - [anon_sym_string] = ACTIONS(3540), - [anon_sym_symbol] = ACTIONS(3540), - [anon_sym_object] = ACTIONS(3540), - [anon_sym_property] = ACTIONS(3540), - [anon_sym_signal] = ACTIONS(3540), - [anon_sym_on] = ACTIONS(3540), - [anon_sym_required] = ACTIONS(3540), - [anon_sym_component] = ACTIONS(3540), - [anon_sym_abstract] = ACTIONS(3540), - [anon_sym_interface] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(3540), + [1504] = { + [sym_comment] = STATE(1504), + [sym_identifier] = ACTIONS(3492), + [anon_sym_export] = ACTIONS(3492), + [anon_sym_type] = ACTIONS(3492), + [anon_sym_namespace] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym_import] = ACTIONS(3492), + [anon_sym_from] = ACTIONS(3492), + [anon_sym_with] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_else] = ACTIONS(3492), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_of] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_debugger] = ACTIONS(3492), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3492), + [anon_sym_LTtemplate_GT] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_class] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_function] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_using] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_SLASH] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_void] = ACTIONS(3492), + [anon_sym_delete] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3492), + [sym_number] = ACTIONS(3492), + [sym_private_property_identifier] = ACTIONS(3492), + [sym_this] = ACTIONS(3492), + [sym_super] = ACTIONS(3492), + [sym_true] = ACTIONS(3492), + [sym_false] = ACTIONS(3492), + [sym_null] = ACTIONS(3492), + [sym_undefined] = ACTIONS(3492), + [anon_sym_AT] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3492), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_declare] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_override] = ACTIONS(3492), + [anon_sym_module] = ACTIONS(3492), + [anon_sym_any] = ACTIONS(3492), + [anon_sym_number] = ACTIONS(3492), + [anon_sym_boolean] = ACTIONS(3492), + [anon_sym_string] = ACTIONS(3492), + [anon_sym_symbol] = ACTIONS(3492), + [anon_sym_object] = ACTIONS(3492), + [anon_sym_property] = ACTIONS(3492), + [anon_sym_signal] = ACTIONS(3492), + [anon_sym_on] = ACTIONS(3492), + [anon_sym_required] = ACTIONS(3492), + [anon_sym_component] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_interface] = ACTIONS(3492), + [anon_sym_enum] = ACTIONS(3492), [sym_html_comment] = ACTIONS(5), }, - [1520] = { - [sym_comment] = STATE(1520), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1505] = { + [sym_comment] = STATE(1505), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_typeof] = ACTIONS(2418), + [anon_sym_import] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_with] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_if] = ACTIONS(2418), + [anon_sym_switch] = ACTIONS(2418), + [anon_sym_for] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_await] = ACTIONS(2418), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_while] = ACTIONS(2418), + [anon_sym_do] = ACTIONS(2418), + [anon_sym_try] = ACTIONS(2418), + [anon_sym_break] = ACTIONS(2418), + [anon_sym_continue] = ACTIONS(2418), + [anon_sym_debugger] = ACTIONS(2418), + [anon_sym_return] = ACTIONS(2418), + [anon_sym_throw] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_yield] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LTtemplate_GT] = ACTIONS(2418), + [anon_sym_DQUOTE] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2418), + [anon_sym_class] = ACTIONS(2418), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_new] = ACTIONS(2418), + [anon_sym_using] = ACTIONS(2418), + [anon_sym_PLUS] = ACTIONS(2418), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_SLASH] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_TILDE] = ACTIONS(2418), + [anon_sym_void] = ACTIONS(2418), + [anon_sym_delete] = ACTIONS(2418), + [anon_sym_PLUS_PLUS] = ACTIONS(2418), + [anon_sym_DASH_DASH] = ACTIONS(2418), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(2418), + [sym_number] = ACTIONS(2418), + [sym_private_property_identifier] = ACTIONS(2418), + [sym_this] = ACTIONS(2418), + [sym_super] = ACTIONS(2418), + [sym_true] = ACTIONS(2418), + [sym_false] = ACTIONS(2418), + [sym_null] = ACTIONS(2418), + [sym_undefined] = ACTIONS(2418), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_abstract] = ACTIONS(2418), + [anon_sym_interface] = ACTIONS(2418), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2654), [sym_html_comment] = ACTIONS(5), }, - [1521] = { - [sym_comment] = STATE(1521), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1506] = { + [sym_comment] = STATE(1506), + [sym_identifier] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_from] = ACTIONS(3486), + [anon_sym_with] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_of] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_debugger] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LTtemplate_GT] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_function] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_SLASH] = ACTIONS(3486), + [anon_sym_LT] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [sym_html_comment] = ACTIONS(5), - }, - [1522] = { - [sym_comment] = STATE(1522), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2362), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_typeof] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_with] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2362), - [anon_sym_await] = ACTIONS(2362), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_do] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_debugger] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2362), - [anon_sym_LTtemplate_GT] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [anon_sym_SQUOTE] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2362), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_void] = ACTIONS(2362), - [anon_sym_delete] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2362), - [anon_sym_DASH_DASH] = ACTIONS(2362), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2362), - [sym_number] = ACTIONS(2362), - [sym_private_property_identifier] = ACTIONS(2362), - [sym_this] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_true] = ACTIONS(2362), - [sym_false] = ACTIONS(2362), - [sym_null] = ACTIONS(2362), - [sym_undefined] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - [sym__automatic_semicolon] = ACTIONS(2700), + [anon_sym_BQUOTE] = ACTIONS(3486), + [sym_number] = ACTIONS(3486), + [sym_private_property_identifier] = ACTIONS(3486), + [sym_this] = ACTIONS(3486), + [sym_super] = ACTIONS(3486), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [anon_sym_AT] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_get] = ACTIONS(3486), + [anon_sym_set] = ACTIONS(3486), + [anon_sym_declare] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_override] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_any] = ACTIONS(3486), + [anon_sym_number] = ACTIONS(3486), + [anon_sym_boolean] = ACTIONS(3486), + [anon_sym_string] = ACTIONS(3486), + [anon_sym_symbol] = ACTIONS(3486), + [anon_sym_object] = ACTIONS(3486), + [anon_sym_property] = ACTIONS(3486), + [anon_sym_signal] = ACTIONS(3486), + [anon_sym_on] = ACTIONS(3486), + [anon_sym_required] = ACTIONS(3486), + [anon_sym_component] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), [sym_html_comment] = ACTIONS(5), }, - [1523] = { - [sym_comment] = STATE(1523), + [1507] = { + [sym_comment] = STATE(1507), [sym_identifier] = ACTIONS(2426), [anon_sym_export] = ACTIONS(2426), [anon_sym_type] = ACTIONS(2426), @@ -204495,2739 +202640,1947 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2426), [anon_sym_interface] = ACTIONS(2426), [anon_sym_enum] = ACTIONS(2426), - [sym__automatic_semicolon] = ACTIONS(2696), + [sym__automatic_semicolon] = ACTIONS(2664), [sym_html_comment] = ACTIONS(5), }, - [1524] = { - [sym_comment] = STATE(1524), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_typeof] = ACTIONS(2478), - [anon_sym_import] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_with] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2478), - [anon_sym_await] = ACTIONS(2478), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_debugger] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_throw] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_LBRACK] = ACTIONS(2478), - [anon_sym_LTtemplate_GT] = ACTIONS(2478), - [anon_sym_DQUOTE] = ACTIONS(2478), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_SLASH] = ACTIONS(2478), - [anon_sym_LT] = ACTIONS(2478), - [anon_sym_TILDE] = ACTIONS(2478), - [anon_sym_void] = ACTIONS(2478), - [anon_sym_delete] = ACTIONS(2478), - [anon_sym_PLUS_PLUS] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2478), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2478), - [sym_number] = ACTIONS(2478), - [sym_private_property_identifier] = ACTIONS(2478), - [sym_this] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_undefined] = ACTIONS(2478), - [anon_sym_AT] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_object] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_abstract] = ACTIONS(2478), - [anon_sym_interface] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(2646), + [1508] = { + [sym_statement_block] = STATE(1584), + [sym_comment] = STATE(1508), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, - [1525] = { - [sym_comment] = STATE(1525), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1509] = { + [sym_comment] = STATE(1509), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_else] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1526] = { - [sym_comment] = STATE(1526), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1527] = { - [sym_comment] = STATE(1527), - [sym_identifier] = ACTIONS(3486), - [anon_sym_export] = ACTIONS(3486), - [anon_sym_type] = ACTIONS(3486), - [anon_sym_namespace] = ACTIONS(3486), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_RBRACE] = ACTIONS(3486), - [anon_sym_typeof] = ACTIONS(3486), - [anon_sym_import] = ACTIONS(3486), - [anon_sym_from] = ACTIONS(3486), - [anon_sym_with] = ACTIONS(3486), - [anon_sym_var] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_const] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3486), - [anon_sym_else] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_switch] = ACTIONS(3486), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_await] = ACTIONS(3486), - [anon_sym_of] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_break] = ACTIONS(3486), - [anon_sym_continue] = ACTIONS(3486), - [anon_sym_debugger] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_throw] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LTtemplate_GT] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_SQUOTE] = ACTIONS(3486), - [anon_sym_class] = ACTIONS(3486), - [anon_sym_async] = ACTIONS(3486), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_using] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3486), - [anon_sym_void] = ACTIONS(3486), - [anon_sym_delete] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DASH_DASH] = ACTIONS(3486), + [1510] = { + [sym_comment] = STATE(1510), + [sym_identifier] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_with] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_of] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_debugger] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LTtemplate_GT] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_function] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3486), - [sym_number] = ACTIONS(3486), - [sym_private_property_identifier] = ACTIONS(3486), - [sym_this] = ACTIONS(3486), - [sym_super] = ACTIONS(3486), - [sym_true] = ACTIONS(3486), - [sym_false] = ACTIONS(3486), - [sym_null] = ACTIONS(3486), - [sym_undefined] = ACTIONS(3486), - [anon_sym_AT] = ACTIONS(3486), - [anon_sym_static] = ACTIONS(3486), - [anon_sym_readonly] = ACTIONS(3486), - [anon_sym_get] = ACTIONS(3486), - [anon_sym_set] = ACTIONS(3486), - [anon_sym_declare] = ACTIONS(3486), - [anon_sym_public] = ACTIONS(3486), - [anon_sym_private] = ACTIONS(3486), - [anon_sym_protected] = ACTIONS(3486), - [anon_sym_override] = ACTIONS(3486), - [anon_sym_module] = ACTIONS(3486), - [anon_sym_any] = ACTIONS(3486), - [anon_sym_number] = ACTIONS(3486), - [anon_sym_boolean] = ACTIONS(3486), - [anon_sym_string] = ACTIONS(3486), - [anon_sym_symbol] = ACTIONS(3486), - [anon_sym_object] = ACTIONS(3486), - [anon_sym_property] = ACTIONS(3486), - [anon_sym_signal] = ACTIONS(3486), - [anon_sym_on] = ACTIONS(3486), - [anon_sym_required] = ACTIONS(3486), - [anon_sym_component] = ACTIONS(3486), - [anon_sym_abstract] = ACTIONS(3486), - [anon_sym_interface] = ACTIONS(3486), - [anon_sym_enum] = ACTIONS(3486), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_private_property_identifier] = ACTIONS(3464), + [sym_this] = ACTIONS(3464), + [sym_super] = ACTIONS(3464), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [sym_null] = ACTIONS(3464), + [sym_undefined] = ACTIONS(3464), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3464), + [anon_sym_declare] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_any] = ACTIONS(3464), + [anon_sym_number] = ACTIONS(3464), + [anon_sym_boolean] = ACTIONS(3464), + [anon_sym_string] = ACTIONS(3464), + [anon_sym_symbol] = ACTIONS(3464), + [anon_sym_object] = ACTIONS(3464), + [anon_sym_property] = ACTIONS(3464), + [anon_sym_signal] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_component] = ACTIONS(3464), + [anon_sym_abstract] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), + [sym__automatic_semicolon] = ACTIONS(3466), [sym_html_comment] = ACTIONS(5), }, - [1528] = { - [sym_comment] = STATE(1528), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1511] = { + [sym_comment] = STATE(1511), + [sym_identifier] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_type] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_typeof] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_from] = ACTIONS(3620), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_var] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_else] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_await] = ACTIONS(3620), + [anon_sym_of] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_debugger] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LTtemplate_GT] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_async] = ACTIONS(3620), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_SLASH] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_void] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3620), + [sym_number] = ACTIONS(3620), + [sym_private_property_identifier] = ACTIONS(3620), + [sym_this] = ACTIONS(3620), + [sym_super] = ACTIONS(3620), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [sym_null] = ACTIONS(3620), + [sym_undefined] = ACTIONS(3620), + [anon_sym_AT] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_readonly] = ACTIONS(3620), + [anon_sym_get] = ACTIONS(3620), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_declare] = ACTIONS(3620), + [anon_sym_public] = ACTIONS(3620), + [anon_sym_private] = ACTIONS(3620), + [anon_sym_protected] = ACTIONS(3620), + [anon_sym_override] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_any] = ACTIONS(3620), + [anon_sym_number] = ACTIONS(3620), + [anon_sym_boolean] = ACTIONS(3620), + [anon_sym_string] = ACTIONS(3620), + [anon_sym_symbol] = ACTIONS(3620), + [anon_sym_object] = ACTIONS(3620), + [anon_sym_property] = ACTIONS(3620), + [anon_sym_signal] = ACTIONS(3620), + [anon_sym_on] = ACTIONS(3620), + [anon_sym_required] = ACTIONS(3620), + [anon_sym_component] = ACTIONS(3620), + [anon_sym_abstract] = ACTIONS(3620), + [anon_sym_interface] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), [sym_html_comment] = ACTIONS(5), }, - [1529] = { - [sym_comment] = STATE(1529), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1512] = { + [sym_comment] = STATE(1512), + [sym_identifier] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_type] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_RBRACE] = ACTIONS(3514), + [anon_sym_typeof] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_from] = ACTIONS(3514), + [anon_sym_with] = ACTIONS(3514), + [anon_sym_var] = ACTIONS(3514), + [anon_sym_let] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3514), + [anon_sym_else] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_await] = ACTIONS(3514), + [anon_sym_of] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_debugger] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_yield] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_LTtemplate_GT] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(3514), + [anon_sym_SQUOTE] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_async] = ACTIONS(3514), + [anon_sym_function] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_void] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3514), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3514), + [sym_number] = ACTIONS(3514), + [sym_private_property_identifier] = ACTIONS(3514), + [sym_this] = ACTIONS(3514), + [sym_super] = ACTIONS(3514), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [sym_null] = ACTIONS(3514), + [sym_undefined] = ACTIONS(3514), + [anon_sym_AT] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_readonly] = ACTIONS(3514), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3514), + [anon_sym_declare] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_override] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_any] = ACTIONS(3514), + [anon_sym_number] = ACTIONS(3514), + [anon_sym_boolean] = ACTIONS(3514), + [anon_sym_string] = ACTIONS(3514), + [anon_sym_symbol] = ACTIONS(3514), + [anon_sym_object] = ACTIONS(3514), + [anon_sym_property] = ACTIONS(3514), + [anon_sym_signal] = ACTIONS(3514), + [anon_sym_on] = ACTIONS(3514), + [anon_sym_required] = ACTIONS(3514), + [anon_sym_component] = ACTIONS(3514), + [anon_sym_abstract] = ACTIONS(3514), + [anon_sym_interface] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), [sym_html_comment] = ACTIONS(5), }, - [1530] = { - [sym_comment] = STATE(1530), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1513] = { + [sym_comment] = STATE(1513), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_RBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_from] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_of] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_property] = ACTIONS(3616), + [anon_sym_signal] = ACTIONS(3616), + [anon_sym_on] = ACTIONS(3616), + [anon_sym_required] = ACTIONS(3616), + [anon_sym_component] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), [sym_html_comment] = ACTIONS(5), }, - [1531] = { - [sym_comment] = STATE(1531), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1514] = { + [sym_comment] = STATE(1514), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), [sym_html_comment] = ACTIONS(5), }, - [1532] = { - [sym_comment] = STATE(1532), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [1515] = { + [sym_comment] = STATE(1515), + [sym_identifier] = ACTIONS(3512), + [anon_sym_export] = ACTIONS(3512), + [anon_sym_type] = ACTIONS(3512), + [anon_sym_namespace] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3512), + [anon_sym_import] = ACTIONS(3512), + [anon_sym_from] = ACTIONS(3512), + [anon_sym_with] = ACTIONS(3512), + [anon_sym_var] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(3512), + [anon_sym_const] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_else] = ACTIONS(3512), + [anon_sym_if] = ACTIONS(3512), + [anon_sym_switch] = ACTIONS(3512), + [anon_sym_for] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3512), + [anon_sym_of] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(3512), + [anon_sym_do] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3512), + [anon_sym_break] = ACTIONS(3512), + [anon_sym_continue] = ACTIONS(3512), + [anon_sym_debugger] = ACTIONS(3512), + [anon_sym_return] = ACTIONS(3512), + [anon_sym_throw] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_yield] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LTtemplate_GT] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_class] = ACTIONS(3512), + [anon_sym_async] = ACTIONS(3512), + [anon_sym_function] = ACTIONS(3512), + [anon_sym_new] = ACTIONS(3512), + [anon_sym_using] = ACTIONS(3512), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_SLASH] = ACTIONS(3512), + [anon_sym_LT] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_void] = ACTIONS(3512), + [anon_sym_delete] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_number] = ACTIONS(3512), + [sym_private_property_identifier] = ACTIONS(3512), + [sym_this] = ACTIONS(3512), + [sym_super] = ACTIONS(3512), + [sym_true] = ACTIONS(3512), + [sym_false] = ACTIONS(3512), + [sym_null] = ACTIONS(3512), + [sym_undefined] = ACTIONS(3512), + [anon_sym_AT] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3512), + [anon_sym_readonly] = ACTIONS(3512), + [anon_sym_get] = ACTIONS(3512), + [anon_sym_set] = ACTIONS(3512), + [anon_sym_declare] = ACTIONS(3512), + [anon_sym_public] = ACTIONS(3512), + [anon_sym_private] = ACTIONS(3512), + [anon_sym_protected] = ACTIONS(3512), + [anon_sym_override] = ACTIONS(3512), + [anon_sym_module] = ACTIONS(3512), + [anon_sym_any] = ACTIONS(3512), + [anon_sym_number] = ACTIONS(3512), + [anon_sym_boolean] = ACTIONS(3512), + [anon_sym_string] = ACTIONS(3512), + [anon_sym_symbol] = ACTIONS(3512), + [anon_sym_object] = ACTIONS(3512), + [anon_sym_property] = ACTIONS(3512), + [anon_sym_signal] = ACTIONS(3512), + [anon_sym_on] = ACTIONS(3512), + [anon_sym_required] = ACTIONS(3512), + [anon_sym_component] = ACTIONS(3512), + [anon_sym_abstract] = ACTIONS(3512), + [anon_sym_interface] = ACTIONS(3512), + [anon_sym_enum] = ACTIONS(3512), [sym_html_comment] = ACTIONS(5), }, - [1533] = { - [sym_comment] = STATE(1533), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1534] = { - [sym_comment] = STATE(1534), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_typeof] = ACTIONS(2416), - [anon_sym_import] = ACTIONS(2416), - [anon_sym_from] = ACTIONS(2416), - [anon_sym_with] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_const] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_if] = ACTIONS(2416), - [anon_sym_switch] = ACTIONS(2416), - [anon_sym_for] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_await] = ACTIONS(2416), - [anon_sym_of] = ACTIONS(2416), - [anon_sym_while] = ACTIONS(2416), - [anon_sym_do] = ACTIONS(2416), - [anon_sym_try] = ACTIONS(2416), - [anon_sym_break] = ACTIONS(2416), - [anon_sym_continue] = ACTIONS(2416), - [anon_sym_debugger] = ACTIONS(2416), - [anon_sym_return] = ACTIONS(2416), - [anon_sym_throw] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_yield] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LTtemplate_GT] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2416), - [anon_sym_class] = ACTIONS(2416), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_new] = ACTIONS(2416), - [anon_sym_using] = ACTIONS(2416), - [anon_sym_PLUS] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_SLASH] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_TILDE] = ACTIONS(2416), - [anon_sym_void] = ACTIONS(2416), - [anon_sym_delete] = ACTIONS(2416), - [anon_sym_PLUS_PLUS] = ACTIONS(2416), - [anon_sym_DASH_DASH] = ACTIONS(2416), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2416), - [sym_number] = ACTIONS(2416), - [sym_private_property_identifier] = ACTIONS(2416), - [sym_this] = ACTIONS(2416), - [sym_super] = ACTIONS(2416), - [sym_true] = ACTIONS(2416), - [sym_false] = ACTIONS(2416), - [sym_null] = ACTIONS(2416), - [sym_undefined] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_property] = ACTIONS(2416), - [anon_sym_signal] = ACTIONS(2416), - [anon_sym_on] = ACTIONS(2416), - [anon_sym_required] = ACTIONS(2416), - [anon_sym_component] = ACTIONS(2416), - [anon_sym_abstract] = ACTIONS(2416), - [anon_sym_interface] = ACTIONS(2416), - [anon_sym_enum] = ACTIONS(2416), - [sym__automatic_semicolon] = ACTIONS(2698), + [1516] = { + [sym_comment] = STATE(1516), + [sym_identifier] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_type] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_typeof] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_from] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3648), + [anon_sym_var] = ACTIONS(3648), + [anon_sym_let] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3648), + [anon_sym_await] = ACTIONS(3648), + [anon_sym_of] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_debugger] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_LTtemplate_GT] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_async] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_SLASH] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_void] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3648), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3648), + [sym_number] = ACTIONS(3648), + [sym_private_property_identifier] = ACTIONS(3648), + [sym_this] = ACTIONS(3648), + [sym_super] = ACTIONS(3648), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_undefined] = ACTIONS(3648), + [anon_sym_AT] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_readonly] = ACTIONS(3648), + [anon_sym_get] = ACTIONS(3648), + [anon_sym_set] = ACTIONS(3648), + [anon_sym_declare] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_override] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_any] = ACTIONS(3648), + [anon_sym_number] = ACTIONS(3648), + [anon_sym_boolean] = ACTIONS(3648), + [anon_sym_string] = ACTIONS(3648), + [anon_sym_symbol] = ACTIONS(3648), + [anon_sym_object] = ACTIONS(3648), + [anon_sym_property] = ACTIONS(3648), + [anon_sym_signal] = ACTIONS(3648), + [anon_sym_on] = ACTIONS(3648), + [anon_sym_required] = ACTIONS(3648), + [anon_sym_component] = ACTIONS(3648), + [anon_sym_abstract] = ACTIONS(3648), + [anon_sym_interface] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), [sym_html_comment] = ACTIONS(5), }, - [1535] = { - [sym_comment] = STATE(1535), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1517] = { + [sym_comment] = STATE(1517), + [sym_identifier] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_type] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_typeof] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_from] = ACTIONS(3650), + [anon_sym_with] = ACTIONS(3650), + [anon_sym_var] = ACTIONS(3650), + [anon_sym_let] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_else] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3650), + [anon_sym_await] = ACTIONS(3650), + [anon_sym_of] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_debugger] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_yield] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LTtemplate_GT] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_async] = ACTIONS(3650), + [anon_sym_function] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3650), + [anon_sym_LT] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_void] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3650), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3650), + [sym_number] = ACTIONS(3650), + [sym_private_property_identifier] = ACTIONS(3650), + [sym_this] = ACTIONS(3650), + [sym_super] = ACTIONS(3650), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [sym_null] = ACTIONS(3650), + [sym_undefined] = ACTIONS(3650), + [anon_sym_AT] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_readonly] = ACTIONS(3650), + [anon_sym_get] = ACTIONS(3650), + [anon_sym_set] = ACTIONS(3650), + [anon_sym_declare] = ACTIONS(3650), + [anon_sym_public] = ACTIONS(3650), + [anon_sym_private] = ACTIONS(3650), + [anon_sym_protected] = ACTIONS(3650), + [anon_sym_override] = ACTIONS(3650), + [anon_sym_module] = ACTIONS(3650), + [anon_sym_any] = ACTIONS(3650), + [anon_sym_number] = ACTIONS(3650), + [anon_sym_boolean] = ACTIONS(3650), + [anon_sym_string] = ACTIONS(3650), + [anon_sym_symbol] = ACTIONS(3650), + [anon_sym_object] = ACTIONS(3650), + [anon_sym_property] = ACTIONS(3650), + [anon_sym_signal] = ACTIONS(3650), + [anon_sym_on] = ACTIONS(3650), + [anon_sym_required] = ACTIONS(3650), + [anon_sym_component] = ACTIONS(3650), + [anon_sym_abstract] = ACTIONS(3650), + [anon_sym_interface] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), [sym_html_comment] = ACTIONS(5), }, - [1536] = { - [sym_comment] = STATE(1536), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1518] = { + [sym_comment] = STATE(1518), + [sym_identifier] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_type] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3510), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_typeof] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_from] = ACTIONS(3510), + [anon_sym_with] = ACTIONS(3510), + [anon_sym_var] = ACTIONS(3510), + [anon_sym_let] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3510), + [anon_sym_else] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_await] = ACTIONS(3510), + [anon_sym_of] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_debugger] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_yield] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_LTtemplate_GT] = ACTIONS(3510), + [anon_sym_DQUOTE] = ACTIONS(3510), + [anon_sym_SQUOTE] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_async] = ACTIONS(3510), + [anon_sym_function] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_SLASH] = ACTIONS(3510), + [anon_sym_LT] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3510), + [anon_sym_void] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3510), + [sym_number] = ACTIONS(3510), + [sym_private_property_identifier] = ACTIONS(3510), + [sym_this] = ACTIONS(3510), + [sym_super] = ACTIONS(3510), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [sym_null] = ACTIONS(3510), + [sym_undefined] = ACTIONS(3510), + [anon_sym_AT] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_readonly] = ACTIONS(3510), + [anon_sym_get] = ACTIONS(3510), + [anon_sym_set] = ACTIONS(3510), + [anon_sym_declare] = ACTIONS(3510), + [anon_sym_public] = ACTIONS(3510), + [anon_sym_private] = ACTIONS(3510), + [anon_sym_protected] = ACTIONS(3510), + [anon_sym_override] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_any] = ACTIONS(3510), + [anon_sym_number] = ACTIONS(3510), + [anon_sym_boolean] = ACTIONS(3510), + [anon_sym_string] = ACTIONS(3510), + [anon_sym_symbol] = ACTIONS(3510), + [anon_sym_object] = ACTIONS(3510), + [anon_sym_property] = ACTIONS(3510), + [anon_sym_signal] = ACTIONS(3510), + [anon_sym_on] = ACTIONS(3510), + [anon_sym_required] = ACTIONS(3510), + [anon_sym_component] = ACTIONS(3510), + [anon_sym_abstract] = ACTIONS(3510), + [anon_sym_interface] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), [sym_html_comment] = ACTIONS(5), }, - [1537] = { - [sym_comment] = STATE(1537), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1519] = { + [sym_comment] = STATE(1519), + [sym_identifier] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_type] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_typeof] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_from] = ACTIONS(3502), + [anon_sym_with] = ACTIONS(3502), + [anon_sym_var] = ACTIONS(3502), + [anon_sym_let] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_else] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_await] = ACTIONS(3502), + [anon_sym_of] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_debugger] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3502), + [anon_sym_yield] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LTtemplate_GT] = ACTIONS(3502), + [anon_sym_DQUOTE] = ACTIONS(3502), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(3502), + [anon_sym_function] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_SLASH] = ACTIONS(3502), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3502), + [anon_sym_void] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3502), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3502), + [sym_number] = ACTIONS(3502), + [sym_private_property_identifier] = ACTIONS(3502), + [sym_this] = ACTIONS(3502), + [sym_super] = ACTIONS(3502), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [sym_null] = ACTIONS(3502), + [sym_undefined] = ACTIONS(3502), + [anon_sym_AT] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_readonly] = ACTIONS(3502), + [anon_sym_get] = ACTIONS(3502), + [anon_sym_set] = ACTIONS(3502), + [anon_sym_declare] = ACTIONS(3502), + [anon_sym_public] = ACTIONS(3502), + [anon_sym_private] = ACTIONS(3502), + [anon_sym_protected] = ACTIONS(3502), + [anon_sym_override] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_any] = ACTIONS(3502), + [anon_sym_number] = ACTIONS(3502), + [anon_sym_boolean] = ACTIONS(3502), + [anon_sym_string] = ACTIONS(3502), + [anon_sym_symbol] = ACTIONS(3502), + [anon_sym_object] = ACTIONS(3502), + [anon_sym_property] = ACTIONS(3502), + [anon_sym_signal] = ACTIONS(3502), + [anon_sym_on] = ACTIONS(3502), + [anon_sym_required] = ACTIONS(3502), + [anon_sym_component] = ACTIONS(3502), + [anon_sym_abstract] = ACTIONS(3502), + [anon_sym_interface] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), [sym_html_comment] = ACTIONS(5), }, - [1538] = { - [sym_comment] = STATE(1538), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1520] = { + [sym_comment] = STATE(1520), + [sym_identifier] = ACTIONS(3672), + [anon_sym_export] = ACTIONS(3672), + [anon_sym_type] = ACTIONS(3672), + [anon_sym_namespace] = ACTIONS(3672), + [anon_sym_LBRACE] = ACTIONS(3672), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_typeof] = ACTIONS(3672), + [anon_sym_import] = ACTIONS(3672), + [anon_sym_from] = ACTIONS(3672), + [anon_sym_with] = ACTIONS(3672), + [anon_sym_var] = ACTIONS(3672), + [anon_sym_let] = ACTIONS(3672), + [anon_sym_const] = ACTIONS(3672), + [anon_sym_BANG] = ACTIONS(3672), + [anon_sym_else] = ACTIONS(3672), + [anon_sym_if] = ACTIONS(3672), + [anon_sym_switch] = ACTIONS(3672), + [anon_sym_for] = ACTIONS(3672), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_await] = ACTIONS(3672), + [anon_sym_of] = ACTIONS(3672), + [anon_sym_while] = ACTIONS(3672), + [anon_sym_do] = ACTIONS(3672), + [anon_sym_try] = ACTIONS(3672), + [anon_sym_break] = ACTIONS(3672), + [anon_sym_continue] = ACTIONS(3672), + [anon_sym_debugger] = ACTIONS(3672), + [anon_sym_return] = ACTIONS(3672), + [anon_sym_throw] = ACTIONS(3672), + [anon_sym_SEMI] = ACTIONS(3672), + [anon_sym_yield] = ACTIONS(3672), + [anon_sym_LBRACK] = ACTIONS(3672), + [anon_sym_LTtemplate_GT] = ACTIONS(3672), + [anon_sym_DQUOTE] = ACTIONS(3672), + [anon_sym_SQUOTE] = ACTIONS(3672), + [anon_sym_class] = ACTIONS(3672), + [anon_sym_async] = ACTIONS(3672), + [anon_sym_function] = ACTIONS(3672), + [anon_sym_new] = ACTIONS(3672), + [anon_sym_using] = ACTIONS(3672), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(3672), + [anon_sym_TILDE] = ACTIONS(3672), + [anon_sym_void] = ACTIONS(3672), + [anon_sym_delete] = ACTIONS(3672), + [anon_sym_PLUS_PLUS] = ACTIONS(3672), + [anon_sym_DASH_DASH] = ACTIONS(3672), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3672), + [sym_number] = ACTIONS(3672), + [sym_private_property_identifier] = ACTIONS(3672), + [sym_this] = ACTIONS(3672), + [sym_super] = ACTIONS(3672), + [sym_true] = ACTIONS(3672), + [sym_false] = ACTIONS(3672), + [sym_null] = ACTIONS(3672), + [sym_undefined] = ACTIONS(3672), + [anon_sym_AT] = ACTIONS(3672), + [anon_sym_static] = ACTIONS(3672), + [anon_sym_readonly] = ACTIONS(3672), + [anon_sym_get] = ACTIONS(3672), + [anon_sym_set] = ACTIONS(3672), + [anon_sym_declare] = ACTIONS(3672), + [anon_sym_public] = ACTIONS(3672), + [anon_sym_private] = ACTIONS(3672), + [anon_sym_protected] = ACTIONS(3672), + [anon_sym_override] = ACTIONS(3672), + [anon_sym_module] = ACTIONS(3672), + [anon_sym_any] = ACTIONS(3672), + [anon_sym_number] = ACTIONS(3672), + [anon_sym_boolean] = ACTIONS(3672), + [anon_sym_string] = ACTIONS(3672), + [anon_sym_symbol] = ACTIONS(3672), + [anon_sym_object] = ACTIONS(3672), + [anon_sym_property] = ACTIONS(3672), + [anon_sym_signal] = ACTIONS(3672), + [anon_sym_on] = ACTIONS(3672), + [anon_sym_required] = ACTIONS(3672), + [anon_sym_component] = ACTIONS(3672), + [anon_sym_abstract] = ACTIONS(3672), + [anon_sym_interface] = ACTIONS(3672), + [anon_sym_enum] = ACTIONS(3672), [sym_html_comment] = ACTIONS(5), }, - [1539] = { - [sym_comment] = STATE(1539), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1521] = { + [sym_comment] = STATE(1521), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_else] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), [sym_html_comment] = ACTIONS(5), }, - [1540] = { - [sym_comment] = STATE(1540), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [1522] = { + [sym_comment] = STATE(1522), + [sym_identifier] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_type] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_from] = ACTIONS(3520), + [anon_sym_with] = ACTIONS(3520), + [anon_sym_var] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3520), + [anon_sym_of] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_debugger] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_yield] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_LTtemplate_GT] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_async] = ACTIONS(3520), + [anon_sym_function] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3520), + [anon_sym_LT] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_void] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_number] = ACTIONS(3520), + [sym_private_property_identifier] = ACTIONS(3520), + [sym_this] = ACTIONS(3520), + [sym_super] = ACTIONS(3520), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [sym_null] = ACTIONS(3520), + [sym_undefined] = ACTIONS(3520), + [anon_sym_AT] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_readonly] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3520), + [anon_sym_declare] = ACTIONS(3520), + [anon_sym_public] = ACTIONS(3520), + [anon_sym_private] = ACTIONS(3520), + [anon_sym_protected] = ACTIONS(3520), + [anon_sym_override] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_any] = ACTIONS(3520), + [anon_sym_number] = ACTIONS(3520), + [anon_sym_boolean] = ACTIONS(3520), + [anon_sym_string] = ACTIONS(3520), + [anon_sym_symbol] = ACTIONS(3520), + [anon_sym_object] = ACTIONS(3520), + [anon_sym_property] = ACTIONS(3520), + [anon_sym_signal] = ACTIONS(3520), + [anon_sym_on] = ACTIONS(3520), + [anon_sym_required] = ACTIONS(3520), + [anon_sym_component] = ACTIONS(3520), + [anon_sym_abstract] = ACTIONS(3520), + [anon_sym_interface] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), [sym_html_comment] = ACTIONS(5), }, - [1541] = { - [sym_comment] = STATE(1541), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1523] = { + [sym_comment] = STATE(1523), + [sym_identifier] = ACTIONS(3702), + [anon_sym_export] = ACTIONS(3702), + [anon_sym_type] = ACTIONS(3702), + [anon_sym_namespace] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_typeof] = ACTIONS(3702), + [anon_sym_import] = ACTIONS(3702), + [anon_sym_from] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3702), + [anon_sym_var] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_const] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(3702), + [anon_sym_else] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_await] = ACTIONS(3702), + [anon_sym_of] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_break] = ACTIONS(3702), + [anon_sym_continue] = ACTIONS(3702), + [anon_sym_debugger] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_throw] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LTtemplate_GT] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_SQUOTE] = ACTIONS(3702), + [anon_sym_class] = ACTIONS(3702), + [anon_sym_async] = ACTIONS(3702), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_using] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3702), + [anon_sym_void] = ACTIONS(3702), + [anon_sym_delete] = ACTIONS(3702), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3702), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3702), + [sym_number] = ACTIONS(3702), + [sym_private_property_identifier] = ACTIONS(3702), + [sym_this] = ACTIONS(3702), + [sym_super] = ACTIONS(3702), + [sym_true] = ACTIONS(3702), + [sym_false] = ACTIONS(3702), + [sym_null] = ACTIONS(3702), + [sym_undefined] = ACTIONS(3702), + [anon_sym_AT] = ACTIONS(3702), + [anon_sym_static] = ACTIONS(3702), + [anon_sym_readonly] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(3702), + [anon_sym_set] = ACTIONS(3702), + [anon_sym_declare] = ACTIONS(3702), + [anon_sym_public] = ACTIONS(3702), + [anon_sym_private] = ACTIONS(3702), + [anon_sym_protected] = ACTIONS(3702), + [anon_sym_override] = ACTIONS(3702), + [anon_sym_module] = ACTIONS(3702), + [anon_sym_any] = ACTIONS(3702), + [anon_sym_number] = ACTIONS(3702), + [anon_sym_boolean] = ACTIONS(3702), + [anon_sym_string] = ACTIONS(3702), + [anon_sym_symbol] = ACTIONS(3702), + [anon_sym_object] = ACTIONS(3702), + [anon_sym_property] = ACTIONS(3702), + [anon_sym_signal] = ACTIONS(3702), + [anon_sym_on] = ACTIONS(3702), + [anon_sym_required] = ACTIONS(3702), + [anon_sym_component] = ACTIONS(3702), + [anon_sym_abstract] = ACTIONS(3702), + [anon_sym_interface] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(3702), [sym_html_comment] = ACTIONS(5), }, - [1542] = { - [sym_comment] = STATE(1542), - [sym_identifier] = ACTIONS(3480), - [anon_sym_export] = ACTIONS(3480), - [anon_sym_type] = ACTIONS(3480), - [anon_sym_namespace] = ACTIONS(3480), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_RBRACE] = ACTIONS(3480), - [anon_sym_typeof] = ACTIONS(3480), - [anon_sym_import] = ACTIONS(3480), - [anon_sym_from] = ACTIONS(3480), - [anon_sym_with] = ACTIONS(3480), - [anon_sym_var] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_const] = ACTIONS(3480), - [anon_sym_BANG] = ACTIONS(3480), - [anon_sym_else] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_switch] = ACTIONS(3480), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_await] = ACTIONS(3480), - [anon_sym_of] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_break] = ACTIONS(3480), - [anon_sym_continue] = ACTIONS(3480), - [anon_sym_debugger] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_throw] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LTtemplate_GT] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_SQUOTE] = ACTIONS(3480), - [anon_sym_class] = ACTIONS(3480), - [anon_sym_async] = ACTIONS(3480), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_SLASH] = ACTIONS(3480), - [anon_sym_LT] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3480), - [anon_sym_void] = ACTIONS(3480), - [anon_sym_delete] = ACTIONS(3480), - [anon_sym_PLUS_PLUS] = ACTIONS(3480), - [anon_sym_DASH_DASH] = ACTIONS(3480), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3480), - [sym_number] = ACTIONS(3480), - [sym_private_property_identifier] = ACTIONS(3480), - [sym_this] = ACTIONS(3480), - [sym_super] = ACTIONS(3480), - [sym_true] = ACTIONS(3480), - [sym_false] = ACTIONS(3480), - [sym_null] = ACTIONS(3480), - [sym_undefined] = ACTIONS(3480), - [anon_sym_AT] = ACTIONS(3480), - [anon_sym_static] = ACTIONS(3480), - [anon_sym_readonly] = ACTIONS(3480), - [anon_sym_get] = ACTIONS(3480), - [anon_sym_set] = ACTIONS(3480), - [anon_sym_declare] = ACTIONS(3480), - [anon_sym_public] = ACTIONS(3480), - [anon_sym_private] = ACTIONS(3480), - [anon_sym_protected] = ACTIONS(3480), - [anon_sym_override] = ACTIONS(3480), - [anon_sym_module] = ACTIONS(3480), - [anon_sym_any] = ACTIONS(3480), - [anon_sym_number] = ACTIONS(3480), - [anon_sym_boolean] = ACTIONS(3480), - [anon_sym_string] = ACTIONS(3480), - [anon_sym_symbol] = ACTIONS(3480), - [anon_sym_object] = ACTIONS(3480), - [anon_sym_property] = ACTIONS(3480), - [anon_sym_signal] = ACTIONS(3480), - [anon_sym_on] = ACTIONS(3480), - [anon_sym_required] = ACTIONS(3480), - [anon_sym_component] = ACTIONS(3480), - [anon_sym_abstract] = ACTIONS(3480), - [anon_sym_interface] = ACTIONS(3480), - [anon_sym_enum] = ACTIONS(3480), + [1524] = { + [sym_comment] = STATE(1524), + [sym_identifier] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_type] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_RBRACE] = ACTIONS(3498), + [anon_sym_typeof] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_from] = ACTIONS(3498), + [anon_sym_with] = ACTIONS(3498), + [anon_sym_var] = ACTIONS(3498), + [anon_sym_let] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_BANG] = ACTIONS(3498), + [anon_sym_else] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3498), + [anon_sym_await] = ACTIONS(3498), + [anon_sym_of] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_debugger] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_yield] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_LTtemplate_GT] = ACTIONS(3498), + [anon_sym_DQUOTE] = ACTIONS(3498), + [anon_sym_SQUOTE] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_async] = ACTIONS(3498), + [anon_sym_function] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_SLASH] = ACTIONS(3498), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_TILDE] = ACTIONS(3498), + [anon_sym_void] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3498), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3498), + [sym_number] = ACTIONS(3498), + [sym_private_property_identifier] = ACTIONS(3498), + [sym_this] = ACTIONS(3498), + [sym_super] = ACTIONS(3498), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [sym_null] = ACTIONS(3498), + [sym_undefined] = ACTIONS(3498), + [anon_sym_AT] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_readonly] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3498), + [anon_sym_set] = ACTIONS(3498), + [anon_sym_declare] = ACTIONS(3498), + [anon_sym_public] = ACTIONS(3498), + [anon_sym_private] = ACTIONS(3498), + [anon_sym_protected] = ACTIONS(3498), + [anon_sym_override] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_any] = ACTIONS(3498), + [anon_sym_number] = ACTIONS(3498), + [anon_sym_boolean] = ACTIONS(3498), + [anon_sym_string] = ACTIONS(3498), + [anon_sym_symbol] = ACTIONS(3498), + [anon_sym_object] = ACTIONS(3498), + [anon_sym_property] = ACTIONS(3498), + [anon_sym_signal] = ACTIONS(3498), + [anon_sym_on] = ACTIONS(3498), + [anon_sym_required] = ACTIONS(3498), + [anon_sym_component] = ACTIONS(3498), + [anon_sym_abstract] = ACTIONS(3498), + [anon_sym_interface] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), [sym_html_comment] = ACTIONS(5), }, - [1543] = { - [sym_comment] = STATE(1543), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1525] = { + [sym_comment] = STATE(1525), + [sym_identifier] = ACTIONS(3496), + [anon_sym_export] = ACTIONS(3496), + [anon_sym_type] = ACTIONS(3496), + [anon_sym_namespace] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_typeof] = ACTIONS(3496), + [anon_sym_import] = ACTIONS(3496), + [anon_sym_from] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_var] = ACTIONS(3496), + [anon_sym_let] = ACTIONS(3496), + [anon_sym_const] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_switch] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_await] = ACTIONS(3496), + [anon_sym_of] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_try] = ACTIONS(3496), + [anon_sym_break] = ACTIONS(3496), + [anon_sym_continue] = ACTIONS(3496), + [anon_sym_debugger] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_throw] = ACTIONS(3496), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_yield] = ACTIONS(3496), + [anon_sym_LBRACK] = ACTIONS(3496), + [anon_sym_LTtemplate_GT] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_class] = ACTIONS(3496), + [anon_sym_async] = ACTIONS(3496), + [anon_sym_function] = ACTIONS(3496), + [anon_sym_new] = ACTIONS(3496), + [anon_sym_using] = ACTIONS(3496), + [anon_sym_PLUS] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_void] = ACTIONS(3496), + [anon_sym_delete] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_DASH_DASH] = ACTIONS(3496), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3496), + [sym_number] = ACTIONS(3496), + [sym_private_property_identifier] = ACTIONS(3496), + [sym_this] = ACTIONS(3496), + [sym_super] = ACTIONS(3496), + [sym_true] = ACTIONS(3496), + [sym_false] = ACTIONS(3496), + [sym_null] = ACTIONS(3496), + [sym_undefined] = ACTIONS(3496), + [anon_sym_AT] = ACTIONS(3496), + [anon_sym_static] = ACTIONS(3496), + [anon_sym_readonly] = ACTIONS(3496), + [anon_sym_get] = ACTIONS(3496), + [anon_sym_set] = ACTIONS(3496), + [anon_sym_declare] = ACTIONS(3496), + [anon_sym_public] = ACTIONS(3496), + [anon_sym_private] = ACTIONS(3496), + [anon_sym_protected] = ACTIONS(3496), + [anon_sym_override] = ACTIONS(3496), + [anon_sym_module] = ACTIONS(3496), + [anon_sym_any] = ACTIONS(3496), + [anon_sym_number] = ACTIONS(3496), + [anon_sym_boolean] = ACTIONS(3496), + [anon_sym_string] = ACTIONS(3496), + [anon_sym_symbol] = ACTIONS(3496), + [anon_sym_object] = ACTIONS(3496), + [anon_sym_property] = ACTIONS(3496), + [anon_sym_signal] = ACTIONS(3496), + [anon_sym_on] = ACTIONS(3496), + [anon_sym_required] = ACTIONS(3496), + [anon_sym_component] = ACTIONS(3496), + [anon_sym_abstract] = ACTIONS(3496), + [anon_sym_interface] = ACTIONS(3496), + [anon_sym_enum] = ACTIONS(3496), [sym_html_comment] = ACTIONS(5), }, - [1544] = { - [sym_comment] = STATE(1544), - [sym_identifier] = ACTIONS(3632), - [anon_sym_export] = ACTIONS(3632), - [anon_sym_type] = ACTIONS(3632), - [anon_sym_namespace] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_typeof] = ACTIONS(3632), - [anon_sym_import] = ACTIONS(3632), - [anon_sym_from] = ACTIONS(3632), - [anon_sym_with] = ACTIONS(3632), - [anon_sym_var] = ACTIONS(3632), - [anon_sym_let] = ACTIONS(3632), - [anon_sym_const] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_else] = ACTIONS(3632), - [anon_sym_if] = ACTIONS(3632), - [anon_sym_switch] = ACTIONS(3632), - [anon_sym_for] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_await] = ACTIONS(3632), - [anon_sym_of] = ACTIONS(3632), - [anon_sym_while] = ACTIONS(3632), - [anon_sym_do] = ACTIONS(3632), - [anon_sym_try] = ACTIONS(3632), - [anon_sym_break] = ACTIONS(3632), - [anon_sym_continue] = ACTIONS(3632), - [anon_sym_debugger] = ACTIONS(3632), - [anon_sym_return] = ACTIONS(3632), - [anon_sym_throw] = ACTIONS(3632), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3632), - [anon_sym_LBRACK] = ACTIONS(3632), - [anon_sym_LTtemplate_GT] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_class] = ACTIONS(3632), - [anon_sym_async] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3632), - [anon_sym_using] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_void] = ACTIONS(3632), - [anon_sym_delete] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_DASH_DASH] = ACTIONS(3632), + [1526] = { + [sym_comment] = STATE(1526), + [sym_identifier] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_type] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_typeof] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_await] = ACTIONS(3640), + [anon_sym_of] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_debugger] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_LTtemplate_GT] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_async] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_void] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3632), - [sym_number] = ACTIONS(3632), - [sym_private_property_identifier] = ACTIONS(3632), - [sym_this] = ACTIONS(3632), - [sym_super] = ACTIONS(3632), - [sym_true] = ACTIONS(3632), - [sym_false] = ACTIONS(3632), - [sym_null] = ACTIONS(3632), - [sym_undefined] = ACTIONS(3632), - [anon_sym_AT] = ACTIONS(3632), - [anon_sym_static] = ACTIONS(3632), - [anon_sym_readonly] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3632), - [anon_sym_declare] = ACTIONS(3632), - [anon_sym_public] = ACTIONS(3632), - [anon_sym_private] = ACTIONS(3632), - [anon_sym_protected] = ACTIONS(3632), - [anon_sym_override] = ACTIONS(3632), - [anon_sym_module] = ACTIONS(3632), - [anon_sym_any] = ACTIONS(3632), - [anon_sym_number] = ACTIONS(3632), - [anon_sym_boolean] = ACTIONS(3632), - [anon_sym_string] = ACTIONS(3632), - [anon_sym_symbol] = ACTIONS(3632), - [anon_sym_object] = ACTIONS(3632), - [anon_sym_property] = ACTIONS(3632), - [anon_sym_signal] = ACTIONS(3632), - [anon_sym_on] = ACTIONS(3632), - [anon_sym_required] = ACTIONS(3632), - [anon_sym_component] = ACTIONS(3632), - [anon_sym_abstract] = ACTIONS(3632), - [anon_sym_interface] = ACTIONS(3632), - [anon_sym_enum] = ACTIONS(3632), + [anon_sym_BQUOTE] = ACTIONS(3640), + [sym_number] = ACTIONS(3640), + [sym_private_property_identifier] = ACTIONS(3640), + [sym_this] = ACTIONS(3640), + [sym_super] = ACTIONS(3640), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [sym_null] = ACTIONS(3640), + [sym_undefined] = ACTIONS(3640), + [anon_sym_AT] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_readonly] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(3640), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_declare] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_override] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_any] = ACTIONS(3640), + [anon_sym_number] = ACTIONS(3640), + [anon_sym_boolean] = ACTIONS(3640), + [anon_sym_string] = ACTIONS(3640), + [anon_sym_symbol] = ACTIONS(3640), + [anon_sym_object] = ACTIONS(3640), + [anon_sym_property] = ACTIONS(3640), + [anon_sym_signal] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_required] = ACTIONS(3640), + [anon_sym_component] = ACTIONS(3640), + [anon_sym_abstract] = ACTIONS(3640), + [anon_sym_interface] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), [sym_html_comment] = ACTIONS(5), }, - [1545] = { - [sym_comment] = STATE(1545), - [sym_identifier] = ACTIONS(3574), - [anon_sym_export] = ACTIONS(3574), - [anon_sym_type] = ACTIONS(3574), - [anon_sym_namespace] = ACTIONS(3574), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_RBRACE] = ACTIONS(3574), - [anon_sym_typeof] = ACTIONS(3574), - [anon_sym_import] = ACTIONS(3574), - [anon_sym_from] = ACTIONS(3574), - [anon_sym_with] = ACTIONS(3574), - [anon_sym_var] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_const] = ACTIONS(3574), - [anon_sym_BANG] = ACTIONS(3574), - [anon_sym_else] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_switch] = ACTIONS(3574), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_await] = ACTIONS(3574), - [anon_sym_of] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_break] = ACTIONS(3574), - [anon_sym_continue] = ACTIONS(3574), - [anon_sym_debugger] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_throw] = ACTIONS(3574), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LTtemplate_GT] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_SQUOTE] = ACTIONS(3574), - [anon_sym_class] = ACTIONS(3574), - [anon_sym_async] = ACTIONS(3574), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_using] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_SLASH] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_void] = ACTIONS(3574), - [anon_sym_delete] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_DASH_DASH] = ACTIONS(3574), + [1527] = { + [sym_comment] = STATE(1527), + [sym_identifier] = ACTIONS(2450), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_import] = ACTIONS(2450), + [anon_sym_from] = 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(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2450), + [anon_sym_of] = 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(2450), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LTtemplate_GT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [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(2450), + [anon_sym_void] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3574), - [sym_number] = ACTIONS(3574), - [sym_private_property_identifier] = ACTIONS(3574), - [sym_this] = ACTIONS(3574), - [sym_super] = ACTIONS(3574), - [sym_true] = ACTIONS(3574), - [sym_false] = ACTIONS(3574), - [sym_null] = ACTIONS(3574), - [sym_undefined] = ACTIONS(3574), - [anon_sym_AT] = ACTIONS(3574), - [anon_sym_static] = ACTIONS(3574), - [anon_sym_readonly] = ACTIONS(3574), - [anon_sym_get] = ACTIONS(3574), - [anon_sym_set] = ACTIONS(3574), - [anon_sym_declare] = ACTIONS(3574), - [anon_sym_public] = ACTIONS(3574), - [anon_sym_private] = ACTIONS(3574), - [anon_sym_protected] = ACTIONS(3574), - [anon_sym_override] = ACTIONS(3574), - [anon_sym_module] = ACTIONS(3574), - [anon_sym_any] = ACTIONS(3574), - [anon_sym_number] = ACTIONS(3574), - [anon_sym_boolean] = ACTIONS(3574), - [anon_sym_string] = ACTIONS(3574), - [anon_sym_symbol] = ACTIONS(3574), - [anon_sym_object] = ACTIONS(3574), - [anon_sym_property] = ACTIONS(3574), - [anon_sym_signal] = ACTIONS(3574), - [anon_sym_on] = ACTIONS(3574), - [anon_sym_required] = ACTIONS(3574), - [anon_sym_component] = ACTIONS(3574), - [anon_sym_abstract] = ACTIONS(3574), - [anon_sym_interface] = ACTIONS(3574), - [anon_sym_enum] = ACTIONS(3574), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [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(2450), + [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_property] = ACTIONS(2450), + [anon_sym_signal] = ACTIONS(2450), + [anon_sym_on] = ACTIONS(2450), + [anon_sym_required] = ACTIONS(2450), + [anon_sym_component] = ACTIONS(2450), + [anon_sym_abstract] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), [sym_html_comment] = ACTIONS(5), }, - [1546] = { - [sym_comment] = STATE(1546), - [sym_identifier] = ACTIONS(3554), - [anon_sym_export] = ACTIONS(3554), - [anon_sym_type] = ACTIONS(3554), - [anon_sym_namespace] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(3554), - [anon_sym_RBRACE] = ACTIONS(3554), - [anon_sym_typeof] = ACTIONS(3554), - [anon_sym_import] = ACTIONS(3554), - [anon_sym_from] = ACTIONS(3554), - [anon_sym_with] = ACTIONS(3554), - [anon_sym_var] = ACTIONS(3554), - [anon_sym_let] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_BANG] = ACTIONS(3554), - [anon_sym_else] = ACTIONS(3554), - [anon_sym_if] = ACTIONS(3554), - [anon_sym_switch] = ACTIONS(3554), - [anon_sym_for] = ACTIONS(3554), - [anon_sym_LPAREN] = ACTIONS(3554), - [anon_sym_await] = ACTIONS(3554), - [anon_sym_of] = ACTIONS(3554), - [anon_sym_while] = ACTIONS(3554), - [anon_sym_do] = ACTIONS(3554), - [anon_sym_try] = ACTIONS(3554), - [anon_sym_break] = ACTIONS(3554), - [anon_sym_continue] = ACTIONS(3554), - [anon_sym_debugger] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3554), - [anon_sym_throw] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3554), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_LBRACK] = ACTIONS(3554), - [anon_sym_LTtemplate_GT] = ACTIONS(3554), - [anon_sym_DQUOTE] = ACTIONS(3554), - [anon_sym_SQUOTE] = ACTIONS(3554), - [anon_sym_class] = ACTIONS(3554), - [anon_sym_async] = ACTIONS(3554), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_using] = ACTIONS(3554), - [anon_sym_PLUS] = ACTIONS(3554), - [anon_sym_DASH] = ACTIONS(3554), - [anon_sym_SLASH] = ACTIONS(3554), - [anon_sym_LT] = ACTIONS(3554), - [anon_sym_TILDE] = ACTIONS(3554), - [anon_sym_void] = ACTIONS(3554), - [anon_sym_delete] = ACTIONS(3554), - [anon_sym_PLUS_PLUS] = ACTIONS(3554), - [anon_sym_DASH_DASH] = ACTIONS(3554), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3554), - [sym_number] = ACTIONS(3554), - [sym_private_property_identifier] = ACTIONS(3554), - [sym_this] = ACTIONS(3554), - [sym_super] = ACTIONS(3554), - [sym_true] = ACTIONS(3554), - [sym_false] = ACTIONS(3554), - [sym_null] = ACTIONS(3554), - [sym_undefined] = ACTIONS(3554), - [anon_sym_AT] = ACTIONS(3554), - [anon_sym_static] = ACTIONS(3554), - [anon_sym_readonly] = ACTIONS(3554), - [anon_sym_get] = ACTIONS(3554), - [anon_sym_set] = ACTIONS(3554), - [anon_sym_declare] = ACTIONS(3554), - [anon_sym_public] = ACTIONS(3554), - [anon_sym_private] = ACTIONS(3554), - [anon_sym_protected] = ACTIONS(3554), - [anon_sym_override] = ACTIONS(3554), - [anon_sym_module] = ACTIONS(3554), - [anon_sym_any] = ACTIONS(3554), - [anon_sym_number] = ACTIONS(3554), - [anon_sym_boolean] = ACTIONS(3554), - [anon_sym_string] = ACTIONS(3554), - [anon_sym_symbol] = ACTIONS(3554), - [anon_sym_object] = ACTIONS(3554), - [anon_sym_property] = ACTIONS(3554), - [anon_sym_signal] = ACTIONS(3554), - [anon_sym_on] = ACTIONS(3554), - [anon_sym_required] = ACTIONS(3554), - [anon_sym_component] = ACTIONS(3554), - [anon_sym_abstract] = ACTIONS(3554), - [anon_sym_interface] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), + [1528] = { + [sym_comment] = STATE(1528), + [sym_identifier] = ACTIONS(2366), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2366), + [anon_sym_import] = ACTIONS(2366), + [anon_sym_from] = ACTIONS(2366), + [anon_sym_with] = ACTIONS(2366), + [anon_sym_var] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_switch] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2366), + [anon_sym_of] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_debugger] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_throw] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LTtemplate_GT] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_class] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_function] = ACTIONS(2366), + [anon_sym_new] = ACTIONS(2366), + [anon_sym_using] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_private_property_identifier] = ACTIONS(2366), + [sym_this] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_true] = ACTIONS(2366), + [sym_false] = ACTIONS(2366), + [sym_null] = ACTIONS(2366), + [sym_undefined] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_readonly] = ACTIONS(2366), + [anon_sym_get] = ACTIONS(2366), + [anon_sym_set] = ACTIONS(2366), + [anon_sym_declare] = ACTIONS(2366), + [anon_sym_public] = ACTIONS(2366), + [anon_sym_private] = ACTIONS(2366), + [anon_sym_protected] = ACTIONS(2366), + [anon_sym_override] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_any] = ACTIONS(2366), + [anon_sym_number] = ACTIONS(2366), + [anon_sym_boolean] = ACTIONS(2366), + [anon_sym_string] = ACTIONS(2366), + [anon_sym_symbol] = ACTIONS(2366), + [anon_sym_object] = ACTIONS(2366), + [anon_sym_property] = ACTIONS(2366), + [anon_sym_signal] = ACTIONS(2366), + [anon_sym_on] = ACTIONS(2366), + [anon_sym_required] = ACTIONS(2366), + [anon_sym_component] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), [sym_html_comment] = ACTIONS(5), }, - [1547] = { - [sym_comment] = STATE(1547), - [sym_identifier] = ACTIONS(3552), - [anon_sym_export] = ACTIONS(3552), - [anon_sym_type] = ACTIONS(3552), - [anon_sym_namespace] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_RBRACE] = ACTIONS(3552), - [anon_sym_typeof] = ACTIONS(3552), - [anon_sym_import] = ACTIONS(3552), - [anon_sym_from] = ACTIONS(3552), - [anon_sym_with] = ACTIONS(3552), - [anon_sym_var] = ACTIONS(3552), - [anon_sym_let] = ACTIONS(3552), - [anon_sym_const] = ACTIONS(3552), - [anon_sym_BANG] = ACTIONS(3552), - [anon_sym_else] = ACTIONS(3552), - [anon_sym_if] = ACTIONS(3552), - [anon_sym_switch] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3552), - [anon_sym_LPAREN] = ACTIONS(3552), - [anon_sym_await] = ACTIONS(3552), - [anon_sym_of] = ACTIONS(3552), - [anon_sym_while] = ACTIONS(3552), - [anon_sym_do] = ACTIONS(3552), - [anon_sym_try] = ACTIONS(3552), - [anon_sym_break] = ACTIONS(3552), - [anon_sym_continue] = ACTIONS(3552), - [anon_sym_debugger] = ACTIONS(3552), - [anon_sym_return] = ACTIONS(3552), - [anon_sym_throw] = ACTIONS(3552), - [anon_sym_SEMI] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3552), - [anon_sym_LBRACK] = ACTIONS(3552), - [anon_sym_LTtemplate_GT] = ACTIONS(3552), - [anon_sym_DQUOTE] = ACTIONS(3552), - [anon_sym_SQUOTE] = ACTIONS(3552), - [anon_sym_class] = ACTIONS(3552), - [anon_sym_async] = ACTIONS(3552), - [anon_sym_function] = ACTIONS(3552), - [anon_sym_new] = ACTIONS(3552), - [anon_sym_using] = ACTIONS(3552), - [anon_sym_PLUS] = ACTIONS(3552), - [anon_sym_DASH] = ACTIONS(3552), - [anon_sym_SLASH] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_TILDE] = ACTIONS(3552), - [anon_sym_void] = ACTIONS(3552), - [anon_sym_delete] = ACTIONS(3552), - [anon_sym_PLUS_PLUS] = ACTIONS(3552), - [anon_sym_DASH_DASH] = ACTIONS(3552), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3552), - [sym_number] = ACTIONS(3552), - [sym_private_property_identifier] = ACTIONS(3552), - [sym_this] = ACTIONS(3552), - [sym_super] = ACTIONS(3552), - [sym_true] = ACTIONS(3552), - [sym_false] = ACTIONS(3552), - [sym_null] = ACTIONS(3552), - [sym_undefined] = ACTIONS(3552), - [anon_sym_AT] = ACTIONS(3552), - [anon_sym_static] = ACTIONS(3552), - [anon_sym_readonly] = ACTIONS(3552), - [anon_sym_get] = ACTIONS(3552), - [anon_sym_set] = ACTIONS(3552), - [anon_sym_declare] = ACTIONS(3552), - [anon_sym_public] = ACTIONS(3552), - [anon_sym_private] = ACTIONS(3552), - [anon_sym_protected] = ACTIONS(3552), - [anon_sym_override] = ACTIONS(3552), - [anon_sym_module] = ACTIONS(3552), - [anon_sym_any] = ACTIONS(3552), - [anon_sym_number] = ACTIONS(3552), - [anon_sym_boolean] = ACTIONS(3552), - [anon_sym_string] = ACTIONS(3552), - [anon_sym_symbol] = ACTIONS(3552), - [anon_sym_object] = ACTIONS(3552), - [anon_sym_property] = ACTIONS(3552), - [anon_sym_signal] = ACTIONS(3552), - [anon_sym_on] = ACTIONS(3552), - [anon_sym_required] = ACTIONS(3552), - [anon_sym_component] = ACTIONS(3552), - [anon_sym_abstract] = ACTIONS(3552), - [anon_sym_interface] = ACTIONS(3552), - [anon_sym_enum] = ACTIONS(3552), - [sym_html_comment] = ACTIONS(5), - }, - [1548] = { - [sym_comment] = STATE(1548), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1549] = { - [sym_comment] = STATE(1549), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1550] = { - [sym_comment] = STATE(1550), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1551] = { - [sym_comment] = STATE(1551), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1552] = { - [sym_comment] = STATE(1552), - [sym_identifier] = ACTIONS(3598), - [anon_sym_export] = ACTIONS(3598), - [anon_sym_type] = ACTIONS(3598), - [anon_sym_namespace] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_typeof] = ACTIONS(3598), - [anon_sym_import] = ACTIONS(3598), - [anon_sym_from] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [anon_sym_var] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_const] = ACTIONS(3598), - [anon_sym_BANG] = ACTIONS(3598), - [anon_sym_else] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_await] = ACTIONS(3598), - [anon_sym_of] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_break] = ACTIONS(3598), - [anon_sym_continue] = ACTIONS(3598), - [anon_sym_debugger] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_throw] = ACTIONS(3598), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LTtemplate_GT] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_SQUOTE] = ACTIONS(3598), - [anon_sym_class] = ACTIONS(3598), - [anon_sym_async] = ACTIONS(3598), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_using] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3598), - [anon_sym_void] = ACTIONS(3598), - [anon_sym_delete] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3598), - [sym_number] = ACTIONS(3598), - [sym_private_property_identifier] = ACTIONS(3598), - [sym_this] = ACTIONS(3598), - [sym_super] = ACTIONS(3598), - [sym_true] = ACTIONS(3598), - [sym_false] = ACTIONS(3598), - [sym_null] = ACTIONS(3598), - [sym_undefined] = ACTIONS(3598), - [anon_sym_AT] = ACTIONS(3598), - [anon_sym_static] = ACTIONS(3598), - [anon_sym_readonly] = ACTIONS(3598), - [anon_sym_get] = ACTIONS(3598), - [anon_sym_set] = ACTIONS(3598), - [anon_sym_declare] = ACTIONS(3598), - [anon_sym_public] = ACTIONS(3598), - [anon_sym_private] = ACTIONS(3598), - [anon_sym_protected] = ACTIONS(3598), - [anon_sym_override] = ACTIONS(3598), - [anon_sym_module] = ACTIONS(3598), - [anon_sym_any] = ACTIONS(3598), - [anon_sym_number] = ACTIONS(3598), - [anon_sym_boolean] = ACTIONS(3598), - [anon_sym_string] = ACTIONS(3598), - [anon_sym_symbol] = ACTIONS(3598), - [anon_sym_object] = ACTIONS(3598), - [anon_sym_property] = ACTIONS(3598), - [anon_sym_signal] = ACTIONS(3598), - [anon_sym_on] = ACTIONS(3598), - [anon_sym_required] = ACTIONS(3598), - [anon_sym_component] = ACTIONS(3598), - [anon_sym_abstract] = ACTIONS(3598), - [anon_sym_interface] = ACTIONS(3598), - [anon_sym_enum] = ACTIONS(3598), - [sym_html_comment] = ACTIONS(5), - }, - [1553] = { - [sym_comment] = STATE(1553), - [sym_identifier] = ACTIONS(3538), - [anon_sym_export] = ACTIONS(3538), - [anon_sym_type] = ACTIONS(3538), - [anon_sym_namespace] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3538), - [anon_sym_RBRACE] = ACTIONS(3538), - [anon_sym_typeof] = ACTIONS(3538), - [anon_sym_import] = ACTIONS(3538), - [anon_sym_from] = ACTIONS(3538), - [anon_sym_with] = ACTIONS(3538), - [anon_sym_var] = ACTIONS(3538), - [anon_sym_let] = ACTIONS(3538), - [anon_sym_const] = ACTIONS(3538), - [anon_sym_BANG] = ACTIONS(3538), - [anon_sym_else] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(3538), - [anon_sym_switch] = ACTIONS(3538), - [anon_sym_for] = ACTIONS(3538), - [anon_sym_LPAREN] = ACTIONS(3538), - [anon_sym_await] = ACTIONS(3538), - [anon_sym_of] = ACTIONS(3538), - [anon_sym_while] = ACTIONS(3538), - [anon_sym_do] = ACTIONS(3538), - [anon_sym_try] = ACTIONS(3538), - [anon_sym_break] = ACTIONS(3538), - [anon_sym_continue] = ACTIONS(3538), - [anon_sym_debugger] = ACTIONS(3538), - [anon_sym_return] = ACTIONS(3538), - [anon_sym_throw] = ACTIONS(3538), - [anon_sym_SEMI] = ACTIONS(3538), - [anon_sym_yield] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3538), - [anon_sym_LTtemplate_GT] = ACTIONS(3538), - [anon_sym_DQUOTE] = ACTIONS(3538), - [anon_sym_SQUOTE] = ACTIONS(3538), - [anon_sym_class] = ACTIONS(3538), - [anon_sym_async] = ACTIONS(3538), - [anon_sym_function] = ACTIONS(3538), - [anon_sym_new] = ACTIONS(3538), - [anon_sym_using] = ACTIONS(3538), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_SLASH] = ACTIONS(3538), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_void] = ACTIONS(3538), - [anon_sym_delete] = ACTIONS(3538), - [anon_sym_PLUS_PLUS] = ACTIONS(3538), - [anon_sym_DASH_DASH] = ACTIONS(3538), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3538), - [sym_number] = ACTIONS(3538), - [sym_private_property_identifier] = ACTIONS(3538), - [sym_this] = ACTIONS(3538), - [sym_super] = ACTIONS(3538), - [sym_true] = ACTIONS(3538), - [sym_false] = ACTIONS(3538), - [sym_null] = ACTIONS(3538), - [sym_undefined] = ACTIONS(3538), - [anon_sym_AT] = ACTIONS(3538), - [anon_sym_static] = ACTIONS(3538), - [anon_sym_readonly] = ACTIONS(3538), - [anon_sym_get] = ACTIONS(3538), - [anon_sym_set] = ACTIONS(3538), - [anon_sym_declare] = ACTIONS(3538), - [anon_sym_public] = ACTIONS(3538), - [anon_sym_private] = ACTIONS(3538), - [anon_sym_protected] = ACTIONS(3538), - [anon_sym_override] = ACTIONS(3538), - [anon_sym_module] = ACTIONS(3538), - [anon_sym_any] = ACTIONS(3538), - [anon_sym_number] = ACTIONS(3538), - [anon_sym_boolean] = ACTIONS(3538), - [anon_sym_string] = ACTIONS(3538), - [anon_sym_symbol] = ACTIONS(3538), - [anon_sym_object] = ACTIONS(3538), - [anon_sym_property] = ACTIONS(3538), - [anon_sym_signal] = ACTIONS(3538), - [anon_sym_on] = ACTIONS(3538), - [anon_sym_required] = ACTIONS(3538), - [anon_sym_component] = ACTIONS(3538), - [anon_sym_abstract] = ACTIONS(3538), - [anon_sym_interface] = ACTIONS(3538), - [anon_sym_enum] = ACTIONS(3538), - [sym_html_comment] = ACTIONS(5), - }, - [1554] = { - [sym_comment] = STATE(1554), - [sym_identifier] = ACTIONS(3464), - [anon_sym_export] = ACTIONS(3464), - [anon_sym_type] = ACTIONS(3464), - [anon_sym_namespace] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_RBRACE] = ACTIONS(3464), - [anon_sym_typeof] = ACTIONS(3464), - [anon_sym_import] = ACTIONS(3464), - [anon_sym_from] = ACTIONS(3464), - [anon_sym_with] = ACTIONS(3464), - [anon_sym_var] = ACTIONS(3464), - [anon_sym_let] = ACTIONS(3464), - [anon_sym_const] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3464), - [anon_sym_if] = ACTIONS(3464), - [anon_sym_switch] = ACTIONS(3464), - [anon_sym_for] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_await] = ACTIONS(3464), - [anon_sym_of] = ACTIONS(3464), - [anon_sym_while] = ACTIONS(3464), - [anon_sym_do] = ACTIONS(3464), - [anon_sym_try] = ACTIONS(3464), - [anon_sym_break] = ACTIONS(3464), - [anon_sym_continue] = ACTIONS(3464), - [anon_sym_debugger] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3464), - [anon_sym_throw] = ACTIONS(3464), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_yield] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_LTtemplate_GT] = ACTIONS(3464), - [anon_sym_DQUOTE] = ACTIONS(3464), - [anon_sym_SQUOTE] = ACTIONS(3464), - [anon_sym_class] = ACTIONS(3464), - [anon_sym_async] = ACTIONS(3464), - [anon_sym_function] = ACTIONS(3464), - [anon_sym_new] = ACTIONS(3464), - [anon_sym_using] = ACTIONS(3464), - [anon_sym_PLUS] = ACTIONS(3464), - [anon_sym_DASH] = ACTIONS(3464), - [anon_sym_SLASH] = ACTIONS(3464), - [anon_sym_LT] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3464), - [anon_sym_void] = ACTIONS(3464), - [anon_sym_delete] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3464), - [anon_sym_DASH_DASH] = ACTIONS(3464), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3464), - [sym_number] = ACTIONS(3464), - [sym_private_property_identifier] = ACTIONS(3464), - [sym_this] = ACTIONS(3464), - [sym_super] = ACTIONS(3464), - [sym_true] = ACTIONS(3464), - [sym_false] = ACTIONS(3464), - [sym_null] = ACTIONS(3464), - [sym_undefined] = ACTIONS(3464), - [anon_sym_AT] = ACTIONS(3464), - [anon_sym_static] = ACTIONS(3464), - [anon_sym_readonly] = ACTIONS(3464), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3464), - [anon_sym_declare] = ACTIONS(3464), - [anon_sym_public] = ACTIONS(3464), - [anon_sym_private] = ACTIONS(3464), - [anon_sym_protected] = ACTIONS(3464), - [anon_sym_override] = ACTIONS(3464), - [anon_sym_module] = ACTIONS(3464), - [anon_sym_any] = ACTIONS(3464), - [anon_sym_number] = ACTIONS(3464), - [anon_sym_boolean] = ACTIONS(3464), - [anon_sym_string] = ACTIONS(3464), - [anon_sym_symbol] = ACTIONS(3464), - [anon_sym_object] = ACTIONS(3464), - [anon_sym_property] = ACTIONS(3464), - [anon_sym_signal] = ACTIONS(3464), - [anon_sym_on] = ACTIONS(3464), - [anon_sym_required] = ACTIONS(3464), - [anon_sym_component] = ACTIONS(3464), - [anon_sym_abstract] = ACTIONS(3464), - [anon_sym_interface] = ACTIONS(3464), - [anon_sym_enum] = ACTIONS(3464), - [sym__automatic_semicolon] = ACTIONS(3466), + [1529] = { + [sym_comment] = STATE(1529), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_from] = ACTIONS(2482), + [anon_sym_with] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_of] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_throw] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_property] = ACTIONS(2482), + [anon_sym_signal] = ACTIONS(2482), + [anon_sym_on] = ACTIONS(2482), + [anon_sym_required] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_interface] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), [sym_html_comment] = ACTIONS(5), }, - [1555] = { - [sym_comment] = STATE(1555), + [1530] = { + [sym_comment] = STATE(1530), [sym_identifier] = ACTIONS(2458), [anon_sym_export] = ACTIONS(2458), [anon_sym_type] = ACTIONS(2458), @@ -207242,6 +204595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2458), [anon_sym_const] = ACTIONS(2458), [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), [anon_sym_if] = ACTIONS(2458), [anon_sym_switch] = ACTIONS(2458), [anon_sym_for] = ACTIONS(2458), @@ -207311,451 +204665,714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2458), [anon_sym_interface] = ACTIONS(2458), [anon_sym_enum] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(2706), [sym_html_comment] = ACTIONS(5), }, - [1556] = { - [sym_comment] = STATE(1556), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1531] = { + [sym_comment] = STATE(1531), + [sym_identifier] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_type] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_from] = ACTIONS(3532), + [anon_sym_with] = ACTIONS(3532), + [anon_sym_var] = ACTIONS(3532), + [anon_sym_let] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3532), + [anon_sym_of] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_debugger] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_yield] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LTtemplate_GT] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_async] = ACTIONS(3532), + [anon_sym_function] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_SLASH] = ACTIONS(3532), + [anon_sym_LT] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_void] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3532), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3532), + [sym_number] = ACTIONS(3532), + [sym_private_property_identifier] = ACTIONS(3532), + [sym_this] = ACTIONS(3532), + [sym_super] = ACTIONS(3532), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [sym_null] = ACTIONS(3532), + [sym_undefined] = ACTIONS(3532), + [anon_sym_AT] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_readonly] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3532), + [anon_sym_declare] = ACTIONS(3532), + [anon_sym_public] = ACTIONS(3532), + [anon_sym_private] = ACTIONS(3532), + [anon_sym_protected] = ACTIONS(3532), + [anon_sym_override] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_any] = ACTIONS(3532), + [anon_sym_number] = ACTIONS(3532), + [anon_sym_boolean] = ACTIONS(3532), + [anon_sym_string] = ACTIONS(3532), + [anon_sym_symbol] = ACTIONS(3532), + [anon_sym_object] = ACTIONS(3532), + [anon_sym_property] = ACTIONS(3532), + [anon_sym_signal] = ACTIONS(3532), + [anon_sym_on] = ACTIONS(3532), + [anon_sym_required] = ACTIONS(3532), + [anon_sym_component] = ACTIONS(3532), + [anon_sym_abstract] = ACTIONS(3532), + [anon_sym_interface] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), [sym_html_comment] = ACTIONS(5), }, - [1557] = { - [sym_comment] = STATE(1557), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_typeof] = ACTIONS(2434), - [anon_sym_import] = ACTIONS(2434), - [anon_sym_from] = ACTIONS(2434), - [anon_sym_with] = ACTIONS(2434), - [anon_sym_var] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_switch] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_await] = ACTIONS(2434), - [anon_sym_of] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_debugger] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_throw] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_LTtemplate_GT] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_class] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_using] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_void] = ACTIONS(2434), - [anon_sym_delete] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_DASH_DASH] = ACTIONS(2434), + [1532] = { + [sym_comment] = STATE(1532), + [sym_identifier] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_from] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_else] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_await] = ACTIONS(3658), + [anon_sym_of] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LTtemplate_GT] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_async] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_void] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2434), - [sym_number] = ACTIONS(2434), - [sym_private_property_identifier] = ACTIONS(2434), - [sym_this] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_true] = ACTIONS(2434), - [sym_false] = ACTIONS(2434), - [sym_null] = ACTIONS(2434), - [sym_undefined] = ACTIONS(2434), - [anon_sym_AT] = ACTIONS(2434), - [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_property] = ACTIONS(2434), - [anon_sym_signal] = ACTIONS(2434), - [anon_sym_on] = ACTIONS(2434), - [anon_sym_required] = ACTIONS(2434), - [anon_sym_component] = ACTIONS(2434), - [anon_sym_abstract] = ACTIONS(2434), - [anon_sym_interface] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), + [anon_sym_BQUOTE] = ACTIONS(3658), + [sym_number] = ACTIONS(3658), + [sym_private_property_identifier] = ACTIONS(3658), + [sym_this] = ACTIONS(3658), + [sym_super] = ACTIONS(3658), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [sym_null] = ACTIONS(3658), + [sym_undefined] = ACTIONS(3658), + [anon_sym_AT] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_readonly] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_declare] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_override] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_any] = ACTIONS(3658), + [anon_sym_number] = ACTIONS(3658), + [anon_sym_boolean] = ACTIONS(3658), + [anon_sym_string] = ACTIONS(3658), + [anon_sym_symbol] = ACTIONS(3658), + [anon_sym_object] = ACTIONS(3658), + [anon_sym_property] = ACTIONS(3658), + [anon_sym_signal] = ACTIONS(3658), + [anon_sym_on] = ACTIONS(3658), + [anon_sym_required] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, - [1558] = { - [sym_comment] = STATE(1558), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1533] = { + [sym_comment] = STATE(1533), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), [sym_html_comment] = ACTIONS(5), }, - [1559] = { - [sym_comment] = STATE(1559), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1534] = { + [sym_comment] = STATE(1534), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_from] = ACTIONS(2462), + [anon_sym_with] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_debugger] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_void] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_undefined] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_override] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_object] = ACTIONS(2462), + [anon_sym_property] = ACTIONS(2462), + [anon_sym_signal] = ACTIONS(2462), + [anon_sym_on] = ACTIONS(2462), + [anon_sym_required] = ACTIONS(2462), + [anon_sym_component] = ACTIONS(2462), + [anon_sym_abstract] = ACTIONS(2462), + [anon_sym_interface] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [sym_html_comment] = ACTIONS(5), + }, + [1535] = { + [sym_comment] = STATE(1535), + [sym_identifier] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_type] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_from] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_else] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_await] = ACTIONS(3654), + [anon_sym_of] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym_yield] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_LTtemplate_GT] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_async] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_LT] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_void] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3654), + [sym_number] = ACTIONS(3654), + [sym_private_property_identifier] = ACTIONS(3654), + [sym_this] = ACTIONS(3654), + [sym_super] = ACTIONS(3654), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [sym_null] = ACTIONS(3654), + [sym_undefined] = ACTIONS(3654), + [anon_sym_AT] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_readonly] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_declare] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_protected] = ACTIONS(3654), + [anon_sym_override] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_any] = ACTIONS(3654), + [anon_sym_number] = ACTIONS(3654), + [anon_sym_boolean] = ACTIONS(3654), + [anon_sym_string] = ACTIONS(3654), + [anon_sym_symbol] = ACTIONS(3654), + [anon_sym_object] = ACTIONS(3654), + [anon_sym_property] = ACTIONS(3654), + [anon_sym_signal] = ACTIONS(3654), + [anon_sym_on] = ACTIONS(3654), + [anon_sym_required] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), [sym_html_comment] = ACTIONS(5), }, - [1560] = { - [sym_comment] = STATE(1560), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_typeof] = ACTIONS(2474), - [anon_sym_import] = ACTIONS(2474), - [anon_sym_from] = ACTIONS(2474), - [anon_sym_with] = ACTIONS(2474), - [anon_sym_var] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_await] = ACTIONS(2474), - [anon_sym_of] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_debugger] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LTtemplate_GT] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_class] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_TILDE] = ACTIONS(2474), - [anon_sym_void] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), + [1536] = { + [sym_comment] = STATE(1536), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), + [sym_html_comment] = ACTIONS(5), + }, + [1537] = { + [sym_comment] = STATE(1537), + [sym_identifier] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_type] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_typeof] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_from] = ACTIONS(3490), + [anon_sym_with] = ACTIONS(3490), + [anon_sym_var] = ACTIONS(3490), + [anon_sym_let] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_await] = ACTIONS(3490), + [anon_sym_of] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_debugger] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LTtemplate_GT] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(3490), + [anon_sym_SQUOTE] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_async] = ACTIONS(3490), + [anon_sym_function] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_SLASH] = ACTIONS(3490), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_void] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3490), + [sym_number] = ACTIONS(3490), + [sym_private_property_identifier] = ACTIONS(3490), + [sym_this] = ACTIONS(3490), + [sym_super] = ACTIONS(3490), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [sym_null] = ACTIONS(3490), + [sym_undefined] = ACTIONS(3490), + [anon_sym_AT] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_readonly] = ACTIONS(3490), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3490), + [anon_sym_declare] = ACTIONS(3490), + [anon_sym_public] = ACTIONS(3490), + [anon_sym_private] = ACTIONS(3490), + [anon_sym_protected] = ACTIONS(3490), + [anon_sym_override] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_any] = ACTIONS(3490), + [anon_sym_number] = ACTIONS(3490), + [anon_sym_boolean] = ACTIONS(3490), + [anon_sym_string] = ACTIONS(3490), + [anon_sym_symbol] = ACTIONS(3490), + [anon_sym_object] = ACTIONS(3490), + [anon_sym_property] = ACTIONS(3490), + [anon_sym_signal] = ACTIONS(3490), + [anon_sym_on] = ACTIONS(3490), + [anon_sym_required] = ACTIONS(3490), + [anon_sym_component] = ACTIONS(3490), + [anon_sym_abstract] = ACTIONS(3490), + [anon_sym_interface] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), + [sym_html_comment] = ACTIONS(5), + }, + [1538] = { + [sym_comment] = STATE(1538), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2474), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_undefined] = ACTIONS(2474), - [anon_sym_AT] = ACTIONS(2474), - [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_property] = ACTIONS(2474), - [anon_sym_signal] = ACTIONS(2474), - [anon_sym_on] = ACTIONS(2474), - [anon_sym_required] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_interface] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), [sym_html_comment] = ACTIONS(5), }, - [1561] = { - [sym_comment] = STATE(1561), + [1539] = { + [sym_comment] = STATE(1539), [sym_identifier] = ACTIONS(2438), [anon_sym_export] = ACTIONS(2438), [anon_sym_type] = ACTIONS(2438), @@ -207770,7 +205387,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2438), [anon_sym_const] = ACTIONS(2438), [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_else] = ACTIONS(2438), [anon_sym_if] = ACTIONS(2438), [anon_sym_switch] = ACTIONS(2438), [anon_sym_for] = ACTIONS(2438), @@ -207840,2386 +205456,2194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2438), [anon_sym_interface] = ACTIONS(2438), [anon_sym_enum] = ACTIONS(2438), + [sym__automatic_semicolon] = ACTIONS(2440), [sym_html_comment] = ACTIONS(5), }, - [1562] = { - [sym_comment] = STATE(1562), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1540] = { + [sym_comment] = STATE(1540), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_else] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), [sym_html_comment] = ACTIONS(5), }, - [1563] = { - [sym_comment] = STATE(1563), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1541] = { + [sym_comment] = STATE(1541), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_LBRACE] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_typeof] = ACTIONS(2296), + [anon_sym_import] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_with] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_switch] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_await] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_do] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_debugger] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_throw] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_LTtemplate_GT] = ACTIONS(2296), + [anon_sym_DQUOTE] = ACTIONS(2296), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_class] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_new] = ACTIONS(2296), + [anon_sym_using] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_TILDE] = ACTIONS(2296), + [anon_sym_void] = ACTIONS(2296), + [anon_sym_delete] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [sym_number] = ACTIONS(2296), + [sym_private_property_identifier] = ACTIONS(2296), + [sym_this] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_true] = ACTIONS(2296), + [sym_false] = ACTIONS(2296), + [sym_null] = ACTIONS(2296), + [sym_undefined] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_abstract] = ACTIONS(2296), + [anon_sym_interface] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(2644), [sym_html_comment] = ACTIONS(5), }, - [1564] = { - [sym_comment] = STATE(1564), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1542] = { + [sym_comment] = STATE(1542), + [sym_identifier] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_type] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_typeof] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_with] = ACTIONS(3674), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_else] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_await] = ACTIONS(3674), + [anon_sym_of] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_debugger] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LTtemplate_GT] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_async] = ACTIONS(3674), + [anon_sym_function] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(3674), + [sym_number] = ACTIONS(3674), + [sym_private_property_identifier] = ACTIONS(3674), + [sym_this] = ACTIONS(3674), + [sym_super] = ACTIONS(3674), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [sym_null] = ACTIONS(3674), + [sym_undefined] = ACTIONS(3674), + [anon_sym_AT] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_readonly] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(3674), + [anon_sym_set] = ACTIONS(3674), + [anon_sym_declare] = ACTIONS(3674), + [anon_sym_public] = ACTIONS(3674), + [anon_sym_private] = ACTIONS(3674), + [anon_sym_protected] = ACTIONS(3674), + [anon_sym_override] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_any] = ACTIONS(3674), + [anon_sym_number] = ACTIONS(3674), + [anon_sym_boolean] = ACTIONS(3674), + [anon_sym_string] = ACTIONS(3674), + [anon_sym_symbol] = ACTIONS(3674), + [anon_sym_object] = ACTIONS(3674), + [anon_sym_property] = ACTIONS(3674), + [anon_sym_signal] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_required] = ACTIONS(3674), + [anon_sym_component] = ACTIONS(3674), + [anon_sym_abstract] = ACTIONS(3674), + [anon_sym_interface] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), [sym_html_comment] = ACTIONS(5), }, - [1565] = { - [sym_comment] = STATE(1565), - [sym_identifier] = ACTIONS(3536), - [anon_sym_export] = ACTIONS(3536), - [anon_sym_type] = ACTIONS(3536), - [anon_sym_namespace] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_RBRACE] = ACTIONS(3536), - [anon_sym_typeof] = ACTIONS(3536), - [anon_sym_import] = ACTIONS(3536), - [anon_sym_from] = ACTIONS(3536), - [anon_sym_with] = ACTIONS(3536), - [anon_sym_var] = ACTIONS(3536), - [anon_sym_let] = ACTIONS(3536), - [anon_sym_const] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_else] = ACTIONS(3536), - [anon_sym_if] = ACTIONS(3536), - [anon_sym_switch] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3536), - [anon_sym_await] = ACTIONS(3536), - [anon_sym_of] = ACTIONS(3536), - [anon_sym_while] = ACTIONS(3536), - [anon_sym_do] = ACTIONS(3536), - [anon_sym_try] = ACTIONS(3536), - [anon_sym_break] = ACTIONS(3536), - [anon_sym_continue] = ACTIONS(3536), - [anon_sym_debugger] = ACTIONS(3536), - [anon_sym_return] = ACTIONS(3536), - [anon_sym_throw] = ACTIONS(3536), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3536), - [anon_sym_LTtemplate_GT] = ACTIONS(3536), - [anon_sym_DQUOTE] = ACTIONS(3536), - [anon_sym_SQUOTE] = ACTIONS(3536), - [anon_sym_class] = ACTIONS(3536), - [anon_sym_async] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3536), - [anon_sym_using] = ACTIONS(3536), - [anon_sym_PLUS] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [anon_sym_void] = ACTIONS(3536), - [anon_sym_delete] = ACTIONS(3536), - [anon_sym_PLUS_PLUS] = ACTIONS(3536), - [anon_sym_DASH_DASH] = ACTIONS(3536), + [1543] = { + [sym_comment] = STATE(1543), + [sym_identifier] = ACTIONS(3700), + [anon_sym_export] = ACTIONS(3700), + [anon_sym_type] = ACTIONS(3700), + [anon_sym_namespace] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_typeof] = ACTIONS(3700), + [anon_sym_import] = ACTIONS(3700), + [anon_sym_from] = ACTIONS(3700), + [anon_sym_with] = ACTIONS(3700), + [anon_sym_var] = ACTIONS(3700), + [anon_sym_let] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_else] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_await] = ACTIONS(3700), + [anon_sym_of] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_try] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_debugger] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_throw] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_LTtemplate_GT] = ACTIONS(3700), + [anon_sym_DQUOTE] = ACTIONS(3700), + [anon_sym_SQUOTE] = ACTIONS(3700), + [anon_sym_class] = ACTIONS(3700), + [anon_sym_async] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3700), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_SLASH] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_void] = ACTIONS(3700), + [anon_sym_delete] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3536), - [sym_number] = ACTIONS(3536), - [sym_private_property_identifier] = ACTIONS(3536), - [sym_this] = ACTIONS(3536), - [sym_super] = ACTIONS(3536), - [sym_true] = ACTIONS(3536), - [sym_false] = ACTIONS(3536), - [sym_null] = ACTIONS(3536), - [sym_undefined] = ACTIONS(3536), - [anon_sym_AT] = ACTIONS(3536), - [anon_sym_static] = ACTIONS(3536), - [anon_sym_readonly] = ACTIONS(3536), - [anon_sym_get] = ACTIONS(3536), - [anon_sym_set] = ACTIONS(3536), - [anon_sym_declare] = ACTIONS(3536), - [anon_sym_public] = ACTIONS(3536), - [anon_sym_private] = ACTIONS(3536), - [anon_sym_protected] = ACTIONS(3536), - [anon_sym_override] = ACTIONS(3536), - [anon_sym_module] = ACTIONS(3536), - [anon_sym_any] = ACTIONS(3536), - [anon_sym_number] = ACTIONS(3536), - [anon_sym_boolean] = ACTIONS(3536), - [anon_sym_string] = ACTIONS(3536), - [anon_sym_symbol] = ACTIONS(3536), - [anon_sym_object] = ACTIONS(3536), - [anon_sym_property] = ACTIONS(3536), - [anon_sym_signal] = ACTIONS(3536), - [anon_sym_on] = ACTIONS(3536), - [anon_sym_required] = ACTIONS(3536), - [anon_sym_component] = ACTIONS(3536), - [anon_sym_abstract] = ACTIONS(3536), - [anon_sym_interface] = ACTIONS(3536), - [anon_sym_enum] = ACTIONS(3536), + [anon_sym_BQUOTE] = ACTIONS(3700), + [sym_number] = ACTIONS(3700), + [sym_private_property_identifier] = ACTIONS(3700), + [sym_this] = ACTIONS(3700), + [sym_super] = ACTIONS(3700), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [sym_null] = ACTIONS(3700), + [sym_undefined] = ACTIONS(3700), + [anon_sym_AT] = ACTIONS(3700), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_readonly] = ACTIONS(3700), + [anon_sym_get] = ACTIONS(3700), + [anon_sym_set] = ACTIONS(3700), + [anon_sym_declare] = ACTIONS(3700), + [anon_sym_public] = ACTIONS(3700), + [anon_sym_private] = ACTIONS(3700), + [anon_sym_protected] = ACTIONS(3700), + [anon_sym_override] = ACTIONS(3700), + [anon_sym_module] = ACTIONS(3700), + [anon_sym_any] = ACTIONS(3700), + [anon_sym_number] = ACTIONS(3700), + [anon_sym_boolean] = ACTIONS(3700), + [anon_sym_string] = ACTIONS(3700), + [anon_sym_symbol] = ACTIONS(3700), + [anon_sym_object] = ACTIONS(3700), + [anon_sym_property] = ACTIONS(3700), + [anon_sym_signal] = ACTIONS(3700), + [anon_sym_on] = ACTIONS(3700), + [anon_sym_required] = ACTIONS(3700), + [anon_sym_component] = ACTIONS(3700), + [anon_sym_abstract] = ACTIONS(3700), + [anon_sym_interface] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), [sym_html_comment] = ACTIONS(5), }, - [1566] = { - [sym_comment] = STATE(1566), - [sym_identifier] = ACTIONS(3534), - [anon_sym_export] = ACTIONS(3534), - [anon_sym_type] = ACTIONS(3534), - [anon_sym_namespace] = ACTIONS(3534), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_RBRACE] = ACTIONS(3534), - [anon_sym_typeof] = ACTIONS(3534), - [anon_sym_import] = ACTIONS(3534), - [anon_sym_from] = ACTIONS(3534), - [anon_sym_with] = ACTIONS(3534), - [anon_sym_var] = ACTIONS(3534), - [anon_sym_let] = ACTIONS(3534), - [anon_sym_const] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_else] = ACTIONS(3534), - [anon_sym_if] = ACTIONS(3534), - [anon_sym_switch] = ACTIONS(3534), - [anon_sym_for] = ACTIONS(3534), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_await] = ACTIONS(3534), - [anon_sym_of] = ACTIONS(3534), - [anon_sym_while] = ACTIONS(3534), - [anon_sym_do] = ACTIONS(3534), - [anon_sym_try] = ACTIONS(3534), - [anon_sym_break] = ACTIONS(3534), - [anon_sym_continue] = ACTIONS(3534), - [anon_sym_debugger] = ACTIONS(3534), - [anon_sym_return] = ACTIONS(3534), - [anon_sym_throw] = ACTIONS(3534), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym_yield] = ACTIONS(3534), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LTtemplate_GT] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_SQUOTE] = ACTIONS(3534), - [anon_sym_class] = ACTIONS(3534), - [anon_sym_async] = ACTIONS(3534), - [anon_sym_function] = ACTIONS(3534), - [anon_sym_new] = ACTIONS(3534), - [anon_sym_using] = ACTIONS(3534), - [anon_sym_PLUS] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_SLASH] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_void] = ACTIONS(3534), - [anon_sym_delete] = ACTIONS(3534), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3534), + [1544] = { + [sym_comment] = STATE(1544), + [sym_identifier] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_type] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_typeof] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_from] = ACTIONS(3628), + [anon_sym_with] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3628), + [anon_sym_let] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_else] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_await] = ACTIONS(3628), + [anon_sym_of] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_debugger] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_yield] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_LTtemplate_GT] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_async] = ACTIONS(3628), + [anon_sym_function] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_void] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3534), - [sym_number] = ACTIONS(3534), - [sym_private_property_identifier] = ACTIONS(3534), - [sym_this] = ACTIONS(3534), - [sym_super] = ACTIONS(3534), - [sym_true] = ACTIONS(3534), - [sym_false] = ACTIONS(3534), - [sym_null] = ACTIONS(3534), - [sym_undefined] = ACTIONS(3534), - [anon_sym_AT] = ACTIONS(3534), - [anon_sym_static] = ACTIONS(3534), - [anon_sym_readonly] = ACTIONS(3534), - [anon_sym_get] = ACTIONS(3534), - [anon_sym_set] = ACTIONS(3534), - [anon_sym_declare] = ACTIONS(3534), - [anon_sym_public] = ACTIONS(3534), - [anon_sym_private] = ACTIONS(3534), - [anon_sym_protected] = ACTIONS(3534), - [anon_sym_override] = ACTIONS(3534), - [anon_sym_module] = ACTIONS(3534), - [anon_sym_any] = ACTIONS(3534), - [anon_sym_number] = ACTIONS(3534), - [anon_sym_boolean] = ACTIONS(3534), - [anon_sym_string] = ACTIONS(3534), - [anon_sym_symbol] = ACTIONS(3534), - [anon_sym_object] = ACTIONS(3534), - [anon_sym_property] = ACTIONS(3534), - [anon_sym_signal] = ACTIONS(3534), - [anon_sym_on] = ACTIONS(3534), - [anon_sym_required] = ACTIONS(3534), - [anon_sym_component] = ACTIONS(3534), - [anon_sym_abstract] = ACTIONS(3534), - [anon_sym_interface] = ACTIONS(3534), - [anon_sym_enum] = ACTIONS(3534), + [anon_sym_BQUOTE] = ACTIONS(3628), + [sym_number] = ACTIONS(3628), + [sym_private_property_identifier] = ACTIONS(3628), + [sym_this] = ACTIONS(3628), + [sym_super] = ACTIONS(3628), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [sym_null] = ACTIONS(3628), + [sym_undefined] = ACTIONS(3628), + [anon_sym_AT] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_readonly] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(3628), + [anon_sym_set] = ACTIONS(3628), + [anon_sym_declare] = ACTIONS(3628), + [anon_sym_public] = ACTIONS(3628), + [anon_sym_private] = ACTIONS(3628), + [anon_sym_protected] = ACTIONS(3628), + [anon_sym_override] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_any] = ACTIONS(3628), + [anon_sym_number] = ACTIONS(3628), + [anon_sym_boolean] = ACTIONS(3628), + [anon_sym_string] = ACTIONS(3628), + [anon_sym_symbol] = ACTIONS(3628), + [anon_sym_object] = ACTIONS(3628), + [anon_sym_property] = ACTIONS(3628), + [anon_sym_signal] = ACTIONS(3628), + [anon_sym_on] = ACTIONS(3628), + [anon_sym_required] = ACTIONS(3628), + [anon_sym_component] = ACTIONS(3628), + [anon_sym_abstract] = ACTIONS(3628), + [anon_sym_interface] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), [sym_html_comment] = ACTIONS(5), }, - [1567] = { - [sym_comment] = STATE(1567), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), + [1545] = { + [sym_comment] = STATE(1545), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_namespace] = ACTIONS(2386), + [anon_sym_LBRACE] = ACTIONS(2386), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_typeof] = ACTIONS(2386), + [anon_sym_import] = ACTIONS(2386), + [anon_sym_from] = ACTIONS(2386), + [anon_sym_with] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_const] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_if] = ACTIONS(2386), + [anon_sym_switch] = ACTIONS(2386), + [anon_sym_for] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2386), + [anon_sym_await] = ACTIONS(2386), + [anon_sym_of] = ACTIONS(2386), + [anon_sym_while] = ACTIONS(2386), + [anon_sym_do] = ACTIONS(2386), + [anon_sym_try] = ACTIONS(2386), + [anon_sym_break] = ACTIONS(2386), + [anon_sym_continue] = ACTIONS(2386), + [anon_sym_debugger] = ACTIONS(2386), + [anon_sym_return] = ACTIONS(2386), + [anon_sym_throw] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2386), + [anon_sym_yield] = ACTIONS(2386), + [anon_sym_LBRACK] = ACTIONS(2386), + [anon_sym_LTtemplate_GT] = ACTIONS(2386), + [anon_sym_DQUOTE] = ACTIONS(2386), + [anon_sym_SQUOTE] = ACTIONS(2386), + [anon_sym_class] = ACTIONS(2386), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_function] = ACTIONS(2386), + [anon_sym_new] = ACTIONS(2386), + [anon_sym_using] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_SLASH] = ACTIONS(2386), + [anon_sym_LT] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2386), + [anon_sym_void] = ACTIONS(2386), + [anon_sym_delete] = ACTIONS(2386), + [anon_sym_PLUS_PLUS] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(2386), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2386), + [sym_number] = ACTIONS(2386), + [sym_private_property_identifier] = ACTIONS(2386), + [sym_this] = ACTIONS(2386), + [sym_super] = ACTIONS(2386), + [sym_true] = ACTIONS(2386), + [sym_false] = ACTIONS(2386), + [sym_null] = ACTIONS(2386), + [sym_undefined] = ACTIONS(2386), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_readonly] = ACTIONS(2386), + [anon_sym_get] = ACTIONS(2386), + [anon_sym_set] = ACTIONS(2386), + [anon_sym_declare] = ACTIONS(2386), + [anon_sym_public] = ACTIONS(2386), + [anon_sym_private] = ACTIONS(2386), + [anon_sym_protected] = ACTIONS(2386), + [anon_sym_override] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_any] = ACTIONS(2386), + [anon_sym_number] = ACTIONS(2386), + [anon_sym_boolean] = ACTIONS(2386), + [anon_sym_string] = ACTIONS(2386), + [anon_sym_symbol] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(2386), + [anon_sym_property] = ACTIONS(2386), + [anon_sym_signal] = ACTIONS(2386), + [anon_sym_on] = ACTIONS(2386), + [anon_sym_required] = ACTIONS(2386), + [anon_sym_component] = ACTIONS(2386), + [anon_sym_abstract] = ACTIONS(2386), + [anon_sym_interface] = ACTIONS(2386), + [anon_sym_enum] = ACTIONS(2386), + [sym__automatic_semicolon] = ACTIONS(2652), [sym_html_comment] = ACTIONS(5), }, - [1568] = { - [sym_comment] = STATE(1568), - [sym_identifier] = ACTIONS(3498), - [anon_sym_export] = ACTIONS(3498), - [anon_sym_type] = ACTIONS(3498), - [anon_sym_namespace] = ACTIONS(3498), - [anon_sym_LBRACE] = ACTIONS(3498), - [anon_sym_RBRACE] = ACTIONS(3498), - [anon_sym_typeof] = ACTIONS(3498), - [anon_sym_import] = ACTIONS(3498), - [anon_sym_from] = ACTIONS(3498), - [anon_sym_with] = ACTIONS(3498), - [anon_sym_var] = ACTIONS(3498), - [anon_sym_let] = ACTIONS(3498), - [anon_sym_const] = ACTIONS(3498), - [anon_sym_BANG] = ACTIONS(3498), - [anon_sym_else] = ACTIONS(3498), - [anon_sym_if] = ACTIONS(3498), - [anon_sym_switch] = ACTIONS(3498), - [anon_sym_for] = ACTIONS(3498), - [anon_sym_LPAREN] = ACTIONS(3498), - [anon_sym_await] = ACTIONS(3498), - [anon_sym_of] = ACTIONS(3498), - [anon_sym_while] = ACTIONS(3498), - [anon_sym_do] = ACTIONS(3498), - [anon_sym_try] = ACTIONS(3498), - [anon_sym_break] = ACTIONS(3498), - [anon_sym_continue] = ACTIONS(3498), - [anon_sym_debugger] = ACTIONS(3498), - [anon_sym_return] = ACTIONS(3498), - [anon_sym_throw] = ACTIONS(3498), - [anon_sym_SEMI] = ACTIONS(3498), - [anon_sym_yield] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3498), - [anon_sym_LTtemplate_GT] = ACTIONS(3498), - [anon_sym_DQUOTE] = ACTIONS(3498), - [anon_sym_SQUOTE] = ACTIONS(3498), - [anon_sym_class] = ACTIONS(3498), - [anon_sym_async] = ACTIONS(3498), - [anon_sym_function] = ACTIONS(3498), - [anon_sym_new] = ACTIONS(3498), - [anon_sym_using] = ACTIONS(3498), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_SLASH] = ACTIONS(3498), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_TILDE] = ACTIONS(3498), - [anon_sym_void] = ACTIONS(3498), - [anon_sym_delete] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_DASH_DASH] = ACTIONS(3498), + [1546] = { + [sym_comment] = STATE(1546), + [sym_identifier] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_type] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_typeof] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [anon_sym_var] = ACTIONS(3630), + [anon_sym_let] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_else] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_await] = ACTIONS(3630), + [anon_sym_of] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_debugger] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_yield] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LTtemplate_GT] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_async] = ACTIONS(3630), + [anon_sym_function] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_void] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3498), - [sym_number] = ACTIONS(3498), - [sym_private_property_identifier] = ACTIONS(3498), - [sym_this] = ACTIONS(3498), - [sym_super] = ACTIONS(3498), - [sym_true] = ACTIONS(3498), - [sym_false] = ACTIONS(3498), - [sym_null] = ACTIONS(3498), - [sym_undefined] = ACTIONS(3498), - [anon_sym_AT] = ACTIONS(3498), - [anon_sym_static] = ACTIONS(3498), - [anon_sym_readonly] = ACTIONS(3498), - [anon_sym_get] = ACTIONS(3498), - [anon_sym_set] = ACTIONS(3498), - [anon_sym_declare] = ACTIONS(3498), - [anon_sym_public] = ACTIONS(3498), - [anon_sym_private] = ACTIONS(3498), - [anon_sym_protected] = ACTIONS(3498), - [anon_sym_override] = ACTIONS(3498), - [anon_sym_module] = ACTIONS(3498), - [anon_sym_any] = ACTIONS(3498), - [anon_sym_number] = ACTIONS(3498), - [anon_sym_boolean] = ACTIONS(3498), - [anon_sym_string] = ACTIONS(3498), - [anon_sym_symbol] = ACTIONS(3498), - [anon_sym_object] = ACTIONS(3498), - [anon_sym_property] = ACTIONS(3498), - [anon_sym_signal] = ACTIONS(3498), - [anon_sym_on] = ACTIONS(3498), - [anon_sym_required] = ACTIONS(3498), - [anon_sym_component] = ACTIONS(3498), - [anon_sym_abstract] = ACTIONS(3498), - [anon_sym_interface] = ACTIONS(3498), - [anon_sym_enum] = ACTIONS(3498), + [anon_sym_BQUOTE] = ACTIONS(3630), + [sym_number] = ACTIONS(3630), + [sym_private_property_identifier] = ACTIONS(3630), + [sym_this] = ACTIONS(3630), + [sym_super] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_null] = ACTIONS(3630), + [sym_undefined] = ACTIONS(3630), + [anon_sym_AT] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_readonly] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(3630), + [anon_sym_set] = ACTIONS(3630), + [anon_sym_declare] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_override] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_any] = ACTIONS(3630), + [anon_sym_number] = ACTIONS(3630), + [anon_sym_boolean] = ACTIONS(3630), + [anon_sym_string] = ACTIONS(3630), + [anon_sym_symbol] = ACTIONS(3630), + [anon_sym_object] = ACTIONS(3630), + [anon_sym_property] = ACTIONS(3630), + [anon_sym_signal] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_required] = ACTIONS(3630), + [anon_sym_component] = ACTIONS(3630), + [anon_sym_abstract] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), [sym_html_comment] = ACTIONS(5), }, - [1569] = { - [sym_comment] = STATE(1569), - [sym_identifier] = ACTIONS(3502), - [anon_sym_export] = ACTIONS(3502), - [anon_sym_type] = ACTIONS(3502), - [anon_sym_namespace] = ACTIONS(3502), - [anon_sym_LBRACE] = ACTIONS(3502), - [anon_sym_RBRACE] = ACTIONS(3502), - [anon_sym_typeof] = ACTIONS(3502), - [anon_sym_import] = ACTIONS(3502), - [anon_sym_from] = ACTIONS(3502), - [anon_sym_with] = ACTIONS(3502), - [anon_sym_var] = ACTIONS(3502), - [anon_sym_let] = ACTIONS(3502), - [anon_sym_const] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_else] = ACTIONS(3502), - [anon_sym_if] = ACTIONS(3502), - [anon_sym_switch] = ACTIONS(3502), - [anon_sym_for] = ACTIONS(3502), - [anon_sym_LPAREN] = ACTIONS(3502), - [anon_sym_await] = ACTIONS(3502), - [anon_sym_of] = ACTIONS(3502), - [anon_sym_while] = ACTIONS(3502), - [anon_sym_do] = ACTIONS(3502), - [anon_sym_try] = ACTIONS(3502), - [anon_sym_break] = ACTIONS(3502), - [anon_sym_continue] = ACTIONS(3502), - [anon_sym_debugger] = ACTIONS(3502), - [anon_sym_return] = ACTIONS(3502), - [anon_sym_throw] = ACTIONS(3502), - [anon_sym_SEMI] = ACTIONS(3502), - [anon_sym_yield] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3502), - [anon_sym_LTtemplate_GT] = ACTIONS(3502), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3502), - [anon_sym_class] = ACTIONS(3502), - [anon_sym_async] = ACTIONS(3502), - [anon_sym_function] = ACTIONS(3502), - [anon_sym_new] = ACTIONS(3502), - [anon_sym_using] = ACTIONS(3502), - [anon_sym_PLUS] = ACTIONS(3502), - [anon_sym_DASH] = ACTIONS(3502), - [anon_sym_SLASH] = ACTIONS(3502), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_TILDE] = ACTIONS(3502), - [anon_sym_void] = ACTIONS(3502), - [anon_sym_delete] = ACTIONS(3502), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3502), + [1547] = { + [sym_comment] = STATE(1547), + [sym_identifier] = ACTIONS(3488), + [anon_sym_export] = ACTIONS(3488), + [anon_sym_type] = ACTIONS(3488), + [anon_sym_namespace] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_typeof] = ACTIONS(3488), + [anon_sym_import] = ACTIONS(3488), + [anon_sym_from] = ACTIONS(3488), + [anon_sym_with] = ACTIONS(3488), + [anon_sym_var] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_const] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_else] = ACTIONS(3488), + [anon_sym_if] = ACTIONS(3488), + [anon_sym_switch] = ACTIONS(3488), + [anon_sym_for] = ACTIONS(3488), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_await] = ACTIONS(3488), + [anon_sym_of] = ACTIONS(3488), + [anon_sym_while] = ACTIONS(3488), + [anon_sym_do] = ACTIONS(3488), + [anon_sym_try] = ACTIONS(3488), + [anon_sym_break] = ACTIONS(3488), + [anon_sym_continue] = ACTIONS(3488), + [anon_sym_debugger] = ACTIONS(3488), + [anon_sym_return] = ACTIONS(3488), + [anon_sym_throw] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3488), + [anon_sym_LTtemplate_GT] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_class] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_function] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_using] = ACTIONS(3488), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_void] = ACTIONS(3488), + [anon_sym_delete] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_DASH_DASH] = ACTIONS(3488), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3502), - [sym_number] = ACTIONS(3502), - [sym_private_property_identifier] = ACTIONS(3502), - [sym_this] = ACTIONS(3502), - [sym_super] = ACTIONS(3502), - [sym_true] = ACTIONS(3502), - [sym_false] = ACTIONS(3502), - [sym_null] = ACTIONS(3502), - [sym_undefined] = ACTIONS(3502), - [anon_sym_AT] = ACTIONS(3502), - [anon_sym_static] = ACTIONS(3502), - [anon_sym_readonly] = ACTIONS(3502), - [anon_sym_get] = ACTIONS(3502), - [anon_sym_set] = ACTIONS(3502), - [anon_sym_declare] = ACTIONS(3502), - [anon_sym_public] = ACTIONS(3502), - [anon_sym_private] = ACTIONS(3502), - [anon_sym_protected] = ACTIONS(3502), - [anon_sym_override] = ACTIONS(3502), - [anon_sym_module] = ACTIONS(3502), - [anon_sym_any] = ACTIONS(3502), - [anon_sym_number] = ACTIONS(3502), - [anon_sym_boolean] = ACTIONS(3502), - [anon_sym_string] = ACTIONS(3502), - [anon_sym_symbol] = ACTIONS(3502), - [anon_sym_object] = ACTIONS(3502), - [anon_sym_property] = ACTIONS(3502), - [anon_sym_signal] = ACTIONS(3502), - [anon_sym_on] = ACTIONS(3502), - [anon_sym_required] = ACTIONS(3502), - [anon_sym_component] = ACTIONS(3502), - [anon_sym_abstract] = ACTIONS(3502), - [anon_sym_interface] = ACTIONS(3502), - [anon_sym_enum] = ACTIONS(3502), + [anon_sym_BQUOTE] = ACTIONS(3488), + [sym_number] = ACTIONS(3488), + [sym_private_property_identifier] = ACTIONS(3488), + [sym_this] = ACTIONS(3488), + [sym_super] = ACTIONS(3488), + [sym_true] = ACTIONS(3488), + [sym_false] = ACTIONS(3488), + [sym_null] = ACTIONS(3488), + [sym_undefined] = ACTIONS(3488), + [anon_sym_AT] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_get] = ACTIONS(3488), + [anon_sym_set] = ACTIONS(3488), + [anon_sym_declare] = ACTIONS(3488), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_override] = ACTIONS(3488), + [anon_sym_module] = ACTIONS(3488), + [anon_sym_any] = ACTIONS(3488), + [anon_sym_number] = ACTIONS(3488), + [anon_sym_boolean] = ACTIONS(3488), + [anon_sym_string] = ACTIONS(3488), + [anon_sym_symbol] = ACTIONS(3488), + [anon_sym_object] = ACTIONS(3488), + [anon_sym_property] = ACTIONS(3488), + [anon_sym_signal] = ACTIONS(3488), + [anon_sym_on] = ACTIONS(3488), + [anon_sym_required] = ACTIONS(3488), + [anon_sym_component] = ACTIONS(3488), + [anon_sym_abstract] = ACTIONS(3488), + [anon_sym_interface] = ACTIONS(3488), + [anon_sym_enum] = ACTIONS(3488), [sym_html_comment] = ACTIONS(5), }, - [1570] = { - [sym_comment] = STATE(1570), - [sym_identifier] = ACTIONS(3548), - [anon_sym_export] = ACTIONS(3548), - [anon_sym_type] = ACTIONS(3548), - [anon_sym_namespace] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3548), - [anon_sym_RBRACE] = ACTIONS(3548), - [anon_sym_typeof] = ACTIONS(3548), - [anon_sym_import] = ACTIONS(3548), - [anon_sym_from] = ACTIONS(3548), - [anon_sym_with] = ACTIONS(3548), - [anon_sym_var] = ACTIONS(3548), - [anon_sym_let] = ACTIONS(3548), - [anon_sym_const] = ACTIONS(3548), - [anon_sym_BANG] = ACTIONS(3548), - [anon_sym_else] = ACTIONS(3548), - [anon_sym_if] = ACTIONS(3548), - [anon_sym_switch] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_await] = ACTIONS(3548), - [anon_sym_of] = ACTIONS(3548), - [anon_sym_while] = ACTIONS(3548), - [anon_sym_do] = ACTIONS(3548), - [anon_sym_try] = ACTIONS(3548), - [anon_sym_break] = ACTIONS(3548), - [anon_sym_continue] = ACTIONS(3548), - [anon_sym_debugger] = ACTIONS(3548), - [anon_sym_return] = ACTIONS(3548), - [anon_sym_throw] = ACTIONS(3548), - [anon_sym_SEMI] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3548), - [anon_sym_LBRACK] = ACTIONS(3548), - [anon_sym_LTtemplate_GT] = ACTIONS(3548), - [anon_sym_DQUOTE] = ACTIONS(3548), - [anon_sym_SQUOTE] = ACTIONS(3548), - [anon_sym_class] = ACTIONS(3548), - [anon_sym_async] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3548), - [anon_sym_using] = ACTIONS(3548), - [anon_sym_PLUS] = ACTIONS(3548), - [anon_sym_DASH] = ACTIONS(3548), - [anon_sym_SLASH] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_TILDE] = ACTIONS(3548), - [anon_sym_void] = ACTIONS(3548), - [anon_sym_delete] = ACTIONS(3548), - [anon_sym_PLUS_PLUS] = ACTIONS(3548), - [anon_sym_DASH_DASH] = ACTIONS(3548), + [1548] = { + [sym_comment] = STATE(1548), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_RBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_with] = ACTIONS(3656), + [anon_sym_var] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_debugger] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3548), - [sym_number] = ACTIONS(3548), - [sym_private_property_identifier] = ACTIONS(3548), - [sym_this] = ACTIONS(3548), - [sym_super] = ACTIONS(3548), - [sym_true] = ACTIONS(3548), - [sym_false] = ACTIONS(3548), - [sym_null] = ACTIONS(3548), - [sym_undefined] = ACTIONS(3548), - [anon_sym_AT] = ACTIONS(3548), - [anon_sym_static] = ACTIONS(3548), - [anon_sym_readonly] = ACTIONS(3548), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3548), - [anon_sym_declare] = ACTIONS(3548), - [anon_sym_public] = ACTIONS(3548), - [anon_sym_private] = ACTIONS(3548), - [anon_sym_protected] = ACTIONS(3548), - [anon_sym_override] = ACTIONS(3548), - [anon_sym_module] = ACTIONS(3548), - [anon_sym_any] = ACTIONS(3548), - [anon_sym_number] = ACTIONS(3548), - [anon_sym_boolean] = ACTIONS(3548), - [anon_sym_string] = ACTIONS(3548), - [anon_sym_symbol] = ACTIONS(3548), - [anon_sym_object] = ACTIONS(3548), - [anon_sym_property] = ACTIONS(3548), - [anon_sym_signal] = ACTIONS(3548), - [anon_sym_on] = ACTIONS(3548), - [anon_sym_required] = ACTIONS(3548), - [anon_sym_component] = ACTIONS(3548), - [anon_sym_abstract] = ACTIONS(3548), - [anon_sym_interface] = ACTIONS(3548), - [anon_sym_enum] = ACTIONS(3548), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), + [anon_sym_abstract] = ACTIONS(3656), + [anon_sym_interface] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), [sym_html_comment] = ACTIONS(5), }, - [1571] = { - [sym_comment] = STATE(1571), - [sym_identifier] = ACTIONS(3578), - [anon_sym_export] = ACTIONS(3578), - [anon_sym_type] = ACTIONS(3578), - [anon_sym_namespace] = ACTIONS(3578), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_RBRACE] = ACTIONS(3578), - [anon_sym_typeof] = ACTIONS(3578), - [anon_sym_import] = ACTIONS(3578), - [anon_sym_from] = ACTIONS(3578), - [anon_sym_with] = ACTIONS(3578), - [anon_sym_var] = ACTIONS(3578), - [anon_sym_let] = ACTIONS(3578), - [anon_sym_const] = ACTIONS(3578), - [anon_sym_BANG] = ACTIONS(3578), - [anon_sym_else] = ACTIONS(3578), - [anon_sym_if] = ACTIONS(3578), - [anon_sym_switch] = ACTIONS(3578), - [anon_sym_for] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_await] = ACTIONS(3578), - [anon_sym_of] = ACTIONS(3578), - [anon_sym_while] = ACTIONS(3578), - [anon_sym_do] = ACTIONS(3578), - [anon_sym_try] = ACTIONS(3578), - [anon_sym_break] = ACTIONS(3578), - [anon_sym_continue] = ACTIONS(3578), - [anon_sym_debugger] = ACTIONS(3578), - [anon_sym_return] = ACTIONS(3578), - [anon_sym_throw] = ACTIONS(3578), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_yield] = ACTIONS(3578), - [anon_sym_LBRACK] = ACTIONS(3578), - [anon_sym_LTtemplate_GT] = ACTIONS(3578), - [anon_sym_DQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3578), - [anon_sym_class] = ACTIONS(3578), - [anon_sym_async] = ACTIONS(3578), - [anon_sym_function] = ACTIONS(3578), - [anon_sym_new] = ACTIONS(3578), - [anon_sym_using] = ACTIONS(3578), - [anon_sym_PLUS] = ACTIONS(3578), - [anon_sym_DASH] = ACTIONS(3578), - [anon_sym_SLASH] = ACTIONS(3578), - [anon_sym_LT] = ACTIONS(3578), - [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_void] = ACTIONS(3578), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_DASH_DASH] = ACTIONS(3578), + [1549] = { + [sym_comment] = STATE(1549), + [sym_identifier] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_type] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3526), + [anon_sym_RBRACE] = ACTIONS(3526), + [anon_sym_typeof] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_from] = ACTIONS(3526), + [anon_sym_with] = ACTIONS(3526), + [anon_sym_var] = ACTIONS(3526), + [anon_sym_let] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3526), + [anon_sym_await] = ACTIONS(3526), + [anon_sym_of] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_debugger] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3526), + [anon_sym_yield] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_LTtemplate_GT] = ACTIONS(3526), + [anon_sym_DQUOTE] = ACTIONS(3526), + [anon_sym_SQUOTE] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_async] = ACTIONS(3526), + [anon_sym_function] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_SLASH] = ACTIONS(3526), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3526), + [anon_sym_void] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3526), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3578), - [sym_number] = ACTIONS(3578), - [sym_private_property_identifier] = ACTIONS(3578), - [sym_this] = ACTIONS(3578), - [sym_super] = ACTIONS(3578), - [sym_true] = ACTIONS(3578), - [sym_false] = ACTIONS(3578), - [sym_null] = ACTIONS(3578), - [sym_undefined] = ACTIONS(3578), - [anon_sym_AT] = ACTIONS(3578), - [anon_sym_static] = ACTIONS(3578), - [anon_sym_readonly] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(3578), - [anon_sym_set] = ACTIONS(3578), - [anon_sym_declare] = ACTIONS(3578), - [anon_sym_public] = ACTIONS(3578), - [anon_sym_private] = ACTIONS(3578), - [anon_sym_protected] = ACTIONS(3578), - [anon_sym_override] = ACTIONS(3578), - [anon_sym_module] = ACTIONS(3578), - [anon_sym_any] = ACTIONS(3578), - [anon_sym_number] = ACTIONS(3578), - [anon_sym_boolean] = ACTIONS(3578), - [anon_sym_string] = ACTIONS(3578), - [anon_sym_symbol] = ACTIONS(3578), - [anon_sym_object] = ACTIONS(3578), - [anon_sym_property] = ACTIONS(3578), - [anon_sym_signal] = ACTIONS(3578), - [anon_sym_on] = ACTIONS(3578), - [anon_sym_required] = ACTIONS(3578), - [anon_sym_component] = ACTIONS(3578), - [anon_sym_abstract] = ACTIONS(3578), - [anon_sym_interface] = ACTIONS(3578), - [anon_sym_enum] = ACTIONS(3578), + [anon_sym_BQUOTE] = ACTIONS(3526), + [sym_number] = ACTIONS(3526), + [sym_private_property_identifier] = ACTIONS(3526), + [sym_this] = ACTIONS(3526), + [sym_super] = ACTIONS(3526), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [sym_null] = ACTIONS(3526), + [sym_undefined] = ACTIONS(3526), + [anon_sym_AT] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_readonly] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(3526), + [anon_sym_set] = ACTIONS(3526), + [anon_sym_declare] = ACTIONS(3526), + [anon_sym_public] = ACTIONS(3526), + [anon_sym_private] = ACTIONS(3526), + [anon_sym_protected] = ACTIONS(3526), + [anon_sym_override] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_any] = ACTIONS(3526), + [anon_sym_number] = ACTIONS(3526), + [anon_sym_boolean] = ACTIONS(3526), + [anon_sym_string] = ACTIONS(3526), + [anon_sym_symbol] = ACTIONS(3526), + [anon_sym_object] = ACTIONS(3526), + [anon_sym_property] = ACTIONS(3526), + [anon_sym_signal] = ACTIONS(3526), + [anon_sym_on] = ACTIONS(3526), + [anon_sym_required] = ACTIONS(3526), + [anon_sym_component] = ACTIONS(3526), + [anon_sym_abstract] = ACTIONS(3526), + [anon_sym_interface] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), [sym_html_comment] = ACTIONS(5), }, - [1572] = { - [sym_comment] = STATE(1572), - [sym_identifier] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_namespace] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_typeof] = ACTIONS(2342), - [anon_sym_import] = ACTIONS(2342), - [anon_sym_from] = ACTIONS(2342), - [anon_sym_with] = ACTIONS(2342), - [anon_sym_var] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_const] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2342), - [anon_sym_switch] = ACTIONS(2342), - [anon_sym_for] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(2342), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_while] = ACTIONS(2342), - [anon_sym_do] = ACTIONS(2342), - [anon_sym_try] = ACTIONS(2342), - [anon_sym_break] = ACTIONS(2342), - [anon_sym_continue] = ACTIONS(2342), - [anon_sym_debugger] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2342), - [anon_sym_throw] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_yield] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LTtemplate_GT] = ACTIONS(2342), - [anon_sym_DQUOTE] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2342), - [anon_sym_class] = ACTIONS(2342), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_new] = ACTIONS(2342), - [anon_sym_using] = ACTIONS(2342), - [anon_sym_PLUS] = ACTIONS(2342), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_void] = ACTIONS(2342), - [anon_sym_delete] = ACTIONS(2342), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), + [1550] = { + [sym_comment] = STATE(1550), + [sym_identifier] = ACTIONS(3496), + [anon_sym_export] = ACTIONS(3496), + [anon_sym_type] = ACTIONS(3496), + [anon_sym_namespace] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_typeof] = ACTIONS(3496), + [anon_sym_import] = ACTIONS(3496), + [anon_sym_from] = ACTIONS(3496), + [anon_sym_with] = ACTIONS(3496), + [anon_sym_var] = ACTIONS(3496), + [anon_sym_let] = ACTIONS(3496), + [anon_sym_const] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_if] = ACTIONS(3496), + [anon_sym_switch] = ACTIONS(3496), + [anon_sym_for] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_await] = ACTIONS(3496), + [anon_sym_of] = ACTIONS(3496), + [anon_sym_while] = ACTIONS(3496), + [anon_sym_do] = ACTIONS(3496), + [anon_sym_try] = ACTIONS(3496), + [anon_sym_break] = ACTIONS(3496), + [anon_sym_continue] = ACTIONS(3496), + [anon_sym_debugger] = ACTIONS(3496), + [anon_sym_return] = ACTIONS(3496), + [anon_sym_throw] = ACTIONS(3496), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_yield] = ACTIONS(3496), + [anon_sym_LBRACK] = ACTIONS(3496), + [anon_sym_LTtemplate_GT] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_class] = ACTIONS(3496), + [anon_sym_async] = ACTIONS(3496), + [anon_sym_function] = ACTIONS(3496), + [anon_sym_new] = ACTIONS(3496), + [anon_sym_using] = ACTIONS(3496), + [anon_sym_PLUS] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_void] = ACTIONS(3496), + [anon_sym_delete] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_DASH_DASH] = ACTIONS(3496), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2342), - [sym_number] = ACTIONS(2342), - [sym_private_property_identifier] = ACTIONS(2342), - [sym_this] = ACTIONS(2342), - [sym_super] = ACTIONS(2342), - [sym_true] = ACTIONS(2342), - [sym_false] = ACTIONS(2342), - [sym_null] = ACTIONS(2342), - [sym_undefined] = ACTIONS(2342), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_readonly] = ACTIONS(2342), - [anon_sym_get] = ACTIONS(2342), - [anon_sym_set] = ACTIONS(2342), - [anon_sym_declare] = ACTIONS(2342), - [anon_sym_public] = ACTIONS(2342), - [anon_sym_private] = ACTIONS(2342), - [anon_sym_protected] = ACTIONS(2342), - [anon_sym_override] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_any] = ACTIONS(2342), - [anon_sym_number] = ACTIONS(2342), - [anon_sym_boolean] = ACTIONS(2342), - [anon_sym_string] = ACTIONS(2342), - [anon_sym_symbol] = ACTIONS(2342), - [anon_sym_object] = ACTIONS(2342), - [anon_sym_property] = ACTIONS(2342), - [anon_sym_signal] = ACTIONS(2342), - [anon_sym_on] = ACTIONS(2342), - [anon_sym_required] = ACTIONS(2342), - [anon_sym_component] = ACTIONS(2342), - [anon_sym_abstract] = ACTIONS(2342), - [anon_sym_interface] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(2684), + [anon_sym_BQUOTE] = ACTIONS(3496), + [sym_number] = ACTIONS(3496), + [sym_private_property_identifier] = ACTIONS(3496), + [sym_this] = ACTIONS(3496), + [sym_super] = ACTIONS(3496), + [sym_true] = ACTIONS(3496), + [sym_false] = ACTIONS(3496), + [sym_null] = ACTIONS(3496), + [sym_undefined] = ACTIONS(3496), + [anon_sym_AT] = ACTIONS(3496), + [anon_sym_static] = ACTIONS(3496), + [anon_sym_readonly] = ACTIONS(3496), + [anon_sym_get] = ACTIONS(3496), + [anon_sym_set] = ACTIONS(3496), + [anon_sym_declare] = ACTIONS(3496), + [anon_sym_public] = ACTIONS(3496), + [anon_sym_private] = ACTIONS(3496), + [anon_sym_protected] = ACTIONS(3496), + [anon_sym_override] = ACTIONS(3496), + [anon_sym_module] = ACTIONS(3496), + [anon_sym_any] = ACTIONS(3496), + [anon_sym_number] = ACTIONS(3496), + [anon_sym_boolean] = ACTIONS(3496), + [anon_sym_string] = ACTIONS(3496), + [anon_sym_symbol] = ACTIONS(3496), + [anon_sym_object] = ACTIONS(3496), + [anon_sym_property] = ACTIONS(3496), + [anon_sym_signal] = ACTIONS(3496), + [anon_sym_on] = ACTIONS(3496), + [anon_sym_required] = ACTIONS(3496), + [anon_sym_component] = ACTIONS(3496), + [anon_sym_abstract] = ACTIONS(3496), + [anon_sym_interface] = ACTIONS(3496), + [anon_sym_enum] = ACTIONS(3496), [sym_html_comment] = ACTIONS(5), }, - [1573] = { - [sym_comment] = STATE(1573), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_else] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), + [1551] = { + [sym_comment] = STATE(1551), + [sym_identifier] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_type] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3558), + [anon_sym_RBRACE] = ACTIONS(3558), + [anon_sym_typeof] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_from] = ACTIONS(3558), + [anon_sym_with] = ACTIONS(3558), + [anon_sym_var] = ACTIONS(3558), + [anon_sym_let] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_BANG] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_LPAREN] = ACTIONS(3558), + [anon_sym_await] = ACTIONS(3558), + [anon_sym_of] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_debugger] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3558), + [anon_sym_yield] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_LTtemplate_GT] = ACTIONS(3558), + [anon_sym_DQUOTE] = ACTIONS(3558), + [anon_sym_SQUOTE] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_async] = ACTIONS(3558), + [anon_sym_function] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_SLASH] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(3558), + [anon_sym_TILDE] = ACTIONS(3558), + [anon_sym_void] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_PLUS_PLUS] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3558), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3558), + [sym_number] = ACTIONS(3558), + [sym_private_property_identifier] = ACTIONS(3558), + [sym_this] = ACTIONS(3558), + [sym_super] = ACTIONS(3558), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [sym_null] = ACTIONS(3558), + [sym_undefined] = ACTIONS(3558), + [anon_sym_AT] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_readonly] = ACTIONS(3558), + [anon_sym_get] = ACTIONS(3558), + [anon_sym_set] = ACTIONS(3558), + [anon_sym_declare] = ACTIONS(3558), + [anon_sym_public] = ACTIONS(3558), + [anon_sym_private] = ACTIONS(3558), + [anon_sym_protected] = ACTIONS(3558), + [anon_sym_override] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_any] = ACTIONS(3558), + [anon_sym_number] = ACTIONS(3558), + [anon_sym_boolean] = ACTIONS(3558), + [anon_sym_string] = ACTIONS(3558), + [anon_sym_symbol] = ACTIONS(3558), + [anon_sym_object] = ACTIONS(3558), + [anon_sym_property] = ACTIONS(3558), + [anon_sym_signal] = ACTIONS(3558), + [anon_sym_on] = ACTIONS(3558), + [anon_sym_required] = ACTIONS(3558), + [anon_sym_component] = ACTIONS(3558), + [anon_sym_abstract] = ACTIONS(3558), + [anon_sym_interface] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), [sym_html_comment] = ACTIONS(5), }, - [1574] = { - [sym_comment] = STATE(1574), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_else] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), + [1552] = { + [sym_comment] = STATE(1552), + [sym_identifier] = ACTIONS(3674), + [anon_sym_export] = ACTIONS(3674), + [anon_sym_type] = ACTIONS(3674), + [anon_sym_namespace] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3674), + [anon_sym_RBRACE] = ACTIONS(3674), + [anon_sym_typeof] = ACTIONS(3674), + [anon_sym_import] = ACTIONS(3674), + [anon_sym_from] = ACTIONS(3674), + [anon_sym_with] = ACTIONS(3674), + [anon_sym_var] = ACTIONS(3674), + [anon_sym_let] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(3674), + [anon_sym_BANG] = ACTIONS(3674), + [anon_sym_if] = ACTIONS(3674), + [anon_sym_switch] = ACTIONS(3674), + [anon_sym_for] = ACTIONS(3674), + [anon_sym_LPAREN] = ACTIONS(3674), + [anon_sym_await] = ACTIONS(3674), + [anon_sym_of] = ACTIONS(3674), + [anon_sym_while] = ACTIONS(3674), + [anon_sym_do] = ACTIONS(3674), + [anon_sym_try] = ACTIONS(3674), + [anon_sym_break] = ACTIONS(3674), + [anon_sym_continue] = ACTIONS(3674), + [anon_sym_debugger] = ACTIONS(3674), + [anon_sym_return] = ACTIONS(3674), + [anon_sym_throw] = ACTIONS(3674), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym_yield] = ACTIONS(3674), + [anon_sym_LBRACK] = ACTIONS(3674), + [anon_sym_LTtemplate_GT] = ACTIONS(3674), + [anon_sym_DQUOTE] = ACTIONS(3674), + [anon_sym_SQUOTE] = ACTIONS(3674), + [anon_sym_class] = ACTIONS(3674), + [anon_sym_async] = ACTIONS(3674), + [anon_sym_function] = ACTIONS(3674), + [anon_sym_new] = ACTIONS(3674), + [anon_sym_using] = ACTIONS(3674), + [anon_sym_PLUS] = ACTIONS(3674), + [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_SLASH] = ACTIONS(3674), + [anon_sym_LT] = ACTIONS(3674), + [anon_sym_TILDE] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3674), + [anon_sym_delete] = ACTIONS(3674), + [anon_sym_PLUS_PLUS] = ACTIONS(3674), + [anon_sym_DASH_DASH] = ACTIONS(3674), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), + [anon_sym_BQUOTE] = ACTIONS(3674), + [sym_number] = ACTIONS(3674), + [sym_private_property_identifier] = ACTIONS(3674), + [sym_this] = ACTIONS(3674), + [sym_super] = ACTIONS(3674), + [sym_true] = ACTIONS(3674), + [sym_false] = ACTIONS(3674), + [sym_null] = ACTIONS(3674), + [sym_undefined] = ACTIONS(3674), + [anon_sym_AT] = ACTIONS(3674), + [anon_sym_static] = ACTIONS(3674), + [anon_sym_readonly] = ACTIONS(3674), + [anon_sym_get] = ACTIONS(3674), + [anon_sym_set] = ACTIONS(3674), + [anon_sym_declare] = ACTIONS(3674), + [anon_sym_public] = ACTIONS(3674), + [anon_sym_private] = ACTIONS(3674), + [anon_sym_protected] = ACTIONS(3674), + [anon_sym_override] = ACTIONS(3674), + [anon_sym_module] = ACTIONS(3674), + [anon_sym_any] = ACTIONS(3674), + [anon_sym_number] = ACTIONS(3674), + [anon_sym_boolean] = ACTIONS(3674), + [anon_sym_string] = ACTIONS(3674), + [anon_sym_symbol] = ACTIONS(3674), + [anon_sym_object] = ACTIONS(3674), + [anon_sym_property] = ACTIONS(3674), + [anon_sym_signal] = ACTIONS(3674), + [anon_sym_on] = ACTIONS(3674), + [anon_sym_required] = ACTIONS(3674), + [anon_sym_component] = ACTIONS(3674), + [anon_sym_abstract] = ACTIONS(3674), + [anon_sym_interface] = ACTIONS(3674), + [anon_sym_enum] = ACTIONS(3674), [sym_html_comment] = ACTIONS(5), }, - [1575] = { - [sym_comment] = STATE(1575), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1553] = { + [sym_comment] = STATE(1553), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_typeof] = ACTIONS(2458), + [anon_sym_import] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_with] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_const] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_if] = ACTIONS(2458), + [anon_sym_switch] = ACTIONS(2458), + [anon_sym_for] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_await] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_while] = ACTIONS(2458), + [anon_sym_do] = ACTIONS(2458), + [anon_sym_try] = ACTIONS(2458), + [anon_sym_break] = ACTIONS(2458), + [anon_sym_continue] = ACTIONS(2458), + [anon_sym_debugger] = ACTIONS(2458), + [anon_sym_return] = ACTIONS(2458), + [anon_sym_throw] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_yield] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LTtemplate_GT] = ACTIONS(2458), + [anon_sym_DQUOTE] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2458), + [anon_sym_class] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_new] = ACTIONS(2458), + [anon_sym_using] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_TILDE] = ACTIONS(2458), + [anon_sym_void] = ACTIONS(2458), + [anon_sym_delete] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(2458), + [sym_number] = ACTIONS(2458), + [sym_private_property_identifier] = ACTIONS(2458), + [sym_this] = ACTIONS(2458), + [sym_super] = ACTIONS(2458), + [sym_true] = ACTIONS(2458), + [sym_false] = ACTIONS(2458), + [sym_null] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_abstract] = ACTIONS(2458), + [anon_sym_interface] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), [sym_html_comment] = ACTIONS(5), }, - [1576] = { - [sym_comment] = STATE(1576), - [sym_identifier] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_namespace] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2338), - [anon_sym_import] = ACTIONS(2338), - [anon_sym_from] = ACTIONS(2338), - [anon_sym_with] = ACTIONS(2338), - [anon_sym_var] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_do] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_debugger] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_throw] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_yield] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LTtemplate_GT] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_class] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_using] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2338), - [anon_sym_delete] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_private_property_identifier] = ACTIONS(2338), - [sym_this] = ACTIONS(2338), - [sym_super] = ACTIONS(2338), - [sym_true] = ACTIONS(2338), - [sym_false] = ACTIONS(2338), - [sym_null] = ACTIONS(2338), - [sym_undefined] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_readonly] = ACTIONS(2338), - [anon_sym_get] = ACTIONS(2338), - [anon_sym_set] = ACTIONS(2338), - [anon_sym_declare] = ACTIONS(2338), - [anon_sym_public] = ACTIONS(2338), - [anon_sym_private] = ACTIONS(2338), - [anon_sym_protected] = ACTIONS(2338), - [anon_sym_override] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_any] = ACTIONS(2338), - [anon_sym_number] = ACTIONS(2338), - [anon_sym_boolean] = ACTIONS(2338), - [anon_sym_string] = ACTIONS(2338), - [anon_sym_symbol] = ACTIONS(2338), - [anon_sym_object] = ACTIONS(2338), - [anon_sym_property] = ACTIONS(2338), - [anon_sym_signal] = ACTIONS(2338), - [anon_sym_on] = ACTIONS(2338), - [anon_sym_required] = ACTIONS(2338), - [anon_sym_component] = ACTIONS(2338), - [anon_sym_abstract] = ACTIONS(2338), - [anon_sym_interface] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), + [1554] = { + [sym_comment] = STATE(1554), + [sym_identifier] = ACTIONS(3560), + [anon_sym_export] = ACTIONS(3560), + [anon_sym_type] = ACTIONS(3560), + [anon_sym_namespace] = ACTIONS(3560), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_RBRACE] = ACTIONS(3560), + [anon_sym_typeof] = ACTIONS(3560), + [anon_sym_import] = ACTIONS(3560), + [anon_sym_from] = ACTIONS(3560), + [anon_sym_with] = ACTIONS(3560), + [anon_sym_var] = ACTIONS(3560), + [anon_sym_let] = ACTIONS(3560), + [anon_sym_const] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_if] = ACTIONS(3560), + [anon_sym_switch] = ACTIONS(3560), + [anon_sym_for] = ACTIONS(3560), + [anon_sym_LPAREN] = ACTIONS(3560), + [anon_sym_await] = ACTIONS(3560), + [anon_sym_of] = ACTIONS(3560), + [anon_sym_while] = ACTIONS(3560), + [anon_sym_do] = ACTIONS(3560), + [anon_sym_try] = ACTIONS(3560), + [anon_sym_break] = ACTIONS(3560), + [anon_sym_continue] = ACTIONS(3560), + [anon_sym_debugger] = ACTIONS(3560), + [anon_sym_return] = ACTIONS(3560), + [anon_sym_throw] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym_yield] = ACTIONS(3560), + [anon_sym_LBRACK] = ACTIONS(3560), + [anon_sym_LTtemplate_GT] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_class] = ACTIONS(3560), + [anon_sym_async] = ACTIONS(3560), + [anon_sym_function] = ACTIONS(3560), + [anon_sym_new] = ACTIONS(3560), + [anon_sym_using] = ACTIONS(3560), + [anon_sym_PLUS] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3560), + [anon_sym_SLASH] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_void] = ACTIONS(3560), + [anon_sym_delete] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_DASH_DASH] = ACTIONS(3560), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3560), + [sym_number] = ACTIONS(3560), + [sym_private_property_identifier] = ACTIONS(3560), + [sym_this] = ACTIONS(3560), + [sym_super] = ACTIONS(3560), + [sym_true] = ACTIONS(3560), + [sym_false] = ACTIONS(3560), + [sym_null] = ACTIONS(3560), + [sym_undefined] = ACTIONS(3560), + [anon_sym_AT] = ACTIONS(3560), + [anon_sym_static] = ACTIONS(3560), + [anon_sym_readonly] = ACTIONS(3560), + [anon_sym_get] = ACTIONS(3560), + [anon_sym_set] = ACTIONS(3560), + [anon_sym_declare] = ACTIONS(3560), + [anon_sym_public] = ACTIONS(3560), + [anon_sym_private] = ACTIONS(3560), + [anon_sym_protected] = ACTIONS(3560), + [anon_sym_override] = ACTIONS(3560), + [anon_sym_module] = ACTIONS(3560), + [anon_sym_any] = ACTIONS(3560), + [anon_sym_number] = ACTIONS(3560), + [anon_sym_boolean] = ACTIONS(3560), + [anon_sym_string] = ACTIONS(3560), + [anon_sym_symbol] = ACTIONS(3560), + [anon_sym_object] = ACTIONS(3560), + [anon_sym_property] = ACTIONS(3560), + [anon_sym_signal] = ACTIONS(3560), + [anon_sym_on] = ACTIONS(3560), + [anon_sym_required] = ACTIONS(3560), + [anon_sym_component] = ACTIONS(3560), + [anon_sym_abstract] = ACTIONS(3560), + [anon_sym_interface] = ACTIONS(3560), + [anon_sym_enum] = ACTIONS(3560), [sym_html_comment] = ACTIONS(5), }, - [1577] = { - [sym_comment] = STATE(1577), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_else] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), + [1555] = { + [sym_comment] = STATE(1555), + [sym_identifier] = ACTIONS(3550), + [anon_sym_export] = ACTIONS(3550), + [anon_sym_type] = ACTIONS(3550), + [anon_sym_namespace] = ACTIONS(3550), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_typeof] = ACTIONS(3550), + [anon_sym_import] = ACTIONS(3550), + [anon_sym_from] = ACTIONS(3550), + [anon_sym_with] = ACTIONS(3550), + [anon_sym_var] = ACTIONS(3550), + [anon_sym_let] = ACTIONS(3550), + [anon_sym_const] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_if] = ACTIONS(3550), + [anon_sym_switch] = ACTIONS(3550), + [anon_sym_for] = ACTIONS(3550), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_await] = ACTIONS(3550), + [anon_sym_of] = ACTIONS(3550), + [anon_sym_while] = ACTIONS(3550), + [anon_sym_do] = ACTIONS(3550), + [anon_sym_try] = ACTIONS(3550), + [anon_sym_break] = ACTIONS(3550), + [anon_sym_continue] = ACTIONS(3550), + [anon_sym_debugger] = ACTIONS(3550), + [anon_sym_return] = ACTIONS(3550), + [anon_sym_throw] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_yield] = ACTIONS(3550), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LTtemplate_GT] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_class] = ACTIONS(3550), + [anon_sym_async] = ACTIONS(3550), + [anon_sym_function] = ACTIONS(3550), + [anon_sym_new] = ACTIONS(3550), + [anon_sym_using] = ACTIONS(3550), + [anon_sym_PLUS] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3550), + [anon_sym_SLASH] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_void] = ACTIONS(3550), + [anon_sym_delete] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), + [anon_sym_BQUOTE] = ACTIONS(3550), + [sym_number] = ACTIONS(3550), + [sym_private_property_identifier] = ACTIONS(3550), + [sym_this] = ACTIONS(3550), + [sym_super] = ACTIONS(3550), + [sym_true] = ACTIONS(3550), + [sym_false] = ACTIONS(3550), + [sym_null] = ACTIONS(3550), + [sym_undefined] = ACTIONS(3550), + [anon_sym_AT] = ACTIONS(3550), + [anon_sym_static] = ACTIONS(3550), + [anon_sym_readonly] = ACTIONS(3550), + [anon_sym_get] = ACTIONS(3550), + [anon_sym_set] = ACTIONS(3550), + [anon_sym_declare] = ACTIONS(3550), + [anon_sym_public] = ACTIONS(3550), + [anon_sym_private] = ACTIONS(3550), + [anon_sym_protected] = ACTIONS(3550), + [anon_sym_override] = ACTIONS(3550), + [anon_sym_module] = ACTIONS(3550), + [anon_sym_any] = ACTIONS(3550), + [anon_sym_number] = ACTIONS(3550), + [anon_sym_boolean] = ACTIONS(3550), + [anon_sym_string] = ACTIONS(3550), + [anon_sym_symbol] = ACTIONS(3550), + [anon_sym_object] = ACTIONS(3550), + [anon_sym_property] = ACTIONS(3550), + [anon_sym_signal] = ACTIONS(3550), + [anon_sym_on] = ACTIONS(3550), + [anon_sym_required] = ACTIONS(3550), + [anon_sym_component] = ACTIONS(3550), + [anon_sym_abstract] = ACTIONS(3550), + [anon_sym_interface] = ACTIONS(3550), + [anon_sym_enum] = ACTIONS(3550), [sym_html_comment] = ACTIONS(5), }, - [1578] = { - [sym_comment] = STATE(1578), - [sym_identifier] = ACTIONS(3584), - [anon_sym_export] = ACTIONS(3584), - [anon_sym_type] = ACTIONS(3584), - [anon_sym_namespace] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3584), - [anon_sym_RBRACE] = ACTIONS(3584), - [anon_sym_typeof] = ACTIONS(3584), - [anon_sym_import] = ACTIONS(3584), - [anon_sym_from] = ACTIONS(3584), - [anon_sym_with] = ACTIONS(3584), - [anon_sym_var] = ACTIONS(3584), - [anon_sym_let] = ACTIONS(3584), - [anon_sym_const] = ACTIONS(3584), - [anon_sym_BANG] = ACTIONS(3584), - [anon_sym_else] = ACTIONS(3584), - [anon_sym_if] = ACTIONS(3584), - [anon_sym_switch] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3584), - [anon_sym_await] = ACTIONS(3584), - [anon_sym_of] = ACTIONS(3584), - [anon_sym_while] = ACTIONS(3584), - [anon_sym_do] = ACTIONS(3584), - [anon_sym_try] = ACTIONS(3584), - [anon_sym_break] = ACTIONS(3584), - [anon_sym_continue] = ACTIONS(3584), - [anon_sym_debugger] = ACTIONS(3584), - [anon_sym_return] = ACTIONS(3584), - [anon_sym_throw] = ACTIONS(3584), - [anon_sym_SEMI] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(3584), - [anon_sym_LTtemplate_GT] = ACTIONS(3584), - [anon_sym_DQUOTE] = ACTIONS(3584), - [anon_sym_SQUOTE] = ACTIONS(3584), - [anon_sym_class] = ACTIONS(3584), - [anon_sym_async] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3584), - [anon_sym_using] = ACTIONS(3584), - [anon_sym_PLUS] = ACTIONS(3584), - [anon_sym_DASH] = ACTIONS(3584), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_TILDE] = ACTIONS(3584), - [anon_sym_void] = ACTIONS(3584), - [anon_sym_delete] = ACTIONS(3584), - [anon_sym_PLUS_PLUS] = ACTIONS(3584), - [anon_sym_DASH_DASH] = ACTIONS(3584), + [1556] = { + [sym_comment] = STATE(1556), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_typeof] = ACTIONS(2438), + [anon_sym_import] = ACTIONS(2438), + [anon_sym_from] = ACTIONS(2438), + [anon_sym_with] = ACTIONS(2438), + [anon_sym_var] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_const] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_if] = ACTIONS(2438), + [anon_sym_switch] = ACTIONS(2438), + [anon_sym_for] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_await] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_while] = ACTIONS(2438), + [anon_sym_do] = ACTIONS(2438), + [anon_sym_try] = ACTIONS(2438), + [anon_sym_break] = ACTIONS(2438), + [anon_sym_continue] = ACTIONS(2438), + [anon_sym_debugger] = ACTIONS(2438), + [anon_sym_return] = ACTIONS(2438), + [anon_sym_throw] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_yield] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LTtemplate_GT] = ACTIONS(2438), + [anon_sym_DQUOTE] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2438), + [anon_sym_class] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2438), + [anon_sym_new] = ACTIONS(2438), + [anon_sym_using] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_TILDE] = ACTIONS(2438), + [anon_sym_void] = ACTIONS(2438), + [anon_sym_delete] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3584), - [sym_number] = ACTIONS(3584), - [sym_private_property_identifier] = ACTIONS(3584), - [sym_this] = ACTIONS(3584), - [sym_super] = ACTIONS(3584), - [sym_true] = ACTIONS(3584), - [sym_false] = ACTIONS(3584), - [sym_null] = ACTIONS(3584), - [sym_undefined] = ACTIONS(3584), - [anon_sym_AT] = ACTIONS(3584), - [anon_sym_static] = ACTIONS(3584), - [anon_sym_readonly] = ACTIONS(3584), - [anon_sym_get] = ACTIONS(3584), - [anon_sym_set] = ACTIONS(3584), - [anon_sym_declare] = ACTIONS(3584), - [anon_sym_public] = ACTIONS(3584), - [anon_sym_private] = ACTIONS(3584), - [anon_sym_protected] = ACTIONS(3584), - [anon_sym_override] = ACTIONS(3584), - [anon_sym_module] = ACTIONS(3584), - [anon_sym_any] = ACTIONS(3584), - [anon_sym_number] = ACTIONS(3584), - [anon_sym_boolean] = ACTIONS(3584), - [anon_sym_string] = ACTIONS(3584), - [anon_sym_symbol] = ACTIONS(3584), - [anon_sym_object] = ACTIONS(3584), - [anon_sym_property] = ACTIONS(3584), - [anon_sym_signal] = ACTIONS(3584), - [anon_sym_on] = ACTIONS(3584), - [anon_sym_required] = ACTIONS(3584), - [anon_sym_component] = ACTIONS(3584), - [anon_sym_abstract] = ACTIONS(3584), - [anon_sym_interface] = ACTIONS(3584), - [anon_sym_enum] = ACTIONS(3584), + [anon_sym_BQUOTE] = ACTIONS(2438), + [sym_number] = ACTIONS(2438), + [sym_private_property_identifier] = ACTIONS(2438), + [sym_this] = ACTIONS(2438), + [sym_super] = ACTIONS(2438), + [sym_true] = ACTIONS(2438), + [sym_false] = ACTIONS(2438), + [sym_null] = ACTIONS(2438), + [sym_undefined] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2438), + [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_property] = ACTIONS(2438), + [anon_sym_signal] = ACTIONS(2438), + [anon_sym_on] = ACTIONS(2438), + [anon_sym_required] = ACTIONS(2438), + [anon_sym_component] = ACTIONS(2438), + [anon_sym_abstract] = ACTIONS(2438), + [anon_sym_interface] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), [sym_html_comment] = ACTIONS(5), }, - [1579] = { - [sym_comment] = STATE(1579), - [sym_identifier] = ACTIONS(3530), - [anon_sym_export] = ACTIONS(3530), - [anon_sym_type] = ACTIONS(3530), - [anon_sym_namespace] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_RBRACE] = ACTIONS(3530), - [anon_sym_typeof] = ACTIONS(3530), - [anon_sym_import] = ACTIONS(3530), - [anon_sym_from] = ACTIONS(3530), - [anon_sym_with] = ACTIONS(3530), - [anon_sym_var] = ACTIONS(3530), - [anon_sym_let] = ACTIONS(3530), - [anon_sym_const] = ACTIONS(3530), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_else] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(3530), - [anon_sym_switch] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3530), - [anon_sym_await] = ACTIONS(3530), - [anon_sym_of] = ACTIONS(3530), - [anon_sym_while] = ACTIONS(3530), - [anon_sym_do] = ACTIONS(3530), - [anon_sym_try] = ACTIONS(3530), - [anon_sym_break] = ACTIONS(3530), - [anon_sym_continue] = ACTIONS(3530), - [anon_sym_debugger] = ACTIONS(3530), - [anon_sym_return] = ACTIONS(3530), - [anon_sym_throw] = ACTIONS(3530), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3530), - [anon_sym_LTtemplate_GT] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [anon_sym_SQUOTE] = ACTIONS(3530), - [anon_sym_class] = ACTIONS(3530), - [anon_sym_async] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3530), - [anon_sym_using] = ACTIONS(3530), - [anon_sym_PLUS] = ACTIONS(3530), - [anon_sym_DASH] = ACTIONS(3530), - [anon_sym_SLASH] = ACTIONS(3530), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_void] = ACTIONS(3530), - [anon_sym_delete] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3530), - [sym_number] = ACTIONS(3530), - [sym_private_property_identifier] = ACTIONS(3530), - [sym_this] = ACTIONS(3530), - [sym_super] = ACTIONS(3530), - [sym_true] = ACTIONS(3530), - [sym_false] = ACTIONS(3530), - [sym_null] = ACTIONS(3530), - [sym_undefined] = ACTIONS(3530), - [anon_sym_AT] = ACTIONS(3530), - [anon_sym_static] = ACTIONS(3530), - [anon_sym_readonly] = ACTIONS(3530), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_declare] = ACTIONS(3530), - [anon_sym_public] = ACTIONS(3530), - [anon_sym_private] = ACTIONS(3530), - [anon_sym_protected] = ACTIONS(3530), - [anon_sym_override] = ACTIONS(3530), - [anon_sym_module] = ACTIONS(3530), - [anon_sym_any] = ACTIONS(3530), - [anon_sym_number] = ACTIONS(3530), - [anon_sym_boolean] = ACTIONS(3530), - [anon_sym_string] = ACTIONS(3530), - [anon_sym_symbol] = ACTIONS(3530), - [anon_sym_object] = ACTIONS(3530), - [anon_sym_property] = ACTIONS(3530), - [anon_sym_signal] = ACTIONS(3530), - [anon_sym_on] = ACTIONS(3530), - [anon_sym_required] = ACTIONS(3530), - [anon_sym_component] = ACTIONS(3530), - [anon_sym_abstract] = ACTIONS(3530), - [anon_sym_interface] = ACTIONS(3530), - [anon_sym_enum] = ACTIONS(3530), + [1557] = { + [sym_comment] = STATE(1557), + [sym_identifier] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_type] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3636), + [anon_sym_RBRACE] = ACTIONS(3636), + [anon_sym_typeof] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_from] = ACTIONS(3636), + [anon_sym_with] = ACTIONS(3636), + [anon_sym_var] = ACTIONS(3636), + [anon_sym_let] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_LPAREN] = ACTIONS(3636), + [anon_sym_await] = ACTIONS(3636), + [anon_sym_of] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_debugger] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3636), + [anon_sym_yield] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_LTtemplate_GT] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(3636), + [anon_sym_SQUOTE] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_async] = ACTIONS(3636), + [anon_sym_function] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_SLASH] = ACTIONS(3636), + [anon_sym_LT] = ACTIONS(3636), + [anon_sym_TILDE] = ACTIONS(3636), + [anon_sym_void] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_PLUS_PLUS] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3636), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3636), + [sym_number] = ACTIONS(3636), + [sym_private_property_identifier] = ACTIONS(3636), + [sym_this] = ACTIONS(3636), + [sym_super] = ACTIONS(3636), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [sym_null] = ACTIONS(3636), + [sym_undefined] = ACTIONS(3636), + [anon_sym_AT] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_readonly] = ACTIONS(3636), + [anon_sym_get] = ACTIONS(3636), + [anon_sym_set] = ACTIONS(3636), + [anon_sym_declare] = ACTIONS(3636), + [anon_sym_public] = ACTIONS(3636), + [anon_sym_private] = ACTIONS(3636), + [anon_sym_protected] = ACTIONS(3636), + [anon_sym_override] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_any] = ACTIONS(3636), + [anon_sym_number] = ACTIONS(3636), + [anon_sym_boolean] = ACTIONS(3636), + [anon_sym_string] = ACTIONS(3636), + [anon_sym_symbol] = ACTIONS(3636), + [anon_sym_object] = ACTIONS(3636), + [anon_sym_property] = ACTIONS(3636), + [anon_sym_signal] = ACTIONS(3636), + [anon_sym_on] = ACTIONS(3636), + [anon_sym_required] = ACTIONS(3636), + [anon_sym_component] = ACTIONS(3636), + [anon_sym_abstract] = ACTIONS(3636), + [anon_sym_interface] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), [sym_html_comment] = ACTIONS(5), }, - [1580] = { - [sym_comment] = STATE(1580), - [sym_identifier] = ACTIONS(3528), - [anon_sym_export] = ACTIONS(3528), - [anon_sym_type] = ACTIONS(3528), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_RBRACE] = ACTIONS(3528), - [anon_sym_typeof] = ACTIONS(3528), - [anon_sym_import] = ACTIONS(3528), - [anon_sym_from] = ACTIONS(3528), - [anon_sym_with] = ACTIONS(3528), - [anon_sym_var] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_else] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_await] = ACTIONS(3528), - [anon_sym_of] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_debugger] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3528), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LTtemplate_GT] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym_class] = ACTIONS(3528), - [anon_sym_async] = ACTIONS(3528), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_using] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3528), - [anon_sym_void] = ACTIONS(3528), - [anon_sym_delete] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(3528), - [anon_sym_DASH_DASH] = ACTIONS(3528), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3528), - [sym_number] = ACTIONS(3528), - [sym_private_property_identifier] = ACTIONS(3528), - [sym_this] = ACTIONS(3528), - [sym_super] = ACTIONS(3528), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [sym_null] = ACTIONS(3528), - [sym_undefined] = ACTIONS(3528), - [anon_sym_AT] = ACTIONS(3528), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_readonly] = ACTIONS(3528), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3528), - [anon_sym_declare] = ACTIONS(3528), - [anon_sym_public] = ACTIONS(3528), - [anon_sym_private] = ACTIONS(3528), - [anon_sym_protected] = ACTIONS(3528), - [anon_sym_override] = ACTIONS(3528), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_any] = ACTIONS(3528), - [anon_sym_number] = ACTIONS(3528), - [anon_sym_boolean] = ACTIONS(3528), - [anon_sym_string] = ACTIONS(3528), - [anon_sym_symbol] = ACTIONS(3528), - [anon_sym_object] = ACTIONS(3528), - [anon_sym_property] = ACTIONS(3528), - [anon_sym_signal] = ACTIONS(3528), - [anon_sym_on] = ACTIONS(3528), - [anon_sym_required] = ACTIONS(3528), - [anon_sym_component] = ACTIONS(3528), - [anon_sym_abstract] = ACTIONS(3528), - [anon_sym_interface] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), + [1558] = { + [sym_comment] = STATE(1558), + [sym_identifier] = ACTIONS(3604), + [anon_sym_export] = ACTIONS(3604), + [anon_sym_type] = ACTIONS(3604), + [anon_sym_namespace] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_RBRACE] = ACTIONS(3604), + [anon_sym_typeof] = ACTIONS(3604), + [anon_sym_import] = ACTIONS(3604), + [anon_sym_from] = ACTIONS(3604), + [anon_sym_with] = ACTIONS(3604), + [anon_sym_var] = ACTIONS(3604), + [anon_sym_let] = ACTIONS(3604), + [anon_sym_const] = ACTIONS(3604), + [anon_sym_BANG] = ACTIONS(3604), + [anon_sym_if] = ACTIONS(3604), + [anon_sym_switch] = ACTIONS(3604), + [anon_sym_for] = ACTIONS(3604), + [anon_sym_LPAREN] = ACTIONS(3604), + [anon_sym_await] = ACTIONS(3604), + [anon_sym_of] = ACTIONS(3604), + [anon_sym_while] = ACTIONS(3604), + [anon_sym_do] = ACTIONS(3604), + [anon_sym_try] = ACTIONS(3604), + [anon_sym_break] = ACTIONS(3604), + [anon_sym_continue] = ACTIONS(3604), + [anon_sym_debugger] = ACTIONS(3604), + [anon_sym_return] = ACTIONS(3604), + [anon_sym_throw] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_yield] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(3604), + [anon_sym_LTtemplate_GT] = ACTIONS(3604), + [anon_sym_DQUOTE] = ACTIONS(3604), + [anon_sym_SQUOTE] = ACTIONS(3604), + [anon_sym_class] = ACTIONS(3604), + [anon_sym_async] = ACTIONS(3604), + [anon_sym_function] = ACTIONS(3604), + [anon_sym_new] = ACTIONS(3604), + [anon_sym_using] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(3604), + [anon_sym_DASH] = ACTIONS(3604), + [anon_sym_SLASH] = ACTIONS(3604), + [anon_sym_LT] = ACTIONS(3604), + [anon_sym_TILDE] = ACTIONS(3604), + [anon_sym_void] = ACTIONS(3604), + [anon_sym_delete] = ACTIONS(3604), + [anon_sym_PLUS_PLUS] = ACTIONS(3604), + [anon_sym_DASH_DASH] = ACTIONS(3604), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3604), + [sym_number] = ACTIONS(3604), + [sym_private_property_identifier] = ACTIONS(3604), + [sym_this] = ACTIONS(3604), + [sym_super] = ACTIONS(3604), + [sym_true] = ACTIONS(3604), + [sym_false] = ACTIONS(3604), + [sym_null] = ACTIONS(3604), + [sym_undefined] = ACTIONS(3604), + [anon_sym_AT] = ACTIONS(3604), + [anon_sym_static] = ACTIONS(3604), + [anon_sym_readonly] = ACTIONS(3604), + [anon_sym_get] = ACTIONS(3604), + [anon_sym_set] = ACTIONS(3604), + [anon_sym_declare] = ACTIONS(3604), + [anon_sym_public] = ACTIONS(3604), + [anon_sym_private] = ACTIONS(3604), + [anon_sym_protected] = ACTIONS(3604), + [anon_sym_override] = ACTIONS(3604), + [anon_sym_module] = ACTIONS(3604), + [anon_sym_any] = ACTIONS(3604), + [anon_sym_number] = ACTIONS(3604), + [anon_sym_boolean] = ACTIONS(3604), + [anon_sym_string] = ACTIONS(3604), + [anon_sym_symbol] = ACTIONS(3604), + [anon_sym_object] = ACTIONS(3604), + [anon_sym_property] = ACTIONS(3604), + [anon_sym_signal] = ACTIONS(3604), + [anon_sym_on] = ACTIONS(3604), + [anon_sym_required] = ACTIONS(3604), + [anon_sym_component] = ACTIONS(3604), + [anon_sym_abstract] = ACTIONS(3604), + [anon_sym_interface] = ACTIONS(3604), + [anon_sym_enum] = ACTIONS(3604), [sym_html_comment] = ACTIONS(5), }, - [1581] = { - [sym_comment] = STATE(1581), - [sym_identifier] = ACTIONS(3514), - [anon_sym_export] = ACTIONS(3514), - [anon_sym_type] = ACTIONS(3514), - [anon_sym_namespace] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3514), - [anon_sym_RBRACE] = ACTIONS(3514), - [anon_sym_typeof] = ACTIONS(3514), - [anon_sym_import] = ACTIONS(3514), - [anon_sym_from] = ACTIONS(3514), - [anon_sym_with] = ACTIONS(3514), - [anon_sym_var] = ACTIONS(3514), - [anon_sym_let] = ACTIONS(3514), - [anon_sym_const] = ACTIONS(3514), - [anon_sym_BANG] = ACTIONS(3514), - [anon_sym_else] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(3514), - [anon_sym_switch] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3514), - [anon_sym_await] = ACTIONS(3514), - [anon_sym_of] = ACTIONS(3514), - [anon_sym_while] = ACTIONS(3514), - [anon_sym_do] = ACTIONS(3514), - [anon_sym_try] = ACTIONS(3514), - [anon_sym_break] = ACTIONS(3514), - [anon_sym_continue] = ACTIONS(3514), - [anon_sym_debugger] = ACTIONS(3514), - [anon_sym_return] = ACTIONS(3514), - [anon_sym_throw] = ACTIONS(3514), - [anon_sym_SEMI] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3514), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_LTtemplate_GT] = ACTIONS(3514), - [anon_sym_DQUOTE] = ACTIONS(3514), - [anon_sym_SQUOTE] = ACTIONS(3514), - [anon_sym_class] = ACTIONS(3514), - [anon_sym_async] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3514), - [anon_sym_new] = ACTIONS(3514), - [anon_sym_using] = ACTIONS(3514), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_SLASH] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(3514), - [anon_sym_void] = ACTIONS(3514), - [anon_sym_delete] = ACTIONS(3514), - [anon_sym_PLUS_PLUS] = ACTIONS(3514), - [anon_sym_DASH_DASH] = ACTIONS(3514), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3514), - [sym_number] = ACTIONS(3514), - [sym_private_property_identifier] = ACTIONS(3514), - [sym_this] = ACTIONS(3514), - [sym_super] = ACTIONS(3514), - [sym_true] = ACTIONS(3514), - [sym_false] = ACTIONS(3514), - [sym_null] = ACTIONS(3514), - [sym_undefined] = ACTIONS(3514), - [anon_sym_AT] = ACTIONS(3514), - [anon_sym_static] = ACTIONS(3514), - [anon_sym_readonly] = ACTIONS(3514), - [anon_sym_get] = ACTIONS(3514), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_declare] = ACTIONS(3514), - [anon_sym_public] = ACTIONS(3514), - [anon_sym_private] = ACTIONS(3514), - [anon_sym_protected] = ACTIONS(3514), - [anon_sym_override] = ACTIONS(3514), - [anon_sym_module] = ACTIONS(3514), - [anon_sym_any] = ACTIONS(3514), - [anon_sym_number] = ACTIONS(3514), - [anon_sym_boolean] = ACTIONS(3514), - [anon_sym_string] = ACTIONS(3514), - [anon_sym_symbol] = ACTIONS(3514), - [anon_sym_object] = ACTIONS(3514), - [anon_sym_property] = ACTIONS(3514), - [anon_sym_signal] = ACTIONS(3514), - [anon_sym_on] = ACTIONS(3514), - [anon_sym_required] = ACTIONS(3514), - [anon_sym_component] = ACTIONS(3514), - [anon_sym_abstract] = ACTIONS(3514), - [anon_sym_interface] = ACTIONS(3514), - [anon_sym_enum] = ACTIONS(3514), + [1559] = { + [sym_comment] = STATE(1559), + [sym_identifier] = ACTIONS(2366), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_typeof] = ACTIONS(2366), + [anon_sym_import] = ACTIONS(2366), + [anon_sym_from] = ACTIONS(2366), + [anon_sym_with] = ACTIONS(2366), + [anon_sym_var] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_switch] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_await] = ACTIONS(2366), + [anon_sym_of] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_debugger] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_throw] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_yield] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_LTtemplate_GT] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [anon_sym_SQUOTE] = ACTIONS(2366), + [anon_sym_class] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_function] = ACTIONS(2366), + [anon_sym_new] = ACTIONS(2366), + [anon_sym_using] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_TILDE] = ACTIONS(2366), + [anon_sym_void] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [sym_number] = ACTIONS(2366), + [sym_private_property_identifier] = ACTIONS(2366), + [sym_this] = ACTIONS(2366), + [sym_super] = ACTIONS(2366), + [sym_true] = ACTIONS(2366), + [sym_false] = ACTIONS(2366), + [sym_null] = ACTIONS(2366), + [sym_undefined] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_readonly] = ACTIONS(2366), + [anon_sym_get] = ACTIONS(2366), + [anon_sym_set] = ACTIONS(2366), + [anon_sym_declare] = ACTIONS(2366), + [anon_sym_public] = ACTIONS(2366), + [anon_sym_private] = ACTIONS(2366), + [anon_sym_protected] = ACTIONS(2366), + [anon_sym_override] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_any] = ACTIONS(2366), + [anon_sym_number] = ACTIONS(2366), + [anon_sym_boolean] = ACTIONS(2366), + [anon_sym_string] = ACTIONS(2366), + [anon_sym_symbol] = ACTIONS(2366), + [anon_sym_object] = ACTIONS(2366), + [anon_sym_property] = ACTIONS(2366), + [anon_sym_signal] = ACTIONS(2366), + [anon_sym_on] = ACTIONS(2366), + [anon_sym_required] = ACTIONS(2366), + [anon_sym_component] = ACTIONS(2366), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), [sym_html_comment] = ACTIONS(5), }, - [1582] = { - [sym_comment] = STATE(1582), - [sym_identifier] = ACTIONS(3586), - [anon_sym_export] = ACTIONS(3586), - [anon_sym_type] = ACTIONS(3586), - [anon_sym_namespace] = ACTIONS(3586), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_RBRACE] = ACTIONS(3586), - [anon_sym_typeof] = ACTIONS(3586), - [anon_sym_import] = ACTIONS(3586), - [anon_sym_from] = ACTIONS(3586), - [anon_sym_with] = ACTIONS(3586), - [anon_sym_var] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_const] = ACTIONS(3586), - [anon_sym_BANG] = ACTIONS(3586), - [anon_sym_else] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_switch] = ACTIONS(3586), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_await] = ACTIONS(3586), - [anon_sym_of] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_break] = ACTIONS(3586), - [anon_sym_continue] = ACTIONS(3586), - [anon_sym_debugger] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_throw] = ACTIONS(3586), - [anon_sym_SEMI] = ACTIONS(3586), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LTtemplate_GT] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_SQUOTE] = ACTIONS(3586), - [anon_sym_class] = ACTIONS(3586), - [anon_sym_async] = ACTIONS(3586), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_using] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_SLASH] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3586), - [anon_sym_void] = ACTIONS(3586), - [anon_sym_delete] = ACTIONS(3586), - [anon_sym_PLUS_PLUS] = ACTIONS(3586), - [anon_sym_DASH_DASH] = ACTIONS(3586), + [1560] = { + [sym_comment] = STATE(1560), + [sym_identifier] = ACTIONS(3602), + [anon_sym_export] = ACTIONS(3602), + [anon_sym_type] = ACTIONS(3602), + [anon_sym_namespace] = ACTIONS(3602), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_typeof] = ACTIONS(3602), + [anon_sym_import] = ACTIONS(3602), + [anon_sym_from] = ACTIONS(3602), + [anon_sym_with] = ACTIONS(3602), + [anon_sym_var] = ACTIONS(3602), + [anon_sym_let] = ACTIONS(3602), + [anon_sym_const] = ACTIONS(3602), + [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_if] = ACTIONS(3602), + [anon_sym_switch] = ACTIONS(3602), + [anon_sym_for] = ACTIONS(3602), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_await] = ACTIONS(3602), + [anon_sym_of] = ACTIONS(3602), + [anon_sym_while] = ACTIONS(3602), + [anon_sym_do] = ACTIONS(3602), + [anon_sym_try] = ACTIONS(3602), + [anon_sym_break] = ACTIONS(3602), + [anon_sym_continue] = ACTIONS(3602), + [anon_sym_debugger] = ACTIONS(3602), + [anon_sym_return] = ACTIONS(3602), + [anon_sym_throw] = ACTIONS(3602), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym_yield] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(3602), + [anon_sym_LTtemplate_GT] = ACTIONS(3602), + [anon_sym_DQUOTE] = ACTIONS(3602), + [anon_sym_SQUOTE] = ACTIONS(3602), + [anon_sym_class] = ACTIONS(3602), + [anon_sym_async] = ACTIONS(3602), + [anon_sym_function] = ACTIONS(3602), + [anon_sym_new] = ACTIONS(3602), + [anon_sym_using] = ACTIONS(3602), + [anon_sym_PLUS] = ACTIONS(3602), + [anon_sym_DASH] = ACTIONS(3602), + [anon_sym_SLASH] = ACTIONS(3602), + [anon_sym_LT] = ACTIONS(3602), + [anon_sym_TILDE] = ACTIONS(3602), + [anon_sym_void] = ACTIONS(3602), + [anon_sym_delete] = ACTIONS(3602), + [anon_sym_PLUS_PLUS] = ACTIONS(3602), + [anon_sym_DASH_DASH] = ACTIONS(3602), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3586), - [sym_number] = ACTIONS(3586), - [sym_private_property_identifier] = ACTIONS(3586), - [sym_this] = ACTIONS(3586), - [sym_super] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_null] = ACTIONS(3586), - [sym_undefined] = ACTIONS(3586), - [anon_sym_AT] = ACTIONS(3586), - [anon_sym_static] = ACTIONS(3586), - [anon_sym_readonly] = ACTIONS(3586), - [anon_sym_get] = ACTIONS(3586), - [anon_sym_set] = ACTIONS(3586), - [anon_sym_declare] = ACTIONS(3586), - [anon_sym_public] = ACTIONS(3586), - [anon_sym_private] = ACTIONS(3586), - [anon_sym_protected] = ACTIONS(3586), - [anon_sym_override] = ACTIONS(3586), - [anon_sym_module] = ACTIONS(3586), - [anon_sym_any] = ACTIONS(3586), - [anon_sym_number] = ACTIONS(3586), - [anon_sym_boolean] = ACTIONS(3586), - [anon_sym_string] = ACTIONS(3586), - [anon_sym_symbol] = ACTIONS(3586), - [anon_sym_object] = ACTIONS(3586), - [anon_sym_property] = ACTIONS(3586), - [anon_sym_signal] = ACTIONS(3586), - [anon_sym_on] = ACTIONS(3586), - [anon_sym_required] = ACTIONS(3586), - [anon_sym_component] = ACTIONS(3586), - [anon_sym_abstract] = ACTIONS(3586), - [anon_sym_interface] = ACTIONS(3586), - [anon_sym_enum] = ACTIONS(3586), + [anon_sym_BQUOTE] = ACTIONS(3602), + [sym_number] = ACTIONS(3602), + [sym_private_property_identifier] = ACTIONS(3602), + [sym_this] = ACTIONS(3602), + [sym_super] = ACTIONS(3602), + [sym_true] = ACTIONS(3602), + [sym_false] = ACTIONS(3602), + [sym_null] = ACTIONS(3602), + [sym_undefined] = ACTIONS(3602), + [anon_sym_AT] = ACTIONS(3602), + [anon_sym_static] = ACTIONS(3602), + [anon_sym_readonly] = ACTIONS(3602), + [anon_sym_get] = ACTIONS(3602), + [anon_sym_set] = ACTIONS(3602), + [anon_sym_declare] = ACTIONS(3602), + [anon_sym_public] = ACTIONS(3602), + [anon_sym_private] = ACTIONS(3602), + [anon_sym_protected] = ACTIONS(3602), + [anon_sym_override] = ACTIONS(3602), + [anon_sym_module] = ACTIONS(3602), + [anon_sym_any] = ACTIONS(3602), + [anon_sym_number] = ACTIONS(3602), + [anon_sym_boolean] = ACTIONS(3602), + [anon_sym_string] = ACTIONS(3602), + [anon_sym_symbol] = ACTIONS(3602), + [anon_sym_object] = ACTIONS(3602), + [anon_sym_property] = ACTIONS(3602), + [anon_sym_signal] = ACTIONS(3602), + [anon_sym_on] = ACTIONS(3602), + [anon_sym_required] = ACTIONS(3602), + [anon_sym_component] = ACTIONS(3602), + [anon_sym_abstract] = ACTIONS(3602), + [anon_sym_interface] = ACTIONS(3602), + [anon_sym_enum] = ACTIONS(3602), [sym_html_comment] = ACTIONS(5), }, - [1583] = { - [sym_comment] = STATE(1583), - [sym_identifier] = ACTIONS(3588), - [anon_sym_export] = ACTIONS(3588), - [anon_sym_type] = ACTIONS(3588), - [anon_sym_namespace] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3588), - [anon_sym_RBRACE] = ACTIONS(3588), - [anon_sym_typeof] = ACTIONS(3588), - [anon_sym_import] = ACTIONS(3588), - [anon_sym_from] = ACTIONS(3588), - [anon_sym_with] = ACTIONS(3588), - [anon_sym_var] = ACTIONS(3588), - [anon_sym_let] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3588), - [anon_sym_else] = ACTIONS(3588), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_switch] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3588), - [anon_sym_await] = ACTIONS(3588), - [anon_sym_of] = ACTIONS(3588), - [anon_sym_while] = ACTIONS(3588), - [anon_sym_do] = ACTIONS(3588), - [anon_sym_try] = ACTIONS(3588), - [anon_sym_break] = ACTIONS(3588), - [anon_sym_continue] = ACTIONS(3588), - [anon_sym_debugger] = ACTIONS(3588), - [anon_sym_return] = ACTIONS(3588), - [anon_sym_throw] = ACTIONS(3588), - [anon_sym_SEMI] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3588), - [anon_sym_LBRACK] = ACTIONS(3588), - [anon_sym_LTtemplate_GT] = ACTIONS(3588), - [anon_sym_DQUOTE] = ACTIONS(3588), - [anon_sym_SQUOTE] = ACTIONS(3588), - [anon_sym_class] = ACTIONS(3588), - [anon_sym_async] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3588), - [anon_sym_using] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_TILDE] = ACTIONS(3588), - [anon_sym_void] = ACTIONS(3588), - [anon_sym_delete] = ACTIONS(3588), - [anon_sym_PLUS_PLUS] = ACTIONS(3588), - [anon_sym_DASH_DASH] = ACTIONS(3588), + [1561] = { + [sym_comment] = STATE(1561), + [sym_identifier] = ACTIONS(3700), + [anon_sym_export] = ACTIONS(3700), + [anon_sym_type] = ACTIONS(3700), + [anon_sym_namespace] = ACTIONS(3700), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_typeof] = ACTIONS(3700), + [anon_sym_import] = ACTIONS(3700), + [anon_sym_from] = ACTIONS(3700), + [anon_sym_with] = ACTIONS(3700), + [anon_sym_var] = ACTIONS(3700), + [anon_sym_let] = ACTIONS(3700), + [anon_sym_const] = ACTIONS(3700), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_if] = ACTIONS(3700), + [anon_sym_switch] = ACTIONS(3700), + [anon_sym_for] = ACTIONS(3700), + [anon_sym_LPAREN] = ACTIONS(3700), + [anon_sym_await] = ACTIONS(3700), + [anon_sym_of] = ACTIONS(3700), + [anon_sym_while] = ACTIONS(3700), + [anon_sym_do] = ACTIONS(3700), + [anon_sym_try] = ACTIONS(3700), + [anon_sym_break] = ACTIONS(3700), + [anon_sym_continue] = ACTIONS(3700), + [anon_sym_debugger] = ACTIONS(3700), + [anon_sym_return] = ACTIONS(3700), + [anon_sym_throw] = ACTIONS(3700), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym_yield] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_LTtemplate_GT] = ACTIONS(3700), + [anon_sym_DQUOTE] = ACTIONS(3700), + [anon_sym_SQUOTE] = ACTIONS(3700), + [anon_sym_class] = ACTIONS(3700), + [anon_sym_async] = ACTIONS(3700), + [anon_sym_function] = ACTIONS(3700), + [anon_sym_new] = ACTIONS(3700), + [anon_sym_using] = ACTIONS(3700), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_SLASH] = ACTIONS(3700), + [anon_sym_LT] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_void] = ACTIONS(3700), + [anon_sym_delete] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_DASH_DASH] = ACTIONS(3700), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3588), - [sym_number] = ACTIONS(3588), - [sym_private_property_identifier] = ACTIONS(3588), - [sym_this] = ACTIONS(3588), - [sym_super] = ACTIONS(3588), - [sym_true] = ACTIONS(3588), - [sym_false] = ACTIONS(3588), - [sym_null] = ACTIONS(3588), - [sym_undefined] = ACTIONS(3588), - [anon_sym_AT] = ACTIONS(3588), - [anon_sym_static] = ACTIONS(3588), - [anon_sym_readonly] = ACTIONS(3588), - [anon_sym_get] = ACTIONS(3588), - [anon_sym_set] = ACTIONS(3588), - [anon_sym_declare] = ACTIONS(3588), - [anon_sym_public] = ACTIONS(3588), - [anon_sym_private] = ACTIONS(3588), - [anon_sym_protected] = ACTIONS(3588), - [anon_sym_override] = ACTIONS(3588), - [anon_sym_module] = ACTIONS(3588), - [anon_sym_any] = ACTIONS(3588), - [anon_sym_number] = ACTIONS(3588), - [anon_sym_boolean] = ACTIONS(3588), - [anon_sym_string] = ACTIONS(3588), - [anon_sym_symbol] = ACTIONS(3588), - [anon_sym_object] = ACTIONS(3588), - [anon_sym_property] = ACTIONS(3588), - [anon_sym_signal] = ACTIONS(3588), - [anon_sym_on] = ACTIONS(3588), - [anon_sym_required] = ACTIONS(3588), - [anon_sym_component] = ACTIONS(3588), - [anon_sym_abstract] = ACTIONS(3588), - [anon_sym_interface] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), + [anon_sym_BQUOTE] = ACTIONS(3700), + [sym_number] = ACTIONS(3700), + [sym_private_property_identifier] = ACTIONS(3700), + [sym_this] = ACTIONS(3700), + [sym_super] = ACTIONS(3700), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [sym_null] = ACTIONS(3700), + [sym_undefined] = ACTIONS(3700), + [anon_sym_AT] = ACTIONS(3700), + [anon_sym_static] = ACTIONS(3700), + [anon_sym_readonly] = ACTIONS(3700), + [anon_sym_get] = ACTIONS(3700), + [anon_sym_set] = ACTIONS(3700), + [anon_sym_declare] = ACTIONS(3700), + [anon_sym_public] = ACTIONS(3700), + [anon_sym_private] = ACTIONS(3700), + [anon_sym_protected] = ACTIONS(3700), + [anon_sym_override] = ACTIONS(3700), + [anon_sym_module] = ACTIONS(3700), + [anon_sym_any] = ACTIONS(3700), + [anon_sym_number] = ACTIONS(3700), + [anon_sym_boolean] = ACTIONS(3700), + [anon_sym_string] = ACTIONS(3700), + [anon_sym_symbol] = ACTIONS(3700), + [anon_sym_object] = ACTIONS(3700), + [anon_sym_property] = ACTIONS(3700), + [anon_sym_signal] = ACTIONS(3700), + [anon_sym_on] = ACTIONS(3700), + [anon_sym_required] = ACTIONS(3700), + [anon_sym_component] = ACTIONS(3700), + [anon_sym_abstract] = ACTIONS(3700), + [anon_sym_interface] = ACTIONS(3700), + [anon_sym_enum] = ACTIONS(3700), [sym_html_comment] = ACTIONS(5), }, - [1584] = { - [sym_comment] = STATE(1584), - [sym_identifier] = ACTIONS(3510), - [anon_sym_export] = ACTIONS(3510), - [anon_sym_type] = ACTIONS(3510), - [anon_sym_namespace] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3510), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_typeof] = ACTIONS(3510), - [anon_sym_import] = ACTIONS(3510), - [anon_sym_from] = ACTIONS(3510), - [anon_sym_with] = ACTIONS(3510), - [anon_sym_var] = ACTIONS(3510), - [anon_sym_let] = ACTIONS(3510), - [anon_sym_const] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3510), - [anon_sym_else] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(3510), - [anon_sym_switch] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym_await] = ACTIONS(3510), - [anon_sym_of] = ACTIONS(3510), - [anon_sym_while] = ACTIONS(3510), - [anon_sym_do] = ACTIONS(3510), - [anon_sym_try] = ACTIONS(3510), - [anon_sym_break] = ACTIONS(3510), - [anon_sym_continue] = ACTIONS(3510), - [anon_sym_debugger] = ACTIONS(3510), - [anon_sym_return] = ACTIONS(3510), - [anon_sym_throw] = ACTIONS(3510), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3510), - [anon_sym_LTtemplate_GT] = ACTIONS(3510), - [anon_sym_DQUOTE] = ACTIONS(3510), - [anon_sym_SQUOTE] = ACTIONS(3510), - [anon_sym_class] = ACTIONS(3510), - [anon_sym_async] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3510), - [anon_sym_new] = ACTIONS(3510), - [anon_sym_using] = ACTIONS(3510), - [anon_sym_PLUS] = ACTIONS(3510), - [anon_sym_DASH] = ACTIONS(3510), - [anon_sym_SLASH] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_void] = ACTIONS(3510), - [anon_sym_delete] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DASH_DASH] = ACTIONS(3510), + [1562] = { + [sym_comment] = STATE(1562), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3510), - [sym_number] = ACTIONS(3510), - [sym_private_property_identifier] = ACTIONS(3510), - [sym_this] = ACTIONS(3510), - [sym_super] = ACTIONS(3510), - [sym_true] = ACTIONS(3510), - [sym_false] = ACTIONS(3510), - [sym_null] = ACTIONS(3510), - [sym_undefined] = ACTIONS(3510), - [anon_sym_AT] = ACTIONS(3510), - [anon_sym_static] = ACTIONS(3510), - [anon_sym_readonly] = ACTIONS(3510), - [anon_sym_get] = ACTIONS(3510), - [anon_sym_set] = ACTIONS(3510), - [anon_sym_declare] = ACTIONS(3510), - [anon_sym_public] = ACTIONS(3510), - [anon_sym_private] = ACTIONS(3510), - [anon_sym_protected] = ACTIONS(3510), - [anon_sym_override] = ACTIONS(3510), - [anon_sym_module] = ACTIONS(3510), - [anon_sym_any] = ACTIONS(3510), - [anon_sym_number] = ACTIONS(3510), - [anon_sym_boolean] = ACTIONS(3510), - [anon_sym_string] = ACTIONS(3510), - [anon_sym_symbol] = ACTIONS(3510), - [anon_sym_object] = ACTIONS(3510), - [anon_sym_property] = ACTIONS(3510), - [anon_sym_signal] = ACTIONS(3510), - [anon_sym_on] = ACTIONS(3510), - [anon_sym_required] = ACTIONS(3510), - [anon_sym_component] = ACTIONS(3510), - [anon_sym_abstract] = ACTIONS(3510), - [anon_sym_interface] = ACTIONS(3510), - [anon_sym_enum] = ACTIONS(3510), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1585] = { - [sym_comment] = STATE(1585), - [sym_identifier] = ACTIONS(3636), - [anon_sym_export] = ACTIONS(3636), - [anon_sym_type] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_typeof] = ACTIONS(3636), - [anon_sym_import] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3636), - [anon_sym_with] = ACTIONS(3636), - [anon_sym_var] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_await] = ACTIONS(3636), - [anon_sym_of] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_break] = ACTIONS(3636), - [anon_sym_continue] = ACTIONS(3636), - [anon_sym_debugger] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_throw] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LTtemplate_GT] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_async] = ACTIONS(3636), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_void] = ACTIONS(3636), - [anon_sym_delete] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3636), + [1563] = { + [sym_comment] = STATE(1563), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_typeof] = ACTIONS(2434), + [anon_sym_import] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_with] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_const] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_if] = ACTIONS(2434), + [anon_sym_switch] = ACTIONS(2434), + [anon_sym_for] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_await] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_while] = ACTIONS(2434), + [anon_sym_do] = ACTIONS(2434), + [anon_sym_try] = ACTIONS(2434), + [anon_sym_break] = ACTIONS(2434), + [anon_sym_continue] = ACTIONS(2434), + [anon_sym_debugger] = ACTIONS(2434), + [anon_sym_return] = ACTIONS(2434), + [anon_sym_throw] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_yield] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LTtemplate_GT] = ACTIONS(2434), + [anon_sym_DQUOTE] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2434), + [anon_sym_class] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_using] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_TILDE] = ACTIONS(2434), + [anon_sym_void] = ACTIONS(2434), + [anon_sym_delete] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3636), - [sym_number] = ACTIONS(3636), - [sym_private_property_identifier] = ACTIONS(3636), - [sym_this] = ACTIONS(3636), - [sym_super] = ACTIONS(3636), - [sym_true] = ACTIONS(3636), - [sym_false] = ACTIONS(3636), - [sym_null] = ACTIONS(3636), - [sym_undefined] = ACTIONS(3636), - [anon_sym_AT] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_readonly] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(3636), - [anon_sym_set] = ACTIONS(3636), - [anon_sym_declare] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_protected] = ACTIONS(3636), - [anon_sym_override] = ACTIONS(3636), - [anon_sym_module] = ACTIONS(3636), - [anon_sym_any] = ACTIONS(3636), - [anon_sym_number] = ACTIONS(3636), - [anon_sym_boolean] = ACTIONS(3636), - [anon_sym_string] = ACTIONS(3636), - [anon_sym_symbol] = ACTIONS(3636), - [anon_sym_object] = ACTIONS(3636), - [anon_sym_property] = ACTIONS(3636), - [anon_sym_signal] = ACTIONS(3636), - [anon_sym_on] = ACTIONS(3636), - [anon_sym_required] = ACTIONS(3636), - [anon_sym_component] = ACTIONS(3636), - [anon_sym_abstract] = ACTIONS(3636), - [anon_sym_interface] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), + [anon_sym_BQUOTE] = ACTIONS(2434), + [sym_number] = ACTIONS(2434), + [sym_private_property_identifier] = ACTIONS(2434), + [sym_this] = ACTIONS(2434), + [sym_super] = ACTIONS(2434), + [sym_true] = ACTIONS(2434), + [sym_false] = ACTIONS(2434), + [sym_null] = ACTIONS(2434), + [sym_undefined] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_abstract] = ACTIONS(2434), + [anon_sym_interface] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), [sym_html_comment] = ACTIONS(5), }, - [1586] = { - [sym_comment] = STATE(1586), - [sym_identifier] = ACTIONS(3518), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_type] = ACTIONS(3518), - [anon_sym_namespace] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_typeof] = ACTIONS(3518), - [anon_sym_import] = ACTIONS(3518), - [anon_sym_from] = ACTIONS(3518), - [anon_sym_with] = ACTIONS(3518), - [anon_sym_var] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_BANG] = ACTIONS(3518), - [anon_sym_else] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_switch] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_await] = ACTIONS(3518), - [anon_sym_of] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_debugger] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_throw] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LTtemplate_GT] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [anon_sym_SQUOTE] = ACTIONS(3518), - [anon_sym_class] = ACTIONS(3518), - [anon_sym_async] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3518), - [anon_sym_using] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_TILDE] = ACTIONS(3518), - [anon_sym_void] = ACTIONS(3518), - [anon_sym_delete] = ACTIONS(3518), - [anon_sym_PLUS_PLUS] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3518), - [sym_number] = ACTIONS(3518), - [sym_private_property_identifier] = ACTIONS(3518), - [sym_this] = ACTIONS(3518), - [sym_super] = ACTIONS(3518), - [sym_true] = ACTIONS(3518), - [sym_false] = ACTIONS(3518), - [sym_null] = ACTIONS(3518), - [sym_undefined] = ACTIONS(3518), - [anon_sym_AT] = ACTIONS(3518), - [anon_sym_static] = ACTIONS(3518), - [anon_sym_readonly] = ACTIONS(3518), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3518), - [anon_sym_declare] = ACTIONS(3518), - [anon_sym_public] = ACTIONS(3518), - [anon_sym_private] = ACTIONS(3518), - [anon_sym_protected] = ACTIONS(3518), - [anon_sym_override] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_any] = ACTIONS(3518), - [anon_sym_number] = ACTIONS(3518), - [anon_sym_boolean] = ACTIONS(3518), - [anon_sym_string] = ACTIONS(3518), - [anon_sym_symbol] = ACTIONS(3518), - [anon_sym_object] = ACTIONS(3518), - [anon_sym_property] = ACTIONS(3518), - [anon_sym_signal] = ACTIONS(3518), - [anon_sym_on] = ACTIONS(3518), - [anon_sym_required] = ACTIONS(3518), - [anon_sym_component] = ACTIONS(3518), - [anon_sym_abstract] = ACTIONS(3518), - [anon_sym_interface] = ACTIONS(3518), - [anon_sym_enum] = ACTIONS(3518), + [1564] = { + [sym_comment] = STATE(1564), + [sym_identifier] = ACTIONS(3562), + [anon_sym_export] = ACTIONS(3562), + [anon_sym_type] = ACTIONS(3562), + [anon_sym_namespace] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_RBRACE] = ACTIONS(3562), + [anon_sym_typeof] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_from] = ACTIONS(3562), + [anon_sym_with] = ACTIONS(3562), + [anon_sym_var] = ACTIONS(3562), + [anon_sym_let] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_BANG] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3562), + [anon_sym_await] = ACTIONS(3562), + [anon_sym_of] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_debugger] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3562), + [anon_sym_yield] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_LTtemplate_GT] = ACTIONS(3562), + [anon_sym_DQUOTE] = ACTIONS(3562), + [anon_sym_SQUOTE] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_async] = ACTIONS(3562), + [anon_sym_function] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_using] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_SLASH] = ACTIONS(3562), + [anon_sym_LT] = ACTIONS(3562), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_void] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3562), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3562), + [sym_number] = ACTIONS(3562), + [sym_private_property_identifier] = ACTIONS(3562), + [sym_this] = ACTIONS(3562), + [sym_super] = ACTIONS(3562), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [sym_null] = ACTIONS(3562), + [sym_undefined] = ACTIONS(3562), + [anon_sym_AT] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_readonly] = ACTIONS(3562), + [anon_sym_get] = ACTIONS(3562), + [anon_sym_set] = ACTIONS(3562), + [anon_sym_declare] = ACTIONS(3562), + [anon_sym_public] = ACTIONS(3562), + [anon_sym_private] = ACTIONS(3562), + [anon_sym_protected] = ACTIONS(3562), + [anon_sym_override] = ACTIONS(3562), + [anon_sym_module] = ACTIONS(3562), + [anon_sym_any] = ACTIONS(3562), + [anon_sym_number] = ACTIONS(3562), + [anon_sym_boolean] = ACTIONS(3562), + [anon_sym_string] = ACTIONS(3562), + [anon_sym_symbol] = ACTIONS(3562), + [anon_sym_object] = ACTIONS(3562), + [anon_sym_property] = ACTIONS(3562), + [anon_sym_signal] = ACTIONS(3562), + [anon_sym_on] = ACTIONS(3562), + [anon_sym_required] = ACTIONS(3562), + [anon_sym_component] = ACTIONS(3562), + [anon_sym_abstract] = ACTIONS(3562), + [anon_sym_interface] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), [sym_html_comment] = ACTIONS(5), }, - [1587] = { - [sym_comment] = STATE(1587), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2466), - [sym_number] = ACTIONS(2466), - [sym_private_property_identifier] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [sym_html_comment] = ACTIONS(5), - }, - [1588] = { - [sym_comment] = STATE(1588), - [sym_identifier] = ACTIONS(3590), - [anon_sym_export] = ACTIONS(3590), - [anon_sym_type] = ACTIONS(3590), - [anon_sym_namespace] = ACTIONS(3590), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_RBRACE] = ACTIONS(3590), - [anon_sym_typeof] = ACTIONS(3590), - [anon_sym_import] = ACTIONS(3590), - [anon_sym_from] = ACTIONS(3590), - [anon_sym_with] = ACTIONS(3590), - [anon_sym_var] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_const] = ACTIONS(3590), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_else] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_switch] = ACTIONS(3590), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_await] = ACTIONS(3590), - [anon_sym_of] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_break] = ACTIONS(3590), - [anon_sym_continue] = ACTIONS(3590), - [anon_sym_debugger] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_throw] = ACTIONS(3590), - [anon_sym_SEMI] = ACTIONS(3590), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LTtemplate_GT] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_SQUOTE] = ACTIONS(3590), - [anon_sym_class] = ACTIONS(3590), - [anon_sym_async] = ACTIONS(3590), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_using] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_SLASH] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_void] = ACTIONS(3590), - [anon_sym_delete] = ACTIONS(3590), - [anon_sym_PLUS_PLUS] = ACTIONS(3590), - [anon_sym_DASH_DASH] = ACTIONS(3590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3590), - [sym_number] = ACTIONS(3590), - [sym_private_property_identifier] = ACTIONS(3590), - [sym_this] = ACTIONS(3590), - [sym_super] = ACTIONS(3590), - [sym_true] = ACTIONS(3590), - [sym_false] = ACTIONS(3590), - [sym_null] = ACTIONS(3590), - [sym_undefined] = ACTIONS(3590), - [anon_sym_AT] = ACTIONS(3590), - [anon_sym_static] = ACTIONS(3590), - [anon_sym_readonly] = ACTIONS(3590), - [anon_sym_get] = ACTIONS(3590), - [anon_sym_set] = ACTIONS(3590), - [anon_sym_declare] = ACTIONS(3590), - [anon_sym_public] = ACTIONS(3590), - [anon_sym_private] = ACTIONS(3590), - [anon_sym_protected] = ACTIONS(3590), - [anon_sym_override] = ACTIONS(3590), - [anon_sym_module] = ACTIONS(3590), - [anon_sym_any] = ACTIONS(3590), - [anon_sym_number] = ACTIONS(3590), - [anon_sym_boolean] = ACTIONS(3590), - [anon_sym_string] = ACTIONS(3590), - [anon_sym_symbol] = ACTIONS(3590), - [anon_sym_object] = ACTIONS(3590), - [anon_sym_property] = ACTIONS(3590), - [anon_sym_signal] = ACTIONS(3590), - [anon_sym_on] = ACTIONS(3590), - [anon_sym_required] = ACTIONS(3590), - [anon_sym_component] = ACTIONS(3590), - [anon_sym_abstract] = ACTIONS(3590), - [anon_sym_interface] = ACTIONS(3590), - [anon_sym_enum] = ACTIONS(3590), - [sym_html_comment] = ACTIONS(5), - }, - [1589] = { - [sym_comment] = STATE(1589), + [1565] = { + [sym_comment] = STATE(1565), [sym_identifier] = ACTIONS(3638), [anon_sym_export] = ACTIONS(3638), [anon_sym_type] = ACTIONS(3638), @@ -210234,7 +207658,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3638), [anon_sym_const] = ACTIONS(3638), [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_else] = ACTIONS(3638), [anon_sym_if] = ACTIONS(3638), [anon_sym_switch] = ACTIONS(3638), [anon_sym_for] = ACTIONS(3638), @@ -210306,360 +207729,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3638), [sym_html_comment] = ACTIONS(5), }, - [1590] = { - [sym_comment] = STATE(1590), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3734), - [sym_html_comment] = ACTIONS(5), - }, - [1591] = { - [sym_comment] = STATE(1591), - [sym_identifier] = ACTIONS(3522), - [anon_sym_export] = ACTIONS(3522), - [anon_sym_type] = ACTIONS(3522), - [anon_sym_namespace] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_RBRACE] = ACTIONS(3522), - [anon_sym_typeof] = ACTIONS(3522), - [anon_sym_import] = ACTIONS(3522), - [anon_sym_from] = ACTIONS(3522), - [anon_sym_with] = ACTIONS(3522), - [anon_sym_var] = ACTIONS(3522), - [anon_sym_let] = ACTIONS(3522), - [anon_sym_const] = ACTIONS(3522), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_else] = ACTIONS(3522), - [anon_sym_if] = ACTIONS(3522), - [anon_sym_switch] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3522), - [anon_sym_await] = ACTIONS(3522), - [anon_sym_of] = ACTIONS(3522), - [anon_sym_while] = ACTIONS(3522), - [anon_sym_do] = ACTIONS(3522), - [anon_sym_try] = ACTIONS(3522), - [anon_sym_break] = ACTIONS(3522), - [anon_sym_continue] = ACTIONS(3522), - [anon_sym_debugger] = ACTIONS(3522), - [anon_sym_return] = ACTIONS(3522), - [anon_sym_throw] = ACTIONS(3522), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3522), - [anon_sym_LBRACK] = ACTIONS(3522), - [anon_sym_LTtemplate_GT] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [anon_sym_SQUOTE] = ACTIONS(3522), - [anon_sym_class] = ACTIONS(3522), - [anon_sym_async] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3522), - [anon_sym_using] = ACTIONS(3522), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_SLASH] = ACTIONS(3522), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_void] = ACTIONS(3522), - [anon_sym_delete] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3522), + [1566] = { + [sym_comment] = STATE(1566), + [sym_identifier] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_type] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3494), + [anon_sym_RBRACE] = ACTIONS(3494), + [anon_sym_typeof] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_from] = ACTIONS(3494), + [anon_sym_with] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3494), + [anon_sym_await] = ACTIONS(3494), + [anon_sym_of] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_debugger] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LTtemplate_GT] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(3494), + [anon_sym_SQUOTE] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_function] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_SLASH] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3494), + [anon_sym_TILDE] = ACTIONS(3494), + [anon_sym_void] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3522), - [sym_number] = ACTIONS(3522), - [sym_private_property_identifier] = ACTIONS(3522), - [sym_this] = ACTIONS(3522), - [sym_super] = ACTIONS(3522), - [sym_true] = ACTIONS(3522), - [sym_false] = ACTIONS(3522), - [sym_null] = ACTIONS(3522), - [sym_undefined] = ACTIONS(3522), - [anon_sym_AT] = ACTIONS(3522), - [anon_sym_static] = ACTIONS(3522), - [anon_sym_readonly] = ACTIONS(3522), - [anon_sym_get] = ACTIONS(3522), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_declare] = ACTIONS(3522), - [anon_sym_public] = ACTIONS(3522), - [anon_sym_private] = ACTIONS(3522), - [anon_sym_protected] = ACTIONS(3522), - [anon_sym_override] = ACTIONS(3522), - [anon_sym_module] = ACTIONS(3522), - [anon_sym_any] = ACTIONS(3522), - [anon_sym_number] = ACTIONS(3522), - [anon_sym_boolean] = ACTIONS(3522), - [anon_sym_string] = ACTIONS(3522), - [anon_sym_symbol] = ACTIONS(3522), - [anon_sym_object] = ACTIONS(3522), - [anon_sym_property] = ACTIONS(3522), - [anon_sym_signal] = ACTIONS(3522), - [anon_sym_on] = ACTIONS(3522), - [anon_sym_required] = ACTIONS(3522), - [anon_sym_component] = ACTIONS(3522), - [anon_sym_abstract] = ACTIONS(3522), - [anon_sym_interface] = ACTIONS(3522), - [anon_sym_enum] = ACTIONS(3522), + [anon_sym_BQUOTE] = ACTIONS(3494), + [sym_number] = ACTIONS(3494), + [sym_private_property_identifier] = ACTIONS(3494), + [sym_this] = ACTIONS(3494), + [sym_super] = ACTIONS(3494), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [sym_null] = ACTIONS(3494), + [sym_undefined] = ACTIONS(3494), + [anon_sym_AT] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3494), + [anon_sym_set] = ACTIONS(3494), + [anon_sym_declare] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_override] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_any] = ACTIONS(3494), + [anon_sym_number] = ACTIONS(3494), + [anon_sym_boolean] = ACTIONS(3494), + [anon_sym_string] = ACTIONS(3494), + [anon_sym_symbol] = ACTIONS(3494), + [anon_sym_object] = ACTIONS(3494), + [anon_sym_property] = ACTIONS(3494), + [anon_sym_signal] = ACTIONS(3494), + [anon_sym_on] = ACTIONS(3494), + [anon_sym_required] = ACTIONS(3494), + [anon_sym_component] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), [sym_html_comment] = ACTIONS(5), }, - [1592] = { - [sym_comment] = STATE(1592), - [sym_identifier] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_type] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_RBRACE] = ACTIONS(3618), - [anon_sym_typeof] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_from] = ACTIONS(3618), - [anon_sym_with] = ACTIONS(3618), - [anon_sym_var] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_await] = ACTIONS(3618), - [anon_sym_of] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_debugger] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LTtemplate_GT] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_async] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_void] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), + [1567] = { + [sym_comment] = STATE(1567), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3618), - [sym_number] = ACTIONS(3618), - [sym_private_property_identifier] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [sym_super] = ACTIONS(3618), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [sym_undefined] = ACTIONS(3618), - [anon_sym_AT] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_readonly] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3618), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_declare] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_override] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_any] = ACTIONS(3618), - [anon_sym_number] = ACTIONS(3618), - [anon_sym_boolean] = ACTIONS(3618), - [anon_sym_string] = ACTIONS(3618), - [anon_sym_symbol] = ACTIONS(3618), - [anon_sym_object] = ACTIONS(3618), - [anon_sym_property] = ACTIONS(3618), - [anon_sym_signal] = ACTIONS(3618), - [anon_sym_on] = ACTIONS(3618), - [anon_sym_required] = ACTIONS(3618), - [anon_sym_component] = ACTIONS(3618), - [anon_sym_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), [sym_html_comment] = ACTIONS(5), }, - [1593] = { - [sym_comment] = STATE(1593), - [sym_identifier] = ACTIONS(3614), - [anon_sym_export] = ACTIONS(3614), - [anon_sym_type] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_RBRACE] = ACTIONS(3614), - [anon_sym_typeof] = ACTIONS(3614), - [anon_sym_import] = ACTIONS(3614), - [anon_sym_from] = ACTIONS(3614), - [anon_sym_with] = ACTIONS(3614), - [anon_sym_var] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_else] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_await] = ACTIONS(3614), - [anon_sym_of] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_debugger] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LTtemplate_GT] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_SQUOTE] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_async] = ACTIONS(3614), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_SLASH] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_void] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3614), - [sym_number] = ACTIONS(3614), - [sym_private_property_identifier] = ACTIONS(3614), - [sym_this] = ACTIONS(3614), - [sym_super] = ACTIONS(3614), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [sym_null] = ACTIONS(3614), - [sym_undefined] = ACTIONS(3614), - [anon_sym_AT] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_readonly] = ACTIONS(3614), - [anon_sym_get] = ACTIONS(3614), - [anon_sym_set] = ACTIONS(3614), - [anon_sym_declare] = ACTIONS(3614), - [anon_sym_public] = ACTIONS(3614), - [anon_sym_private] = ACTIONS(3614), - [anon_sym_protected] = ACTIONS(3614), - [anon_sym_override] = ACTIONS(3614), - [anon_sym_module] = ACTIONS(3614), - [anon_sym_any] = ACTIONS(3614), - [anon_sym_number] = ACTIONS(3614), - [anon_sym_boolean] = ACTIONS(3614), - [anon_sym_string] = ACTIONS(3614), - [anon_sym_symbol] = ACTIONS(3614), - [anon_sym_object] = ACTIONS(3614), - [anon_sym_property] = ACTIONS(3614), - [anon_sym_signal] = ACTIONS(3614), - [anon_sym_on] = ACTIONS(3614), - [anon_sym_required] = ACTIONS(3614), - [anon_sym_component] = ACTIONS(3614), - [anon_sym_abstract] = ACTIONS(3614), - [anon_sym_interface] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), + [1568] = { + [sym_comment] = STATE(1568), + [sym_identifier] = ACTIONS(3556), + [anon_sym_export] = ACTIONS(3556), + [anon_sym_type] = ACTIONS(3556), + [anon_sym_namespace] = ACTIONS(3556), + [anon_sym_LBRACE] = ACTIONS(3556), + [anon_sym_RBRACE] = ACTIONS(3556), + [anon_sym_typeof] = ACTIONS(3556), + [anon_sym_import] = ACTIONS(3556), + [anon_sym_from] = ACTIONS(3556), + [anon_sym_with] = ACTIONS(3556), + [anon_sym_var] = ACTIONS(3556), + [anon_sym_let] = ACTIONS(3556), + [anon_sym_const] = ACTIONS(3556), + [anon_sym_BANG] = ACTIONS(3556), + [anon_sym_if] = ACTIONS(3556), + [anon_sym_switch] = ACTIONS(3556), + [anon_sym_for] = ACTIONS(3556), + [anon_sym_LPAREN] = ACTIONS(3556), + [anon_sym_await] = ACTIONS(3556), + [anon_sym_of] = ACTIONS(3556), + [anon_sym_while] = ACTIONS(3556), + [anon_sym_do] = ACTIONS(3556), + [anon_sym_try] = ACTIONS(3556), + [anon_sym_break] = ACTIONS(3556), + [anon_sym_continue] = ACTIONS(3556), + [anon_sym_debugger] = ACTIONS(3556), + [anon_sym_return] = ACTIONS(3556), + [anon_sym_throw] = ACTIONS(3556), + [anon_sym_SEMI] = ACTIONS(3556), + [anon_sym_yield] = ACTIONS(3556), + [anon_sym_LBRACK] = ACTIONS(3556), + [anon_sym_LTtemplate_GT] = ACTIONS(3556), + [anon_sym_DQUOTE] = ACTIONS(3556), + [anon_sym_SQUOTE] = ACTIONS(3556), + [anon_sym_class] = ACTIONS(3556), + [anon_sym_async] = ACTIONS(3556), + [anon_sym_function] = ACTIONS(3556), + [anon_sym_new] = ACTIONS(3556), + [anon_sym_using] = ACTIONS(3556), + [anon_sym_PLUS] = ACTIONS(3556), + [anon_sym_DASH] = ACTIONS(3556), + [anon_sym_SLASH] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(3556), + [anon_sym_TILDE] = ACTIONS(3556), + [anon_sym_void] = ACTIONS(3556), + [anon_sym_delete] = ACTIONS(3556), + [anon_sym_PLUS_PLUS] = ACTIONS(3556), + [anon_sym_DASH_DASH] = ACTIONS(3556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3556), + [sym_number] = ACTIONS(3556), + [sym_private_property_identifier] = ACTIONS(3556), + [sym_this] = ACTIONS(3556), + [sym_super] = ACTIONS(3556), + [sym_true] = ACTIONS(3556), + [sym_false] = ACTIONS(3556), + [sym_null] = ACTIONS(3556), + [sym_undefined] = ACTIONS(3556), + [anon_sym_AT] = ACTIONS(3556), + [anon_sym_static] = ACTIONS(3556), + [anon_sym_readonly] = ACTIONS(3556), + [anon_sym_get] = ACTIONS(3556), + [anon_sym_set] = ACTIONS(3556), + [anon_sym_declare] = ACTIONS(3556), + [anon_sym_public] = ACTIONS(3556), + [anon_sym_private] = ACTIONS(3556), + [anon_sym_protected] = ACTIONS(3556), + [anon_sym_override] = ACTIONS(3556), + [anon_sym_module] = ACTIONS(3556), + [anon_sym_any] = ACTIONS(3556), + [anon_sym_number] = ACTIONS(3556), + [anon_sym_boolean] = ACTIONS(3556), + [anon_sym_string] = ACTIONS(3556), + [anon_sym_symbol] = ACTIONS(3556), + [anon_sym_object] = ACTIONS(3556), + [anon_sym_property] = ACTIONS(3556), + [anon_sym_signal] = ACTIONS(3556), + [anon_sym_on] = ACTIONS(3556), + [anon_sym_required] = ACTIONS(3556), + [anon_sym_component] = ACTIONS(3556), + [anon_sym_abstract] = ACTIONS(3556), + [anon_sym_interface] = ACTIONS(3556), + [anon_sym_enum] = ACTIONS(3556), [sym_html_comment] = ACTIONS(5), }, - [1594] = { - [sym_comment] = STATE(1594), + [1569] = { + [sym_comment] = STATE(1569), [sym_identifier] = ACTIONS(3662), [anon_sym_export] = ACTIONS(3662), [anon_sym_type] = ACTIONS(3662), @@ -210674,7 +208006,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3662), [anon_sym_const] = ACTIONS(3662), [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), [anon_sym_if] = ACTIONS(3662), [anon_sym_switch] = ACTIONS(3662), [anon_sym_for] = ACTIONS(3662), @@ -210746,448 +208077,530 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3662), [sym_html_comment] = ACTIONS(5), }, - [1595] = { - [sym_comment] = STATE(1595), - [sym_identifier] = ACTIONS(3594), - [anon_sym_export] = ACTIONS(3594), - [anon_sym_type] = ACTIONS(3594), - [anon_sym_namespace] = ACTIONS(3594), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_RBRACE] = ACTIONS(3594), - [anon_sym_typeof] = ACTIONS(3594), - [anon_sym_import] = ACTIONS(3594), - [anon_sym_from] = ACTIONS(3594), - [anon_sym_with] = ACTIONS(3594), - [anon_sym_var] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_const] = ACTIONS(3594), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_else] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_switch] = ACTIONS(3594), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_await] = ACTIONS(3594), - [anon_sym_of] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_break] = ACTIONS(3594), - [anon_sym_continue] = ACTIONS(3594), - [anon_sym_debugger] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_throw] = ACTIONS(3594), - [anon_sym_SEMI] = ACTIONS(3594), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LTtemplate_GT] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_SQUOTE] = ACTIONS(3594), - [anon_sym_class] = ACTIONS(3594), - [anon_sym_async] = ACTIONS(3594), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_using] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_SLASH] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3594), - [anon_sym_void] = ACTIONS(3594), - [anon_sym_delete] = ACTIONS(3594), - [anon_sym_PLUS_PLUS] = ACTIONS(3594), - [anon_sym_DASH_DASH] = ACTIONS(3594), + [1570] = { + [sym_comment] = STATE(1570), + [sym_identifier] = ACTIONS(3680), + [anon_sym_export] = ACTIONS(3680), + [anon_sym_type] = ACTIONS(3680), + [anon_sym_namespace] = ACTIONS(3680), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_typeof] = ACTIONS(3680), + [anon_sym_import] = ACTIONS(3680), + [anon_sym_from] = ACTIONS(3680), + [anon_sym_with] = ACTIONS(3680), + [anon_sym_var] = ACTIONS(3680), + [anon_sym_let] = ACTIONS(3680), + [anon_sym_const] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_if] = ACTIONS(3680), + [anon_sym_switch] = ACTIONS(3680), + [anon_sym_for] = ACTIONS(3680), + [anon_sym_LPAREN] = ACTIONS(3680), + [anon_sym_await] = ACTIONS(3680), + [anon_sym_of] = ACTIONS(3680), + [anon_sym_while] = ACTIONS(3680), + [anon_sym_do] = ACTIONS(3680), + [anon_sym_try] = ACTIONS(3680), + [anon_sym_break] = ACTIONS(3680), + [anon_sym_continue] = ACTIONS(3680), + [anon_sym_debugger] = ACTIONS(3680), + [anon_sym_return] = ACTIONS(3680), + [anon_sym_throw] = ACTIONS(3680), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym_yield] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LTtemplate_GT] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_class] = ACTIONS(3680), + [anon_sym_async] = ACTIONS(3680), + [anon_sym_function] = ACTIONS(3680), + [anon_sym_new] = ACTIONS(3680), + [anon_sym_using] = ACTIONS(3680), + [anon_sym_PLUS] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3680), + [anon_sym_SLASH] = ACTIONS(3680), + [anon_sym_LT] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_void] = ACTIONS(3680), + [anon_sym_delete] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_DASH_DASH] = ACTIONS(3680), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3594), - [sym_number] = ACTIONS(3594), - [sym_private_property_identifier] = ACTIONS(3594), - [sym_this] = ACTIONS(3594), - [sym_super] = ACTIONS(3594), - [sym_true] = ACTIONS(3594), - [sym_false] = ACTIONS(3594), - [sym_null] = ACTIONS(3594), - [sym_undefined] = ACTIONS(3594), - [anon_sym_AT] = ACTIONS(3594), - [anon_sym_static] = ACTIONS(3594), - [anon_sym_readonly] = ACTIONS(3594), - [anon_sym_get] = ACTIONS(3594), - [anon_sym_set] = ACTIONS(3594), - [anon_sym_declare] = ACTIONS(3594), - [anon_sym_public] = ACTIONS(3594), - [anon_sym_private] = ACTIONS(3594), - [anon_sym_protected] = ACTIONS(3594), - [anon_sym_override] = ACTIONS(3594), - [anon_sym_module] = ACTIONS(3594), - [anon_sym_any] = ACTIONS(3594), - [anon_sym_number] = ACTIONS(3594), - [anon_sym_boolean] = ACTIONS(3594), - [anon_sym_string] = ACTIONS(3594), - [anon_sym_symbol] = ACTIONS(3594), - [anon_sym_object] = ACTIONS(3594), - [anon_sym_property] = ACTIONS(3594), - [anon_sym_signal] = ACTIONS(3594), - [anon_sym_on] = ACTIONS(3594), - [anon_sym_required] = ACTIONS(3594), - [anon_sym_component] = ACTIONS(3594), - [anon_sym_abstract] = ACTIONS(3594), - [anon_sym_interface] = ACTIONS(3594), - [anon_sym_enum] = ACTIONS(3594), + [anon_sym_BQUOTE] = ACTIONS(3680), + [sym_number] = ACTIONS(3680), + [sym_private_property_identifier] = ACTIONS(3680), + [sym_this] = ACTIONS(3680), + [sym_super] = ACTIONS(3680), + [sym_true] = ACTIONS(3680), + [sym_false] = ACTIONS(3680), + [sym_null] = ACTIONS(3680), + [sym_undefined] = ACTIONS(3680), + [anon_sym_AT] = ACTIONS(3680), + [anon_sym_static] = ACTIONS(3680), + [anon_sym_readonly] = ACTIONS(3680), + [anon_sym_get] = ACTIONS(3680), + [anon_sym_set] = ACTIONS(3680), + [anon_sym_declare] = ACTIONS(3680), + [anon_sym_public] = ACTIONS(3680), + [anon_sym_private] = ACTIONS(3680), + [anon_sym_protected] = ACTIONS(3680), + [anon_sym_override] = ACTIONS(3680), + [anon_sym_module] = ACTIONS(3680), + [anon_sym_any] = ACTIONS(3680), + [anon_sym_number] = ACTIONS(3680), + [anon_sym_boolean] = ACTIONS(3680), + [anon_sym_string] = ACTIONS(3680), + [anon_sym_symbol] = ACTIONS(3680), + [anon_sym_object] = ACTIONS(3680), + [anon_sym_property] = ACTIONS(3680), + [anon_sym_signal] = ACTIONS(3680), + [anon_sym_on] = ACTIONS(3680), + [anon_sym_required] = ACTIONS(3680), + [anon_sym_component] = ACTIONS(3680), + [anon_sym_abstract] = ACTIONS(3680), + [anon_sym_interface] = ACTIONS(3680), + [anon_sym_enum] = ACTIONS(3680), [sym_html_comment] = ACTIONS(5), }, - [1596] = { - [sym_comment] = STATE(1596), - [sym_identifier] = ACTIONS(3600), - [anon_sym_export] = ACTIONS(3600), - [anon_sym_type] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3600), - [anon_sym_RBRACE] = ACTIONS(3600), - [anon_sym_typeof] = ACTIONS(3600), - [anon_sym_import] = ACTIONS(3600), - [anon_sym_from] = ACTIONS(3600), - [anon_sym_with] = ACTIONS(3600), - [anon_sym_var] = ACTIONS(3600), - [anon_sym_let] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_LPAREN] = ACTIONS(3600), - [anon_sym_await] = ACTIONS(3600), - [anon_sym_of] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_debugger] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3600), - [anon_sym_yield] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_LTtemplate_GT] = ACTIONS(3600), - [anon_sym_DQUOTE] = ACTIONS(3600), - [anon_sym_SQUOTE] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_async] = ACTIONS(3600), - [anon_sym_function] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_SLASH] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(3600), - [anon_sym_TILDE] = ACTIONS(3600), - [anon_sym_void] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_PLUS_PLUS] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3600), + [1571] = { + [sym_comment] = STATE(1571), + [sym_identifier] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_type] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_typeof] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_from] = ACTIONS(3664), + [anon_sym_with] = ACTIONS(3664), + [anon_sym_var] = ACTIONS(3664), + [anon_sym_let] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_BANG] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_LPAREN] = ACTIONS(3664), + [anon_sym_await] = ACTIONS(3664), + [anon_sym_of] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_debugger] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3664), + [anon_sym_yield] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_LTtemplate_GT] = ACTIONS(3664), + [anon_sym_DQUOTE] = ACTIONS(3664), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_async] = ACTIONS(3664), + [anon_sym_function] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_SLASH] = ACTIONS(3664), + [anon_sym_LT] = ACTIONS(3664), + [anon_sym_TILDE] = ACTIONS(3664), + [anon_sym_void] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_PLUS_PLUS] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3664), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3600), - [sym_number] = ACTIONS(3600), - [sym_private_property_identifier] = ACTIONS(3600), - [sym_this] = ACTIONS(3600), - [sym_super] = ACTIONS(3600), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [sym_null] = ACTIONS(3600), - [sym_undefined] = ACTIONS(3600), - [anon_sym_AT] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_readonly] = ACTIONS(3600), - [anon_sym_get] = ACTIONS(3600), - [anon_sym_set] = ACTIONS(3600), - [anon_sym_declare] = ACTIONS(3600), - [anon_sym_public] = ACTIONS(3600), - [anon_sym_private] = ACTIONS(3600), - [anon_sym_protected] = ACTIONS(3600), - [anon_sym_override] = ACTIONS(3600), - [anon_sym_module] = ACTIONS(3600), - [anon_sym_any] = ACTIONS(3600), - [anon_sym_number] = ACTIONS(3600), - [anon_sym_boolean] = ACTIONS(3600), - [anon_sym_string] = ACTIONS(3600), - [anon_sym_symbol] = ACTIONS(3600), - [anon_sym_object] = ACTIONS(3600), - [anon_sym_property] = ACTIONS(3600), - [anon_sym_signal] = ACTIONS(3600), - [anon_sym_on] = ACTIONS(3600), - [anon_sym_required] = ACTIONS(3600), - [anon_sym_component] = ACTIONS(3600), - [anon_sym_abstract] = ACTIONS(3600), - [anon_sym_interface] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), + [anon_sym_BQUOTE] = ACTIONS(3664), + [sym_number] = ACTIONS(3664), + [sym_private_property_identifier] = ACTIONS(3664), + [sym_this] = ACTIONS(3664), + [sym_super] = ACTIONS(3664), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [sym_null] = ACTIONS(3664), + [sym_undefined] = ACTIONS(3664), + [anon_sym_AT] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_readonly] = ACTIONS(3664), + [anon_sym_get] = ACTIONS(3664), + [anon_sym_set] = ACTIONS(3664), + [anon_sym_declare] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_override] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_any] = ACTIONS(3664), + [anon_sym_number] = ACTIONS(3664), + [anon_sym_boolean] = ACTIONS(3664), + [anon_sym_string] = ACTIONS(3664), + [anon_sym_symbol] = ACTIONS(3664), + [anon_sym_object] = ACTIONS(3664), + [anon_sym_property] = ACTIONS(3664), + [anon_sym_signal] = ACTIONS(3664), + [anon_sym_on] = ACTIONS(3664), + [anon_sym_required] = ACTIONS(3664), + [anon_sym_component] = ACTIONS(3664), + [anon_sym_abstract] = ACTIONS(3664), + [anon_sym_interface] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), [sym_html_comment] = ACTIONS(5), }, - [1597] = { - [sym_comment] = STATE(1597), - [sym_identifier] = ACTIONS(3610), - [anon_sym_export] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_typeof] = ACTIONS(3610), - [anon_sym_import] = ACTIONS(3610), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_else] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_await] = ACTIONS(3610), - [anon_sym_of] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_debugger] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LTtemplate_GT] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_async] = ACTIONS(3610), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_void] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3610), - [sym_number] = ACTIONS(3610), - [sym_private_property_identifier] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [sym_super] = ACTIONS(3610), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [sym_null] = ACTIONS(3610), - [sym_undefined] = ACTIONS(3610), - [anon_sym_AT] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_readonly] = ACTIONS(3610), - [anon_sym_get] = ACTIONS(3610), - [anon_sym_set] = ACTIONS(3610), - [anon_sym_declare] = ACTIONS(3610), - [anon_sym_public] = ACTIONS(3610), - [anon_sym_private] = ACTIONS(3610), - [anon_sym_protected] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_any] = ACTIONS(3610), - [anon_sym_number] = ACTIONS(3610), - [anon_sym_boolean] = ACTIONS(3610), - [anon_sym_string] = ACTIONS(3610), - [anon_sym_symbol] = ACTIONS(3610), - [anon_sym_object] = ACTIONS(3610), - [anon_sym_property] = ACTIONS(3610), - [anon_sym_signal] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_required] = ACTIONS(3610), - [anon_sym_component] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_interface] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), + [1572] = { + [sym_comment] = STATE(1572), + [sym_identifier] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_type] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3628), + [anon_sym_RBRACE] = ACTIONS(3628), + [anon_sym_typeof] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_from] = ACTIONS(3628), + [anon_sym_with] = ACTIONS(3628), + [anon_sym_var] = ACTIONS(3628), + [anon_sym_let] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_BANG] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_LPAREN] = ACTIONS(3628), + [anon_sym_await] = ACTIONS(3628), + [anon_sym_of] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_debugger] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3628), + [anon_sym_yield] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_LTtemplate_GT] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3628), + [anon_sym_SQUOTE] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_async] = ACTIONS(3628), + [anon_sym_function] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_SLASH] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(3628), + [anon_sym_TILDE] = ACTIONS(3628), + [anon_sym_void] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_PLUS_PLUS] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3628), + [sym_number] = ACTIONS(3628), + [sym_private_property_identifier] = ACTIONS(3628), + [sym_this] = ACTIONS(3628), + [sym_super] = ACTIONS(3628), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [sym_null] = ACTIONS(3628), + [sym_undefined] = ACTIONS(3628), + [anon_sym_AT] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_readonly] = ACTIONS(3628), + [anon_sym_get] = ACTIONS(3628), + [anon_sym_set] = ACTIONS(3628), + [anon_sym_declare] = ACTIONS(3628), + [anon_sym_public] = ACTIONS(3628), + [anon_sym_private] = ACTIONS(3628), + [anon_sym_protected] = ACTIONS(3628), + [anon_sym_override] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_any] = ACTIONS(3628), + [anon_sym_number] = ACTIONS(3628), + [anon_sym_boolean] = ACTIONS(3628), + [anon_sym_string] = ACTIONS(3628), + [anon_sym_symbol] = ACTIONS(3628), + [anon_sym_object] = ACTIONS(3628), + [anon_sym_property] = ACTIONS(3628), + [anon_sym_signal] = ACTIONS(3628), + [anon_sym_on] = ACTIONS(3628), + [anon_sym_required] = ACTIONS(3628), + [anon_sym_component] = ACTIONS(3628), + [anon_sym_abstract] = ACTIONS(3628), + [anon_sym_interface] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), [sym_html_comment] = ACTIONS(5), }, - [1598] = { - [sym_comment] = STATE(1598), - [sym_identifier] = ACTIONS(3610), - [anon_sym_export] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_typeof] = ACTIONS(3610), - [anon_sym_import] = ACTIONS(3610), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_else] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_await] = ACTIONS(3610), - [anon_sym_of] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_debugger] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LTtemplate_GT] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_async] = ACTIONS(3610), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_void] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3610), + [1573] = { + [sym_comment] = STATE(1573), + [sym_identifier] = ACTIONS(3630), + [anon_sym_export] = ACTIONS(3630), + [anon_sym_type] = ACTIONS(3630), + [anon_sym_namespace] = ACTIONS(3630), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_typeof] = ACTIONS(3630), + [anon_sym_import] = ACTIONS(3630), + [anon_sym_from] = ACTIONS(3630), + [anon_sym_with] = ACTIONS(3630), + [anon_sym_var] = ACTIONS(3630), + [anon_sym_let] = ACTIONS(3630), + [anon_sym_const] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_if] = ACTIONS(3630), + [anon_sym_switch] = ACTIONS(3630), + [anon_sym_for] = ACTIONS(3630), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_await] = ACTIONS(3630), + [anon_sym_of] = ACTIONS(3630), + [anon_sym_while] = ACTIONS(3630), + [anon_sym_do] = ACTIONS(3630), + [anon_sym_try] = ACTIONS(3630), + [anon_sym_break] = ACTIONS(3630), + [anon_sym_continue] = ACTIONS(3630), + [anon_sym_debugger] = ACTIONS(3630), + [anon_sym_return] = ACTIONS(3630), + [anon_sym_throw] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym_yield] = ACTIONS(3630), + [anon_sym_LBRACK] = ACTIONS(3630), + [anon_sym_LTtemplate_GT] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_class] = ACTIONS(3630), + [anon_sym_async] = ACTIONS(3630), + [anon_sym_function] = ACTIONS(3630), + [anon_sym_new] = ACTIONS(3630), + [anon_sym_using] = ACTIONS(3630), + [anon_sym_PLUS] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3630), + [anon_sym_SLASH] = ACTIONS(3630), + [anon_sym_LT] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_void] = ACTIONS(3630), + [anon_sym_delete] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_DASH_DASH] = ACTIONS(3630), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3610), - [sym_number] = ACTIONS(3610), - [sym_private_property_identifier] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [sym_super] = ACTIONS(3610), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [sym_null] = ACTIONS(3610), - [sym_undefined] = ACTIONS(3610), - [anon_sym_AT] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_readonly] = ACTIONS(3610), - [anon_sym_get] = ACTIONS(3610), - [anon_sym_set] = ACTIONS(3610), - [anon_sym_declare] = ACTIONS(3610), - [anon_sym_public] = ACTIONS(3610), - [anon_sym_private] = ACTIONS(3610), - [anon_sym_protected] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_any] = ACTIONS(3610), - [anon_sym_number] = ACTIONS(3610), - [anon_sym_boolean] = ACTIONS(3610), - [anon_sym_string] = ACTIONS(3610), - [anon_sym_symbol] = ACTIONS(3610), - [anon_sym_object] = ACTIONS(3610), - [anon_sym_property] = ACTIONS(3610), - [anon_sym_signal] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_required] = ACTIONS(3610), - [anon_sym_component] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_interface] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), + [anon_sym_BQUOTE] = ACTIONS(3630), + [sym_number] = ACTIONS(3630), + [sym_private_property_identifier] = ACTIONS(3630), + [sym_this] = ACTIONS(3630), + [sym_super] = ACTIONS(3630), + [sym_true] = ACTIONS(3630), + [sym_false] = ACTIONS(3630), + [sym_null] = ACTIONS(3630), + [sym_undefined] = ACTIONS(3630), + [anon_sym_AT] = ACTIONS(3630), + [anon_sym_static] = ACTIONS(3630), + [anon_sym_readonly] = ACTIONS(3630), + [anon_sym_get] = ACTIONS(3630), + [anon_sym_set] = ACTIONS(3630), + [anon_sym_declare] = ACTIONS(3630), + [anon_sym_public] = ACTIONS(3630), + [anon_sym_private] = ACTIONS(3630), + [anon_sym_protected] = ACTIONS(3630), + [anon_sym_override] = ACTIONS(3630), + [anon_sym_module] = ACTIONS(3630), + [anon_sym_any] = ACTIONS(3630), + [anon_sym_number] = ACTIONS(3630), + [anon_sym_boolean] = ACTIONS(3630), + [anon_sym_string] = ACTIONS(3630), + [anon_sym_symbol] = ACTIONS(3630), + [anon_sym_object] = ACTIONS(3630), + [anon_sym_property] = ACTIONS(3630), + [anon_sym_signal] = ACTIONS(3630), + [anon_sym_on] = ACTIONS(3630), + [anon_sym_required] = ACTIONS(3630), + [anon_sym_component] = ACTIONS(3630), + [anon_sym_abstract] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), [sym_html_comment] = ACTIONS(5), }, - [1599] = { - [sym_comment] = STATE(1599), - [sym_identifier] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_type] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_typeof] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_await] = ACTIONS(3662), - [anon_sym_of] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_debugger] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_LTtemplate_GT] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_async] = ACTIONS(3662), - [anon_sym_function] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_void] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), + [1574] = { + [sym_comment] = STATE(1574), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3662), - [sym_number] = ACTIONS(3662), - [sym_private_property_identifier] = ACTIONS(3662), - [sym_this] = ACTIONS(3662), - [sym_super] = ACTIONS(3662), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [sym_null] = ACTIONS(3662), - [sym_undefined] = ACTIONS(3662), - [anon_sym_AT] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_readonly] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(3662), - [anon_sym_set] = ACTIONS(3662), - [anon_sym_declare] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_override] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_any] = ACTIONS(3662), - [anon_sym_number] = ACTIONS(3662), - [anon_sym_boolean] = ACTIONS(3662), - [anon_sym_string] = ACTIONS(3662), - [anon_sym_symbol] = ACTIONS(3662), - [anon_sym_object] = ACTIONS(3662), - [anon_sym_property] = ACTIONS(3662), - [anon_sym_signal] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_required] = ACTIONS(3662), - [anon_sym_component] = ACTIONS(3662), - [anon_sym_abstract] = ACTIONS(3662), - [anon_sym_interface] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), [sym_html_comment] = ACTIONS(5), }, - [1600] = { - [sym_comment] = STATE(1600), + [1575] = { + [sym_comment] = STATE(1575), + [sym_identifier] = ACTIONS(3606), + [anon_sym_export] = ACTIONS(3606), + [anon_sym_type] = ACTIONS(3606), + [anon_sym_namespace] = ACTIONS(3606), + [anon_sym_LBRACE] = ACTIONS(3606), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_typeof] = ACTIONS(3606), + [anon_sym_import] = ACTIONS(3606), + [anon_sym_from] = ACTIONS(3606), + [anon_sym_with] = ACTIONS(3606), + [anon_sym_var] = ACTIONS(3606), + [anon_sym_let] = ACTIONS(3606), + [anon_sym_const] = ACTIONS(3606), + [anon_sym_BANG] = ACTIONS(3606), + [anon_sym_if] = ACTIONS(3606), + [anon_sym_switch] = ACTIONS(3606), + [anon_sym_for] = ACTIONS(3606), + [anon_sym_LPAREN] = ACTIONS(3606), + [anon_sym_await] = ACTIONS(3606), + [anon_sym_of] = ACTIONS(3606), + [anon_sym_while] = ACTIONS(3606), + [anon_sym_do] = ACTIONS(3606), + [anon_sym_try] = ACTIONS(3606), + [anon_sym_break] = ACTIONS(3606), + [anon_sym_continue] = ACTIONS(3606), + [anon_sym_debugger] = ACTIONS(3606), + [anon_sym_return] = ACTIONS(3606), + [anon_sym_throw] = ACTIONS(3606), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_yield] = ACTIONS(3606), + [anon_sym_LBRACK] = ACTIONS(3606), + [anon_sym_LTtemplate_GT] = ACTIONS(3606), + [anon_sym_DQUOTE] = ACTIONS(3606), + [anon_sym_SQUOTE] = ACTIONS(3606), + [anon_sym_class] = ACTIONS(3606), + [anon_sym_async] = ACTIONS(3606), + [anon_sym_function] = ACTIONS(3606), + [anon_sym_new] = ACTIONS(3606), + [anon_sym_using] = ACTIONS(3606), + [anon_sym_PLUS] = ACTIONS(3606), + [anon_sym_DASH] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(3606), + [anon_sym_TILDE] = ACTIONS(3606), + [anon_sym_void] = ACTIONS(3606), + [anon_sym_delete] = ACTIONS(3606), + [anon_sym_PLUS_PLUS] = ACTIONS(3606), + [anon_sym_DASH_DASH] = ACTIONS(3606), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3606), + [sym_number] = ACTIONS(3606), + [sym_private_property_identifier] = ACTIONS(3606), + [sym_this] = ACTIONS(3606), + [sym_super] = ACTIONS(3606), + [sym_true] = ACTIONS(3606), + [sym_false] = ACTIONS(3606), + [sym_null] = ACTIONS(3606), + [sym_undefined] = ACTIONS(3606), + [anon_sym_AT] = ACTIONS(3606), + [anon_sym_static] = ACTIONS(3606), + [anon_sym_readonly] = ACTIONS(3606), + [anon_sym_get] = ACTIONS(3606), + [anon_sym_set] = ACTIONS(3606), + [anon_sym_declare] = ACTIONS(3606), + [anon_sym_public] = ACTIONS(3606), + [anon_sym_private] = ACTIONS(3606), + [anon_sym_protected] = ACTIONS(3606), + [anon_sym_override] = ACTIONS(3606), + [anon_sym_module] = ACTIONS(3606), + [anon_sym_any] = ACTIONS(3606), + [anon_sym_number] = ACTIONS(3606), + [anon_sym_boolean] = ACTIONS(3606), + [anon_sym_string] = ACTIONS(3606), + [anon_sym_symbol] = ACTIONS(3606), + [anon_sym_object] = ACTIONS(3606), + [anon_sym_property] = ACTIONS(3606), + [anon_sym_signal] = ACTIONS(3606), + [anon_sym_on] = ACTIONS(3606), + [anon_sym_required] = ACTIONS(3606), + [anon_sym_component] = ACTIONS(3606), + [anon_sym_abstract] = ACTIONS(3606), + [anon_sym_interface] = ACTIONS(3606), + [anon_sym_enum] = ACTIONS(3606), + [sym_html_comment] = ACTIONS(5), + }, + [1576] = { + [sym_comment] = STATE(1576), [sym_identifier] = ACTIONS(3608), [anon_sym_export] = ACTIONS(3608), [anon_sym_type] = ACTIONS(3608), @@ -211202,7 +208615,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3608), [anon_sym_const] = ACTIONS(3608), [anon_sym_BANG] = ACTIONS(3608), - [anon_sym_else] = ACTIONS(3608), [anon_sym_if] = ACTIONS(3608), [anon_sym_switch] = ACTIONS(3608), [anon_sym_for] = ACTIONS(3608), @@ -211274,1504 +208686,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3608), [sym_html_comment] = ACTIONS(5), }, - [1601] = { - [sym_comment] = STATE(1601), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), + [1577] = { + [sym_comment] = STATE(1577), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_typeof] = ACTIONS(2482), + [anon_sym_import] = ACTIONS(2482), + [anon_sym_from] = ACTIONS(2482), + [anon_sym_with] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_const] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_if] = ACTIONS(2482), + [anon_sym_switch] = ACTIONS(2482), + [anon_sym_for] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_await] = ACTIONS(2482), + [anon_sym_of] = ACTIONS(2482), + [anon_sym_while] = ACTIONS(2482), + [anon_sym_do] = ACTIONS(2482), + [anon_sym_try] = ACTIONS(2482), + [anon_sym_break] = ACTIONS(2482), + [anon_sym_continue] = ACTIONS(2482), + [anon_sym_debugger] = ACTIONS(2482), + [anon_sym_return] = ACTIONS(2482), + [anon_sym_throw] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_yield] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LTtemplate_GT] = ACTIONS(2482), + [anon_sym_DQUOTE] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2482), + [anon_sym_class] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_new] = ACTIONS(2482), + [anon_sym_using] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_TILDE] = ACTIONS(2482), + [anon_sym_void] = ACTIONS(2482), + [anon_sym_delete] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [sym_number] = ACTIONS(2482), + [sym_private_property_identifier] = ACTIONS(2482), + [sym_this] = ACTIONS(2482), + [sym_super] = ACTIONS(2482), + [sym_true] = ACTIONS(2482), + [sym_false] = ACTIONS(2482), + [sym_null] = ACTIONS(2482), + [sym_undefined] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_property] = ACTIONS(2482), + [anon_sym_signal] = ACTIONS(2482), + [anon_sym_on] = ACTIONS(2482), + [anon_sym_required] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2482), + [anon_sym_interface] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), [sym_html_comment] = ACTIONS(5), }, - [1602] = { - [sym_comment] = STATE(1602), - [sym_identifier] = ACTIONS(3606), - [anon_sym_export] = ACTIONS(3606), - [anon_sym_type] = ACTIONS(3606), - [anon_sym_namespace] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_RBRACE] = ACTIONS(3606), - [anon_sym_typeof] = ACTIONS(3606), - [anon_sym_import] = ACTIONS(3606), - [anon_sym_from] = ACTIONS(3606), - [anon_sym_with] = ACTIONS(3606), - [anon_sym_var] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_const] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_else] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_switch] = ACTIONS(3606), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_await] = ACTIONS(3606), - [anon_sym_of] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_break] = ACTIONS(3606), - [anon_sym_continue] = ACTIONS(3606), - [anon_sym_debugger] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_throw] = ACTIONS(3606), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LTtemplate_GT] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_SQUOTE] = ACTIONS(3606), - [anon_sym_class] = ACTIONS(3606), - [anon_sym_async] = ACTIONS(3606), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_using] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_void] = ACTIONS(3606), - [anon_sym_delete] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_DASH_DASH] = ACTIONS(3606), + [1578] = { + [sym_comment] = STATE(1578), + [sym_identifier] = ACTIONS(3610), + [anon_sym_export] = ACTIONS(3610), + [anon_sym_type] = ACTIONS(3610), + [anon_sym_namespace] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3610), + [anon_sym_RBRACE] = ACTIONS(3610), + [anon_sym_typeof] = ACTIONS(3610), + [anon_sym_import] = ACTIONS(3610), + [anon_sym_from] = ACTIONS(3610), + [anon_sym_with] = ACTIONS(3610), + [anon_sym_var] = ACTIONS(3610), + [anon_sym_let] = ACTIONS(3610), + [anon_sym_const] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3610), + [anon_sym_if] = ACTIONS(3610), + [anon_sym_switch] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3610), + [anon_sym_LPAREN] = ACTIONS(3610), + [anon_sym_await] = ACTIONS(3610), + [anon_sym_of] = ACTIONS(3610), + [anon_sym_while] = ACTIONS(3610), + [anon_sym_do] = ACTIONS(3610), + [anon_sym_try] = ACTIONS(3610), + [anon_sym_break] = ACTIONS(3610), + [anon_sym_continue] = ACTIONS(3610), + [anon_sym_debugger] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3610), + [anon_sym_throw] = ACTIONS(3610), + [anon_sym_SEMI] = ACTIONS(3610), + [anon_sym_yield] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3610), + [anon_sym_LTtemplate_GT] = ACTIONS(3610), + [anon_sym_DQUOTE] = ACTIONS(3610), + [anon_sym_SQUOTE] = ACTIONS(3610), + [anon_sym_class] = ACTIONS(3610), + [anon_sym_async] = ACTIONS(3610), + [anon_sym_function] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3610), + [anon_sym_using] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_SLASH] = ACTIONS(3610), + [anon_sym_LT] = ACTIONS(3610), + [anon_sym_TILDE] = ACTIONS(3610), + [anon_sym_void] = ACTIONS(3610), + [anon_sym_delete] = ACTIONS(3610), + [anon_sym_PLUS_PLUS] = ACTIONS(3610), + [anon_sym_DASH_DASH] = ACTIONS(3610), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3606), - [sym_number] = ACTIONS(3606), - [sym_private_property_identifier] = ACTIONS(3606), - [sym_this] = ACTIONS(3606), - [sym_super] = ACTIONS(3606), - [sym_true] = ACTIONS(3606), - [sym_false] = ACTIONS(3606), - [sym_null] = ACTIONS(3606), - [sym_undefined] = ACTIONS(3606), - [anon_sym_AT] = ACTIONS(3606), - [anon_sym_static] = ACTIONS(3606), - [anon_sym_readonly] = ACTIONS(3606), - [anon_sym_get] = ACTIONS(3606), - [anon_sym_set] = ACTIONS(3606), - [anon_sym_declare] = ACTIONS(3606), - [anon_sym_public] = ACTIONS(3606), - [anon_sym_private] = ACTIONS(3606), - [anon_sym_protected] = ACTIONS(3606), - [anon_sym_override] = ACTIONS(3606), - [anon_sym_module] = ACTIONS(3606), - [anon_sym_any] = ACTIONS(3606), - [anon_sym_number] = ACTIONS(3606), - [anon_sym_boolean] = ACTIONS(3606), - [anon_sym_string] = ACTIONS(3606), - [anon_sym_symbol] = ACTIONS(3606), - [anon_sym_object] = ACTIONS(3606), - [anon_sym_property] = ACTIONS(3606), - [anon_sym_signal] = ACTIONS(3606), - [anon_sym_on] = ACTIONS(3606), - [anon_sym_required] = ACTIONS(3606), - [anon_sym_component] = ACTIONS(3606), - [anon_sym_abstract] = ACTIONS(3606), - [anon_sym_interface] = ACTIONS(3606), - [anon_sym_enum] = ACTIONS(3606), + [anon_sym_BQUOTE] = ACTIONS(3610), + [sym_number] = ACTIONS(3610), + [sym_private_property_identifier] = ACTIONS(3610), + [sym_this] = ACTIONS(3610), + [sym_super] = ACTIONS(3610), + [sym_true] = ACTIONS(3610), + [sym_false] = ACTIONS(3610), + [sym_null] = ACTIONS(3610), + [sym_undefined] = ACTIONS(3610), + [anon_sym_AT] = ACTIONS(3610), + [anon_sym_static] = ACTIONS(3610), + [anon_sym_readonly] = ACTIONS(3610), + [anon_sym_get] = ACTIONS(3610), + [anon_sym_set] = ACTIONS(3610), + [anon_sym_declare] = ACTIONS(3610), + [anon_sym_public] = ACTIONS(3610), + [anon_sym_private] = ACTIONS(3610), + [anon_sym_protected] = ACTIONS(3610), + [anon_sym_override] = ACTIONS(3610), + [anon_sym_module] = ACTIONS(3610), + [anon_sym_any] = ACTIONS(3610), + [anon_sym_number] = ACTIONS(3610), + [anon_sym_boolean] = ACTIONS(3610), + [anon_sym_string] = ACTIONS(3610), + [anon_sym_symbol] = ACTIONS(3610), + [anon_sym_object] = ACTIONS(3610), + [anon_sym_property] = ACTIONS(3610), + [anon_sym_signal] = ACTIONS(3610), + [anon_sym_on] = ACTIONS(3610), + [anon_sym_required] = ACTIONS(3610), + [anon_sym_component] = ACTIONS(3610), + [anon_sym_abstract] = ACTIONS(3610), + [anon_sym_interface] = ACTIONS(3610), + [anon_sym_enum] = ACTIONS(3610), [sym_html_comment] = ACTIONS(5), }, - [1603] = { - [sym_comment] = STATE(1603), - [sym_identifier] = ACTIONS(2370), - [anon_sym_export] = ACTIONS(2370), - [anon_sym_type] = ACTIONS(2370), - [anon_sym_namespace] = ACTIONS(2370), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_typeof] = ACTIONS(2370), - [anon_sym_import] = ACTIONS(2370), - [anon_sym_from] = ACTIONS(2370), - [anon_sym_with] = ACTIONS(2370), - [anon_sym_var] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_const] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_switch] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_await] = ACTIONS(2370), - [anon_sym_of] = ACTIONS(2370), - [anon_sym_while] = ACTIONS(2370), - [anon_sym_do] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_debugger] = ACTIONS(2370), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_throw] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_yield] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2370), - [anon_sym_LTtemplate_GT] = ACTIONS(2370), - [anon_sym_DOT] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2370), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_class] = ACTIONS(2370), - [anon_sym_async] = ACTIONS(2370), - [anon_sym_function] = ACTIONS(2370), - [anon_sym_new] = ACTIONS(2370), - [anon_sym_using] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_SLASH] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2370), - [anon_sym_void] = ACTIONS(2370), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_DASH_DASH] = ACTIONS(2370), + [1579] = { + [sym_comment] = STATE(1579), + [sym_identifier] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_type] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3498), + [anon_sym_RBRACE] = ACTIONS(3498), + [anon_sym_typeof] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_from] = ACTIONS(3498), + [anon_sym_with] = ACTIONS(3498), + [anon_sym_var] = ACTIONS(3498), + [anon_sym_let] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_BANG] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3498), + [anon_sym_await] = ACTIONS(3498), + [anon_sym_of] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_debugger] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3498), + [anon_sym_yield] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_LTtemplate_GT] = ACTIONS(3498), + [anon_sym_DQUOTE] = ACTIONS(3498), + [anon_sym_SQUOTE] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_async] = ACTIONS(3498), + [anon_sym_function] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_SLASH] = ACTIONS(3498), + [anon_sym_LT] = ACTIONS(3498), + [anon_sym_TILDE] = ACTIONS(3498), + [anon_sym_void] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3498), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2370), - [sym_number] = ACTIONS(2370), - [sym_private_property_identifier] = ACTIONS(2370), - [sym_this] = ACTIONS(2370), - [sym_super] = ACTIONS(2370), - [sym_true] = ACTIONS(2370), - [sym_false] = ACTIONS(2370), - [sym_null] = ACTIONS(2370), - [sym_undefined] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_readonly] = ACTIONS(2370), - [anon_sym_get] = ACTIONS(2370), - [anon_sym_set] = ACTIONS(2370), - [anon_sym_declare] = ACTIONS(2370), - [anon_sym_public] = ACTIONS(2370), - [anon_sym_private] = ACTIONS(2370), - [anon_sym_protected] = ACTIONS(2370), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2370), - [anon_sym_any] = ACTIONS(2370), - [anon_sym_number] = ACTIONS(2370), - [anon_sym_boolean] = ACTIONS(2370), - [anon_sym_string] = ACTIONS(2370), - [anon_sym_symbol] = ACTIONS(2370), - [anon_sym_object] = ACTIONS(2370), - [anon_sym_property] = ACTIONS(2370), - [anon_sym_signal] = ACTIONS(2370), - [anon_sym_on] = ACTIONS(2370), - [anon_sym_required] = ACTIONS(2370), - [anon_sym_component] = ACTIONS(2370), - [anon_sym_abstract] = ACTIONS(2370), - [anon_sym_interface] = ACTIONS(2370), - [anon_sym_enum] = ACTIONS(2370), + [anon_sym_BQUOTE] = ACTIONS(3498), + [sym_number] = ACTIONS(3498), + [sym_private_property_identifier] = ACTIONS(3498), + [sym_this] = ACTIONS(3498), + [sym_super] = ACTIONS(3498), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [sym_null] = ACTIONS(3498), + [sym_undefined] = ACTIONS(3498), + [anon_sym_AT] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_readonly] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3498), + [anon_sym_set] = ACTIONS(3498), + [anon_sym_declare] = ACTIONS(3498), + [anon_sym_public] = ACTIONS(3498), + [anon_sym_private] = ACTIONS(3498), + [anon_sym_protected] = ACTIONS(3498), + [anon_sym_override] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_any] = ACTIONS(3498), + [anon_sym_number] = ACTIONS(3498), + [anon_sym_boolean] = ACTIONS(3498), + [anon_sym_string] = ACTIONS(3498), + [anon_sym_symbol] = ACTIONS(3498), + [anon_sym_object] = ACTIONS(3498), + [anon_sym_property] = ACTIONS(3498), + [anon_sym_signal] = ACTIONS(3498), + [anon_sym_on] = ACTIONS(3498), + [anon_sym_required] = ACTIONS(3498), + [anon_sym_component] = ACTIONS(3498), + [anon_sym_abstract] = ACTIONS(3498), + [anon_sym_interface] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), [sym_html_comment] = ACTIONS(5), }, - [1604] = { - [sym_comment] = STATE(1604), - [sym_identifier] = ACTIONS(2410), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_typeof] = ACTIONS(2410), - [anon_sym_import] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_with] = ACTIONS(2410), - [anon_sym_var] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_switch] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_await] = ACTIONS(2410), - [anon_sym_of] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_do] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_debugger] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_throw] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_LTtemplate_GT] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2410), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_class] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_function] = ACTIONS(2410), - [anon_sym_new] = ACTIONS(2410), - [anon_sym_using] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_TILDE] = ACTIONS(2410), - [anon_sym_void] = ACTIONS(2410), - [anon_sym_delete] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), + [1580] = { + [sym_comment] = STATE(1580), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2410), - [sym_number] = ACTIONS(2410), - [sym_private_property_identifier] = ACTIONS(2410), - [sym_this] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), - [sym_null] = ACTIONS(2410), - [sym_undefined] = ACTIONS(2410), - [anon_sym_AT] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_signal] = ACTIONS(2410), - [anon_sym_on] = ACTIONS(2410), - [anon_sym_required] = ACTIONS(2410), - [anon_sym_component] = ACTIONS(2410), - [anon_sym_abstract] = ACTIONS(2410), - [anon_sym_interface] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1605] = { - [sym_comment] = STATE(1605), - [sym_identifier] = ACTIONS(3602), - [anon_sym_export] = ACTIONS(3602), - [anon_sym_type] = ACTIONS(3602), - [anon_sym_namespace] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_typeof] = ACTIONS(3602), - [anon_sym_import] = ACTIONS(3602), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [anon_sym_var] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_const] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_else] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_await] = ACTIONS(3602), - [anon_sym_of] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_break] = ACTIONS(3602), - [anon_sym_continue] = ACTIONS(3602), - [anon_sym_debugger] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_throw] = ACTIONS(3602), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LTtemplate_GT] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_class] = ACTIONS(3602), - [anon_sym_async] = ACTIONS(3602), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_using] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_void] = ACTIONS(3602), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3602), - [sym_number] = ACTIONS(3602), - [sym_private_property_identifier] = ACTIONS(3602), - [sym_this] = ACTIONS(3602), - [sym_super] = ACTIONS(3602), - [sym_true] = ACTIONS(3602), - [sym_false] = ACTIONS(3602), - [sym_null] = ACTIONS(3602), - [sym_undefined] = ACTIONS(3602), - [anon_sym_AT] = ACTIONS(3602), - [anon_sym_static] = ACTIONS(3602), - [anon_sym_readonly] = ACTIONS(3602), - [anon_sym_get] = ACTIONS(3602), - [anon_sym_set] = ACTIONS(3602), - [anon_sym_declare] = ACTIONS(3602), - [anon_sym_public] = ACTIONS(3602), - [anon_sym_private] = ACTIONS(3602), - [anon_sym_protected] = ACTIONS(3602), - [anon_sym_override] = ACTIONS(3602), - [anon_sym_module] = ACTIONS(3602), - [anon_sym_any] = ACTIONS(3602), - [anon_sym_number] = ACTIONS(3602), - [anon_sym_boolean] = ACTIONS(3602), - [anon_sym_string] = ACTIONS(3602), - [anon_sym_symbol] = ACTIONS(3602), - [anon_sym_object] = ACTIONS(3602), - [anon_sym_property] = ACTIONS(3602), - [anon_sym_signal] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_required] = ACTIONS(3602), - [anon_sym_component] = ACTIONS(3602), - [anon_sym_abstract] = ACTIONS(3602), - [anon_sym_interface] = ACTIONS(3602), - [anon_sym_enum] = ACTIONS(3602), - [sym_html_comment] = ACTIONS(5), - }, - [1606] = { - [sym_comment] = STATE(1606), - [sym_identifier] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_type] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3572), - [anon_sym_RBRACE] = ACTIONS(3572), - [anon_sym_typeof] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_from] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3572), - [anon_sym_var] = ACTIONS(3572), - [anon_sym_let] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_await] = ACTIONS(3572), - [anon_sym_of] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_debugger] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_LTtemplate_GT] = ACTIONS(3572), - [anon_sym_DQUOTE] = ACTIONS(3572), - [anon_sym_SQUOTE] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_async] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_SLASH] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_TILDE] = ACTIONS(3572), - [anon_sym_void] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3572), - [sym_number] = ACTIONS(3572), - [sym_private_property_identifier] = ACTIONS(3572), - [sym_this] = ACTIONS(3572), - [sym_super] = ACTIONS(3572), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [sym_null] = ACTIONS(3572), - [sym_undefined] = ACTIONS(3572), - [anon_sym_AT] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_readonly] = ACTIONS(3572), - [anon_sym_get] = ACTIONS(3572), - [anon_sym_set] = ACTIONS(3572), - [anon_sym_declare] = ACTIONS(3572), - [anon_sym_public] = ACTIONS(3572), - [anon_sym_private] = ACTIONS(3572), - [anon_sym_protected] = ACTIONS(3572), - [anon_sym_override] = ACTIONS(3572), - [anon_sym_module] = ACTIONS(3572), - [anon_sym_any] = ACTIONS(3572), - [anon_sym_number] = ACTIONS(3572), - [anon_sym_boolean] = ACTIONS(3572), - [anon_sym_string] = ACTIONS(3572), - [anon_sym_symbol] = ACTIONS(3572), - [anon_sym_object] = ACTIONS(3572), - [anon_sym_property] = ACTIONS(3572), - [anon_sym_signal] = ACTIONS(3572), - [anon_sym_on] = ACTIONS(3572), - [anon_sym_required] = ACTIONS(3572), - [anon_sym_component] = ACTIONS(3572), - [anon_sym_abstract] = ACTIONS(3572), - [anon_sym_interface] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), - [sym_html_comment] = ACTIONS(5), - }, - [1607] = { - [sym_comment] = STATE(1607), - [sym_identifier] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_type] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3572), - [anon_sym_RBRACE] = ACTIONS(3572), - [anon_sym_typeof] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_from] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3572), - [anon_sym_var] = ACTIONS(3572), - [anon_sym_let] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_await] = ACTIONS(3572), - [anon_sym_of] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_debugger] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_LTtemplate_GT] = ACTIONS(3572), - [anon_sym_DQUOTE] = ACTIONS(3572), - [anon_sym_SQUOTE] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_async] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_SLASH] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_TILDE] = ACTIONS(3572), - [anon_sym_void] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3572), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3572), - [sym_number] = ACTIONS(3572), - [sym_private_property_identifier] = ACTIONS(3572), - [sym_this] = ACTIONS(3572), - [sym_super] = ACTIONS(3572), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [sym_null] = ACTIONS(3572), - [sym_undefined] = ACTIONS(3572), - [anon_sym_AT] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_readonly] = ACTIONS(3572), - [anon_sym_get] = ACTIONS(3572), - [anon_sym_set] = ACTIONS(3572), - [anon_sym_declare] = ACTIONS(3572), - [anon_sym_public] = ACTIONS(3572), - [anon_sym_private] = ACTIONS(3572), - [anon_sym_protected] = ACTIONS(3572), - [anon_sym_override] = ACTIONS(3572), - [anon_sym_module] = ACTIONS(3572), - [anon_sym_any] = ACTIONS(3572), - [anon_sym_number] = ACTIONS(3572), - [anon_sym_boolean] = ACTIONS(3572), - [anon_sym_string] = ACTIONS(3572), - [anon_sym_symbol] = ACTIONS(3572), - [anon_sym_object] = ACTIONS(3572), - [anon_sym_property] = ACTIONS(3572), - [anon_sym_signal] = ACTIONS(3572), - [anon_sym_on] = ACTIONS(3572), - [anon_sym_required] = ACTIONS(3572), - [anon_sym_component] = ACTIONS(3572), - [anon_sym_abstract] = ACTIONS(3572), - [anon_sym_interface] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), - [sym_html_comment] = ACTIONS(5), - }, - [1608] = { - [sym_comment] = STATE(1608), - [sym_identifier] = ACTIONS(3560), - [anon_sym_export] = ACTIONS(3560), - [anon_sym_type] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_RBRACE] = ACTIONS(3560), - [anon_sym_typeof] = ACTIONS(3560), - [anon_sym_import] = ACTIONS(3560), - [anon_sym_from] = ACTIONS(3560), - [anon_sym_with] = ACTIONS(3560), - [anon_sym_var] = ACTIONS(3560), - [anon_sym_let] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3560), - [anon_sym_else] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3560), - [anon_sym_await] = ACTIONS(3560), - [anon_sym_of] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_debugger] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3560), - [anon_sym_yield] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_LTtemplate_GT] = ACTIONS(3560), - [anon_sym_DQUOTE] = ACTIONS(3560), - [anon_sym_SQUOTE] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_async] = ACTIONS(3560), - [anon_sym_function] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3560), - [anon_sym_TILDE] = ACTIONS(3560), - [anon_sym_void] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_PLUS_PLUS] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3560), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3560), - [sym_number] = ACTIONS(3560), - [sym_private_property_identifier] = ACTIONS(3560), - [sym_this] = ACTIONS(3560), - [sym_super] = ACTIONS(3560), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [sym_null] = ACTIONS(3560), - [sym_undefined] = ACTIONS(3560), - [anon_sym_AT] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_readonly] = ACTIONS(3560), - [anon_sym_get] = ACTIONS(3560), - [anon_sym_set] = ACTIONS(3560), - [anon_sym_declare] = ACTIONS(3560), - [anon_sym_public] = ACTIONS(3560), - [anon_sym_private] = ACTIONS(3560), - [anon_sym_protected] = ACTIONS(3560), - [anon_sym_override] = ACTIONS(3560), - [anon_sym_module] = ACTIONS(3560), - [anon_sym_any] = ACTIONS(3560), - [anon_sym_number] = ACTIONS(3560), - [anon_sym_boolean] = ACTIONS(3560), - [anon_sym_string] = ACTIONS(3560), - [anon_sym_symbol] = ACTIONS(3560), - [anon_sym_object] = ACTIONS(3560), - [anon_sym_property] = ACTIONS(3560), - [anon_sym_signal] = ACTIONS(3560), - [anon_sym_on] = ACTIONS(3560), - [anon_sym_required] = ACTIONS(3560), - [anon_sym_component] = ACTIONS(3560), - [anon_sym_abstract] = ACTIONS(3560), - [anon_sym_interface] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [sym_html_comment] = ACTIONS(5), - }, - [1609] = { - [sym_comment] = STATE(1609), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_private_property_identifier] = ACTIONS(2442), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym_html_comment] = ACTIONS(5), - }, - [1610] = { - [sym_statement_block] = STATE(1822), - [sym_comment] = STATE(1610), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3706), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_typeof] = ACTIONS(2297), - [anon_sym_import] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_with] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_switch] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_await] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_do] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_debugger] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_throw] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_LTtemplate_GT] = ACTIONS(2297), - [anon_sym_DQUOTE] = ACTIONS(2297), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_class] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_new] = ACTIONS(2297), - [anon_sym_using] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_void] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [sym_number] = ACTIONS(2297), - [sym_private_property_identifier] = ACTIONS(2297), - [sym_this] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_true] = ACTIONS(2297), - [sym_false] = ACTIONS(2297), - [sym_null] = ACTIONS(2297), - [sym_undefined] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_abstract] = ACTIONS(2297), - [anon_sym_interface] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym_html_comment] = ACTIONS(5), - }, - [1611] = { - [sym_comment] = STATE(1611), - [sym_identifier] = ACTIONS(3604), - [anon_sym_export] = ACTIONS(3604), - [anon_sym_type] = ACTIONS(3604), - [anon_sym_namespace] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3604), - [anon_sym_RBRACE] = ACTIONS(3604), - [anon_sym_typeof] = ACTIONS(3604), - [anon_sym_import] = ACTIONS(3604), - [anon_sym_from] = ACTIONS(3604), - [anon_sym_with] = ACTIONS(3604), - [anon_sym_var] = ACTIONS(3604), - [anon_sym_let] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_else] = ACTIONS(3604), - [anon_sym_if] = ACTIONS(3604), - [anon_sym_switch] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3604), - [anon_sym_await] = ACTIONS(3604), - [anon_sym_of] = ACTIONS(3604), - [anon_sym_while] = ACTIONS(3604), - [anon_sym_do] = ACTIONS(3604), - [anon_sym_try] = ACTIONS(3604), - [anon_sym_break] = ACTIONS(3604), - [anon_sym_continue] = ACTIONS(3604), - [anon_sym_debugger] = ACTIONS(3604), - [anon_sym_return] = ACTIONS(3604), - [anon_sym_throw] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_LTtemplate_GT] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3604), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_async] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(3604), - [anon_sym_DASH] = ACTIONS(3604), - [anon_sym_SLASH] = ACTIONS(3604), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_TILDE] = ACTIONS(3604), - [anon_sym_void] = ACTIONS(3604), - [anon_sym_delete] = ACTIONS(3604), - [anon_sym_PLUS_PLUS] = ACTIONS(3604), - [anon_sym_DASH_DASH] = ACTIONS(3604), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3604), - [sym_number] = ACTIONS(3604), - [sym_private_property_identifier] = ACTIONS(3604), - [sym_this] = ACTIONS(3604), - [sym_super] = ACTIONS(3604), - [sym_true] = ACTIONS(3604), - [sym_false] = ACTIONS(3604), - [sym_null] = ACTIONS(3604), - [sym_undefined] = ACTIONS(3604), - [anon_sym_AT] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_readonly] = ACTIONS(3604), - [anon_sym_get] = ACTIONS(3604), - [anon_sym_set] = ACTIONS(3604), - [anon_sym_declare] = ACTIONS(3604), - [anon_sym_public] = ACTIONS(3604), - [anon_sym_private] = ACTIONS(3604), - [anon_sym_protected] = ACTIONS(3604), - [anon_sym_override] = ACTIONS(3604), - [anon_sym_module] = ACTIONS(3604), - [anon_sym_any] = ACTIONS(3604), - [anon_sym_number] = ACTIONS(3604), - [anon_sym_boolean] = ACTIONS(3604), - [anon_sym_string] = ACTIONS(3604), - [anon_sym_symbol] = ACTIONS(3604), - [anon_sym_object] = ACTIONS(3604), - [anon_sym_property] = ACTIONS(3604), - [anon_sym_signal] = ACTIONS(3604), - [anon_sym_on] = ACTIONS(3604), - [anon_sym_required] = ACTIONS(3604), - [anon_sym_component] = ACTIONS(3604), - [anon_sym_abstract] = ACTIONS(3604), - [anon_sym_interface] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), - [sym_html_comment] = ACTIONS(5), - }, - [1612] = { - [sym_comment] = STATE(1612), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_from] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_else] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_of] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_property] = ACTIONS(3612), - [anon_sym_signal] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_required] = ACTIONS(3612), - [anon_sym_component] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [sym_html_comment] = ACTIONS(5), - }, - [1613] = { - [sym_comment] = STATE(1613), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_else] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), - [sym_html_comment] = ACTIONS(5), - }, - [1614] = { - [sym_comment] = STATE(1614), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_else] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), - [sym_html_comment] = ACTIONS(5), - }, - [1615] = { - [sym_comment] = STATE(1615), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_else] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), - [sym_html_comment] = ACTIONS(5), - }, - [1616] = { - [sym_comment] = STATE(1616), - [sym_identifier] = ACTIONS(3620), - [anon_sym_export] = ACTIONS(3620), - [anon_sym_type] = ACTIONS(3620), - [anon_sym_namespace] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_typeof] = ACTIONS(3620), - [anon_sym_import] = ACTIONS(3620), - [anon_sym_from] = ACTIONS(3620), - [anon_sym_with] = ACTIONS(3620), - [anon_sym_var] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3620), - [anon_sym_const] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_else] = ACTIONS(3620), - [anon_sym_if] = ACTIONS(3620), - [anon_sym_switch] = ACTIONS(3620), - [anon_sym_for] = ACTIONS(3620), - [anon_sym_LPAREN] = ACTIONS(3620), - [anon_sym_await] = ACTIONS(3620), - [anon_sym_of] = ACTIONS(3620), - [anon_sym_while] = ACTIONS(3620), - [anon_sym_do] = ACTIONS(3620), - [anon_sym_try] = ACTIONS(3620), - [anon_sym_break] = ACTIONS(3620), - [anon_sym_continue] = ACTIONS(3620), - [anon_sym_debugger] = ACTIONS(3620), - [anon_sym_return] = ACTIONS(3620), - [anon_sym_throw] = ACTIONS(3620), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_yield] = ACTIONS(3620), - [anon_sym_LBRACK] = ACTIONS(3620), - [anon_sym_LTtemplate_GT] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_class] = ACTIONS(3620), - [anon_sym_async] = ACTIONS(3620), - [anon_sym_function] = ACTIONS(3620), - [anon_sym_new] = ACTIONS(3620), - [anon_sym_using] = ACTIONS(3620), - [anon_sym_PLUS] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3620), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_void] = ACTIONS(3620), - [anon_sym_delete] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3620), - [sym_number] = ACTIONS(3620), - [sym_private_property_identifier] = ACTIONS(3620), - [sym_this] = ACTIONS(3620), - [sym_super] = ACTIONS(3620), - [sym_true] = ACTIONS(3620), - [sym_false] = ACTIONS(3620), - [sym_null] = ACTIONS(3620), - [sym_undefined] = ACTIONS(3620), - [anon_sym_AT] = ACTIONS(3620), - [anon_sym_static] = ACTIONS(3620), - [anon_sym_readonly] = ACTIONS(3620), - [anon_sym_get] = ACTIONS(3620), - [anon_sym_set] = ACTIONS(3620), - [anon_sym_declare] = ACTIONS(3620), - [anon_sym_public] = ACTIONS(3620), - [anon_sym_private] = ACTIONS(3620), - [anon_sym_protected] = ACTIONS(3620), - [anon_sym_override] = ACTIONS(3620), - [anon_sym_module] = ACTIONS(3620), - [anon_sym_any] = ACTIONS(3620), - [anon_sym_number] = ACTIONS(3620), - [anon_sym_boolean] = ACTIONS(3620), - [anon_sym_string] = ACTIONS(3620), - [anon_sym_symbol] = ACTIONS(3620), - [anon_sym_object] = ACTIONS(3620), - [anon_sym_property] = ACTIONS(3620), - [anon_sym_signal] = ACTIONS(3620), - [anon_sym_on] = ACTIONS(3620), - [anon_sym_required] = ACTIONS(3620), - [anon_sym_component] = ACTIONS(3620), - [anon_sym_abstract] = ACTIONS(3620), - [anon_sym_interface] = ACTIONS(3620), - [anon_sym_enum] = ACTIONS(3620), - [sym_html_comment] = ACTIONS(5), - }, - [1617] = { - [sym_comment] = STATE(1617), - [sym_identifier] = ACTIONS(3544), - [anon_sym_export] = ACTIONS(3544), - [anon_sym_type] = ACTIONS(3544), - [anon_sym_namespace] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3544), - [anon_sym_RBRACE] = ACTIONS(3544), - [anon_sym_typeof] = ACTIONS(3544), - [anon_sym_import] = ACTIONS(3544), - [anon_sym_from] = ACTIONS(3544), - [anon_sym_with] = ACTIONS(3544), - [anon_sym_var] = ACTIONS(3544), - [anon_sym_let] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_BANG] = ACTIONS(3544), - [anon_sym_else] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3544), - [anon_sym_switch] = ACTIONS(3544), - [anon_sym_for] = ACTIONS(3544), - [anon_sym_LPAREN] = ACTIONS(3544), - [anon_sym_await] = ACTIONS(3544), - [anon_sym_of] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_do] = ACTIONS(3544), - [anon_sym_try] = ACTIONS(3544), - [anon_sym_break] = ACTIONS(3544), - [anon_sym_continue] = ACTIONS(3544), - [anon_sym_debugger] = ACTIONS(3544), - [anon_sym_return] = ACTIONS(3544), - [anon_sym_throw] = ACTIONS(3544), - [anon_sym_SEMI] = ACTIONS(3544), - [anon_sym_yield] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3544), - [anon_sym_LTtemplate_GT] = ACTIONS(3544), - [anon_sym_DQUOTE] = ACTIONS(3544), - [anon_sym_SQUOTE] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3544), - [anon_sym_async] = ACTIONS(3544), - [anon_sym_function] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_using] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3544), - [anon_sym_TILDE] = ACTIONS(3544), - [anon_sym_void] = ACTIONS(3544), - [anon_sym_delete] = ACTIONS(3544), - [anon_sym_PLUS_PLUS] = ACTIONS(3544), - [anon_sym_DASH_DASH] = ACTIONS(3544), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3544), - [sym_number] = ACTIONS(3544), - [sym_private_property_identifier] = ACTIONS(3544), - [sym_this] = ACTIONS(3544), - [sym_super] = ACTIONS(3544), - [sym_true] = ACTIONS(3544), - [sym_false] = ACTIONS(3544), - [sym_null] = ACTIONS(3544), - [sym_undefined] = ACTIONS(3544), - [anon_sym_AT] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_readonly] = ACTIONS(3544), - [anon_sym_get] = ACTIONS(3544), - [anon_sym_set] = ACTIONS(3544), - [anon_sym_declare] = ACTIONS(3544), - [anon_sym_public] = ACTIONS(3544), - [anon_sym_private] = ACTIONS(3544), - [anon_sym_protected] = ACTIONS(3544), - [anon_sym_override] = ACTIONS(3544), - [anon_sym_module] = ACTIONS(3544), - [anon_sym_any] = ACTIONS(3544), - [anon_sym_number] = ACTIONS(3544), - [anon_sym_boolean] = ACTIONS(3544), - [anon_sym_string] = ACTIONS(3544), - [anon_sym_symbol] = ACTIONS(3544), - [anon_sym_object] = ACTIONS(3544), - [anon_sym_property] = ACTIONS(3544), - [anon_sym_signal] = ACTIONS(3544), - [anon_sym_on] = ACTIONS(3544), - [anon_sym_required] = ACTIONS(3544), - [anon_sym_component] = ACTIONS(3544), - [anon_sym_abstract] = ACTIONS(3544), - [anon_sym_interface] = ACTIONS(3544), - [anon_sym_enum] = ACTIONS(3544), - [sym_html_comment] = ACTIONS(5), - }, - [1618] = { - [sym_comment] = STATE(1618), + [1581] = { + [sym_comment] = STATE(1581), [sym_identifier] = ACTIONS(3622), [anon_sym_export] = ACTIONS(3622), [anon_sym_type] = ACTIONS(3622), @@ -212786,7 +209050,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3622), [anon_sym_const] = ACTIONS(3622), [anon_sym_BANG] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), [anon_sym_if] = ACTIONS(3622), [anon_sym_switch] = ACTIONS(3622), [anon_sym_for] = ACTIONS(3622), @@ -212858,1592 +209121,1400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1619] = { - [sym_comment] = STATE(1619), - [sym_identifier] = ACTIONS(3624), - [anon_sym_export] = ACTIONS(3624), - [anon_sym_type] = ACTIONS(3624), - [anon_sym_namespace] = ACTIONS(3624), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3624), - [anon_sym_typeof] = ACTIONS(3624), - [anon_sym_import] = ACTIONS(3624), - [anon_sym_from] = ACTIONS(3624), - [anon_sym_with] = ACTIONS(3624), - [anon_sym_var] = ACTIONS(3624), - [anon_sym_let] = ACTIONS(3624), - [anon_sym_const] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_else] = ACTIONS(3624), - [anon_sym_if] = ACTIONS(3624), - [anon_sym_switch] = ACTIONS(3624), - [anon_sym_for] = ACTIONS(3624), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_await] = ACTIONS(3624), - [anon_sym_of] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3624), - [anon_sym_do] = ACTIONS(3624), - [anon_sym_try] = ACTIONS(3624), - [anon_sym_break] = ACTIONS(3624), - [anon_sym_continue] = ACTIONS(3624), - [anon_sym_debugger] = ACTIONS(3624), - [anon_sym_return] = ACTIONS(3624), - [anon_sym_throw] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LTtemplate_GT] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_class] = ACTIONS(3624), - [anon_sym_async] = ACTIONS(3624), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_using] = ACTIONS(3624), - [anon_sym_PLUS] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3624), - [anon_sym_SLASH] = ACTIONS(3624), - [anon_sym_LT] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_void] = ACTIONS(3624), - [anon_sym_delete] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_DASH_DASH] = ACTIONS(3624), + [1582] = { + [sym_comment] = STATE(1582), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_LBRACE] = ACTIONS(2404), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_typeof] = ACTIONS(2404), + [anon_sym_import] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_with] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_const] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2404), + [anon_sym_if] = ACTIONS(2404), + [anon_sym_switch] = ACTIONS(2404), + [anon_sym_for] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(2404), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_while] = ACTIONS(2404), + [anon_sym_do] = ACTIONS(2404), + [anon_sym_try] = ACTIONS(2404), + [anon_sym_break] = ACTIONS(2404), + [anon_sym_continue] = ACTIONS(2404), + [anon_sym_debugger] = ACTIONS(2404), + [anon_sym_return] = ACTIONS(2404), + [anon_sym_throw] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_yield] = ACTIONS(2404), + [anon_sym_LBRACK] = ACTIONS(2404), + [anon_sym_LTtemplate_GT] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_SQUOTE] = ACTIONS(2404), + [anon_sym_class] = ACTIONS(2404), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_new] = ACTIONS(2404), + [anon_sym_using] = ACTIONS(2404), + [anon_sym_PLUS] = ACTIONS(2404), + [anon_sym_DASH] = ACTIONS(2404), + [anon_sym_SLASH] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_TILDE] = ACTIONS(2404), + [anon_sym_void] = ACTIONS(2404), + [anon_sym_delete] = ACTIONS(2404), + [anon_sym_PLUS_PLUS] = ACTIONS(2404), + [anon_sym_DASH_DASH] = ACTIONS(2404), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3624), - [sym_number] = ACTIONS(3624), - [sym_private_property_identifier] = ACTIONS(3624), - [sym_this] = ACTIONS(3624), - [sym_super] = ACTIONS(3624), - [sym_true] = ACTIONS(3624), - [sym_false] = ACTIONS(3624), - [sym_null] = ACTIONS(3624), - [sym_undefined] = ACTIONS(3624), - [anon_sym_AT] = ACTIONS(3624), - [anon_sym_static] = ACTIONS(3624), - [anon_sym_readonly] = ACTIONS(3624), - [anon_sym_get] = ACTIONS(3624), - [anon_sym_set] = ACTIONS(3624), - [anon_sym_declare] = ACTIONS(3624), - [anon_sym_public] = ACTIONS(3624), - [anon_sym_private] = ACTIONS(3624), - [anon_sym_protected] = ACTIONS(3624), - [anon_sym_override] = ACTIONS(3624), - [anon_sym_module] = ACTIONS(3624), - [anon_sym_any] = ACTIONS(3624), - [anon_sym_number] = ACTIONS(3624), - [anon_sym_boolean] = ACTIONS(3624), - [anon_sym_string] = ACTIONS(3624), - [anon_sym_symbol] = ACTIONS(3624), - [anon_sym_object] = ACTIONS(3624), - [anon_sym_property] = ACTIONS(3624), - [anon_sym_signal] = ACTIONS(3624), - [anon_sym_on] = ACTIONS(3624), - [anon_sym_required] = ACTIONS(3624), - [anon_sym_component] = ACTIONS(3624), - [anon_sym_abstract] = ACTIONS(3624), - [anon_sym_interface] = ACTIONS(3624), - [anon_sym_enum] = ACTIONS(3624), + [anon_sym_BQUOTE] = ACTIONS(2404), + [sym_number] = ACTIONS(2404), + [sym_private_property_identifier] = ACTIONS(2404), + [sym_this] = ACTIONS(2404), + [sym_super] = ACTIONS(2404), + [sym_true] = ACTIONS(2404), + [sym_false] = ACTIONS(2404), + [sym_null] = ACTIONS(2404), + [sym_undefined] = ACTIONS(2404), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_abstract] = ACTIONS(2404), + [anon_sym_interface] = ACTIONS(2404), + [anon_sym_enum] = ACTIONS(2404), [sym_html_comment] = ACTIONS(5), }, - [1620] = { - [sym_comment] = STATE(1620), - [sym_identifier] = ACTIONS(3634), - [anon_sym_export] = ACTIONS(3634), - [anon_sym_type] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3634), - [anon_sym_RBRACE] = ACTIONS(3634), - [anon_sym_typeof] = ACTIONS(3634), - [anon_sym_import] = ACTIONS(3634), - [anon_sym_from] = ACTIONS(3634), - [anon_sym_with] = ACTIONS(3634), - [anon_sym_var] = ACTIONS(3634), - [anon_sym_let] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_else] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_await] = ACTIONS(3634), - [anon_sym_of] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_debugger] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_LTtemplate_GT] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(3634), - [anon_sym_SQUOTE] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_async] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_SLASH] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(3634), - [anon_sym_void] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_PLUS_PLUS] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3634), + [1583] = { + [sym_comment] = STATE(1583), + [sym_identifier] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_type] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3502), + [anon_sym_RBRACE] = ACTIONS(3502), + [anon_sym_typeof] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_from] = ACTIONS(3502), + [anon_sym_with] = ACTIONS(3502), + [anon_sym_var] = ACTIONS(3502), + [anon_sym_let] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_await] = ACTIONS(3502), + [anon_sym_of] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_debugger] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3502), + [anon_sym_yield] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LTtemplate_GT] = ACTIONS(3502), + [anon_sym_DQUOTE] = ACTIONS(3502), + [anon_sym_SQUOTE] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(3502), + [anon_sym_function] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_SLASH] = ACTIONS(3502), + [anon_sym_LT] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3502), + [anon_sym_void] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3502), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3634), - [sym_number] = ACTIONS(3634), - [sym_private_property_identifier] = ACTIONS(3634), - [sym_this] = ACTIONS(3634), - [sym_super] = ACTIONS(3634), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [sym_null] = ACTIONS(3634), - [sym_undefined] = ACTIONS(3634), - [anon_sym_AT] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_readonly] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(3634), - [anon_sym_set] = ACTIONS(3634), - [anon_sym_declare] = ACTIONS(3634), - [anon_sym_public] = ACTIONS(3634), - [anon_sym_private] = ACTIONS(3634), - [anon_sym_protected] = ACTIONS(3634), - [anon_sym_override] = ACTIONS(3634), - [anon_sym_module] = ACTIONS(3634), - [anon_sym_any] = ACTIONS(3634), - [anon_sym_number] = ACTIONS(3634), - [anon_sym_boolean] = ACTIONS(3634), - [anon_sym_string] = ACTIONS(3634), - [anon_sym_symbol] = ACTIONS(3634), - [anon_sym_object] = ACTIONS(3634), - [anon_sym_property] = ACTIONS(3634), - [anon_sym_signal] = ACTIONS(3634), - [anon_sym_on] = ACTIONS(3634), - [anon_sym_required] = ACTIONS(3634), - [anon_sym_component] = ACTIONS(3634), - [anon_sym_abstract] = ACTIONS(3634), - [anon_sym_interface] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), + [anon_sym_BQUOTE] = ACTIONS(3502), + [sym_number] = ACTIONS(3502), + [sym_private_property_identifier] = ACTIONS(3502), + [sym_this] = ACTIONS(3502), + [sym_super] = ACTIONS(3502), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [sym_null] = ACTIONS(3502), + [sym_undefined] = ACTIONS(3502), + [anon_sym_AT] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_readonly] = ACTIONS(3502), + [anon_sym_get] = ACTIONS(3502), + [anon_sym_set] = ACTIONS(3502), + [anon_sym_declare] = ACTIONS(3502), + [anon_sym_public] = ACTIONS(3502), + [anon_sym_private] = ACTIONS(3502), + [anon_sym_protected] = ACTIONS(3502), + [anon_sym_override] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_any] = ACTIONS(3502), + [anon_sym_number] = ACTIONS(3502), + [anon_sym_boolean] = ACTIONS(3502), + [anon_sym_string] = ACTIONS(3502), + [anon_sym_symbol] = ACTIONS(3502), + [anon_sym_object] = ACTIONS(3502), + [anon_sym_property] = ACTIONS(3502), + [anon_sym_signal] = ACTIONS(3502), + [anon_sym_on] = ACTIONS(3502), + [anon_sym_required] = ACTIONS(3502), + [anon_sym_component] = ACTIONS(3502), + [anon_sym_abstract] = ACTIONS(3502), + [anon_sym_interface] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), [sym_html_comment] = ACTIONS(5), }, - [1621] = { - [sym_comment] = STATE(1621), - [sym_identifier] = ACTIONS(3650), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_type] = ACTIONS(3650), - [anon_sym_namespace] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_RBRACE] = ACTIONS(3650), - [anon_sym_typeof] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_const] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_LPAREN] = ACTIONS(3650), - [anon_sym_await] = ACTIONS(3650), - [anon_sym_of] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_LTtemplate_GT] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_class] = ACTIONS(3650), - [anon_sym_async] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_using] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_void] = ACTIONS(3650), - [anon_sym_delete] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3650), - [sym_number] = ACTIONS(3650), - [sym_private_property_identifier] = ACTIONS(3650), - [sym_this] = ACTIONS(3650), - [sym_super] = ACTIONS(3650), - [sym_true] = ACTIONS(3650), - [sym_false] = ACTIONS(3650), - [sym_null] = ACTIONS(3650), - [sym_undefined] = ACTIONS(3650), - [anon_sym_AT] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_readonly] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_declare] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_protected] = ACTIONS(3650), - [anon_sym_override] = ACTIONS(3650), - [anon_sym_module] = ACTIONS(3650), - [anon_sym_any] = ACTIONS(3650), - [anon_sym_number] = ACTIONS(3650), - [anon_sym_boolean] = ACTIONS(3650), - [anon_sym_string] = ACTIONS(3650), - [anon_sym_symbol] = ACTIONS(3650), - [anon_sym_object] = ACTIONS(3650), - [anon_sym_property] = ACTIONS(3650), - [anon_sym_signal] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_required] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_enum] = ACTIONS(3650), + [1584] = { + [sym_comment] = STATE(1584), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_typeof] = ACTIONS(2462), + [anon_sym_import] = ACTIONS(2462), + [anon_sym_from] = ACTIONS(2462), + [anon_sym_with] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_const] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_if] = ACTIONS(2462), + [anon_sym_switch] = ACTIONS(2462), + [anon_sym_for] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_await] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_while] = ACTIONS(2462), + [anon_sym_do] = ACTIONS(2462), + [anon_sym_try] = ACTIONS(2462), + [anon_sym_break] = ACTIONS(2462), + [anon_sym_continue] = ACTIONS(2462), + [anon_sym_debugger] = ACTIONS(2462), + [anon_sym_return] = ACTIONS(2462), + [anon_sym_throw] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_yield] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LTtemplate_GT] = ACTIONS(2462), + [anon_sym_DQUOTE] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2462), + [anon_sym_class] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_new] = ACTIONS(2462), + [anon_sym_using] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_TILDE] = ACTIONS(2462), + [anon_sym_void] = ACTIONS(2462), + [anon_sym_delete] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_number] = ACTIONS(2462), + [sym_private_property_identifier] = ACTIONS(2462), + [sym_this] = ACTIONS(2462), + [sym_super] = ACTIONS(2462), + [sym_true] = ACTIONS(2462), + [sym_false] = ACTIONS(2462), + [sym_null] = ACTIONS(2462), + [sym_undefined] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_override] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_object] = ACTIONS(2462), + [anon_sym_property] = ACTIONS(2462), + [anon_sym_signal] = ACTIONS(2462), + [anon_sym_on] = ACTIONS(2462), + [anon_sym_required] = ACTIONS(2462), + [anon_sym_component] = ACTIONS(2462), + [anon_sym_abstract] = ACTIONS(2462), + [anon_sym_interface] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), [sym_html_comment] = ACTIONS(5), }, - [1622] = { - [sym_comment] = STATE(1622), - [sym_identifier] = ACTIONS(3666), - [anon_sym_export] = ACTIONS(3666), - [anon_sym_type] = ACTIONS(3666), - [anon_sym_namespace] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3666), - [anon_sym_RBRACE] = ACTIONS(3666), - [anon_sym_typeof] = ACTIONS(3666), - [anon_sym_import] = ACTIONS(3666), - [anon_sym_from] = ACTIONS(3666), - [anon_sym_with] = ACTIONS(3666), - [anon_sym_var] = ACTIONS(3666), - [anon_sym_let] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3666), - [anon_sym_if] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_for] = ACTIONS(3666), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_await] = ACTIONS(3666), - [anon_sym_of] = ACTIONS(3666), - [anon_sym_while] = ACTIONS(3666), - [anon_sym_do] = ACTIONS(3666), - [anon_sym_try] = ACTIONS(3666), - [anon_sym_break] = ACTIONS(3666), - [anon_sym_continue] = ACTIONS(3666), - [anon_sym_debugger] = ACTIONS(3666), - [anon_sym_return] = ACTIONS(3666), - [anon_sym_throw] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym_yield] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_LTtemplate_GT] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3666), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_async] = ACTIONS(3666), - [anon_sym_function] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_TILDE] = ACTIONS(3666), - [anon_sym_void] = ACTIONS(3666), - [anon_sym_delete] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3666), - [anon_sym_DASH_DASH] = ACTIONS(3666), + [1585] = { + [sym_comment] = STATE(1585), + [sym_identifier] = ACTIONS(3594), + [anon_sym_export] = ACTIONS(3594), + [anon_sym_type] = ACTIONS(3594), + [anon_sym_namespace] = ACTIONS(3594), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_RBRACE] = ACTIONS(3594), + [anon_sym_typeof] = ACTIONS(3594), + [anon_sym_import] = ACTIONS(3594), + [anon_sym_from] = ACTIONS(3594), + [anon_sym_with] = ACTIONS(3594), + [anon_sym_var] = ACTIONS(3594), + [anon_sym_let] = ACTIONS(3594), + [anon_sym_const] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_if] = ACTIONS(3594), + [anon_sym_switch] = ACTIONS(3594), + [anon_sym_for] = ACTIONS(3594), + [anon_sym_LPAREN] = ACTIONS(3594), + [anon_sym_await] = ACTIONS(3594), + [anon_sym_of] = ACTIONS(3594), + [anon_sym_while] = ACTIONS(3594), + [anon_sym_do] = ACTIONS(3594), + [anon_sym_try] = ACTIONS(3594), + [anon_sym_break] = ACTIONS(3594), + [anon_sym_continue] = ACTIONS(3594), + [anon_sym_debugger] = ACTIONS(3594), + [anon_sym_return] = ACTIONS(3594), + [anon_sym_throw] = ACTIONS(3594), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym_yield] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3594), + [anon_sym_LTtemplate_GT] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_class] = ACTIONS(3594), + [anon_sym_async] = ACTIONS(3594), + [anon_sym_function] = ACTIONS(3594), + [anon_sym_new] = ACTIONS(3594), + [anon_sym_using] = ACTIONS(3594), + [anon_sym_PLUS] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3594), + [anon_sym_SLASH] = ACTIONS(3594), + [anon_sym_LT] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_void] = ACTIONS(3594), + [anon_sym_delete] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_DASH_DASH] = ACTIONS(3594), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3666), - [sym_number] = ACTIONS(3666), - [sym_private_property_identifier] = ACTIONS(3666), - [sym_this] = ACTIONS(3666), - [sym_super] = ACTIONS(3666), - [sym_true] = ACTIONS(3666), - [sym_false] = ACTIONS(3666), - [sym_null] = ACTIONS(3666), - [sym_undefined] = ACTIONS(3666), - [anon_sym_AT] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_readonly] = ACTIONS(3666), - [anon_sym_get] = ACTIONS(3666), - [anon_sym_set] = ACTIONS(3666), - [anon_sym_declare] = ACTIONS(3666), - [anon_sym_public] = ACTIONS(3666), - [anon_sym_private] = ACTIONS(3666), - [anon_sym_protected] = ACTIONS(3666), - [anon_sym_override] = ACTIONS(3666), - [anon_sym_module] = ACTIONS(3666), - [anon_sym_any] = ACTIONS(3666), - [anon_sym_number] = ACTIONS(3666), - [anon_sym_boolean] = ACTIONS(3666), - [anon_sym_string] = ACTIONS(3666), - [anon_sym_symbol] = ACTIONS(3666), - [anon_sym_object] = ACTIONS(3666), - [anon_sym_property] = ACTIONS(3666), - [anon_sym_signal] = ACTIONS(3666), - [anon_sym_on] = ACTIONS(3666), - [anon_sym_required] = ACTIONS(3666), - [anon_sym_component] = ACTIONS(3666), - [anon_sym_abstract] = ACTIONS(3666), - [anon_sym_interface] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), + [anon_sym_BQUOTE] = ACTIONS(3594), + [sym_number] = ACTIONS(3594), + [sym_private_property_identifier] = ACTIONS(3594), + [sym_this] = ACTIONS(3594), + [sym_super] = ACTIONS(3594), + [sym_true] = ACTIONS(3594), + [sym_false] = ACTIONS(3594), + [sym_null] = ACTIONS(3594), + [sym_undefined] = ACTIONS(3594), + [anon_sym_AT] = ACTIONS(3594), + [anon_sym_static] = ACTIONS(3594), + [anon_sym_readonly] = ACTIONS(3594), + [anon_sym_get] = ACTIONS(3594), + [anon_sym_set] = ACTIONS(3594), + [anon_sym_declare] = ACTIONS(3594), + [anon_sym_public] = ACTIONS(3594), + [anon_sym_private] = ACTIONS(3594), + [anon_sym_protected] = ACTIONS(3594), + [anon_sym_override] = ACTIONS(3594), + [anon_sym_module] = ACTIONS(3594), + [anon_sym_any] = ACTIONS(3594), + [anon_sym_number] = ACTIONS(3594), + [anon_sym_boolean] = ACTIONS(3594), + [anon_sym_string] = ACTIONS(3594), + [anon_sym_symbol] = ACTIONS(3594), + [anon_sym_object] = ACTIONS(3594), + [anon_sym_property] = ACTIONS(3594), + [anon_sym_signal] = ACTIONS(3594), + [anon_sym_on] = ACTIONS(3594), + [anon_sym_required] = ACTIONS(3594), + [anon_sym_component] = ACTIONS(3594), + [anon_sym_abstract] = ACTIONS(3594), + [anon_sym_interface] = ACTIONS(3594), + [anon_sym_enum] = ACTIONS(3594), [sym_html_comment] = ACTIONS(5), }, - [1623] = { - [sym_comment] = STATE(1623), - [sym_identifier] = ACTIONS(3674), - [anon_sym_export] = ACTIONS(3674), - [anon_sym_type] = ACTIONS(3674), - [anon_sym_namespace] = ACTIONS(3674), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_RBRACE] = ACTIONS(3674), - [anon_sym_typeof] = ACTIONS(3674), - [anon_sym_import] = ACTIONS(3674), - [anon_sym_from] = ACTIONS(3674), - [anon_sym_with] = ACTIONS(3674), - [anon_sym_var] = ACTIONS(3674), - [anon_sym_let] = ACTIONS(3674), - [anon_sym_const] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_else] = ACTIONS(3674), - [anon_sym_if] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_for] = ACTIONS(3674), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_await] = ACTIONS(3674), - [anon_sym_of] = ACTIONS(3674), - [anon_sym_while] = ACTIONS(3674), - [anon_sym_do] = ACTIONS(3674), - [anon_sym_try] = ACTIONS(3674), - [anon_sym_break] = ACTIONS(3674), - [anon_sym_continue] = ACTIONS(3674), - [anon_sym_debugger] = ACTIONS(3674), - [anon_sym_return] = ACTIONS(3674), - [anon_sym_throw] = ACTIONS(3674), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym_yield] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_LTtemplate_GT] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3674), - [anon_sym_SQUOTE] = ACTIONS(3674), - [anon_sym_class] = ACTIONS(3674), - [anon_sym_async] = ACTIONS(3674), - [anon_sym_function] = ACTIONS(3674), - [anon_sym_new] = ACTIONS(3674), - [anon_sym_using] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_void] = ACTIONS(3674), - [anon_sym_delete] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3674), + [1586] = { + [sym_comment] = STATE(1586), + [sym_identifier] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_type] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3510), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_typeof] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_from] = ACTIONS(3510), + [anon_sym_with] = ACTIONS(3510), + [anon_sym_var] = ACTIONS(3510), + [anon_sym_let] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3510), + [anon_sym_await] = ACTIONS(3510), + [anon_sym_of] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_debugger] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3510), + [anon_sym_yield] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_LTtemplate_GT] = ACTIONS(3510), + [anon_sym_DQUOTE] = ACTIONS(3510), + [anon_sym_SQUOTE] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_async] = ACTIONS(3510), + [anon_sym_function] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_SLASH] = ACTIONS(3510), + [anon_sym_LT] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3510), + [anon_sym_void] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3510), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3674), - [sym_number] = ACTIONS(3674), - [sym_private_property_identifier] = ACTIONS(3674), - [sym_this] = ACTIONS(3674), - [sym_super] = ACTIONS(3674), - [sym_true] = ACTIONS(3674), - [sym_false] = ACTIONS(3674), - [sym_null] = ACTIONS(3674), - [sym_undefined] = ACTIONS(3674), - [anon_sym_AT] = ACTIONS(3674), - [anon_sym_static] = ACTIONS(3674), - [anon_sym_readonly] = ACTIONS(3674), - [anon_sym_get] = ACTIONS(3674), - [anon_sym_set] = ACTIONS(3674), - [anon_sym_declare] = ACTIONS(3674), - [anon_sym_public] = ACTIONS(3674), - [anon_sym_private] = ACTIONS(3674), - [anon_sym_protected] = ACTIONS(3674), - [anon_sym_override] = ACTIONS(3674), - [anon_sym_module] = ACTIONS(3674), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_property] = ACTIONS(3674), - [anon_sym_signal] = ACTIONS(3674), - [anon_sym_on] = ACTIONS(3674), - [anon_sym_required] = ACTIONS(3674), - [anon_sym_component] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3674), - [anon_sym_interface] = ACTIONS(3674), - [anon_sym_enum] = ACTIONS(3674), + [anon_sym_BQUOTE] = ACTIONS(3510), + [sym_number] = ACTIONS(3510), + [sym_private_property_identifier] = ACTIONS(3510), + [sym_this] = ACTIONS(3510), + [sym_super] = ACTIONS(3510), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [sym_null] = ACTIONS(3510), + [sym_undefined] = ACTIONS(3510), + [anon_sym_AT] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_readonly] = ACTIONS(3510), + [anon_sym_get] = ACTIONS(3510), + [anon_sym_set] = ACTIONS(3510), + [anon_sym_declare] = ACTIONS(3510), + [anon_sym_public] = ACTIONS(3510), + [anon_sym_private] = ACTIONS(3510), + [anon_sym_protected] = ACTIONS(3510), + [anon_sym_override] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_any] = ACTIONS(3510), + [anon_sym_number] = ACTIONS(3510), + [anon_sym_boolean] = ACTIONS(3510), + [anon_sym_string] = ACTIONS(3510), + [anon_sym_symbol] = ACTIONS(3510), + [anon_sym_object] = ACTIONS(3510), + [anon_sym_property] = ACTIONS(3510), + [anon_sym_signal] = ACTIONS(3510), + [anon_sym_on] = ACTIONS(3510), + [anon_sym_required] = ACTIONS(3510), + [anon_sym_component] = ACTIONS(3510), + [anon_sym_abstract] = ACTIONS(3510), + [anon_sym_interface] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), [sym_html_comment] = ACTIONS(5), }, - [1624] = { - [sym_comment] = STATE(1624), - [sym_identifier] = ACTIONS(2402), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_LBRACE] = ACTIONS(2402), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_typeof] = ACTIONS(2402), - [anon_sym_import] = ACTIONS(2402), - [anon_sym_from] = ACTIONS(2402), - [anon_sym_with] = ACTIONS(2402), - [anon_sym_var] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_const] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2402), - [anon_sym_if] = ACTIONS(2402), - [anon_sym_switch] = ACTIONS(2402), - [anon_sym_for] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2402), - [anon_sym_await] = ACTIONS(2402), - [anon_sym_of] = ACTIONS(2402), - [anon_sym_while] = ACTIONS(2402), - [anon_sym_do] = ACTIONS(2402), - [anon_sym_try] = ACTIONS(2402), - [anon_sym_break] = ACTIONS(2402), - [anon_sym_continue] = ACTIONS(2402), - [anon_sym_debugger] = ACTIONS(2402), - [anon_sym_return] = ACTIONS(2402), - [anon_sym_throw] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_yield] = ACTIONS(2402), - [anon_sym_LBRACK] = ACTIONS(2402), - [anon_sym_LTtemplate_GT] = ACTIONS(2402), - [anon_sym_DQUOTE] = ACTIONS(2402), - [anon_sym_SQUOTE] = ACTIONS(2402), - [anon_sym_class] = ACTIONS(2402), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_new] = ACTIONS(2402), - [anon_sym_using] = ACTIONS(2402), - [anon_sym_PLUS] = ACTIONS(2402), - [anon_sym_DASH] = ACTIONS(2402), - [anon_sym_SLASH] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(2402), - [anon_sym_TILDE] = ACTIONS(2402), - [anon_sym_void] = ACTIONS(2402), - [anon_sym_delete] = ACTIONS(2402), - [anon_sym_PLUS_PLUS] = ACTIONS(2402), - [anon_sym_DASH_DASH] = ACTIONS(2402), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2402), - [sym_number] = ACTIONS(2402), - [sym_private_property_identifier] = ACTIONS(2402), - [sym_this] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_true] = ACTIONS(2402), - [sym_false] = ACTIONS(2402), - [sym_null] = ACTIONS(2402), - [sym_undefined] = ACTIONS(2402), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_readonly] = ACTIONS(2402), - [anon_sym_get] = ACTIONS(2402), - [anon_sym_set] = ACTIONS(2402), - [anon_sym_declare] = ACTIONS(2402), - [anon_sym_public] = ACTIONS(2402), - [anon_sym_private] = ACTIONS(2402), - [anon_sym_protected] = ACTIONS(2402), - [anon_sym_override] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_any] = ACTIONS(2402), - [anon_sym_number] = ACTIONS(2402), - [anon_sym_boolean] = ACTIONS(2402), - [anon_sym_string] = ACTIONS(2402), - [anon_sym_symbol] = ACTIONS(2402), - [anon_sym_object] = ACTIONS(2402), - [anon_sym_property] = ACTIONS(2402), - [anon_sym_signal] = ACTIONS(2402), - [anon_sym_on] = ACTIONS(2402), - [anon_sym_required] = ACTIONS(2402), - [anon_sym_component] = ACTIONS(2402), - [anon_sym_abstract] = ACTIONS(2402), - [anon_sym_interface] = ACTIONS(2402), - [anon_sym_enum] = ACTIONS(2402), - [sym__automatic_semicolon] = ACTIONS(2710), + [1587] = { + [sym_comment] = STATE(1587), + [sym_identifier] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_type] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_from] = ACTIONS(3532), + [anon_sym_with] = ACTIONS(3532), + [anon_sym_var] = ACTIONS(3532), + [anon_sym_let] = ACTIONS(3532), + [anon_sym_const] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_if] = ACTIONS(3532), + [anon_sym_switch] = ACTIONS(3532), + [anon_sym_for] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3532), + [anon_sym_of] = ACTIONS(3532), + [anon_sym_while] = ACTIONS(3532), + [anon_sym_do] = ACTIONS(3532), + [anon_sym_try] = ACTIONS(3532), + [anon_sym_break] = ACTIONS(3532), + [anon_sym_continue] = ACTIONS(3532), + [anon_sym_debugger] = ACTIONS(3532), + [anon_sym_return] = ACTIONS(3532), + [anon_sym_throw] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_yield] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LTtemplate_GT] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_async] = ACTIONS(3532), + [anon_sym_function] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_SLASH] = ACTIONS(3532), + [anon_sym_LT] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_void] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3532), + [sym_number] = ACTIONS(3532), + [sym_private_property_identifier] = ACTIONS(3532), + [sym_this] = ACTIONS(3532), + [sym_super] = ACTIONS(3532), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [sym_null] = ACTIONS(3532), + [sym_undefined] = ACTIONS(3532), + [anon_sym_AT] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_readonly] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3532), + [anon_sym_declare] = ACTIONS(3532), + [anon_sym_public] = ACTIONS(3532), + [anon_sym_private] = ACTIONS(3532), + [anon_sym_protected] = ACTIONS(3532), + [anon_sym_override] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_any] = ACTIONS(3532), + [anon_sym_number] = ACTIONS(3532), + [anon_sym_boolean] = ACTIONS(3532), + [anon_sym_string] = ACTIONS(3532), + [anon_sym_symbol] = ACTIONS(3532), + [anon_sym_object] = ACTIONS(3532), + [anon_sym_property] = ACTIONS(3532), + [anon_sym_signal] = ACTIONS(3532), + [anon_sym_on] = ACTIONS(3532), + [anon_sym_required] = ACTIONS(3532), + [anon_sym_component] = ACTIONS(3532), + [anon_sym_abstract] = ACTIONS(3532), + [anon_sym_interface] = ACTIONS(3532), + [anon_sym_enum] = ACTIONS(3532), [sym_html_comment] = ACTIONS(5), }, - [1625] = { - [sym_comment] = STATE(1625), - [sym_identifier] = ACTIONS(3494), - [anon_sym_export] = ACTIONS(3494), - [anon_sym_type] = ACTIONS(3494), - [anon_sym_namespace] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3494), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_typeof] = ACTIONS(3494), - [anon_sym_import] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_with] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_else] = ACTIONS(3494), - [anon_sym_if] = ACTIONS(3494), - [anon_sym_switch] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3494), - [anon_sym_await] = ACTIONS(3494), - [anon_sym_of] = ACTIONS(3494), - [anon_sym_while] = ACTIONS(3494), - [anon_sym_do] = ACTIONS(3494), - [anon_sym_try] = ACTIONS(3494), - [anon_sym_break] = ACTIONS(3494), - [anon_sym_continue] = ACTIONS(3494), - [anon_sym_debugger] = ACTIONS(3494), - [anon_sym_return] = ACTIONS(3494), - [anon_sym_throw] = ACTIONS(3494), - [anon_sym_SEMI] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_LTtemplate_GT] = ACTIONS(3494), - [anon_sym_DQUOTE] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(3494), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_using] = ACTIONS(3494), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_SLASH] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_TILDE] = ACTIONS(3494), - [anon_sym_void] = ACTIONS(3494), - [anon_sym_delete] = ACTIONS(3494), - [anon_sym_PLUS_PLUS] = ACTIONS(3494), - [anon_sym_DASH_DASH] = ACTIONS(3494), + [1588] = { + [sym_comment] = STATE(1588), + [sym_identifier] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_type] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_RBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_from] = ACTIONS(3652), + [anon_sym_with] = ACTIONS(3652), + [anon_sym_var] = ACTIONS(3652), + [anon_sym_let] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_BANG] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_LPAREN] = ACTIONS(3652), + [anon_sym_await] = ACTIONS(3652), + [anon_sym_of] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_debugger] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3652), + [anon_sym_yield] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_LTtemplate_GT] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(3652), + [anon_sym_SQUOTE] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_async] = ACTIONS(3652), + [anon_sym_function] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_SLASH] = ACTIONS(3652), + [anon_sym_LT] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(3652), + [anon_sym_void] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_PLUS_PLUS] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3652), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3494), - [sym_number] = ACTIONS(3494), - [sym_private_property_identifier] = ACTIONS(3494), - [sym_this] = ACTIONS(3494), - [sym_super] = ACTIONS(3494), - [sym_true] = ACTIONS(3494), - [sym_false] = ACTIONS(3494), - [sym_null] = ACTIONS(3494), - [sym_undefined] = ACTIONS(3494), - [anon_sym_AT] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_get] = ACTIONS(3494), - [anon_sym_set] = ACTIONS(3494), - [anon_sym_declare] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_module] = ACTIONS(3494), - [anon_sym_any] = ACTIONS(3494), - [anon_sym_number] = ACTIONS(3494), - [anon_sym_boolean] = ACTIONS(3494), - [anon_sym_string] = ACTIONS(3494), - [anon_sym_symbol] = ACTIONS(3494), - [anon_sym_object] = ACTIONS(3494), - [anon_sym_property] = ACTIONS(3494), - [anon_sym_signal] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_component] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), + [anon_sym_BQUOTE] = ACTIONS(3652), + [sym_number] = ACTIONS(3652), + [sym_private_property_identifier] = ACTIONS(3652), + [sym_this] = ACTIONS(3652), + [sym_super] = ACTIONS(3652), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [sym_null] = ACTIONS(3652), + [sym_undefined] = ACTIONS(3652), + [anon_sym_AT] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_readonly] = ACTIONS(3652), + [anon_sym_get] = ACTIONS(3652), + [anon_sym_set] = ACTIONS(3652), + [anon_sym_declare] = ACTIONS(3652), + [anon_sym_public] = ACTIONS(3652), + [anon_sym_private] = ACTIONS(3652), + [anon_sym_protected] = ACTIONS(3652), + [anon_sym_override] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_any] = ACTIONS(3652), + [anon_sym_number] = ACTIONS(3652), + [anon_sym_boolean] = ACTIONS(3652), + [anon_sym_string] = ACTIONS(3652), + [anon_sym_symbol] = ACTIONS(3652), + [anon_sym_object] = ACTIONS(3652), + [anon_sym_property] = ACTIONS(3652), + [anon_sym_signal] = ACTIONS(3652), + [anon_sym_on] = ACTIONS(3652), + [anon_sym_required] = ACTIONS(3652), + [anon_sym_component] = ACTIONS(3652), + [anon_sym_abstract] = ACTIONS(3652), + [anon_sym_interface] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), [sym_html_comment] = ACTIONS(5), }, - [1626] = { - [sym_comment] = STATE(1626), - [sym_identifier] = ACTIONS(3694), - [anon_sym_export] = ACTIONS(3694), - [anon_sym_type] = ACTIONS(3694), - [anon_sym_namespace] = ACTIONS(3694), - [anon_sym_LBRACE] = ACTIONS(3694), - [anon_sym_RBRACE] = ACTIONS(3694), - [anon_sym_typeof] = ACTIONS(3694), - [anon_sym_import] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_with] = ACTIONS(3694), - [anon_sym_var] = ACTIONS(3694), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_const] = ACTIONS(3694), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_else] = ACTIONS(3694), - [anon_sym_if] = ACTIONS(3694), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_for] = ACTIONS(3694), - [anon_sym_LPAREN] = ACTIONS(3694), - [anon_sym_await] = ACTIONS(3694), - [anon_sym_of] = ACTIONS(3694), - [anon_sym_while] = ACTIONS(3694), - [anon_sym_do] = ACTIONS(3694), - [anon_sym_try] = ACTIONS(3694), - [anon_sym_break] = ACTIONS(3694), - [anon_sym_continue] = ACTIONS(3694), - [anon_sym_debugger] = ACTIONS(3694), - [anon_sym_return] = ACTIONS(3694), - [anon_sym_throw] = ACTIONS(3694), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_yield] = ACTIONS(3694), - [anon_sym_LBRACK] = ACTIONS(3694), - [anon_sym_LTtemplate_GT] = ACTIONS(3694), - [anon_sym_DQUOTE] = ACTIONS(3694), - [anon_sym_SQUOTE] = ACTIONS(3694), - [anon_sym_class] = ACTIONS(3694), - [anon_sym_async] = ACTIONS(3694), - [anon_sym_function] = ACTIONS(3694), - [anon_sym_new] = ACTIONS(3694), - [anon_sym_using] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_TILDE] = ACTIONS(3694), - [anon_sym_void] = ACTIONS(3694), - [anon_sym_delete] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3694), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3694), - [sym_number] = ACTIONS(3694), - [sym_private_property_identifier] = ACTIONS(3694), - [sym_this] = ACTIONS(3694), - [sym_super] = ACTIONS(3694), - [sym_true] = ACTIONS(3694), - [sym_false] = ACTIONS(3694), - [sym_null] = ACTIONS(3694), - [sym_undefined] = ACTIONS(3694), - [anon_sym_AT] = ACTIONS(3694), - [anon_sym_static] = ACTIONS(3694), - [anon_sym_readonly] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(3694), - [anon_sym_set] = ACTIONS(3694), - [anon_sym_declare] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(3694), - [anon_sym_private] = ACTIONS(3694), - [anon_sym_protected] = ACTIONS(3694), - [anon_sym_override] = ACTIONS(3694), - [anon_sym_module] = ACTIONS(3694), - [anon_sym_any] = ACTIONS(3694), - [anon_sym_number] = ACTIONS(3694), - [anon_sym_boolean] = ACTIONS(3694), - [anon_sym_string] = ACTIONS(3694), - [anon_sym_symbol] = ACTIONS(3694), - [anon_sym_object] = ACTIONS(3694), - [anon_sym_property] = ACTIONS(3694), - [anon_sym_signal] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3694), - [anon_sym_required] = ACTIONS(3694), - [anon_sym_component] = ACTIONS(3694), - [anon_sym_abstract] = ACTIONS(3694), - [anon_sym_interface] = ACTIONS(3694), - [anon_sym_enum] = ACTIONS(3694), - [sym_html_comment] = ACTIONS(5), - }, - [1627] = { - [sym_comment] = STATE(1627), - [sym_identifier] = ACTIONS(3508), - [anon_sym_export] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym_import] = ACTIONS(3508), - [anon_sym_from] = ACTIONS(3508), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_else] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_of] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_debugger] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LTtemplate_GT] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3508), - [anon_sym_class] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_using] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_SLASH] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3508), - [anon_sym_void] = ACTIONS(3508), - [anon_sym_delete] = ACTIONS(3508), - [anon_sym_PLUS_PLUS] = ACTIONS(3508), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3508), - [sym_number] = ACTIONS(3508), - [sym_private_property_identifier] = ACTIONS(3508), - [sym_this] = ACTIONS(3508), - [sym_super] = ACTIONS(3508), - [sym_true] = ACTIONS(3508), - [sym_false] = ACTIONS(3508), - [sym_null] = ACTIONS(3508), - [sym_undefined] = ACTIONS(3508), - [anon_sym_AT] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_get] = ACTIONS(3508), - [anon_sym_set] = ACTIONS(3508), - [anon_sym_declare] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_override] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_any] = ACTIONS(3508), - [anon_sym_number] = ACTIONS(3508), - [anon_sym_boolean] = ACTIONS(3508), - [anon_sym_string] = ACTIONS(3508), - [anon_sym_symbol] = ACTIONS(3508), - [anon_sym_object] = ACTIONS(3508), - [anon_sym_property] = ACTIONS(3508), - [anon_sym_signal] = ACTIONS(3508), - [anon_sym_on] = ACTIONS(3508), - [anon_sym_required] = ACTIONS(3508), - [anon_sym_component] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_interface] = ACTIONS(3508), - [anon_sym_enum] = ACTIONS(3508), + [1589] = { + [sym_comment] = STATE(1589), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1628] = { - [sym_comment] = STATE(1628), - [sym_identifier] = ACTIONS(3508), - [anon_sym_export] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym_import] = ACTIONS(3508), - [anon_sym_from] = ACTIONS(3508), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_else] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_of] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_debugger] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LTtemplate_GT] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3508), - [anon_sym_class] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_using] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_SLASH] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3508), - [anon_sym_void] = ACTIONS(3508), - [anon_sym_delete] = ACTIONS(3508), - [anon_sym_PLUS_PLUS] = ACTIONS(3508), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3508), - [sym_number] = ACTIONS(3508), - [sym_private_property_identifier] = ACTIONS(3508), - [sym_this] = ACTIONS(3508), - [sym_super] = ACTIONS(3508), - [sym_true] = ACTIONS(3508), - [sym_false] = ACTIONS(3508), - [sym_null] = ACTIONS(3508), - [sym_undefined] = ACTIONS(3508), - [anon_sym_AT] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_get] = ACTIONS(3508), - [anon_sym_set] = ACTIONS(3508), - [anon_sym_declare] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_override] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_any] = ACTIONS(3508), - [anon_sym_number] = ACTIONS(3508), - [anon_sym_boolean] = ACTIONS(3508), - [anon_sym_string] = ACTIONS(3508), - [anon_sym_symbol] = ACTIONS(3508), - [anon_sym_object] = ACTIONS(3508), - [anon_sym_property] = ACTIONS(3508), - [anon_sym_signal] = ACTIONS(3508), - [anon_sym_on] = ACTIONS(3508), - [anon_sym_required] = ACTIONS(3508), - [anon_sym_component] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_interface] = ACTIONS(3508), - [anon_sym_enum] = ACTIONS(3508), + [1590] = { + [sym_comment] = STATE(1590), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1629] = { - [sym_comment] = STATE(1629), - [sym_identifier] = ACTIONS(3504), - [anon_sym_export] = ACTIONS(3504), - [anon_sym_type] = ACTIONS(3504), - [anon_sym_namespace] = ACTIONS(3504), - [anon_sym_LBRACE] = ACTIONS(3504), - [anon_sym_RBRACE] = ACTIONS(3504), - [anon_sym_typeof] = ACTIONS(3504), - [anon_sym_import] = ACTIONS(3504), - [anon_sym_from] = ACTIONS(3504), - [anon_sym_with] = ACTIONS(3504), - [anon_sym_var] = ACTIONS(3504), - [anon_sym_let] = ACTIONS(3504), - [anon_sym_const] = ACTIONS(3504), - [anon_sym_BANG] = ACTIONS(3504), - [anon_sym_else] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3504), - [anon_sym_switch] = ACTIONS(3504), - [anon_sym_for] = ACTIONS(3504), - [anon_sym_LPAREN] = ACTIONS(3504), - [anon_sym_await] = ACTIONS(3504), - [anon_sym_of] = ACTIONS(3504), - [anon_sym_while] = ACTIONS(3504), - [anon_sym_do] = ACTIONS(3504), - [anon_sym_try] = ACTIONS(3504), - [anon_sym_break] = ACTIONS(3504), - [anon_sym_continue] = ACTIONS(3504), - [anon_sym_debugger] = ACTIONS(3504), - [anon_sym_return] = ACTIONS(3504), - [anon_sym_throw] = ACTIONS(3504), - [anon_sym_SEMI] = ACTIONS(3504), - [anon_sym_yield] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_LTtemplate_GT] = ACTIONS(3504), - [anon_sym_DQUOTE] = ACTIONS(3504), - [anon_sym_SQUOTE] = ACTIONS(3504), - [anon_sym_class] = ACTIONS(3504), - [anon_sym_async] = ACTIONS(3504), - [anon_sym_function] = ACTIONS(3504), - [anon_sym_new] = ACTIONS(3504), - [anon_sym_using] = ACTIONS(3504), - [anon_sym_PLUS] = ACTIONS(3504), - [anon_sym_DASH] = ACTIONS(3504), - [anon_sym_SLASH] = ACTIONS(3504), - [anon_sym_LT] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3504), - [anon_sym_void] = ACTIONS(3504), - [anon_sym_delete] = ACTIONS(3504), - [anon_sym_PLUS_PLUS] = ACTIONS(3504), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3504), - [sym_number] = ACTIONS(3504), - [sym_private_property_identifier] = ACTIONS(3504), - [sym_this] = ACTIONS(3504), - [sym_super] = ACTIONS(3504), - [sym_true] = ACTIONS(3504), - [sym_false] = ACTIONS(3504), - [sym_null] = ACTIONS(3504), - [sym_undefined] = ACTIONS(3504), - [anon_sym_AT] = ACTIONS(3504), - [anon_sym_static] = ACTIONS(3504), - [anon_sym_readonly] = ACTIONS(3504), - [anon_sym_get] = ACTIONS(3504), - [anon_sym_set] = ACTIONS(3504), - [anon_sym_declare] = ACTIONS(3504), - [anon_sym_public] = ACTIONS(3504), - [anon_sym_private] = ACTIONS(3504), - [anon_sym_protected] = ACTIONS(3504), - [anon_sym_override] = ACTIONS(3504), - [anon_sym_module] = ACTIONS(3504), - [anon_sym_any] = ACTIONS(3504), - [anon_sym_number] = ACTIONS(3504), - [anon_sym_boolean] = ACTIONS(3504), - [anon_sym_string] = ACTIONS(3504), - [anon_sym_symbol] = ACTIONS(3504), - [anon_sym_object] = ACTIONS(3504), - [anon_sym_property] = ACTIONS(3504), - [anon_sym_signal] = ACTIONS(3504), - [anon_sym_on] = ACTIONS(3504), - [anon_sym_required] = ACTIONS(3504), - [anon_sym_component] = ACTIONS(3504), - [anon_sym_abstract] = ACTIONS(3504), - [anon_sym_interface] = ACTIONS(3504), - [anon_sym_enum] = ACTIONS(3504), + [1591] = { + [sym_comment] = STATE(1591), + [sym_identifier] = ACTIONS(3612), + [anon_sym_export] = ACTIONS(3612), + [anon_sym_type] = ACTIONS(3612), + [anon_sym_namespace] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_typeof] = ACTIONS(3612), + [anon_sym_import] = ACTIONS(3612), + [anon_sym_from] = ACTIONS(3612), + [anon_sym_with] = ACTIONS(3612), + [anon_sym_var] = ACTIONS(3612), + [anon_sym_let] = ACTIONS(3612), + [anon_sym_const] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_if] = ACTIONS(3612), + [anon_sym_switch] = ACTIONS(3612), + [anon_sym_for] = ACTIONS(3612), + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_await] = ACTIONS(3612), + [anon_sym_of] = ACTIONS(3612), + [anon_sym_while] = ACTIONS(3612), + [anon_sym_do] = ACTIONS(3612), + [anon_sym_try] = ACTIONS(3612), + [anon_sym_break] = ACTIONS(3612), + [anon_sym_continue] = ACTIONS(3612), + [anon_sym_debugger] = ACTIONS(3612), + [anon_sym_return] = ACTIONS(3612), + [anon_sym_throw] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym_yield] = ACTIONS(3612), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_LTtemplate_GT] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(3612), + [anon_sym_class] = ACTIONS(3612), + [anon_sym_async] = ACTIONS(3612), + [anon_sym_function] = ACTIONS(3612), + [anon_sym_new] = ACTIONS(3612), + [anon_sym_using] = ACTIONS(3612), + [anon_sym_PLUS] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3612), + [anon_sym_SLASH] = ACTIONS(3612), + [anon_sym_LT] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3612), + [anon_sym_void] = ACTIONS(3612), + [anon_sym_delete] = ACTIONS(3612), + [anon_sym_PLUS_PLUS] = ACTIONS(3612), + [anon_sym_DASH_DASH] = ACTIONS(3612), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3612), + [sym_number] = ACTIONS(3612), + [sym_private_property_identifier] = ACTIONS(3612), + [sym_this] = ACTIONS(3612), + [sym_super] = ACTIONS(3612), + [sym_true] = ACTIONS(3612), + [sym_false] = ACTIONS(3612), + [sym_null] = ACTIONS(3612), + [sym_undefined] = ACTIONS(3612), + [anon_sym_AT] = ACTIONS(3612), + [anon_sym_static] = ACTIONS(3612), + [anon_sym_readonly] = ACTIONS(3612), + [anon_sym_get] = ACTIONS(3612), + [anon_sym_set] = ACTIONS(3612), + [anon_sym_declare] = ACTIONS(3612), + [anon_sym_public] = ACTIONS(3612), + [anon_sym_private] = ACTIONS(3612), + [anon_sym_protected] = ACTIONS(3612), + [anon_sym_override] = ACTIONS(3612), + [anon_sym_module] = ACTIONS(3612), + [anon_sym_any] = ACTIONS(3612), + [anon_sym_number] = ACTIONS(3612), + [anon_sym_boolean] = ACTIONS(3612), + [anon_sym_string] = ACTIONS(3612), + [anon_sym_symbol] = ACTIONS(3612), + [anon_sym_object] = ACTIONS(3612), + [anon_sym_property] = ACTIONS(3612), + [anon_sym_signal] = ACTIONS(3612), + [anon_sym_on] = ACTIONS(3612), + [anon_sym_required] = ACTIONS(3612), + [anon_sym_component] = ACTIONS(3612), + [anon_sym_abstract] = ACTIONS(3612), + [anon_sym_interface] = ACTIONS(3612), + [anon_sym_enum] = ACTIONS(3612), [sym_html_comment] = ACTIONS(5), }, - [1630] = { - [sym_comment] = STATE(1630), - [sym_identifier] = ACTIONS(3500), - [anon_sym_export] = ACTIONS(3500), - [anon_sym_type] = ACTIONS(3500), - [anon_sym_namespace] = ACTIONS(3500), - [anon_sym_LBRACE] = ACTIONS(3500), - [anon_sym_RBRACE] = ACTIONS(3500), - [anon_sym_typeof] = ACTIONS(3500), - [anon_sym_import] = ACTIONS(3500), - [anon_sym_from] = ACTIONS(3500), - [anon_sym_with] = ACTIONS(3500), - [anon_sym_var] = ACTIONS(3500), - [anon_sym_let] = ACTIONS(3500), - [anon_sym_const] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3500), - [anon_sym_else] = ACTIONS(3500), - [anon_sym_if] = ACTIONS(3500), - [anon_sym_switch] = ACTIONS(3500), - [anon_sym_for] = ACTIONS(3500), - [anon_sym_LPAREN] = ACTIONS(3500), - [anon_sym_await] = ACTIONS(3500), - [anon_sym_of] = ACTIONS(3500), - [anon_sym_while] = ACTIONS(3500), - [anon_sym_do] = ACTIONS(3500), - [anon_sym_try] = ACTIONS(3500), - [anon_sym_break] = ACTIONS(3500), - [anon_sym_continue] = ACTIONS(3500), - [anon_sym_debugger] = ACTIONS(3500), - [anon_sym_return] = ACTIONS(3500), - [anon_sym_throw] = ACTIONS(3500), - [anon_sym_SEMI] = ACTIONS(3500), - [anon_sym_yield] = ACTIONS(3500), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_LTtemplate_GT] = ACTIONS(3500), - [anon_sym_DQUOTE] = ACTIONS(3500), - [anon_sym_SQUOTE] = ACTIONS(3500), - [anon_sym_class] = ACTIONS(3500), - [anon_sym_async] = ACTIONS(3500), - [anon_sym_function] = ACTIONS(3500), - [anon_sym_new] = ACTIONS(3500), - [anon_sym_using] = ACTIONS(3500), - [anon_sym_PLUS] = ACTIONS(3500), - [anon_sym_DASH] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3500), - [anon_sym_TILDE] = ACTIONS(3500), - [anon_sym_void] = ACTIONS(3500), - [anon_sym_delete] = ACTIONS(3500), - [anon_sym_PLUS_PLUS] = ACTIONS(3500), - [anon_sym_DASH_DASH] = ACTIONS(3500), + [1592] = { + [sym_comment] = STATE(1592), + [sym_identifier] = ACTIONS(3622), + [anon_sym_export] = ACTIONS(3622), + [anon_sym_type] = ACTIONS(3622), + [anon_sym_namespace] = ACTIONS(3622), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_typeof] = ACTIONS(3622), + [anon_sym_import] = ACTIONS(3622), + [anon_sym_from] = ACTIONS(3622), + [anon_sym_with] = ACTIONS(3622), + [anon_sym_var] = ACTIONS(3622), + [anon_sym_let] = ACTIONS(3622), + [anon_sym_const] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_if] = ACTIONS(3622), + [anon_sym_switch] = ACTIONS(3622), + [anon_sym_for] = ACTIONS(3622), + [anon_sym_LPAREN] = ACTIONS(3622), + [anon_sym_await] = ACTIONS(3622), + [anon_sym_of] = ACTIONS(3622), + [anon_sym_while] = ACTIONS(3622), + [anon_sym_do] = ACTIONS(3622), + [anon_sym_try] = ACTIONS(3622), + [anon_sym_break] = ACTIONS(3622), + [anon_sym_continue] = ACTIONS(3622), + [anon_sym_debugger] = ACTIONS(3622), + [anon_sym_return] = ACTIONS(3622), + [anon_sym_throw] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym_yield] = ACTIONS(3622), + [anon_sym_LBRACK] = ACTIONS(3622), + [anon_sym_LTtemplate_GT] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_class] = ACTIONS(3622), + [anon_sym_async] = ACTIONS(3622), + [anon_sym_function] = ACTIONS(3622), + [anon_sym_new] = ACTIONS(3622), + [anon_sym_using] = ACTIONS(3622), + [anon_sym_PLUS] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3622), + [anon_sym_SLASH] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_void] = ACTIONS(3622), + [anon_sym_delete] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_DASH_DASH] = ACTIONS(3622), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3500), - [sym_number] = ACTIONS(3500), - [sym_private_property_identifier] = ACTIONS(3500), - [sym_this] = ACTIONS(3500), - [sym_super] = ACTIONS(3500), - [sym_true] = ACTIONS(3500), - [sym_false] = ACTIONS(3500), - [sym_null] = ACTIONS(3500), - [sym_undefined] = ACTIONS(3500), - [anon_sym_AT] = ACTIONS(3500), - [anon_sym_static] = ACTIONS(3500), - [anon_sym_readonly] = ACTIONS(3500), - [anon_sym_get] = ACTIONS(3500), - [anon_sym_set] = ACTIONS(3500), - [anon_sym_declare] = ACTIONS(3500), - [anon_sym_public] = ACTIONS(3500), - [anon_sym_private] = ACTIONS(3500), - [anon_sym_protected] = ACTIONS(3500), - [anon_sym_override] = ACTIONS(3500), - [anon_sym_module] = ACTIONS(3500), - [anon_sym_any] = ACTIONS(3500), - [anon_sym_number] = ACTIONS(3500), - [anon_sym_boolean] = ACTIONS(3500), - [anon_sym_string] = ACTIONS(3500), - [anon_sym_symbol] = ACTIONS(3500), - [anon_sym_object] = ACTIONS(3500), - [anon_sym_property] = ACTIONS(3500), - [anon_sym_signal] = ACTIONS(3500), - [anon_sym_on] = ACTIONS(3500), - [anon_sym_required] = ACTIONS(3500), - [anon_sym_component] = ACTIONS(3500), - [anon_sym_abstract] = ACTIONS(3500), - [anon_sym_interface] = ACTIONS(3500), - [anon_sym_enum] = ACTIONS(3500), + [anon_sym_BQUOTE] = ACTIONS(3622), + [sym_number] = ACTIONS(3622), + [sym_private_property_identifier] = ACTIONS(3622), + [sym_this] = ACTIONS(3622), + [sym_super] = ACTIONS(3622), + [sym_true] = ACTIONS(3622), + [sym_false] = ACTIONS(3622), + [sym_null] = ACTIONS(3622), + [sym_undefined] = ACTIONS(3622), + [anon_sym_AT] = ACTIONS(3622), + [anon_sym_static] = ACTIONS(3622), + [anon_sym_readonly] = ACTIONS(3622), + [anon_sym_get] = ACTIONS(3622), + [anon_sym_set] = ACTIONS(3622), + [anon_sym_declare] = ACTIONS(3622), + [anon_sym_public] = ACTIONS(3622), + [anon_sym_private] = ACTIONS(3622), + [anon_sym_protected] = ACTIONS(3622), + [anon_sym_override] = ACTIONS(3622), + [anon_sym_module] = ACTIONS(3622), + [anon_sym_any] = ACTIONS(3622), + [anon_sym_number] = ACTIONS(3622), + [anon_sym_boolean] = ACTIONS(3622), + [anon_sym_string] = ACTIONS(3622), + [anon_sym_symbol] = ACTIONS(3622), + [anon_sym_object] = ACTIONS(3622), + [anon_sym_property] = ACTIONS(3622), + [anon_sym_signal] = ACTIONS(3622), + [anon_sym_on] = ACTIONS(3622), + [anon_sym_required] = ACTIONS(3622), + [anon_sym_component] = ACTIONS(3622), + [anon_sym_abstract] = ACTIONS(3622), + [anon_sym_interface] = ACTIONS(3622), + [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1631] = { - [sym_comment] = STATE(1631), - [sym_identifier] = ACTIONS(3568), - [anon_sym_export] = ACTIONS(3568), - [anon_sym_type] = ACTIONS(3568), - [anon_sym_namespace] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3568), - [anon_sym_RBRACE] = ACTIONS(3568), - [anon_sym_typeof] = ACTIONS(3568), - [anon_sym_import] = ACTIONS(3568), - [anon_sym_from] = ACTIONS(3568), - [anon_sym_with] = ACTIONS(3568), - [anon_sym_var] = ACTIONS(3568), - [anon_sym_let] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_BANG] = ACTIONS(3568), - [anon_sym_else] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_await] = ACTIONS(3568), - [anon_sym_of] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_debugger] = ACTIONS(3568), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_SEMI] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_LTtemplate_GT] = ACTIONS(3568), - [anon_sym_DQUOTE] = ACTIONS(3568), - [anon_sym_SQUOTE] = ACTIONS(3568), - [anon_sym_class] = ACTIONS(3568), - [anon_sym_async] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_using] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_SLASH] = ACTIONS(3568), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_TILDE] = ACTIONS(3568), - [anon_sym_void] = ACTIONS(3568), - [anon_sym_delete] = ACTIONS(3568), - [anon_sym_PLUS_PLUS] = ACTIONS(3568), - [anon_sym_DASH_DASH] = ACTIONS(3568), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3568), - [sym_number] = ACTIONS(3568), - [sym_private_property_identifier] = ACTIONS(3568), - [sym_this] = ACTIONS(3568), - [sym_super] = ACTIONS(3568), - [sym_true] = ACTIONS(3568), - [sym_false] = ACTIONS(3568), - [sym_null] = ACTIONS(3568), - [sym_undefined] = ACTIONS(3568), - [anon_sym_AT] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_readonly] = ACTIONS(3568), - [anon_sym_get] = ACTIONS(3568), - [anon_sym_set] = ACTIONS(3568), - [anon_sym_declare] = ACTIONS(3568), - [anon_sym_public] = ACTIONS(3568), - [anon_sym_private] = ACTIONS(3568), - [anon_sym_protected] = ACTIONS(3568), - [anon_sym_override] = ACTIONS(3568), - [anon_sym_module] = ACTIONS(3568), - [anon_sym_any] = ACTIONS(3568), - [anon_sym_number] = ACTIONS(3568), - [anon_sym_boolean] = ACTIONS(3568), - [anon_sym_string] = ACTIONS(3568), - [anon_sym_symbol] = ACTIONS(3568), - [anon_sym_object] = ACTIONS(3568), - [anon_sym_property] = ACTIONS(3568), - [anon_sym_signal] = ACTIONS(3568), - [anon_sym_on] = ACTIONS(3568), - [anon_sym_required] = ACTIONS(3568), - [anon_sym_component] = ACTIONS(3568), - [anon_sym_abstract] = ACTIONS(3568), - [anon_sym_interface] = ACTIONS(3568), - [anon_sym_enum] = ACTIONS(3568), + [1593] = { + [sym_comment] = STATE(1593), + [sym_identifier] = ACTIONS(3492), + [anon_sym_export] = ACTIONS(3492), + [anon_sym_type] = ACTIONS(3492), + [anon_sym_namespace] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym_import] = ACTIONS(3492), + [anon_sym_from] = ACTIONS(3492), + [anon_sym_with] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_of] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_debugger] = ACTIONS(3492), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3492), + [anon_sym_LTtemplate_GT] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_class] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_function] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_using] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_SLASH] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_void] = ACTIONS(3492), + [anon_sym_delete] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3492), + [sym_number] = ACTIONS(3492), + [sym_private_property_identifier] = ACTIONS(3492), + [sym_this] = ACTIONS(3492), + [sym_super] = ACTIONS(3492), + [sym_true] = ACTIONS(3492), + [sym_false] = ACTIONS(3492), + [sym_null] = ACTIONS(3492), + [sym_undefined] = ACTIONS(3492), + [anon_sym_AT] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3492), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_declare] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_override] = ACTIONS(3492), + [anon_sym_module] = ACTIONS(3492), + [anon_sym_any] = ACTIONS(3492), + [anon_sym_number] = ACTIONS(3492), + [anon_sym_boolean] = ACTIONS(3492), + [anon_sym_string] = ACTIONS(3492), + [anon_sym_symbol] = ACTIONS(3492), + [anon_sym_object] = ACTIONS(3492), + [anon_sym_property] = ACTIONS(3492), + [anon_sym_signal] = ACTIONS(3492), + [anon_sym_on] = ACTIONS(3492), + [anon_sym_required] = ACTIONS(3492), + [anon_sym_component] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_interface] = ACTIONS(3492), + [anon_sym_enum] = ACTIONS(3492), [sym_html_comment] = ACTIONS(5), }, - [1632] = { - [sym_comment] = STATE(1632), - [sym_identifier] = ACTIONS(3700), - [anon_sym_export] = ACTIONS(3700), - [anon_sym_type] = ACTIONS(3700), - [anon_sym_namespace] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_typeof] = ACTIONS(3700), - [anon_sym_import] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_const] = ACTIONS(3700), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_else] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_await] = ACTIONS(3700), - [anon_sym_of] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_debugger] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_throw] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LTtemplate_GT] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_SQUOTE] = ACTIONS(3700), - [anon_sym_class] = ACTIONS(3700), - [anon_sym_async] = ACTIONS(3700), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_using] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3700), - [anon_sym_void] = ACTIONS(3700), - [anon_sym_delete] = ACTIONS(3700), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3700), - [sym_number] = ACTIONS(3700), - [sym_private_property_identifier] = ACTIONS(3700), - [sym_this] = ACTIONS(3700), - [sym_super] = ACTIONS(3700), - [sym_true] = ACTIONS(3700), - [sym_false] = ACTIONS(3700), - [sym_null] = ACTIONS(3700), - [sym_undefined] = ACTIONS(3700), - [anon_sym_AT] = ACTIONS(3700), - [anon_sym_static] = ACTIONS(3700), - [anon_sym_readonly] = ACTIONS(3700), - [anon_sym_get] = ACTIONS(3700), - [anon_sym_set] = ACTIONS(3700), - [anon_sym_declare] = ACTIONS(3700), - [anon_sym_public] = ACTIONS(3700), - [anon_sym_private] = ACTIONS(3700), - [anon_sym_protected] = ACTIONS(3700), - [anon_sym_override] = ACTIONS(3700), - [anon_sym_module] = ACTIONS(3700), - [anon_sym_any] = ACTIONS(3700), - [anon_sym_number] = ACTIONS(3700), - [anon_sym_boolean] = ACTIONS(3700), - [anon_sym_string] = ACTIONS(3700), - [anon_sym_symbol] = ACTIONS(3700), - [anon_sym_object] = ACTIONS(3700), - [anon_sym_property] = ACTIONS(3700), - [anon_sym_signal] = ACTIONS(3700), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_required] = ACTIONS(3700), - [anon_sym_component] = ACTIONS(3700), - [anon_sym_abstract] = ACTIONS(3700), - [anon_sym_interface] = ACTIONS(3700), - [anon_sym_enum] = ACTIONS(3700), + [1594] = { + [sym_comment] = STATE(1594), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), [sym_html_comment] = ACTIONS(5), }, - [1633] = { - [sym_comment] = STATE(1633), - [sym_identifier] = ACTIONS(3698), - [anon_sym_export] = ACTIONS(3698), - [anon_sym_type] = ACTIONS(3698), - [anon_sym_namespace] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_RBRACE] = ACTIONS(3698), - [anon_sym_typeof] = ACTIONS(3698), - [anon_sym_import] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_with] = ACTIONS(3698), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_const] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_else] = ACTIONS(3698), - [anon_sym_if] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_await] = ACTIONS(3698), - [anon_sym_of] = ACTIONS(3698), - [anon_sym_while] = ACTIONS(3698), - [anon_sym_do] = ACTIONS(3698), - [anon_sym_try] = ACTIONS(3698), - [anon_sym_break] = ACTIONS(3698), - [anon_sym_continue] = ACTIONS(3698), - [anon_sym_debugger] = ACTIONS(3698), - [anon_sym_return] = ACTIONS(3698), - [anon_sym_throw] = ACTIONS(3698), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3698), - [anon_sym_LTtemplate_GT] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3698), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_class] = ACTIONS(3698), - [anon_sym_async] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3698), - [anon_sym_using] = ACTIONS(3698), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_TILDE] = ACTIONS(3698), - [anon_sym_void] = ACTIONS(3698), - [anon_sym_delete] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3698), - [anon_sym_DASH_DASH] = ACTIONS(3698), + [1595] = { + [sym_comment] = STATE(1595), + [sym_identifier] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_type] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_typeof] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_from] = ACTIONS(3644), + [anon_sym_with] = ACTIONS(3644), + [anon_sym_var] = ACTIONS(3644), + [anon_sym_let] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_BANG] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_LPAREN] = ACTIONS(3644), + [anon_sym_await] = ACTIONS(3644), + [anon_sym_of] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_debugger] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3644), + [anon_sym_yield] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_LTtemplate_GT] = ACTIONS(3644), + [anon_sym_DQUOTE] = ACTIONS(3644), + [anon_sym_SQUOTE] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_async] = ACTIONS(3644), + [anon_sym_function] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_SLASH] = ACTIONS(3644), + [anon_sym_LT] = ACTIONS(3644), + [anon_sym_TILDE] = ACTIONS(3644), + [anon_sym_void] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_PLUS_PLUS] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3644), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3698), - [sym_number] = ACTIONS(3698), - [sym_private_property_identifier] = ACTIONS(3698), - [sym_this] = ACTIONS(3698), - [sym_super] = ACTIONS(3698), - [sym_true] = ACTIONS(3698), - [sym_false] = ACTIONS(3698), - [sym_null] = ACTIONS(3698), - [sym_undefined] = ACTIONS(3698), - [anon_sym_AT] = ACTIONS(3698), - [anon_sym_static] = ACTIONS(3698), - [anon_sym_readonly] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(3698), - [anon_sym_set] = ACTIONS(3698), - [anon_sym_declare] = ACTIONS(3698), - [anon_sym_public] = ACTIONS(3698), - [anon_sym_private] = ACTIONS(3698), - [anon_sym_protected] = ACTIONS(3698), - [anon_sym_override] = ACTIONS(3698), - [anon_sym_module] = ACTIONS(3698), - [anon_sym_any] = ACTIONS(3698), - [anon_sym_number] = ACTIONS(3698), - [anon_sym_boolean] = ACTIONS(3698), - [anon_sym_string] = ACTIONS(3698), - [anon_sym_symbol] = ACTIONS(3698), - [anon_sym_object] = ACTIONS(3698), - [anon_sym_property] = ACTIONS(3698), - [anon_sym_signal] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_required] = ACTIONS(3698), - [anon_sym_component] = ACTIONS(3698), - [anon_sym_abstract] = ACTIONS(3698), - [anon_sym_interface] = ACTIONS(3698), - [anon_sym_enum] = ACTIONS(3698), + [anon_sym_BQUOTE] = ACTIONS(3644), + [sym_number] = ACTIONS(3644), + [sym_private_property_identifier] = ACTIONS(3644), + [sym_this] = ACTIONS(3644), + [sym_super] = ACTIONS(3644), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [sym_null] = ACTIONS(3644), + [sym_undefined] = ACTIONS(3644), + [anon_sym_AT] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_readonly] = ACTIONS(3644), + [anon_sym_get] = ACTIONS(3644), + [anon_sym_set] = ACTIONS(3644), + [anon_sym_declare] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_override] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_any] = ACTIONS(3644), + [anon_sym_number] = ACTIONS(3644), + [anon_sym_boolean] = ACTIONS(3644), + [anon_sym_string] = ACTIONS(3644), + [anon_sym_symbol] = ACTIONS(3644), + [anon_sym_object] = ACTIONS(3644), + [anon_sym_property] = ACTIONS(3644), + [anon_sym_signal] = ACTIONS(3644), + [anon_sym_on] = ACTIONS(3644), + [anon_sym_required] = ACTIONS(3644), + [anon_sym_component] = ACTIONS(3644), + [anon_sym_abstract] = ACTIONS(3644), + [anon_sym_interface] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), [sym_html_comment] = ACTIONS(5), }, - [1634] = { - [sym_comment] = STATE(1634), - [sym_identifier] = ACTIONS(3546), - [anon_sym_export] = ACTIONS(3546), - [anon_sym_type] = ACTIONS(3546), - [anon_sym_namespace] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_RBRACE] = ACTIONS(3546), - [anon_sym_typeof] = ACTIONS(3546), - [anon_sym_import] = ACTIONS(3546), - [anon_sym_from] = ACTIONS(3546), - [anon_sym_with] = ACTIONS(3546), - [anon_sym_var] = ACTIONS(3546), - [anon_sym_let] = ACTIONS(3546), - [anon_sym_const] = ACTIONS(3546), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_else] = ACTIONS(3546), - [anon_sym_if] = ACTIONS(3546), - [anon_sym_switch] = ACTIONS(3546), - [anon_sym_for] = ACTIONS(3546), - [anon_sym_LPAREN] = ACTIONS(3546), - [anon_sym_await] = ACTIONS(3546), - [anon_sym_of] = ACTIONS(3546), - [anon_sym_while] = ACTIONS(3546), - [anon_sym_do] = ACTIONS(3546), - [anon_sym_try] = ACTIONS(3546), - [anon_sym_break] = ACTIONS(3546), - [anon_sym_continue] = ACTIONS(3546), - [anon_sym_debugger] = ACTIONS(3546), - [anon_sym_return] = ACTIONS(3546), - [anon_sym_throw] = ACTIONS(3546), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_yield] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3546), - [anon_sym_LTtemplate_GT] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(3546), - [anon_sym_SQUOTE] = ACTIONS(3546), - [anon_sym_class] = ACTIONS(3546), - [anon_sym_async] = ACTIONS(3546), - [anon_sym_function] = ACTIONS(3546), - [anon_sym_new] = ACTIONS(3546), - [anon_sym_using] = ACTIONS(3546), - [anon_sym_PLUS] = ACTIONS(3546), - [anon_sym_DASH] = ACTIONS(3546), - [anon_sym_SLASH] = ACTIONS(3546), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_void] = ACTIONS(3546), - [anon_sym_delete] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_DASH_DASH] = ACTIONS(3546), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3546), - [sym_number] = ACTIONS(3546), - [sym_private_property_identifier] = ACTIONS(3546), - [sym_this] = ACTIONS(3546), - [sym_super] = ACTIONS(3546), - [sym_true] = ACTIONS(3546), - [sym_false] = ACTIONS(3546), - [sym_null] = ACTIONS(3546), - [sym_undefined] = ACTIONS(3546), - [anon_sym_AT] = ACTIONS(3546), - [anon_sym_static] = ACTIONS(3546), - [anon_sym_readonly] = ACTIONS(3546), - [anon_sym_get] = ACTIONS(3546), - [anon_sym_set] = ACTIONS(3546), - [anon_sym_declare] = ACTIONS(3546), - [anon_sym_public] = ACTIONS(3546), - [anon_sym_private] = ACTIONS(3546), - [anon_sym_protected] = ACTIONS(3546), - [anon_sym_override] = ACTIONS(3546), - [anon_sym_module] = ACTIONS(3546), - [anon_sym_any] = ACTIONS(3546), - [anon_sym_number] = ACTIONS(3546), - [anon_sym_boolean] = ACTIONS(3546), - [anon_sym_string] = ACTIONS(3546), - [anon_sym_symbol] = ACTIONS(3546), - [anon_sym_object] = ACTIONS(3546), - [anon_sym_property] = ACTIONS(3546), - [anon_sym_signal] = ACTIONS(3546), - [anon_sym_on] = ACTIONS(3546), - [anon_sym_required] = ACTIONS(3546), - [anon_sym_component] = ACTIONS(3546), - [anon_sym_abstract] = ACTIONS(3546), - [anon_sym_interface] = ACTIONS(3546), - [anon_sym_enum] = ACTIONS(3546), + [1596] = { + [sym_comment] = STATE(1596), + [sym_identifier] = ACTIONS(3476), + [anon_sym_export] = ACTIONS(3476), + [anon_sym_type] = ACTIONS(3476), + [anon_sym_namespace] = ACTIONS(3476), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3476), + [anon_sym_import] = ACTIONS(3476), + [anon_sym_from] = ACTIONS(3476), + [anon_sym_with] = ACTIONS(3476), + [anon_sym_var] = ACTIONS(3476), + [anon_sym_let] = ACTIONS(3476), + [anon_sym_const] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_if] = ACTIONS(3476), + [anon_sym_switch] = ACTIONS(3476), + [anon_sym_for] = ACTIONS(3476), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3476), + [anon_sym_of] = ACTIONS(3476), + [anon_sym_while] = ACTIONS(3476), + [anon_sym_do] = ACTIONS(3476), + [anon_sym_try] = ACTIONS(3476), + [anon_sym_break] = ACTIONS(3476), + [anon_sym_continue] = ACTIONS(3476), + [anon_sym_debugger] = ACTIONS(3476), + [anon_sym_return] = ACTIONS(3476), + [anon_sym_throw] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_yield] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LTtemplate_GT] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [anon_sym_class] = ACTIONS(3476), + [anon_sym_async] = ACTIONS(3476), + [anon_sym_function] = ACTIONS(3476), + [anon_sym_new] = ACTIONS(3476), + [anon_sym_using] = ACTIONS(3476), + [anon_sym_PLUS] = ACTIONS(3476), + [anon_sym_DASH] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3476), + [anon_sym_delete] = ACTIONS(3476), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_number] = ACTIONS(3476), + [sym_private_property_identifier] = ACTIONS(3476), + [sym_this] = ACTIONS(3476), + [sym_super] = ACTIONS(3476), + [sym_true] = ACTIONS(3476), + [sym_false] = ACTIONS(3476), + [sym_null] = ACTIONS(3476), + [sym_undefined] = ACTIONS(3476), + [anon_sym_AT] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3476), + [anon_sym_readonly] = ACTIONS(3476), + [anon_sym_get] = ACTIONS(3476), + [anon_sym_set] = ACTIONS(3476), + [anon_sym_declare] = ACTIONS(3476), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_override] = ACTIONS(3476), + [anon_sym_module] = ACTIONS(3476), + [anon_sym_any] = ACTIONS(3476), + [anon_sym_number] = ACTIONS(3476), + [anon_sym_boolean] = ACTIONS(3476), + [anon_sym_string] = ACTIONS(3476), + [anon_sym_symbol] = ACTIONS(3476), + [anon_sym_object] = ACTIONS(3476), + [anon_sym_property] = ACTIONS(3476), + [anon_sym_signal] = ACTIONS(3476), + [anon_sym_on] = ACTIONS(3476), + [anon_sym_required] = ACTIONS(3476), + [anon_sym_component] = ACTIONS(3476), + [anon_sym_abstract] = ACTIONS(3476), + [anon_sym_interface] = ACTIONS(3476), + [anon_sym_enum] = ACTIONS(3476), [sym_html_comment] = ACTIONS(5), }, - [1635] = { - [sym_comment] = STATE(1635), - [sym_identifier] = ACTIONS(3692), - [anon_sym_export] = ACTIONS(3692), - [anon_sym_type] = ACTIONS(3692), - [anon_sym_namespace] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3692), - [anon_sym_RBRACE] = ACTIONS(3692), - [anon_sym_typeof] = ACTIONS(3692), - [anon_sym_import] = ACTIONS(3692), - [anon_sym_from] = ACTIONS(3692), - [anon_sym_with] = ACTIONS(3692), - [anon_sym_var] = ACTIONS(3692), - [anon_sym_let] = ACTIONS(3692), - [anon_sym_const] = ACTIONS(3692), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_else] = ACTIONS(3692), - [anon_sym_if] = ACTIONS(3692), - [anon_sym_switch] = ACTIONS(3692), - [anon_sym_for] = ACTIONS(3692), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_await] = ACTIONS(3692), - [anon_sym_of] = ACTIONS(3692), - [anon_sym_while] = ACTIONS(3692), - [anon_sym_do] = ACTIONS(3692), - [anon_sym_try] = ACTIONS(3692), - [anon_sym_break] = ACTIONS(3692), - [anon_sym_continue] = ACTIONS(3692), - [anon_sym_debugger] = ACTIONS(3692), - [anon_sym_return] = ACTIONS(3692), - [anon_sym_throw] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_yield] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3692), - [anon_sym_LTtemplate_GT] = ACTIONS(3692), - [anon_sym_DQUOTE] = ACTIONS(3692), - [anon_sym_SQUOTE] = ACTIONS(3692), - [anon_sym_class] = ACTIONS(3692), - [anon_sym_async] = ACTIONS(3692), - [anon_sym_function] = ACTIONS(3692), - [anon_sym_new] = ACTIONS(3692), - [anon_sym_using] = ACTIONS(3692), - [anon_sym_PLUS] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3692), - [anon_sym_SLASH] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_void] = ACTIONS(3692), - [anon_sym_delete] = ACTIONS(3692), - [anon_sym_PLUS_PLUS] = ACTIONS(3692), - [anon_sym_DASH_DASH] = ACTIONS(3692), + [1597] = { + [sym_comment] = STATE(1597), + [sym_identifier] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_type] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3686), + [anon_sym_RBRACE] = ACTIONS(3686), + [anon_sym_typeof] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_from] = ACTIONS(3686), + [anon_sym_with] = ACTIONS(3686), + [anon_sym_var] = ACTIONS(3686), + [anon_sym_let] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_BANG] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_LPAREN] = ACTIONS(3686), + [anon_sym_await] = ACTIONS(3686), + [anon_sym_of] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_debugger] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3686), + [anon_sym_yield] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_LTtemplate_GT] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(3686), + [anon_sym_SQUOTE] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_async] = ACTIONS(3686), + [anon_sym_function] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_SLASH] = ACTIONS(3686), + [anon_sym_LT] = ACTIONS(3686), + [anon_sym_TILDE] = ACTIONS(3686), + [anon_sym_void] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_PLUS_PLUS] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3686), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3692), - [sym_number] = ACTIONS(3692), - [sym_private_property_identifier] = ACTIONS(3692), - [sym_this] = ACTIONS(3692), - [sym_super] = ACTIONS(3692), - [sym_true] = ACTIONS(3692), - [sym_false] = ACTIONS(3692), - [sym_null] = ACTIONS(3692), - [sym_undefined] = ACTIONS(3692), - [anon_sym_AT] = ACTIONS(3692), - [anon_sym_static] = ACTIONS(3692), - [anon_sym_readonly] = ACTIONS(3692), - [anon_sym_get] = ACTIONS(3692), - [anon_sym_set] = ACTIONS(3692), - [anon_sym_declare] = ACTIONS(3692), - [anon_sym_public] = ACTIONS(3692), - [anon_sym_private] = ACTIONS(3692), - [anon_sym_protected] = ACTIONS(3692), - [anon_sym_override] = ACTIONS(3692), - [anon_sym_module] = ACTIONS(3692), - [anon_sym_any] = ACTIONS(3692), - [anon_sym_number] = ACTIONS(3692), - [anon_sym_boolean] = ACTIONS(3692), - [anon_sym_string] = ACTIONS(3692), - [anon_sym_symbol] = ACTIONS(3692), - [anon_sym_object] = ACTIONS(3692), - [anon_sym_property] = ACTIONS(3692), - [anon_sym_signal] = ACTIONS(3692), - [anon_sym_on] = ACTIONS(3692), - [anon_sym_required] = ACTIONS(3692), - [anon_sym_component] = ACTIONS(3692), - [anon_sym_abstract] = ACTIONS(3692), - [anon_sym_interface] = ACTIONS(3692), - [anon_sym_enum] = ACTIONS(3692), - [sym_html_comment] = ACTIONS(5), - }, - [1636] = { - [sym_comment] = STATE(1636), - [sym_identifier] = ACTIONS(3688), - [anon_sym_export] = ACTIONS(3688), - [anon_sym_type] = ACTIONS(3688), - [anon_sym_namespace] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3688), - [anon_sym_RBRACE] = ACTIONS(3688), - [anon_sym_typeof] = ACTIONS(3688), - [anon_sym_import] = ACTIONS(3688), - [anon_sym_from] = ACTIONS(3688), - [anon_sym_with] = ACTIONS(3688), - [anon_sym_var] = ACTIONS(3688), - [anon_sym_let] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_BANG] = ACTIONS(3688), - [anon_sym_else] = ACTIONS(3688), - [anon_sym_if] = ACTIONS(3688), - [anon_sym_switch] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_await] = ACTIONS(3688), - [anon_sym_of] = ACTIONS(3688), - [anon_sym_while] = ACTIONS(3688), - [anon_sym_do] = ACTIONS(3688), - [anon_sym_try] = ACTIONS(3688), - [anon_sym_break] = ACTIONS(3688), - [anon_sym_continue] = ACTIONS(3688), - [anon_sym_debugger] = ACTIONS(3688), - [anon_sym_return] = ACTIONS(3688), - [anon_sym_throw] = ACTIONS(3688), - [anon_sym_SEMI] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3688), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LTtemplate_GT] = ACTIONS(3688), - [anon_sym_DQUOTE] = ACTIONS(3688), - [anon_sym_SQUOTE] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_async] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3688), - [anon_sym_using] = ACTIONS(3688), - [anon_sym_PLUS] = ACTIONS(3688), - [anon_sym_DASH] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_TILDE] = ACTIONS(3688), - [anon_sym_void] = ACTIONS(3688), - [anon_sym_delete] = ACTIONS(3688), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3688), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3688), - [sym_number] = ACTIONS(3688), - [sym_private_property_identifier] = ACTIONS(3688), - [sym_this] = ACTIONS(3688), - [sym_super] = ACTIONS(3688), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [sym_null] = ACTIONS(3688), - [sym_undefined] = ACTIONS(3688), - [anon_sym_AT] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_get] = ACTIONS(3688), - [anon_sym_set] = ACTIONS(3688), - [anon_sym_declare] = ACTIONS(3688), - [anon_sym_public] = ACTIONS(3688), - [anon_sym_private] = ACTIONS(3688), - [anon_sym_protected] = ACTIONS(3688), - [anon_sym_override] = ACTIONS(3688), - [anon_sym_module] = ACTIONS(3688), - [anon_sym_any] = ACTIONS(3688), - [anon_sym_number] = ACTIONS(3688), - [anon_sym_boolean] = ACTIONS(3688), - [anon_sym_string] = ACTIONS(3688), - [anon_sym_symbol] = ACTIONS(3688), - [anon_sym_object] = ACTIONS(3688), - [anon_sym_property] = ACTIONS(3688), - [anon_sym_signal] = ACTIONS(3688), - [anon_sym_on] = ACTIONS(3688), - [anon_sym_required] = ACTIONS(3688), - [anon_sym_component] = ACTIONS(3688), - [anon_sym_abstract] = ACTIONS(3688), - [anon_sym_interface] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), + [anon_sym_BQUOTE] = ACTIONS(3686), + [sym_number] = ACTIONS(3686), + [sym_private_property_identifier] = ACTIONS(3686), + [sym_this] = ACTIONS(3686), + [sym_super] = ACTIONS(3686), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [sym_null] = ACTIONS(3686), + [sym_undefined] = ACTIONS(3686), + [anon_sym_AT] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_readonly] = ACTIONS(3686), + [anon_sym_get] = ACTIONS(3686), + [anon_sym_set] = ACTIONS(3686), + [anon_sym_declare] = ACTIONS(3686), + [anon_sym_public] = ACTIONS(3686), + [anon_sym_private] = ACTIONS(3686), + [anon_sym_protected] = ACTIONS(3686), + [anon_sym_override] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_any] = ACTIONS(3686), + [anon_sym_number] = ACTIONS(3686), + [anon_sym_boolean] = ACTIONS(3686), + [anon_sym_string] = ACTIONS(3686), + [anon_sym_symbol] = ACTIONS(3686), + [anon_sym_object] = ACTIONS(3686), + [anon_sym_property] = ACTIONS(3686), + [anon_sym_signal] = ACTIONS(3686), + [anon_sym_on] = ACTIONS(3686), + [anon_sym_required] = ACTIONS(3686), + [anon_sym_component] = ACTIONS(3686), + [anon_sym_abstract] = ACTIONS(3686), + [anon_sym_interface] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), [sym_html_comment] = ACTIONS(5), }, - [1637] = { - [sym_comment] = STATE(1637), + [1598] = { + [sym_comment] = STATE(1598), [sym_identifier] = ACTIONS(3682), [anon_sym_export] = ACTIONS(3682), [anon_sym_type] = ACTIONS(3682), @@ -214458,7 +210529,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3682), [anon_sym_const] = ACTIONS(3682), [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_else] = ACTIONS(3682), [anon_sym_if] = ACTIONS(3682), [anon_sym_switch] = ACTIONS(3682), [anon_sym_for] = ACTIONS(3682), @@ -214530,536 +210600,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3682), [sym_html_comment] = ACTIONS(5), }, - [1638] = { - [sym_comment] = STATE(1638), - [sym_identifier] = ACTIONS(3680), - [anon_sym_export] = ACTIONS(3680), - [anon_sym_type] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3680), - [anon_sym_RBRACE] = ACTIONS(3680), - [anon_sym_typeof] = ACTIONS(3680), - [anon_sym_import] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_with] = ACTIONS(3680), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_else] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_for] = ACTIONS(3680), - [anon_sym_LPAREN] = ACTIONS(3680), - [anon_sym_await] = ACTIONS(3680), - [anon_sym_of] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), - [anon_sym_do] = ACTIONS(3680), - [anon_sym_try] = ACTIONS(3680), - [anon_sym_break] = ACTIONS(3680), - [anon_sym_continue] = ACTIONS(3680), - [anon_sym_debugger] = ACTIONS(3680), - [anon_sym_return] = ACTIONS(3680), - [anon_sym_throw] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_LTtemplate_GT] = ACTIONS(3680), - [anon_sym_DQUOTE] = ACTIONS(3680), - [anon_sym_SQUOTE] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_async] = ACTIONS(3680), - [anon_sym_function] = ACTIONS(3680), - [anon_sym_new] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_void] = ACTIONS(3680), - [anon_sym_delete] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3680), - [sym_number] = ACTIONS(3680), - [sym_private_property_identifier] = ACTIONS(3680), - [sym_this] = ACTIONS(3680), - [sym_super] = ACTIONS(3680), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_AT] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3680), - [anon_sym_get] = ACTIONS(3680), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_declare] = ACTIONS(3680), - [anon_sym_public] = ACTIONS(3680), - [anon_sym_private] = ACTIONS(3680), - [anon_sym_protected] = ACTIONS(3680), - [anon_sym_override] = ACTIONS(3680), - [anon_sym_module] = ACTIONS(3680), - [anon_sym_any] = ACTIONS(3680), - [anon_sym_number] = ACTIONS(3680), - [anon_sym_boolean] = ACTIONS(3680), - [anon_sym_string] = ACTIONS(3680), - [anon_sym_symbol] = ACTIONS(3680), - [anon_sym_object] = ACTIONS(3680), - [anon_sym_property] = ACTIONS(3680), - [anon_sym_signal] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_required] = ACTIONS(3680), - [anon_sym_component] = ACTIONS(3680), - [anon_sym_abstract] = ACTIONS(3680), - [anon_sym_interface] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [sym_html_comment] = ACTIONS(5), - }, - [1639] = { - [sym_comment] = STATE(1639), - [sym_identifier] = ACTIONS(3678), - [anon_sym_export] = ACTIONS(3678), - [anon_sym_type] = ACTIONS(3678), - [anon_sym_namespace] = ACTIONS(3678), - [anon_sym_LBRACE] = ACTIONS(3678), - [anon_sym_RBRACE] = ACTIONS(3678), - [anon_sym_typeof] = ACTIONS(3678), - [anon_sym_import] = ACTIONS(3678), - [anon_sym_from] = ACTIONS(3678), - [anon_sym_with] = ACTIONS(3678), - [anon_sym_var] = ACTIONS(3678), - [anon_sym_let] = ACTIONS(3678), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_else] = ACTIONS(3678), - [anon_sym_if] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3678), - [anon_sym_for] = ACTIONS(3678), - [anon_sym_LPAREN] = ACTIONS(3678), - [anon_sym_await] = ACTIONS(3678), - [anon_sym_of] = ACTIONS(3678), - [anon_sym_while] = ACTIONS(3678), - [anon_sym_do] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_break] = ACTIONS(3678), - [anon_sym_continue] = ACTIONS(3678), - [anon_sym_debugger] = ACTIONS(3678), - [anon_sym_return] = ACTIONS(3678), - [anon_sym_throw] = ACTIONS(3678), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym_yield] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_LTtemplate_GT] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_async] = ACTIONS(3678), - [anon_sym_function] = ACTIONS(3678), - [anon_sym_new] = ACTIONS(3678), - [anon_sym_using] = ACTIONS(3678), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_SLASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_void] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_DASH_DASH] = ACTIONS(3678), + [1599] = { + [sym_comment] = STATE(1599), + [sym_identifier] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_type] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_typeof] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_from] = ACTIONS(3668), + [anon_sym_with] = ACTIONS(3668), + [anon_sym_var] = ACTIONS(3668), + [anon_sym_let] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_BANG] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_await] = ACTIONS(3668), + [anon_sym_of] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_debugger] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3668), + [anon_sym_yield] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_LTtemplate_GT] = ACTIONS(3668), + [anon_sym_DQUOTE] = ACTIONS(3668), + [anon_sym_SQUOTE] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_async] = ACTIONS(3668), + [anon_sym_function] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_SLASH] = ACTIONS(3668), + [anon_sym_LT] = ACTIONS(3668), + [anon_sym_TILDE] = ACTIONS(3668), + [anon_sym_void] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_PLUS_PLUS] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3668), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3678), - [sym_private_property_identifier] = ACTIONS(3678), - [sym_this] = ACTIONS(3678), - [sym_super] = ACTIONS(3678), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_AT] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3678), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3678), - [anon_sym_declare] = ACTIONS(3678), - [anon_sym_public] = ACTIONS(3678), - [anon_sym_private] = ACTIONS(3678), - [anon_sym_protected] = ACTIONS(3678), - [anon_sym_override] = ACTIONS(3678), - [anon_sym_module] = ACTIONS(3678), - [anon_sym_any] = ACTIONS(3678), - [anon_sym_number] = ACTIONS(3678), - [anon_sym_boolean] = ACTIONS(3678), - [anon_sym_string] = ACTIONS(3678), - [anon_sym_symbol] = ACTIONS(3678), - [anon_sym_object] = ACTIONS(3678), - [anon_sym_property] = ACTIONS(3678), - [anon_sym_signal] = ACTIONS(3678), - [anon_sym_on] = ACTIONS(3678), - [anon_sym_required] = ACTIONS(3678), - [anon_sym_component] = ACTIONS(3678), - [anon_sym_abstract] = ACTIONS(3678), - [anon_sym_interface] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), + [anon_sym_BQUOTE] = ACTIONS(3668), + [sym_number] = ACTIONS(3668), + [sym_private_property_identifier] = ACTIONS(3668), + [sym_this] = ACTIONS(3668), + [sym_super] = ACTIONS(3668), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [sym_null] = ACTIONS(3668), + [sym_undefined] = ACTIONS(3668), + [anon_sym_AT] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_readonly] = ACTIONS(3668), + [anon_sym_get] = ACTIONS(3668), + [anon_sym_set] = ACTIONS(3668), + [anon_sym_declare] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_override] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_any] = ACTIONS(3668), + [anon_sym_number] = ACTIONS(3668), + [anon_sym_boolean] = ACTIONS(3668), + [anon_sym_string] = ACTIONS(3668), + [anon_sym_symbol] = ACTIONS(3668), + [anon_sym_object] = ACTIONS(3668), + [anon_sym_property] = ACTIONS(3668), + [anon_sym_signal] = ACTIONS(3668), + [anon_sym_on] = ACTIONS(3668), + [anon_sym_required] = ACTIONS(3668), + [anon_sym_component] = ACTIONS(3668), + [anon_sym_abstract] = ACTIONS(3668), + [anon_sym_interface] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), [sym_html_comment] = ACTIONS(5), }, - [1640] = { - [sym_comment] = STATE(1640), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_namespace] = ACTIONS(2450), - [anon_sym_LBRACE] = ACTIONS(2450), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(2450), - [anon_sym_import] = ACTIONS(2450), - [anon_sym_from] = 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(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_switch] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(2450), - [anon_sym_of] = 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(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_LBRACK] = ACTIONS(2450), - [anon_sym_LTtemplate_GT] = ACTIONS(2450), - [anon_sym_DQUOTE] = ACTIONS(2450), - [anon_sym_SQUOTE] = ACTIONS(2450), - [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(2450), - [anon_sym_void] = ACTIONS(2450), - [anon_sym_delete] = ACTIONS(2450), - [anon_sym_PLUS_PLUS] = ACTIONS(2450), - [anon_sym_DASH_DASH] = ACTIONS(2450), + [1600] = { + [sym_comment] = STATE(1600), + [sym_identifier] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_type] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_typeof] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_from] = ACTIONS(3518), + [anon_sym_with] = ACTIONS(3518), + [anon_sym_var] = ACTIONS(3518), + [anon_sym_let] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_BANG] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3518), + [anon_sym_await] = ACTIONS(3518), + [anon_sym_of] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_debugger] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3518), + [anon_sym_yield] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_LTtemplate_GT] = ACTIONS(3518), + [anon_sym_DQUOTE] = ACTIONS(3518), + [anon_sym_SQUOTE] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_async] = ACTIONS(3518), + [anon_sym_function] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_LT] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3518), + [anon_sym_void] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3518), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2450), - [sym_number] = ACTIONS(2450), - [sym_private_property_identifier] = ACTIONS(2450), - [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(2450), - [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_property] = ACTIONS(2450), - [anon_sym_signal] = ACTIONS(2450), - [anon_sym_on] = ACTIONS(2450), - [anon_sym_required] = ACTIONS(2450), - [anon_sym_component] = ACTIONS(2450), - [anon_sym_abstract] = ACTIONS(2450), - [anon_sym_interface] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [sym__automatic_semicolon] = ACTIONS(2708), - [sym_html_comment] = ACTIONS(5), - }, - [1641] = { - [sym_comment] = STATE(1641), - [sym_identifier] = ACTIONS(3676), - [anon_sym_export] = ACTIONS(3676), - [anon_sym_type] = ACTIONS(3676), - [anon_sym_namespace] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_typeof] = ACTIONS(3676), - [anon_sym_import] = ACTIONS(3676), - [anon_sym_from] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [anon_sym_var] = ACTIONS(3676), - [anon_sym_let] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3676), - [anon_sym_else] = ACTIONS(3676), - [anon_sym_if] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_for] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_await] = ACTIONS(3676), - [anon_sym_of] = ACTIONS(3676), - [anon_sym_while] = ACTIONS(3676), - [anon_sym_do] = ACTIONS(3676), - [anon_sym_try] = ACTIONS(3676), - [anon_sym_break] = ACTIONS(3676), - [anon_sym_continue] = ACTIONS(3676), - [anon_sym_debugger] = ACTIONS(3676), - [anon_sym_return] = ACTIONS(3676), - [anon_sym_throw] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_yield] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_LTtemplate_GT] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(3676), - [anon_sym_SQUOTE] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_async] = ACTIONS(3676), - [anon_sym_function] = ACTIONS(3676), - [anon_sym_new] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3676), - [anon_sym_TILDE] = ACTIONS(3676), - [anon_sym_void] = ACTIONS(3676), - [anon_sym_delete] = ACTIONS(3676), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3676), - [sym_private_property_identifier] = ACTIONS(3676), - [sym_this] = ACTIONS(3676), - [sym_super] = ACTIONS(3676), - [sym_true] = ACTIONS(3676), - [sym_false] = ACTIONS(3676), - [sym_null] = ACTIONS(3676), - [sym_undefined] = ACTIONS(3676), - [anon_sym_AT] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_readonly] = ACTIONS(3676), - [anon_sym_get] = ACTIONS(3676), - [anon_sym_set] = ACTIONS(3676), - [anon_sym_declare] = ACTIONS(3676), - [anon_sym_public] = ACTIONS(3676), - [anon_sym_private] = ACTIONS(3676), - [anon_sym_protected] = ACTIONS(3676), - [anon_sym_override] = ACTIONS(3676), - [anon_sym_module] = ACTIONS(3676), - [anon_sym_any] = ACTIONS(3676), - [anon_sym_number] = ACTIONS(3676), - [anon_sym_boolean] = ACTIONS(3676), - [anon_sym_string] = ACTIONS(3676), - [anon_sym_symbol] = ACTIONS(3676), - [anon_sym_object] = ACTIONS(3676), - [anon_sym_property] = ACTIONS(3676), - [anon_sym_signal] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_required] = ACTIONS(3676), - [anon_sym_component] = ACTIONS(3676), - [anon_sym_abstract] = ACTIONS(3676), - [anon_sym_interface] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), - [sym_html_comment] = ACTIONS(5), - }, - [1642] = { - [sym_comment] = STATE(1642), - [sym_identifier] = ACTIONS(3460), - [anon_sym_export] = ACTIONS(3460), - [anon_sym_type] = ACTIONS(3460), - [anon_sym_namespace] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3460), - [anon_sym_RBRACE] = ACTIONS(3460), - [anon_sym_typeof] = ACTIONS(3460), - [anon_sym_import] = ACTIONS(3460), - [anon_sym_from] = ACTIONS(3460), - [anon_sym_with] = ACTIONS(3460), - [anon_sym_var] = ACTIONS(3460), - [anon_sym_let] = ACTIONS(3460), - [anon_sym_const] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3460), - [anon_sym_if] = ACTIONS(3460), - [anon_sym_switch] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3460), - [anon_sym_await] = ACTIONS(3460), - [anon_sym_of] = ACTIONS(3460), - [anon_sym_while] = ACTIONS(3460), - [anon_sym_do] = ACTIONS(3460), - [anon_sym_try] = ACTIONS(3460), - [anon_sym_break] = ACTIONS(3460), - [anon_sym_continue] = ACTIONS(3460), - [anon_sym_debugger] = ACTIONS(3460), - [anon_sym_return] = ACTIONS(3460), - [anon_sym_throw] = ACTIONS(3460), - [anon_sym_SEMI] = ACTIONS(3460), - [anon_sym_finally] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_LTtemplate_GT] = ACTIONS(3460), - [anon_sym_DQUOTE] = ACTIONS(3460), - [anon_sym_SQUOTE] = ACTIONS(3460), - [anon_sym_class] = ACTIONS(3460), - [anon_sym_async] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3460), - [anon_sym_using] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_SLASH] = ACTIONS(3460), - [anon_sym_LT] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3460), - [anon_sym_void] = ACTIONS(3460), - [anon_sym_delete] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3460), - [anon_sym_DASH_DASH] = ACTIONS(3460), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3460), - [sym_number] = ACTIONS(3460), - [sym_private_property_identifier] = ACTIONS(3460), - [sym_this] = ACTIONS(3460), - [sym_super] = ACTIONS(3460), - [sym_true] = ACTIONS(3460), - [sym_false] = ACTIONS(3460), - [sym_null] = ACTIONS(3460), - [sym_undefined] = ACTIONS(3460), - [anon_sym_AT] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(3460), - [anon_sym_readonly] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(3460), - [anon_sym_set] = ACTIONS(3460), - [anon_sym_declare] = ACTIONS(3460), - [anon_sym_public] = ACTIONS(3460), - [anon_sym_private] = ACTIONS(3460), - [anon_sym_protected] = ACTIONS(3460), - [anon_sym_override] = ACTIONS(3460), - [anon_sym_module] = ACTIONS(3460), - [anon_sym_any] = ACTIONS(3460), - [anon_sym_number] = ACTIONS(3460), - [anon_sym_boolean] = ACTIONS(3460), - [anon_sym_string] = ACTIONS(3460), - [anon_sym_symbol] = ACTIONS(3460), - [anon_sym_object] = ACTIONS(3460), - [anon_sym_property] = ACTIONS(3460), - [anon_sym_signal] = ACTIONS(3460), - [anon_sym_on] = ACTIONS(3460), - [anon_sym_required] = ACTIONS(3460), - [anon_sym_component] = ACTIONS(3460), - [anon_sym_abstract] = ACTIONS(3460), - [anon_sym_interface] = ACTIONS(3460), - [anon_sym_enum] = ACTIONS(3460), + [anon_sym_BQUOTE] = ACTIONS(3518), + [sym_number] = ACTIONS(3518), + [sym_private_property_identifier] = ACTIONS(3518), + [sym_this] = ACTIONS(3518), + [sym_super] = ACTIONS(3518), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_undefined] = ACTIONS(3518), + [anon_sym_AT] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_readonly] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3518), + [anon_sym_set] = ACTIONS(3518), + [anon_sym_declare] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_override] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_any] = ACTIONS(3518), + [anon_sym_number] = ACTIONS(3518), + [anon_sym_boolean] = ACTIONS(3518), + [anon_sym_string] = ACTIONS(3518), + [anon_sym_symbol] = ACTIONS(3518), + [anon_sym_object] = ACTIONS(3518), + [anon_sym_property] = ACTIONS(3518), + [anon_sym_signal] = ACTIONS(3518), + [anon_sym_on] = ACTIONS(3518), + [anon_sym_required] = ACTIONS(3518), + [anon_sym_component] = ACTIONS(3518), + [anon_sym_abstract] = ACTIONS(3518), + [anon_sym_interface] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), [sym_html_comment] = ACTIONS(5), }, - [1643] = { - [sym_comment] = STATE(1643), - [sym_identifier] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3520), - [anon_sym_type] = ACTIONS(3520), - [anon_sym_namespace] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_RBRACE] = ACTIONS(3520), - [anon_sym_typeof] = ACTIONS(3520), - [anon_sym_import] = ACTIONS(3520), - [anon_sym_from] = ACTIONS(3520), - [anon_sym_with] = ACTIONS(3520), - [anon_sym_var] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_BANG] = ACTIONS(3520), - [anon_sym_else] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_await] = ACTIONS(3520), - [anon_sym_of] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_debugger] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3520), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LTtemplate_GT] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_SQUOTE] = ACTIONS(3520), - [anon_sym_class] = ACTIONS(3520), - [anon_sym_async] = ACTIONS(3520), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_using] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3520), - [anon_sym_void] = ACTIONS(3520), - [anon_sym_delete] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3520), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3520), - [sym_number] = ACTIONS(3520), - [sym_private_property_identifier] = ACTIONS(3520), - [sym_this] = ACTIONS(3520), - [sym_super] = ACTIONS(3520), - [sym_true] = ACTIONS(3520), - [sym_false] = ACTIONS(3520), - [sym_null] = ACTIONS(3520), - [sym_undefined] = ACTIONS(3520), - [anon_sym_AT] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_readonly] = ACTIONS(3520), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_declare] = ACTIONS(3520), - [anon_sym_public] = ACTIONS(3520), - [anon_sym_private] = ACTIONS(3520), - [anon_sym_protected] = ACTIONS(3520), - [anon_sym_override] = ACTIONS(3520), - [anon_sym_module] = ACTIONS(3520), - [anon_sym_any] = ACTIONS(3520), - [anon_sym_number] = ACTIONS(3520), - [anon_sym_boolean] = ACTIONS(3520), - [anon_sym_string] = ACTIONS(3520), - [anon_sym_symbol] = ACTIONS(3520), - [anon_sym_object] = ACTIONS(3520), - [anon_sym_property] = ACTIONS(3520), - [anon_sym_signal] = ACTIONS(3520), - [anon_sym_on] = ACTIONS(3520), - [anon_sym_required] = ACTIONS(3520), - [anon_sym_component] = ACTIONS(3520), - [anon_sym_abstract] = ACTIONS(3520), - [anon_sym_interface] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), + [1601] = { + [sym_comment] = STATE(1601), + [sym_identifier] = ACTIONS(3512), + [anon_sym_export] = ACTIONS(3512), + [anon_sym_type] = ACTIONS(3512), + [anon_sym_namespace] = ACTIONS(3512), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3512), + [anon_sym_import] = ACTIONS(3512), + [anon_sym_from] = ACTIONS(3512), + [anon_sym_with] = ACTIONS(3512), + [anon_sym_var] = ACTIONS(3512), + [anon_sym_let] = ACTIONS(3512), + [anon_sym_const] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_if] = ACTIONS(3512), + [anon_sym_switch] = ACTIONS(3512), + [anon_sym_for] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3512), + [anon_sym_of] = ACTIONS(3512), + [anon_sym_while] = ACTIONS(3512), + [anon_sym_do] = ACTIONS(3512), + [anon_sym_try] = ACTIONS(3512), + [anon_sym_break] = ACTIONS(3512), + [anon_sym_continue] = ACTIONS(3512), + [anon_sym_debugger] = ACTIONS(3512), + [anon_sym_return] = ACTIONS(3512), + [anon_sym_throw] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_yield] = ACTIONS(3512), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LTtemplate_GT] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_class] = ACTIONS(3512), + [anon_sym_async] = ACTIONS(3512), + [anon_sym_function] = ACTIONS(3512), + [anon_sym_new] = ACTIONS(3512), + [anon_sym_using] = ACTIONS(3512), + [anon_sym_PLUS] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3512), + [anon_sym_SLASH] = ACTIONS(3512), + [anon_sym_LT] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_void] = ACTIONS(3512), + [anon_sym_delete] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_number] = ACTIONS(3512), + [sym_private_property_identifier] = ACTIONS(3512), + [sym_this] = ACTIONS(3512), + [sym_super] = ACTIONS(3512), + [sym_true] = ACTIONS(3512), + [sym_false] = ACTIONS(3512), + [sym_null] = ACTIONS(3512), + [sym_undefined] = ACTIONS(3512), + [anon_sym_AT] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3512), + [anon_sym_readonly] = ACTIONS(3512), + [anon_sym_get] = ACTIONS(3512), + [anon_sym_set] = ACTIONS(3512), + [anon_sym_declare] = ACTIONS(3512), + [anon_sym_public] = ACTIONS(3512), + [anon_sym_private] = ACTIONS(3512), + [anon_sym_protected] = ACTIONS(3512), + [anon_sym_override] = ACTIONS(3512), + [anon_sym_module] = ACTIONS(3512), + [anon_sym_any] = ACTIONS(3512), + [anon_sym_number] = ACTIONS(3512), + [anon_sym_boolean] = ACTIONS(3512), + [anon_sym_string] = ACTIONS(3512), + [anon_sym_symbol] = ACTIONS(3512), + [anon_sym_object] = ACTIONS(3512), + [anon_sym_property] = ACTIONS(3512), + [anon_sym_signal] = ACTIONS(3512), + [anon_sym_on] = ACTIONS(3512), + [anon_sym_required] = ACTIONS(3512), + [anon_sym_component] = ACTIONS(3512), + [anon_sym_abstract] = ACTIONS(3512), + [anon_sym_interface] = ACTIONS(3512), + [anon_sym_enum] = ACTIONS(3512), [sym_html_comment] = ACTIONS(5), }, - [1644] = { - [sym_comment] = STATE(1644), + [1602] = { + [sym_comment] = STATE(1602), [sym_identifier] = ACTIONS(3488), [anon_sym_export] = ACTIONS(3488), [anon_sym_type] = ACTIONS(3488), @@ -215074,7 +210877,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3488), [anon_sym_const] = ACTIONS(3488), [anon_sym_BANG] = ACTIONS(3488), - [anon_sym_else] = ACTIONS(3488), [anon_sym_if] = ACTIONS(3488), [anon_sym_switch] = ACTIONS(3488), [anon_sym_for] = ACTIONS(3488), @@ -215146,360 +210948,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3488), [sym_html_comment] = ACTIONS(5), }, - [1645] = { - [sym_comment] = STATE(1645), - [sym_identifier] = ACTIONS(3664), - [anon_sym_export] = ACTIONS(3664), - [anon_sym_type] = ACTIONS(3664), - [anon_sym_namespace] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_typeof] = ACTIONS(3664), - [anon_sym_import] = ACTIONS(3664), - [anon_sym_from] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [anon_sym_var] = ACTIONS(3664), - [anon_sym_let] = ACTIONS(3664), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_else] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_for] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_await] = ACTIONS(3664), - [anon_sym_of] = ACTIONS(3664), - [anon_sym_while] = ACTIONS(3664), - [anon_sym_do] = ACTIONS(3664), - [anon_sym_try] = ACTIONS(3664), - [anon_sym_break] = ACTIONS(3664), - [anon_sym_continue] = ACTIONS(3664), - [anon_sym_debugger] = ACTIONS(3664), - [anon_sym_return] = ACTIONS(3664), - [anon_sym_throw] = ACTIONS(3664), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_yield] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_LTtemplate_GT] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_class] = ACTIONS(3664), - [anon_sym_async] = ACTIONS(3664), - [anon_sym_function] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3664), - [anon_sym_using] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_void] = ACTIONS(3664), - [anon_sym_delete] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3664), - [sym_number] = ACTIONS(3664), - [sym_private_property_identifier] = ACTIONS(3664), - [sym_this] = ACTIONS(3664), - [sym_super] = ACTIONS(3664), - [sym_true] = ACTIONS(3664), - [sym_false] = ACTIONS(3664), - [sym_null] = ACTIONS(3664), - [sym_undefined] = ACTIONS(3664), - [anon_sym_AT] = ACTIONS(3664), - [anon_sym_static] = ACTIONS(3664), - [anon_sym_readonly] = ACTIONS(3664), - [anon_sym_get] = ACTIONS(3664), - [anon_sym_set] = ACTIONS(3664), - [anon_sym_declare] = ACTIONS(3664), - [anon_sym_public] = ACTIONS(3664), - [anon_sym_private] = ACTIONS(3664), - [anon_sym_protected] = ACTIONS(3664), - [anon_sym_override] = ACTIONS(3664), - [anon_sym_module] = ACTIONS(3664), - [anon_sym_any] = ACTIONS(3664), - [anon_sym_number] = ACTIONS(3664), - [anon_sym_boolean] = ACTIONS(3664), - [anon_sym_string] = ACTIONS(3664), - [anon_sym_symbol] = ACTIONS(3664), - [anon_sym_object] = ACTIONS(3664), - [anon_sym_property] = ACTIONS(3664), - [anon_sym_signal] = ACTIONS(3664), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_required] = ACTIONS(3664), - [anon_sym_component] = ACTIONS(3664), - [anon_sym_abstract] = ACTIONS(3664), - [anon_sym_interface] = ACTIONS(3664), - [anon_sym_enum] = ACTIONS(3664), - [sym_html_comment] = ACTIONS(5), - }, - [1646] = { - [sym_comment] = STATE(1646), - [sym_identifier] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3652), - [anon_sym_type] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3652), - [anon_sym_import] = ACTIONS(3652), - [anon_sym_from] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [anon_sym_var] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_await] = ACTIONS(3652), - [anon_sym_of] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_debugger] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_yield] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_LTtemplate_GT] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_async] = ACTIONS(3652), - [anon_sym_function] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_void] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3652), - [sym_number] = ACTIONS(3652), - [sym_private_property_identifier] = ACTIONS(3652), - [sym_this] = ACTIONS(3652), - [sym_super] = ACTIONS(3652), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [sym_null] = ACTIONS(3652), - [sym_undefined] = ACTIONS(3652), - [anon_sym_AT] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_readonly] = ACTIONS(3652), - [anon_sym_get] = ACTIONS(3652), - [anon_sym_set] = ACTIONS(3652), - [anon_sym_declare] = ACTIONS(3652), - [anon_sym_public] = ACTIONS(3652), - [anon_sym_private] = ACTIONS(3652), - [anon_sym_protected] = ACTIONS(3652), - [anon_sym_override] = ACTIONS(3652), - [anon_sym_module] = ACTIONS(3652), - [anon_sym_any] = ACTIONS(3652), - [anon_sym_number] = ACTIONS(3652), - [anon_sym_boolean] = ACTIONS(3652), - [anon_sym_string] = ACTIONS(3652), - [anon_sym_symbol] = ACTIONS(3652), - [anon_sym_object] = ACTIONS(3652), - [anon_sym_property] = ACTIONS(3652), - [anon_sym_signal] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_required] = ACTIONS(3652), - [anon_sym_component] = ACTIONS(3652), - [anon_sym_abstract] = ACTIONS(3652), - [anon_sym_interface] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), - [sym_html_comment] = ACTIONS(5), - }, - [1647] = { - [sym_comment] = STATE(1647), - [sym_identifier] = ACTIONS(3646), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_type] = ACTIONS(3646), - [anon_sym_namespace] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(3646), - [anon_sym_typeof] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_from] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_const] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_else] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_LPAREN] = ACTIONS(3646), - [anon_sym_await] = ACTIONS(3646), - [anon_sym_of] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym_yield] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3646), - [anon_sym_LTtemplate_GT] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_class] = ACTIONS(3646), - [anon_sym_async] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_using] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_LT] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_void] = ACTIONS(3646), - [anon_sym_delete] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3646), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3646), - [sym_number] = ACTIONS(3646), - [sym_private_property_identifier] = ACTIONS(3646), - [sym_this] = ACTIONS(3646), - [sym_super] = ACTIONS(3646), - [sym_true] = ACTIONS(3646), - [sym_false] = ACTIONS(3646), - [sym_null] = ACTIONS(3646), - [sym_undefined] = ACTIONS(3646), - [anon_sym_AT] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_readonly] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_declare] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_protected] = ACTIONS(3646), - [anon_sym_override] = ACTIONS(3646), - [anon_sym_module] = ACTIONS(3646), - [anon_sym_any] = ACTIONS(3646), - [anon_sym_number] = ACTIONS(3646), - [anon_sym_boolean] = ACTIONS(3646), - [anon_sym_string] = ACTIONS(3646), - [anon_sym_symbol] = ACTIONS(3646), - [anon_sym_object] = ACTIONS(3646), - [anon_sym_property] = ACTIONS(3646), - [anon_sym_signal] = ACTIONS(3646), - [anon_sym_on] = ACTIONS(3646), - [anon_sym_required] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_enum] = ACTIONS(3646), - [sym_html_comment] = ACTIONS(5), - }, - [1648] = { - [sym_comment] = STATE(1648), - [sym_identifier] = ACTIONS(3644), - [anon_sym_export] = ACTIONS(3644), - [anon_sym_type] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3644), - [anon_sym_RBRACE] = ACTIONS(3644), - [anon_sym_typeof] = ACTIONS(3644), - [anon_sym_import] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3644), - [anon_sym_with] = ACTIONS(3644), - [anon_sym_var] = ACTIONS(3644), - [anon_sym_let] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_else] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_LPAREN] = ACTIONS(3644), - [anon_sym_await] = ACTIONS(3644), - [anon_sym_of] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_debugger] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym_yield] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_LTtemplate_GT] = ACTIONS(3644), - [anon_sym_DQUOTE] = ACTIONS(3644), - [anon_sym_SQUOTE] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_async] = ACTIONS(3644), - [anon_sym_function] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(3644), - [anon_sym_void] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3644), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3644), - [sym_number] = ACTIONS(3644), - [sym_private_property_identifier] = ACTIONS(3644), - [sym_this] = ACTIONS(3644), - [sym_super] = ACTIONS(3644), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [sym_null] = ACTIONS(3644), - [sym_undefined] = ACTIONS(3644), - [anon_sym_AT] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_readonly] = ACTIONS(3644), - [anon_sym_get] = ACTIONS(3644), - [anon_sym_set] = ACTIONS(3644), - [anon_sym_declare] = ACTIONS(3644), - [anon_sym_public] = ACTIONS(3644), - [anon_sym_private] = ACTIONS(3644), - [anon_sym_protected] = ACTIONS(3644), - [anon_sym_override] = ACTIONS(3644), - [anon_sym_module] = ACTIONS(3644), - [anon_sym_any] = ACTIONS(3644), - [anon_sym_number] = ACTIONS(3644), - [anon_sym_boolean] = ACTIONS(3644), - [anon_sym_string] = ACTIONS(3644), - [anon_sym_symbol] = ACTIONS(3644), - [anon_sym_object] = ACTIONS(3644), - [anon_sym_property] = ACTIONS(3644), - [anon_sym_signal] = ACTIONS(3644), - [anon_sym_on] = ACTIONS(3644), - [anon_sym_required] = ACTIONS(3644), - [anon_sym_component] = ACTIONS(3644), - [anon_sym_abstract] = ACTIONS(3644), - [anon_sym_interface] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), - [sym_html_comment] = ACTIONS(5), - }, - [1649] = { - [sym_comment] = STATE(1649), + [1603] = { + [sym_comment] = STATE(1603), [sym_identifier] = ACTIONS(3642), [anon_sym_export] = ACTIONS(3642), [anon_sym_type] = ACTIONS(3642), @@ -215514,7 +210964,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3642), [anon_sym_const] = ACTIONS(3642), [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_else] = ACTIONS(3642), [anon_sym_if] = ACTIONS(3642), [anon_sym_switch] = ACTIONS(3642), [anon_sym_for] = ACTIONS(3642), @@ -215586,2192 +211035,2096 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3642), [sym_html_comment] = ACTIONS(5), }, - [1650] = { - [sym_comment] = STATE(1650), - [sym_identifier] = ACTIONS(3462), - [anon_sym_export] = ACTIONS(3462), - [anon_sym_type] = ACTIONS(3462), - [anon_sym_namespace] = ACTIONS(3462), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_RBRACE] = ACTIONS(3462), - [anon_sym_typeof] = ACTIONS(3462), - [anon_sym_import] = ACTIONS(3462), - [anon_sym_from] = ACTIONS(3462), - [anon_sym_with] = ACTIONS(3462), - [anon_sym_var] = ACTIONS(3462), - [anon_sym_let] = ACTIONS(3462), - [anon_sym_const] = ACTIONS(3462), - [anon_sym_BANG] = ACTIONS(3462), - [anon_sym_if] = ACTIONS(3462), - [anon_sym_switch] = ACTIONS(3462), - [anon_sym_for] = ACTIONS(3462), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_await] = ACTIONS(3462), - [anon_sym_of] = ACTIONS(3462), - [anon_sym_while] = ACTIONS(3462), - [anon_sym_do] = ACTIONS(3462), - [anon_sym_try] = ACTIONS(3462), - [anon_sym_break] = ACTIONS(3462), - [anon_sym_continue] = ACTIONS(3462), - [anon_sym_debugger] = ACTIONS(3462), - [anon_sym_return] = ACTIONS(3462), - [anon_sym_throw] = ACTIONS(3462), - [anon_sym_SEMI] = ACTIONS(3462), - [anon_sym_finally] = ACTIONS(3462), - [anon_sym_yield] = ACTIONS(3462), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LTtemplate_GT] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_SQUOTE] = ACTIONS(3462), - [anon_sym_class] = ACTIONS(3462), - [anon_sym_async] = ACTIONS(3462), - [anon_sym_function] = ACTIONS(3462), - [anon_sym_new] = ACTIONS(3462), - [anon_sym_using] = ACTIONS(3462), - [anon_sym_PLUS] = ACTIONS(3462), - [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_SLASH] = ACTIONS(3462), - [anon_sym_LT] = ACTIONS(3462), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_void] = ACTIONS(3462), - [anon_sym_delete] = ACTIONS(3462), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3462), - [sym_number] = ACTIONS(3462), - [sym_private_property_identifier] = ACTIONS(3462), - [sym_this] = ACTIONS(3462), - [sym_super] = ACTIONS(3462), - [sym_true] = ACTIONS(3462), - [sym_false] = ACTIONS(3462), - [sym_null] = ACTIONS(3462), - [sym_undefined] = ACTIONS(3462), - [anon_sym_AT] = ACTIONS(3462), - [anon_sym_static] = ACTIONS(3462), - [anon_sym_readonly] = ACTIONS(3462), - [anon_sym_get] = ACTIONS(3462), - [anon_sym_set] = ACTIONS(3462), - [anon_sym_declare] = ACTIONS(3462), - [anon_sym_public] = ACTIONS(3462), - [anon_sym_private] = ACTIONS(3462), - [anon_sym_protected] = ACTIONS(3462), - [anon_sym_override] = ACTIONS(3462), - [anon_sym_module] = ACTIONS(3462), - [anon_sym_any] = ACTIONS(3462), - [anon_sym_number] = ACTIONS(3462), - [anon_sym_boolean] = ACTIONS(3462), - [anon_sym_string] = ACTIONS(3462), - [anon_sym_symbol] = ACTIONS(3462), - [anon_sym_object] = ACTIONS(3462), - [anon_sym_property] = ACTIONS(3462), - [anon_sym_signal] = ACTIONS(3462), - [anon_sym_on] = ACTIONS(3462), - [anon_sym_required] = ACTIONS(3462), - [anon_sym_component] = ACTIONS(3462), - [anon_sym_abstract] = ACTIONS(3462), - [anon_sym_interface] = ACTIONS(3462), - [anon_sym_enum] = ACTIONS(3462), - [sym_html_comment] = ACTIONS(5), - }, - [1651] = { - [sym_comment] = STATE(1651), - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2394), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_typeof] = ACTIONS(2394), - [anon_sym_import] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_with] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_const] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2394), - [anon_sym_if] = ACTIONS(2394), - [anon_sym_switch] = ACTIONS(2394), - [anon_sym_for] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2394), - [anon_sym_await] = ACTIONS(2394), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_while] = ACTIONS(2394), - [anon_sym_do] = ACTIONS(2394), - [anon_sym_try] = ACTIONS(2394), - [anon_sym_break] = ACTIONS(2394), - [anon_sym_continue] = ACTIONS(2394), - [anon_sym_debugger] = ACTIONS(2394), - [anon_sym_return] = ACTIONS(2394), - [anon_sym_throw] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2394), - [anon_sym_yield] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_LTtemplate_GT] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2394), - [anon_sym_SQUOTE] = ACTIONS(2394), - [anon_sym_class] = ACTIONS(2394), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_new] = ACTIONS(2394), - [anon_sym_using] = ACTIONS(2394), - [anon_sym_PLUS] = ACTIONS(2394), - [anon_sym_DASH] = ACTIONS(2394), - [anon_sym_SLASH] = ACTIONS(2394), - [anon_sym_LT] = ACTIONS(2394), - [anon_sym_TILDE] = ACTIONS(2394), - [anon_sym_void] = ACTIONS(2394), - [anon_sym_delete] = ACTIONS(2394), - [anon_sym_PLUS_PLUS] = ACTIONS(2394), - [anon_sym_DASH_DASH] = ACTIONS(2394), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2394), - [sym_number] = ACTIONS(2394), - [sym_private_property_identifier] = ACTIONS(2394), - [sym_this] = ACTIONS(2394), - [sym_super] = ACTIONS(2394), - [sym_true] = ACTIONS(2394), - [sym_false] = ACTIONS(2394), - [sym_null] = ACTIONS(2394), - [sym_undefined] = ACTIONS(2394), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_abstract] = ACTIONS(2394), - [anon_sym_interface] = ACTIONS(2394), - [anon_sym_enum] = ACTIONS(2394), - [sym__automatic_semicolon] = ACTIONS(2658), - [sym_html_comment] = ACTIONS(5), - }, - [1652] = { - [sym_comment] = STATE(1652), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_typeof] = ACTIONS(2287), - [anon_sym_import] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_with] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_switch] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_await] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_debugger] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_throw] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_yield] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LTtemplate_GT] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2287), - [anon_sym_class] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_new] = ACTIONS(2287), - [anon_sym_using] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_TILDE] = ACTIONS(2287), - [anon_sym_void] = ACTIONS(2287), - [anon_sym_delete] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [sym_number] = ACTIONS(2287), - [sym_private_property_identifier] = ACTIONS(2287), - [sym_this] = ACTIONS(2287), - [sym_super] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_null] = ACTIONS(2287), - [sym_undefined] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_abstract] = ACTIONS(2287), - [anon_sym_interface] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(2640), - [sym_html_comment] = ACTIONS(5), - }, - [1653] = { - [sym_comment] = STATE(1653), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_LBRACE] = ACTIONS(2382), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_typeof] = ACTIONS(2382), - [anon_sym_import] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_with] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_const] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2382), - [anon_sym_if] = ACTIONS(2382), - [anon_sym_switch] = ACTIONS(2382), - [anon_sym_for] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2382), - [anon_sym_await] = ACTIONS(2382), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_while] = ACTIONS(2382), - [anon_sym_do] = ACTIONS(2382), - [anon_sym_try] = ACTIONS(2382), - [anon_sym_break] = ACTIONS(2382), - [anon_sym_continue] = ACTIONS(2382), - [anon_sym_debugger] = ACTIONS(2382), - [anon_sym_return] = ACTIONS(2382), - [anon_sym_throw] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2382), - [anon_sym_yield] = ACTIONS(2382), - [anon_sym_LBRACK] = ACTIONS(2382), - [anon_sym_LTtemplate_GT] = ACTIONS(2382), - [anon_sym_DQUOTE] = ACTIONS(2382), - [anon_sym_SQUOTE] = ACTIONS(2382), - [anon_sym_class] = ACTIONS(2382), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_new] = ACTIONS(2382), - [anon_sym_using] = ACTIONS(2382), - [anon_sym_PLUS] = ACTIONS(2382), - [anon_sym_DASH] = ACTIONS(2382), - [anon_sym_SLASH] = ACTIONS(2382), - [anon_sym_LT] = ACTIONS(2382), - [anon_sym_TILDE] = ACTIONS(2382), - [anon_sym_void] = ACTIONS(2382), - [anon_sym_delete] = ACTIONS(2382), - [anon_sym_PLUS_PLUS] = ACTIONS(2382), - [anon_sym_DASH_DASH] = ACTIONS(2382), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2382), - [sym_number] = ACTIONS(2382), - [sym_private_property_identifier] = ACTIONS(2382), - [sym_this] = ACTIONS(2382), - [sym_super] = ACTIONS(2382), - [sym_true] = ACTIONS(2382), - [sym_false] = ACTIONS(2382), - [sym_null] = ACTIONS(2382), - [sym_undefined] = ACTIONS(2382), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_abstract] = ACTIONS(2382), - [anon_sym_interface] = ACTIONS(2382), - [anon_sym_enum] = ACTIONS(2382), - [sym__automatic_semicolon] = ACTIONS(2694), - [sym_html_comment] = ACTIONS(5), - }, - [1654] = { - [sym_comment] = STATE(1654), - [sym_identifier] = ACTIONS(3474), - [anon_sym_export] = ACTIONS(3474), - [anon_sym_type] = ACTIONS(3474), - [anon_sym_namespace] = ACTIONS(3474), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_RBRACE] = ACTIONS(3474), - [anon_sym_typeof] = ACTIONS(3474), - [anon_sym_import] = ACTIONS(3474), - [anon_sym_from] = ACTIONS(3474), - [anon_sym_with] = ACTIONS(3474), - [anon_sym_var] = ACTIONS(3474), - [anon_sym_let] = ACTIONS(3474), - [anon_sym_const] = ACTIONS(3474), - [anon_sym_BANG] = ACTIONS(3474), - [anon_sym_if] = ACTIONS(3474), - [anon_sym_switch] = ACTIONS(3474), - [anon_sym_for] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_await] = ACTIONS(3474), - [anon_sym_of] = ACTIONS(3474), - [anon_sym_while] = ACTIONS(3474), - [anon_sym_do] = ACTIONS(3474), - [anon_sym_try] = ACTIONS(3474), - [anon_sym_break] = ACTIONS(3474), - [anon_sym_continue] = ACTIONS(3474), - [anon_sym_debugger] = ACTIONS(3474), - [anon_sym_return] = ACTIONS(3474), - [anon_sym_throw] = ACTIONS(3474), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_finally] = ACTIONS(3474), - [anon_sym_yield] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LTtemplate_GT] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_SQUOTE] = ACTIONS(3474), - [anon_sym_class] = ACTIONS(3474), - [anon_sym_async] = ACTIONS(3474), - [anon_sym_function] = ACTIONS(3474), - [anon_sym_new] = ACTIONS(3474), - [anon_sym_using] = ACTIONS(3474), - [anon_sym_PLUS] = ACTIONS(3474), - [anon_sym_DASH] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3474), - [anon_sym_LT] = ACTIONS(3474), - [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_void] = ACTIONS(3474), - [anon_sym_delete] = ACTIONS(3474), - [anon_sym_PLUS_PLUS] = ACTIONS(3474), - [anon_sym_DASH_DASH] = ACTIONS(3474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3474), - [sym_number] = ACTIONS(3474), - [sym_private_property_identifier] = ACTIONS(3474), - [sym_this] = ACTIONS(3474), - [sym_super] = ACTIONS(3474), - [sym_true] = ACTIONS(3474), - [sym_false] = ACTIONS(3474), - [sym_null] = ACTIONS(3474), - [sym_undefined] = ACTIONS(3474), - [anon_sym_AT] = ACTIONS(3474), - [anon_sym_static] = ACTIONS(3474), - [anon_sym_readonly] = ACTIONS(3474), - [anon_sym_get] = ACTIONS(3474), - [anon_sym_set] = ACTIONS(3474), - [anon_sym_declare] = ACTIONS(3474), - [anon_sym_public] = ACTIONS(3474), - [anon_sym_private] = ACTIONS(3474), - [anon_sym_protected] = ACTIONS(3474), - [anon_sym_override] = ACTIONS(3474), - [anon_sym_module] = ACTIONS(3474), - [anon_sym_any] = ACTIONS(3474), - [anon_sym_number] = ACTIONS(3474), - [anon_sym_boolean] = ACTIONS(3474), - [anon_sym_string] = ACTIONS(3474), - [anon_sym_symbol] = ACTIONS(3474), - [anon_sym_object] = ACTIONS(3474), - [anon_sym_property] = ACTIONS(3474), - [anon_sym_signal] = ACTIONS(3474), - [anon_sym_on] = ACTIONS(3474), - [anon_sym_required] = ACTIONS(3474), - [anon_sym_component] = ACTIONS(3474), - [anon_sym_abstract] = ACTIONS(3474), - [anon_sym_interface] = ACTIONS(3474), - [anon_sym_enum] = ACTIONS(3474), + [1604] = { + [sym_comment] = STATE(1604), + [sym_identifier] = ACTIONS(3716), + [anon_sym_export] = ACTIONS(3716), + [anon_sym_type] = ACTIONS(3716), + [anon_sym_namespace] = ACTIONS(3716), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_RBRACE] = ACTIONS(3716), + [anon_sym_typeof] = ACTIONS(3716), + [anon_sym_import] = ACTIONS(3716), + [anon_sym_from] = ACTIONS(3716), + [anon_sym_with] = ACTIONS(3716), + [anon_sym_var] = ACTIONS(3716), + [anon_sym_let] = ACTIONS(3716), + [anon_sym_const] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_if] = ACTIONS(3716), + [anon_sym_switch] = ACTIONS(3716), + [anon_sym_for] = ACTIONS(3716), + [anon_sym_LPAREN] = ACTIONS(3716), + [anon_sym_await] = ACTIONS(3716), + [anon_sym_of] = ACTIONS(3716), + [anon_sym_while] = ACTIONS(3716), + [anon_sym_do] = ACTIONS(3716), + [anon_sym_try] = ACTIONS(3716), + [anon_sym_break] = ACTIONS(3716), + [anon_sym_continue] = ACTIONS(3716), + [anon_sym_debugger] = ACTIONS(3716), + [anon_sym_return] = ACTIONS(3716), + [anon_sym_throw] = ACTIONS(3716), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym_yield] = ACTIONS(3716), + [anon_sym_LBRACK] = ACTIONS(3716), + [anon_sym_LTtemplate_GT] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_class] = ACTIONS(3716), + [anon_sym_async] = ACTIONS(3716), + [anon_sym_function] = ACTIONS(3716), + [anon_sym_new] = ACTIONS(3716), + [anon_sym_using] = ACTIONS(3716), + [anon_sym_PLUS] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3716), + [anon_sym_SLASH] = ACTIONS(3716), + [anon_sym_LT] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_void] = ACTIONS(3716), + [anon_sym_delete] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3716), + [sym_number] = ACTIONS(3716), + [sym_private_property_identifier] = ACTIONS(3716), + [sym_this] = ACTIONS(3716), + [sym_super] = ACTIONS(3716), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), + [sym_undefined] = ACTIONS(3716), + [anon_sym_AT] = ACTIONS(3716), + [anon_sym_static] = ACTIONS(3716), + [anon_sym_readonly] = ACTIONS(3716), + [anon_sym_get] = ACTIONS(3716), + [anon_sym_set] = ACTIONS(3716), + [anon_sym_declare] = ACTIONS(3716), + [anon_sym_public] = ACTIONS(3716), + [anon_sym_private] = ACTIONS(3716), + [anon_sym_protected] = ACTIONS(3716), + [anon_sym_override] = ACTIONS(3716), + [anon_sym_module] = ACTIONS(3716), + [anon_sym_any] = ACTIONS(3716), + [anon_sym_number] = ACTIONS(3716), + [anon_sym_boolean] = ACTIONS(3716), + [anon_sym_string] = ACTIONS(3716), + [anon_sym_symbol] = ACTIONS(3716), + [anon_sym_object] = ACTIONS(3716), + [anon_sym_property] = ACTIONS(3716), + [anon_sym_signal] = ACTIONS(3716), + [anon_sym_on] = ACTIONS(3716), + [anon_sym_required] = ACTIONS(3716), + [anon_sym_component] = ACTIONS(3716), + [anon_sym_abstract] = ACTIONS(3716), + [anon_sym_interface] = ACTIONS(3716), + [anon_sym_enum] = ACTIONS(3716), [sym_html_comment] = ACTIONS(5), }, - [1655] = { - [sym_comment] = STATE(1655), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_LBRACE] = ACTIONS(2374), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_typeof] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_with] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_switch] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2374), - [anon_sym_await] = ACTIONS(2374), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_do] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_debugger] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_throw] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_LBRACK] = ACTIONS(2374), - [anon_sym_LTtemplate_GT] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_class] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2374), - [anon_sym_using] = ACTIONS(2374), - [anon_sym_PLUS] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2374), - [anon_sym_SLASH] = ACTIONS(2374), - [anon_sym_LT] = ACTIONS(2374), - [anon_sym_TILDE] = ACTIONS(2374), - [anon_sym_void] = ACTIONS(2374), - [anon_sym_delete] = ACTIONS(2374), - [anon_sym_PLUS_PLUS] = ACTIONS(2374), - [anon_sym_DASH_DASH] = ACTIONS(2374), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2374), - [sym_number] = ACTIONS(2374), - [sym_private_property_identifier] = ACTIONS(2374), - [sym_this] = ACTIONS(2374), - [sym_super] = ACTIONS(2374), - [sym_true] = ACTIONS(2374), - [sym_false] = ACTIONS(2374), - [sym_null] = ACTIONS(2374), - [sym_undefined] = ACTIONS(2374), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_abstract] = ACTIONS(2374), - [anon_sym_interface] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(2654), + [1605] = { + [sym_comment] = STATE(1605), + [sym_identifier] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_RBRACE] = ACTIONS(3486), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_from] = ACTIONS(3486), + [anon_sym_with] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_of] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_debugger] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LTtemplate_GT] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_function] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_SLASH] = ACTIONS(3486), + [anon_sym_LT] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3486), + [sym_number] = ACTIONS(3486), + [sym_private_property_identifier] = ACTIONS(3486), + [sym_this] = ACTIONS(3486), + [sym_super] = ACTIONS(3486), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [anon_sym_AT] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_get] = ACTIONS(3486), + [anon_sym_set] = ACTIONS(3486), + [anon_sym_declare] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_override] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_any] = ACTIONS(3486), + [anon_sym_number] = ACTIONS(3486), + [anon_sym_boolean] = ACTIONS(3486), + [anon_sym_string] = ACTIONS(3486), + [anon_sym_symbol] = ACTIONS(3486), + [anon_sym_object] = ACTIONS(3486), + [anon_sym_property] = ACTIONS(3486), + [anon_sym_signal] = ACTIONS(3486), + [anon_sym_on] = ACTIONS(3486), + [anon_sym_required] = ACTIONS(3486), + [anon_sym_component] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), [sym_html_comment] = ACTIONS(5), }, - [1656] = { - [sym_comment] = STATE(1656), - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_namespace] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_typeof] = ACTIONS(2354), - [anon_sym_import] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_with] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_const] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2354), - [anon_sym_for] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_await] = ACTIONS(2354), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_while] = ACTIONS(2354), - [anon_sym_do] = ACTIONS(2354), - [anon_sym_try] = ACTIONS(2354), - [anon_sym_break] = ACTIONS(2354), - [anon_sym_continue] = ACTIONS(2354), - [anon_sym_debugger] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2354), - [anon_sym_throw] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_yield] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LTtemplate_GT] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2354), - [anon_sym_class] = ACTIONS(2354), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_new] = ACTIONS(2354), - [anon_sym_using] = ACTIONS(2354), - [anon_sym_PLUS] = ACTIONS(2354), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_void] = ACTIONS(2354), - [anon_sym_delete] = ACTIONS(2354), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2354), - [sym_number] = ACTIONS(2354), - [sym_private_property_identifier] = ACTIONS(2354), - [sym_this] = ACTIONS(2354), - [sym_super] = ACTIONS(2354), - [sym_true] = ACTIONS(2354), - [sym_false] = ACTIONS(2354), - [sym_null] = ACTIONS(2354), - [sym_undefined] = ACTIONS(2354), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_object] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_abstract] = ACTIONS(2354), - [anon_sym_interface] = ACTIONS(2354), - [anon_sym_enum] = ACTIONS(2354), - [sym__automatic_semicolon] = ACTIONS(2648), + [1606] = { + [sym_comment] = STATE(1606), + [sym_identifier] = ACTIONS(3690), + [anon_sym_export] = ACTIONS(3690), + [anon_sym_type] = ACTIONS(3690), + [anon_sym_namespace] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3690), + [anon_sym_RBRACE] = ACTIONS(3690), + [anon_sym_typeof] = ACTIONS(3690), + [anon_sym_import] = ACTIONS(3690), + [anon_sym_from] = ACTIONS(3690), + [anon_sym_with] = ACTIONS(3690), + [anon_sym_var] = ACTIONS(3690), + [anon_sym_let] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_BANG] = ACTIONS(3690), + [anon_sym_if] = ACTIONS(3690), + [anon_sym_switch] = ACTIONS(3690), + [anon_sym_for] = ACTIONS(3690), + [anon_sym_LPAREN] = ACTIONS(3690), + [anon_sym_await] = ACTIONS(3690), + [anon_sym_of] = ACTIONS(3690), + [anon_sym_while] = ACTIONS(3690), + [anon_sym_do] = ACTIONS(3690), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_break] = ACTIONS(3690), + [anon_sym_continue] = ACTIONS(3690), + [anon_sym_debugger] = ACTIONS(3690), + [anon_sym_return] = ACTIONS(3690), + [anon_sym_throw] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3690), + [anon_sym_yield] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_LTtemplate_GT] = ACTIONS(3690), + [anon_sym_DQUOTE] = ACTIONS(3690), + [anon_sym_SQUOTE] = ACTIONS(3690), + [anon_sym_class] = ACTIONS(3690), + [anon_sym_async] = ACTIONS(3690), + [anon_sym_function] = ACTIONS(3690), + [anon_sym_new] = ACTIONS(3690), + [anon_sym_using] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_SLASH] = ACTIONS(3690), + [anon_sym_LT] = ACTIONS(3690), + [anon_sym_TILDE] = ACTIONS(3690), + [anon_sym_void] = ACTIONS(3690), + [anon_sym_delete] = ACTIONS(3690), + [anon_sym_PLUS_PLUS] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3690), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3690), + [sym_number] = ACTIONS(3690), + [sym_private_property_identifier] = ACTIONS(3690), + [sym_this] = ACTIONS(3690), + [sym_super] = ACTIONS(3690), + [sym_true] = ACTIONS(3690), + [sym_false] = ACTIONS(3690), + [sym_null] = ACTIONS(3690), + [sym_undefined] = ACTIONS(3690), + [anon_sym_AT] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_readonly] = ACTIONS(3690), + [anon_sym_get] = ACTIONS(3690), + [anon_sym_set] = ACTIONS(3690), + [anon_sym_declare] = ACTIONS(3690), + [anon_sym_public] = ACTIONS(3690), + [anon_sym_private] = ACTIONS(3690), + [anon_sym_protected] = ACTIONS(3690), + [anon_sym_override] = ACTIONS(3690), + [anon_sym_module] = ACTIONS(3690), + [anon_sym_any] = ACTIONS(3690), + [anon_sym_number] = ACTIONS(3690), + [anon_sym_boolean] = ACTIONS(3690), + [anon_sym_string] = ACTIONS(3690), + [anon_sym_symbol] = ACTIONS(3690), + [anon_sym_object] = ACTIONS(3690), + [anon_sym_property] = ACTIONS(3690), + [anon_sym_signal] = ACTIONS(3690), + [anon_sym_on] = ACTIONS(3690), + [anon_sym_required] = ACTIONS(3690), + [anon_sym_component] = ACTIONS(3690), + [anon_sym_abstract] = ACTIONS(3690), + [anon_sym_interface] = ACTIONS(3690), + [anon_sym_enum] = ACTIONS(3690), [sym_html_comment] = ACTIONS(5), }, - [1657] = { - [sym_comment] = STATE(1657), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1607] = { + [sym_comment] = STATE(1607), + [sym_identifier] = ACTIONS(3500), + [anon_sym_export] = ACTIONS(3500), + [anon_sym_type] = ACTIONS(3500), + [anon_sym_namespace] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_typeof] = ACTIONS(3500), + [anon_sym_import] = ACTIONS(3500), + [anon_sym_from] = ACTIONS(3500), + [anon_sym_with] = ACTIONS(3500), + [anon_sym_var] = ACTIONS(3500), + [anon_sym_let] = ACTIONS(3500), + [anon_sym_const] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_if] = ACTIONS(3500), + [anon_sym_switch] = ACTIONS(3500), + [anon_sym_for] = ACTIONS(3500), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_await] = ACTIONS(3500), + [anon_sym_of] = ACTIONS(3500), + [anon_sym_while] = ACTIONS(3500), + [anon_sym_do] = ACTIONS(3500), + [anon_sym_try] = ACTIONS(3500), + [anon_sym_break] = ACTIONS(3500), + [anon_sym_continue] = ACTIONS(3500), + [anon_sym_debugger] = ACTIONS(3500), + [anon_sym_return] = ACTIONS(3500), + [anon_sym_throw] = ACTIONS(3500), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_yield] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_LTtemplate_GT] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_class] = ACTIONS(3500), + [anon_sym_async] = ACTIONS(3500), + [anon_sym_function] = ACTIONS(3500), + [anon_sym_new] = ACTIONS(3500), + [anon_sym_using] = ACTIONS(3500), + [anon_sym_PLUS] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_void] = ACTIONS(3500), + [anon_sym_delete] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_DASH_DASH] = ACTIONS(3500), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3736), + [anon_sym_BQUOTE] = ACTIONS(3500), + [sym_number] = ACTIONS(3500), + [sym_private_property_identifier] = ACTIONS(3500), + [sym_this] = ACTIONS(3500), + [sym_super] = ACTIONS(3500), + [sym_true] = ACTIONS(3500), + [sym_false] = ACTIONS(3500), + [sym_null] = ACTIONS(3500), + [sym_undefined] = ACTIONS(3500), + [anon_sym_AT] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3500), + [anon_sym_readonly] = ACTIONS(3500), + [anon_sym_get] = ACTIONS(3500), + [anon_sym_set] = ACTIONS(3500), + [anon_sym_declare] = ACTIONS(3500), + [anon_sym_public] = ACTIONS(3500), + [anon_sym_private] = ACTIONS(3500), + [anon_sym_protected] = ACTIONS(3500), + [anon_sym_override] = ACTIONS(3500), + [anon_sym_module] = ACTIONS(3500), + [anon_sym_any] = ACTIONS(3500), + [anon_sym_number] = ACTIONS(3500), + [anon_sym_boolean] = ACTIONS(3500), + [anon_sym_string] = ACTIONS(3500), + [anon_sym_symbol] = ACTIONS(3500), + [anon_sym_object] = ACTIONS(3500), + [anon_sym_property] = ACTIONS(3500), + [anon_sym_signal] = ACTIONS(3500), + [anon_sym_on] = ACTIONS(3500), + [anon_sym_required] = ACTIONS(3500), + [anon_sym_component] = ACTIONS(3500), + [anon_sym_abstract] = ACTIONS(3500), + [anon_sym_interface] = ACTIONS(3500), + [anon_sym_enum] = ACTIONS(3500), [sym_html_comment] = ACTIONS(5), }, - [1658] = { - [sym_comment] = STATE(1658), - [sym_identifier] = ACTIONS(3506), - [anon_sym_export] = ACTIONS(3506), - [anon_sym_type] = ACTIONS(3506), - [anon_sym_namespace] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(3506), - [anon_sym_RBRACE] = ACTIONS(3506), - [anon_sym_typeof] = ACTIONS(3506), - [anon_sym_import] = ACTIONS(3506), - [anon_sym_from] = ACTIONS(3506), - [anon_sym_with] = ACTIONS(3506), - [anon_sym_var] = ACTIONS(3506), - [anon_sym_let] = ACTIONS(3506), - [anon_sym_const] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3506), - [anon_sym_else] = ACTIONS(3506), - [anon_sym_if] = ACTIONS(3506), - [anon_sym_switch] = ACTIONS(3506), - [anon_sym_for] = ACTIONS(3506), - [anon_sym_LPAREN] = ACTIONS(3506), - [anon_sym_await] = ACTIONS(3506), - [anon_sym_of] = ACTIONS(3506), - [anon_sym_while] = ACTIONS(3506), - [anon_sym_do] = ACTIONS(3506), - [anon_sym_try] = ACTIONS(3506), - [anon_sym_break] = ACTIONS(3506), - [anon_sym_continue] = ACTIONS(3506), - [anon_sym_debugger] = ACTIONS(3506), - [anon_sym_return] = ACTIONS(3506), - [anon_sym_throw] = ACTIONS(3506), - [anon_sym_SEMI] = ACTIONS(3506), - [anon_sym_yield] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(3506), - [anon_sym_LTtemplate_GT] = ACTIONS(3506), - [anon_sym_DQUOTE] = ACTIONS(3506), - [anon_sym_SQUOTE] = ACTIONS(3506), - [anon_sym_class] = ACTIONS(3506), - [anon_sym_async] = ACTIONS(3506), - [anon_sym_function] = ACTIONS(3506), - [anon_sym_new] = ACTIONS(3506), - [anon_sym_using] = ACTIONS(3506), - [anon_sym_PLUS] = ACTIONS(3506), - [anon_sym_DASH] = ACTIONS(3506), - [anon_sym_SLASH] = ACTIONS(3506), - [anon_sym_LT] = ACTIONS(3506), - [anon_sym_TILDE] = ACTIONS(3506), - [anon_sym_void] = ACTIONS(3506), - [anon_sym_delete] = ACTIONS(3506), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3506), - [sym_number] = ACTIONS(3506), - [sym_private_property_identifier] = ACTIONS(3506), - [sym_this] = ACTIONS(3506), - [sym_super] = ACTIONS(3506), - [sym_true] = ACTIONS(3506), - [sym_false] = ACTIONS(3506), - [sym_null] = ACTIONS(3506), - [sym_undefined] = ACTIONS(3506), - [anon_sym_AT] = ACTIONS(3506), - [anon_sym_static] = ACTIONS(3506), - [anon_sym_readonly] = ACTIONS(3506), - [anon_sym_get] = ACTIONS(3506), - [anon_sym_set] = ACTIONS(3506), - [anon_sym_declare] = ACTIONS(3506), - [anon_sym_public] = ACTIONS(3506), - [anon_sym_private] = ACTIONS(3506), - [anon_sym_protected] = ACTIONS(3506), - [anon_sym_override] = ACTIONS(3506), - [anon_sym_module] = ACTIONS(3506), - [anon_sym_any] = ACTIONS(3506), - [anon_sym_number] = ACTIONS(3506), - [anon_sym_boolean] = ACTIONS(3506), - [anon_sym_string] = ACTIONS(3506), - [anon_sym_symbol] = ACTIONS(3506), - [anon_sym_object] = ACTIONS(3506), - [anon_sym_property] = ACTIONS(3506), - [anon_sym_signal] = ACTIONS(3506), - [anon_sym_on] = ACTIONS(3506), - [anon_sym_required] = ACTIONS(3506), - [anon_sym_component] = ACTIONS(3506), - [anon_sym_abstract] = ACTIONS(3506), - [anon_sym_interface] = ACTIONS(3506), - [anon_sym_enum] = ACTIONS(3506), + [1608] = { + [sym_comment] = STATE(1608), + [sym_identifier] = ACTIONS(3694), + [anon_sym_export] = ACTIONS(3694), + [anon_sym_type] = ACTIONS(3694), + [anon_sym_namespace] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3694), + [anon_sym_RBRACE] = ACTIONS(3694), + [anon_sym_typeof] = ACTIONS(3694), + [anon_sym_import] = ACTIONS(3694), + [anon_sym_from] = ACTIONS(3694), + [anon_sym_with] = ACTIONS(3694), + [anon_sym_var] = ACTIONS(3694), + [anon_sym_let] = ACTIONS(3694), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3694), + [anon_sym_LPAREN] = ACTIONS(3694), + [anon_sym_await] = ACTIONS(3694), + [anon_sym_of] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3694), + [anon_sym_do] = ACTIONS(3694), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_break] = ACTIONS(3694), + [anon_sym_continue] = ACTIONS(3694), + [anon_sym_debugger] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(3694), + [anon_sym_throw] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3694), + [anon_sym_yield] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_LTtemplate_GT] = ACTIONS(3694), + [anon_sym_DQUOTE] = ACTIONS(3694), + [anon_sym_SQUOTE] = ACTIONS(3694), + [anon_sym_class] = ACTIONS(3694), + [anon_sym_async] = ACTIONS(3694), + [anon_sym_function] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3694), + [anon_sym_using] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_SLASH] = ACTIONS(3694), + [anon_sym_LT] = ACTIONS(3694), + [anon_sym_TILDE] = ACTIONS(3694), + [anon_sym_void] = ACTIONS(3694), + [anon_sym_delete] = ACTIONS(3694), + [anon_sym_PLUS_PLUS] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3694), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3694), + [sym_number] = ACTIONS(3694), + [sym_private_property_identifier] = ACTIONS(3694), + [sym_this] = ACTIONS(3694), + [sym_super] = ACTIONS(3694), + [sym_true] = ACTIONS(3694), + [sym_false] = ACTIONS(3694), + [sym_null] = ACTIONS(3694), + [sym_undefined] = ACTIONS(3694), + [anon_sym_AT] = ACTIONS(3694), + [anon_sym_static] = ACTIONS(3694), + [anon_sym_readonly] = ACTIONS(3694), + [anon_sym_get] = ACTIONS(3694), + [anon_sym_set] = ACTIONS(3694), + [anon_sym_declare] = ACTIONS(3694), + [anon_sym_public] = ACTIONS(3694), + [anon_sym_private] = ACTIONS(3694), + [anon_sym_protected] = ACTIONS(3694), + [anon_sym_override] = ACTIONS(3694), + [anon_sym_module] = ACTIONS(3694), + [anon_sym_any] = ACTIONS(3694), + [anon_sym_number] = ACTIONS(3694), + [anon_sym_boolean] = ACTIONS(3694), + [anon_sym_string] = ACTIONS(3694), + [anon_sym_symbol] = ACTIONS(3694), + [anon_sym_object] = ACTIONS(3694), + [anon_sym_property] = ACTIONS(3694), + [anon_sym_signal] = ACTIONS(3694), + [anon_sym_on] = ACTIONS(3694), + [anon_sym_required] = ACTIONS(3694), + [anon_sym_component] = ACTIONS(3694), + [anon_sym_abstract] = ACTIONS(3694), + [anon_sym_interface] = ACTIONS(3694), + [anon_sym_enum] = ACTIONS(3694), [sym_html_comment] = ACTIONS(5), }, - [1659] = { - [sym_comment] = STATE(1659), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1609] = { + [sym_comment] = STATE(1609), + [sym_identifier] = ACTIONS(3564), + [anon_sym_export] = ACTIONS(3564), + [anon_sym_type] = ACTIONS(3564), + [anon_sym_namespace] = ACTIONS(3564), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_typeof] = ACTIONS(3564), + [anon_sym_import] = ACTIONS(3564), + [anon_sym_from] = ACTIONS(3564), + [anon_sym_with] = ACTIONS(3564), + [anon_sym_var] = ACTIONS(3564), + [anon_sym_let] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_if] = ACTIONS(3564), + [anon_sym_switch] = ACTIONS(3564), + [anon_sym_for] = ACTIONS(3564), + [anon_sym_LPAREN] = ACTIONS(3564), + [anon_sym_await] = ACTIONS(3564), + [anon_sym_of] = ACTIONS(3564), + [anon_sym_while] = ACTIONS(3564), + [anon_sym_do] = ACTIONS(3564), + [anon_sym_try] = ACTIONS(3564), + [anon_sym_break] = ACTIONS(3564), + [anon_sym_continue] = ACTIONS(3564), + [anon_sym_debugger] = ACTIONS(3564), + [anon_sym_return] = ACTIONS(3564), + [anon_sym_throw] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym_yield] = ACTIONS(3564), + [anon_sym_LBRACK] = ACTIONS(3564), + [anon_sym_LTtemplate_GT] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_class] = ACTIONS(3564), + [anon_sym_async] = ACTIONS(3564), + [anon_sym_function] = ACTIONS(3564), + [anon_sym_new] = ACTIONS(3564), + [anon_sym_using] = ACTIONS(3564), + [anon_sym_PLUS] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3564), + [anon_sym_SLASH] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_void] = ACTIONS(3564), + [anon_sym_delete] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3564), + [sym_number] = ACTIONS(3564), + [sym_private_property_identifier] = ACTIONS(3564), + [sym_this] = ACTIONS(3564), + [sym_super] = ACTIONS(3564), + [sym_true] = ACTIONS(3564), + [sym_false] = ACTIONS(3564), + [sym_null] = ACTIONS(3564), + [sym_undefined] = ACTIONS(3564), + [anon_sym_AT] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3564), + [anon_sym_readonly] = ACTIONS(3564), + [anon_sym_get] = ACTIONS(3564), + [anon_sym_set] = ACTIONS(3564), + [anon_sym_declare] = ACTIONS(3564), + [anon_sym_public] = ACTIONS(3564), + [anon_sym_private] = ACTIONS(3564), + [anon_sym_protected] = ACTIONS(3564), + [anon_sym_override] = ACTIONS(3564), + [anon_sym_module] = ACTIONS(3564), + [anon_sym_any] = ACTIONS(3564), + [anon_sym_number] = ACTIONS(3564), + [anon_sym_boolean] = ACTIONS(3564), + [anon_sym_string] = ACTIONS(3564), + [anon_sym_symbol] = ACTIONS(3564), + [anon_sym_object] = ACTIONS(3564), + [anon_sym_property] = ACTIONS(3564), + [anon_sym_signal] = ACTIONS(3564), + [anon_sym_on] = ACTIONS(3564), + [anon_sym_required] = ACTIONS(3564), + [anon_sym_component] = ACTIONS(3564), + [anon_sym_abstract] = ACTIONS(3564), + [anon_sym_interface] = ACTIONS(3564), + [anon_sym_enum] = ACTIONS(3564), [sym_html_comment] = ACTIONS(5), }, - [1660] = { - [sym_comment] = STATE(1660), - [sym_identifier] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_type] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_typeof] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_await] = ACTIONS(3662), - [anon_sym_of] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_debugger] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_LTtemplate_GT] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_async] = ACTIONS(3662), - [anon_sym_function] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_void] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), + [1610] = { + [sym_comment] = STATE(1610), + [sym_identifier] = ACTIONS(3692), + [anon_sym_export] = ACTIONS(3692), + [anon_sym_type] = ACTIONS(3692), + [anon_sym_namespace] = ACTIONS(3692), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_typeof] = ACTIONS(3692), + [anon_sym_import] = ACTIONS(3692), + [anon_sym_from] = ACTIONS(3692), + [anon_sym_with] = ACTIONS(3692), + [anon_sym_var] = ACTIONS(3692), + [anon_sym_let] = ACTIONS(3692), + [anon_sym_const] = ACTIONS(3692), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_if] = ACTIONS(3692), + [anon_sym_switch] = ACTIONS(3692), + [anon_sym_for] = ACTIONS(3692), + [anon_sym_LPAREN] = ACTIONS(3692), + [anon_sym_await] = ACTIONS(3692), + [anon_sym_of] = ACTIONS(3692), + [anon_sym_while] = ACTIONS(3692), + [anon_sym_do] = ACTIONS(3692), + [anon_sym_try] = ACTIONS(3692), + [anon_sym_break] = ACTIONS(3692), + [anon_sym_continue] = ACTIONS(3692), + [anon_sym_debugger] = ACTIONS(3692), + [anon_sym_return] = ACTIONS(3692), + [anon_sym_throw] = ACTIONS(3692), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym_yield] = ACTIONS(3692), + [anon_sym_LBRACK] = ACTIONS(3692), + [anon_sym_LTtemplate_GT] = ACTIONS(3692), + [anon_sym_DQUOTE] = ACTIONS(3692), + [anon_sym_SQUOTE] = ACTIONS(3692), + [anon_sym_class] = ACTIONS(3692), + [anon_sym_async] = ACTIONS(3692), + [anon_sym_function] = ACTIONS(3692), + [anon_sym_new] = ACTIONS(3692), + [anon_sym_using] = ACTIONS(3692), + [anon_sym_PLUS] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3692), + [anon_sym_SLASH] = ACTIONS(3692), + [anon_sym_LT] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_void] = ACTIONS(3692), + [anon_sym_delete] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_DASH_DASH] = ACTIONS(3692), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3662), - [sym_number] = ACTIONS(3662), - [sym_private_property_identifier] = ACTIONS(3662), - [sym_this] = ACTIONS(3662), - [sym_super] = ACTIONS(3662), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [sym_null] = ACTIONS(3662), - [sym_undefined] = ACTIONS(3662), - [anon_sym_AT] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_readonly] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(3662), - [anon_sym_set] = ACTIONS(3662), - [anon_sym_declare] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_override] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_any] = ACTIONS(3662), - [anon_sym_number] = ACTIONS(3662), - [anon_sym_boolean] = ACTIONS(3662), - [anon_sym_string] = ACTIONS(3662), - [anon_sym_symbol] = ACTIONS(3662), - [anon_sym_object] = ACTIONS(3662), - [anon_sym_property] = ACTIONS(3662), - [anon_sym_signal] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_required] = ACTIONS(3662), - [anon_sym_component] = ACTIONS(3662), - [anon_sym_abstract] = ACTIONS(3662), - [anon_sym_interface] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), + [anon_sym_BQUOTE] = ACTIONS(3692), + [sym_number] = ACTIONS(3692), + [sym_private_property_identifier] = ACTIONS(3692), + [sym_this] = ACTIONS(3692), + [sym_super] = ACTIONS(3692), + [sym_true] = ACTIONS(3692), + [sym_false] = ACTIONS(3692), + [sym_null] = ACTIONS(3692), + [sym_undefined] = ACTIONS(3692), + [anon_sym_AT] = ACTIONS(3692), + [anon_sym_static] = ACTIONS(3692), + [anon_sym_readonly] = ACTIONS(3692), + [anon_sym_get] = ACTIONS(3692), + [anon_sym_set] = ACTIONS(3692), + [anon_sym_declare] = ACTIONS(3692), + [anon_sym_public] = ACTIONS(3692), + [anon_sym_private] = ACTIONS(3692), + [anon_sym_protected] = ACTIONS(3692), + [anon_sym_override] = ACTIONS(3692), + [anon_sym_module] = ACTIONS(3692), + [anon_sym_any] = ACTIONS(3692), + [anon_sym_number] = ACTIONS(3692), + [anon_sym_boolean] = ACTIONS(3692), + [anon_sym_string] = ACTIONS(3692), + [anon_sym_symbol] = ACTIONS(3692), + [anon_sym_object] = ACTIONS(3692), + [anon_sym_property] = ACTIONS(3692), + [anon_sym_signal] = ACTIONS(3692), + [anon_sym_on] = ACTIONS(3692), + [anon_sym_required] = ACTIONS(3692), + [anon_sym_component] = ACTIONS(3692), + [anon_sym_abstract] = ACTIONS(3692), + [anon_sym_interface] = ACTIONS(3692), + [anon_sym_enum] = ACTIONS(3692), [sym_html_comment] = ACTIONS(5), }, - [1661] = { - [sym_comment] = STATE(1661), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_typeof] = ACTIONS(2474), - [anon_sym_import] = ACTIONS(2474), - [anon_sym_from] = ACTIONS(2474), - [anon_sym_with] = ACTIONS(2474), - [anon_sym_var] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_switch] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_await] = ACTIONS(2474), - [anon_sym_of] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_do] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_debugger] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_throw] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LTtemplate_GT] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_class] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_TILDE] = ACTIONS(2474), - [anon_sym_void] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), + [1611] = { + [sym_comment] = STATE(1611), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2474), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [sym_this] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_true] = ACTIONS(2474), - [sym_false] = ACTIONS(2474), - [sym_null] = ACTIONS(2474), - [sym_undefined] = ACTIONS(2474), - [anon_sym_AT] = ACTIONS(2474), - [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_property] = ACTIONS(2474), - [anon_sym_signal] = ACTIONS(2474), - [anon_sym_on] = ACTIONS(2474), - [anon_sym_required] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_abstract] = ACTIONS(2474), - [anon_sym_interface] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1662] = { - [sym_comment] = STATE(1662), - [sym_identifier] = ACTIONS(3522), - [anon_sym_export] = ACTIONS(3522), - [anon_sym_type] = ACTIONS(3522), - [anon_sym_namespace] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_RBRACE] = ACTIONS(3522), - [anon_sym_typeof] = ACTIONS(3522), - [anon_sym_import] = ACTIONS(3522), - [anon_sym_from] = ACTIONS(3522), - [anon_sym_with] = ACTIONS(3522), - [anon_sym_var] = ACTIONS(3522), - [anon_sym_let] = ACTIONS(3522), - [anon_sym_const] = ACTIONS(3522), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_if] = ACTIONS(3522), - [anon_sym_switch] = ACTIONS(3522), - [anon_sym_for] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3522), - [anon_sym_await] = ACTIONS(3522), - [anon_sym_of] = ACTIONS(3522), - [anon_sym_while] = ACTIONS(3522), - [anon_sym_do] = ACTIONS(3522), - [anon_sym_try] = ACTIONS(3522), - [anon_sym_break] = ACTIONS(3522), - [anon_sym_continue] = ACTIONS(3522), - [anon_sym_debugger] = ACTIONS(3522), - [anon_sym_return] = ACTIONS(3522), - [anon_sym_throw] = ACTIONS(3522), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3522), - [anon_sym_LBRACK] = ACTIONS(3522), - [anon_sym_LTtemplate_GT] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [anon_sym_SQUOTE] = ACTIONS(3522), - [anon_sym_class] = ACTIONS(3522), - [anon_sym_async] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3522), - [anon_sym_using] = ACTIONS(3522), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_SLASH] = ACTIONS(3522), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_void] = ACTIONS(3522), - [anon_sym_delete] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3522), + [1612] = { + [sym_comment] = STATE(1612), + [sym_identifier] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_type] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3548), + [anon_sym_RBRACE] = ACTIONS(3548), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_from] = ACTIONS(3548), + [anon_sym_with] = ACTIONS(3548), + [anon_sym_var] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3548), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_of] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_debugger] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3548), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_LTtemplate_GT] = ACTIONS(3548), + [anon_sym_DQUOTE] = ACTIONS(3548), + [anon_sym_SQUOTE] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_function] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_LT] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3548), + [anon_sym_void] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_PLUS_PLUS] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3548), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3522), - [sym_number] = ACTIONS(3522), - [sym_private_property_identifier] = ACTIONS(3522), - [sym_this] = ACTIONS(3522), - [sym_super] = ACTIONS(3522), - [sym_true] = ACTIONS(3522), - [sym_false] = ACTIONS(3522), - [sym_null] = ACTIONS(3522), - [sym_undefined] = ACTIONS(3522), - [anon_sym_AT] = ACTIONS(3522), - [anon_sym_static] = ACTIONS(3522), - [anon_sym_readonly] = ACTIONS(3522), - [anon_sym_get] = ACTIONS(3522), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_declare] = ACTIONS(3522), - [anon_sym_public] = ACTIONS(3522), - [anon_sym_private] = ACTIONS(3522), - [anon_sym_protected] = ACTIONS(3522), - [anon_sym_override] = ACTIONS(3522), - [anon_sym_module] = ACTIONS(3522), - [anon_sym_any] = ACTIONS(3522), - [anon_sym_number] = ACTIONS(3522), - [anon_sym_boolean] = ACTIONS(3522), - [anon_sym_string] = ACTIONS(3522), - [anon_sym_symbol] = ACTIONS(3522), - [anon_sym_object] = ACTIONS(3522), - [anon_sym_property] = ACTIONS(3522), - [anon_sym_signal] = ACTIONS(3522), - [anon_sym_on] = ACTIONS(3522), - [anon_sym_required] = ACTIONS(3522), - [anon_sym_component] = ACTIONS(3522), - [anon_sym_abstract] = ACTIONS(3522), - [anon_sym_interface] = ACTIONS(3522), - [anon_sym_enum] = ACTIONS(3522), + [anon_sym_BQUOTE] = ACTIONS(3548), + [sym_number] = ACTIONS(3548), + [sym_private_property_identifier] = ACTIONS(3548), + [sym_this] = ACTIONS(3548), + [sym_super] = ACTIONS(3548), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [sym_null] = ACTIONS(3548), + [sym_undefined] = ACTIONS(3548), + [anon_sym_AT] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_get] = ACTIONS(3548), + [anon_sym_set] = ACTIONS(3548), + [anon_sym_declare] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_override] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_any] = ACTIONS(3548), + [anon_sym_number] = ACTIONS(3548), + [anon_sym_boolean] = ACTIONS(3548), + [anon_sym_string] = ACTIONS(3548), + [anon_sym_symbol] = ACTIONS(3548), + [anon_sym_object] = ACTIONS(3548), + [anon_sym_property] = ACTIONS(3548), + [anon_sym_signal] = ACTIONS(3548), + [anon_sym_on] = ACTIONS(3548), + [anon_sym_required] = ACTIONS(3548), + [anon_sym_component] = ACTIONS(3548), + [anon_sym_abstract] = ACTIONS(3548), + [anon_sym_interface] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), [sym_html_comment] = ACTIONS(5), }, - [1663] = { - [sym_comment] = STATE(1663), - [sym_identifier] = ACTIONS(3510), - [anon_sym_export] = ACTIONS(3510), - [anon_sym_type] = ACTIONS(3510), - [anon_sym_namespace] = ACTIONS(3510), - [anon_sym_LBRACE] = ACTIONS(3510), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_typeof] = ACTIONS(3510), - [anon_sym_import] = ACTIONS(3510), - [anon_sym_from] = ACTIONS(3510), - [anon_sym_with] = ACTIONS(3510), - [anon_sym_var] = ACTIONS(3510), - [anon_sym_let] = ACTIONS(3510), - [anon_sym_const] = ACTIONS(3510), - [anon_sym_BANG] = ACTIONS(3510), - [anon_sym_if] = ACTIONS(3510), - [anon_sym_switch] = ACTIONS(3510), - [anon_sym_for] = ACTIONS(3510), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym_await] = ACTIONS(3510), - [anon_sym_of] = ACTIONS(3510), - [anon_sym_while] = ACTIONS(3510), - [anon_sym_do] = ACTIONS(3510), - [anon_sym_try] = ACTIONS(3510), - [anon_sym_break] = ACTIONS(3510), - [anon_sym_continue] = ACTIONS(3510), - [anon_sym_debugger] = ACTIONS(3510), - [anon_sym_return] = ACTIONS(3510), - [anon_sym_throw] = ACTIONS(3510), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_yield] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3510), - [anon_sym_LTtemplate_GT] = ACTIONS(3510), - [anon_sym_DQUOTE] = ACTIONS(3510), - [anon_sym_SQUOTE] = ACTIONS(3510), - [anon_sym_class] = ACTIONS(3510), - [anon_sym_async] = ACTIONS(3510), - [anon_sym_function] = ACTIONS(3510), - [anon_sym_new] = ACTIONS(3510), - [anon_sym_using] = ACTIONS(3510), - [anon_sym_PLUS] = ACTIONS(3510), - [anon_sym_DASH] = ACTIONS(3510), - [anon_sym_SLASH] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_void] = ACTIONS(3510), - [anon_sym_delete] = ACTIONS(3510), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DASH_DASH] = ACTIONS(3510), + [1613] = { + [sym_comment] = STATE(1613), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3510), - [sym_number] = ACTIONS(3510), - [sym_private_property_identifier] = ACTIONS(3510), - [sym_this] = ACTIONS(3510), - [sym_super] = ACTIONS(3510), - [sym_true] = ACTIONS(3510), - [sym_false] = ACTIONS(3510), - [sym_null] = ACTIONS(3510), - [sym_undefined] = ACTIONS(3510), - [anon_sym_AT] = ACTIONS(3510), - [anon_sym_static] = ACTIONS(3510), - [anon_sym_readonly] = ACTIONS(3510), - [anon_sym_get] = ACTIONS(3510), - [anon_sym_set] = ACTIONS(3510), - [anon_sym_declare] = ACTIONS(3510), - [anon_sym_public] = ACTIONS(3510), - [anon_sym_private] = ACTIONS(3510), - [anon_sym_protected] = ACTIONS(3510), - [anon_sym_override] = ACTIONS(3510), - [anon_sym_module] = ACTIONS(3510), - [anon_sym_any] = ACTIONS(3510), - [anon_sym_number] = ACTIONS(3510), - [anon_sym_boolean] = ACTIONS(3510), - [anon_sym_string] = ACTIONS(3510), - [anon_sym_symbol] = ACTIONS(3510), - [anon_sym_object] = ACTIONS(3510), - [anon_sym_property] = ACTIONS(3510), - [anon_sym_signal] = ACTIONS(3510), - [anon_sym_on] = ACTIONS(3510), - [anon_sym_required] = ACTIONS(3510), - [anon_sym_component] = ACTIONS(3510), - [anon_sym_abstract] = ACTIONS(3510), - [anon_sym_interface] = ACTIONS(3510), - [anon_sym_enum] = ACTIONS(3510), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), [sym_html_comment] = ACTIONS(5), }, - [1664] = { - [sym_comment] = STATE(1664), - [sym_identifier] = ACTIONS(3514), - [anon_sym_export] = ACTIONS(3514), - [anon_sym_type] = ACTIONS(3514), - [anon_sym_namespace] = ACTIONS(3514), - [anon_sym_LBRACE] = ACTIONS(3514), - [anon_sym_RBRACE] = ACTIONS(3514), - [anon_sym_typeof] = ACTIONS(3514), - [anon_sym_import] = ACTIONS(3514), - [anon_sym_from] = ACTIONS(3514), - [anon_sym_with] = ACTIONS(3514), - [anon_sym_var] = ACTIONS(3514), - [anon_sym_let] = ACTIONS(3514), - [anon_sym_const] = ACTIONS(3514), - [anon_sym_BANG] = ACTIONS(3514), - [anon_sym_if] = ACTIONS(3514), - [anon_sym_switch] = ACTIONS(3514), - [anon_sym_for] = ACTIONS(3514), - [anon_sym_LPAREN] = ACTIONS(3514), - [anon_sym_await] = ACTIONS(3514), - [anon_sym_of] = ACTIONS(3514), - [anon_sym_while] = ACTIONS(3514), - [anon_sym_do] = ACTIONS(3514), - [anon_sym_try] = ACTIONS(3514), - [anon_sym_break] = ACTIONS(3514), - [anon_sym_continue] = ACTIONS(3514), - [anon_sym_debugger] = ACTIONS(3514), - [anon_sym_return] = ACTIONS(3514), - [anon_sym_throw] = ACTIONS(3514), - [anon_sym_SEMI] = ACTIONS(3514), - [anon_sym_yield] = ACTIONS(3514), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_LTtemplate_GT] = ACTIONS(3514), - [anon_sym_DQUOTE] = ACTIONS(3514), - [anon_sym_SQUOTE] = ACTIONS(3514), - [anon_sym_class] = ACTIONS(3514), - [anon_sym_async] = ACTIONS(3514), - [anon_sym_function] = ACTIONS(3514), - [anon_sym_new] = ACTIONS(3514), - [anon_sym_using] = ACTIONS(3514), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_SLASH] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_TILDE] = ACTIONS(3514), - [anon_sym_void] = ACTIONS(3514), - [anon_sym_delete] = ACTIONS(3514), - [anon_sym_PLUS_PLUS] = ACTIONS(3514), - [anon_sym_DASH_DASH] = ACTIONS(3514), + [1614] = { + [sym_comment] = STATE(1614), + [sym_identifier] = ACTIONS(3684), + [anon_sym_export] = ACTIONS(3684), + [anon_sym_type] = ACTIONS(3684), + [anon_sym_namespace] = ACTIONS(3684), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_typeof] = ACTIONS(3684), + [anon_sym_import] = ACTIONS(3684), + [anon_sym_from] = ACTIONS(3684), + [anon_sym_with] = ACTIONS(3684), + [anon_sym_var] = ACTIONS(3684), + [anon_sym_let] = ACTIONS(3684), + [anon_sym_const] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_if] = ACTIONS(3684), + [anon_sym_switch] = ACTIONS(3684), + [anon_sym_for] = ACTIONS(3684), + [anon_sym_LPAREN] = ACTIONS(3684), + [anon_sym_await] = ACTIONS(3684), + [anon_sym_of] = ACTIONS(3684), + [anon_sym_while] = ACTIONS(3684), + [anon_sym_do] = ACTIONS(3684), + [anon_sym_try] = ACTIONS(3684), + [anon_sym_break] = ACTIONS(3684), + [anon_sym_continue] = ACTIONS(3684), + [anon_sym_debugger] = ACTIONS(3684), + [anon_sym_return] = ACTIONS(3684), + [anon_sym_throw] = ACTIONS(3684), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym_yield] = ACTIONS(3684), + [anon_sym_LBRACK] = ACTIONS(3684), + [anon_sym_LTtemplate_GT] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_class] = ACTIONS(3684), + [anon_sym_async] = ACTIONS(3684), + [anon_sym_function] = ACTIONS(3684), + [anon_sym_new] = ACTIONS(3684), + [anon_sym_using] = ACTIONS(3684), + [anon_sym_PLUS] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3684), + [anon_sym_SLASH] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_void] = ACTIONS(3684), + [anon_sym_delete] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_DASH_DASH] = ACTIONS(3684), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3514), - [sym_number] = ACTIONS(3514), - [sym_private_property_identifier] = ACTIONS(3514), - [sym_this] = ACTIONS(3514), - [sym_super] = ACTIONS(3514), - [sym_true] = ACTIONS(3514), - [sym_false] = ACTIONS(3514), - [sym_null] = ACTIONS(3514), - [sym_undefined] = ACTIONS(3514), - [anon_sym_AT] = ACTIONS(3514), - [anon_sym_static] = ACTIONS(3514), - [anon_sym_readonly] = ACTIONS(3514), - [anon_sym_get] = ACTIONS(3514), - [anon_sym_set] = ACTIONS(3514), - [anon_sym_declare] = ACTIONS(3514), - [anon_sym_public] = ACTIONS(3514), - [anon_sym_private] = ACTIONS(3514), - [anon_sym_protected] = ACTIONS(3514), - [anon_sym_override] = ACTIONS(3514), - [anon_sym_module] = ACTIONS(3514), - [anon_sym_any] = ACTIONS(3514), - [anon_sym_number] = ACTIONS(3514), - [anon_sym_boolean] = ACTIONS(3514), - [anon_sym_string] = ACTIONS(3514), - [anon_sym_symbol] = ACTIONS(3514), - [anon_sym_object] = ACTIONS(3514), - [anon_sym_property] = ACTIONS(3514), - [anon_sym_signal] = ACTIONS(3514), - [anon_sym_on] = ACTIONS(3514), - [anon_sym_required] = ACTIONS(3514), - [anon_sym_component] = ACTIONS(3514), - [anon_sym_abstract] = ACTIONS(3514), - [anon_sym_interface] = ACTIONS(3514), - [anon_sym_enum] = ACTIONS(3514), + [anon_sym_BQUOTE] = ACTIONS(3684), + [sym_number] = ACTIONS(3684), + [sym_private_property_identifier] = ACTIONS(3684), + [sym_this] = ACTIONS(3684), + [sym_super] = ACTIONS(3684), + [sym_true] = ACTIONS(3684), + [sym_false] = ACTIONS(3684), + [sym_null] = ACTIONS(3684), + [sym_undefined] = ACTIONS(3684), + [anon_sym_AT] = ACTIONS(3684), + [anon_sym_static] = ACTIONS(3684), + [anon_sym_readonly] = ACTIONS(3684), + [anon_sym_get] = ACTIONS(3684), + [anon_sym_set] = ACTIONS(3684), + [anon_sym_declare] = ACTIONS(3684), + [anon_sym_public] = ACTIONS(3684), + [anon_sym_private] = ACTIONS(3684), + [anon_sym_protected] = ACTIONS(3684), + [anon_sym_override] = ACTIONS(3684), + [anon_sym_module] = ACTIONS(3684), + [anon_sym_any] = ACTIONS(3684), + [anon_sym_number] = ACTIONS(3684), + [anon_sym_boolean] = ACTIONS(3684), + [anon_sym_string] = ACTIONS(3684), + [anon_sym_symbol] = ACTIONS(3684), + [anon_sym_object] = ACTIONS(3684), + [anon_sym_property] = ACTIONS(3684), + [anon_sym_signal] = ACTIONS(3684), + [anon_sym_on] = ACTIONS(3684), + [anon_sym_required] = ACTIONS(3684), + [anon_sym_component] = ACTIONS(3684), + [anon_sym_abstract] = ACTIONS(3684), + [anon_sym_interface] = ACTIONS(3684), + [anon_sym_enum] = ACTIONS(3684), [sym_html_comment] = ACTIONS(5), }, - [1665] = { - [sym_comment] = STATE(1665), - [sym_identifier] = ACTIONS(3528), - [anon_sym_export] = ACTIONS(3528), - [anon_sym_type] = ACTIONS(3528), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3528), - [anon_sym_RBRACE] = ACTIONS(3528), - [anon_sym_typeof] = ACTIONS(3528), - [anon_sym_import] = ACTIONS(3528), - [anon_sym_from] = ACTIONS(3528), - [anon_sym_with] = ACTIONS(3528), - [anon_sym_var] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3528), - [anon_sym_await] = ACTIONS(3528), - [anon_sym_of] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_debugger] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3528), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_LTtemplate_GT] = ACTIONS(3528), - [anon_sym_DQUOTE] = ACTIONS(3528), - [anon_sym_SQUOTE] = ACTIONS(3528), - [anon_sym_class] = ACTIONS(3528), - [anon_sym_async] = ACTIONS(3528), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_using] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_LT] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3528), - [anon_sym_void] = ACTIONS(3528), - [anon_sym_delete] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(3528), - [anon_sym_DASH_DASH] = ACTIONS(3528), + [1615] = { + [sym_comment] = STATE(1615), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3528), - [sym_number] = ACTIONS(3528), - [sym_private_property_identifier] = ACTIONS(3528), - [sym_this] = ACTIONS(3528), - [sym_super] = ACTIONS(3528), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [sym_null] = ACTIONS(3528), - [sym_undefined] = ACTIONS(3528), - [anon_sym_AT] = ACTIONS(3528), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_readonly] = ACTIONS(3528), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3528), - [anon_sym_declare] = ACTIONS(3528), - [anon_sym_public] = ACTIONS(3528), - [anon_sym_private] = ACTIONS(3528), - [anon_sym_protected] = ACTIONS(3528), - [anon_sym_override] = ACTIONS(3528), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_any] = ACTIONS(3528), - [anon_sym_number] = ACTIONS(3528), - [anon_sym_boolean] = ACTIONS(3528), - [anon_sym_string] = ACTIONS(3528), - [anon_sym_symbol] = ACTIONS(3528), - [anon_sym_object] = ACTIONS(3528), - [anon_sym_property] = ACTIONS(3528), - [anon_sym_signal] = ACTIONS(3528), - [anon_sym_on] = ACTIONS(3528), - [anon_sym_required] = ACTIONS(3528), - [anon_sym_component] = ACTIONS(3528), - [anon_sym_abstract] = ACTIONS(3528), - [anon_sym_interface] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1666] = { - [sym_comment] = STATE(1666), - [sym_identifier] = ACTIONS(3530), - [anon_sym_export] = ACTIONS(3530), - [anon_sym_type] = ACTIONS(3530), - [anon_sym_namespace] = ACTIONS(3530), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_RBRACE] = ACTIONS(3530), - [anon_sym_typeof] = ACTIONS(3530), - [anon_sym_import] = ACTIONS(3530), - [anon_sym_from] = ACTIONS(3530), - [anon_sym_with] = ACTIONS(3530), - [anon_sym_var] = ACTIONS(3530), - [anon_sym_let] = ACTIONS(3530), - [anon_sym_const] = ACTIONS(3530), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(3530), - [anon_sym_switch] = ACTIONS(3530), - [anon_sym_for] = ACTIONS(3530), - [anon_sym_LPAREN] = ACTIONS(3530), - [anon_sym_await] = ACTIONS(3530), - [anon_sym_of] = ACTIONS(3530), - [anon_sym_while] = ACTIONS(3530), - [anon_sym_do] = ACTIONS(3530), - [anon_sym_try] = ACTIONS(3530), - [anon_sym_break] = ACTIONS(3530), - [anon_sym_continue] = ACTIONS(3530), - [anon_sym_debugger] = ACTIONS(3530), - [anon_sym_return] = ACTIONS(3530), - [anon_sym_throw] = ACTIONS(3530), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym_yield] = ACTIONS(3530), - [anon_sym_LBRACK] = ACTIONS(3530), - [anon_sym_LTtemplate_GT] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [anon_sym_SQUOTE] = ACTIONS(3530), - [anon_sym_class] = ACTIONS(3530), - [anon_sym_async] = ACTIONS(3530), - [anon_sym_function] = ACTIONS(3530), - [anon_sym_new] = ACTIONS(3530), - [anon_sym_using] = ACTIONS(3530), - [anon_sym_PLUS] = ACTIONS(3530), - [anon_sym_DASH] = ACTIONS(3530), - [anon_sym_SLASH] = ACTIONS(3530), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_void] = ACTIONS(3530), - [anon_sym_delete] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3530), - [sym_number] = ACTIONS(3530), - [sym_private_property_identifier] = ACTIONS(3530), - [sym_this] = ACTIONS(3530), - [sym_super] = ACTIONS(3530), - [sym_true] = ACTIONS(3530), - [sym_false] = ACTIONS(3530), - [sym_null] = ACTIONS(3530), - [sym_undefined] = ACTIONS(3530), - [anon_sym_AT] = ACTIONS(3530), - [anon_sym_static] = ACTIONS(3530), - [anon_sym_readonly] = ACTIONS(3530), - [anon_sym_get] = ACTIONS(3530), - [anon_sym_set] = ACTIONS(3530), - [anon_sym_declare] = ACTIONS(3530), - [anon_sym_public] = ACTIONS(3530), - [anon_sym_private] = ACTIONS(3530), - [anon_sym_protected] = ACTIONS(3530), - [anon_sym_override] = ACTIONS(3530), - [anon_sym_module] = ACTIONS(3530), - [anon_sym_any] = ACTIONS(3530), - [anon_sym_number] = ACTIONS(3530), - [anon_sym_boolean] = ACTIONS(3530), - [anon_sym_string] = ACTIONS(3530), - [anon_sym_symbol] = ACTIONS(3530), - [anon_sym_object] = ACTIONS(3530), - [anon_sym_property] = ACTIONS(3530), - [anon_sym_signal] = ACTIONS(3530), - [anon_sym_on] = ACTIONS(3530), - [anon_sym_required] = ACTIONS(3530), - [anon_sym_component] = ACTIONS(3530), - [anon_sym_abstract] = ACTIONS(3530), - [anon_sym_interface] = ACTIONS(3530), - [anon_sym_enum] = ACTIONS(3530), + [1616] = { + [sym_comment] = STATE(1616), + [sym_identifier] = ACTIONS(3666), + [anon_sym_export] = ACTIONS(3666), + [anon_sym_type] = ACTIONS(3666), + [anon_sym_namespace] = ACTIONS(3666), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_typeof] = ACTIONS(3666), + [anon_sym_import] = ACTIONS(3666), + [anon_sym_from] = ACTIONS(3666), + [anon_sym_with] = ACTIONS(3666), + [anon_sym_var] = ACTIONS(3666), + [anon_sym_let] = ACTIONS(3666), + [anon_sym_const] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_if] = ACTIONS(3666), + [anon_sym_switch] = ACTIONS(3666), + [anon_sym_for] = ACTIONS(3666), + [anon_sym_LPAREN] = ACTIONS(3666), + [anon_sym_await] = ACTIONS(3666), + [anon_sym_of] = ACTIONS(3666), + [anon_sym_while] = ACTIONS(3666), + [anon_sym_do] = ACTIONS(3666), + [anon_sym_try] = ACTIONS(3666), + [anon_sym_break] = ACTIONS(3666), + [anon_sym_continue] = ACTIONS(3666), + [anon_sym_debugger] = ACTIONS(3666), + [anon_sym_return] = ACTIONS(3666), + [anon_sym_throw] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym_yield] = ACTIONS(3666), + [anon_sym_LBRACK] = ACTIONS(3666), + [anon_sym_LTtemplate_GT] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_class] = ACTIONS(3666), + [anon_sym_async] = ACTIONS(3666), + [anon_sym_function] = ACTIONS(3666), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_using] = ACTIONS(3666), + [anon_sym_PLUS] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3666), + [anon_sym_SLASH] = ACTIONS(3666), + [anon_sym_LT] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_void] = ACTIONS(3666), + [anon_sym_delete] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3666), + [sym_number] = ACTIONS(3666), + [sym_private_property_identifier] = ACTIONS(3666), + [sym_this] = ACTIONS(3666), + [sym_super] = ACTIONS(3666), + [sym_true] = ACTIONS(3666), + [sym_false] = ACTIONS(3666), + [sym_null] = ACTIONS(3666), + [sym_undefined] = ACTIONS(3666), + [anon_sym_AT] = ACTIONS(3666), + [anon_sym_static] = ACTIONS(3666), + [anon_sym_readonly] = ACTIONS(3666), + [anon_sym_get] = ACTIONS(3666), + [anon_sym_set] = ACTIONS(3666), + [anon_sym_declare] = ACTIONS(3666), + [anon_sym_public] = ACTIONS(3666), + [anon_sym_private] = ACTIONS(3666), + [anon_sym_protected] = ACTIONS(3666), + [anon_sym_override] = ACTIONS(3666), + [anon_sym_module] = ACTIONS(3666), + [anon_sym_any] = ACTIONS(3666), + [anon_sym_number] = ACTIONS(3666), + [anon_sym_boolean] = ACTIONS(3666), + [anon_sym_string] = ACTIONS(3666), + [anon_sym_symbol] = ACTIONS(3666), + [anon_sym_object] = ACTIONS(3666), + [anon_sym_property] = ACTIONS(3666), + [anon_sym_signal] = ACTIONS(3666), + [anon_sym_on] = ACTIONS(3666), + [anon_sym_required] = ACTIONS(3666), + [anon_sym_component] = ACTIONS(3666), + [anon_sym_abstract] = ACTIONS(3666), + [anon_sym_interface] = ACTIONS(3666), + [anon_sym_enum] = ACTIONS(3666), [sym_html_comment] = ACTIONS(5), }, - [1667] = { - [sym_comment] = STATE(1667), - [sym_identifier] = ACTIONS(3502), - [anon_sym_export] = ACTIONS(3502), - [anon_sym_type] = ACTIONS(3502), - [anon_sym_namespace] = ACTIONS(3502), - [anon_sym_LBRACE] = ACTIONS(3502), - [anon_sym_RBRACE] = ACTIONS(3502), - [anon_sym_typeof] = ACTIONS(3502), - [anon_sym_import] = ACTIONS(3502), - [anon_sym_from] = ACTIONS(3502), - [anon_sym_with] = ACTIONS(3502), - [anon_sym_var] = ACTIONS(3502), - [anon_sym_let] = ACTIONS(3502), - [anon_sym_const] = ACTIONS(3502), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_if] = ACTIONS(3502), - [anon_sym_switch] = ACTIONS(3502), - [anon_sym_for] = ACTIONS(3502), - [anon_sym_LPAREN] = ACTIONS(3502), - [anon_sym_await] = ACTIONS(3502), - [anon_sym_of] = ACTIONS(3502), - [anon_sym_while] = ACTIONS(3502), - [anon_sym_do] = ACTIONS(3502), - [anon_sym_try] = ACTIONS(3502), - [anon_sym_break] = ACTIONS(3502), - [anon_sym_continue] = ACTIONS(3502), - [anon_sym_debugger] = ACTIONS(3502), - [anon_sym_return] = ACTIONS(3502), - [anon_sym_throw] = ACTIONS(3502), - [anon_sym_SEMI] = ACTIONS(3502), - [anon_sym_yield] = ACTIONS(3502), - [anon_sym_LBRACK] = ACTIONS(3502), - [anon_sym_LTtemplate_GT] = ACTIONS(3502), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3502), - [anon_sym_class] = ACTIONS(3502), - [anon_sym_async] = ACTIONS(3502), - [anon_sym_function] = ACTIONS(3502), - [anon_sym_new] = ACTIONS(3502), - [anon_sym_using] = ACTIONS(3502), - [anon_sym_PLUS] = ACTIONS(3502), - [anon_sym_DASH] = ACTIONS(3502), - [anon_sym_SLASH] = ACTIONS(3502), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_TILDE] = ACTIONS(3502), - [anon_sym_void] = ACTIONS(3502), - [anon_sym_delete] = ACTIONS(3502), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3502), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3502), - [sym_number] = ACTIONS(3502), - [sym_private_property_identifier] = ACTIONS(3502), - [sym_this] = ACTIONS(3502), - [sym_super] = ACTIONS(3502), - [sym_true] = ACTIONS(3502), - [sym_false] = ACTIONS(3502), - [sym_null] = ACTIONS(3502), - [sym_undefined] = ACTIONS(3502), - [anon_sym_AT] = ACTIONS(3502), - [anon_sym_static] = ACTIONS(3502), - [anon_sym_readonly] = ACTIONS(3502), - [anon_sym_get] = ACTIONS(3502), - [anon_sym_set] = ACTIONS(3502), - [anon_sym_declare] = ACTIONS(3502), - [anon_sym_public] = ACTIONS(3502), - [anon_sym_private] = ACTIONS(3502), - [anon_sym_protected] = ACTIONS(3502), - [anon_sym_override] = ACTIONS(3502), - [anon_sym_module] = ACTIONS(3502), - [anon_sym_any] = ACTIONS(3502), - [anon_sym_number] = ACTIONS(3502), - [anon_sym_boolean] = ACTIONS(3502), - [anon_sym_string] = ACTIONS(3502), - [anon_sym_symbol] = ACTIONS(3502), - [anon_sym_object] = ACTIONS(3502), - [anon_sym_property] = ACTIONS(3502), - [anon_sym_signal] = ACTIONS(3502), - [anon_sym_on] = ACTIONS(3502), - [anon_sym_required] = ACTIONS(3502), - [anon_sym_component] = ACTIONS(3502), - [anon_sym_abstract] = ACTIONS(3502), - [anon_sym_interface] = ACTIONS(3502), - [anon_sym_enum] = ACTIONS(3502), + [1617] = { + [sym_comment] = STATE(1617), + [sym_identifier] = ACTIONS(3566), + [anon_sym_export] = ACTIONS(3566), + [anon_sym_type] = ACTIONS(3566), + [anon_sym_namespace] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_RBRACE] = ACTIONS(3566), + [anon_sym_typeof] = ACTIONS(3566), + [anon_sym_import] = ACTIONS(3566), + [anon_sym_from] = ACTIONS(3566), + [anon_sym_with] = ACTIONS(3566), + [anon_sym_var] = ACTIONS(3566), + [anon_sym_let] = ACTIONS(3566), + [anon_sym_const] = ACTIONS(3566), + [anon_sym_BANG] = ACTIONS(3566), + [anon_sym_if] = ACTIONS(3566), + [anon_sym_switch] = ACTIONS(3566), + [anon_sym_for] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_await] = ACTIONS(3566), + [anon_sym_of] = ACTIONS(3566), + [anon_sym_while] = ACTIONS(3566), + [anon_sym_do] = ACTIONS(3566), + [anon_sym_try] = ACTIONS(3566), + [anon_sym_break] = ACTIONS(3566), + [anon_sym_continue] = ACTIONS(3566), + [anon_sym_debugger] = ACTIONS(3566), + [anon_sym_return] = ACTIONS(3566), + [anon_sym_throw] = ACTIONS(3566), + [anon_sym_SEMI] = ACTIONS(3566), + [anon_sym_yield] = ACTIONS(3566), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LTtemplate_GT] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [anon_sym_SQUOTE] = ACTIONS(3566), + [anon_sym_class] = ACTIONS(3566), + [anon_sym_async] = ACTIONS(3566), + [anon_sym_function] = ACTIONS(3566), + [anon_sym_new] = ACTIONS(3566), + [anon_sym_using] = ACTIONS(3566), + [anon_sym_PLUS] = ACTIONS(3566), + [anon_sym_DASH] = ACTIONS(3566), + [anon_sym_SLASH] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(3566), + [anon_sym_TILDE] = ACTIONS(3566), + [anon_sym_void] = ACTIONS(3566), + [anon_sym_delete] = ACTIONS(3566), + [anon_sym_PLUS_PLUS] = ACTIONS(3566), + [anon_sym_DASH_DASH] = ACTIONS(3566), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3566), + [sym_number] = ACTIONS(3566), + [sym_private_property_identifier] = ACTIONS(3566), + [sym_this] = ACTIONS(3566), + [sym_super] = ACTIONS(3566), + [sym_true] = ACTIONS(3566), + [sym_false] = ACTIONS(3566), + [sym_null] = ACTIONS(3566), + [sym_undefined] = ACTIONS(3566), + [anon_sym_AT] = ACTIONS(3566), + [anon_sym_static] = ACTIONS(3566), + [anon_sym_readonly] = ACTIONS(3566), + [anon_sym_get] = ACTIONS(3566), + [anon_sym_set] = ACTIONS(3566), + [anon_sym_declare] = ACTIONS(3566), + [anon_sym_public] = ACTIONS(3566), + [anon_sym_private] = ACTIONS(3566), + [anon_sym_protected] = ACTIONS(3566), + [anon_sym_override] = ACTIONS(3566), + [anon_sym_module] = ACTIONS(3566), + [anon_sym_any] = ACTIONS(3566), + [anon_sym_number] = ACTIONS(3566), + [anon_sym_boolean] = ACTIONS(3566), + [anon_sym_string] = ACTIONS(3566), + [anon_sym_symbol] = ACTIONS(3566), + [anon_sym_object] = ACTIONS(3566), + [anon_sym_property] = ACTIONS(3566), + [anon_sym_signal] = ACTIONS(3566), + [anon_sym_on] = ACTIONS(3566), + [anon_sym_required] = ACTIONS(3566), + [anon_sym_component] = ACTIONS(3566), + [anon_sym_abstract] = ACTIONS(3566), + [anon_sym_interface] = ACTIONS(3566), + [anon_sym_enum] = ACTIONS(3566), [sym_html_comment] = ACTIONS(5), }, - [1668] = { - [sym_comment] = STATE(1668), - [sym_identifier] = ACTIONS(3498), - [anon_sym_export] = ACTIONS(3498), - [anon_sym_type] = ACTIONS(3498), - [anon_sym_namespace] = ACTIONS(3498), - [anon_sym_LBRACE] = ACTIONS(3498), - [anon_sym_RBRACE] = ACTIONS(3498), - [anon_sym_typeof] = ACTIONS(3498), - [anon_sym_import] = ACTIONS(3498), - [anon_sym_from] = ACTIONS(3498), - [anon_sym_with] = ACTIONS(3498), - [anon_sym_var] = ACTIONS(3498), - [anon_sym_let] = ACTIONS(3498), - [anon_sym_const] = ACTIONS(3498), - [anon_sym_BANG] = ACTIONS(3498), - [anon_sym_if] = ACTIONS(3498), - [anon_sym_switch] = ACTIONS(3498), - [anon_sym_for] = ACTIONS(3498), - [anon_sym_LPAREN] = ACTIONS(3498), - [anon_sym_await] = ACTIONS(3498), - [anon_sym_of] = ACTIONS(3498), - [anon_sym_while] = ACTIONS(3498), - [anon_sym_do] = ACTIONS(3498), - [anon_sym_try] = ACTIONS(3498), - [anon_sym_break] = ACTIONS(3498), - [anon_sym_continue] = ACTIONS(3498), - [anon_sym_debugger] = ACTIONS(3498), - [anon_sym_return] = ACTIONS(3498), - [anon_sym_throw] = ACTIONS(3498), - [anon_sym_SEMI] = ACTIONS(3498), - [anon_sym_yield] = ACTIONS(3498), - [anon_sym_LBRACK] = ACTIONS(3498), - [anon_sym_LTtemplate_GT] = ACTIONS(3498), - [anon_sym_DQUOTE] = ACTIONS(3498), - [anon_sym_SQUOTE] = ACTIONS(3498), - [anon_sym_class] = ACTIONS(3498), - [anon_sym_async] = ACTIONS(3498), - [anon_sym_function] = ACTIONS(3498), - [anon_sym_new] = ACTIONS(3498), - [anon_sym_using] = ACTIONS(3498), - [anon_sym_PLUS] = ACTIONS(3498), - [anon_sym_DASH] = ACTIONS(3498), - [anon_sym_SLASH] = ACTIONS(3498), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_TILDE] = ACTIONS(3498), - [anon_sym_void] = ACTIONS(3498), - [anon_sym_delete] = ACTIONS(3498), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_DASH_DASH] = ACTIONS(3498), + [1618] = { + [sym_comment] = STATE(1618), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_LBRACE] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_typeof] = ACTIONS(2370), + [anon_sym_import] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_with] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_const] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_if] = ACTIONS(2370), + [anon_sym_switch] = ACTIONS(2370), + [anon_sym_for] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_await] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_while] = ACTIONS(2370), + [anon_sym_do] = ACTIONS(2370), + [anon_sym_try] = ACTIONS(2370), + [anon_sym_break] = ACTIONS(2370), + [anon_sym_continue] = ACTIONS(2370), + [anon_sym_debugger] = ACTIONS(2370), + [anon_sym_return] = ACTIONS(2370), + [anon_sym_throw] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_yield] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_LTtemplate_GT] = ACTIONS(2370), + [anon_sym_DQUOTE] = ACTIONS(2370), + [anon_sym_SQUOTE] = ACTIONS(2370), + [anon_sym_class] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_new] = ACTIONS(2370), + [anon_sym_using] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_TILDE] = ACTIONS(2370), + [anon_sym_void] = ACTIONS(2370), + [anon_sym_delete] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3498), - [sym_number] = ACTIONS(3498), - [sym_private_property_identifier] = ACTIONS(3498), - [sym_this] = ACTIONS(3498), - [sym_super] = ACTIONS(3498), - [sym_true] = ACTIONS(3498), - [sym_false] = ACTIONS(3498), - [sym_null] = ACTIONS(3498), - [sym_undefined] = ACTIONS(3498), - [anon_sym_AT] = ACTIONS(3498), - [anon_sym_static] = ACTIONS(3498), - [anon_sym_readonly] = ACTIONS(3498), - [anon_sym_get] = ACTIONS(3498), - [anon_sym_set] = ACTIONS(3498), - [anon_sym_declare] = ACTIONS(3498), - [anon_sym_public] = ACTIONS(3498), - [anon_sym_private] = ACTIONS(3498), - [anon_sym_protected] = ACTIONS(3498), - [anon_sym_override] = ACTIONS(3498), - [anon_sym_module] = ACTIONS(3498), - [anon_sym_any] = ACTIONS(3498), - [anon_sym_number] = ACTIONS(3498), - [anon_sym_boolean] = ACTIONS(3498), - [anon_sym_string] = ACTIONS(3498), - [anon_sym_symbol] = ACTIONS(3498), - [anon_sym_object] = ACTIONS(3498), - [anon_sym_property] = ACTIONS(3498), - [anon_sym_signal] = ACTIONS(3498), - [anon_sym_on] = ACTIONS(3498), - [anon_sym_required] = ACTIONS(3498), - [anon_sym_component] = ACTIONS(3498), - [anon_sym_abstract] = ACTIONS(3498), - [anon_sym_interface] = ACTIONS(3498), - [anon_sym_enum] = ACTIONS(3498), + [anon_sym_BQUOTE] = ACTIONS(2370), + [sym_number] = ACTIONS(2370), + [sym_private_property_identifier] = ACTIONS(2370), + [sym_this] = ACTIONS(2370), + [sym_super] = ACTIONS(2370), + [sym_true] = ACTIONS(2370), + [sym_false] = ACTIONS(2370), + [sym_null] = ACTIONS(2370), + [sym_undefined] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_abstract] = ACTIONS(2370), + [anon_sym_interface] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), [sym_html_comment] = ACTIONS(5), }, - [1669] = { - [sym_comment] = STATE(1669), - [sym_identifier] = ACTIONS(3638), - [anon_sym_export] = ACTIONS(3638), - [anon_sym_type] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_typeof] = ACTIONS(3638), - [anon_sym_import] = ACTIONS(3638), - [anon_sym_from] = ACTIONS(3638), - [anon_sym_with] = ACTIONS(3638), - [anon_sym_var] = ACTIONS(3638), - [anon_sym_let] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_await] = ACTIONS(3638), - [anon_sym_of] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_debugger] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_yield] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LTtemplate_GT] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(3638), - [anon_sym_SQUOTE] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_async] = ACTIONS(3638), - [anon_sym_function] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_SLASH] = ACTIONS(3638), - [anon_sym_LT] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_void] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), + [1619] = { + [sym_comment] = STATE(1619), + [sym_identifier] = ACTIONS(3696), + [anon_sym_export] = ACTIONS(3696), + [anon_sym_type] = ACTIONS(3696), + [anon_sym_namespace] = ACTIONS(3696), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_typeof] = ACTIONS(3696), + [anon_sym_import] = ACTIONS(3696), + [anon_sym_from] = ACTIONS(3696), + [anon_sym_with] = ACTIONS(3696), + [anon_sym_var] = ACTIONS(3696), + [anon_sym_let] = ACTIONS(3696), + [anon_sym_const] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_if] = ACTIONS(3696), + [anon_sym_switch] = ACTIONS(3696), + [anon_sym_for] = ACTIONS(3696), + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_await] = ACTIONS(3696), + [anon_sym_of] = ACTIONS(3696), + [anon_sym_while] = ACTIONS(3696), + [anon_sym_do] = ACTIONS(3696), + [anon_sym_try] = ACTIONS(3696), + [anon_sym_break] = ACTIONS(3696), + [anon_sym_continue] = ACTIONS(3696), + [anon_sym_debugger] = ACTIONS(3696), + [anon_sym_return] = ACTIONS(3696), + [anon_sym_throw] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_yield] = ACTIONS(3696), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_LTtemplate_GT] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [anon_sym_SQUOTE] = ACTIONS(3696), + [anon_sym_class] = ACTIONS(3696), + [anon_sym_async] = ACTIONS(3696), + [anon_sym_function] = ACTIONS(3696), + [anon_sym_new] = ACTIONS(3696), + [anon_sym_using] = ACTIONS(3696), + [anon_sym_PLUS] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), + [anon_sym_SLASH] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3696), + [anon_sym_void] = ACTIONS(3696), + [anon_sym_delete] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3696), + [anon_sym_DASH_DASH] = ACTIONS(3696), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3638), - [sym_number] = ACTIONS(3638), - [sym_private_property_identifier] = ACTIONS(3638), - [sym_this] = ACTIONS(3638), - [sym_super] = ACTIONS(3638), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [sym_null] = ACTIONS(3638), - [sym_undefined] = ACTIONS(3638), - [anon_sym_AT] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_readonly] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(3638), - [anon_sym_set] = ACTIONS(3638), - [anon_sym_declare] = ACTIONS(3638), - [anon_sym_public] = ACTIONS(3638), - [anon_sym_private] = ACTIONS(3638), - [anon_sym_protected] = ACTIONS(3638), - [anon_sym_override] = ACTIONS(3638), - [anon_sym_module] = ACTIONS(3638), - [anon_sym_any] = ACTIONS(3638), - [anon_sym_number] = ACTIONS(3638), - [anon_sym_boolean] = ACTIONS(3638), - [anon_sym_string] = ACTIONS(3638), - [anon_sym_symbol] = ACTIONS(3638), - [anon_sym_object] = ACTIONS(3638), - [anon_sym_property] = ACTIONS(3638), - [anon_sym_signal] = ACTIONS(3638), - [anon_sym_on] = ACTIONS(3638), - [anon_sym_required] = ACTIONS(3638), - [anon_sym_component] = ACTIONS(3638), - [anon_sym_abstract] = ACTIONS(3638), - [anon_sym_interface] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), + [anon_sym_BQUOTE] = ACTIONS(3696), + [sym_number] = ACTIONS(3696), + [sym_private_property_identifier] = ACTIONS(3696), + [sym_this] = ACTIONS(3696), + [sym_super] = ACTIONS(3696), + [sym_true] = ACTIONS(3696), + [sym_false] = ACTIONS(3696), + [sym_null] = ACTIONS(3696), + [sym_undefined] = ACTIONS(3696), + [anon_sym_AT] = ACTIONS(3696), + [anon_sym_static] = ACTIONS(3696), + [anon_sym_readonly] = ACTIONS(3696), + [anon_sym_get] = ACTIONS(3696), + [anon_sym_set] = ACTIONS(3696), + [anon_sym_declare] = ACTIONS(3696), + [anon_sym_public] = ACTIONS(3696), + [anon_sym_private] = ACTIONS(3696), + [anon_sym_protected] = ACTIONS(3696), + [anon_sym_override] = ACTIONS(3696), + [anon_sym_module] = ACTIONS(3696), + [anon_sym_any] = ACTIONS(3696), + [anon_sym_number] = ACTIONS(3696), + [anon_sym_boolean] = ACTIONS(3696), + [anon_sym_string] = ACTIONS(3696), + [anon_sym_symbol] = ACTIONS(3696), + [anon_sym_object] = ACTIONS(3696), + [anon_sym_property] = ACTIONS(3696), + [anon_sym_signal] = ACTIONS(3696), + [anon_sym_on] = ACTIONS(3696), + [anon_sym_required] = ACTIONS(3696), + [anon_sym_component] = ACTIONS(3696), + [anon_sym_abstract] = ACTIONS(3696), + [anon_sym_interface] = ACTIONS(3696), + [anon_sym_enum] = ACTIONS(3696), [sym_html_comment] = ACTIONS(5), }, - [1670] = { - [sym_comment] = STATE(1670), - [sym_identifier] = ACTIONS(3518), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_type] = ACTIONS(3518), - [anon_sym_namespace] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_typeof] = ACTIONS(3518), - [anon_sym_import] = ACTIONS(3518), - [anon_sym_from] = ACTIONS(3518), - [anon_sym_with] = ACTIONS(3518), - [anon_sym_var] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_const] = ACTIONS(3518), - [anon_sym_BANG] = ACTIONS(3518), - [anon_sym_if] = ACTIONS(3518), - [anon_sym_switch] = ACTIONS(3518), - [anon_sym_for] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_await] = ACTIONS(3518), - [anon_sym_of] = ACTIONS(3518), - [anon_sym_while] = ACTIONS(3518), - [anon_sym_do] = ACTIONS(3518), - [anon_sym_try] = ACTIONS(3518), - [anon_sym_break] = ACTIONS(3518), - [anon_sym_continue] = ACTIONS(3518), - [anon_sym_debugger] = ACTIONS(3518), - [anon_sym_return] = ACTIONS(3518), - [anon_sym_throw] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LTtemplate_GT] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [anon_sym_SQUOTE] = ACTIONS(3518), - [anon_sym_class] = ACTIONS(3518), - [anon_sym_async] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3518), - [anon_sym_using] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_TILDE] = ACTIONS(3518), - [anon_sym_void] = ACTIONS(3518), - [anon_sym_delete] = ACTIONS(3518), - [anon_sym_PLUS_PLUS] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), + [1620] = { + [sym_comment] = STATE(1620), + [sym_identifier] = ACTIONS(3614), + [anon_sym_export] = ACTIONS(3614), + [anon_sym_type] = ACTIONS(3614), + [anon_sym_namespace] = ACTIONS(3614), + [anon_sym_LBRACE] = ACTIONS(3614), + [anon_sym_RBRACE] = ACTIONS(3614), + [anon_sym_typeof] = ACTIONS(3614), + [anon_sym_import] = ACTIONS(3614), + [anon_sym_from] = ACTIONS(3614), + [anon_sym_with] = ACTIONS(3614), + [anon_sym_var] = ACTIONS(3614), + [anon_sym_let] = ACTIONS(3614), + [anon_sym_const] = ACTIONS(3614), + [anon_sym_BANG] = ACTIONS(3614), + [anon_sym_if] = ACTIONS(3614), + [anon_sym_switch] = ACTIONS(3614), + [anon_sym_for] = ACTIONS(3614), + [anon_sym_LPAREN] = ACTIONS(3614), + [anon_sym_await] = ACTIONS(3614), + [anon_sym_of] = ACTIONS(3614), + [anon_sym_while] = ACTIONS(3614), + [anon_sym_do] = ACTIONS(3614), + [anon_sym_try] = ACTIONS(3614), + [anon_sym_break] = ACTIONS(3614), + [anon_sym_continue] = ACTIONS(3614), + [anon_sym_debugger] = ACTIONS(3614), + [anon_sym_return] = ACTIONS(3614), + [anon_sym_throw] = ACTIONS(3614), + [anon_sym_SEMI] = ACTIONS(3614), + [anon_sym_yield] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3614), + [anon_sym_LTtemplate_GT] = ACTIONS(3614), + [anon_sym_DQUOTE] = ACTIONS(3614), + [anon_sym_SQUOTE] = ACTIONS(3614), + [anon_sym_class] = ACTIONS(3614), + [anon_sym_async] = ACTIONS(3614), + [anon_sym_function] = ACTIONS(3614), + [anon_sym_new] = ACTIONS(3614), + [anon_sym_using] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(3614), + [anon_sym_void] = ACTIONS(3614), + [anon_sym_delete] = ACTIONS(3614), + [anon_sym_PLUS_PLUS] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3614), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3518), - [sym_number] = ACTIONS(3518), - [sym_private_property_identifier] = ACTIONS(3518), - [sym_this] = ACTIONS(3518), - [sym_super] = ACTIONS(3518), - [sym_true] = ACTIONS(3518), - [sym_false] = ACTIONS(3518), - [sym_null] = ACTIONS(3518), - [sym_undefined] = ACTIONS(3518), - [anon_sym_AT] = ACTIONS(3518), - [anon_sym_static] = ACTIONS(3518), - [anon_sym_readonly] = ACTIONS(3518), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3518), - [anon_sym_declare] = ACTIONS(3518), - [anon_sym_public] = ACTIONS(3518), - [anon_sym_private] = ACTIONS(3518), - [anon_sym_protected] = ACTIONS(3518), - [anon_sym_override] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_any] = ACTIONS(3518), - [anon_sym_number] = ACTIONS(3518), - [anon_sym_boolean] = ACTIONS(3518), - [anon_sym_string] = ACTIONS(3518), - [anon_sym_symbol] = ACTIONS(3518), - [anon_sym_object] = ACTIONS(3518), - [anon_sym_property] = ACTIONS(3518), - [anon_sym_signal] = ACTIONS(3518), - [anon_sym_on] = ACTIONS(3518), - [anon_sym_required] = ACTIONS(3518), - [anon_sym_component] = ACTIONS(3518), - [anon_sym_abstract] = ACTIONS(3518), - [anon_sym_interface] = ACTIONS(3518), - [anon_sym_enum] = ACTIONS(3518), + [anon_sym_BQUOTE] = ACTIONS(3614), + [sym_number] = ACTIONS(3614), + [sym_private_property_identifier] = ACTIONS(3614), + [sym_this] = ACTIONS(3614), + [sym_super] = ACTIONS(3614), + [sym_true] = ACTIONS(3614), + [sym_false] = ACTIONS(3614), + [sym_null] = ACTIONS(3614), + [sym_undefined] = ACTIONS(3614), + [anon_sym_AT] = ACTIONS(3614), + [anon_sym_static] = ACTIONS(3614), + [anon_sym_readonly] = ACTIONS(3614), + [anon_sym_get] = ACTIONS(3614), + [anon_sym_set] = ACTIONS(3614), + [anon_sym_declare] = ACTIONS(3614), + [anon_sym_public] = ACTIONS(3614), + [anon_sym_private] = ACTIONS(3614), + [anon_sym_protected] = ACTIONS(3614), + [anon_sym_override] = ACTIONS(3614), + [anon_sym_module] = ACTIONS(3614), + [anon_sym_any] = ACTIONS(3614), + [anon_sym_number] = ACTIONS(3614), + [anon_sym_boolean] = ACTIONS(3614), + [anon_sym_string] = ACTIONS(3614), + [anon_sym_symbol] = ACTIONS(3614), + [anon_sym_object] = ACTIONS(3614), + [anon_sym_property] = ACTIONS(3614), + [anon_sym_signal] = ACTIONS(3614), + [anon_sym_on] = ACTIONS(3614), + [anon_sym_required] = ACTIONS(3614), + [anon_sym_component] = ACTIONS(3614), + [anon_sym_abstract] = ACTIONS(3614), + [anon_sym_interface] = ACTIONS(3614), + [anon_sym_enum] = ACTIONS(3614), [sym_html_comment] = ACTIONS(5), }, - [1671] = { - [sym_comment] = STATE(1671), - [sym_identifier] = ACTIONS(3636), - [anon_sym_export] = ACTIONS(3636), - [anon_sym_type] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_typeof] = ACTIONS(3636), - [anon_sym_import] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3636), - [anon_sym_with] = ACTIONS(3636), - [anon_sym_var] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_const] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_if] = ACTIONS(3636), - [anon_sym_switch] = ACTIONS(3636), - [anon_sym_for] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_await] = ACTIONS(3636), - [anon_sym_of] = ACTIONS(3636), - [anon_sym_while] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_try] = ACTIONS(3636), - [anon_sym_break] = ACTIONS(3636), - [anon_sym_continue] = ACTIONS(3636), - [anon_sym_debugger] = ACTIONS(3636), - [anon_sym_return] = ACTIONS(3636), - [anon_sym_throw] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LTtemplate_GT] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_async] = ACTIONS(3636), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_void] = ACTIONS(3636), - [anon_sym_delete] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3636), + [1621] = { + [sym_comment] = STATE(1621), + [sym_identifier] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_type] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_typeof] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_from] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3698), + [anon_sym_var] = ACTIONS(3698), + [anon_sym_let] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_await] = ACTIONS(3698), + [anon_sym_of] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_debugger] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_yield] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LTtemplate_GT] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_async] = ACTIONS(3698), + [anon_sym_function] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_void] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3636), - [sym_number] = ACTIONS(3636), - [sym_private_property_identifier] = ACTIONS(3636), - [sym_this] = ACTIONS(3636), - [sym_super] = ACTIONS(3636), - [sym_true] = ACTIONS(3636), - [sym_false] = ACTIONS(3636), - [sym_null] = ACTIONS(3636), - [sym_undefined] = ACTIONS(3636), - [anon_sym_AT] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_readonly] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(3636), - [anon_sym_set] = ACTIONS(3636), - [anon_sym_declare] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_protected] = ACTIONS(3636), - [anon_sym_override] = ACTIONS(3636), - [anon_sym_module] = ACTIONS(3636), - [anon_sym_any] = ACTIONS(3636), - [anon_sym_number] = ACTIONS(3636), - [anon_sym_boolean] = ACTIONS(3636), - [anon_sym_string] = ACTIONS(3636), - [anon_sym_symbol] = ACTIONS(3636), - [anon_sym_object] = ACTIONS(3636), - [anon_sym_property] = ACTIONS(3636), - [anon_sym_signal] = ACTIONS(3636), - [anon_sym_on] = ACTIONS(3636), - [anon_sym_required] = ACTIONS(3636), - [anon_sym_component] = ACTIONS(3636), - [anon_sym_abstract] = ACTIONS(3636), - [anon_sym_interface] = ACTIONS(3636), - [anon_sym_enum] = ACTIONS(3636), + [anon_sym_BQUOTE] = ACTIONS(3698), + [sym_number] = ACTIONS(3698), + [sym_private_property_identifier] = ACTIONS(3698), + [sym_this] = ACTIONS(3698), + [sym_super] = ACTIONS(3698), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [sym_null] = ACTIONS(3698), + [sym_undefined] = ACTIONS(3698), + [anon_sym_AT] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_readonly] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(3698), + [anon_sym_set] = ACTIONS(3698), + [anon_sym_declare] = ACTIONS(3698), + [anon_sym_public] = ACTIONS(3698), + [anon_sym_private] = ACTIONS(3698), + [anon_sym_protected] = ACTIONS(3698), + [anon_sym_override] = ACTIONS(3698), + [anon_sym_module] = ACTIONS(3698), + [anon_sym_any] = ACTIONS(3698), + [anon_sym_number] = ACTIONS(3698), + [anon_sym_boolean] = ACTIONS(3698), + [anon_sym_string] = ACTIONS(3698), + [anon_sym_symbol] = ACTIONS(3698), + [anon_sym_object] = ACTIONS(3698), + [anon_sym_property] = ACTIONS(3698), + [anon_sym_signal] = ACTIONS(3698), + [anon_sym_on] = ACTIONS(3698), + [anon_sym_required] = ACTIONS(3698), + [anon_sym_component] = ACTIONS(3698), + [anon_sym_abstract] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, - [1672] = { - [sym_comment] = STATE(1672), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1622] = { + [sym_comment] = STATE(1622), + [sym_identifier] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_type] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3616), + [anon_sym_RBRACE] = ACTIONS(3616), + [anon_sym_typeof] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_from] = ACTIONS(3616), + [anon_sym_with] = ACTIONS(3616), + [anon_sym_var] = ACTIONS(3616), + [anon_sym_let] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_BANG] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_LPAREN] = ACTIONS(3616), + [anon_sym_await] = ACTIONS(3616), + [anon_sym_of] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_debugger] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3616), + [anon_sym_yield] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_LTtemplate_GT] = ACTIONS(3616), + [anon_sym_DQUOTE] = ACTIONS(3616), + [anon_sym_SQUOTE] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_async] = ACTIONS(3616), + [anon_sym_function] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_SLASH] = ACTIONS(3616), + [anon_sym_LT] = ACTIONS(3616), + [anon_sym_TILDE] = ACTIONS(3616), + [anon_sym_void] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_PLUS_PLUS] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3616), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3616), + [sym_number] = ACTIONS(3616), + [sym_private_property_identifier] = ACTIONS(3616), + [sym_this] = ACTIONS(3616), + [sym_super] = ACTIONS(3616), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [sym_null] = ACTIONS(3616), + [sym_undefined] = ACTIONS(3616), + [anon_sym_AT] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_readonly] = ACTIONS(3616), + [anon_sym_get] = ACTIONS(3616), + [anon_sym_set] = ACTIONS(3616), + [anon_sym_declare] = ACTIONS(3616), + [anon_sym_public] = ACTIONS(3616), + [anon_sym_private] = ACTIONS(3616), + [anon_sym_protected] = ACTIONS(3616), + [anon_sym_override] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_any] = ACTIONS(3616), + [anon_sym_number] = ACTIONS(3616), + [anon_sym_boolean] = ACTIONS(3616), + [anon_sym_string] = ACTIONS(3616), + [anon_sym_symbol] = ACTIONS(3616), + [anon_sym_object] = ACTIONS(3616), + [anon_sym_property] = ACTIONS(3616), + [anon_sym_signal] = ACTIONS(3616), + [anon_sym_on] = ACTIONS(3616), + [anon_sym_required] = ACTIONS(3616), + [anon_sym_component] = ACTIONS(3616), + [anon_sym_abstract] = ACTIONS(3616), + [anon_sym_interface] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), [sym_html_comment] = ACTIONS(5), }, - [1673] = { - [sym_comment] = STATE(1673), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_typeof] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_with] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_await] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_do] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_debugger] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_LTtemplate_GT] = ACTIONS(2332), - [anon_sym_DQUOTE] = ACTIONS(2332), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_void] = ACTIONS(2332), - [anon_sym_delete] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), + [1623] = { + [sym_comment] = STATE(1623), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_with] = ACTIONS(3660), + [anon_sym_var] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_debugger] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [sym_number] = ACTIONS(2332), - [sym_private_property_identifier] = ACTIONS(2332), - [sym_this] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_true] = ACTIONS(2332), - [sym_false] = ACTIONS(2332), - [sym_null] = ACTIONS(2332), - [sym_undefined] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [anon_sym_abstract] = ACTIONS(3660), + [anon_sym_interface] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), [sym_html_comment] = ACTIONS(5), }, - [1674] = { - [sym_comment] = STATE(1674), - [sym_identifier] = ACTIONS(3544), - [anon_sym_export] = ACTIONS(3544), - [anon_sym_type] = ACTIONS(3544), - [anon_sym_namespace] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3544), - [anon_sym_RBRACE] = ACTIONS(3544), - [anon_sym_typeof] = ACTIONS(3544), - [anon_sym_import] = ACTIONS(3544), - [anon_sym_from] = ACTIONS(3544), - [anon_sym_with] = ACTIONS(3544), - [anon_sym_var] = ACTIONS(3544), - [anon_sym_let] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_BANG] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3544), - [anon_sym_switch] = ACTIONS(3544), - [anon_sym_for] = ACTIONS(3544), - [anon_sym_LPAREN] = ACTIONS(3544), - [anon_sym_await] = ACTIONS(3544), - [anon_sym_of] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_do] = ACTIONS(3544), - [anon_sym_try] = ACTIONS(3544), - [anon_sym_break] = ACTIONS(3544), - [anon_sym_continue] = ACTIONS(3544), - [anon_sym_debugger] = ACTIONS(3544), - [anon_sym_return] = ACTIONS(3544), - [anon_sym_throw] = ACTIONS(3544), - [anon_sym_SEMI] = ACTIONS(3544), - [anon_sym_yield] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3544), - [anon_sym_LTtemplate_GT] = ACTIONS(3544), - [anon_sym_DQUOTE] = ACTIONS(3544), - [anon_sym_SQUOTE] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3544), - [anon_sym_async] = ACTIONS(3544), - [anon_sym_function] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_using] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3544), - [anon_sym_TILDE] = ACTIONS(3544), - [anon_sym_void] = ACTIONS(3544), - [anon_sym_delete] = ACTIONS(3544), - [anon_sym_PLUS_PLUS] = ACTIONS(3544), - [anon_sym_DASH_DASH] = ACTIONS(3544), + [1624] = { + [sym_comment] = STATE(1624), + [sym_identifier] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_type] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3698), + [anon_sym_RBRACE] = ACTIONS(3698), + [anon_sym_typeof] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_from] = ACTIONS(3698), + [anon_sym_with] = ACTIONS(3698), + [anon_sym_var] = ACTIONS(3698), + [anon_sym_let] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_BANG] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_await] = ACTIONS(3698), + [anon_sym_of] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_debugger] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3698), + [anon_sym_yield] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_LTtemplate_GT] = ACTIONS(3698), + [anon_sym_DQUOTE] = ACTIONS(3698), + [anon_sym_SQUOTE] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_async] = ACTIONS(3698), + [anon_sym_function] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_SLASH] = ACTIONS(3698), + [anon_sym_LT] = ACTIONS(3698), + [anon_sym_TILDE] = ACTIONS(3698), + [anon_sym_void] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_PLUS_PLUS] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3698), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3544), - [sym_number] = ACTIONS(3544), - [sym_private_property_identifier] = ACTIONS(3544), - [sym_this] = ACTIONS(3544), - [sym_super] = ACTIONS(3544), - [sym_true] = ACTIONS(3544), - [sym_false] = ACTIONS(3544), - [sym_null] = ACTIONS(3544), - [sym_undefined] = ACTIONS(3544), - [anon_sym_AT] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_readonly] = ACTIONS(3544), - [anon_sym_get] = ACTIONS(3544), - [anon_sym_set] = ACTIONS(3544), - [anon_sym_declare] = ACTIONS(3544), - [anon_sym_public] = ACTIONS(3544), - [anon_sym_private] = ACTIONS(3544), - [anon_sym_protected] = ACTIONS(3544), - [anon_sym_override] = ACTIONS(3544), - [anon_sym_module] = ACTIONS(3544), - [anon_sym_any] = ACTIONS(3544), - [anon_sym_number] = ACTIONS(3544), - [anon_sym_boolean] = ACTIONS(3544), - [anon_sym_string] = ACTIONS(3544), - [anon_sym_symbol] = ACTIONS(3544), - [anon_sym_object] = ACTIONS(3544), - [anon_sym_property] = ACTIONS(3544), - [anon_sym_signal] = ACTIONS(3544), - [anon_sym_on] = ACTIONS(3544), - [anon_sym_required] = ACTIONS(3544), - [anon_sym_component] = ACTIONS(3544), - [anon_sym_abstract] = ACTIONS(3544), - [anon_sym_interface] = ACTIONS(3544), - [anon_sym_enum] = ACTIONS(3544), + [anon_sym_BQUOTE] = ACTIONS(3698), + [sym_number] = ACTIONS(3698), + [sym_private_property_identifier] = ACTIONS(3698), + [sym_this] = ACTIONS(3698), + [sym_super] = ACTIONS(3698), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [sym_null] = ACTIONS(3698), + [sym_undefined] = ACTIONS(3698), + [anon_sym_AT] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_readonly] = ACTIONS(3698), + [anon_sym_get] = ACTIONS(3698), + [anon_sym_set] = ACTIONS(3698), + [anon_sym_declare] = ACTIONS(3698), + [anon_sym_public] = ACTIONS(3698), + [anon_sym_private] = ACTIONS(3698), + [anon_sym_protected] = ACTIONS(3698), + [anon_sym_override] = ACTIONS(3698), + [anon_sym_module] = ACTIONS(3698), + [anon_sym_any] = ACTIONS(3698), + [anon_sym_number] = ACTIONS(3698), + [anon_sym_boolean] = ACTIONS(3698), + [anon_sym_string] = ACTIONS(3698), + [anon_sym_symbol] = ACTIONS(3698), + [anon_sym_object] = ACTIONS(3698), + [anon_sym_property] = ACTIONS(3698), + [anon_sym_signal] = ACTIONS(3698), + [anon_sym_on] = ACTIONS(3698), + [anon_sym_required] = ACTIONS(3698), + [anon_sym_component] = ACTIONS(3698), + [anon_sym_abstract] = ACTIONS(3698), + [anon_sym_interface] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), [sym_html_comment] = ACTIONS(5), }, - [1675] = { - [sym_comment] = STATE(1675), + [1625] = { + [sym_comment] = STATE(1625), + [sym_identifier] = ACTIONS(3634), + [anon_sym_export] = ACTIONS(3634), + [anon_sym_type] = ACTIONS(3634), + [anon_sym_namespace] = ACTIONS(3634), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_typeof] = ACTIONS(3634), + [anon_sym_import] = ACTIONS(3634), + [anon_sym_from] = ACTIONS(3634), + [anon_sym_with] = ACTIONS(3634), + [anon_sym_var] = ACTIONS(3634), + [anon_sym_let] = ACTIONS(3634), + [anon_sym_const] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_if] = ACTIONS(3634), + [anon_sym_switch] = ACTIONS(3634), + [anon_sym_for] = ACTIONS(3634), + [anon_sym_LPAREN] = ACTIONS(3634), + [anon_sym_await] = ACTIONS(3634), + [anon_sym_of] = ACTIONS(3634), + [anon_sym_while] = ACTIONS(3634), + [anon_sym_do] = ACTIONS(3634), + [anon_sym_try] = ACTIONS(3634), + [anon_sym_break] = ACTIONS(3634), + [anon_sym_continue] = ACTIONS(3634), + [anon_sym_debugger] = ACTIONS(3634), + [anon_sym_return] = ACTIONS(3634), + [anon_sym_throw] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym_yield] = ACTIONS(3634), + [anon_sym_LBRACK] = ACTIONS(3634), + [anon_sym_LTtemplate_GT] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_class] = ACTIONS(3634), + [anon_sym_async] = ACTIONS(3634), + [anon_sym_function] = ACTIONS(3634), + [anon_sym_new] = ACTIONS(3634), + [anon_sym_using] = ACTIONS(3634), + [anon_sym_PLUS] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3634), + [anon_sym_SLASH] = ACTIONS(3634), + [anon_sym_LT] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_void] = ACTIONS(3634), + [anon_sym_delete] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3634), + [sym_number] = ACTIONS(3634), + [sym_private_property_identifier] = ACTIONS(3634), + [sym_this] = ACTIONS(3634), + [sym_super] = ACTIONS(3634), + [sym_true] = ACTIONS(3634), + [sym_false] = ACTIONS(3634), + [sym_null] = ACTIONS(3634), + [sym_undefined] = ACTIONS(3634), + [anon_sym_AT] = ACTIONS(3634), + [anon_sym_static] = ACTIONS(3634), + [anon_sym_readonly] = ACTIONS(3634), + [anon_sym_get] = ACTIONS(3634), + [anon_sym_set] = ACTIONS(3634), + [anon_sym_declare] = ACTIONS(3634), + [anon_sym_public] = ACTIONS(3634), + [anon_sym_private] = ACTIONS(3634), + [anon_sym_protected] = ACTIONS(3634), + [anon_sym_override] = ACTIONS(3634), + [anon_sym_module] = ACTIONS(3634), + [anon_sym_any] = ACTIONS(3634), + [anon_sym_number] = ACTIONS(3634), + [anon_sym_boolean] = ACTIONS(3634), + [anon_sym_string] = ACTIONS(3634), + [anon_sym_symbol] = ACTIONS(3634), + [anon_sym_object] = ACTIONS(3634), + [anon_sym_property] = ACTIONS(3634), + [anon_sym_signal] = ACTIONS(3634), + [anon_sym_on] = ACTIONS(3634), + [anon_sym_required] = ACTIONS(3634), + [anon_sym_component] = ACTIONS(3634), + [anon_sym_abstract] = ACTIONS(3634), + [anon_sym_interface] = ACTIONS(3634), + [anon_sym_enum] = ACTIONS(3634), + [sym_html_comment] = ACTIONS(5), + }, + [1626] = { + [sym_comment] = STATE(1626), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3552), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_from] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3552), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3552), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_of] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3552), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3552), + [anon_sym_LTtemplate_GT] = ACTIONS(3552), + [anon_sym_DQUOTE] = ACTIONS(3552), + [anon_sym_SQUOTE] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_LT] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3552), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3552), + [anon_sym_DASH_DASH] = ACTIONS(3552), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3552), + [sym_number] = ACTIONS(3552), + [sym_private_property_identifier] = ACTIONS(3552), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3552), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_override] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_object] = ACTIONS(3552), + [anon_sym_property] = ACTIONS(3552), + [anon_sym_signal] = ACTIONS(3552), + [anon_sym_on] = ACTIONS(3552), + [anon_sym_required] = ACTIONS(3552), + [anon_sym_component] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [sym_html_comment] = ACTIONS(5), + }, + [1627] = { + [sym_comment] = STATE(1627), + [sym_identifier] = ACTIONS(3572), + [anon_sym_export] = ACTIONS(3572), + [anon_sym_type] = ACTIONS(3572), + [anon_sym_namespace] = ACTIONS(3572), + [anon_sym_LBRACE] = ACTIONS(3572), + [anon_sym_RBRACE] = ACTIONS(3572), + [anon_sym_typeof] = ACTIONS(3572), + [anon_sym_import] = ACTIONS(3572), + [anon_sym_from] = ACTIONS(3572), + [anon_sym_with] = ACTIONS(3572), + [anon_sym_var] = ACTIONS(3572), + [anon_sym_let] = ACTIONS(3572), + [anon_sym_const] = ACTIONS(3572), + [anon_sym_BANG] = ACTIONS(3572), + [anon_sym_if] = ACTIONS(3572), + [anon_sym_switch] = ACTIONS(3572), + [anon_sym_for] = ACTIONS(3572), + [anon_sym_LPAREN] = ACTIONS(3572), + [anon_sym_await] = ACTIONS(3572), + [anon_sym_of] = ACTIONS(3572), + [anon_sym_while] = ACTIONS(3572), + [anon_sym_do] = ACTIONS(3572), + [anon_sym_try] = ACTIONS(3572), + [anon_sym_break] = ACTIONS(3572), + [anon_sym_continue] = ACTIONS(3572), + [anon_sym_debugger] = ACTIONS(3572), + [anon_sym_return] = ACTIONS(3572), + [anon_sym_throw] = ACTIONS(3572), + [anon_sym_SEMI] = ACTIONS(3572), + [anon_sym_yield] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3572), + [anon_sym_LTtemplate_GT] = ACTIONS(3572), + [anon_sym_DQUOTE] = ACTIONS(3572), + [anon_sym_SQUOTE] = ACTIONS(3572), + [anon_sym_class] = ACTIONS(3572), + [anon_sym_async] = ACTIONS(3572), + [anon_sym_function] = ACTIONS(3572), + [anon_sym_new] = ACTIONS(3572), + [anon_sym_using] = ACTIONS(3572), + [anon_sym_PLUS] = ACTIONS(3572), + [anon_sym_DASH] = ACTIONS(3572), + [anon_sym_SLASH] = ACTIONS(3572), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_TILDE] = ACTIONS(3572), + [anon_sym_void] = ACTIONS(3572), + [anon_sym_delete] = ACTIONS(3572), + [anon_sym_PLUS_PLUS] = ACTIONS(3572), + [anon_sym_DASH_DASH] = ACTIONS(3572), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3572), + [sym_number] = ACTIONS(3572), + [sym_private_property_identifier] = ACTIONS(3572), + [sym_this] = ACTIONS(3572), + [sym_super] = ACTIONS(3572), + [sym_true] = ACTIONS(3572), + [sym_false] = ACTIONS(3572), + [sym_null] = ACTIONS(3572), + [sym_undefined] = ACTIONS(3572), + [anon_sym_AT] = ACTIONS(3572), + [anon_sym_static] = ACTIONS(3572), + [anon_sym_readonly] = ACTIONS(3572), + [anon_sym_get] = ACTIONS(3572), + [anon_sym_set] = ACTIONS(3572), + [anon_sym_declare] = ACTIONS(3572), + [anon_sym_public] = ACTIONS(3572), + [anon_sym_private] = ACTIONS(3572), + [anon_sym_protected] = ACTIONS(3572), + [anon_sym_override] = ACTIONS(3572), + [anon_sym_module] = ACTIONS(3572), + [anon_sym_any] = ACTIONS(3572), + [anon_sym_number] = ACTIONS(3572), + [anon_sym_boolean] = ACTIONS(3572), + [anon_sym_string] = ACTIONS(3572), + [anon_sym_symbol] = ACTIONS(3572), + [anon_sym_object] = ACTIONS(3572), + [anon_sym_property] = ACTIONS(3572), + [anon_sym_signal] = ACTIONS(3572), + [anon_sym_on] = ACTIONS(3572), + [anon_sym_required] = ACTIONS(3572), + [anon_sym_component] = ACTIONS(3572), + [anon_sym_abstract] = ACTIONS(3572), + [anon_sym_interface] = ACTIONS(3572), + [anon_sym_enum] = ACTIONS(3572), + [sym_html_comment] = ACTIONS(5), + }, + [1628] = { + [sym_comment] = STATE(1628), [sym_identifier] = ACTIONS(3534), [anon_sym_export] = ACTIONS(3534), [anon_sym_type] = ACTIONS(3534), @@ -217857,704 +213210,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3534), [sym_html_comment] = ACTIONS(5), }, - [1676] = { - [sym_comment] = STATE(1676), - [sym_identifier] = ACTIONS(3546), - [anon_sym_export] = ACTIONS(3546), - [anon_sym_type] = ACTIONS(3546), - [anon_sym_namespace] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_RBRACE] = ACTIONS(3546), - [anon_sym_typeof] = ACTIONS(3546), - [anon_sym_import] = ACTIONS(3546), - [anon_sym_from] = ACTIONS(3546), - [anon_sym_with] = ACTIONS(3546), - [anon_sym_var] = ACTIONS(3546), - [anon_sym_let] = ACTIONS(3546), - [anon_sym_const] = ACTIONS(3546), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_if] = ACTIONS(3546), - [anon_sym_switch] = ACTIONS(3546), - [anon_sym_for] = ACTIONS(3546), - [anon_sym_LPAREN] = ACTIONS(3546), - [anon_sym_await] = ACTIONS(3546), - [anon_sym_of] = ACTIONS(3546), - [anon_sym_while] = ACTIONS(3546), - [anon_sym_do] = ACTIONS(3546), - [anon_sym_try] = ACTIONS(3546), - [anon_sym_break] = ACTIONS(3546), - [anon_sym_continue] = ACTIONS(3546), - [anon_sym_debugger] = ACTIONS(3546), - [anon_sym_return] = ACTIONS(3546), - [anon_sym_throw] = ACTIONS(3546), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym_yield] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3546), - [anon_sym_LTtemplate_GT] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(3546), - [anon_sym_SQUOTE] = ACTIONS(3546), - [anon_sym_class] = ACTIONS(3546), - [anon_sym_async] = ACTIONS(3546), - [anon_sym_function] = ACTIONS(3546), - [anon_sym_new] = ACTIONS(3546), - [anon_sym_using] = ACTIONS(3546), - [anon_sym_PLUS] = ACTIONS(3546), - [anon_sym_DASH] = ACTIONS(3546), - [anon_sym_SLASH] = ACTIONS(3546), - [anon_sym_LT] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_void] = ACTIONS(3546), - [anon_sym_delete] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_DASH_DASH] = ACTIONS(3546), + [1629] = { + [sym_comment] = STATE(1629), + [sym_identifier] = ACTIONS(3574), + [anon_sym_export] = ACTIONS(3574), + [anon_sym_type] = ACTIONS(3574), + [anon_sym_namespace] = ACTIONS(3574), + [anon_sym_LBRACE] = ACTIONS(3574), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_typeof] = ACTIONS(3574), + [anon_sym_import] = ACTIONS(3574), + [anon_sym_from] = ACTIONS(3574), + [anon_sym_with] = ACTIONS(3574), + [anon_sym_var] = ACTIONS(3574), + [anon_sym_let] = ACTIONS(3574), + [anon_sym_const] = ACTIONS(3574), + [anon_sym_BANG] = ACTIONS(3574), + [anon_sym_if] = ACTIONS(3574), + [anon_sym_switch] = ACTIONS(3574), + [anon_sym_for] = ACTIONS(3574), + [anon_sym_LPAREN] = ACTIONS(3574), + [anon_sym_await] = ACTIONS(3574), + [anon_sym_of] = ACTIONS(3574), + [anon_sym_while] = ACTIONS(3574), + [anon_sym_do] = ACTIONS(3574), + [anon_sym_try] = ACTIONS(3574), + [anon_sym_break] = ACTIONS(3574), + [anon_sym_continue] = ACTIONS(3574), + [anon_sym_debugger] = ACTIONS(3574), + [anon_sym_return] = ACTIONS(3574), + [anon_sym_throw] = ACTIONS(3574), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym_yield] = ACTIONS(3574), + [anon_sym_LBRACK] = ACTIONS(3574), + [anon_sym_LTtemplate_GT] = ACTIONS(3574), + [anon_sym_DQUOTE] = ACTIONS(3574), + [anon_sym_SQUOTE] = ACTIONS(3574), + [anon_sym_class] = ACTIONS(3574), + [anon_sym_async] = ACTIONS(3574), + [anon_sym_function] = ACTIONS(3574), + [anon_sym_new] = ACTIONS(3574), + [anon_sym_using] = ACTIONS(3574), + [anon_sym_PLUS] = ACTIONS(3574), + [anon_sym_DASH] = ACTIONS(3574), + [anon_sym_SLASH] = ACTIONS(3574), + [anon_sym_LT] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [anon_sym_void] = ACTIONS(3574), + [anon_sym_delete] = ACTIONS(3574), + [anon_sym_PLUS_PLUS] = ACTIONS(3574), + [anon_sym_DASH_DASH] = ACTIONS(3574), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3546), - [sym_number] = ACTIONS(3546), - [sym_private_property_identifier] = ACTIONS(3546), - [sym_this] = ACTIONS(3546), - [sym_super] = ACTIONS(3546), - [sym_true] = ACTIONS(3546), - [sym_false] = ACTIONS(3546), - [sym_null] = ACTIONS(3546), - [sym_undefined] = ACTIONS(3546), - [anon_sym_AT] = ACTIONS(3546), - [anon_sym_static] = ACTIONS(3546), - [anon_sym_readonly] = ACTIONS(3546), - [anon_sym_get] = ACTIONS(3546), - [anon_sym_set] = ACTIONS(3546), - [anon_sym_declare] = ACTIONS(3546), - [anon_sym_public] = ACTIONS(3546), - [anon_sym_private] = ACTIONS(3546), - [anon_sym_protected] = ACTIONS(3546), - [anon_sym_override] = ACTIONS(3546), - [anon_sym_module] = ACTIONS(3546), - [anon_sym_any] = ACTIONS(3546), - [anon_sym_number] = ACTIONS(3546), - [anon_sym_boolean] = ACTIONS(3546), - [anon_sym_string] = ACTIONS(3546), - [anon_sym_symbol] = ACTIONS(3546), - [anon_sym_object] = ACTIONS(3546), - [anon_sym_property] = ACTIONS(3546), - [anon_sym_signal] = ACTIONS(3546), - [anon_sym_on] = ACTIONS(3546), - [anon_sym_required] = ACTIONS(3546), - [anon_sym_component] = ACTIONS(3546), - [anon_sym_abstract] = ACTIONS(3546), - [anon_sym_interface] = ACTIONS(3546), - [anon_sym_enum] = ACTIONS(3546), - [sym_html_comment] = ACTIONS(5), - }, - [1677] = { - [sym_comment] = STATE(1677), - [sym_identifier] = ACTIONS(3536), - [anon_sym_export] = ACTIONS(3536), - [anon_sym_type] = ACTIONS(3536), - [anon_sym_namespace] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3536), - [anon_sym_RBRACE] = ACTIONS(3536), - [anon_sym_typeof] = ACTIONS(3536), - [anon_sym_import] = ACTIONS(3536), - [anon_sym_from] = ACTIONS(3536), - [anon_sym_with] = ACTIONS(3536), - [anon_sym_var] = ACTIONS(3536), - [anon_sym_let] = ACTIONS(3536), - [anon_sym_const] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3536), - [anon_sym_if] = ACTIONS(3536), - [anon_sym_switch] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3536), - [anon_sym_await] = ACTIONS(3536), - [anon_sym_of] = ACTIONS(3536), - [anon_sym_while] = ACTIONS(3536), - [anon_sym_do] = ACTIONS(3536), - [anon_sym_try] = ACTIONS(3536), - [anon_sym_break] = ACTIONS(3536), - [anon_sym_continue] = ACTIONS(3536), - [anon_sym_debugger] = ACTIONS(3536), - [anon_sym_return] = ACTIONS(3536), - [anon_sym_throw] = ACTIONS(3536), - [anon_sym_SEMI] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3536), - [anon_sym_LTtemplate_GT] = ACTIONS(3536), - [anon_sym_DQUOTE] = ACTIONS(3536), - [anon_sym_SQUOTE] = ACTIONS(3536), - [anon_sym_class] = ACTIONS(3536), - [anon_sym_async] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3536), - [anon_sym_using] = ACTIONS(3536), - [anon_sym_PLUS] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3536), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3536), - [anon_sym_void] = ACTIONS(3536), - [anon_sym_delete] = ACTIONS(3536), - [anon_sym_PLUS_PLUS] = ACTIONS(3536), - [anon_sym_DASH_DASH] = ACTIONS(3536), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3536), - [sym_number] = ACTIONS(3536), - [sym_private_property_identifier] = ACTIONS(3536), - [sym_this] = ACTIONS(3536), - [sym_super] = ACTIONS(3536), - [sym_true] = ACTIONS(3536), - [sym_false] = ACTIONS(3536), - [sym_null] = ACTIONS(3536), - [sym_undefined] = ACTIONS(3536), - [anon_sym_AT] = ACTIONS(3536), - [anon_sym_static] = ACTIONS(3536), - [anon_sym_readonly] = ACTIONS(3536), - [anon_sym_get] = ACTIONS(3536), - [anon_sym_set] = ACTIONS(3536), - [anon_sym_declare] = ACTIONS(3536), - [anon_sym_public] = ACTIONS(3536), - [anon_sym_private] = ACTIONS(3536), - [anon_sym_protected] = ACTIONS(3536), - [anon_sym_override] = ACTIONS(3536), - [anon_sym_module] = ACTIONS(3536), - [anon_sym_any] = ACTIONS(3536), - [anon_sym_number] = ACTIONS(3536), - [anon_sym_boolean] = ACTIONS(3536), - [anon_sym_string] = ACTIONS(3536), - [anon_sym_symbol] = ACTIONS(3536), - [anon_sym_object] = ACTIONS(3536), - [anon_sym_property] = ACTIONS(3536), - [anon_sym_signal] = ACTIONS(3536), - [anon_sym_on] = ACTIONS(3536), - [anon_sym_required] = ACTIONS(3536), - [anon_sym_component] = ACTIONS(3536), - [anon_sym_abstract] = ACTIONS(3536), - [anon_sym_interface] = ACTIONS(3536), - [anon_sym_enum] = ACTIONS(3536), - [sym_html_comment] = ACTIONS(5), - }, - [1678] = { - [sym_comment] = STATE(1678), - [sym_identifier] = ACTIONS(3538), - [anon_sym_export] = ACTIONS(3538), - [anon_sym_type] = ACTIONS(3538), - [anon_sym_namespace] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3538), - [anon_sym_RBRACE] = ACTIONS(3538), - [anon_sym_typeof] = ACTIONS(3538), - [anon_sym_import] = ACTIONS(3538), - [anon_sym_from] = ACTIONS(3538), - [anon_sym_with] = ACTIONS(3538), - [anon_sym_var] = ACTIONS(3538), - [anon_sym_let] = ACTIONS(3538), - [anon_sym_const] = ACTIONS(3538), - [anon_sym_BANG] = ACTIONS(3538), - [anon_sym_if] = ACTIONS(3538), - [anon_sym_switch] = ACTIONS(3538), - [anon_sym_for] = ACTIONS(3538), - [anon_sym_LPAREN] = ACTIONS(3538), - [anon_sym_await] = ACTIONS(3538), - [anon_sym_of] = ACTIONS(3538), - [anon_sym_while] = ACTIONS(3538), - [anon_sym_do] = ACTIONS(3538), - [anon_sym_try] = ACTIONS(3538), - [anon_sym_break] = ACTIONS(3538), - [anon_sym_continue] = ACTIONS(3538), - [anon_sym_debugger] = ACTIONS(3538), - [anon_sym_return] = ACTIONS(3538), - [anon_sym_throw] = ACTIONS(3538), - [anon_sym_SEMI] = ACTIONS(3538), - [anon_sym_yield] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3538), - [anon_sym_LTtemplate_GT] = ACTIONS(3538), - [anon_sym_DQUOTE] = ACTIONS(3538), - [anon_sym_SQUOTE] = ACTIONS(3538), - [anon_sym_class] = ACTIONS(3538), - [anon_sym_async] = ACTIONS(3538), - [anon_sym_function] = ACTIONS(3538), - [anon_sym_new] = ACTIONS(3538), - [anon_sym_using] = ACTIONS(3538), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_SLASH] = ACTIONS(3538), - [anon_sym_LT] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3538), - [anon_sym_void] = ACTIONS(3538), - [anon_sym_delete] = ACTIONS(3538), - [anon_sym_PLUS_PLUS] = ACTIONS(3538), - [anon_sym_DASH_DASH] = ACTIONS(3538), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3538), - [sym_number] = ACTIONS(3538), - [sym_private_property_identifier] = ACTIONS(3538), - [sym_this] = ACTIONS(3538), - [sym_super] = ACTIONS(3538), - [sym_true] = ACTIONS(3538), - [sym_false] = ACTIONS(3538), - [sym_null] = ACTIONS(3538), - [sym_undefined] = ACTIONS(3538), - [anon_sym_AT] = ACTIONS(3538), - [anon_sym_static] = ACTIONS(3538), - [anon_sym_readonly] = ACTIONS(3538), - [anon_sym_get] = ACTIONS(3538), - [anon_sym_set] = ACTIONS(3538), - [anon_sym_declare] = ACTIONS(3538), - [anon_sym_public] = ACTIONS(3538), - [anon_sym_private] = ACTIONS(3538), - [anon_sym_protected] = ACTIONS(3538), - [anon_sym_override] = ACTIONS(3538), - [anon_sym_module] = ACTIONS(3538), - [anon_sym_any] = ACTIONS(3538), - [anon_sym_number] = ACTIONS(3538), - [anon_sym_boolean] = ACTIONS(3538), - [anon_sym_string] = ACTIONS(3538), - [anon_sym_symbol] = ACTIONS(3538), - [anon_sym_object] = ACTIONS(3538), - [anon_sym_property] = ACTIONS(3538), - [anon_sym_signal] = ACTIONS(3538), - [anon_sym_on] = ACTIONS(3538), - [anon_sym_required] = ACTIONS(3538), - [anon_sym_component] = ACTIONS(3538), - [anon_sym_abstract] = ACTIONS(3538), - [anon_sym_interface] = ACTIONS(3538), - [anon_sym_enum] = ACTIONS(3538), - [sym_html_comment] = ACTIONS(5), - }, - [1679] = { - [sym_comment] = STATE(1679), - [sym_identifier] = ACTIONS(3598), - [anon_sym_export] = ACTIONS(3598), - [anon_sym_type] = ACTIONS(3598), - [anon_sym_namespace] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_typeof] = ACTIONS(3598), - [anon_sym_import] = ACTIONS(3598), - [anon_sym_from] = ACTIONS(3598), - [anon_sym_with] = ACTIONS(3598), - [anon_sym_var] = ACTIONS(3598), - [anon_sym_let] = ACTIONS(3598), - [anon_sym_const] = ACTIONS(3598), - [anon_sym_BANG] = ACTIONS(3598), - [anon_sym_if] = ACTIONS(3598), - [anon_sym_switch] = ACTIONS(3598), - [anon_sym_for] = ACTIONS(3598), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_await] = ACTIONS(3598), - [anon_sym_of] = ACTIONS(3598), - [anon_sym_while] = ACTIONS(3598), - [anon_sym_do] = ACTIONS(3598), - [anon_sym_try] = ACTIONS(3598), - [anon_sym_break] = ACTIONS(3598), - [anon_sym_continue] = ACTIONS(3598), - [anon_sym_debugger] = ACTIONS(3598), - [anon_sym_return] = ACTIONS(3598), - [anon_sym_throw] = ACTIONS(3598), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_yield] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(3598), - [anon_sym_LTtemplate_GT] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [anon_sym_SQUOTE] = ACTIONS(3598), - [anon_sym_class] = ACTIONS(3598), - [anon_sym_async] = ACTIONS(3598), - [anon_sym_function] = ACTIONS(3598), - [anon_sym_new] = ACTIONS(3598), - [anon_sym_using] = ACTIONS(3598), - [anon_sym_PLUS] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3598), - [anon_sym_SLASH] = ACTIONS(3598), - [anon_sym_LT] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3598), - [anon_sym_void] = ACTIONS(3598), - [anon_sym_delete] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3598), - [sym_number] = ACTIONS(3598), - [sym_private_property_identifier] = ACTIONS(3598), - [sym_this] = ACTIONS(3598), - [sym_super] = ACTIONS(3598), - [sym_true] = ACTIONS(3598), - [sym_false] = ACTIONS(3598), - [sym_null] = ACTIONS(3598), - [sym_undefined] = ACTIONS(3598), - [anon_sym_AT] = ACTIONS(3598), - [anon_sym_static] = ACTIONS(3598), - [anon_sym_readonly] = ACTIONS(3598), - [anon_sym_get] = ACTIONS(3598), - [anon_sym_set] = ACTIONS(3598), - [anon_sym_declare] = ACTIONS(3598), - [anon_sym_public] = ACTIONS(3598), - [anon_sym_private] = ACTIONS(3598), - [anon_sym_protected] = ACTIONS(3598), - [anon_sym_override] = ACTIONS(3598), - [anon_sym_module] = ACTIONS(3598), - [anon_sym_any] = ACTIONS(3598), - [anon_sym_number] = ACTIONS(3598), - [anon_sym_boolean] = ACTIONS(3598), - [anon_sym_string] = ACTIONS(3598), - [anon_sym_symbol] = ACTIONS(3598), - [anon_sym_object] = ACTIONS(3598), - [anon_sym_property] = ACTIONS(3598), - [anon_sym_signal] = ACTIONS(3598), - [anon_sym_on] = ACTIONS(3598), - [anon_sym_required] = ACTIONS(3598), - [anon_sym_component] = ACTIONS(3598), - [anon_sym_abstract] = ACTIONS(3598), - [anon_sym_interface] = ACTIONS(3598), - [anon_sym_enum] = ACTIONS(3598), + [anon_sym_BQUOTE] = ACTIONS(3574), + [sym_number] = ACTIONS(3574), + [sym_private_property_identifier] = ACTIONS(3574), + [sym_this] = ACTIONS(3574), + [sym_super] = ACTIONS(3574), + [sym_true] = ACTIONS(3574), + [sym_false] = ACTIONS(3574), + [sym_null] = ACTIONS(3574), + [sym_undefined] = ACTIONS(3574), + [anon_sym_AT] = ACTIONS(3574), + [anon_sym_static] = ACTIONS(3574), + [anon_sym_readonly] = ACTIONS(3574), + [anon_sym_get] = ACTIONS(3574), + [anon_sym_set] = ACTIONS(3574), + [anon_sym_declare] = ACTIONS(3574), + [anon_sym_public] = ACTIONS(3574), + [anon_sym_private] = ACTIONS(3574), + [anon_sym_protected] = ACTIONS(3574), + [anon_sym_override] = ACTIONS(3574), + [anon_sym_module] = ACTIONS(3574), + [anon_sym_any] = ACTIONS(3574), + [anon_sym_number] = ACTIONS(3574), + [anon_sym_boolean] = ACTIONS(3574), + [anon_sym_string] = ACTIONS(3574), + [anon_sym_symbol] = ACTIONS(3574), + [anon_sym_object] = ACTIONS(3574), + [anon_sym_property] = ACTIONS(3574), + [anon_sym_signal] = ACTIONS(3574), + [anon_sym_on] = ACTIONS(3574), + [anon_sym_required] = ACTIONS(3574), + [anon_sym_component] = ACTIONS(3574), + [anon_sym_abstract] = ACTIONS(3574), + [anon_sym_interface] = ACTIONS(3574), + [anon_sym_enum] = ACTIONS(3574), [sym_html_comment] = ACTIONS(5), }, - [1680] = { - [sym_comment] = STATE(1680), - [sym_identifier] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3520), - [anon_sym_type] = ACTIONS(3520), - [anon_sym_namespace] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3520), - [anon_sym_RBRACE] = ACTIONS(3520), - [anon_sym_typeof] = ACTIONS(3520), - [anon_sym_import] = ACTIONS(3520), - [anon_sym_from] = ACTIONS(3520), - [anon_sym_with] = ACTIONS(3520), - [anon_sym_var] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_BANG] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_LPAREN] = ACTIONS(3520), - [anon_sym_await] = ACTIONS(3520), - [anon_sym_of] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_debugger] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3520), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_LTtemplate_GT] = ACTIONS(3520), - [anon_sym_DQUOTE] = ACTIONS(3520), - [anon_sym_SQUOTE] = ACTIONS(3520), - [anon_sym_class] = ACTIONS(3520), - [anon_sym_async] = ACTIONS(3520), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_using] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_SLASH] = ACTIONS(3520), - [anon_sym_LT] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3520), - [anon_sym_void] = ACTIONS(3520), - [anon_sym_delete] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3520), + [1630] = { + [sym_comment] = STATE(1630), + [sym_identifier] = ACTIONS(3646), + [anon_sym_export] = ACTIONS(3646), + [anon_sym_type] = ACTIONS(3646), + [anon_sym_namespace] = ACTIONS(3646), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_typeof] = ACTIONS(3646), + [anon_sym_import] = ACTIONS(3646), + [anon_sym_from] = ACTIONS(3646), + [anon_sym_with] = ACTIONS(3646), + [anon_sym_var] = ACTIONS(3646), + [anon_sym_let] = ACTIONS(3646), + [anon_sym_const] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_if] = ACTIONS(3646), + [anon_sym_switch] = ACTIONS(3646), + [anon_sym_for] = ACTIONS(3646), + [anon_sym_LPAREN] = ACTIONS(3646), + [anon_sym_await] = ACTIONS(3646), + [anon_sym_of] = ACTIONS(3646), + [anon_sym_while] = ACTIONS(3646), + [anon_sym_do] = ACTIONS(3646), + [anon_sym_try] = ACTIONS(3646), + [anon_sym_break] = ACTIONS(3646), + [anon_sym_continue] = ACTIONS(3646), + [anon_sym_debugger] = ACTIONS(3646), + [anon_sym_return] = ACTIONS(3646), + [anon_sym_throw] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym_yield] = ACTIONS(3646), + [anon_sym_LBRACK] = ACTIONS(3646), + [anon_sym_LTtemplate_GT] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_class] = ACTIONS(3646), + [anon_sym_async] = ACTIONS(3646), + [anon_sym_function] = ACTIONS(3646), + [anon_sym_new] = ACTIONS(3646), + [anon_sym_using] = ACTIONS(3646), + [anon_sym_PLUS] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3646), + [anon_sym_SLASH] = ACTIONS(3646), + [anon_sym_LT] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_void] = ACTIONS(3646), + [anon_sym_delete] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_DASH_DASH] = ACTIONS(3646), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3520), - [sym_number] = ACTIONS(3520), - [sym_private_property_identifier] = ACTIONS(3520), - [sym_this] = ACTIONS(3520), - [sym_super] = ACTIONS(3520), - [sym_true] = ACTIONS(3520), - [sym_false] = ACTIONS(3520), - [sym_null] = ACTIONS(3520), - [sym_undefined] = ACTIONS(3520), - [anon_sym_AT] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_readonly] = ACTIONS(3520), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_declare] = ACTIONS(3520), - [anon_sym_public] = ACTIONS(3520), - [anon_sym_private] = ACTIONS(3520), - [anon_sym_protected] = ACTIONS(3520), - [anon_sym_override] = ACTIONS(3520), - [anon_sym_module] = ACTIONS(3520), - [anon_sym_any] = ACTIONS(3520), - [anon_sym_number] = ACTIONS(3520), - [anon_sym_boolean] = ACTIONS(3520), - [anon_sym_string] = ACTIONS(3520), - [anon_sym_symbol] = ACTIONS(3520), - [anon_sym_object] = ACTIONS(3520), - [anon_sym_property] = ACTIONS(3520), - [anon_sym_signal] = ACTIONS(3520), - [anon_sym_on] = ACTIONS(3520), - [anon_sym_required] = ACTIONS(3520), - [anon_sym_component] = ACTIONS(3520), - [anon_sym_abstract] = ACTIONS(3520), - [anon_sym_interface] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), + [anon_sym_BQUOTE] = ACTIONS(3646), + [sym_number] = ACTIONS(3646), + [sym_private_property_identifier] = ACTIONS(3646), + [sym_this] = ACTIONS(3646), + [sym_super] = ACTIONS(3646), + [sym_true] = ACTIONS(3646), + [sym_false] = ACTIONS(3646), + [sym_null] = ACTIONS(3646), + [sym_undefined] = ACTIONS(3646), + [anon_sym_AT] = ACTIONS(3646), + [anon_sym_static] = ACTIONS(3646), + [anon_sym_readonly] = ACTIONS(3646), + [anon_sym_get] = ACTIONS(3646), + [anon_sym_set] = ACTIONS(3646), + [anon_sym_declare] = ACTIONS(3646), + [anon_sym_public] = ACTIONS(3646), + [anon_sym_private] = ACTIONS(3646), + [anon_sym_protected] = ACTIONS(3646), + [anon_sym_override] = ACTIONS(3646), + [anon_sym_module] = ACTIONS(3646), + [anon_sym_any] = ACTIONS(3646), + [anon_sym_number] = ACTIONS(3646), + [anon_sym_boolean] = ACTIONS(3646), + [anon_sym_string] = ACTIONS(3646), + [anon_sym_symbol] = ACTIONS(3646), + [anon_sym_object] = ACTIONS(3646), + [anon_sym_property] = ACTIONS(3646), + [anon_sym_signal] = ACTIONS(3646), + [anon_sym_on] = ACTIONS(3646), + [anon_sym_required] = ACTIONS(3646), + [anon_sym_component] = ACTIONS(3646), + [anon_sym_abstract] = ACTIONS(3646), + [anon_sym_interface] = ACTIONS(3646), + [anon_sym_enum] = ACTIONS(3646), [sym_html_comment] = ACTIONS(5), }, - [1681] = { - [sym_comment] = STATE(1681), - [sym_identifier] = ACTIONS(3548), - [anon_sym_export] = ACTIONS(3548), - [anon_sym_type] = ACTIONS(3548), - [anon_sym_namespace] = ACTIONS(3548), - [anon_sym_LBRACE] = ACTIONS(3548), - [anon_sym_RBRACE] = ACTIONS(3548), - [anon_sym_typeof] = ACTIONS(3548), - [anon_sym_import] = ACTIONS(3548), - [anon_sym_from] = ACTIONS(3548), - [anon_sym_with] = ACTIONS(3548), - [anon_sym_var] = ACTIONS(3548), - [anon_sym_let] = ACTIONS(3548), - [anon_sym_const] = ACTIONS(3548), - [anon_sym_BANG] = ACTIONS(3548), - [anon_sym_if] = ACTIONS(3548), - [anon_sym_switch] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_await] = ACTIONS(3548), - [anon_sym_of] = ACTIONS(3548), - [anon_sym_while] = ACTIONS(3548), - [anon_sym_do] = ACTIONS(3548), - [anon_sym_try] = ACTIONS(3548), - [anon_sym_break] = ACTIONS(3548), - [anon_sym_continue] = ACTIONS(3548), - [anon_sym_debugger] = ACTIONS(3548), - [anon_sym_return] = ACTIONS(3548), - [anon_sym_throw] = ACTIONS(3548), - [anon_sym_SEMI] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3548), - [anon_sym_LBRACK] = ACTIONS(3548), - [anon_sym_LTtemplate_GT] = ACTIONS(3548), - [anon_sym_DQUOTE] = ACTIONS(3548), - [anon_sym_SQUOTE] = ACTIONS(3548), - [anon_sym_class] = ACTIONS(3548), - [anon_sym_async] = ACTIONS(3548), - [anon_sym_function] = ACTIONS(3548), - [anon_sym_new] = ACTIONS(3548), - [anon_sym_using] = ACTIONS(3548), - [anon_sym_PLUS] = ACTIONS(3548), - [anon_sym_DASH] = ACTIONS(3548), - [anon_sym_SLASH] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_TILDE] = ACTIONS(3548), - [anon_sym_void] = ACTIONS(3548), - [anon_sym_delete] = ACTIONS(3548), - [anon_sym_PLUS_PLUS] = ACTIONS(3548), - [anon_sym_DASH_DASH] = ACTIONS(3548), + [1631] = { + [sym_comment] = STATE(1631), + [sym_identifier] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_type] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(3576), + [anon_sym_typeof] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_from] = ACTIONS(3576), + [anon_sym_with] = ACTIONS(3576), + [anon_sym_var] = ACTIONS(3576), + [anon_sym_let] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_await] = ACTIONS(3576), + [anon_sym_of] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_debugger] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3576), + [anon_sym_yield] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_LTtemplate_GT] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(3576), + [anon_sym_SQUOTE] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_async] = ACTIONS(3576), + [anon_sym_function] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_TILDE] = ACTIONS(3576), + [anon_sym_void] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_PLUS_PLUS] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3576), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3548), - [sym_number] = ACTIONS(3548), - [sym_private_property_identifier] = ACTIONS(3548), - [sym_this] = ACTIONS(3548), - [sym_super] = ACTIONS(3548), - [sym_true] = ACTIONS(3548), - [sym_false] = ACTIONS(3548), - [sym_null] = ACTIONS(3548), - [sym_undefined] = ACTIONS(3548), - [anon_sym_AT] = ACTIONS(3548), - [anon_sym_static] = ACTIONS(3548), - [anon_sym_readonly] = ACTIONS(3548), - [anon_sym_get] = ACTIONS(3548), - [anon_sym_set] = ACTIONS(3548), - [anon_sym_declare] = ACTIONS(3548), - [anon_sym_public] = ACTIONS(3548), - [anon_sym_private] = ACTIONS(3548), - [anon_sym_protected] = ACTIONS(3548), - [anon_sym_override] = ACTIONS(3548), - [anon_sym_module] = ACTIONS(3548), - [anon_sym_any] = ACTIONS(3548), - [anon_sym_number] = ACTIONS(3548), - [anon_sym_boolean] = ACTIONS(3548), - [anon_sym_string] = ACTIONS(3548), - [anon_sym_symbol] = ACTIONS(3548), - [anon_sym_object] = ACTIONS(3548), - [anon_sym_property] = ACTIONS(3548), - [anon_sym_signal] = ACTIONS(3548), - [anon_sym_on] = ACTIONS(3548), - [anon_sym_required] = ACTIONS(3548), - [anon_sym_component] = ACTIONS(3548), - [anon_sym_abstract] = ACTIONS(3548), - [anon_sym_interface] = ACTIONS(3548), - [anon_sym_enum] = ACTIONS(3548), + [anon_sym_BQUOTE] = ACTIONS(3576), + [sym_number] = ACTIONS(3576), + [sym_private_property_identifier] = ACTIONS(3576), + [sym_this] = ACTIONS(3576), + [sym_super] = ACTIONS(3576), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [sym_null] = ACTIONS(3576), + [sym_undefined] = ACTIONS(3576), + [anon_sym_AT] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_readonly] = ACTIONS(3576), + [anon_sym_get] = ACTIONS(3576), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_declare] = ACTIONS(3576), + [anon_sym_public] = ACTIONS(3576), + [anon_sym_private] = ACTIONS(3576), + [anon_sym_protected] = ACTIONS(3576), + [anon_sym_override] = ACTIONS(3576), + [anon_sym_module] = ACTIONS(3576), + [anon_sym_any] = ACTIONS(3576), + [anon_sym_number] = ACTIONS(3576), + [anon_sym_boolean] = ACTIONS(3576), + [anon_sym_string] = ACTIONS(3576), + [anon_sym_symbol] = ACTIONS(3576), + [anon_sym_object] = ACTIONS(3576), + [anon_sym_property] = ACTIONS(3576), + [anon_sym_signal] = ACTIONS(3576), + [anon_sym_on] = ACTIONS(3576), + [anon_sym_required] = ACTIONS(3576), + [anon_sym_component] = ACTIONS(3576), + [anon_sym_abstract] = ACTIONS(3576), + [anon_sym_interface] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), [sym_html_comment] = ACTIONS(5), }, - [1682] = { - [sym_comment] = STATE(1682), - [sym_identifier] = ACTIONS(3552), - [anon_sym_export] = ACTIONS(3552), - [anon_sym_type] = ACTIONS(3552), - [anon_sym_namespace] = ACTIONS(3552), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_RBRACE] = ACTIONS(3552), - [anon_sym_typeof] = ACTIONS(3552), - [anon_sym_import] = ACTIONS(3552), - [anon_sym_from] = ACTIONS(3552), - [anon_sym_with] = ACTIONS(3552), - [anon_sym_var] = ACTIONS(3552), - [anon_sym_let] = ACTIONS(3552), - [anon_sym_const] = ACTIONS(3552), - [anon_sym_BANG] = ACTIONS(3552), - [anon_sym_if] = ACTIONS(3552), - [anon_sym_switch] = ACTIONS(3552), - [anon_sym_for] = ACTIONS(3552), - [anon_sym_LPAREN] = ACTIONS(3552), - [anon_sym_await] = ACTIONS(3552), - [anon_sym_of] = ACTIONS(3552), - [anon_sym_while] = ACTIONS(3552), - [anon_sym_do] = ACTIONS(3552), - [anon_sym_try] = ACTIONS(3552), - [anon_sym_break] = ACTIONS(3552), - [anon_sym_continue] = ACTIONS(3552), - [anon_sym_debugger] = ACTIONS(3552), - [anon_sym_return] = ACTIONS(3552), - [anon_sym_throw] = ACTIONS(3552), - [anon_sym_SEMI] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3552), - [anon_sym_LBRACK] = ACTIONS(3552), - [anon_sym_LTtemplate_GT] = ACTIONS(3552), - [anon_sym_DQUOTE] = ACTIONS(3552), - [anon_sym_SQUOTE] = ACTIONS(3552), - [anon_sym_class] = ACTIONS(3552), - [anon_sym_async] = ACTIONS(3552), - [anon_sym_function] = ACTIONS(3552), - [anon_sym_new] = ACTIONS(3552), - [anon_sym_using] = ACTIONS(3552), - [anon_sym_PLUS] = ACTIONS(3552), - [anon_sym_DASH] = ACTIONS(3552), - [anon_sym_SLASH] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_TILDE] = ACTIONS(3552), - [anon_sym_void] = ACTIONS(3552), - [anon_sym_delete] = ACTIONS(3552), - [anon_sym_PLUS_PLUS] = ACTIONS(3552), - [anon_sym_DASH_DASH] = ACTIONS(3552), + [1632] = { + [sym_comment] = STATE(1632), + [sym_identifier] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_type] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3522), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_typeof] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_from] = ACTIONS(3522), + [anon_sym_with] = ACTIONS(3522), + [anon_sym_var] = ACTIONS(3522), + [anon_sym_let] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3522), + [anon_sym_await] = ACTIONS(3522), + [anon_sym_of] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_debugger] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3522), + [anon_sym_yield] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_LTtemplate_GT] = ACTIONS(3522), + [anon_sym_DQUOTE] = ACTIONS(3522), + [anon_sym_SQUOTE] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_async] = ACTIONS(3522), + [anon_sym_function] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_SLASH] = ACTIONS(3522), + [anon_sym_LT] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3522), + [anon_sym_void] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3552), - [sym_number] = ACTIONS(3552), - [sym_private_property_identifier] = ACTIONS(3552), - [sym_this] = ACTIONS(3552), - [sym_super] = ACTIONS(3552), - [sym_true] = ACTIONS(3552), - [sym_false] = ACTIONS(3552), - [sym_null] = ACTIONS(3552), - [sym_undefined] = ACTIONS(3552), - [anon_sym_AT] = ACTIONS(3552), - [anon_sym_static] = ACTIONS(3552), - [anon_sym_readonly] = ACTIONS(3552), - [anon_sym_get] = ACTIONS(3552), - [anon_sym_set] = ACTIONS(3552), - [anon_sym_declare] = ACTIONS(3552), - [anon_sym_public] = ACTIONS(3552), - [anon_sym_private] = ACTIONS(3552), - [anon_sym_protected] = ACTIONS(3552), - [anon_sym_override] = ACTIONS(3552), - [anon_sym_module] = ACTIONS(3552), - [anon_sym_any] = ACTIONS(3552), - [anon_sym_number] = ACTIONS(3552), - [anon_sym_boolean] = ACTIONS(3552), - [anon_sym_string] = ACTIONS(3552), - [anon_sym_symbol] = ACTIONS(3552), - [anon_sym_object] = ACTIONS(3552), - [anon_sym_property] = ACTIONS(3552), - [anon_sym_signal] = ACTIONS(3552), - [anon_sym_on] = ACTIONS(3552), - [anon_sym_required] = ACTIONS(3552), - [anon_sym_component] = ACTIONS(3552), - [anon_sym_abstract] = ACTIONS(3552), - [anon_sym_interface] = ACTIONS(3552), - [anon_sym_enum] = ACTIONS(3552), + [anon_sym_BQUOTE] = ACTIONS(3522), + [sym_number] = ACTIONS(3522), + [sym_private_property_identifier] = ACTIONS(3522), + [sym_this] = ACTIONS(3522), + [sym_super] = ACTIONS(3522), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_undefined] = ACTIONS(3522), + [anon_sym_AT] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_readonly] = ACTIONS(3522), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_declare] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_override] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_any] = ACTIONS(3522), + [anon_sym_number] = ACTIONS(3522), + [anon_sym_boolean] = ACTIONS(3522), + [anon_sym_string] = ACTIONS(3522), + [anon_sym_symbol] = ACTIONS(3522), + [anon_sym_object] = ACTIONS(3522), + [anon_sym_property] = ACTIONS(3522), + [anon_sym_signal] = ACTIONS(3522), + [anon_sym_on] = ACTIONS(3522), + [anon_sym_required] = ACTIONS(3522), + [anon_sym_component] = ACTIONS(3522), + [anon_sym_abstract] = ACTIONS(3522), + [anon_sym_interface] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), [sym_html_comment] = ACTIONS(5), }, - [1683] = { - [sym_comment] = STATE(1683), - [sym_identifier] = ACTIONS(3494), - [anon_sym_export] = ACTIONS(3494), - [anon_sym_type] = ACTIONS(3494), - [anon_sym_namespace] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3494), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_typeof] = ACTIONS(3494), - [anon_sym_import] = ACTIONS(3494), - [anon_sym_from] = ACTIONS(3494), - [anon_sym_with] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_if] = ACTIONS(3494), - [anon_sym_switch] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3494), - [anon_sym_await] = ACTIONS(3494), - [anon_sym_of] = ACTIONS(3494), - [anon_sym_while] = ACTIONS(3494), - [anon_sym_do] = ACTIONS(3494), - [anon_sym_try] = ACTIONS(3494), - [anon_sym_break] = ACTIONS(3494), - [anon_sym_continue] = ACTIONS(3494), - [anon_sym_debugger] = ACTIONS(3494), - [anon_sym_return] = ACTIONS(3494), - [anon_sym_throw] = ACTIONS(3494), - [anon_sym_SEMI] = ACTIONS(3494), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_LTtemplate_GT] = ACTIONS(3494), - [anon_sym_DQUOTE] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(3494), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_using] = ACTIONS(3494), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_SLASH] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_TILDE] = ACTIONS(3494), - [anon_sym_void] = ACTIONS(3494), - [anon_sym_delete] = ACTIONS(3494), - [anon_sym_PLUS_PLUS] = ACTIONS(3494), - [anon_sym_DASH_DASH] = ACTIONS(3494), + [1633] = { + [sym_comment] = STATE(1633), + [sym_identifier] = ACTIONS(3576), + [anon_sym_export] = ACTIONS(3576), + [anon_sym_type] = ACTIONS(3576), + [anon_sym_namespace] = ACTIONS(3576), + [anon_sym_LBRACE] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(3576), + [anon_sym_typeof] = ACTIONS(3576), + [anon_sym_import] = ACTIONS(3576), + [anon_sym_from] = ACTIONS(3576), + [anon_sym_with] = ACTIONS(3576), + [anon_sym_var] = ACTIONS(3576), + [anon_sym_let] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_BANG] = ACTIONS(3576), + [anon_sym_if] = ACTIONS(3576), + [anon_sym_switch] = ACTIONS(3576), + [anon_sym_for] = ACTIONS(3576), + [anon_sym_LPAREN] = ACTIONS(3576), + [anon_sym_await] = ACTIONS(3576), + [anon_sym_of] = ACTIONS(3576), + [anon_sym_while] = ACTIONS(3576), + [anon_sym_do] = ACTIONS(3576), + [anon_sym_try] = ACTIONS(3576), + [anon_sym_break] = ACTIONS(3576), + [anon_sym_continue] = ACTIONS(3576), + [anon_sym_debugger] = ACTIONS(3576), + [anon_sym_return] = ACTIONS(3576), + [anon_sym_throw] = ACTIONS(3576), + [anon_sym_SEMI] = ACTIONS(3576), + [anon_sym_yield] = ACTIONS(3576), + [anon_sym_LBRACK] = ACTIONS(3576), + [anon_sym_LTtemplate_GT] = ACTIONS(3576), + [anon_sym_DQUOTE] = ACTIONS(3576), + [anon_sym_SQUOTE] = ACTIONS(3576), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_async] = ACTIONS(3576), + [anon_sym_function] = ACTIONS(3576), + [anon_sym_new] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_PLUS] = ACTIONS(3576), + [anon_sym_DASH] = ACTIONS(3576), + [anon_sym_SLASH] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(3576), + [anon_sym_TILDE] = ACTIONS(3576), + [anon_sym_void] = ACTIONS(3576), + [anon_sym_delete] = ACTIONS(3576), + [anon_sym_PLUS_PLUS] = ACTIONS(3576), + [anon_sym_DASH_DASH] = ACTIONS(3576), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3494), - [sym_number] = ACTIONS(3494), - [sym_private_property_identifier] = ACTIONS(3494), - [sym_this] = ACTIONS(3494), - [sym_super] = ACTIONS(3494), - [sym_true] = ACTIONS(3494), - [sym_false] = ACTIONS(3494), - [sym_null] = ACTIONS(3494), - [sym_undefined] = ACTIONS(3494), - [anon_sym_AT] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_get] = ACTIONS(3494), - [anon_sym_set] = ACTIONS(3494), - [anon_sym_declare] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_override] = ACTIONS(3494), - [anon_sym_module] = ACTIONS(3494), - [anon_sym_any] = ACTIONS(3494), - [anon_sym_number] = ACTIONS(3494), - [anon_sym_boolean] = ACTIONS(3494), - [anon_sym_string] = ACTIONS(3494), - [anon_sym_symbol] = ACTIONS(3494), - [anon_sym_object] = ACTIONS(3494), - [anon_sym_property] = ACTIONS(3494), - [anon_sym_signal] = ACTIONS(3494), - [anon_sym_on] = ACTIONS(3494), - [anon_sym_required] = ACTIONS(3494), - [anon_sym_component] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), + [anon_sym_BQUOTE] = ACTIONS(3576), + [sym_number] = ACTIONS(3576), + [sym_private_property_identifier] = ACTIONS(3576), + [sym_this] = ACTIONS(3576), + [sym_super] = ACTIONS(3576), + [sym_true] = ACTIONS(3576), + [sym_false] = ACTIONS(3576), + [sym_null] = ACTIONS(3576), + [sym_undefined] = ACTIONS(3576), + [anon_sym_AT] = ACTIONS(3576), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_readonly] = ACTIONS(3576), + [anon_sym_get] = ACTIONS(3576), + [anon_sym_set] = ACTIONS(3576), + [anon_sym_declare] = ACTIONS(3576), + [anon_sym_public] = ACTIONS(3576), + [anon_sym_private] = ACTIONS(3576), + [anon_sym_protected] = ACTIONS(3576), + [anon_sym_override] = ACTIONS(3576), + [anon_sym_module] = ACTIONS(3576), + [anon_sym_any] = ACTIONS(3576), + [anon_sym_number] = ACTIONS(3576), + [anon_sym_boolean] = ACTIONS(3576), + [anon_sym_string] = ACTIONS(3576), + [anon_sym_symbol] = ACTIONS(3576), + [anon_sym_object] = ACTIONS(3576), + [anon_sym_property] = ACTIONS(3576), + [anon_sym_signal] = ACTIONS(3576), + [anon_sym_on] = ACTIONS(3576), + [anon_sym_required] = ACTIONS(3576), + [anon_sym_component] = ACTIONS(3576), + [anon_sym_abstract] = ACTIONS(3576), + [anon_sym_interface] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), [sym_html_comment] = ACTIONS(5), }, - [1684] = { - [sym_comment] = STATE(1684), + [1634] = { + [sym_comment] = STATE(1634), [sym_identifier] = ACTIONS(3554), [anon_sym_export] = ACTIONS(3554), [anon_sym_type] = ACTIONS(3554), @@ -218640,182 +213732,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3554), [sym_html_comment] = ACTIONS(5), }, - [1685] = { - [sym_comment] = STATE(1685), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_typeof] = ACTIONS(2350), - [anon_sym_import] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_with] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_const] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2350), - [anon_sym_for] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_await] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_while] = ACTIONS(2350), - [anon_sym_do] = ACTIONS(2350), - [anon_sym_try] = ACTIONS(2350), - [anon_sym_break] = ACTIONS(2350), - [anon_sym_continue] = ACTIONS(2350), - [anon_sym_debugger] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2350), - [anon_sym_throw] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_yield] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LTtemplate_GT] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2350), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_new] = ACTIONS(2350), - [anon_sym_using] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_void] = ACTIONS(2350), - [anon_sym_delete] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [sym_number] = ACTIONS(2350), - [sym_private_property_identifier] = ACTIONS(2350), - [sym_this] = ACTIONS(2350), - [sym_super] = ACTIONS(2350), - [sym_true] = ACTIONS(2350), - [sym_false] = ACTIONS(2350), - [sym_null] = ACTIONS(2350), - [sym_undefined] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_abstract] = ACTIONS(2350), - [anon_sym_interface] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym_html_comment] = ACTIONS(5), - }, - [1686] = { - [sym_comment] = STATE(1686), - [sym_identifier] = ACTIONS(3574), - [anon_sym_export] = ACTIONS(3574), - [anon_sym_type] = ACTIONS(3574), - [anon_sym_namespace] = ACTIONS(3574), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_RBRACE] = ACTIONS(3574), - [anon_sym_typeof] = ACTIONS(3574), - [anon_sym_import] = ACTIONS(3574), - [anon_sym_from] = ACTIONS(3574), - [anon_sym_with] = ACTIONS(3574), - [anon_sym_var] = ACTIONS(3574), - [anon_sym_let] = ACTIONS(3574), - [anon_sym_const] = ACTIONS(3574), - [anon_sym_BANG] = ACTIONS(3574), - [anon_sym_if] = ACTIONS(3574), - [anon_sym_switch] = ACTIONS(3574), - [anon_sym_for] = ACTIONS(3574), - [anon_sym_LPAREN] = ACTIONS(3574), - [anon_sym_await] = ACTIONS(3574), - [anon_sym_of] = ACTIONS(3574), - [anon_sym_while] = ACTIONS(3574), - [anon_sym_do] = ACTIONS(3574), - [anon_sym_try] = ACTIONS(3574), - [anon_sym_break] = ACTIONS(3574), - [anon_sym_continue] = ACTIONS(3574), - [anon_sym_debugger] = ACTIONS(3574), - [anon_sym_return] = ACTIONS(3574), - [anon_sym_throw] = ACTIONS(3574), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym_yield] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_LTtemplate_GT] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [anon_sym_SQUOTE] = ACTIONS(3574), - [anon_sym_class] = ACTIONS(3574), - [anon_sym_async] = ACTIONS(3574), - [anon_sym_function] = ACTIONS(3574), - [anon_sym_new] = ACTIONS(3574), - [anon_sym_using] = ACTIONS(3574), - [anon_sym_PLUS] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3574), - [anon_sym_SLASH] = ACTIONS(3574), - [anon_sym_LT] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_void] = ACTIONS(3574), - [anon_sym_delete] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_DASH_DASH] = ACTIONS(3574), + [1635] = { + [sym_comment] = STATE(1635), + [sym_identifier] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_type] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3596), + [anon_sym_typeof] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_from] = ACTIONS(3596), + [anon_sym_with] = ACTIONS(3596), + [anon_sym_var] = ACTIONS(3596), + [anon_sym_let] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_BANG] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3596), + [anon_sym_await] = ACTIONS(3596), + [anon_sym_of] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_debugger] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3596), + [anon_sym_yield] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LTtemplate_GT] = ACTIONS(3596), + [anon_sym_DQUOTE] = ACTIONS(3596), + [anon_sym_SQUOTE] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_async] = ACTIONS(3596), + [anon_sym_function] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_SLASH] = ACTIONS(3596), + [anon_sym_LT] = ACTIONS(3596), + [anon_sym_TILDE] = ACTIONS(3596), + [anon_sym_void] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3596), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3574), - [sym_number] = ACTIONS(3574), - [sym_private_property_identifier] = ACTIONS(3574), - [sym_this] = ACTIONS(3574), - [sym_super] = ACTIONS(3574), - [sym_true] = ACTIONS(3574), - [sym_false] = ACTIONS(3574), - [sym_null] = ACTIONS(3574), - [sym_undefined] = ACTIONS(3574), - [anon_sym_AT] = ACTIONS(3574), - [anon_sym_static] = ACTIONS(3574), - [anon_sym_readonly] = ACTIONS(3574), - [anon_sym_get] = ACTIONS(3574), - [anon_sym_set] = ACTIONS(3574), - [anon_sym_declare] = ACTIONS(3574), - [anon_sym_public] = ACTIONS(3574), - [anon_sym_private] = ACTIONS(3574), - [anon_sym_protected] = ACTIONS(3574), - [anon_sym_override] = ACTIONS(3574), - [anon_sym_module] = ACTIONS(3574), - [anon_sym_any] = ACTIONS(3574), - [anon_sym_number] = ACTIONS(3574), - [anon_sym_boolean] = ACTIONS(3574), - [anon_sym_string] = ACTIONS(3574), - [anon_sym_symbol] = ACTIONS(3574), - [anon_sym_object] = ACTIONS(3574), - [anon_sym_property] = ACTIONS(3574), - [anon_sym_signal] = ACTIONS(3574), - [anon_sym_on] = ACTIONS(3574), - [anon_sym_required] = ACTIONS(3574), - [anon_sym_component] = ACTIONS(3574), - [anon_sym_abstract] = ACTIONS(3574), - [anon_sym_interface] = ACTIONS(3574), - [anon_sym_enum] = ACTIONS(3574), + [anon_sym_BQUOTE] = ACTIONS(3596), + [sym_number] = ACTIONS(3596), + [sym_private_property_identifier] = ACTIONS(3596), + [sym_this] = ACTIONS(3596), + [sym_super] = ACTIONS(3596), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_null] = ACTIONS(3596), + [sym_undefined] = ACTIONS(3596), + [anon_sym_AT] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_readonly] = ACTIONS(3596), + [anon_sym_get] = ACTIONS(3596), + [anon_sym_set] = ACTIONS(3596), + [anon_sym_declare] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_override] = ACTIONS(3596), + [anon_sym_module] = ACTIONS(3596), + [anon_sym_any] = ACTIONS(3596), + [anon_sym_number] = ACTIONS(3596), + [anon_sym_boolean] = ACTIONS(3596), + [anon_sym_string] = ACTIONS(3596), + [anon_sym_symbol] = ACTIONS(3596), + [anon_sym_object] = ACTIONS(3596), + [anon_sym_property] = ACTIONS(3596), + [anon_sym_signal] = ACTIONS(3596), + [anon_sym_on] = ACTIONS(3596), + [anon_sym_required] = ACTIONS(3596), + [anon_sym_component] = ACTIONS(3596), + [anon_sym_abstract] = ACTIONS(3596), + [anon_sym_interface] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), [sym_html_comment] = ACTIONS(5), }, - [1687] = { - [sym_comment] = STATE(1687), + [1636] = { + [sym_comment] = STATE(1636), + [sym_identifier] = ACTIONS(3578), + [anon_sym_export] = ACTIONS(3578), + [anon_sym_type] = ACTIONS(3578), + [anon_sym_namespace] = ACTIONS(3578), + [anon_sym_LBRACE] = ACTIONS(3578), + [anon_sym_RBRACE] = ACTIONS(3578), + [anon_sym_typeof] = ACTIONS(3578), + [anon_sym_import] = ACTIONS(3578), + [anon_sym_from] = ACTIONS(3578), + [anon_sym_with] = ACTIONS(3578), + [anon_sym_var] = ACTIONS(3578), + [anon_sym_let] = ACTIONS(3578), + [anon_sym_const] = ACTIONS(3578), + [anon_sym_BANG] = ACTIONS(3578), + [anon_sym_if] = ACTIONS(3578), + [anon_sym_switch] = ACTIONS(3578), + [anon_sym_for] = ACTIONS(3578), + [anon_sym_LPAREN] = ACTIONS(3578), + [anon_sym_await] = ACTIONS(3578), + [anon_sym_of] = ACTIONS(3578), + [anon_sym_while] = ACTIONS(3578), + [anon_sym_do] = ACTIONS(3578), + [anon_sym_try] = ACTIONS(3578), + [anon_sym_break] = ACTIONS(3578), + [anon_sym_continue] = ACTIONS(3578), + [anon_sym_debugger] = ACTIONS(3578), + [anon_sym_return] = ACTIONS(3578), + [anon_sym_throw] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_yield] = ACTIONS(3578), + [anon_sym_LBRACK] = ACTIONS(3578), + [anon_sym_LTtemplate_GT] = ACTIONS(3578), + [anon_sym_DQUOTE] = ACTIONS(3578), + [anon_sym_SQUOTE] = ACTIONS(3578), + [anon_sym_class] = ACTIONS(3578), + [anon_sym_async] = ACTIONS(3578), + [anon_sym_function] = ACTIONS(3578), + [anon_sym_new] = ACTIONS(3578), + [anon_sym_using] = ACTIONS(3578), + [anon_sym_PLUS] = ACTIONS(3578), + [anon_sym_DASH] = ACTIONS(3578), + [anon_sym_SLASH] = ACTIONS(3578), + [anon_sym_LT] = ACTIONS(3578), + [anon_sym_TILDE] = ACTIONS(3578), + [anon_sym_void] = ACTIONS(3578), + [anon_sym_delete] = ACTIONS(3578), + [anon_sym_PLUS_PLUS] = ACTIONS(3578), + [anon_sym_DASH_DASH] = ACTIONS(3578), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3578), + [sym_number] = ACTIONS(3578), + [sym_private_property_identifier] = ACTIONS(3578), + [sym_this] = ACTIONS(3578), + [sym_super] = ACTIONS(3578), + [sym_true] = ACTIONS(3578), + [sym_false] = ACTIONS(3578), + [sym_null] = ACTIONS(3578), + [sym_undefined] = ACTIONS(3578), + [anon_sym_AT] = ACTIONS(3578), + [anon_sym_static] = ACTIONS(3578), + [anon_sym_readonly] = ACTIONS(3578), + [anon_sym_get] = ACTIONS(3578), + [anon_sym_set] = ACTIONS(3578), + [anon_sym_declare] = ACTIONS(3578), + [anon_sym_public] = ACTIONS(3578), + [anon_sym_private] = ACTIONS(3578), + [anon_sym_protected] = ACTIONS(3578), + [anon_sym_override] = ACTIONS(3578), + [anon_sym_module] = ACTIONS(3578), + [anon_sym_any] = ACTIONS(3578), + [anon_sym_number] = ACTIONS(3578), + [anon_sym_boolean] = ACTIONS(3578), + [anon_sym_string] = ACTIONS(3578), + [anon_sym_symbol] = ACTIONS(3578), + [anon_sym_object] = ACTIONS(3578), + [anon_sym_property] = ACTIONS(3578), + [anon_sym_signal] = ACTIONS(3578), + [anon_sym_on] = ACTIONS(3578), + [anon_sym_required] = ACTIONS(3578), + [anon_sym_component] = ACTIONS(3578), + [anon_sym_abstract] = ACTIONS(3578), + [anon_sym_interface] = ACTIONS(3578), + [anon_sym_enum] = ACTIONS(3578), + [sym_html_comment] = ACTIONS(5), + }, + [1637] = { + [sym_comment] = STATE(1637), [sym_identifier] = ACTIONS(3632), [anon_sym_export] = ACTIONS(3632), [anon_sym_type] = ACTIONS(3632), @@ -218901,2618 +213993,2531 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3632), [sym_html_comment] = ACTIONS(5), }, - [1688] = { - [sym_comment] = STATE(1688), - [sym_identifier] = ACTIONS(3696), - [anon_sym_export] = ACTIONS(3696), - [anon_sym_type] = ACTIONS(3696), - [anon_sym_namespace] = ACTIONS(3696), - [anon_sym_LBRACE] = ACTIONS(3696), - [anon_sym_RBRACE] = ACTIONS(3696), - [anon_sym_typeof] = ACTIONS(3696), - [anon_sym_import] = ACTIONS(3696), - [anon_sym_from] = ACTIONS(3696), - [anon_sym_with] = ACTIONS(3696), - [anon_sym_var] = ACTIONS(3696), - [anon_sym_let] = ACTIONS(3696), - [anon_sym_const] = ACTIONS(3696), - [anon_sym_BANG] = ACTIONS(3696), - [anon_sym_if] = ACTIONS(3696), - [anon_sym_switch] = ACTIONS(3696), - [anon_sym_for] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(3696), - [anon_sym_await] = ACTIONS(3696), - [anon_sym_of] = ACTIONS(3696), - [anon_sym_while] = ACTIONS(3696), - [anon_sym_do] = ACTIONS(3696), - [anon_sym_try] = ACTIONS(3696), - [anon_sym_break] = ACTIONS(3696), - [anon_sym_continue] = ACTIONS(3696), - [anon_sym_debugger] = ACTIONS(3696), - [anon_sym_return] = ACTIONS(3696), - [anon_sym_throw] = ACTIONS(3696), - [anon_sym_SEMI] = ACTIONS(3696), - [anon_sym_yield] = ACTIONS(3696), - [anon_sym_LBRACK] = ACTIONS(3696), - [anon_sym_LTtemplate_GT] = ACTIONS(3696), - [anon_sym_DQUOTE] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3696), - [anon_sym_class] = ACTIONS(3696), - [anon_sym_async] = ACTIONS(3696), - [anon_sym_function] = ACTIONS(3696), - [anon_sym_new] = ACTIONS(3696), - [anon_sym_using] = ACTIONS(3696), - [anon_sym_PLUS] = ACTIONS(3696), - [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3696), - [anon_sym_TILDE] = ACTIONS(3696), - [anon_sym_void] = ACTIONS(3696), - [anon_sym_delete] = ACTIONS(3696), - [anon_sym_PLUS_PLUS] = ACTIONS(3696), - [anon_sym_DASH_DASH] = ACTIONS(3696), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3696), - [sym_number] = ACTIONS(3696), - [sym_private_property_identifier] = ACTIONS(3696), - [sym_this] = ACTIONS(3696), - [sym_super] = ACTIONS(3696), - [sym_true] = ACTIONS(3696), - [sym_false] = ACTIONS(3696), - [sym_null] = ACTIONS(3696), - [sym_undefined] = ACTIONS(3696), - [anon_sym_AT] = ACTIONS(3696), - [anon_sym_static] = ACTIONS(3696), - [anon_sym_readonly] = ACTIONS(3696), - [anon_sym_get] = ACTIONS(3696), - [anon_sym_set] = ACTIONS(3696), - [anon_sym_declare] = ACTIONS(3696), - [anon_sym_public] = ACTIONS(3696), - [anon_sym_private] = ACTIONS(3696), - [anon_sym_protected] = ACTIONS(3696), - [anon_sym_override] = ACTIONS(3696), - [anon_sym_module] = ACTIONS(3696), - [anon_sym_any] = ACTIONS(3696), - [anon_sym_number] = ACTIONS(3696), - [anon_sym_boolean] = ACTIONS(3696), - [anon_sym_string] = ACTIONS(3696), - [anon_sym_symbol] = ACTIONS(3696), - [anon_sym_object] = ACTIONS(3696), - [anon_sym_property] = ACTIONS(3696), - [anon_sym_signal] = ACTIONS(3696), - [anon_sym_on] = ACTIONS(3696), - [anon_sym_required] = ACTIONS(3696), - [anon_sym_component] = ACTIONS(3696), - [anon_sym_abstract] = ACTIONS(3696), - [anon_sym_interface] = ACTIONS(3696), - [anon_sym_enum] = ACTIONS(3696), + [1638] = { + [sym_comment] = STATE(1638), + [sym_identifier] = ACTIONS(3580), + [anon_sym_export] = ACTIONS(3580), + [anon_sym_type] = ACTIONS(3580), + [anon_sym_namespace] = ACTIONS(3580), + [anon_sym_LBRACE] = ACTIONS(3580), + [anon_sym_RBRACE] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(3580), + [anon_sym_import] = ACTIONS(3580), + [anon_sym_from] = ACTIONS(3580), + [anon_sym_with] = ACTIONS(3580), + [anon_sym_var] = ACTIONS(3580), + [anon_sym_let] = ACTIONS(3580), + [anon_sym_const] = ACTIONS(3580), + [anon_sym_BANG] = ACTIONS(3580), + [anon_sym_if] = ACTIONS(3580), + [anon_sym_switch] = ACTIONS(3580), + [anon_sym_for] = ACTIONS(3580), + [anon_sym_LPAREN] = ACTIONS(3580), + [anon_sym_await] = ACTIONS(3580), + [anon_sym_of] = ACTIONS(3580), + [anon_sym_while] = ACTIONS(3580), + [anon_sym_do] = ACTIONS(3580), + [anon_sym_try] = ACTIONS(3580), + [anon_sym_break] = ACTIONS(3580), + [anon_sym_continue] = ACTIONS(3580), + [anon_sym_debugger] = ACTIONS(3580), + [anon_sym_return] = ACTIONS(3580), + [anon_sym_throw] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_yield] = ACTIONS(3580), + [anon_sym_LBRACK] = ACTIONS(3580), + [anon_sym_LTtemplate_GT] = ACTIONS(3580), + [anon_sym_DQUOTE] = ACTIONS(3580), + [anon_sym_SQUOTE] = ACTIONS(3580), + [anon_sym_class] = ACTIONS(3580), + [anon_sym_async] = ACTIONS(3580), + [anon_sym_function] = ACTIONS(3580), + [anon_sym_new] = ACTIONS(3580), + [anon_sym_using] = ACTIONS(3580), + [anon_sym_PLUS] = ACTIONS(3580), + [anon_sym_DASH] = ACTIONS(3580), + [anon_sym_SLASH] = ACTIONS(3580), + [anon_sym_LT] = ACTIONS(3580), + [anon_sym_TILDE] = ACTIONS(3580), + [anon_sym_void] = ACTIONS(3580), + [anon_sym_delete] = ACTIONS(3580), + [anon_sym_PLUS_PLUS] = ACTIONS(3580), + [anon_sym_DASH_DASH] = ACTIONS(3580), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3580), + [sym_number] = ACTIONS(3580), + [sym_private_property_identifier] = ACTIONS(3580), + [sym_this] = ACTIONS(3580), + [sym_super] = ACTIONS(3580), + [sym_true] = ACTIONS(3580), + [sym_false] = ACTIONS(3580), + [sym_null] = ACTIONS(3580), + [sym_undefined] = ACTIONS(3580), + [anon_sym_AT] = ACTIONS(3580), + [anon_sym_static] = ACTIONS(3580), + [anon_sym_readonly] = ACTIONS(3580), + [anon_sym_get] = ACTIONS(3580), + [anon_sym_set] = ACTIONS(3580), + [anon_sym_declare] = ACTIONS(3580), + [anon_sym_public] = ACTIONS(3580), + [anon_sym_private] = ACTIONS(3580), + [anon_sym_protected] = ACTIONS(3580), + [anon_sym_override] = ACTIONS(3580), + [anon_sym_module] = ACTIONS(3580), + [anon_sym_any] = ACTIONS(3580), + [anon_sym_number] = ACTIONS(3580), + [anon_sym_boolean] = ACTIONS(3580), + [anon_sym_string] = ACTIONS(3580), + [anon_sym_symbol] = ACTIONS(3580), + [anon_sym_object] = ACTIONS(3580), + [anon_sym_property] = ACTIONS(3580), + [anon_sym_signal] = ACTIONS(3580), + [anon_sym_on] = ACTIONS(3580), + [anon_sym_required] = ACTIONS(3580), + [anon_sym_component] = ACTIONS(3580), + [anon_sym_abstract] = ACTIONS(3580), + [anon_sym_interface] = ACTIONS(3580), + [anon_sym_enum] = ACTIONS(3580), [sym_html_comment] = ACTIONS(5), }, - [1689] = { - [sym_comment] = STATE(1689), - [sym_identifier] = ACTIONS(3690), - [anon_sym_export] = ACTIONS(3690), - [anon_sym_type] = ACTIONS(3690), - [anon_sym_namespace] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(3690), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_typeof] = ACTIONS(3690), - [anon_sym_import] = ACTIONS(3690), - [anon_sym_from] = ACTIONS(3690), - [anon_sym_with] = ACTIONS(3690), - [anon_sym_var] = ACTIONS(3690), - [anon_sym_let] = ACTIONS(3690), - [anon_sym_const] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3690), - [anon_sym_if] = ACTIONS(3690), - [anon_sym_switch] = ACTIONS(3690), - [anon_sym_for] = ACTIONS(3690), - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_await] = ACTIONS(3690), - [anon_sym_of] = ACTIONS(3690), - [anon_sym_while] = ACTIONS(3690), - [anon_sym_do] = ACTIONS(3690), - [anon_sym_try] = ACTIONS(3690), - [anon_sym_break] = ACTIONS(3690), - [anon_sym_continue] = ACTIONS(3690), - [anon_sym_debugger] = ACTIONS(3690), - [anon_sym_return] = ACTIONS(3690), - [anon_sym_throw] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym_yield] = ACTIONS(3690), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_LTtemplate_GT] = ACTIONS(3690), - [anon_sym_DQUOTE] = ACTIONS(3690), - [anon_sym_SQUOTE] = ACTIONS(3690), - [anon_sym_class] = ACTIONS(3690), - [anon_sym_async] = ACTIONS(3690), - [anon_sym_function] = ACTIONS(3690), - [anon_sym_new] = ACTIONS(3690), - [anon_sym_using] = ACTIONS(3690), - [anon_sym_PLUS] = ACTIONS(3690), - [anon_sym_DASH] = ACTIONS(3690), - [anon_sym_SLASH] = ACTIONS(3690), - [anon_sym_LT] = ACTIONS(3690), - [anon_sym_TILDE] = ACTIONS(3690), - [anon_sym_void] = ACTIONS(3690), - [anon_sym_delete] = ACTIONS(3690), - [anon_sym_PLUS_PLUS] = ACTIONS(3690), - [anon_sym_DASH_DASH] = ACTIONS(3690), + [1639] = { + [sym_comment] = STATE(1639), + [sym_identifier] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_type] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3678), + [anon_sym_RBRACE] = ACTIONS(3678), + [anon_sym_typeof] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_from] = ACTIONS(3678), + [anon_sym_with] = ACTIONS(3678), + [anon_sym_var] = ACTIONS(3678), + [anon_sym_let] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_LPAREN] = ACTIONS(3678), + [anon_sym_await] = ACTIONS(3678), + [anon_sym_of] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_debugger] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3678), + [anon_sym_yield] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_LTtemplate_GT] = ACTIONS(3678), + [anon_sym_DQUOTE] = ACTIONS(3678), + [anon_sym_SQUOTE] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_async] = ACTIONS(3678), + [anon_sym_function] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_SLASH] = ACTIONS(3678), + [anon_sym_LT] = ACTIONS(3678), + [anon_sym_TILDE] = ACTIONS(3678), + [anon_sym_void] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_PLUS_PLUS] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3678), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3690), - [sym_number] = ACTIONS(3690), - [sym_private_property_identifier] = ACTIONS(3690), - [sym_this] = ACTIONS(3690), - [sym_super] = ACTIONS(3690), - [sym_true] = ACTIONS(3690), - [sym_false] = ACTIONS(3690), - [sym_null] = ACTIONS(3690), - [sym_undefined] = ACTIONS(3690), - [anon_sym_AT] = ACTIONS(3690), - [anon_sym_static] = ACTIONS(3690), - [anon_sym_readonly] = ACTIONS(3690), - [anon_sym_get] = ACTIONS(3690), - [anon_sym_set] = ACTIONS(3690), - [anon_sym_declare] = ACTIONS(3690), - [anon_sym_public] = ACTIONS(3690), - [anon_sym_private] = ACTIONS(3690), - [anon_sym_protected] = ACTIONS(3690), - [anon_sym_override] = ACTIONS(3690), - [anon_sym_module] = ACTIONS(3690), - [anon_sym_any] = ACTIONS(3690), - [anon_sym_number] = ACTIONS(3690), - [anon_sym_boolean] = ACTIONS(3690), - [anon_sym_string] = ACTIONS(3690), - [anon_sym_symbol] = ACTIONS(3690), - [anon_sym_object] = ACTIONS(3690), - [anon_sym_property] = ACTIONS(3690), - [anon_sym_signal] = ACTIONS(3690), - [anon_sym_on] = ACTIONS(3690), - [anon_sym_required] = ACTIONS(3690), - [anon_sym_component] = ACTIONS(3690), - [anon_sym_abstract] = ACTIONS(3690), - [anon_sym_interface] = ACTIONS(3690), - [anon_sym_enum] = ACTIONS(3690), + [anon_sym_BQUOTE] = ACTIONS(3678), + [sym_number] = ACTIONS(3678), + [sym_private_property_identifier] = ACTIONS(3678), + [sym_this] = ACTIONS(3678), + [sym_super] = ACTIONS(3678), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_AT] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3678), + [anon_sym_get] = ACTIONS(3678), + [anon_sym_set] = ACTIONS(3678), + [anon_sym_declare] = ACTIONS(3678), + [anon_sym_public] = ACTIONS(3678), + [anon_sym_private] = ACTIONS(3678), + [anon_sym_protected] = ACTIONS(3678), + [anon_sym_override] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_any] = ACTIONS(3678), + [anon_sym_number] = ACTIONS(3678), + [anon_sym_boolean] = ACTIONS(3678), + [anon_sym_string] = ACTIONS(3678), + [anon_sym_symbol] = ACTIONS(3678), + [anon_sym_object] = ACTIONS(3678), + [anon_sym_property] = ACTIONS(3678), + [anon_sym_signal] = ACTIONS(3678), + [anon_sym_on] = ACTIONS(3678), + [anon_sym_required] = ACTIONS(3678), + [anon_sym_component] = ACTIONS(3678), + [anon_sym_abstract] = ACTIONS(3678), + [anon_sym_interface] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), [sym_html_comment] = ACTIONS(5), }, - [1690] = { - [sym_comment] = STATE(1690), - [sym_identifier] = ACTIONS(3686), - [anon_sym_export] = ACTIONS(3686), - [anon_sym_type] = ACTIONS(3686), - [anon_sym_namespace] = ACTIONS(3686), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_typeof] = ACTIONS(3686), - [anon_sym_import] = ACTIONS(3686), - [anon_sym_from] = ACTIONS(3686), - [anon_sym_with] = ACTIONS(3686), - [anon_sym_var] = ACTIONS(3686), - [anon_sym_let] = ACTIONS(3686), - [anon_sym_const] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_if] = ACTIONS(3686), - [anon_sym_switch] = ACTIONS(3686), - [anon_sym_for] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(3686), - [anon_sym_await] = ACTIONS(3686), - [anon_sym_of] = ACTIONS(3686), - [anon_sym_while] = ACTIONS(3686), - [anon_sym_do] = ACTIONS(3686), - [anon_sym_try] = ACTIONS(3686), - [anon_sym_break] = ACTIONS(3686), - [anon_sym_continue] = ACTIONS(3686), - [anon_sym_debugger] = ACTIONS(3686), - [anon_sym_return] = ACTIONS(3686), - [anon_sym_throw] = ACTIONS(3686), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym_yield] = ACTIONS(3686), - [anon_sym_LBRACK] = ACTIONS(3686), - [anon_sym_LTtemplate_GT] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_class] = ACTIONS(3686), - [anon_sym_async] = ACTIONS(3686), - [anon_sym_function] = ACTIONS(3686), - [anon_sym_new] = ACTIONS(3686), - [anon_sym_using] = ACTIONS(3686), - [anon_sym_PLUS] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3686), - [anon_sym_SLASH] = ACTIONS(3686), - [anon_sym_LT] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_void] = ACTIONS(3686), - [anon_sym_delete] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_DASH_DASH] = ACTIONS(3686), + [1640] = { + [sym_comment] = STATE(1640), + [sym_identifier] = ACTIONS(3582), + [anon_sym_export] = ACTIONS(3582), + [anon_sym_type] = ACTIONS(3582), + [anon_sym_namespace] = ACTIONS(3582), + [anon_sym_LBRACE] = ACTIONS(3582), + [anon_sym_RBRACE] = ACTIONS(3582), + [anon_sym_typeof] = ACTIONS(3582), + [anon_sym_import] = ACTIONS(3582), + [anon_sym_from] = ACTIONS(3582), + [anon_sym_with] = ACTIONS(3582), + [anon_sym_var] = ACTIONS(3582), + [anon_sym_let] = ACTIONS(3582), + [anon_sym_const] = ACTIONS(3582), + [anon_sym_BANG] = ACTIONS(3582), + [anon_sym_if] = ACTIONS(3582), + [anon_sym_switch] = ACTIONS(3582), + [anon_sym_for] = ACTIONS(3582), + [anon_sym_LPAREN] = ACTIONS(3582), + [anon_sym_await] = ACTIONS(3582), + [anon_sym_of] = ACTIONS(3582), + [anon_sym_while] = ACTIONS(3582), + [anon_sym_do] = ACTIONS(3582), + [anon_sym_try] = ACTIONS(3582), + [anon_sym_break] = ACTIONS(3582), + [anon_sym_continue] = ACTIONS(3582), + [anon_sym_debugger] = ACTIONS(3582), + [anon_sym_return] = ACTIONS(3582), + [anon_sym_throw] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_yield] = ACTIONS(3582), + [anon_sym_LBRACK] = ACTIONS(3582), + [anon_sym_LTtemplate_GT] = ACTIONS(3582), + [anon_sym_DQUOTE] = ACTIONS(3582), + [anon_sym_SQUOTE] = ACTIONS(3582), + [anon_sym_class] = ACTIONS(3582), + [anon_sym_async] = ACTIONS(3582), + [anon_sym_function] = ACTIONS(3582), + [anon_sym_new] = ACTIONS(3582), + [anon_sym_using] = ACTIONS(3582), + [anon_sym_PLUS] = ACTIONS(3582), + [anon_sym_DASH] = ACTIONS(3582), + [anon_sym_SLASH] = ACTIONS(3582), + [anon_sym_LT] = ACTIONS(3582), + [anon_sym_TILDE] = ACTIONS(3582), + [anon_sym_void] = ACTIONS(3582), + [anon_sym_delete] = ACTIONS(3582), + [anon_sym_PLUS_PLUS] = ACTIONS(3582), + [anon_sym_DASH_DASH] = ACTIONS(3582), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3686), - [sym_number] = ACTIONS(3686), - [sym_private_property_identifier] = ACTIONS(3686), - [sym_this] = ACTIONS(3686), - [sym_super] = ACTIONS(3686), - [sym_true] = ACTIONS(3686), - [sym_false] = ACTIONS(3686), - [sym_null] = ACTIONS(3686), - [sym_undefined] = ACTIONS(3686), - [anon_sym_AT] = ACTIONS(3686), - [anon_sym_static] = ACTIONS(3686), - [anon_sym_readonly] = ACTIONS(3686), - [anon_sym_get] = ACTIONS(3686), - [anon_sym_set] = ACTIONS(3686), - [anon_sym_declare] = ACTIONS(3686), - [anon_sym_public] = ACTIONS(3686), - [anon_sym_private] = ACTIONS(3686), - [anon_sym_protected] = ACTIONS(3686), - [anon_sym_override] = ACTIONS(3686), - [anon_sym_module] = ACTIONS(3686), - [anon_sym_any] = ACTIONS(3686), - [anon_sym_number] = ACTIONS(3686), - [anon_sym_boolean] = ACTIONS(3686), - [anon_sym_string] = ACTIONS(3686), - [anon_sym_symbol] = ACTIONS(3686), - [anon_sym_object] = ACTIONS(3686), - [anon_sym_property] = ACTIONS(3686), - [anon_sym_signal] = ACTIONS(3686), - [anon_sym_on] = ACTIONS(3686), - [anon_sym_required] = ACTIONS(3686), - [anon_sym_component] = ACTIONS(3686), - [anon_sym_abstract] = ACTIONS(3686), - [anon_sym_interface] = ACTIONS(3686), - [anon_sym_enum] = ACTIONS(3686), + [anon_sym_BQUOTE] = ACTIONS(3582), + [sym_number] = ACTIONS(3582), + [sym_private_property_identifier] = ACTIONS(3582), + [sym_this] = ACTIONS(3582), + [sym_super] = ACTIONS(3582), + [sym_true] = ACTIONS(3582), + [sym_false] = ACTIONS(3582), + [sym_null] = ACTIONS(3582), + [sym_undefined] = ACTIONS(3582), + [anon_sym_AT] = ACTIONS(3582), + [anon_sym_static] = ACTIONS(3582), + [anon_sym_readonly] = ACTIONS(3582), + [anon_sym_get] = ACTIONS(3582), + [anon_sym_set] = ACTIONS(3582), + [anon_sym_declare] = ACTIONS(3582), + [anon_sym_public] = ACTIONS(3582), + [anon_sym_private] = ACTIONS(3582), + [anon_sym_protected] = ACTIONS(3582), + [anon_sym_override] = ACTIONS(3582), + [anon_sym_module] = ACTIONS(3582), + [anon_sym_any] = ACTIONS(3582), + [anon_sym_number] = ACTIONS(3582), + [anon_sym_boolean] = ACTIONS(3582), + [anon_sym_string] = ACTIONS(3582), + [anon_sym_symbol] = ACTIONS(3582), + [anon_sym_object] = ACTIONS(3582), + [anon_sym_property] = ACTIONS(3582), + [anon_sym_signal] = ACTIONS(3582), + [anon_sym_on] = ACTIONS(3582), + [anon_sym_required] = ACTIONS(3582), + [anon_sym_component] = ACTIONS(3582), + [anon_sym_abstract] = ACTIONS(3582), + [anon_sym_interface] = ACTIONS(3582), + [anon_sym_enum] = ACTIONS(3582), [sym_html_comment] = ACTIONS(5), }, - [1691] = { - [sym_comment] = STATE(1691), - [sym_identifier] = ACTIONS(3488), - [anon_sym_export] = ACTIONS(3488), - [anon_sym_type] = ACTIONS(3488), - [anon_sym_namespace] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_RBRACE] = ACTIONS(3488), - [anon_sym_typeof] = ACTIONS(3488), - [anon_sym_import] = ACTIONS(3488), - [anon_sym_from] = ACTIONS(3488), - [anon_sym_with] = ACTIONS(3488), - [anon_sym_var] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_const] = ACTIONS(3488), - [anon_sym_BANG] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_switch] = ACTIONS(3488), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_await] = ACTIONS(3488), - [anon_sym_of] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_break] = ACTIONS(3488), - [anon_sym_continue] = ACTIONS(3488), - [anon_sym_debugger] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_throw] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LTtemplate_GT] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_SQUOTE] = ACTIONS(3488), - [anon_sym_class] = ACTIONS(3488), - [anon_sym_async] = ACTIONS(3488), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_using] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_SLASH] = ACTIONS(3488), - [anon_sym_LT] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3488), - [anon_sym_void] = ACTIONS(3488), - [anon_sym_delete] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(3488), - [anon_sym_DASH_DASH] = ACTIONS(3488), + [1641] = { + [sym_comment] = STATE(1641), + [sym_identifier] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_type] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3624), + [anon_sym_RBRACE] = ACTIONS(3624), + [anon_sym_typeof] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_from] = ACTIONS(3624), + [anon_sym_with] = ACTIONS(3624), + [anon_sym_var] = ACTIONS(3624), + [anon_sym_let] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_BANG] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_LPAREN] = ACTIONS(3624), + [anon_sym_await] = ACTIONS(3624), + [anon_sym_of] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_debugger] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3624), + [anon_sym_yield] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_LTtemplate_GT] = ACTIONS(3624), + [anon_sym_DQUOTE] = ACTIONS(3624), + [anon_sym_SQUOTE] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_async] = ACTIONS(3624), + [anon_sym_function] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_SLASH] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(3624), + [anon_sym_TILDE] = ACTIONS(3624), + [anon_sym_void] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_PLUS_PLUS] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3624), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3488), - [sym_number] = ACTIONS(3488), - [sym_private_property_identifier] = ACTIONS(3488), - [sym_this] = ACTIONS(3488), - [sym_super] = ACTIONS(3488), - [sym_true] = ACTIONS(3488), - [sym_false] = ACTIONS(3488), - [sym_null] = ACTIONS(3488), - [sym_undefined] = ACTIONS(3488), - [anon_sym_AT] = ACTIONS(3488), - [anon_sym_static] = ACTIONS(3488), - [anon_sym_readonly] = ACTIONS(3488), - [anon_sym_get] = ACTIONS(3488), - [anon_sym_set] = ACTIONS(3488), - [anon_sym_declare] = ACTIONS(3488), - [anon_sym_public] = ACTIONS(3488), - [anon_sym_private] = ACTIONS(3488), - [anon_sym_protected] = ACTIONS(3488), - [anon_sym_override] = ACTIONS(3488), - [anon_sym_module] = ACTIONS(3488), - [anon_sym_any] = ACTIONS(3488), - [anon_sym_number] = ACTIONS(3488), - [anon_sym_boolean] = ACTIONS(3488), - [anon_sym_string] = ACTIONS(3488), - [anon_sym_symbol] = ACTIONS(3488), - [anon_sym_object] = ACTIONS(3488), - [anon_sym_property] = ACTIONS(3488), - [anon_sym_signal] = ACTIONS(3488), - [anon_sym_on] = ACTIONS(3488), - [anon_sym_required] = ACTIONS(3488), - [anon_sym_component] = ACTIONS(3488), - [anon_sym_abstract] = ACTIONS(3488), - [anon_sym_interface] = ACTIONS(3488), - [anon_sym_enum] = ACTIONS(3488), + [anon_sym_BQUOTE] = ACTIONS(3624), + [sym_number] = ACTIONS(3624), + [sym_private_property_identifier] = ACTIONS(3624), + [sym_this] = ACTIONS(3624), + [sym_super] = ACTIONS(3624), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [sym_null] = ACTIONS(3624), + [sym_undefined] = ACTIONS(3624), + [anon_sym_AT] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_readonly] = ACTIONS(3624), + [anon_sym_get] = ACTIONS(3624), + [anon_sym_set] = ACTIONS(3624), + [anon_sym_declare] = ACTIONS(3624), + [anon_sym_public] = ACTIONS(3624), + [anon_sym_private] = ACTIONS(3624), + [anon_sym_protected] = ACTIONS(3624), + [anon_sym_override] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_any] = ACTIONS(3624), + [anon_sym_number] = ACTIONS(3624), + [anon_sym_boolean] = ACTIONS(3624), + [anon_sym_string] = ACTIONS(3624), + [anon_sym_symbol] = ACTIONS(3624), + [anon_sym_object] = ACTIONS(3624), + [anon_sym_property] = ACTIONS(3624), + [anon_sym_signal] = ACTIONS(3624), + [anon_sym_on] = ACTIONS(3624), + [anon_sym_required] = ACTIONS(3624), + [anon_sym_component] = ACTIONS(3624), + [anon_sym_abstract] = ACTIONS(3624), + [anon_sym_interface] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), [sym_html_comment] = ACTIONS(5), }, - [1692] = { - [sym_comment] = STATE(1692), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1642] = { + [sym_comment] = STATE(1642), + [sym_identifier] = ACTIONS(3702), + [anon_sym_export] = ACTIONS(3702), + [anon_sym_type] = ACTIONS(3702), + [anon_sym_namespace] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3702), + [anon_sym_RBRACE] = ACTIONS(3702), + [anon_sym_typeof] = ACTIONS(3702), + [anon_sym_import] = ACTIONS(3702), + [anon_sym_from] = ACTIONS(3702), + [anon_sym_with] = ACTIONS(3702), + [anon_sym_var] = ACTIONS(3702), + [anon_sym_let] = ACTIONS(3702), + [anon_sym_const] = ACTIONS(3702), + [anon_sym_BANG] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(3702), + [anon_sym_await] = ACTIONS(3702), + [anon_sym_of] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_break] = ACTIONS(3702), + [anon_sym_continue] = ACTIONS(3702), + [anon_sym_debugger] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_throw] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3702), + [anon_sym_yield] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_LTtemplate_GT] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3702), + [anon_sym_SQUOTE] = ACTIONS(3702), + [anon_sym_class] = ACTIONS(3702), + [anon_sym_async] = ACTIONS(3702), + [anon_sym_function] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_using] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3702), + [anon_sym_TILDE] = ACTIONS(3702), + [anon_sym_void] = ACTIONS(3702), + [anon_sym_delete] = ACTIONS(3702), + [anon_sym_PLUS_PLUS] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3702), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3702), + [sym_number] = ACTIONS(3702), + [sym_private_property_identifier] = ACTIONS(3702), + [sym_this] = ACTIONS(3702), + [sym_super] = ACTIONS(3702), + [sym_true] = ACTIONS(3702), + [sym_false] = ACTIONS(3702), + [sym_null] = ACTIONS(3702), + [sym_undefined] = ACTIONS(3702), + [anon_sym_AT] = ACTIONS(3702), + [anon_sym_static] = ACTIONS(3702), + [anon_sym_readonly] = ACTIONS(3702), + [anon_sym_get] = ACTIONS(3702), + [anon_sym_set] = ACTIONS(3702), + [anon_sym_declare] = ACTIONS(3702), + [anon_sym_public] = ACTIONS(3702), + [anon_sym_private] = ACTIONS(3702), + [anon_sym_protected] = ACTIONS(3702), + [anon_sym_override] = ACTIONS(3702), + [anon_sym_module] = ACTIONS(3702), + [anon_sym_any] = ACTIONS(3702), + [anon_sym_number] = ACTIONS(3702), + [anon_sym_boolean] = ACTIONS(3702), + [anon_sym_string] = ACTIONS(3702), + [anon_sym_symbol] = ACTIONS(3702), + [anon_sym_object] = ACTIONS(3702), + [anon_sym_property] = ACTIONS(3702), + [anon_sym_signal] = ACTIONS(3702), + [anon_sym_on] = ACTIONS(3702), + [anon_sym_required] = ACTIONS(3702), + [anon_sym_component] = ACTIONS(3702), + [anon_sym_abstract] = ACTIONS(3702), + [anon_sym_interface] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(3702), [sym_html_comment] = ACTIONS(5), }, - [1693] = { - [sym_comment] = STATE(1693), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1643] = { + [sym_comment] = STATE(1643), + [sym_identifier] = ACTIONS(3650), + [anon_sym_export] = ACTIONS(3650), + [anon_sym_type] = ACTIONS(3650), + [anon_sym_namespace] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_typeof] = ACTIONS(3650), + [anon_sym_import] = ACTIONS(3650), + [anon_sym_from] = ACTIONS(3650), + [anon_sym_with] = ACTIONS(3650), + [anon_sym_var] = ACTIONS(3650), + [anon_sym_let] = ACTIONS(3650), + [anon_sym_const] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_if] = ACTIONS(3650), + [anon_sym_switch] = ACTIONS(3650), + [anon_sym_for] = ACTIONS(3650), + [anon_sym_LPAREN] = ACTIONS(3650), + [anon_sym_await] = ACTIONS(3650), + [anon_sym_of] = ACTIONS(3650), + [anon_sym_while] = ACTIONS(3650), + [anon_sym_do] = ACTIONS(3650), + [anon_sym_try] = ACTIONS(3650), + [anon_sym_break] = ACTIONS(3650), + [anon_sym_continue] = ACTIONS(3650), + [anon_sym_debugger] = ACTIONS(3650), + [anon_sym_return] = ACTIONS(3650), + [anon_sym_throw] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym_yield] = ACTIONS(3650), + [anon_sym_LBRACK] = ACTIONS(3650), + [anon_sym_LTtemplate_GT] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_class] = ACTIONS(3650), + [anon_sym_async] = ACTIONS(3650), + [anon_sym_function] = ACTIONS(3650), + [anon_sym_new] = ACTIONS(3650), + [anon_sym_using] = ACTIONS(3650), + [anon_sym_PLUS] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_SLASH] = ACTIONS(3650), + [anon_sym_LT] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_void] = ACTIONS(3650), + [anon_sym_delete] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_DASH_DASH] = ACTIONS(3650), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3650), + [sym_number] = ACTIONS(3650), + [sym_private_property_identifier] = ACTIONS(3650), + [sym_this] = ACTIONS(3650), + [sym_super] = ACTIONS(3650), + [sym_true] = ACTIONS(3650), + [sym_false] = ACTIONS(3650), + [sym_null] = ACTIONS(3650), + [sym_undefined] = ACTIONS(3650), + [anon_sym_AT] = ACTIONS(3650), + [anon_sym_static] = ACTIONS(3650), + [anon_sym_readonly] = ACTIONS(3650), + [anon_sym_get] = ACTIONS(3650), + [anon_sym_set] = ACTIONS(3650), + [anon_sym_declare] = ACTIONS(3650), + [anon_sym_public] = ACTIONS(3650), + [anon_sym_private] = ACTIONS(3650), + [anon_sym_protected] = ACTIONS(3650), + [anon_sym_override] = ACTIONS(3650), + [anon_sym_module] = ACTIONS(3650), + [anon_sym_any] = ACTIONS(3650), + [anon_sym_number] = ACTIONS(3650), + [anon_sym_boolean] = ACTIONS(3650), + [anon_sym_string] = ACTIONS(3650), + [anon_sym_symbol] = ACTIONS(3650), + [anon_sym_object] = ACTIONS(3650), + [anon_sym_property] = ACTIONS(3650), + [anon_sym_signal] = ACTIONS(3650), + [anon_sym_on] = ACTIONS(3650), + [anon_sym_required] = ACTIONS(3650), + [anon_sym_component] = ACTIONS(3650), + [anon_sym_abstract] = ACTIONS(3650), + [anon_sym_interface] = ACTIONS(3650), + [anon_sym_enum] = ACTIONS(3650), [sym_html_comment] = ACTIONS(5), }, - [1694] = { - [sym_comment] = STATE(1694), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [1644] = { + [sym_comment] = STATE(1644), + [sym_identifier] = ACTIONS(3670), + [anon_sym_export] = ACTIONS(3670), + [anon_sym_type] = ACTIONS(3670), + [anon_sym_namespace] = ACTIONS(3670), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_typeof] = ACTIONS(3670), + [anon_sym_import] = ACTIONS(3670), + [anon_sym_from] = ACTIONS(3670), + [anon_sym_with] = ACTIONS(3670), + [anon_sym_var] = ACTIONS(3670), + [anon_sym_let] = ACTIONS(3670), + [anon_sym_const] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_if] = ACTIONS(3670), + [anon_sym_switch] = ACTIONS(3670), + [anon_sym_for] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3670), + [anon_sym_await] = ACTIONS(3670), + [anon_sym_of] = ACTIONS(3670), + [anon_sym_while] = ACTIONS(3670), + [anon_sym_do] = ACTIONS(3670), + [anon_sym_try] = ACTIONS(3670), + [anon_sym_break] = ACTIONS(3670), + [anon_sym_continue] = ACTIONS(3670), + [anon_sym_debugger] = ACTIONS(3670), + [anon_sym_return] = ACTIONS(3670), + [anon_sym_throw] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym_yield] = ACTIONS(3670), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LTtemplate_GT] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_class] = ACTIONS(3670), + [anon_sym_async] = ACTIONS(3670), + [anon_sym_function] = ACTIONS(3670), + [anon_sym_new] = ACTIONS(3670), + [anon_sym_using] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3670), + [anon_sym_SLASH] = ACTIONS(3670), + [anon_sym_LT] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_void] = ACTIONS(3670), + [anon_sym_delete] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3670), + [sym_number] = ACTIONS(3670), + [sym_private_property_identifier] = ACTIONS(3670), + [sym_this] = ACTIONS(3670), + [sym_super] = ACTIONS(3670), + [sym_true] = ACTIONS(3670), + [sym_false] = ACTIONS(3670), + [sym_null] = ACTIONS(3670), + [sym_undefined] = ACTIONS(3670), + [anon_sym_AT] = ACTIONS(3670), + [anon_sym_static] = ACTIONS(3670), + [anon_sym_readonly] = ACTIONS(3670), + [anon_sym_get] = ACTIONS(3670), + [anon_sym_set] = ACTIONS(3670), + [anon_sym_declare] = ACTIONS(3670), + [anon_sym_public] = ACTIONS(3670), + [anon_sym_private] = ACTIONS(3670), + [anon_sym_protected] = ACTIONS(3670), + [anon_sym_override] = ACTIONS(3670), + [anon_sym_module] = ACTIONS(3670), + [anon_sym_any] = ACTIONS(3670), + [anon_sym_number] = ACTIONS(3670), + [anon_sym_boolean] = ACTIONS(3670), + [anon_sym_string] = ACTIONS(3670), + [anon_sym_symbol] = ACTIONS(3670), + [anon_sym_object] = ACTIONS(3670), + [anon_sym_property] = ACTIONS(3670), + [anon_sym_signal] = ACTIONS(3670), + [anon_sym_on] = ACTIONS(3670), + [anon_sym_required] = ACTIONS(3670), + [anon_sym_component] = ACTIONS(3670), + [anon_sym_abstract] = ACTIONS(3670), + [anon_sym_interface] = ACTIONS(3670), + [anon_sym_enum] = ACTIONS(3670), [sym_html_comment] = ACTIONS(5), }, - [1695] = { - [sym_comment] = STATE(1695), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1645] = { + [sym_comment] = STATE(1645), + [sym_identifier] = ACTIONS(3584), + [anon_sym_export] = ACTIONS(3584), + [anon_sym_type] = ACTIONS(3584), + [anon_sym_namespace] = ACTIONS(3584), + [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_RBRACE] = ACTIONS(3584), + [anon_sym_typeof] = ACTIONS(3584), + [anon_sym_import] = ACTIONS(3584), + [anon_sym_from] = ACTIONS(3584), + [anon_sym_with] = ACTIONS(3584), + [anon_sym_var] = ACTIONS(3584), + [anon_sym_let] = ACTIONS(3584), + [anon_sym_const] = ACTIONS(3584), + [anon_sym_BANG] = ACTIONS(3584), + [anon_sym_if] = ACTIONS(3584), + [anon_sym_switch] = ACTIONS(3584), + [anon_sym_for] = ACTIONS(3584), + [anon_sym_LPAREN] = ACTIONS(3584), + [anon_sym_await] = ACTIONS(3584), + [anon_sym_of] = ACTIONS(3584), + [anon_sym_while] = ACTIONS(3584), + [anon_sym_do] = ACTIONS(3584), + [anon_sym_try] = ACTIONS(3584), + [anon_sym_break] = ACTIONS(3584), + [anon_sym_continue] = ACTIONS(3584), + [anon_sym_debugger] = ACTIONS(3584), + [anon_sym_return] = ACTIONS(3584), + [anon_sym_throw] = ACTIONS(3584), + [anon_sym_SEMI] = ACTIONS(3584), + [anon_sym_yield] = ACTIONS(3584), + [anon_sym_LBRACK] = ACTIONS(3584), + [anon_sym_LTtemplate_GT] = ACTIONS(3584), + [anon_sym_DQUOTE] = ACTIONS(3584), + [anon_sym_SQUOTE] = ACTIONS(3584), + [anon_sym_class] = ACTIONS(3584), + [anon_sym_async] = ACTIONS(3584), + [anon_sym_function] = ACTIONS(3584), + [anon_sym_new] = ACTIONS(3584), + [anon_sym_using] = ACTIONS(3584), + [anon_sym_PLUS] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_SLASH] = ACTIONS(3584), + [anon_sym_LT] = ACTIONS(3584), + [anon_sym_TILDE] = ACTIONS(3584), + [anon_sym_void] = ACTIONS(3584), + [anon_sym_delete] = ACTIONS(3584), + [anon_sym_PLUS_PLUS] = ACTIONS(3584), + [anon_sym_DASH_DASH] = ACTIONS(3584), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3584), + [sym_number] = ACTIONS(3584), + [sym_private_property_identifier] = ACTIONS(3584), + [sym_this] = ACTIONS(3584), + [sym_super] = ACTIONS(3584), + [sym_true] = ACTIONS(3584), + [sym_false] = ACTIONS(3584), + [sym_null] = ACTIONS(3584), + [sym_undefined] = ACTIONS(3584), + [anon_sym_AT] = ACTIONS(3584), + [anon_sym_static] = ACTIONS(3584), + [anon_sym_readonly] = ACTIONS(3584), + [anon_sym_get] = ACTIONS(3584), + [anon_sym_set] = ACTIONS(3584), + [anon_sym_declare] = ACTIONS(3584), + [anon_sym_public] = ACTIONS(3584), + [anon_sym_private] = ACTIONS(3584), + [anon_sym_protected] = ACTIONS(3584), + [anon_sym_override] = ACTIONS(3584), + [anon_sym_module] = ACTIONS(3584), + [anon_sym_any] = ACTIONS(3584), + [anon_sym_number] = ACTIONS(3584), + [anon_sym_boolean] = ACTIONS(3584), + [anon_sym_string] = ACTIONS(3584), + [anon_sym_symbol] = ACTIONS(3584), + [anon_sym_object] = ACTIONS(3584), + [anon_sym_property] = ACTIONS(3584), + [anon_sym_signal] = ACTIONS(3584), + [anon_sym_on] = ACTIONS(3584), + [anon_sym_required] = ACTIONS(3584), + [anon_sym_component] = ACTIONS(3584), + [anon_sym_abstract] = ACTIONS(3584), + [anon_sym_interface] = ACTIONS(3584), + [anon_sym_enum] = ACTIONS(3584), [sym_html_comment] = ACTIONS(5), }, - [1696] = { - [sym_comment] = STATE(1696), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1646] = { + [sym_comment] = STATE(1646), + [sym_identifier] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_type] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_from] = ACTIONS(3524), + [anon_sym_with] = ACTIONS(3524), + [anon_sym_var] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(3524), + [anon_sym_const] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_if] = ACTIONS(3524), + [anon_sym_switch] = ACTIONS(3524), + [anon_sym_for] = ACTIONS(3524), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3524), + [anon_sym_of] = ACTIONS(3524), + [anon_sym_while] = ACTIONS(3524), + [anon_sym_do] = ACTIONS(3524), + [anon_sym_try] = ACTIONS(3524), + [anon_sym_break] = ACTIONS(3524), + [anon_sym_continue] = ACTIONS(3524), + [anon_sym_debugger] = ACTIONS(3524), + [anon_sym_return] = ACTIONS(3524), + [anon_sym_throw] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_yield] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_LTtemplate_GT] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_async] = ACTIONS(3524), + [anon_sym_function] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_void] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3524), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3524), + [sym_number] = ACTIONS(3524), + [sym_private_property_identifier] = ACTIONS(3524), + [sym_this] = ACTIONS(3524), + [sym_super] = ACTIONS(3524), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [sym_null] = ACTIONS(3524), + [sym_undefined] = ACTIONS(3524), + [anon_sym_AT] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_readonly] = ACTIONS(3524), + [anon_sym_get] = ACTIONS(3524), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_declare] = ACTIONS(3524), + [anon_sym_public] = ACTIONS(3524), + [anon_sym_private] = ACTIONS(3524), + [anon_sym_protected] = ACTIONS(3524), + [anon_sym_override] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_any] = ACTIONS(3524), + [anon_sym_number] = ACTIONS(3524), + [anon_sym_boolean] = ACTIONS(3524), + [anon_sym_string] = ACTIONS(3524), + [anon_sym_symbol] = ACTIONS(3524), + [anon_sym_object] = ACTIONS(3524), + [anon_sym_property] = ACTIONS(3524), + [anon_sym_signal] = ACTIONS(3524), + [anon_sym_on] = ACTIONS(3524), + [anon_sym_required] = ACTIONS(3524), + [anon_sym_component] = ACTIONS(3524), + [anon_sym_abstract] = ACTIONS(3524), + [anon_sym_interface] = ACTIONS(3524), + [anon_sym_enum] = ACTIONS(3524), [sym_html_comment] = ACTIONS(5), }, - [1697] = { - [sym_comment] = STATE(1697), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1647] = { + [sym_comment] = STATE(1647), + [sym_identifier] = ACTIONS(3586), + [anon_sym_export] = ACTIONS(3586), + [anon_sym_type] = ACTIONS(3586), + [anon_sym_namespace] = ACTIONS(3586), + [anon_sym_LBRACE] = ACTIONS(3586), + [anon_sym_RBRACE] = ACTIONS(3586), + [anon_sym_typeof] = ACTIONS(3586), + [anon_sym_import] = ACTIONS(3586), + [anon_sym_from] = ACTIONS(3586), + [anon_sym_with] = ACTIONS(3586), + [anon_sym_var] = ACTIONS(3586), + [anon_sym_let] = ACTIONS(3586), + [anon_sym_const] = ACTIONS(3586), + [anon_sym_BANG] = ACTIONS(3586), + [anon_sym_if] = ACTIONS(3586), + [anon_sym_switch] = ACTIONS(3586), + [anon_sym_for] = ACTIONS(3586), + [anon_sym_LPAREN] = ACTIONS(3586), + [anon_sym_await] = ACTIONS(3586), + [anon_sym_of] = ACTIONS(3586), + [anon_sym_while] = ACTIONS(3586), + [anon_sym_do] = ACTIONS(3586), + [anon_sym_try] = ACTIONS(3586), + [anon_sym_break] = ACTIONS(3586), + [anon_sym_continue] = ACTIONS(3586), + [anon_sym_debugger] = ACTIONS(3586), + [anon_sym_return] = ACTIONS(3586), + [anon_sym_throw] = ACTIONS(3586), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym_yield] = ACTIONS(3586), + [anon_sym_LBRACK] = ACTIONS(3586), + [anon_sym_LTtemplate_GT] = ACTIONS(3586), + [anon_sym_DQUOTE] = ACTIONS(3586), + [anon_sym_SQUOTE] = ACTIONS(3586), + [anon_sym_class] = ACTIONS(3586), + [anon_sym_async] = ACTIONS(3586), + [anon_sym_function] = ACTIONS(3586), + [anon_sym_new] = ACTIONS(3586), + [anon_sym_using] = ACTIONS(3586), + [anon_sym_PLUS] = ACTIONS(3586), + [anon_sym_DASH] = ACTIONS(3586), + [anon_sym_SLASH] = ACTIONS(3586), + [anon_sym_LT] = ACTIONS(3586), + [anon_sym_TILDE] = ACTIONS(3586), + [anon_sym_void] = ACTIONS(3586), + [anon_sym_delete] = ACTIONS(3586), + [anon_sym_PLUS_PLUS] = ACTIONS(3586), + [anon_sym_DASH_DASH] = ACTIONS(3586), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3586), + [sym_number] = ACTIONS(3586), + [sym_private_property_identifier] = ACTIONS(3586), + [sym_this] = ACTIONS(3586), + [sym_super] = ACTIONS(3586), + [sym_true] = ACTIONS(3586), + [sym_false] = ACTIONS(3586), + [sym_null] = ACTIONS(3586), + [sym_undefined] = ACTIONS(3586), + [anon_sym_AT] = ACTIONS(3586), + [anon_sym_static] = ACTIONS(3586), + [anon_sym_readonly] = ACTIONS(3586), + [anon_sym_get] = ACTIONS(3586), + [anon_sym_set] = ACTIONS(3586), + [anon_sym_declare] = ACTIONS(3586), + [anon_sym_public] = ACTIONS(3586), + [anon_sym_private] = ACTIONS(3586), + [anon_sym_protected] = ACTIONS(3586), + [anon_sym_override] = ACTIONS(3586), + [anon_sym_module] = ACTIONS(3586), + [anon_sym_any] = ACTIONS(3586), + [anon_sym_number] = ACTIONS(3586), + [anon_sym_boolean] = ACTIONS(3586), + [anon_sym_string] = ACTIONS(3586), + [anon_sym_symbol] = ACTIONS(3586), + [anon_sym_object] = ACTIONS(3586), + [anon_sym_property] = ACTIONS(3586), + [anon_sym_signal] = ACTIONS(3586), + [anon_sym_on] = ACTIONS(3586), + [anon_sym_required] = ACTIONS(3586), + [anon_sym_component] = ACTIONS(3586), + [anon_sym_abstract] = ACTIONS(3586), + [anon_sym_interface] = ACTIONS(3586), + [anon_sym_enum] = ACTIONS(3586), [sym_html_comment] = ACTIONS(5), }, - [1698] = { - [sym_comment] = STATE(1698), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1648] = { + [sym_comment] = STATE(1648), + [sym_identifier] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_type] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_from] = ACTIONS(3520), + [anon_sym_with] = ACTIONS(3520), + [anon_sym_var] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(3520), + [anon_sym_const] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_if] = ACTIONS(3520), + [anon_sym_switch] = ACTIONS(3520), + [anon_sym_for] = ACTIONS(3520), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3520), + [anon_sym_of] = ACTIONS(3520), + [anon_sym_while] = ACTIONS(3520), + [anon_sym_do] = ACTIONS(3520), + [anon_sym_try] = ACTIONS(3520), + [anon_sym_break] = ACTIONS(3520), + [anon_sym_continue] = ACTIONS(3520), + [anon_sym_debugger] = ACTIONS(3520), + [anon_sym_return] = ACTIONS(3520), + [anon_sym_throw] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_yield] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_LTtemplate_GT] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_async] = ACTIONS(3520), + [anon_sym_function] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3520), + [anon_sym_LT] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_void] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3520), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_number] = ACTIONS(3520), + [sym_private_property_identifier] = ACTIONS(3520), + [sym_this] = ACTIONS(3520), + [sym_super] = ACTIONS(3520), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [sym_null] = ACTIONS(3520), + [sym_undefined] = ACTIONS(3520), + [anon_sym_AT] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_readonly] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3520), + [anon_sym_declare] = ACTIONS(3520), + [anon_sym_public] = ACTIONS(3520), + [anon_sym_private] = ACTIONS(3520), + [anon_sym_protected] = ACTIONS(3520), + [anon_sym_override] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_any] = ACTIONS(3520), + [anon_sym_number] = ACTIONS(3520), + [anon_sym_boolean] = ACTIONS(3520), + [anon_sym_string] = ACTIONS(3520), + [anon_sym_symbol] = ACTIONS(3520), + [anon_sym_object] = ACTIONS(3520), + [anon_sym_property] = ACTIONS(3520), + [anon_sym_signal] = ACTIONS(3520), + [anon_sym_on] = ACTIONS(3520), + [anon_sym_required] = ACTIONS(3520), + [anon_sym_component] = ACTIONS(3520), + [anon_sym_abstract] = ACTIONS(3520), + [anon_sym_interface] = ACTIONS(3520), + [anon_sym_enum] = ACTIONS(3520), [sym_html_comment] = ACTIONS(5), }, - [1699] = { - [sym_comment] = STATE(1699), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1649] = { + [sym_comment] = STATE(1649), + [sym_identifier] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_type] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3648), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_typeof] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_from] = ACTIONS(3648), + [anon_sym_with] = ACTIONS(3648), + [anon_sym_var] = ACTIONS(3648), + [anon_sym_let] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_LPAREN] = ACTIONS(3648), + [anon_sym_await] = ACTIONS(3648), + [anon_sym_of] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_debugger] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3648), + [anon_sym_yield] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_LTtemplate_GT] = ACTIONS(3648), + [anon_sym_DQUOTE] = ACTIONS(3648), + [anon_sym_SQUOTE] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_async] = ACTIONS(3648), + [anon_sym_function] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_SLASH] = ACTIONS(3648), + [anon_sym_LT] = ACTIONS(3648), + [anon_sym_TILDE] = ACTIONS(3648), + [anon_sym_void] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_PLUS_PLUS] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3648), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3648), + [sym_number] = ACTIONS(3648), + [sym_private_property_identifier] = ACTIONS(3648), + [sym_this] = ACTIONS(3648), + [sym_super] = ACTIONS(3648), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [sym_null] = ACTIONS(3648), + [sym_undefined] = ACTIONS(3648), + [anon_sym_AT] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_readonly] = ACTIONS(3648), + [anon_sym_get] = ACTIONS(3648), + [anon_sym_set] = ACTIONS(3648), + [anon_sym_declare] = ACTIONS(3648), + [anon_sym_public] = ACTIONS(3648), + [anon_sym_private] = ACTIONS(3648), + [anon_sym_protected] = ACTIONS(3648), + [anon_sym_override] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_any] = ACTIONS(3648), + [anon_sym_number] = ACTIONS(3648), + [anon_sym_boolean] = ACTIONS(3648), + [anon_sym_string] = ACTIONS(3648), + [anon_sym_symbol] = ACTIONS(3648), + [anon_sym_object] = ACTIONS(3648), + [anon_sym_property] = ACTIONS(3648), + [anon_sym_signal] = ACTIONS(3648), + [anon_sym_on] = ACTIONS(3648), + [anon_sym_required] = ACTIONS(3648), + [anon_sym_component] = ACTIONS(3648), + [anon_sym_abstract] = ACTIONS(3648), + [anon_sym_interface] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), [sym_html_comment] = ACTIONS(5), }, - [1700] = { - [sym_comment] = STATE(1700), - [sym_identifier] = ACTIONS(3664), - [anon_sym_export] = ACTIONS(3664), - [anon_sym_type] = ACTIONS(3664), - [anon_sym_namespace] = ACTIONS(3664), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_typeof] = ACTIONS(3664), - [anon_sym_import] = ACTIONS(3664), - [anon_sym_from] = ACTIONS(3664), - [anon_sym_with] = ACTIONS(3664), - [anon_sym_var] = ACTIONS(3664), - [anon_sym_let] = ACTIONS(3664), - [anon_sym_const] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_if] = ACTIONS(3664), - [anon_sym_switch] = ACTIONS(3664), - [anon_sym_for] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3664), - [anon_sym_await] = ACTIONS(3664), - [anon_sym_of] = ACTIONS(3664), - [anon_sym_while] = ACTIONS(3664), - [anon_sym_do] = ACTIONS(3664), - [anon_sym_try] = ACTIONS(3664), - [anon_sym_break] = ACTIONS(3664), - [anon_sym_continue] = ACTIONS(3664), - [anon_sym_debugger] = ACTIONS(3664), - [anon_sym_return] = ACTIONS(3664), - [anon_sym_throw] = ACTIONS(3664), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym_yield] = ACTIONS(3664), - [anon_sym_LBRACK] = ACTIONS(3664), - [anon_sym_LTtemplate_GT] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_class] = ACTIONS(3664), - [anon_sym_async] = ACTIONS(3664), - [anon_sym_function] = ACTIONS(3664), - [anon_sym_new] = ACTIONS(3664), - [anon_sym_using] = ACTIONS(3664), - [anon_sym_PLUS] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(3664), - [anon_sym_LT] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_void] = ACTIONS(3664), - [anon_sym_delete] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_DASH_DASH] = ACTIONS(3664), + [1650] = { + [sym_comment] = STATE(1650), + [sym_identifier] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_type] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_typeof] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_from] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3544), + [anon_sym_var] = ACTIONS(3544), + [anon_sym_let] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3544), + [anon_sym_await] = ACTIONS(3544), + [anon_sym_of] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_debugger] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym_yield] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3544), + [anon_sym_LTtemplate_GT] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_async] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_using] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_LT] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_void] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_DASH_DASH] = ACTIONS(3544), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3664), - [sym_number] = ACTIONS(3664), - [sym_private_property_identifier] = ACTIONS(3664), - [sym_this] = ACTIONS(3664), - [sym_super] = ACTIONS(3664), - [sym_true] = ACTIONS(3664), - [sym_false] = ACTIONS(3664), - [sym_null] = ACTIONS(3664), - [sym_undefined] = ACTIONS(3664), - [anon_sym_AT] = ACTIONS(3664), - [anon_sym_static] = ACTIONS(3664), - [anon_sym_readonly] = ACTIONS(3664), - [anon_sym_get] = ACTIONS(3664), - [anon_sym_set] = ACTIONS(3664), - [anon_sym_declare] = ACTIONS(3664), - [anon_sym_public] = ACTIONS(3664), - [anon_sym_private] = ACTIONS(3664), - [anon_sym_protected] = ACTIONS(3664), - [anon_sym_override] = ACTIONS(3664), - [anon_sym_module] = ACTIONS(3664), - [anon_sym_any] = ACTIONS(3664), - [anon_sym_number] = ACTIONS(3664), - [anon_sym_boolean] = ACTIONS(3664), - [anon_sym_string] = ACTIONS(3664), - [anon_sym_symbol] = ACTIONS(3664), - [anon_sym_object] = ACTIONS(3664), - [anon_sym_property] = ACTIONS(3664), - [anon_sym_signal] = ACTIONS(3664), - [anon_sym_on] = ACTIONS(3664), - [anon_sym_required] = ACTIONS(3664), - [anon_sym_component] = ACTIONS(3664), - [anon_sym_abstract] = ACTIONS(3664), - [anon_sym_interface] = ACTIONS(3664), - [anon_sym_enum] = ACTIONS(3664), + [anon_sym_BQUOTE] = ACTIONS(3544), + [sym_number] = ACTIONS(3544), + [sym_private_property_identifier] = ACTIONS(3544), + [sym_this] = ACTIONS(3544), + [sym_super] = ACTIONS(3544), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [sym_null] = ACTIONS(3544), + [sym_undefined] = ACTIONS(3544), + [anon_sym_AT] = ACTIONS(3544), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_readonly] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3544), + [anon_sym_declare] = ACTIONS(3544), + [anon_sym_public] = ACTIONS(3544), + [anon_sym_private] = ACTIONS(3544), + [anon_sym_protected] = ACTIONS(3544), + [anon_sym_override] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_any] = ACTIONS(3544), + [anon_sym_number] = ACTIONS(3544), + [anon_sym_boolean] = ACTIONS(3544), + [anon_sym_string] = ACTIONS(3544), + [anon_sym_symbol] = ACTIONS(3544), + [anon_sym_object] = ACTIONS(3544), + [anon_sym_property] = ACTIONS(3544), + [anon_sym_signal] = ACTIONS(3544), + [anon_sym_on] = ACTIONS(3544), + [anon_sym_required] = ACTIONS(3544), + [anon_sym_component] = ACTIONS(3544), + [anon_sym_abstract] = ACTIONS(3544), + [anon_sym_interface] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), [sym_html_comment] = ACTIONS(5), }, - [1701] = { - [sym_comment] = STATE(1701), - [sym_identifier] = ACTIONS(3596), - [anon_sym_export] = ACTIONS(3596), - [anon_sym_type] = ACTIONS(3596), - [anon_sym_namespace] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3596), - [anon_sym_RBRACE] = ACTIONS(3596), - [anon_sym_typeof] = ACTIONS(3596), - [anon_sym_import] = ACTIONS(3596), - [anon_sym_from] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_let] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_await] = ACTIONS(3596), - [anon_sym_of] = ACTIONS(3596), - [anon_sym_while] = ACTIONS(3596), - [anon_sym_do] = ACTIONS(3596), - [anon_sym_try] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_debugger] = ACTIONS(3596), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_throw] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3596), - [anon_sym_LTtemplate_GT] = ACTIONS(3596), - [anon_sym_DQUOTE] = ACTIONS(3596), - [anon_sym_SQUOTE] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_async] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_using] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_TILDE] = ACTIONS(3596), - [anon_sym_void] = ACTIONS(3596), - [anon_sym_delete] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3596), - [anon_sym_DASH_DASH] = ACTIONS(3596), + [1651] = { + [sym_comment] = STATE(1651), + [sym_identifier] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_type] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_RBRACE] = ACTIONS(3542), + [anon_sym_typeof] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_from] = ACTIONS(3542), + [anon_sym_with] = ACTIONS(3542), + [anon_sym_var] = ACTIONS(3542), + [anon_sym_let] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_await] = ACTIONS(3542), + [anon_sym_of] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_debugger] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_yield] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LTtemplate_GT] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_async] = ACTIONS(3542), + [anon_sym_function] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3542), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_void] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3596), - [sym_number] = ACTIONS(3596), - [sym_private_property_identifier] = ACTIONS(3596), - [sym_this] = ACTIONS(3596), - [sym_super] = ACTIONS(3596), - [sym_true] = ACTIONS(3596), - [sym_false] = ACTIONS(3596), - [sym_null] = ACTIONS(3596), - [sym_undefined] = ACTIONS(3596), - [anon_sym_AT] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_readonly] = ACTIONS(3596), - [anon_sym_get] = ACTIONS(3596), - [anon_sym_set] = ACTIONS(3596), - [anon_sym_declare] = ACTIONS(3596), - [anon_sym_public] = ACTIONS(3596), - [anon_sym_private] = ACTIONS(3596), - [anon_sym_protected] = ACTIONS(3596), - [anon_sym_override] = ACTIONS(3596), - [anon_sym_module] = ACTIONS(3596), - [anon_sym_any] = ACTIONS(3596), - [anon_sym_number] = ACTIONS(3596), - [anon_sym_boolean] = ACTIONS(3596), - [anon_sym_string] = ACTIONS(3596), - [anon_sym_symbol] = ACTIONS(3596), - [anon_sym_object] = ACTIONS(3596), - [anon_sym_property] = ACTIONS(3596), - [anon_sym_signal] = ACTIONS(3596), - [anon_sym_on] = ACTIONS(3596), - [anon_sym_required] = ACTIONS(3596), - [anon_sym_component] = ACTIONS(3596), - [anon_sym_abstract] = ACTIONS(3596), - [anon_sym_interface] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), + [anon_sym_BQUOTE] = ACTIONS(3542), + [sym_number] = ACTIONS(3542), + [sym_private_property_identifier] = ACTIONS(3542), + [sym_this] = ACTIONS(3542), + [sym_super] = ACTIONS(3542), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [sym_null] = ACTIONS(3542), + [sym_undefined] = ACTIONS(3542), + [anon_sym_AT] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_readonly] = ACTIONS(3542), + [anon_sym_get] = ACTIONS(3542), + [anon_sym_set] = ACTIONS(3542), + [anon_sym_declare] = ACTIONS(3542), + [anon_sym_public] = ACTIONS(3542), + [anon_sym_private] = ACTIONS(3542), + [anon_sym_protected] = ACTIONS(3542), + [anon_sym_override] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_any] = ACTIONS(3542), + [anon_sym_number] = ACTIONS(3542), + [anon_sym_boolean] = ACTIONS(3542), + [anon_sym_string] = ACTIONS(3542), + [anon_sym_symbol] = ACTIONS(3542), + [anon_sym_object] = ACTIONS(3542), + [anon_sym_property] = ACTIONS(3542), + [anon_sym_signal] = ACTIONS(3542), + [anon_sym_on] = ACTIONS(3542), + [anon_sym_required] = ACTIONS(3542), + [anon_sym_component] = ACTIONS(3542), + [anon_sym_abstract] = ACTIONS(3542), + [anon_sym_interface] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), [sym_html_comment] = ACTIONS(5), }, - [1702] = { - [sym_comment] = STATE(1702), - [sym_identifier] = ACTIONS(3596), - [anon_sym_export] = ACTIONS(3596), - [anon_sym_type] = ACTIONS(3596), - [anon_sym_namespace] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3596), - [anon_sym_RBRACE] = ACTIONS(3596), - [anon_sym_typeof] = ACTIONS(3596), - [anon_sym_import] = ACTIONS(3596), - [anon_sym_from] = ACTIONS(3596), - [anon_sym_with] = ACTIONS(3596), - [anon_sym_var] = ACTIONS(3596), - [anon_sym_let] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_BANG] = ACTIONS(3596), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_LPAREN] = ACTIONS(3596), - [anon_sym_await] = ACTIONS(3596), - [anon_sym_of] = ACTIONS(3596), - [anon_sym_while] = ACTIONS(3596), - [anon_sym_do] = ACTIONS(3596), - [anon_sym_try] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_debugger] = ACTIONS(3596), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_throw] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3596), - [anon_sym_yield] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3596), - [anon_sym_LTtemplate_GT] = ACTIONS(3596), - [anon_sym_DQUOTE] = ACTIONS(3596), - [anon_sym_SQUOTE] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_async] = ACTIONS(3596), - [anon_sym_function] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_using] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(3596), - [anon_sym_TILDE] = ACTIONS(3596), - [anon_sym_void] = ACTIONS(3596), - [anon_sym_delete] = ACTIONS(3596), - [anon_sym_PLUS_PLUS] = ACTIONS(3596), - [anon_sym_DASH_DASH] = ACTIONS(3596), + [1652] = { + [sym_comment] = STATE(1652), + [sym_identifier] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_type] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_typeof] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_from] = ACTIONS(3540), + [anon_sym_with] = ACTIONS(3540), + [anon_sym_var] = ACTIONS(3540), + [anon_sym_let] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3540), + [anon_sym_await] = ACTIONS(3540), + [anon_sym_of] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_debugger] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym_yield] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3540), + [anon_sym_LTtemplate_GT] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_async] = ACTIONS(3540), + [anon_sym_function] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_using] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_SLASH] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_void] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_DASH_DASH] = ACTIONS(3540), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3596), - [sym_number] = ACTIONS(3596), - [sym_private_property_identifier] = ACTIONS(3596), - [sym_this] = ACTIONS(3596), - [sym_super] = ACTIONS(3596), - [sym_true] = ACTIONS(3596), - [sym_false] = ACTIONS(3596), - [sym_null] = ACTIONS(3596), - [sym_undefined] = ACTIONS(3596), - [anon_sym_AT] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_readonly] = ACTIONS(3596), - [anon_sym_get] = ACTIONS(3596), - [anon_sym_set] = ACTIONS(3596), - [anon_sym_declare] = ACTIONS(3596), - [anon_sym_public] = ACTIONS(3596), - [anon_sym_private] = ACTIONS(3596), - [anon_sym_protected] = ACTIONS(3596), - [anon_sym_override] = ACTIONS(3596), - [anon_sym_module] = ACTIONS(3596), - [anon_sym_any] = ACTIONS(3596), - [anon_sym_number] = ACTIONS(3596), - [anon_sym_boolean] = ACTIONS(3596), - [anon_sym_string] = ACTIONS(3596), - [anon_sym_symbol] = ACTIONS(3596), - [anon_sym_object] = ACTIONS(3596), - [anon_sym_property] = ACTIONS(3596), - [anon_sym_signal] = ACTIONS(3596), - [anon_sym_on] = ACTIONS(3596), - [anon_sym_required] = ACTIONS(3596), - [anon_sym_component] = ACTIONS(3596), - [anon_sym_abstract] = ACTIONS(3596), - [anon_sym_interface] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), + [anon_sym_BQUOTE] = ACTIONS(3540), + [sym_number] = ACTIONS(3540), + [sym_private_property_identifier] = ACTIONS(3540), + [sym_this] = ACTIONS(3540), + [sym_super] = ACTIONS(3540), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [sym_null] = ACTIONS(3540), + [sym_undefined] = ACTIONS(3540), + [anon_sym_AT] = ACTIONS(3540), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_readonly] = ACTIONS(3540), + [anon_sym_get] = ACTIONS(3540), + [anon_sym_set] = ACTIONS(3540), + [anon_sym_declare] = ACTIONS(3540), + [anon_sym_public] = ACTIONS(3540), + [anon_sym_private] = ACTIONS(3540), + [anon_sym_protected] = ACTIONS(3540), + [anon_sym_override] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_any] = ACTIONS(3540), + [anon_sym_number] = ACTIONS(3540), + [anon_sym_boolean] = ACTIONS(3540), + [anon_sym_string] = ACTIONS(3540), + [anon_sym_symbol] = ACTIONS(3540), + [anon_sym_object] = ACTIONS(3540), + [anon_sym_property] = ACTIONS(3540), + [anon_sym_signal] = ACTIONS(3540), + [anon_sym_on] = ACTIONS(3540), + [anon_sym_required] = ACTIONS(3540), + [anon_sym_component] = ACTIONS(3540), + [anon_sym_abstract] = ACTIONS(3540), + [anon_sym_interface] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), [sym_html_comment] = ACTIONS(5), }, - [1703] = { - [sym_comment] = STATE(1703), - [sym_identifier] = ACTIONS(3480), - [anon_sym_export] = ACTIONS(3480), - [anon_sym_type] = ACTIONS(3480), - [anon_sym_namespace] = ACTIONS(3480), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_RBRACE] = ACTIONS(3480), - [anon_sym_typeof] = ACTIONS(3480), - [anon_sym_import] = ACTIONS(3480), - [anon_sym_from] = ACTIONS(3480), - [anon_sym_with] = ACTIONS(3480), - [anon_sym_var] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_const] = ACTIONS(3480), - [anon_sym_BANG] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_switch] = ACTIONS(3480), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_await] = ACTIONS(3480), - [anon_sym_of] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_break] = ACTIONS(3480), - [anon_sym_continue] = ACTIONS(3480), - [anon_sym_debugger] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_throw] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LTtemplate_GT] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_SQUOTE] = ACTIONS(3480), - [anon_sym_class] = ACTIONS(3480), - [anon_sym_async] = ACTIONS(3480), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_using] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_SLASH] = ACTIONS(3480), - [anon_sym_LT] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3480), - [anon_sym_void] = ACTIONS(3480), - [anon_sym_delete] = ACTIONS(3480), - [anon_sym_PLUS_PLUS] = ACTIONS(3480), - [anon_sym_DASH_DASH] = ACTIONS(3480), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3480), - [sym_number] = ACTIONS(3480), - [sym_private_property_identifier] = ACTIONS(3480), - [sym_this] = ACTIONS(3480), - [sym_super] = ACTIONS(3480), - [sym_true] = ACTIONS(3480), - [sym_false] = ACTIONS(3480), - [sym_null] = ACTIONS(3480), - [sym_undefined] = ACTIONS(3480), - [anon_sym_AT] = ACTIONS(3480), - [anon_sym_static] = ACTIONS(3480), - [anon_sym_readonly] = ACTIONS(3480), - [anon_sym_get] = ACTIONS(3480), - [anon_sym_set] = ACTIONS(3480), - [anon_sym_declare] = ACTIONS(3480), - [anon_sym_public] = ACTIONS(3480), - [anon_sym_private] = ACTIONS(3480), - [anon_sym_protected] = ACTIONS(3480), - [anon_sym_override] = ACTIONS(3480), - [anon_sym_module] = ACTIONS(3480), - [anon_sym_any] = ACTIONS(3480), - [anon_sym_number] = ACTIONS(3480), - [anon_sym_boolean] = ACTIONS(3480), - [anon_sym_string] = ACTIONS(3480), - [anon_sym_symbol] = ACTIONS(3480), - [anon_sym_object] = ACTIONS(3480), - [anon_sym_property] = ACTIONS(3480), - [anon_sym_signal] = ACTIONS(3480), - [anon_sym_on] = ACTIONS(3480), - [anon_sym_required] = ACTIONS(3480), - [anon_sym_component] = ACTIONS(3480), - [anon_sym_abstract] = ACTIONS(3480), - [anon_sym_interface] = ACTIONS(3480), - [anon_sym_enum] = ACTIONS(3480), + [1653] = { + [sym_comment] = STATE(1653), + [sym_identifier] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_type] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3538), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym_typeof] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_from] = ACTIONS(3538), + [anon_sym_with] = ACTIONS(3538), + [anon_sym_var] = ACTIONS(3538), + [anon_sym_let] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_BANG] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_LPAREN] = ACTIONS(3538), + [anon_sym_await] = ACTIONS(3538), + [anon_sym_of] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_debugger] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3538), + [anon_sym_yield] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_LTtemplate_GT] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_async] = ACTIONS(3538), + [anon_sym_function] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_SLASH] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3538), + [anon_sym_void] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3538), + [sym_number] = ACTIONS(3538), + [sym_private_property_identifier] = ACTIONS(3538), + [sym_this] = ACTIONS(3538), + [sym_super] = ACTIONS(3538), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [sym_null] = ACTIONS(3538), + [sym_undefined] = ACTIONS(3538), + [anon_sym_AT] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_readonly] = ACTIONS(3538), + [anon_sym_get] = ACTIONS(3538), + [anon_sym_set] = ACTIONS(3538), + [anon_sym_declare] = ACTIONS(3538), + [anon_sym_public] = ACTIONS(3538), + [anon_sym_private] = ACTIONS(3538), + [anon_sym_protected] = ACTIONS(3538), + [anon_sym_override] = ACTIONS(3538), + [anon_sym_module] = ACTIONS(3538), + [anon_sym_any] = ACTIONS(3538), + [anon_sym_number] = ACTIONS(3538), + [anon_sym_boolean] = ACTIONS(3538), + [anon_sym_string] = ACTIONS(3538), + [anon_sym_symbol] = ACTIONS(3538), + [anon_sym_object] = ACTIONS(3538), + [anon_sym_property] = ACTIONS(3538), + [anon_sym_signal] = ACTIONS(3538), + [anon_sym_on] = ACTIONS(3538), + [anon_sym_required] = ACTIONS(3538), + [anon_sym_component] = ACTIONS(3538), + [anon_sym_abstract] = ACTIONS(3538), + [anon_sym_interface] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), [sym_html_comment] = ACTIONS(5), }, - [1704] = { - [sym_comment] = STATE(1704), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1654] = { + [sym_comment] = STATE(1654), + [sym_identifier] = ACTIONS(3528), + [anon_sym_export] = ACTIONS(3528), + [anon_sym_type] = ACTIONS(3528), + [anon_sym_namespace] = ACTIONS(3528), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3528), + [anon_sym_import] = ACTIONS(3528), + [anon_sym_from] = ACTIONS(3528), + [anon_sym_with] = ACTIONS(3528), + [anon_sym_var] = ACTIONS(3528), + [anon_sym_let] = ACTIONS(3528), + [anon_sym_const] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_switch] = ACTIONS(3528), + [anon_sym_for] = ACTIONS(3528), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3528), + [anon_sym_of] = ACTIONS(3528), + [anon_sym_while] = ACTIONS(3528), + [anon_sym_do] = ACTIONS(3528), + [anon_sym_try] = ACTIONS(3528), + [anon_sym_break] = ACTIONS(3528), + [anon_sym_continue] = ACTIONS(3528), + [anon_sym_debugger] = ACTIONS(3528), + [anon_sym_return] = ACTIONS(3528), + [anon_sym_throw] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_yield] = ACTIONS(3528), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_LTtemplate_GT] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_class] = ACTIONS(3528), + [anon_sym_async] = ACTIONS(3528), + [anon_sym_function] = ACTIONS(3528), + [anon_sym_new] = ACTIONS(3528), + [anon_sym_using] = ACTIONS(3528), + [anon_sym_PLUS] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_SLASH] = ACTIONS(3528), + [anon_sym_LT] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_void] = ACTIONS(3528), + [anon_sym_delete] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3528), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3528), + [sym_number] = ACTIONS(3528), + [sym_private_property_identifier] = ACTIONS(3528), + [sym_this] = ACTIONS(3528), + [sym_super] = ACTIONS(3528), + [sym_true] = ACTIONS(3528), + [sym_false] = ACTIONS(3528), + [sym_null] = ACTIONS(3528), + [sym_undefined] = ACTIONS(3528), + [anon_sym_AT] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3528), + [anon_sym_readonly] = ACTIONS(3528), + [anon_sym_get] = ACTIONS(3528), + [anon_sym_set] = ACTIONS(3528), + [anon_sym_declare] = ACTIONS(3528), + [anon_sym_public] = ACTIONS(3528), + [anon_sym_private] = ACTIONS(3528), + [anon_sym_protected] = ACTIONS(3528), + [anon_sym_override] = ACTIONS(3528), + [anon_sym_module] = ACTIONS(3528), + [anon_sym_any] = ACTIONS(3528), + [anon_sym_number] = ACTIONS(3528), + [anon_sym_boolean] = ACTIONS(3528), + [anon_sym_string] = ACTIONS(3528), + [anon_sym_symbol] = ACTIONS(3528), + [anon_sym_object] = ACTIONS(3528), + [anon_sym_property] = ACTIONS(3528), + [anon_sym_signal] = ACTIONS(3528), + [anon_sym_on] = ACTIONS(3528), + [anon_sym_required] = ACTIONS(3528), + [anon_sym_component] = ACTIONS(3528), + [anon_sym_abstract] = ACTIONS(3528), + [anon_sym_interface] = ACTIONS(3528), + [anon_sym_enum] = ACTIONS(3528), [sym_html_comment] = ACTIONS(5), }, - [1705] = { - [sym_comment] = STATE(1705), - [sym_identifier] = ACTIONS(3652), - [anon_sym_export] = ACTIONS(3652), - [anon_sym_type] = ACTIONS(3652), - [anon_sym_namespace] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_typeof] = ACTIONS(3652), - [anon_sym_import] = ACTIONS(3652), - [anon_sym_from] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [anon_sym_var] = ACTIONS(3652), - [anon_sym_let] = ACTIONS(3652), - [anon_sym_const] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_if] = ACTIONS(3652), - [anon_sym_switch] = ACTIONS(3652), - [anon_sym_for] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3652), - [anon_sym_await] = ACTIONS(3652), - [anon_sym_of] = ACTIONS(3652), - [anon_sym_while] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_try] = ACTIONS(3652), - [anon_sym_break] = ACTIONS(3652), - [anon_sym_continue] = ACTIONS(3652), - [anon_sym_debugger] = ACTIONS(3652), - [anon_sym_return] = ACTIONS(3652), - [anon_sym_throw] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_yield] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_LTtemplate_GT] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_async] = ACTIONS(3652), - [anon_sym_function] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_using] = ACTIONS(3652), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_SLASH] = ACTIONS(3652), - [anon_sym_LT] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_void] = ACTIONS(3652), - [anon_sym_delete] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_DASH_DASH] = ACTIONS(3652), + [1655] = { + [sym_comment] = STATE(1655), + [sym_identifier] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_type] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_typeof] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_from] = ACTIONS(3592), + [anon_sym_with] = ACTIONS(3592), + [anon_sym_var] = ACTIONS(3592), + [anon_sym_let] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_BANG] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_await] = ACTIONS(3592), + [anon_sym_of] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_debugger] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3592), + [anon_sym_yield] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_LTtemplate_GT] = ACTIONS(3592), + [anon_sym_DQUOTE] = ACTIONS(3592), + [anon_sym_SQUOTE] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_async] = ACTIONS(3592), + [anon_sym_function] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_SLASH] = ACTIONS(3592), + [anon_sym_LT] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_void] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3592), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3652), - [sym_number] = ACTIONS(3652), - [sym_private_property_identifier] = ACTIONS(3652), - [sym_this] = ACTIONS(3652), - [sym_super] = ACTIONS(3652), - [sym_true] = ACTIONS(3652), - [sym_false] = ACTIONS(3652), - [sym_null] = ACTIONS(3652), - [sym_undefined] = ACTIONS(3652), - [anon_sym_AT] = ACTIONS(3652), - [anon_sym_static] = ACTIONS(3652), - [anon_sym_readonly] = ACTIONS(3652), - [anon_sym_get] = ACTIONS(3652), - [anon_sym_set] = ACTIONS(3652), - [anon_sym_declare] = ACTIONS(3652), - [anon_sym_public] = ACTIONS(3652), - [anon_sym_private] = ACTIONS(3652), - [anon_sym_protected] = ACTIONS(3652), - [anon_sym_override] = ACTIONS(3652), - [anon_sym_module] = ACTIONS(3652), - [anon_sym_any] = ACTIONS(3652), - [anon_sym_number] = ACTIONS(3652), - [anon_sym_boolean] = ACTIONS(3652), - [anon_sym_string] = ACTIONS(3652), - [anon_sym_symbol] = ACTIONS(3652), - [anon_sym_object] = ACTIONS(3652), - [anon_sym_property] = ACTIONS(3652), - [anon_sym_signal] = ACTIONS(3652), - [anon_sym_on] = ACTIONS(3652), - [anon_sym_required] = ACTIONS(3652), - [anon_sym_component] = ACTIONS(3652), - [anon_sym_abstract] = ACTIONS(3652), - [anon_sym_interface] = ACTIONS(3652), - [anon_sym_enum] = ACTIONS(3652), + [anon_sym_BQUOTE] = ACTIONS(3592), + [sym_number] = ACTIONS(3592), + [sym_private_property_identifier] = ACTIONS(3592), + [sym_this] = ACTIONS(3592), + [sym_super] = ACTIONS(3592), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [sym_null] = ACTIONS(3592), + [sym_undefined] = ACTIONS(3592), + [anon_sym_AT] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_readonly] = ACTIONS(3592), + [anon_sym_get] = ACTIONS(3592), + [anon_sym_set] = ACTIONS(3592), + [anon_sym_declare] = ACTIONS(3592), + [anon_sym_public] = ACTIONS(3592), + [anon_sym_private] = ACTIONS(3592), + [anon_sym_protected] = ACTIONS(3592), + [anon_sym_override] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_any] = ACTIONS(3592), + [anon_sym_number] = ACTIONS(3592), + [anon_sym_boolean] = ACTIONS(3592), + [anon_sym_string] = ACTIONS(3592), + [anon_sym_symbol] = ACTIONS(3592), + [anon_sym_object] = ACTIONS(3592), + [anon_sym_property] = ACTIONS(3592), + [anon_sym_signal] = ACTIONS(3592), + [anon_sym_on] = ACTIONS(3592), + [anon_sym_required] = ACTIONS(3592), + [anon_sym_component] = ACTIONS(3592), + [anon_sym_abstract] = ACTIONS(3592), + [anon_sym_interface] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), [sym_html_comment] = ACTIONS(5), }, - [1706] = { - [sym_comment] = STATE(1706), - [sym_identifier] = ACTIONS(3668), - [anon_sym_export] = ACTIONS(3668), - [anon_sym_type] = ACTIONS(3668), - [anon_sym_namespace] = ACTIONS(3668), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_typeof] = ACTIONS(3668), - [anon_sym_import] = ACTIONS(3668), - [anon_sym_from] = ACTIONS(3668), - [anon_sym_with] = ACTIONS(3668), - [anon_sym_var] = ACTIONS(3668), - [anon_sym_let] = ACTIONS(3668), - [anon_sym_const] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3668), - [anon_sym_if] = ACTIONS(3668), - [anon_sym_switch] = ACTIONS(3668), - [anon_sym_for] = ACTIONS(3668), - [anon_sym_LPAREN] = ACTIONS(3668), - [anon_sym_await] = ACTIONS(3668), - [anon_sym_of] = ACTIONS(3668), - [anon_sym_while] = ACTIONS(3668), - [anon_sym_do] = ACTIONS(3668), - [anon_sym_try] = ACTIONS(3668), - [anon_sym_break] = ACTIONS(3668), - [anon_sym_continue] = ACTIONS(3668), - [anon_sym_debugger] = ACTIONS(3668), - [anon_sym_return] = ACTIONS(3668), - [anon_sym_throw] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym_yield] = ACTIONS(3668), - [anon_sym_LBRACK] = ACTIONS(3668), - [anon_sym_LTtemplate_GT] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3668), - [anon_sym_class] = ACTIONS(3668), - [anon_sym_async] = ACTIONS(3668), - [anon_sym_function] = ACTIONS(3668), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_using] = ACTIONS(3668), - [anon_sym_PLUS] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3668), - [anon_sym_SLASH] = ACTIONS(3668), - [anon_sym_LT] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_void] = ACTIONS(3668), - [anon_sym_delete] = ACTIONS(3668), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_DASH_DASH] = ACTIONS(3668), + [1656] = { + [sym_comment] = STATE(1656), + [sym_identifier] = ACTIONS(3626), + [anon_sym_export] = ACTIONS(3626), + [anon_sym_type] = ACTIONS(3626), + [anon_sym_namespace] = ACTIONS(3626), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_typeof] = ACTIONS(3626), + [anon_sym_import] = ACTIONS(3626), + [anon_sym_from] = ACTIONS(3626), + [anon_sym_with] = ACTIONS(3626), + [anon_sym_var] = ACTIONS(3626), + [anon_sym_let] = ACTIONS(3626), + [anon_sym_const] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_if] = ACTIONS(3626), + [anon_sym_switch] = ACTIONS(3626), + [anon_sym_for] = ACTIONS(3626), + [anon_sym_LPAREN] = ACTIONS(3626), + [anon_sym_await] = ACTIONS(3626), + [anon_sym_of] = ACTIONS(3626), + [anon_sym_while] = ACTIONS(3626), + [anon_sym_do] = ACTIONS(3626), + [anon_sym_try] = ACTIONS(3626), + [anon_sym_break] = ACTIONS(3626), + [anon_sym_continue] = ACTIONS(3626), + [anon_sym_debugger] = ACTIONS(3626), + [anon_sym_return] = ACTIONS(3626), + [anon_sym_throw] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym_yield] = ACTIONS(3626), + [anon_sym_LBRACK] = ACTIONS(3626), + [anon_sym_LTtemplate_GT] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_class] = ACTIONS(3626), + [anon_sym_async] = ACTIONS(3626), + [anon_sym_function] = ACTIONS(3626), + [anon_sym_new] = ACTIONS(3626), + [anon_sym_using] = ACTIONS(3626), + [anon_sym_PLUS] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3626), + [anon_sym_SLASH] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_void] = ACTIONS(3626), + [anon_sym_delete] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_DASH_DASH] = ACTIONS(3626), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3668), - [sym_number] = ACTIONS(3668), - [sym_private_property_identifier] = ACTIONS(3668), - [sym_this] = ACTIONS(3668), - [sym_super] = ACTIONS(3668), - [sym_true] = ACTIONS(3668), - [sym_false] = ACTIONS(3668), - [sym_null] = ACTIONS(3668), - [sym_undefined] = ACTIONS(3668), - [anon_sym_AT] = ACTIONS(3668), - [anon_sym_static] = ACTIONS(3668), - [anon_sym_readonly] = ACTIONS(3668), - [anon_sym_get] = ACTIONS(3668), - [anon_sym_set] = ACTIONS(3668), - [anon_sym_declare] = ACTIONS(3668), - [anon_sym_public] = ACTIONS(3668), - [anon_sym_private] = ACTIONS(3668), - [anon_sym_protected] = ACTIONS(3668), - [anon_sym_override] = ACTIONS(3668), - [anon_sym_module] = ACTIONS(3668), - [anon_sym_any] = ACTIONS(3668), - [anon_sym_number] = ACTIONS(3668), - [anon_sym_boolean] = ACTIONS(3668), - [anon_sym_string] = ACTIONS(3668), - [anon_sym_symbol] = ACTIONS(3668), - [anon_sym_object] = ACTIONS(3668), - [anon_sym_property] = ACTIONS(3668), - [anon_sym_signal] = ACTIONS(3668), - [anon_sym_on] = ACTIONS(3668), - [anon_sym_required] = ACTIONS(3668), - [anon_sym_component] = ACTIONS(3668), - [anon_sym_abstract] = ACTIONS(3668), - [anon_sym_interface] = ACTIONS(3668), - [anon_sym_enum] = ACTIONS(3668), + [anon_sym_BQUOTE] = ACTIONS(3626), + [sym_number] = ACTIONS(3626), + [sym_private_property_identifier] = ACTIONS(3626), + [sym_this] = ACTIONS(3626), + [sym_super] = ACTIONS(3626), + [sym_true] = ACTIONS(3626), + [sym_false] = ACTIONS(3626), + [sym_null] = ACTIONS(3626), + [sym_undefined] = ACTIONS(3626), + [anon_sym_AT] = ACTIONS(3626), + [anon_sym_static] = ACTIONS(3626), + [anon_sym_readonly] = ACTIONS(3626), + [anon_sym_get] = ACTIONS(3626), + [anon_sym_set] = ACTIONS(3626), + [anon_sym_declare] = ACTIONS(3626), + [anon_sym_public] = ACTIONS(3626), + [anon_sym_private] = ACTIONS(3626), + [anon_sym_protected] = ACTIONS(3626), + [anon_sym_override] = ACTIONS(3626), + [anon_sym_module] = ACTIONS(3626), + [anon_sym_any] = ACTIONS(3626), + [anon_sym_number] = ACTIONS(3626), + [anon_sym_boolean] = ACTIONS(3626), + [anon_sym_string] = ACTIONS(3626), + [anon_sym_symbol] = ACTIONS(3626), + [anon_sym_object] = ACTIONS(3626), + [anon_sym_property] = ACTIONS(3626), + [anon_sym_signal] = ACTIONS(3626), + [anon_sym_on] = ACTIONS(3626), + [anon_sym_required] = ACTIONS(3626), + [anon_sym_component] = ACTIONS(3626), + [anon_sym_abstract] = ACTIONS(3626), + [anon_sym_interface] = ACTIONS(3626), + [anon_sym_enum] = ACTIONS(3626), [sym_html_comment] = ACTIONS(5), }, - [1707] = { - [sym_comment] = STATE(1707), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1657] = { + [sym_comment] = STATE(1657), + [sym_identifier] = ACTIONS(3536), + [anon_sym_export] = ACTIONS(3536), + [anon_sym_type] = ACTIONS(3536), + [anon_sym_namespace] = ACTIONS(3536), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_typeof] = ACTIONS(3536), + [anon_sym_import] = ACTIONS(3536), + [anon_sym_from] = ACTIONS(3536), + [anon_sym_with] = ACTIONS(3536), + [anon_sym_var] = ACTIONS(3536), + [anon_sym_let] = ACTIONS(3536), + [anon_sym_const] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_if] = ACTIONS(3536), + [anon_sym_switch] = ACTIONS(3536), + [anon_sym_for] = ACTIONS(3536), + [anon_sym_LPAREN] = ACTIONS(3536), + [anon_sym_await] = ACTIONS(3536), + [anon_sym_of] = ACTIONS(3536), + [anon_sym_while] = ACTIONS(3536), + [anon_sym_do] = ACTIONS(3536), + [anon_sym_try] = ACTIONS(3536), + [anon_sym_break] = ACTIONS(3536), + [anon_sym_continue] = ACTIONS(3536), + [anon_sym_debugger] = ACTIONS(3536), + [anon_sym_return] = ACTIONS(3536), + [anon_sym_throw] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym_yield] = ACTIONS(3536), + [anon_sym_LBRACK] = ACTIONS(3536), + [anon_sym_LTtemplate_GT] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_class] = ACTIONS(3536), + [anon_sym_async] = ACTIONS(3536), + [anon_sym_function] = ACTIONS(3536), + [anon_sym_new] = ACTIONS(3536), + [anon_sym_using] = ACTIONS(3536), + [anon_sym_PLUS] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3536), + [anon_sym_SLASH] = ACTIONS(3536), + [anon_sym_LT] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_void] = ACTIONS(3536), + [anon_sym_delete] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_DASH_DASH] = ACTIONS(3536), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3536), + [sym_number] = ACTIONS(3536), + [sym_private_property_identifier] = ACTIONS(3536), + [sym_this] = ACTIONS(3536), + [sym_super] = ACTIONS(3536), + [sym_true] = ACTIONS(3536), + [sym_false] = ACTIONS(3536), + [sym_null] = ACTIONS(3536), + [sym_undefined] = ACTIONS(3536), + [anon_sym_AT] = ACTIONS(3536), + [anon_sym_static] = ACTIONS(3536), + [anon_sym_readonly] = ACTIONS(3536), + [anon_sym_get] = ACTIONS(3536), + [anon_sym_set] = ACTIONS(3536), + [anon_sym_declare] = ACTIONS(3536), + [anon_sym_public] = ACTIONS(3536), + [anon_sym_private] = ACTIONS(3536), + [anon_sym_protected] = ACTIONS(3536), + [anon_sym_override] = ACTIONS(3536), + [anon_sym_module] = ACTIONS(3536), + [anon_sym_any] = ACTIONS(3536), + [anon_sym_number] = ACTIONS(3536), + [anon_sym_boolean] = ACTIONS(3536), + [anon_sym_string] = ACTIONS(3536), + [anon_sym_symbol] = ACTIONS(3536), + [anon_sym_object] = ACTIONS(3536), + [anon_sym_property] = ACTIONS(3536), + [anon_sym_signal] = ACTIONS(3536), + [anon_sym_on] = ACTIONS(3536), + [anon_sym_required] = ACTIONS(3536), + [anon_sym_component] = ACTIONS(3536), + [anon_sym_abstract] = ACTIONS(3536), + [anon_sym_interface] = ACTIONS(3536), + [anon_sym_enum] = ACTIONS(3536), [sym_html_comment] = ACTIONS(5), }, - [1708] = { - [sym_comment] = STATE(1708), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1658] = { + [sym_comment] = STATE(1658), + [sym_identifier] = ACTIONS(3516), + [anon_sym_export] = ACTIONS(3516), + [anon_sym_type] = ACTIONS(3516), + [anon_sym_namespace] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_typeof] = ACTIONS(3516), + [anon_sym_import] = ACTIONS(3516), + [anon_sym_from] = ACTIONS(3516), + [anon_sym_with] = ACTIONS(3516), + [anon_sym_var] = ACTIONS(3516), + [anon_sym_let] = ACTIONS(3516), + [anon_sym_const] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_if] = ACTIONS(3516), + [anon_sym_switch] = ACTIONS(3516), + [anon_sym_for] = ACTIONS(3516), + [anon_sym_LPAREN] = ACTIONS(3516), + [anon_sym_await] = ACTIONS(3516), + [anon_sym_of] = ACTIONS(3516), + [anon_sym_while] = ACTIONS(3516), + [anon_sym_do] = ACTIONS(3516), + [anon_sym_try] = ACTIONS(3516), + [anon_sym_break] = ACTIONS(3516), + [anon_sym_continue] = ACTIONS(3516), + [anon_sym_debugger] = ACTIONS(3516), + [anon_sym_return] = ACTIONS(3516), + [anon_sym_throw] = ACTIONS(3516), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym_yield] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3516), + [anon_sym_LTtemplate_GT] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_class] = ACTIONS(3516), + [anon_sym_async] = ACTIONS(3516), + [anon_sym_function] = ACTIONS(3516), + [anon_sym_new] = ACTIONS(3516), + [anon_sym_using] = ACTIONS(3516), + [anon_sym_PLUS] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3516), + [anon_sym_SLASH] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_void] = ACTIONS(3516), + [anon_sym_delete] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_DASH_DASH] = ACTIONS(3516), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3516), + [sym_number] = ACTIONS(3516), + [sym_private_property_identifier] = ACTIONS(3516), + [sym_this] = ACTIONS(3516), + [sym_super] = ACTIONS(3516), + [sym_true] = ACTIONS(3516), + [sym_false] = ACTIONS(3516), + [sym_null] = ACTIONS(3516), + [sym_undefined] = ACTIONS(3516), + [anon_sym_AT] = ACTIONS(3516), + [anon_sym_static] = ACTIONS(3516), + [anon_sym_readonly] = ACTIONS(3516), + [anon_sym_get] = ACTIONS(3516), + [anon_sym_set] = ACTIONS(3516), + [anon_sym_declare] = ACTIONS(3516), + [anon_sym_public] = ACTIONS(3516), + [anon_sym_private] = ACTIONS(3516), + [anon_sym_protected] = ACTIONS(3516), + [anon_sym_override] = ACTIONS(3516), + [anon_sym_module] = ACTIONS(3516), + [anon_sym_any] = ACTIONS(3516), + [anon_sym_number] = ACTIONS(3516), + [anon_sym_boolean] = ACTIONS(3516), + [anon_sym_string] = ACTIONS(3516), + [anon_sym_symbol] = ACTIONS(3516), + [anon_sym_object] = ACTIONS(3516), + [anon_sym_property] = ACTIONS(3516), + [anon_sym_signal] = ACTIONS(3516), + [anon_sym_on] = ACTIONS(3516), + [anon_sym_required] = ACTIONS(3516), + [anon_sym_component] = ACTIONS(3516), + [anon_sym_abstract] = ACTIONS(3516), + [anon_sym_interface] = ACTIONS(3516), + [anon_sym_enum] = ACTIONS(3516), [sym_html_comment] = ACTIONS(5), }, - [1709] = { - [sym_comment] = STATE(1709), - [sym_identifier] = ACTIONS(3646), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_type] = ACTIONS(3646), - [anon_sym_namespace] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_RBRACE] = ACTIONS(3646), - [anon_sym_typeof] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_from] = ACTIONS(3646), - [anon_sym_with] = ACTIONS(3646), - [anon_sym_var] = ACTIONS(3646), - [anon_sym_let] = ACTIONS(3646), - [anon_sym_const] = ACTIONS(3646), - [anon_sym_BANG] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_LPAREN] = ACTIONS(3646), - [anon_sym_await] = ACTIONS(3646), - [anon_sym_of] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_debugger] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_SEMI] = ACTIONS(3646), - [anon_sym_yield] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3646), - [anon_sym_LTtemplate_GT] = ACTIONS(3646), - [anon_sym_DQUOTE] = ACTIONS(3646), - [anon_sym_SQUOTE] = ACTIONS(3646), - [anon_sym_class] = ACTIONS(3646), - [anon_sym_async] = ACTIONS(3646), - [anon_sym_function] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_using] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_SLASH] = ACTIONS(3646), - [anon_sym_LT] = ACTIONS(3646), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_void] = ACTIONS(3646), - [anon_sym_delete] = ACTIONS(3646), - [anon_sym_PLUS_PLUS] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3646), + [1659] = { + [sym_comment] = STATE(1659), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3646), - [sym_number] = ACTIONS(3646), - [sym_private_property_identifier] = ACTIONS(3646), - [sym_this] = ACTIONS(3646), - [sym_super] = ACTIONS(3646), - [sym_true] = ACTIONS(3646), - [sym_false] = ACTIONS(3646), - [sym_null] = ACTIONS(3646), - [sym_undefined] = ACTIONS(3646), - [anon_sym_AT] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_readonly] = ACTIONS(3646), - [anon_sym_get] = ACTIONS(3646), - [anon_sym_set] = ACTIONS(3646), - [anon_sym_declare] = ACTIONS(3646), - [anon_sym_public] = ACTIONS(3646), - [anon_sym_private] = ACTIONS(3646), - [anon_sym_protected] = ACTIONS(3646), - [anon_sym_override] = ACTIONS(3646), - [anon_sym_module] = ACTIONS(3646), - [anon_sym_any] = ACTIONS(3646), - [anon_sym_number] = ACTIONS(3646), - [anon_sym_boolean] = ACTIONS(3646), - [anon_sym_string] = ACTIONS(3646), - [anon_sym_symbol] = ACTIONS(3646), - [anon_sym_object] = ACTIONS(3646), - [anon_sym_property] = ACTIONS(3646), - [anon_sym_signal] = ACTIONS(3646), - [anon_sym_on] = ACTIONS(3646), - [anon_sym_required] = ACTIONS(3646), - [anon_sym_component] = ACTIONS(3646), - [anon_sym_abstract] = ACTIONS(3646), - [anon_sym_interface] = ACTIONS(3646), - [anon_sym_enum] = ACTIONS(3646), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1710] = { - [sym_comment] = STATE(1710), - [sym_identifier] = ACTIONS(3644), - [anon_sym_export] = ACTIONS(3644), - [anon_sym_type] = ACTIONS(3644), - [anon_sym_namespace] = ACTIONS(3644), - [anon_sym_LBRACE] = ACTIONS(3644), - [anon_sym_RBRACE] = ACTIONS(3644), - [anon_sym_typeof] = ACTIONS(3644), - [anon_sym_import] = ACTIONS(3644), - [anon_sym_from] = ACTIONS(3644), - [anon_sym_with] = ACTIONS(3644), - [anon_sym_var] = ACTIONS(3644), - [anon_sym_let] = ACTIONS(3644), - [anon_sym_const] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_switch] = ACTIONS(3644), - [anon_sym_for] = ACTIONS(3644), - [anon_sym_LPAREN] = ACTIONS(3644), - [anon_sym_await] = ACTIONS(3644), - [anon_sym_of] = ACTIONS(3644), - [anon_sym_while] = ACTIONS(3644), - [anon_sym_do] = ACTIONS(3644), - [anon_sym_try] = ACTIONS(3644), - [anon_sym_break] = ACTIONS(3644), - [anon_sym_continue] = ACTIONS(3644), - [anon_sym_debugger] = ACTIONS(3644), - [anon_sym_return] = ACTIONS(3644), - [anon_sym_throw] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym_yield] = ACTIONS(3644), - [anon_sym_LBRACK] = ACTIONS(3644), - [anon_sym_LTtemplate_GT] = ACTIONS(3644), - [anon_sym_DQUOTE] = ACTIONS(3644), - [anon_sym_SQUOTE] = ACTIONS(3644), - [anon_sym_class] = ACTIONS(3644), - [anon_sym_async] = ACTIONS(3644), - [anon_sym_function] = ACTIONS(3644), - [anon_sym_new] = ACTIONS(3644), - [anon_sym_using] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_SLASH] = ACTIONS(3644), - [anon_sym_LT] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(3644), - [anon_sym_void] = ACTIONS(3644), - [anon_sym_delete] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3644), - [anon_sym_DASH_DASH] = ACTIONS(3644), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3644), - [sym_number] = ACTIONS(3644), - [sym_private_property_identifier] = ACTIONS(3644), - [sym_this] = ACTIONS(3644), - [sym_super] = ACTIONS(3644), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [sym_null] = ACTIONS(3644), - [sym_undefined] = ACTIONS(3644), - [anon_sym_AT] = ACTIONS(3644), - [anon_sym_static] = ACTIONS(3644), - [anon_sym_readonly] = ACTIONS(3644), - [anon_sym_get] = ACTIONS(3644), - [anon_sym_set] = ACTIONS(3644), - [anon_sym_declare] = ACTIONS(3644), - [anon_sym_public] = ACTIONS(3644), - [anon_sym_private] = ACTIONS(3644), - [anon_sym_protected] = ACTIONS(3644), - [anon_sym_override] = ACTIONS(3644), - [anon_sym_module] = ACTIONS(3644), - [anon_sym_any] = ACTIONS(3644), - [anon_sym_number] = ACTIONS(3644), - [anon_sym_boolean] = ACTIONS(3644), - [anon_sym_string] = ACTIONS(3644), - [anon_sym_symbol] = ACTIONS(3644), - [anon_sym_object] = ACTIONS(3644), - [anon_sym_property] = ACTIONS(3644), - [anon_sym_signal] = ACTIONS(3644), - [anon_sym_on] = ACTIONS(3644), - [anon_sym_required] = ACTIONS(3644), - [anon_sym_component] = ACTIONS(3644), - [anon_sym_abstract] = ACTIONS(3644), - [anon_sym_interface] = ACTIONS(3644), - [anon_sym_enum] = ACTIONS(3644), + [1660] = { + [sym_comment] = STATE(1660), + [sym_identifier] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_type] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_RBRACE] = ACTIONS(3490), + [anon_sym_typeof] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_from] = ACTIONS(3490), + [anon_sym_with] = ACTIONS(3490), + [anon_sym_var] = ACTIONS(3490), + [anon_sym_let] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_await] = ACTIONS(3490), + [anon_sym_of] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_debugger] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LTtemplate_GT] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(3490), + [anon_sym_SQUOTE] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_async] = ACTIONS(3490), + [anon_sym_function] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_SLASH] = ACTIONS(3490), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_void] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3490), + [sym_number] = ACTIONS(3490), + [sym_private_property_identifier] = ACTIONS(3490), + [sym_this] = ACTIONS(3490), + [sym_super] = ACTIONS(3490), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [sym_null] = ACTIONS(3490), + [sym_undefined] = ACTIONS(3490), + [anon_sym_AT] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_readonly] = ACTIONS(3490), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3490), + [anon_sym_declare] = ACTIONS(3490), + [anon_sym_public] = ACTIONS(3490), + [anon_sym_private] = ACTIONS(3490), + [anon_sym_protected] = ACTIONS(3490), + [anon_sym_override] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_any] = ACTIONS(3490), + [anon_sym_number] = ACTIONS(3490), + [anon_sym_boolean] = ACTIONS(3490), + [anon_sym_string] = ACTIONS(3490), + [anon_sym_symbol] = ACTIONS(3490), + [anon_sym_object] = ACTIONS(3490), + [anon_sym_property] = ACTIONS(3490), + [anon_sym_signal] = ACTIONS(3490), + [anon_sym_on] = ACTIONS(3490), + [anon_sym_required] = ACTIONS(3490), + [anon_sym_component] = ACTIONS(3490), + [anon_sym_abstract] = ACTIONS(3490), + [anon_sym_interface] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), [sym_html_comment] = ACTIONS(5), }, - [1711] = { - [sym_comment] = STATE(1711), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1661] = { + [sym_comment] = STATE(1661), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1712] = { - [sym_comment] = STATE(1712), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1662] = { + [sym_comment] = STATE(1662), + [sym_identifier] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_type] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3620), + [anon_sym_RBRACE] = ACTIONS(3620), + [anon_sym_typeof] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_from] = ACTIONS(3620), + [anon_sym_with] = ACTIONS(3620), + [anon_sym_var] = ACTIONS(3620), + [anon_sym_let] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_BANG] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_LPAREN] = ACTIONS(3620), + [anon_sym_await] = ACTIONS(3620), + [anon_sym_of] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_debugger] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3620), + [anon_sym_yield] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_LTtemplate_GT] = ACTIONS(3620), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_SQUOTE] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_async] = ACTIONS(3620), + [anon_sym_function] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_SLASH] = ACTIONS(3620), + [anon_sym_LT] = ACTIONS(3620), + [anon_sym_TILDE] = ACTIONS(3620), + [anon_sym_void] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_PLUS_PLUS] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3620), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1713] = { - [sym_comment] = STATE(1713), - [sym_identifier] = ACTIONS(3526), - [anon_sym_export] = ACTIONS(3526), - [anon_sym_type] = ACTIONS(3526), - [anon_sym_namespace] = ACTIONS(3526), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_RBRACE] = ACTIONS(3526), - [anon_sym_typeof] = ACTIONS(3526), - [anon_sym_import] = ACTIONS(3526), - [anon_sym_from] = ACTIONS(3526), - [anon_sym_with] = ACTIONS(3526), - [anon_sym_var] = ACTIONS(3526), - [anon_sym_let] = ACTIONS(3526), - [anon_sym_const] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_if] = ACTIONS(3526), - [anon_sym_switch] = ACTIONS(3526), - [anon_sym_for] = ACTIONS(3526), - [anon_sym_LPAREN] = ACTIONS(3526), - [anon_sym_await] = ACTIONS(3526), - [anon_sym_of] = ACTIONS(3526), - [anon_sym_while] = ACTIONS(3526), - [anon_sym_do] = ACTIONS(3526), - [anon_sym_try] = ACTIONS(3526), - [anon_sym_break] = ACTIONS(3526), - [anon_sym_continue] = ACTIONS(3526), - [anon_sym_debugger] = ACTIONS(3526), - [anon_sym_return] = ACTIONS(3526), - [anon_sym_throw] = ACTIONS(3526), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_yield] = ACTIONS(3526), - [anon_sym_LBRACK] = ACTIONS(3526), - [anon_sym_LTtemplate_GT] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [anon_sym_SQUOTE] = ACTIONS(3526), - [anon_sym_class] = ACTIONS(3526), - [anon_sym_async] = ACTIONS(3526), - [anon_sym_function] = ACTIONS(3526), - [anon_sym_new] = ACTIONS(3526), - [anon_sym_using] = ACTIONS(3526), - [anon_sym_PLUS] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_void] = ACTIONS(3526), - [anon_sym_delete] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_DASH_DASH] = ACTIONS(3526), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3526), - [sym_number] = ACTIONS(3526), - [sym_private_property_identifier] = ACTIONS(3526), - [sym_this] = ACTIONS(3526), - [sym_super] = ACTIONS(3526), - [sym_true] = ACTIONS(3526), - [sym_false] = ACTIONS(3526), - [sym_null] = ACTIONS(3526), - [sym_undefined] = ACTIONS(3526), - [anon_sym_AT] = ACTIONS(3526), - [anon_sym_static] = ACTIONS(3526), - [anon_sym_readonly] = ACTIONS(3526), - [anon_sym_get] = ACTIONS(3526), - [anon_sym_set] = ACTIONS(3526), - [anon_sym_declare] = ACTIONS(3526), - [anon_sym_public] = ACTIONS(3526), - [anon_sym_private] = ACTIONS(3526), - [anon_sym_protected] = ACTIONS(3526), - [anon_sym_override] = ACTIONS(3526), - [anon_sym_module] = ACTIONS(3526), - [anon_sym_any] = ACTIONS(3526), - [anon_sym_number] = ACTIONS(3526), - [anon_sym_boolean] = ACTIONS(3526), - [anon_sym_string] = ACTIONS(3526), - [anon_sym_symbol] = ACTIONS(3526), - [anon_sym_object] = ACTIONS(3526), - [anon_sym_property] = ACTIONS(3526), - [anon_sym_signal] = ACTIONS(3526), - [anon_sym_on] = ACTIONS(3526), - [anon_sym_required] = ACTIONS(3526), - [anon_sym_component] = ACTIONS(3526), - [anon_sym_abstract] = ACTIONS(3526), - [anon_sym_interface] = ACTIONS(3526), - [anon_sym_enum] = ACTIONS(3526), + [anon_sym_BQUOTE] = ACTIONS(3620), + [sym_number] = ACTIONS(3620), + [sym_private_property_identifier] = ACTIONS(3620), + [sym_this] = ACTIONS(3620), + [sym_super] = ACTIONS(3620), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [sym_null] = ACTIONS(3620), + [sym_undefined] = ACTIONS(3620), + [anon_sym_AT] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_readonly] = ACTIONS(3620), + [anon_sym_get] = ACTIONS(3620), + [anon_sym_set] = ACTIONS(3620), + [anon_sym_declare] = ACTIONS(3620), + [anon_sym_public] = ACTIONS(3620), + [anon_sym_private] = ACTIONS(3620), + [anon_sym_protected] = ACTIONS(3620), + [anon_sym_override] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_any] = ACTIONS(3620), + [anon_sym_number] = ACTIONS(3620), + [anon_sym_boolean] = ACTIONS(3620), + [anon_sym_string] = ACTIONS(3620), + [anon_sym_symbol] = ACTIONS(3620), + [anon_sym_object] = ACTIONS(3620), + [anon_sym_property] = ACTIONS(3620), + [anon_sym_signal] = ACTIONS(3620), + [anon_sym_on] = ACTIONS(3620), + [anon_sym_required] = ACTIONS(3620), + [anon_sym_component] = ACTIONS(3620), + [anon_sym_abstract] = ACTIONS(3620), + [anon_sym_interface] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), [sym_html_comment] = ACTIONS(5), }, - [1714] = { - [sym_comment] = STATE(1714), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1663] = { + [sym_comment] = STATE(1663), + [sym_identifier] = ACTIONS(3588), + [anon_sym_export] = ACTIONS(3588), + [anon_sym_type] = ACTIONS(3588), + [anon_sym_namespace] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3588), + [anon_sym_RBRACE] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(3588), + [anon_sym_import] = ACTIONS(3588), + [anon_sym_from] = ACTIONS(3588), + [anon_sym_with] = ACTIONS(3588), + [anon_sym_var] = ACTIONS(3588), + [anon_sym_let] = ACTIONS(3588), + [anon_sym_const] = ACTIONS(3588), + [anon_sym_BANG] = ACTIONS(3588), + [anon_sym_if] = ACTIONS(3588), + [anon_sym_switch] = ACTIONS(3588), + [anon_sym_for] = ACTIONS(3588), + [anon_sym_LPAREN] = ACTIONS(3588), + [anon_sym_await] = ACTIONS(3588), + [anon_sym_of] = ACTIONS(3588), + [anon_sym_while] = ACTIONS(3588), + [anon_sym_do] = ACTIONS(3588), + [anon_sym_try] = ACTIONS(3588), + [anon_sym_break] = ACTIONS(3588), + [anon_sym_continue] = ACTIONS(3588), + [anon_sym_debugger] = ACTIONS(3588), + [anon_sym_return] = ACTIONS(3588), + [anon_sym_throw] = ACTIONS(3588), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_yield] = ACTIONS(3588), + [anon_sym_LBRACK] = ACTIONS(3588), + [anon_sym_LTtemplate_GT] = ACTIONS(3588), + [anon_sym_DQUOTE] = ACTIONS(3588), + [anon_sym_SQUOTE] = ACTIONS(3588), + [anon_sym_class] = ACTIONS(3588), + [anon_sym_async] = ACTIONS(3588), + [anon_sym_function] = ACTIONS(3588), + [anon_sym_new] = ACTIONS(3588), + [anon_sym_using] = ACTIONS(3588), + [anon_sym_PLUS] = ACTIONS(3588), + [anon_sym_DASH] = ACTIONS(3588), + [anon_sym_SLASH] = ACTIONS(3588), + [anon_sym_LT] = ACTIONS(3588), + [anon_sym_TILDE] = ACTIONS(3588), + [anon_sym_void] = ACTIONS(3588), + [anon_sym_delete] = ACTIONS(3588), + [anon_sym_PLUS_PLUS] = ACTIONS(3588), + [anon_sym_DASH_DASH] = ACTIONS(3588), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3588), + [sym_number] = ACTIONS(3588), + [sym_private_property_identifier] = ACTIONS(3588), + [sym_this] = ACTIONS(3588), + [sym_super] = ACTIONS(3588), + [sym_true] = ACTIONS(3588), + [sym_false] = ACTIONS(3588), + [sym_null] = ACTIONS(3588), + [sym_undefined] = ACTIONS(3588), + [anon_sym_AT] = ACTIONS(3588), + [anon_sym_static] = ACTIONS(3588), + [anon_sym_readonly] = ACTIONS(3588), + [anon_sym_get] = ACTIONS(3588), + [anon_sym_set] = ACTIONS(3588), + [anon_sym_declare] = ACTIONS(3588), + [anon_sym_public] = ACTIONS(3588), + [anon_sym_private] = ACTIONS(3588), + [anon_sym_protected] = ACTIONS(3588), + [anon_sym_override] = ACTIONS(3588), + [anon_sym_module] = ACTIONS(3588), + [anon_sym_any] = ACTIONS(3588), + [anon_sym_number] = ACTIONS(3588), + [anon_sym_boolean] = ACTIONS(3588), + [anon_sym_string] = ACTIONS(3588), + [anon_sym_symbol] = ACTIONS(3588), + [anon_sym_object] = ACTIONS(3588), + [anon_sym_property] = ACTIONS(3588), + [anon_sym_signal] = ACTIONS(3588), + [anon_sym_on] = ACTIONS(3588), + [anon_sym_required] = ACTIONS(3588), + [anon_sym_component] = ACTIONS(3588), + [anon_sym_abstract] = ACTIONS(3588), + [anon_sym_interface] = ACTIONS(3588), + [anon_sym_enum] = ACTIONS(3588), [sym_html_comment] = ACTIONS(5), }, - [1715] = { - [sym_comment] = STATE(1715), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1664] = { + [sym_comment] = STATE(1664), + [sym_identifier] = ACTIONS(2450), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_typeof] = ACTIONS(2450), + [anon_sym_import] = ACTIONS(2450), + [anon_sym_from] = 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(2450), + [anon_sym_if] = ACTIONS(2450), + [anon_sym_switch] = ACTIONS(2450), + [anon_sym_for] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_await] = ACTIONS(2450), + [anon_sym_of] = 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(2450), + [anon_sym_yield] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LTtemplate_GT] = ACTIONS(2450), + [anon_sym_DQUOTE] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2450), + [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(2450), + [anon_sym_void] = ACTIONS(2450), + [anon_sym_delete] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(2450), + [sym_number] = ACTIONS(2450), + [sym_private_property_identifier] = ACTIONS(2450), + [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(2450), + [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_property] = ACTIONS(2450), + [anon_sym_signal] = ACTIONS(2450), + [anon_sym_on] = ACTIONS(2450), + [anon_sym_required] = ACTIONS(2450), + [anon_sym_component] = ACTIONS(2450), + [anon_sym_abstract] = ACTIONS(2450), + [anon_sym_interface] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), [sym_html_comment] = ACTIONS(5), }, - [1716] = { - [sym_comment] = STATE(1716), - [sym_identifier] = ACTIONS(3642), - [anon_sym_export] = ACTIONS(3642), - [anon_sym_type] = ACTIONS(3642), - [anon_sym_namespace] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3642), - [anon_sym_RBRACE] = ACTIONS(3642), - [anon_sym_typeof] = ACTIONS(3642), - [anon_sym_import] = ACTIONS(3642), - [anon_sym_from] = ACTIONS(3642), - [anon_sym_with] = ACTIONS(3642), - [anon_sym_var] = ACTIONS(3642), - [anon_sym_let] = ACTIONS(3642), - [anon_sym_const] = ACTIONS(3642), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_if] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_for] = ACTIONS(3642), - [anon_sym_LPAREN] = ACTIONS(3642), - [anon_sym_await] = ACTIONS(3642), - [anon_sym_of] = ACTIONS(3642), - [anon_sym_while] = ACTIONS(3642), - [anon_sym_do] = ACTIONS(3642), - [anon_sym_try] = ACTIONS(3642), - [anon_sym_break] = ACTIONS(3642), - [anon_sym_continue] = ACTIONS(3642), - [anon_sym_debugger] = ACTIONS(3642), - [anon_sym_return] = ACTIONS(3642), - [anon_sym_throw] = ACTIONS(3642), - [anon_sym_SEMI] = ACTIONS(3642), - [anon_sym_yield] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_LTtemplate_GT] = ACTIONS(3642), - [anon_sym_DQUOTE] = ACTIONS(3642), - [anon_sym_SQUOTE] = ACTIONS(3642), - [anon_sym_class] = ACTIONS(3642), - [anon_sym_async] = ACTIONS(3642), - [anon_sym_function] = ACTIONS(3642), - [anon_sym_new] = ACTIONS(3642), - [anon_sym_using] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_SLASH] = ACTIONS(3642), - [anon_sym_LT] = ACTIONS(3642), - [anon_sym_TILDE] = ACTIONS(3642), - [anon_sym_void] = ACTIONS(3642), - [anon_sym_delete] = ACTIONS(3642), - [anon_sym_PLUS_PLUS] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3642), + [1665] = { + [sym_comment] = STATE(1665), + [sym_identifier] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_type] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_typeof] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_from] = ACTIONS(3640), + [anon_sym_with] = ACTIONS(3640), + [anon_sym_var] = ACTIONS(3640), + [anon_sym_let] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_BANG] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym_await] = ACTIONS(3640), + [anon_sym_of] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_debugger] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3640), + [anon_sym_yield] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_LTtemplate_GT] = ACTIONS(3640), + [anon_sym_DQUOTE] = ACTIONS(3640), + [anon_sym_SQUOTE] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_async] = ACTIONS(3640), + [anon_sym_function] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_SLASH] = ACTIONS(3640), + [anon_sym_LT] = ACTIONS(3640), + [anon_sym_TILDE] = ACTIONS(3640), + [anon_sym_void] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_PLUS_PLUS] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3640), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3642), - [sym_number] = ACTIONS(3642), - [sym_private_property_identifier] = ACTIONS(3642), - [sym_this] = ACTIONS(3642), - [sym_super] = ACTIONS(3642), - [sym_true] = ACTIONS(3642), - [sym_false] = ACTIONS(3642), - [sym_null] = ACTIONS(3642), - [sym_undefined] = ACTIONS(3642), - [anon_sym_AT] = ACTIONS(3642), - [anon_sym_static] = ACTIONS(3642), - [anon_sym_readonly] = ACTIONS(3642), - [anon_sym_get] = ACTIONS(3642), - [anon_sym_set] = ACTIONS(3642), - [anon_sym_declare] = ACTIONS(3642), - [anon_sym_public] = ACTIONS(3642), - [anon_sym_private] = ACTIONS(3642), - [anon_sym_protected] = ACTIONS(3642), - [anon_sym_override] = ACTIONS(3642), - [anon_sym_module] = ACTIONS(3642), - [anon_sym_any] = ACTIONS(3642), - [anon_sym_number] = ACTIONS(3642), - [anon_sym_boolean] = ACTIONS(3642), - [anon_sym_string] = ACTIONS(3642), - [anon_sym_symbol] = ACTIONS(3642), - [anon_sym_object] = ACTIONS(3642), - [anon_sym_property] = ACTIONS(3642), - [anon_sym_signal] = ACTIONS(3642), - [anon_sym_on] = ACTIONS(3642), - [anon_sym_required] = ACTIONS(3642), - [anon_sym_component] = ACTIONS(3642), - [anon_sym_abstract] = ACTIONS(3642), - [anon_sym_interface] = ACTIONS(3642), - [anon_sym_enum] = ACTIONS(3642), + [anon_sym_BQUOTE] = ACTIONS(3640), + [sym_number] = ACTIONS(3640), + [sym_private_property_identifier] = ACTIONS(3640), + [sym_this] = ACTIONS(3640), + [sym_super] = ACTIONS(3640), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [sym_null] = ACTIONS(3640), + [sym_undefined] = ACTIONS(3640), + [anon_sym_AT] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_readonly] = ACTIONS(3640), + [anon_sym_get] = ACTIONS(3640), + [anon_sym_set] = ACTIONS(3640), + [anon_sym_declare] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_override] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_any] = ACTIONS(3640), + [anon_sym_number] = ACTIONS(3640), + [anon_sym_boolean] = ACTIONS(3640), + [anon_sym_string] = ACTIONS(3640), + [anon_sym_symbol] = ACTIONS(3640), + [anon_sym_object] = ACTIONS(3640), + [anon_sym_property] = ACTIONS(3640), + [anon_sym_signal] = ACTIONS(3640), + [anon_sym_on] = ACTIONS(3640), + [anon_sym_required] = ACTIONS(3640), + [anon_sym_component] = ACTIONS(3640), + [anon_sym_abstract] = ACTIONS(3640), + [anon_sym_interface] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), [sym_html_comment] = ACTIONS(5), }, - [1717] = { - [sym_comment] = STATE(1717), - [sym_identifier] = ACTIONS(3532), - [anon_sym_export] = ACTIONS(3532), - [anon_sym_type] = ACTIONS(3532), - [anon_sym_namespace] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3532), - [anon_sym_RBRACE] = ACTIONS(3532), - [anon_sym_typeof] = ACTIONS(3532), - [anon_sym_import] = ACTIONS(3532), - [anon_sym_from] = ACTIONS(3532), - [anon_sym_with] = ACTIONS(3532), - [anon_sym_var] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_BANG] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_LPAREN] = ACTIONS(3532), - [anon_sym_await] = ACTIONS(3532), - [anon_sym_of] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_debugger] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_SEMI] = ACTIONS(3532), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_LTtemplate_GT] = ACTIONS(3532), - [anon_sym_DQUOTE] = ACTIONS(3532), - [anon_sym_SQUOTE] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3532), - [anon_sym_async] = ACTIONS(3532), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_using] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_SLASH] = ACTIONS(3532), - [anon_sym_LT] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3532), - [anon_sym_void] = ACTIONS(3532), - [anon_sym_delete] = ACTIONS(3532), - [anon_sym_PLUS_PLUS] = ACTIONS(3532), - [anon_sym_DASH_DASH] = ACTIONS(3532), + [1666] = { + [sym_comment] = STATE(1666), + [sym_identifier] = ACTIONS(3600), + [anon_sym_export] = ACTIONS(3600), + [anon_sym_type] = ACTIONS(3600), + [anon_sym_namespace] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3600), + [anon_sym_RBRACE] = ACTIONS(3600), + [anon_sym_typeof] = ACTIONS(3600), + [anon_sym_import] = ACTIONS(3600), + [anon_sym_from] = ACTIONS(3600), + [anon_sym_with] = ACTIONS(3600), + [anon_sym_var] = ACTIONS(3600), + [anon_sym_let] = ACTIONS(3600), + [anon_sym_const] = ACTIONS(3600), + [anon_sym_BANG] = ACTIONS(3600), + [anon_sym_if] = ACTIONS(3600), + [anon_sym_switch] = ACTIONS(3600), + [anon_sym_for] = ACTIONS(3600), + [anon_sym_LPAREN] = ACTIONS(3600), + [anon_sym_await] = ACTIONS(3600), + [anon_sym_of] = ACTIONS(3600), + [anon_sym_while] = ACTIONS(3600), + [anon_sym_do] = ACTIONS(3600), + [anon_sym_try] = ACTIONS(3600), + [anon_sym_break] = ACTIONS(3600), + [anon_sym_continue] = ACTIONS(3600), + [anon_sym_debugger] = ACTIONS(3600), + [anon_sym_return] = ACTIONS(3600), + [anon_sym_throw] = ACTIONS(3600), + [anon_sym_SEMI] = ACTIONS(3600), + [anon_sym_yield] = ACTIONS(3600), + [anon_sym_LBRACK] = ACTIONS(3600), + [anon_sym_LTtemplate_GT] = ACTIONS(3600), + [anon_sym_DQUOTE] = ACTIONS(3600), + [anon_sym_SQUOTE] = ACTIONS(3600), + [anon_sym_class] = ACTIONS(3600), + [anon_sym_async] = ACTIONS(3600), + [anon_sym_function] = ACTIONS(3600), + [anon_sym_new] = ACTIONS(3600), + [anon_sym_using] = ACTIONS(3600), + [anon_sym_PLUS] = ACTIONS(3600), + [anon_sym_DASH] = ACTIONS(3600), + [anon_sym_SLASH] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(3600), + [anon_sym_TILDE] = ACTIONS(3600), + [anon_sym_void] = ACTIONS(3600), + [anon_sym_delete] = ACTIONS(3600), + [anon_sym_PLUS_PLUS] = ACTIONS(3600), + [anon_sym_DASH_DASH] = ACTIONS(3600), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3532), - [sym_number] = ACTIONS(3532), - [sym_private_property_identifier] = ACTIONS(3532), - [sym_this] = ACTIONS(3532), - [sym_super] = ACTIONS(3532), - [sym_true] = ACTIONS(3532), - [sym_false] = ACTIONS(3532), - [sym_null] = ACTIONS(3532), - [sym_undefined] = ACTIONS(3532), - [anon_sym_AT] = ACTIONS(3532), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_readonly] = ACTIONS(3532), - [anon_sym_get] = ACTIONS(3532), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_declare] = ACTIONS(3532), - [anon_sym_public] = ACTIONS(3532), - [anon_sym_private] = ACTIONS(3532), - [anon_sym_protected] = ACTIONS(3532), - [anon_sym_override] = ACTIONS(3532), - [anon_sym_module] = ACTIONS(3532), - [anon_sym_any] = ACTIONS(3532), - [anon_sym_number] = ACTIONS(3532), - [anon_sym_boolean] = ACTIONS(3532), - [anon_sym_string] = ACTIONS(3532), - [anon_sym_symbol] = ACTIONS(3532), - [anon_sym_object] = ACTIONS(3532), - [anon_sym_property] = ACTIONS(3532), - [anon_sym_signal] = ACTIONS(3532), - [anon_sym_on] = ACTIONS(3532), - [anon_sym_required] = ACTIONS(3532), - [anon_sym_component] = ACTIONS(3532), - [anon_sym_abstract] = ACTIONS(3532), - [anon_sym_interface] = ACTIONS(3532), - [anon_sym_enum] = ACTIONS(3532), + [anon_sym_BQUOTE] = ACTIONS(3600), + [sym_number] = ACTIONS(3600), + [sym_private_property_identifier] = ACTIONS(3600), + [sym_this] = ACTIONS(3600), + [sym_super] = ACTIONS(3600), + [sym_true] = ACTIONS(3600), + [sym_false] = ACTIONS(3600), + [sym_null] = ACTIONS(3600), + [sym_undefined] = ACTIONS(3600), + [anon_sym_AT] = ACTIONS(3600), + [anon_sym_static] = ACTIONS(3600), + [anon_sym_readonly] = ACTIONS(3600), + [anon_sym_get] = ACTIONS(3600), + [anon_sym_set] = ACTIONS(3600), + [anon_sym_declare] = ACTIONS(3600), + [anon_sym_public] = ACTIONS(3600), + [anon_sym_private] = ACTIONS(3600), + [anon_sym_protected] = ACTIONS(3600), + [anon_sym_override] = ACTIONS(3600), + [anon_sym_module] = ACTIONS(3600), + [anon_sym_any] = ACTIONS(3600), + [anon_sym_number] = ACTIONS(3600), + [anon_sym_boolean] = ACTIONS(3600), + [anon_sym_string] = ACTIONS(3600), + [anon_sym_symbol] = ACTIONS(3600), + [anon_sym_object] = ACTIONS(3600), + [anon_sym_property] = ACTIONS(3600), + [anon_sym_signal] = ACTIONS(3600), + [anon_sym_on] = ACTIONS(3600), + [anon_sym_required] = ACTIONS(3600), + [anon_sym_component] = ACTIONS(3600), + [anon_sym_abstract] = ACTIONS(3600), + [anon_sym_interface] = ACTIONS(3600), + [anon_sym_enum] = ACTIONS(3600), [sym_html_comment] = ACTIONS(5), }, - [1718] = { - [sym_comment] = STATE(1718), + [1667] = { + [sym_comment] = STATE(1667), [sym_identifier] = ACTIONS(3600), [anon_sym_export] = ACTIONS(3600), [anon_sym_type] = ACTIONS(3600), @@ -221598,1226 +216603,617 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3600), [sym_html_comment] = ACTIONS(5), }, - [1719] = { - [sym_comment] = STATE(1719), - [sym_identifier] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_type] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3618), - [anon_sym_RBRACE] = ACTIONS(3618), - [anon_sym_typeof] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_from] = ACTIONS(3618), - [anon_sym_with] = ACTIONS(3618), - [anon_sym_var] = ACTIONS(3618), - [anon_sym_let] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_BANG] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_LPAREN] = ACTIONS(3618), - [anon_sym_await] = ACTIONS(3618), - [anon_sym_of] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_debugger] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3618), - [anon_sym_yield] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_LTtemplate_GT] = ACTIONS(3618), - [anon_sym_DQUOTE] = ACTIONS(3618), - [anon_sym_SQUOTE] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_async] = ACTIONS(3618), - [anon_sym_function] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(3618), - [anon_sym_TILDE] = ACTIONS(3618), - [anon_sym_void] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_PLUS_PLUS] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3618), + [1668] = { + [sym_comment] = STATE(1668), + [sym_identifier] = ACTIONS(3598), + [anon_sym_export] = ACTIONS(3598), + [anon_sym_type] = ACTIONS(3598), + [anon_sym_namespace] = ACTIONS(3598), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_RBRACE] = ACTIONS(3598), + [anon_sym_typeof] = ACTIONS(3598), + [anon_sym_import] = ACTIONS(3598), + [anon_sym_from] = ACTIONS(3598), + [anon_sym_with] = ACTIONS(3598), + [anon_sym_var] = ACTIONS(3598), + [anon_sym_let] = ACTIONS(3598), + [anon_sym_const] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_if] = ACTIONS(3598), + [anon_sym_switch] = ACTIONS(3598), + [anon_sym_for] = ACTIONS(3598), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_await] = ACTIONS(3598), + [anon_sym_of] = ACTIONS(3598), + [anon_sym_while] = ACTIONS(3598), + [anon_sym_do] = ACTIONS(3598), + [anon_sym_try] = ACTIONS(3598), + [anon_sym_break] = ACTIONS(3598), + [anon_sym_continue] = ACTIONS(3598), + [anon_sym_debugger] = ACTIONS(3598), + [anon_sym_return] = ACTIONS(3598), + [anon_sym_throw] = ACTIONS(3598), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym_yield] = ACTIONS(3598), + [anon_sym_LBRACK] = ACTIONS(3598), + [anon_sym_LTtemplate_GT] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_class] = ACTIONS(3598), + [anon_sym_async] = ACTIONS(3598), + [anon_sym_function] = ACTIONS(3598), + [anon_sym_new] = ACTIONS(3598), + [anon_sym_using] = ACTIONS(3598), + [anon_sym_PLUS] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3598), + [anon_sym_SLASH] = ACTIONS(3598), + [anon_sym_LT] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_void] = ACTIONS(3598), + [anon_sym_delete] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_DASH_DASH] = ACTIONS(3598), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3618), - [sym_number] = ACTIONS(3618), - [sym_private_property_identifier] = ACTIONS(3618), - [sym_this] = ACTIONS(3618), - [sym_super] = ACTIONS(3618), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [sym_null] = ACTIONS(3618), - [sym_undefined] = ACTIONS(3618), - [anon_sym_AT] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_readonly] = ACTIONS(3618), - [anon_sym_get] = ACTIONS(3618), - [anon_sym_set] = ACTIONS(3618), - [anon_sym_declare] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_override] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_any] = ACTIONS(3618), - [anon_sym_number] = ACTIONS(3618), - [anon_sym_boolean] = ACTIONS(3618), - [anon_sym_string] = ACTIONS(3618), - [anon_sym_symbol] = ACTIONS(3618), - [anon_sym_object] = ACTIONS(3618), - [anon_sym_property] = ACTIONS(3618), - [anon_sym_signal] = ACTIONS(3618), - [anon_sym_on] = ACTIONS(3618), - [anon_sym_required] = ACTIONS(3618), - [anon_sym_component] = ACTIONS(3618), - [anon_sym_abstract] = ACTIONS(3618), - [anon_sym_interface] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), + [anon_sym_BQUOTE] = ACTIONS(3598), + [sym_number] = ACTIONS(3598), + [sym_private_property_identifier] = ACTIONS(3598), + [sym_this] = ACTIONS(3598), + [sym_super] = ACTIONS(3598), + [sym_true] = ACTIONS(3598), + [sym_false] = ACTIONS(3598), + [sym_null] = ACTIONS(3598), + [sym_undefined] = ACTIONS(3598), + [anon_sym_AT] = ACTIONS(3598), + [anon_sym_static] = ACTIONS(3598), + [anon_sym_readonly] = ACTIONS(3598), + [anon_sym_get] = ACTIONS(3598), + [anon_sym_set] = ACTIONS(3598), + [anon_sym_declare] = ACTIONS(3598), + [anon_sym_public] = ACTIONS(3598), + [anon_sym_private] = ACTIONS(3598), + [anon_sym_protected] = ACTIONS(3598), + [anon_sym_override] = ACTIONS(3598), + [anon_sym_module] = ACTIONS(3598), + [anon_sym_any] = ACTIONS(3598), + [anon_sym_number] = ACTIONS(3598), + [anon_sym_boolean] = ACTIONS(3598), + [anon_sym_string] = ACTIONS(3598), + [anon_sym_symbol] = ACTIONS(3598), + [anon_sym_object] = ACTIONS(3598), + [anon_sym_property] = ACTIONS(3598), + [anon_sym_signal] = ACTIONS(3598), + [anon_sym_on] = ACTIONS(3598), + [anon_sym_required] = ACTIONS(3598), + [anon_sym_component] = ACTIONS(3598), + [anon_sym_abstract] = ACTIONS(3598), + [anon_sym_interface] = ACTIONS(3598), + [anon_sym_enum] = ACTIONS(3598), [sym_html_comment] = ACTIONS(5), }, - [1720] = { - [sym_comment] = STATE(1720), - [sym_identifier] = ACTIONS(3610), - [anon_sym_export] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_typeof] = ACTIONS(3610), - [anon_sym_import] = ACTIONS(3610), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_await] = ACTIONS(3610), - [anon_sym_of] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_debugger] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LTtemplate_GT] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_async] = ACTIONS(3610), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_void] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3610), - [sym_number] = ACTIONS(3610), - [sym_private_property_identifier] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [sym_super] = ACTIONS(3610), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [sym_null] = ACTIONS(3610), - [sym_undefined] = ACTIONS(3610), - [anon_sym_AT] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_readonly] = ACTIONS(3610), - [anon_sym_get] = ACTIONS(3610), - [anon_sym_set] = ACTIONS(3610), - [anon_sym_declare] = ACTIONS(3610), - [anon_sym_public] = ACTIONS(3610), - [anon_sym_private] = ACTIONS(3610), - [anon_sym_protected] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_any] = ACTIONS(3610), - [anon_sym_number] = ACTIONS(3610), - [anon_sym_boolean] = ACTIONS(3610), - [anon_sym_string] = ACTIONS(3610), - [anon_sym_symbol] = ACTIONS(3610), - [anon_sym_object] = ACTIONS(3610), - [anon_sym_property] = ACTIONS(3610), - [anon_sym_signal] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_required] = ACTIONS(3610), - [anon_sym_component] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_interface] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), + [1669] = { + [sym_comment] = STATE(1669), + [sym_identifier] = ACTIONS(3654), + [anon_sym_export] = ACTIONS(3654), + [anon_sym_type] = ACTIONS(3654), + [anon_sym_namespace] = ACTIONS(3654), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_import] = ACTIONS(3654), + [anon_sym_from] = ACTIONS(3654), + [anon_sym_with] = ACTIONS(3654), + [anon_sym_var] = ACTIONS(3654), + [anon_sym_let] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_if] = ACTIONS(3654), + [anon_sym_switch] = ACTIONS(3654), + [anon_sym_for] = ACTIONS(3654), + [anon_sym_LPAREN] = ACTIONS(3654), + [anon_sym_await] = ACTIONS(3654), + [anon_sym_of] = ACTIONS(3654), + [anon_sym_while] = ACTIONS(3654), + [anon_sym_do] = ACTIONS(3654), + [anon_sym_try] = ACTIONS(3654), + [anon_sym_break] = ACTIONS(3654), + [anon_sym_continue] = ACTIONS(3654), + [anon_sym_debugger] = ACTIONS(3654), + [anon_sym_return] = ACTIONS(3654), + [anon_sym_throw] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym_yield] = ACTIONS(3654), + [anon_sym_LBRACK] = ACTIONS(3654), + [anon_sym_LTtemplate_GT] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_class] = ACTIONS(3654), + [anon_sym_async] = ACTIONS(3654), + [anon_sym_function] = ACTIONS(3654), + [anon_sym_new] = ACTIONS(3654), + [anon_sym_using] = ACTIONS(3654), + [anon_sym_PLUS] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3654), + [anon_sym_SLASH] = ACTIONS(3654), + [anon_sym_LT] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_void] = ACTIONS(3654), + [anon_sym_delete] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3654), + [sym_number] = ACTIONS(3654), + [sym_private_property_identifier] = ACTIONS(3654), + [sym_this] = ACTIONS(3654), + [sym_super] = ACTIONS(3654), + [sym_true] = ACTIONS(3654), + [sym_false] = ACTIONS(3654), + [sym_null] = ACTIONS(3654), + [sym_undefined] = ACTIONS(3654), + [anon_sym_AT] = ACTIONS(3654), + [anon_sym_static] = ACTIONS(3654), + [anon_sym_readonly] = ACTIONS(3654), + [anon_sym_get] = ACTIONS(3654), + [anon_sym_set] = ACTIONS(3654), + [anon_sym_declare] = ACTIONS(3654), + [anon_sym_public] = ACTIONS(3654), + [anon_sym_private] = ACTIONS(3654), + [anon_sym_protected] = ACTIONS(3654), + [anon_sym_override] = ACTIONS(3654), + [anon_sym_module] = ACTIONS(3654), + [anon_sym_any] = ACTIONS(3654), + [anon_sym_number] = ACTIONS(3654), + [anon_sym_boolean] = ACTIONS(3654), + [anon_sym_string] = ACTIONS(3654), + [anon_sym_symbol] = ACTIONS(3654), + [anon_sym_object] = ACTIONS(3654), + [anon_sym_property] = ACTIONS(3654), + [anon_sym_signal] = ACTIONS(3654), + [anon_sym_on] = ACTIONS(3654), + [anon_sym_required] = ACTIONS(3654), + [anon_sym_component] = ACTIONS(3654), + [anon_sym_abstract] = ACTIONS(3654), + [anon_sym_interface] = ACTIONS(3654), + [anon_sym_enum] = ACTIONS(3654), [sym_html_comment] = ACTIONS(5), }, - [1721] = { - [sym_comment] = STATE(1721), - [sym_identifier] = ACTIONS(3610), - [anon_sym_export] = ACTIONS(3610), - [anon_sym_type] = ACTIONS(3610), - [anon_sym_namespace] = ACTIONS(3610), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_typeof] = ACTIONS(3610), - [anon_sym_import] = ACTIONS(3610), - [anon_sym_from] = ACTIONS(3610), - [anon_sym_with] = ACTIONS(3610), - [anon_sym_var] = ACTIONS(3610), - [anon_sym_let] = ACTIONS(3610), - [anon_sym_const] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3610), - [anon_sym_switch] = ACTIONS(3610), - [anon_sym_for] = ACTIONS(3610), - [anon_sym_LPAREN] = ACTIONS(3610), - [anon_sym_await] = ACTIONS(3610), - [anon_sym_of] = ACTIONS(3610), - [anon_sym_while] = ACTIONS(3610), - [anon_sym_do] = ACTIONS(3610), - [anon_sym_try] = ACTIONS(3610), - [anon_sym_break] = ACTIONS(3610), - [anon_sym_continue] = ACTIONS(3610), - [anon_sym_debugger] = ACTIONS(3610), - [anon_sym_return] = ACTIONS(3610), - [anon_sym_throw] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym_yield] = ACTIONS(3610), - [anon_sym_LBRACK] = ACTIONS(3610), - [anon_sym_LTtemplate_GT] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_class] = ACTIONS(3610), - [anon_sym_async] = ACTIONS(3610), - [anon_sym_function] = ACTIONS(3610), - [anon_sym_new] = ACTIONS(3610), - [anon_sym_using] = ACTIONS(3610), - [anon_sym_PLUS] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3610), - [anon_sym_SLASH] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_void] = ACTIONS(3610), - [anon_sym_delete] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_DASH_DASH] = ACTIONS(3610), + [1670] = { + [sym_comment] = STATE(1670), + [sym_identifier] = ACTIONS(3658), + [anon_sym_export] = ACTIONS(3658), + [anon_sym_type] = ACTIONS(3658), + [anon_sym_namespace] = ACTIONS(3658), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_typeof] = ACTIONS(3658), + [anon_sym_import] = ACTIONS(3658), + [anon_sym_from] = ACTIONS(3658), + [anon_sym_with] = ACTIONS(3658), + [anon_sym_var] = ACTIONS(3658), + [anon_sym_let] = ACTIONS(3658), + [anon_sym_const] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_if] = ACTIONS(3658), + [anon_sym_switch] = ACTIONS(3658), + [anon_sym_for] = ACTIONS(3658), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_await] = ACTIONS(3658), + [anon_sym_of] = ACTIONS(3658), + [anon_sym_while] = ACTIONS(3658), + [anon_sym_do] = ACTIONS(3658), + [anon_sym_try] = ACTIONS(3658), + [anon_sym_break] = ACTIONS(3658), + [anon_sym_continue] = ACTIONS(3658), + [anon_sym_debugger] = ACTIONS(3658), + [anon_sym_return] = ACTIONS(3658), + [anon_sym_throw] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym_yield] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3658), + [anon_sym_LTtemplate_GT] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_class] = ACTIONS(3658), + [anon_sym_async] = ACTIONS(3658), + [anon_sym_function] = ACTIONS(3658), + [anon_sym_new] = ACTIONS(3658), + [anon_sym_using] = ACTIONS(3658), + [anon_sym_PLUS] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3658), + [anon_sym_SLASH] = ACTIONS(3658), + [anon_sym_LT] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_void] = ACTIONS(3658), + [anon_sym_delete] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_DASH_DASH] = ACTIONS(3658), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3610), - [sym_number] = ACTIONS(3610), - [sym_private_property_identifier] = ACTIONS(3610), - [sym_this] = ACTIONS(3610), - [sym_super] = ACTIONS(3610), - [sym_true] = ACTIONS(3610), - [sym_false] = ACTIONS(3610), - [sym_null] = ACTIONS(3610), - [sym_undefined] = ACTIONS(3610), - [anon_sym_AT] = ACTIONS(3610), - [anon_sym_static] = ACTIONS(3610), - [anon_sym_readonly] = ACTIONS(3610), - [anon_sym_get] = ACTIONS(3610), - [anon_sym_set] = ACTIONS(3610), - [anon_sym_declare] = ACTIONS(3610), - [anon_sym_public] = ACTIONS(3610), - [anon_sym_private] = ACTIONS(3610), - [anon_sym_protected] = ACTIONS(3610), - [anon_sym_override] = ACTIONS(3610), - [anon_sym_module] = ACTIONS(3610), - [anon_sym_any] = ACTIONS(3610), - [anon_sym_number] = ACTIONS(3610), - [anon_sym_boolean] = ACTIONS(3610), - [anon_sym_string] = ACTIONS(3610), - [anon_sym_symbol] = ACTIONS(3610), - [anon_sym_object] = ACTIONS(3610), - [anon_sym_property] = ACTIONS(3610), - [anon_sym_signal] = ACTIONS(3610), - [anon_sym_on] = ACTIONS(3610), - [anon_sym_required] = ACTIONS(3610), - [anon_sym_component] = ACTIONS(3610), - [anon_sym_abstract] = ACTIONS(3610), - [anon_sym_interface] = ACTIONS(3610), - [anon_sym_enum] = ACTIONS(3610), + [anon_sym_BQUOTE] = ACTIONS(3658), + [sym_number] = ACTIONS(3658), + [sym_private_property_identifier] = ACTIONS(3658), + [sym_this] = ACTIONS(3658), + [sym_super] = ACTIONS(3658), + [sym_true] = ACTIONS(3658), + [sym_false] = ACTIONS(3658), + [sym_null] = ACTIONS(3658), + [sym_undefined] = ACTIONS(3658), + [anon_sym_AT] = ACTIONS(3658), + [anon_sym_static] = ACTIONS(3658), + [anon_sym_readonly] = ACTIONS(3658), + [anon_sym_get] = ACTIONS(3658), + [anon_sym_set] = ACTIONS(3658), + [anon_sym_declare] = ACTIONS(3658), + [anon_sym_public] = ACTIONS(3658), + [anon_sym_private] = ACTIONS(3658), + [anon_sym_protected] = ACTIONS(3658), + [anon_sym_override] = ACTIONS(3658), + [anon_sym_module] = ACTIONS(3658), + [anon_sym_any] = ACTIONS(3658), + [anon_sym_number] = ACTIONS(3658), + [anon_sym_boolean] = ACTIONS(3658), + [anon_sym_string] = ACTIONS(3658), + [anon_sym_symbol] = ACTIONS(3658), + [anon_sym_object] = ACTIONS(3658), + [anon_sym_property] = ACTIONS(3658), + [anon_sym_signal] = ACTIONS(3658), + [anon_sym_on] = ACTIONS(3658), + [anon_sym_required] = ACTIONS(3658), + [anon_sym_component] = ACTIONS(3658), + [anon_sym_abstract] = ACTIONS(3658), + [anon_sym_interface] = ACTIONS(3658), + [anon_sym_enum] = ACTIONS(3658), [sym_html_comment] = ACTIONS(5), }, - [1722] = { - [sym_comment] = STATE(1722), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1671] = { + [sym_comment] = STATE(1671), + [sym_identifier] = ACTIONS(3618), + [anon_sym_export] = ACTIONS(3618), + [anon_sym_type] = ACTIONS(3618), + [anon_sym_namespace] = ACTIONS(3618), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_typeof] = ACTIONS(3618), + [anon_sym_import] = ACTIONS(3618), + [anon_sym_from] = ACTIONS(3618), + [anon_sym_with] = ACTIONS(3618), + [anon_sym_var] = ACTIONS(3618), + [anon_sym_let] = ACTIONS(3618), + [anon_sym_const] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_if] = ACTIONS(3618), + [anon_sym_switch] = ACTIONS(3618), + [anon_sym_for] = ACTIONS(3618), + [anon_sym_LPAREN] = ACTIONS(3618), + [anon_sym_await] = ACTIONS(3618), + [anon_sym_of] = ACTIONS(3618), + [anon_sym_while] = ACTIONS(3618), + [anon_sym_do] = ACTIONS(3618), + [anon_sym_try] = ACTIONS(3618), + [anon_sym_break] = ACTIONS(3618), + [anon_sym_continue] = ACTIONS(3618), + [anon_sym_debugger] = ACTIONS(3618), + [anon_sym_return] = ACTIONS(3618), + [anon_sym_throw] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym_yield] = ACTIONS(3618), + [anon_sym_LBRACK] = ACTIONS(3618), + [anon_sym_LTtemplate_GT] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_class] = ACTIONS(3618), + [anon_sym_async] = ACTIONS(3618), + [anon_sym_function] = ACTIONS(3618), + [anon_sym_new] = ACTIONS(3618), + [anon_sym_using] = ACTIONS(3618), + [anon_sym_PLUS] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3618), + [anon_sym_SLASH] = ACTIONS(3618), + [anon_sym_LT] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_void] = ACTIONS(3618), + [anon_sym_delete] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_DASH_DASH] = ACTIONS(3618), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3618), + [sym_number] = ACTIONS(3618), + [sym_private_property_identifier] = ACTIONS(3618), + [sym_this] = ACTIONS(3618), + [sym_super] = ACTIONS(3618), + [sym_true] = ACTIONS(3618), + [sym_false] = ACTIONS(3618), + [sym_null] = ACTIONS(3618), + [sym_undefined] = ACTIONS(3618), + [anon_sym_AT] = ACTIONS(3618), + [anon_sym_static] = ACTIONS(3618), + [anon_sym_readonly] = ACTIONS(3618), + [anon_sym_get] = ACTIONS(3618), + [anon_sym_set] = ACTIONS(3618), + [anon_sym_declare] = ACTIONS(3618), + [anon_sym_public] = ACTIONS(3618), + [anon_sym_private] = ACTIONS(3618), + [anon_sym_protected] = ACTIONS(3618), + [anon_sym_override] = ACTIONS(3618), + [anon_sym_module] = ACTIONS(3618), + [anon_sym_any] = ACTIONS(3618), + [anon_sym_number] = ACTIONS(3618), + [anon_sym_boolean] = ACTIONS(3618), + [anon_sym_string] = ACTIONS(3618), + [anon_sym_symbol] = ACTIONS(3618), + [anon_sym_object] = ACTIONS(3618), + [anon_sym_property] = ACTIONS(3618), + [anon_sym_signal] = ACTIONS(3618), + [anon_sym_on] = ACTIONS(3618), + [anon_sym_required] = ACTIONS(3618), + [anon_sym_component] = ACTIONS(3618), + [anon_sym_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), [sym_html_comment] = ACTIONS(5), }, - [1723] = { - [sym_comment] = STATE(1723), - [sym_identifier] = ACTIONS(3608), - [anon_sym_export] = ACTIONS(3608), - [anon_sym_type] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3608), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_typeof] = ACTIONS(3608), - [anon_sym_import] = ACTIONS(3608), - [anon_sym_from] = ACTIONS(3608), - [anon_sym_with] = ACTIONS(3608), - [anon_sym_var] = ACTIONS(3608), - [anon_sym_let] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_BANG] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_LPAREN] = ACTIONS(3608), - [anon_sym_await] = ACTIONS(3608), - [anon_sym_of] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_debugger] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3608), - [anon_sym_yield] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_LTtemplate_GT] = ACTIONS(3608), - [anon_sym_DQUOTE] = ACTIONS(3608), - [anon_sym_SQUOTE] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_async] = ACTIONS(3608), - [anon_sym_function] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_SLASH] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_TILDE] = ACTIONS(3608), - [anon_sym_void] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_PLUS_PLUS] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3608), + [1672] = { + [sym_comment] = STATE(1672), + [sym_identifier] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_type] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_RBRACE] = ACTIONS(3514), + [anon_sym_typeof] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_from] = ACTIONS(3514), + [anon_sym_with] = ACTIONS(3514), + [anon_sym_var] = ACTIONS(3514), + [anon_sym_let] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_await] = ACTIONS(3514), + [anon_sym_of] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_debugger] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3514), + [anon_sym_yield] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_LTtemplate_GT] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(3514), + [anon_sym_SQUOTE] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_async] = ACTIONS(3514), + [anon_sym_function] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3514), + [anon_sym_void] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3514), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3608), - [sym_number] = ACTIONS(3608), - [sym_private_property_identifier] = ACTIONS(3608), - [sym_this] = ACTIONS(3608), - [sym_super] = ACTIONS(3608), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [sym_null] = ACTIONS(3608), - [sym_undefined] = ACTIONS(3608), - [anon_sym_AT] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_readonly] = ACTIONS(3608), - [anon_sym_get] = ACTIONS(3608), - [anon_sym_set] = ACTIONS(3608), - [anon_sym_declare] = ACTIONS(3608), - [anon_sym_public] = ACTIONS(3608), - [anon_sym_private] = ACTIONS(3608), - [anon_sym_protected] = ACTIONS(3608), - [anon_sym_override] = ACTIONS(3608), - [anon_sym_module] = ACTIONS(3608), - [anon_sym_any] = ACTIONS(3608), - [anon_sym_number] = ACTIONS(3608), - [anon_sym_boolean] = ACTIONS(3608), - [anon_sym_string] = ACTIONS(3608), - [anon_sym_symbol] = ACTIONS(3608), - [anon_sym_object] = ACTIONS(3608), - [anon_sym_property] = ACTIONS(3608), - [anon_sym_signal] = ACTIONS(3608), - [anon_sym_on] = ACTIONS(3608), - [anon_sym_required] = ACTIONS(3608), - [anon_sym_component] = ACTIONS(3608), - [anon_sym_abstract] = ACTIONS(3608), - [anon_sym_interface] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), + [anon_sym_BQUOTE] = ACTIONS(3514), + [sym_number] = ACTIONS(3514), + [sym_private_property_identifier] = ACTIONS(3514), + [sym_this] = ACTIONS(3514), + [sym_super] = ACTIONS(3514), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [sym_null] = ACTIONS(3514), + [sym_undefined] = ACTIONS(3514), + [anon_sym_AT] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_readonly] = ACTIONS(3514), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3514), + [anon_sym_declare] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_override] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_any] = ACTIONS(3514), + [anon_sym_number] = ACTIONS(3514), + [anon_sym_boolean] = ACTIONS(3514), + [anon_sym_string] = ACTIONS(3514), + [anon_sym_symbol] = ACTIONS(3514), + [anon_sym_object] = ACTIONS(3514), + [anon_sym_property] = ACTIONS(3514), + [anon_sym_signal] = ACTIONS(3514), + [anon_sym_on] = ACTIONS(3514), + [anon_sym_required] = ACTIONS(3514), + [anon_sym_component] = ACTIONS(3514), + [anon_sym_abstract] = ACTIONS(3514), + [anon_sym_interface] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), [sym_html_comment] = ACTIONS(5), }, - [1724] = { - [sym_comment] = STATE(1724), - [sym_identifier] = ACTIONS(3606), - [anon_sym_export] = ACTIONS(3606), - [anon_sym_type] = ACTIONS(3606), - [anon_sym_namespace] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_RBRACE] = ACTIONS(3606), - [anon_sym_typeof] = ACTIONS(3606), - [anon_sym_import] = ACTIONS(3606), - [anon_sym_from] = ACTIONS(3606), - [anon_sym_with] = ACTIONS(3606), - [anon_sym_var] = ACTIONS(3606), - [anon_sym_let] = ACTIONS(3606), - [anon_sym_const] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_if] = ACTIONS(3606), - [anon_sym_switch] = ACTIONS(3606), - [anon_sym_for] = ACTIONS(3606), - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_await] = ACTIONS(3606), - [anon_sym_of] = ACTIONS(3606), - [anon_sym_while] = ACTIONS(3606), - [anon_sym_do] = ACTIONS(3606), - [anon_sym_try] = ACTIONS(3606), - [anon_sym_break] = ACTIONS(3606), - [anon_sym_continue] = ACTIONS(3606), - [anon_sym_debugger] = ACTIONS(3606), - [anon_sym_return] = ACTIONS(3606), - [anon_sym_throw] = ACTIONS(3606), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym_yield] = ACTIONS(3606), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_LTtemplate_GT] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [anon_sym_SQUOTE] = ACTIONS(3606), - [anon_sym_class] = ACTIONS(3606), - [anon_sym_async] = ACTIONS(3606), - [anon_sym_function] = ACTIONS(3606), - [anon_sym_new] = ACTIONS(3606), - [anon_sym_using] = ACTIONS(3606), - [anon_sym_PLUS] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3606), - [anon_sym_SLASH] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_void] = ACTIONS(3606), - [anon_sym_delete] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_DASH_DASH] = ACTIONS(3606), + [1673] = { + [sym_comment] = STATE(1673), + [sym_identifier] = ACTIONS(3590), + [anon_sym_export] = ACTIONS(3590), + [anon_sym_type] = ACTIONS(3590), + [anon_sym_namespace] = ACTIONS(3590), + [anon_sym_LBRACE] = ACTIONS(3590), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_typeof] = ACTIONS(3590), + [anon_sym_import] = ACTIONS(3590), + [anon_sym_from] = ACTIONS(3590), + [anon_sym_with] = ACTIONS(3590), + [anon_sym_var] = ACTIONS(3590), + [anon_sym_let] = ACTIONS(3590), + [anon_sym_const] = ACTIONS(3590), + [anon_sym_BANG] = ACTIONS(3590), + [anon_sym_if] = ACTIONS(3590), + [anon_sym_switch] = ACTIONS(3590), + [anon_sym_for] = ACTIONS(3590), + [anon_sym_LPAREN] = ACTIONS(3590), + [anon_sym_await] = ACTIONS(3590), + [anon_sym_of] = ACTIONS(3590), + [anon_sym_while] = ACTIONS(3590), + [anon_sym_do] = ACTIONS(3590), + [anon_sym_try] = ACTIONS(3590), + [anon_sym_break] = ACTIONS(3590), + [anon_sym_continue] = ACTIONS(3590), + [anon_sym_debugger] = ACTIONS(3590), + [anon_sym_return] = ACTIONS(3590), + [anon_sym_throw] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_yield] = ACTIONS(3590), + [anon_sym_LBRACK] = ACTIONS(3590), + [anon_sym_LTtemplate_GT] = ACTIONS(3590), + [anon_sym_DQUOTE] = ACTIONS(3590), + [anon_sym_SQUOTE] = ACTIONS(3590), + [anon_sym_class] = ACTIONS(3590), + [anon_sym_async] = ACTIONS(3590), + [anon_sym_function] = ACTIONS(3590), + [anon_sym_new] = ACTIONS(3590), + [anon_sym_using] = ACTIONS(3590), + [anon_sym_PLUS] = ACTIONS(3590), + [anon_sym_DASH] = ACTIONS(3590), + [anon_sym_SLASH] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(3590), + [anon_sym_TILDE] = ACTIONS(3590), + [anon_sym_void] = ACTIONS(3590), + [anon_sym_delete] = ACTIONS(3590), + [anon_sym_PLUS_PLUS] = ACTIONS(3590), + [anon_sym_DASH_DASH] = ACTIONS(3590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3606), - [sym_number] = ACTIONS(3606), - [sym_private_property_identifier] = ACTIONS(3606), - [sym_this] = ACTIONS(3606), - [sym_super] = ACTIONS(3606), - [sym_true] = ACTIONS(3606), - [sym_false] = ACTIONS(3606), - [sym_null] = ACTIONS(3606), - [sym_undefined] = ACTIONS(3606), - [anon_sym_AT] = ACTIONS(3606), - [anon_sym_static] = ACTIONS(3606), - [anon_sym_readonly] = ACTIONS(3606), - [anon_sym_get] = ACTIONS(3606), - [anon_sym_set] = ACTIONS(3606), - [anon_sym_declare] = ACTIONS(3606), - [anon_sym_public] = ACTIONS(3606), - [anon_sym_private] = ACTIONS(3606), - [anon_sym_protected] = ACTIONS(3606), - [anon_sym_override] = ACTIONS(3606), - [anon_sym_module] = ACTIONS(3606), - [anon_sym_any] = ACTIONS(3606), - [anon_sym_number] = ACTIONS(3606), - [anon_sym_boolean] = ACTIONS(3606), - [anon_sym_string] = ACTIONS(3606), - [anon_sym_symbol] = ACTIONS(3606), - [anon_sym_object] = ACTIONS(3606), - [anon_sym_property] = ACTIONS(3606), - [anon_sym_signal] = ACTIONS(3606), - [anon_sym_on] = ACTIONS(3606), - [anon_sym_required] = ACTIONS(3606), - [anon_sym_component] = ACTIONS(3606), - [anon_sym_abstract] = ACTIONS(3606), - [anon_sym_interface] = ACTIONS(3606), - [anon_sym_enum] = ACTIONS(3606), + [anon_sym_BQUOTE] = ACTIONS(3590), + [sym_number] = ACTIONS(3590), + [sym_private_property_identifier] = ACTIONS(3590), + [sym_this] = ACTIONS(3590), + [sym_super] = ACTIONS(3590), + [sym_true] = ACTIONS(3590), + [sym_false] = ACTIONS(3590), + [sym_null] = ACTIONS(3590), + [sym_undefined] = ACTIONS(3590), + [anon_sym_AT] = ACTIONS(3590), + [anon_sym_static] = ACTIONS(3590), + [anon_sym_readonly] = ACTIONS(3590), + [anon_sym_get] = ACTIONS(3590), + [anon_sym_set] = ACTIONS(3590), + [anon_sym_declare] = ACTIONS(3590), + [anon_sym_public] = ACTIONS(3590), + [anon_sym_private] = ACTIONS(3590), + [anon_sym_protected] = ACTIONS(3590), + [anon_sym_override] = ACTIONS(3590), + [anon_sym_module] = ACTIONS(3590), + [anon_sym_any] = ACTIONS(3590), + [anon_sym_number] = ACTIONS(3590), + [anon_sym_boolean] = ACTIONS(3590), + [anon_sym_string] = ACTIONS(3590), + [anon_sym_symbol] = ACTIONS(3590), + [anon_sym_object] = ACTIONS(3590), + [anon_sym_property] = ACTIONS(3590), + [anon_sym_signal] = ACTIONS(3590), + [anon_sym_on] = ACTIONS(3590), + [anon_sym_required] = ACTIONS(3590), + [anon_sym_component] = ACTIONS(3590), + [anon_sym_abstract] = ACTIONS(3590), + [anon_sym_interface] = ACTIONS(3590), + [anon_sym_enum] = ACTIONS(3590), [sym_html_comment] = ACTIONS(5), }, - [1725] = { - [sym_comment] = STATE(1725), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), + [1674] = { + [sym_comment] = STATE(1674), + [sym_identifier] = ACTIONS(3546), + [anon_sym_export] = ACTIONS(3546), + [anon_sym_type] = ACTIONS(3546), + [anon_sym_namespace] = ACTIONS(3546), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_typeof] = ACTIONS(3546), + [anon_sym_import] = ACTIONS(3546), + [anon_sym_from] = ACTIONS(3546), + [anon_sym_with] = ACTIONS(3546), + [anon_sym_var] = ACTIONS(3546), + [anon_sym_let] = ACTIONS(3546), + [anon_sym_const] = ACTIONS(3546), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_if] = ACTIONS(3546), + [anon_sym_switch] = ACTIONS(3546), + [anon_sym_for] = ACTIONS(3546), + [anon_sym_LPAREN] = ACTIONS(3546), + [anon_sym_await] = ACTIONS(3546), + [anon_sym_of] = ACTIONS(3546), + [anon_sym_while] = ACTIONS(3546), + [anon_sym_do] = ACTIONS(3546), + [anon_sym_try] = ACTIONS(3546), + [anon_sym_break] = ACTIONS(3546), + [anon_sym_continue] = ACTIONS(3546), + [anon_sym_debugger] = ACTIONS(3546), + [anon_sym_return] = ACTIONS(3546), + [anon_sym_throw] = ACTIONS(3546), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3546), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_LTtemplate_GT] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [anon_sym_class] = ACTIONS(3546), + [anon_sym_async] = ACTIONS(3546), + [anon_sym_function] = ACTIONS(3546), + [anon_sym_new] = ACTIONS(3546), + [anon_sym_using] = ACTIONS(3546), + [anon_sym_PLUS] = ACTIONS(3546), + [anon_sym_DASH] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_void] = ACTIONS(3546), + [anon_sym_delete] = ACTIONS(3546), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), + [anon_sym_BQUOTE] = ACTIONS(3546), + [sym_number] = ACTIONS(3546), + [sym_private_property_identifier] = ACTIONS(3546), + [sym_this] = ACTIONS(3546), + [sym_super] = ACTIONS(3546), + [sym_true] = ACTIONS(3546), + [sym_false] = ACTIONS(3546), + [sym_null] = ACTIONS(3546), + [sym_undefined] = ACTIONS(3546), + [anon_sym_AT] = ACTIONS(3546), + [anon_sym_static] = ACTIONS(3546), + [anon_sym_readonly] = ACTIONS(3546), + [anon_sym_get] = ACTIONS(3546), + [anon_sym_set] = ACTIONS(3546), + [anon_sym_declare] = ACTIONS(3546), + [anon_sym_public] = ACTIONS(3546), + [anon_sym_private] = ACTIONS(3546), + [anon_sym_protected] = ACTIONS(3546), + [anon_sym_override] = ACTIONS(3546), + [anon_sym_module] = ACTIONS(3546), + [anon_sym_any] = ACTIONS(3546), + [anon_sym_number] = ACTIONS(3546), + [anon_sym_boolean] = ACTIONS(3546), + [anon_sym_string] = ACTIONS(3546), + [anon_sym_symbol] = ACTIONS(3546), + [anon_sym_object] = ACTIONS(3546), + [anon_sym_property] = ACTIONS(3546), + [anon_sym_signal] = ACTIONS(3546), + [anon_sym_on] = ACTIONS(3546), + [anon_sym_required] = ACTIONS(3546), + [anon_sym_component] = ACTIONS(3546), + [anon_sym_abstract] = ACTIONS(3546), + [anon_sym_interface] = ACTIONS(3546), + [anon_sym_enum] = ACTIONS(3546), [sym_html_comment] = ACTIONS(5), }, - [1726] = { - [sym_comment] = STATE(1726), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1727] = { - [sym_comment] = STATE(1727), - [sym_identifier] = ACTIONS(3614), - [anon_sym_export] = ACTIONS(3614), - [anon_sym_type] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3614), - [anon_sym_RBRACE] = ACTIONS(3614), - [anon_sym_typeof] = ACTIONS(3614), - [anon_sym_import] = ACTIONS(3614), - [anon_sym_from] = ACTIONS(3614), - [anon_sym_with] = ACTIONS(3614), - [anon_sym_var] = ACTIONS(3614), - [anon_sym_let] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_BANG] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_LPAREN] = ACTIONS(3614), - [anon_sym_await] = ACTIONS(3614), - [anon_sym_of] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_debugger] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3614), - [anon_sym_yield] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_LTtemplate_GT] = ACTIONS(3614), - [anon_sym_DQUOTE] = ACTIONS(3614), - [anon_sym_SQUOTE] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_async] = ACTIONS(3614), - [anon_sym_function] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_SLASH] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(3614), - [anon_sym_TILDE] = ACTIONS(3614), - [anon_sym_void] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_PLUS_PLUS] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3614), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3614), - [sym_number] = ACTIONS(3614), - [sym_private_property_identifier] = ACTIONS(3614), - [sym_this] = ACTIONS(3614), - [sym_super] = ACTIONS(3614), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [sym_null] = ACTIONS(3614), - [sym_undefined] = ACTIONS(3614), - [anon_sym_AT] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_readonly] = ACTIONS(3614), - [anon_sym_get] = ACTIONS(3614), - [anon_sym_set] = ACTIONS(3614), - [anon_sym_declare] = ACTIONS(3614), - [anon_sym_public] = ACTIONS(3614), - [anon_sym_private] = ACTIONS(3614), - [anon_sym_protected] = ACTIONS(3614), - [anon_sym_override] = ACTIONS(3614), - [anon_sym_module] = ACTIONS(3614), - [anon_sym_any] = ACTIONS(3614), - [anon_sym_number] = ACTIONS(3614), - [anon_sym_boolean] = ACTIONS(3614), - [anon_sym_string] = ACTIONS(3614), - [anon_sym_symbol] = ACTIONS(3614), - [anon_sym_object] = ACTIONS(3614), - [anon_sym_property] = ACTIONS(3614), - [anon_sym_signal] = ACTIONS(3614), - [anon_sym_on] = ACTIONS(3614), - [anon_sym_required] = ACTIONS(3614), - [anon_sym_component] = ACTIONS(3614), - [anon_sym_abstract] = ACTIONS(3614), - [anon_sym_interface] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [sym_html_comment] = ACTIONS(5), - }, - [1728] = { - [sym_comment] = STATE(1728), - [sym_identifier] = ACTIONS(3594), - [anon_sym_export] = ACTIONS(3594), - [anon_sym_type] = ACTIONS(3594), - [anon_sym_namespace] = ACTIONS(3594), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_RBRACE] = ACTIONS(3594), - [anon_sym_typeof] = ACTIONS(3594), - [anon_sym_import] = ACTIONS(3594), - [anon_sym_from] = ACTIONS(3594), - [anon_sym_with] = ACTIONS(3594), - [anon_sym_var] = ACTIONS(3594), - [anon_sym_let] = ACTIONS(3594), - [anon_sym_const] = ACTIONS(3594), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_if] = ACTIONS(3594), - [anon_sym_switch] = ACTIONS(3594), - [anon_sym_for] = ACTIONS(3594), - [anon_sym_LPAREN] = ACTIONS(3594), - [anon_sym_await] = ACTIONS(3594), - [anon_sym_of] = ACTIONS(3594), - [anon_sym_while] = ACTIONS(3594), - [anon_sym_do] = ACTIONS(3594), - [anon_sym_try] = ACTIONS(3594), - [anon_sym_break] = ACTIONS(3594), - [anon_sym_continue] = ACTIONS(3594), - [anon_sym_debugger] = ACTIONS(3594), - [anon_sym_return] = ACTIONS(3594), - [anon_sym_throw] = ACTIONS(3594), - [anon_sym_SEMI] = ACTIONS(3594), - [anon_sym_yield] = ACTIONS(3594), - [anon_sym_LBRACK] = ACTIONS(3594), - [anon_sym_LTtemplate_GT] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [anon_sym_SQUOTE] = ACTIONS(3594), - [anon_sym_class] = ACTIONS(3594), - [anon_sym_async] = ACTIONS(3594), - [anon_sym_function] = ACTIONS(3594), - [anon_sym_new] = ACTIONS(3594), - [anon_sym_using] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_SLASH] = ACTIONS(3594), - [anon_sym_LT] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3594), - [anon_sym_void] = ACTIONS(3594), - [anon_sym_delete] = ACTIONS(3594), - [anon_sym_PLUS_PLUS] = ACTIONS(3594), - [anon_sym_DASH_DASH] = ACTIONS(3594), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3594), - [sym_number] = ACTIONS(3594), - [sym_private_property_identifier] = ACTIONS(3594), - [sym_this] = ACTIONS(3594), - [sym_super] = ACTIONS(3594), - [sym_true] = ACTIONS(3594), - [sym_false] = ACTIONS(3594), - [sym_null] = ACTIONS(3594), - [sym_undefined] = ACTIONS(3594), - [anon_sym_AT] = ACTIONS(3594), - [anon_sym_static] = ACTIONS(3594), - [anon_sym_readonly] = ACTIONS(3594), - [anon_sym_get] = ACTIONS(3594), - [anon_sym_set] = ACTIONS(3594), - [anon_sym_declare] = ACTIONS(3594), - [anon_sym_public] = ACTIONS(3594), - [anon_sym_private] = ACTIONS(3594), - [anon_sym_protected] = ACTIONS(3594), - [anon_sym_override] = ACTIONS(3594), - [anon_sym_module] = ACTIONS(3594), - [anon_sym_any] = ACTIONS(3594), - [anon_sym_number] = ACTIONS(3594), - [anon_sym_boolean] = ACTIONS(3594), - [anon_sym_string] = ACTIONS(3594), - [anon_sym_symbol] = ACTIONS(3594), - [anon_sym_object] = ACTIONS(3594), - [anon_sym_property] = ACTIONS(3594), - [anon_sym_signal] = ACTIONS(3594), - [anon_sym_on] = ACTIONS(3594), - [anon_sym_required] = ACTIONS(3594), - [anon_sym_component] = ACTIONS(3594), - [anon_sym_abstract] = ACTIONS(3594), - [anon_sym_interface] = ACTIONS(3594), - [anon_sym_enum] = ACTIONS(3594), - [sym_html_comment] = ACTIONS(5), - }, - [1729] = { - [sym_comment] = STATE(1729), - [sym_identifier] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_type] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3576), - [anon_sym_RBRACE] = ACTIONS(3576), - [anon_sym_typeof] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_from] = ACTIONS(3576), - [anon_sym_with] = ACTIONS(3576), - [anon_sym_var] = ACTIONS(3576), - [anon_sym_let] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_BANG] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_LPAREN] = ACTIONS(3576), - [anon_sym_await] = ACTIONS(3576), - [anon_sym_of] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_debugger] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3576), - [anon_sym_yield] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_LTtemplate_GT] = ACTIONS(3576), - [anon_sym_DQUOTE] = ACTIONS(3576), - [anon_sym_SQUOTE] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_async] = ACTIONS(3576), - [anon_sym_function] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_SLASH] = ACTIONS(3576), - [anon_sym_LT] = ACTIONS(3576), - [anon_sym_TILDE] = ACTIONS(3576), - [anon_sym_void] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_PLUS_PLUS] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3576), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3576), - [sym_number] = ACTIONS(3576), - [sym_private_property_identifier] = ACTIONS(3576), - [sym_this] = ACTIONS(3576), - [sym_super] = ACTIONS(3576), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [sym_null] = ACTIONS(3576), - [sym_undefined] = ACTIONS(3576), - [anon_sym_AT] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_readonly] = ACTIONS(3576), - [anon_sym_get] = ACTIONS(3576), - [anon_sym_set] = ACTIONS(3576), - [anon_sym_declare] = ACTIONS(3576), - [anon_sym_public] = ACTIONS(3576), - [anon_sym_private] = ACTIONS(3576), - [anon_sym_protected] = ACTIONS(3576), - [anon_sym_override] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_any] = ACTIONS(3576), - [anon_sym_number] = ACTIONS(3576), - [anon_sym_boolean] = ACTIONS(3576), - [anon_sym_string] = ACTIONS(3576), - [anon_sym_symbol] = ACTIONS(3576), - [anon_sym_object] = ACTIONS(3576), - [anon_sym_property] = ACTIONS(3576), - [anon_sym_signal] = ACTIONS(3576), - [anon_sym_on] = ACTIONS(3576), - [anon_sym_required] = ACTIONS(3576), - [anon_sym_component] = ACTIONS(3576), - [anon_sym_abstract] = ACTIONS(3576), - [anon_sym_interface] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [sym_html_comment] = ACTIONS(5), - }, - [1730] = { - [sym_comment] = STATE(1730), - [sym_identifier] = ACTIONS(3694), - [anon_sym_export] = ACTIONS(3694), - [anon_sym_type] = ACTIONS(3694), - [anon_sym_namespace] = ACTIONS(3694), - [anon_sym_LBRACE] = ACTIONS(3694), - [anon_sym_RBRACE] = ACTIONS(3694), - [anon_sym_typeof] = ACTIONS(3694), - [anon_sym_import] = ACTIONS(3694), - [anon_sym_from] = ACTIONS(3694), - [anon_sym_with] = ACTIONS(3694), - [anon_sym_var] = ACTIONS(3694), - [anon_sym_let] = ACTIONS(3694), - [anon_sym_const] = ACTIONS(3694), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_if] = ACTIONS(3694), - [anon_sym_switch] = ACTIONS(3694), - [anon_sym_for] = ACTIONS(3694), - [anon_sym_LPAREN] = ACTIONS(3694), - [anon_sym_await] = ACTIONS(3694), - [anon_sym_of] = ACTIONS(3694), - [anon_sym_while] = ACTIONS(3694), - [anon_sym_do] = ACTIONS(3694), - [anon_sym_try] = ACTIONS(3694), - [anon_sym_break] = ACTIONS(3694), - [anon_sym_continue] = ACTIONS(3694), - [anon_sym_debugger] = ACTIONS(3694), - [anon_sym_return] = ACTIONS(3694), - [anon_sym_throw] = ACTIONS(3694), - [anon_sym_SEMI] = ACTIONS(3694), - [anon_sym_yield] = ACTIONS(3694), - [anon_sym_LBRACK] = ACTIONS(3694), - [anon_sym_LTtemplate_GT] = ACTIONS(3694), - [anon_sym_DQUOTE] = ACTIONS(3694), - [anon_sym_SQUOTE] = ACTIONS(3694), - [anon_sym_class] = ACTIONS(3694), - [anon_sym_async] = ACTIONS(3694), - [anon_sym_function] = ACTIONS(3694), - [anon_sym_new] = ACTIONS(3694), - [anon_sym_using] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_SLASH] = ACTIONS(3694), - [anon_sym_LT] = ACTIONS(3694), - [anon_sym_TILDE] = ACTIONS(3694), - [anon_sym_void] = ACTIONS(3694), - [anon_sym_delete] = ACTIONS(3694), - [anon_sym_PLUS_PLUS] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3694), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3694), - [sym_number] = ACTIONS(3694), - [sym_private_property_identifier] = ACTIONS(3694), - [sym_this] = ACTIONS(3694), - [sym_super] = ACTIONS(3694), - [sym_true] = ACTIONS(3694), - [sym_false] = ACTIONS(3694), - [sym_null] = ACTIONS(3694), - [sym_undefined] = ACTIONS(3694), - [anon_sym_AT] = ACTIONS(3694), - [anon_sym_static] = ACTIONS(3694), - [anon_sym_readonly] = ACTIONS(3694), - [anon_sym_get] = ACTIONS(3694), - [anon_sym_set] = ACTIONS(3694), - [anon_sym_declare] = ACTIONS(3694), - [anon_sym_public] = ACTIONS(3694), - [anon_sym_private] = ACTIONS(3694), - [anon_sym_protected] = ACTIONS(3694), - [anon_sym_override] = ACTIONS(3694), - [anon_sym_module] = ACTIONS(3694), - [anon_sym_any] = ACTIONS(3694), - [anon_sym_number] = ACTIONS(3694), - [anon_sym_boolean] = ACTIONS(3694), - [anon_sym_string] = ACTIONS(3694), - [anon_sym_symbol] = ACTIONS(3694), - [anon_sym_object] = ACTIONS(3694), - [anon_sym_property] = ACTIONS(3694), - [anon_sym_signal] = ACTIONS(3694), - [anon_sym_on] = ACTIONS(3694), - [anon_sym_required] = ACTIONS(3694), - [anon_sym_component] = ACTIONS(3694), - [anon_sym_abstract] = ACTIONS(3694), - [anon_sym_interface] = ACTIONS(3694), - [anon_sym_enum] = ACTIONS(3694), - [sym_html_comment] = ACTIONS(5), - }, - [1731] = { - [sym_comment] = STATE(1731), - [sym_identifier] = ACTIONS(3640), - [anon_sym_export] = ACTIONS(3640), - [anon_sym_type] = ACTIONS(3640), - [anon_sym_namespace] = ACTIONS(3640), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_RBRACE] = ACTIONS(3640), - [anon_sym_typeof] = ACTIONS(3640), - [anon_sym_import] = ACTIONS(3640), - [anon_sym_from] = ACTIONS(3640), - [anon_sym_with] = ACTIONS(3640), - [anon_sym_var] = ACTIONS(3640), - [anon_sym_let] = ACTIONS(3640), - [anon_sym_const] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_if] = ACTIONS(3640), - [anon_sym_switch] = ACTIONS(3640), - [anon_sym_for] = ACTIONS(3640), - [anon_sym_LPAREN] = ACTIONS(3640), - [anon_sym_await] = ACTIONS(3640), - [anon_sym_of] = ACTIONS(3640), - [anon_sym_while] = ACTIONS(3640), - [anon_sym_do] = ACTIONS(3640), - [anon_sym_try] = ACTIONS(3640), - [anon_sym_break] = ACTIONS(3640), - [anon_sym_continue] = ACTIONS(3640), - [anon_sym_debugger] = ACTIONS(3640), - [anon_sym_return] = ACTIONS(3640), - [anon_sym_throw] = ACTIONS(3640), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym_yield] = ACTIONS(3640), - [anon_sym_LBRACK] = ACTIONS(3640), - [anon_sym_LTtemplate_GT] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_class] = ACTIONS(3640), - [anon_sym_async] = ACTIONS(3640), - [anon_sym_function] = ACTIONS(3640), - [anon_sym_new] = ACTIONS(3640), - [anon_sym_using] = ACTIONS(3640), - [anon_sym_PLUS] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3640), - [anon_sym_SLASH] = ACTIONS(3640), - [anon_sym_LT] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_void] = ACTIONS(3640), - [anon_sym_delete] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3640), - [sym_number] = ACTIONS(3640), - [sym_private_property_identifier] = ACTIONS(3640), - [sym_this] = ACTIONS(3640), - [sym_super] = ACTIONS(3640), - [sym_true] = ACTIONS(3640), - [sym_false] = ACTIONS(3640), - [sym_null] = ACTIONS(3640), - [sym_undefined] = ACTIONS(3640), - [anon_sym_AT] = ACTIONS(3640), - [anon_sym_static] = ACTIONS(3640), - [anon_sym_readonly] = ACTIONS(3640), - [anon_sym_get] = ACTIONS(3640), - [anon_sym_set] = ACTIONS(3640), - [anon_sym_declare] = ACTIONS(3640), - [anon_sym_public] = ACTIONS(3640), - [anon_sym_private] = ACTIONS(3640), - [anon_sym_protected] = ACTIONS(3640), - [anon_sym_override] = ACTIONS(3640), - [anon_sym_module] = ACTIONS(3640), - [anon_sym_any] = ACTIONS(3640), - [anon_sym_number] = ACTIONS(3640), - [anon_sym_boolean] = ACTIONS(3640), - [anon_sym_string] = ACTIONS(3640), - [anon_sym_symbol] = ACTIONS(3640), - [anon_sym_object] = ACTIONS(3640), - [anon_sym_property] = ACTIONS(3640), - [anon_sym_signal] = ACTIONS(3640), - [anon_sym_on] = ACTIONS(3640), - [anon_sym_required] = ACTIONS(3640), - [anon_sym_component] = ACTIONS(3640), - [anon_sym_abstract] = ACTIONS(3640), - [anon_sym_interface] = ACTIONS(3640), - [anon_sym_enum] = ACTIONS(3640), - [sym_html_comment] = ACTIONS(5), - }, - [1732] = { - [sym_comment] = STATE(1732), - [sym_identifier] = ACTIONS(3656), - [anon_sym_export] = ACTIONS(3656), - [anon_sym_type] = ACTIONS(3656), - [anon_sym_namespace] = ACTIONS(3656), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_import] = ACTIONS(3656), - [anon_sym_from] = ACTIONS(3656), - [anon_sym_with] = ACTIONS(3656), - [anon_sym_var] = ACTIONS(3656), - [anon_sym_let] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3656), - [anon_sym_if] = ACTIONS(3656), - [anon_sym_switch] = ACTIONS(3656), - [anon_sym_for] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3656), - [anon_sym_await] = ACTIONS(3656), - [anon_sym_of] = ACTIONS(3656), - [anon_sym_while] = ACTIONS(3656), - [anon_sym_do] = ACTIONS(3656), - [anon_sym_try] = ACTIONS(3656), - [anon_sym_break] = ACTIONS(3656), - [anon_sym_continue] = ACTIONS(3656), - [anon_sym_debugger] = ACTIONS(3656), - [anon_sym_return] = ACTIONS(3656), - [anon_sym_throw] = ACTIONS(3656), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym_yield] = ACTIONS(3656), - [anon_sym_LBRACK] = ACTIONS(3656), - [anon_sym_LTtemplate_GT] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(3656), - [anon_sym_SQUOTE] = ACTIONS(3656), - [anon_sym_class] = ACTIONS(3656), - [anon_sym_async] = ACTIONS(3656), - [anon_sym_function] = ACTIONS(3656), - [anon_sym_new] = ACTIONS(3656), - [anon_sym_using] = ACTIONS(3656), - [anon_sym_PLUS] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_SLASH] = ACTIONS(3656), - [anon_sym_LT] = ACTIONS(3656), - [anon_sym_TILDE] = ACTIONS(3656), - [anon_sym_void] = ACTIONS(3656), - [anon_sym_delete] = ACTIONS(3656), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3656), - [sym_number] = ACTIONS(3656), - [sym_private_property_identifier] = ACTIONS(3656), - [sym_this] = ACTIONS(3656), - [sym_super] = ACTIONS(3656), - [sym_true] = ACTIONS(3656), - [sym_false] = ACTIONS(3656), - [sym_null] = ACTIONS(3656), - [sym_undefined] = ACTIONS(3656), - [anon_sym_AT] = ACTIONS(3656), - [anon_sym_static] = ACTIONS(3656), - [anon_sym_readonly] = ACTIONS(3656), - [anon_sym_get] = ACTIONS(3656), - [anon_sym_set] = ACTIONS(3656), - [anon_sym_declare] = ACTIONS(3656), - [anon_sym_public] = ACTIONS(3656), - [anon_sym_private] = ACTIONS(3656), - [anon_sym_protected] = ACTIONS(3656), - [anon_sym_override] = ACTIONS(3656), - [anon_sym_module] = ACTIONS(3656), - [anon_sym_any] = ACTIONS(3656), - [anon_sym_number] = ACTIONS(3656), - [anon_sym_boolean] = ACTIONS(3656), - [anon_sym_string] = ACTIONS(3656), - [anon_sym_symbol] = ACTIONS(3656), - [anon_sym_object] = ACTIONS(3656), - [anon_sym_property] = ACTIONS(3656), - [anon_sym_signal] = ACTIONS(3656), - [anon_sym_on] = ACTIONS(3656), - [anon_sym_required] = ACTIONS(3656), - [anon_sym_component] = ACTIONS(3656), - [anon_sym_abstract] = ACTIONS(3656), - [anon_sym_interface] = ACTIONS(3656), - [anon_sym_enum] = ACTIONS(3656), - [sym_html_comment] = ACTIONS(5), - }, - [1733] = { - [sym_comment] = STATE(1733), + [1675] = { + [sym_comment] = STATE(1675), [sym_identifier] = ACTIONS(3672), [anon_sym_export] = ACTIONS(3672), [anon_sym_type] = ACTIONS(3672), @@ -222903,849 +217299,1747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3672), [sym_html_comment] = ACTIONS(5), }, - [1734] = { - [sym_comment] = STATE(1734), - [sym_identifier] = ACTIONS(3602), - [anon_sym_export] = ACTIONS(3602), - [anon_sym_type] = ACTIONS(3602), - [anon_sym_namespace] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_typeof] = ACTIONS(3602), - [anon_sym_import] = ACTIONS(3602), - [anon_sym_from] = ACTIONS(3602), - [anon_sym_with] = ACTIONS(3602), - [anon_sym_var] = ACTIONS(3602), - [anon_sym_let] = ACTIONS(3602), - [anon_sym_const] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_if] = ACTIONS(3602), - [anon_sym_switch] = ACTIONS(3602), - [anon_sym_for] = ACTIONS(3602), - [anon_sym_LPAREN] = ACTIONS(3602), - [anon_sym_await] = ACTIONS(3602), - [anon_sym_of] = ACTIONS(3602), - [anon_sym_while] = ACTIONS(3602), - [anon_sym_do] = ACTIONS(3602), - [anon_sym_try] = ACTIONS(3602), - [anon_sym_break] = ACTIONS(3602), - [anon_sym_continue] = ACTIONS(3602), - [anon_sym_debugger] = ACTIONS(3602), - [anon_sym_return] = ACTIONS(3602), - [anon_sym_throw] = ACTIONS(3602), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_yield] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(3602), - [anon_sym_LTtemplate_GT] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_class] = ACTIONS(3602), - [anon_sym_async] = ACTIONS(3602), - [anon_sym_function] = ACTIONS(3602), - [anon_sym_new] = ACTIONS(3602), - [anon_sym_using] = ACTIONS(3602), - [anon_sym_PLUS] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3602), - [anon_sym_SLASH] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_void] = ACTIONS(3602), - [anon_sym_delete] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_DASH_DASH] = ACTIONS(3602), + [1676] = { + [sym_comment] = STATE(1676), + [sym_identifier] = ACTIONS(3740), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_type] = ACTIONS(3740), + [anon_sym_namespace] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_typeof] = ACTIONS(3740), + [anon_sym_import] = ACTIONS(3740), + [anon_sym_from] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_var] = ACTIONS(3740), + [anon_sym_let] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_switch] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_await] = ACTIONS(3740), + [anon_sym_of] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_try] = ACTIONS(3740), + [anon_sym_break] = ACTIONS(3740), + [anon_sym_continue] = ACTIONS(3740), + [anon_sym_debugger] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_throw] = ACTIONS(3740), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_LTtemplate_GT] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_class] = ACTIONS(3740), + [anon_sym_async] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3740), + [anon_sym_using] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_void] = ACTIONS(3740), + [anon_sym_delete] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3740), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3602), - [sym_number] = ACTIONS(3602), - [sym_private_property_identifier] = ACTIONS(3602), - [sym_this] = ACTIONS(3602), - [sym_super] = ACTIONS(3602), - [sym_true] = ACTIONS(3602), - [sym_false] = ACTIONS(3602), - [sym_null] = ACTIONS(3602), - [sym_undefined] = ACTIONS(3602), - [anon_sym_AT] = ACTIONS(3602), - [anon_sym_static] = ACTIONS(3602), - [anon_sym_readonly] = ACTIONS(3602), - [anon_sym_get] = ACTIONS(3602), - [anon_sym_set] = ACTIONS(3602), - [anon_sym_declare] = ACTIONS(3602), - [anon_sym_public] = ACTIONS(3602), - [anon_sym_private] = ACTIONS(3602), - [anon_sym_protected] = ACTIONS(3602), - [anon_sym_override] = ACTIONS(3602), - [anon_sym_module] = ACTIONS(3602), - [anon_sym_any] = ACTIONS(3602), - [anon_sym_number] = ACTIONS(3602), - [anon_sym_boolean] = ACTIONS(3602), - [anon_sym_string] = ACTIONS(3602), - [anon_sym_symbol] = ACTIONS(3602), - [anon_sym_object] = ACTIONS(3602), - [anon_sym_property] = ACTIONS(3602), - [anon_sym_signal] = ACTIONS(3602), - [anon_sym_on] = ACTIONS(3602), - [anon_sym_required] = ACTIONS(3602), - [anon_sym_component] = ACTIONS(3602), - [anon_sym_abstract] = ACTIONS(3602), - [anon_sym_interface] = ACTIONS(3602), - [anon_sym_enum] = ACTIONS(3602), + [anon_sym_BQUOTE] = ACTIONS(3740), + [sym_number] = ACTIONS(3740), + [sym_private_property_identifier] = ACTIONS(3740), + [sym_this] = ACTIONS(3740), + [sym_super] = ACTIONS(3740), + [sym_true] = ACTIONS(3740), + [sym_false] = ACTIONS(3740), + [sym_null] = ACTIONS(3740), + [sym_undefined] = ACTIONS(3740), + [anon_sym_AT] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_readonly] = ACTIONS(3740), + [anon_sym_get] = ACTIONS(3740), + [anon_sym_set] = ACTIONS(3740), + [anon_sym_declare] = ACTIONS(3740), + [anon_sym_public] = ACTIONS(3740), + [anon_sym_private] = ACTIONS(3740), + [anon_sym_protected] = ACTIONS(3740), + [anon_sym_override] = ACTIONS(3740), + [anon_sym_module] = ACTIONS(3740), + [anon_sym_any] = ACTIONS(3740), + [anon_sym_number] = ACTIONS(3740), + [anon_sym_boolean] = ACTIONS(3740), + [anon_sym_string] = ACTIONS(3740), + [anon_sym_symbol] = ACTIONS(3740), + [anon_sym_object] = ACTIONS(3740), + [anon_sym_property] = ACTIONS(3740), + [anon_sym_signal] = ACTIONS(3740), + [anon_sym_on] = ACTIONS(3740), + [anon_sym_required] = ACTIONS(3740), + [anon_sym_component] = ACTIONS(3740), + [anon_sym_abstract] = ACTIONS(3740), + [anon_sym_interface] = ACTIONS(3740), + [anon_sym_enum] = ACTIONS(3740), [sym_html_comment] = ACTIONS(5), }, - [1735] = { - [sym_comment] = STATE(1735), - [sym_identifier] = ACTIONS(3684), - [anon_sym_export] = ACTIONS(3684), - [anon_sym_type] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3684), - [anon_sym_RBRACE] = ACTIONS(3684), - [anon_sym_typeof] = ACTIONS(3684), - [anon_sym_import] = ACTIONS(3684), - [anon_sym_from] = ACTIONS(3684), - [anon_sym_with] = ACTIONS(3684), - [anon_sym_var] = ACTIONS(3684), - [anon_sym_let] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_LPAREN] = ACTIONS(3684), - [anon_sym_await] = ACTIONS(3684), - [anon_sym_of] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_debugger] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3684), - [anon_sym_yield] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_LTtemplate_GT] = ACTIONS(3684), - [anon_sym_DQUOTE] = ACTIONS(3684), - [anon_sym_SQUOTE] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_async] = ACTIONS(3684), - [anon_sym_function] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_SLASH] = ACTIONS(3684), - [anon_sym_LT] = ACTIONS(3684), - [anon_sym_TILDE] = ACTIONS(3684), - [anon_sym_void] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_PLUS_PLUS] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3684), + [1677] = { + [sym_comment] = STATE(1677), + [sym_identifier] = ACTIONS(3742), + [anon_sym_export] = ACTIONS(3742), + [anon_sym_type] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3742), + [anon_sym_typeof] = ACTIONS(3742), + [anon_sym_import] = ACTIONS(3742), + [anon_sym_from] = ACTIONS(3742), + [anon_sym_with] = ACTIONS(3742), + [anon_sym_var] = ACTIONS(3742), + [anon_sym_let] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_BANG] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_switch] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_LPAREN] = ACTIONS(3742), + [anon_sym_await] = ACTIONS(3742), + [anon_sym_of] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_debugger] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_throw] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3742), + [anon_sym_yield] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_LTtemplate_GT] = ACTIONS(3742), + [anon_sym_DQUOTE] = ACTIONS(3742), + [anon_sym_SQUOTE] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_async] = ACTIONS(3742), + [anon_sym_function] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_SLASH] = ACTIONS(3742), + [anon_sym_LT] = ACTIONS(3742), + [anon_sym_TILDE] = ACTIONS(3742), + [anon_sym_void] = ACTIONS(3742), + [anon_sym_delete] = ACTIONS(3742), + [anon_sym_PLUS_PLUS] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3742), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3684), - [sym_number] = ACTIONS(3684), - [sym_private_property_identifier] = ACTIONS(3684), - [sym_this] = ACTIONS(3684), - [sym_super] = ACTIONS(3684), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [sym_null] = ACTIONS(3684), - [sym_undefined] = ACTIONS(3684), - [anon_sym_AT] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_get] = ACTIONS(3684), - [anon_sym_set] = ACTIONS(3684), - [anon_sym_declare] = ACTIONS(3684), - [anon_sym_public] = ACTIONS(3684), - [anon_sym_private] = ACTIONS(3684), - [anon_sym_protected] = ACTIONS(3684), - [anon_sym_override] = ACTIONS(3684), - [anon_sym_module] = ACTIONS(3684), - [anon_sym_any] = ACTIONS(3684), - [anon_sym_number] = ACTIONS(3684), - [anon_sym_boolean] = ACTIONS(3684), - [anon_sym_string] = ACTIONS(3684), - [anon_sym_symbol] = ACTIONS(3684), - [anon_sym_object] = ACTIONS(3684), - [anon_sym_property] = ACTIONS(3684), - [anon_sym_signal] = ACTIONS(3684), - [anon_sym_on] = ACTIONS(3684), - [anon_sym_required] = ACTIONS(3684), - [anon_sym_component] = ACTIONS(3684), - [anon_sym_abstract] = ACTIONS(3684), - [anon_sym_interface] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), + [anon_sym_BQUOTE] = ACTIONS(3742), + [sym_number] = ACTIONS(3742), + [sym_private_property_identifier] = ACTIONS(3742), + [sym_this] = ACTIONS(3742), + [sym_super] = ACTIONS(3742), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [sym_null] = ACTIONS(3742), + [sym_undefined] = ACTIONS(3742), + [anon_sym_AT] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_readonly] = ACTIONS(3742), + [anon_sym_get] = ACTIONS(3742), + [anon_sym_set] = ACTIONS(3742), + [anon_sym_declare] = ACTIONS(3742), + [anon_sym_public] = ACTIONS(3742), + [anon_sym_private] = ACTIONS(3742), + [anon_sym_protected] = ACTIONS(3742), + [anon_sym_override] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_any] = ACTIONS(3742), + [anon_sym_number] = ACTIONS(3742), + [anon_sym_boolean] = ACTIONS(3742), + [anon_sym_string] = ACTIONS(3742), + [anon_sym_symbol] = ACTIONS(3742), + [anon_sym_object] = ACTIONS(3742), + [anon_sym_property] = ACTIONS(3742), + [anon_sym_signal] = ACTIONS(3742), + [anon_sym_on] = ACTIONS(3742), + [anon_sym_required] = ACTIONS(3742), + [anon_sym_component] = ACTIONS(3742), + [anon_sym_abstract] = ACTIONS(3742), + [anon_sym_interface] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), [sym_html_comment] = ACTIONS(5), }, - [1736] = { - [sym_comment] = STATE(1736), - [sym_identifier] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_type] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3572), - [anon_sym_RBRACE] = ACTIONS(3572), - [anon_sym_typeof] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_from] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3572), - [anon_sym_var] = ACTIONS(3572), - [anon_sym_let] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_await] = ACTIONS(3572), - [anon_sym_of] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_debugger] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_LTtemplate_GT] = ACTIONS(3572), - [anon_sym_DQUOTE] = ACTIONS(3572), - [anon_sym_SQUOTE] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_async] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_SLASH] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_TILDE] = ACTIONS(3572), - [anon_sym_void] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3572), + [1678] = { + [sym_comment] = STATE(1678), + [sym_identifier] = ACTIONS(3740), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_type] = ACTIONS(3740), + [anon_sym_namespace] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_typeof] = ACTIONS(3740), + [anon_sym_import] = ACTIONS(3740), + [anon_sym_from] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_var] = ACTIONS(3740), + [anon_sym_let] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_switch] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_await] = ACTIONS(3740), + [anon_sym_of] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_try] = ACTIONS(3740), + [anon_sym_break] = ACTIONS(3740), + [anon_sym_continue] = ACTIONS(3740), + [anon_sym_debugger] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_throw] = ACTIONS(3740), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_LTtemplate_GT] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_class] = ACTIONS(3740), + [anon_sym_async] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3740), + [anon_sym_using] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_void] = ACTIONS(3740), + [anon_sym_delete] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3740), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3572), - [sym_number] = ACTIONS(3572), - [sym_private_property_identifier] = ACTIONS(3572), - [sym_this] = ACTIONS(3572), - [sym_super] = ACTIONS(3572), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [sym_null] = ACTIONS(3572), - [sym_undefined] = ACTIONS(3572), - [anon_sym_AT] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_readonly] = ACTIONS(3572), - [anon_sym_get] = ACTIONS(3572), - [anon_sym_set] = ACTIONS(3572), - [anon_sym_declare] = ACTIONS(3572), - [anon_sym_public] = ACTIONS(3572), - [anon_sym_private] = ACTIONS(3572), - [anon_sym_protected] = ACTIONS(3572), - [anon_sym_override] = ACTIONS(3572), - [anon_sym_module] = ACTIONS(3572), - [anon_sym_any] = ACTIONS(3572), - [anon_sym_number] = ACTIONS(3572), - [anon_sym_boolean] = ACTIONS(3572), - [anon_sym_string] = ACTIONS(3572), - [anon_sym_symbol] = ACTIONS(3572), - [anon_sym_object] = ACTIONS(3572), - [anon_sym_property] = ACTIONS(3572), - [anon_sym_signal] = ACTIONS(3572), - [anon_sym_on] = ACTIONS(3572), - [anon_sym_required] = ACTIONS(3572), - [anon_sym_component] = ACTIONS(3572), - [anon_sym_abstract] = ACTIONS(3572), - [anon_sym_interface] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), - [sym_html_comment] = ACTIONS(5), - }, - [1737] = { - [sym_comment] = STATE(1737), - [sym_identifier] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_type] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3572), - [anon_sym_RBRACE] = ACTIONS(3572), - [anon_sym_typeof] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_from] = ACTIONS(3572), - [anon_sym_with] = ACTIONS(3572), - [anon_sym_var] = ACTIONS(3572), - [anon_sym_let] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_BANG] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_LPAREN] = ACTIONS(3572), - [anon_sym_await] = ACTIONS(3572), - [anon_sym_of] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_debugger] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3572), - [anon_sym_yield] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_LTtemplate_GT] = ACTIONS(3572), - [anon_sym_DQUOTE] = ACTIONS(3572), - [anon_sym_SQUOTE] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_async] = ACTIONS(3572), - [anon_sym_function] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_SLASH] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(3572), - [anon_sym_TILDE] = ACTIONS(3572), - [anon_sym_void] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_PLUS_PLUS] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3572), + [anon_sym_BQUOTE] = ACTIONS(3740), + [sym_number] = ACTIONS(3740), + [sym_private_property_identifier] = ACTIONS(3740), + [sym_this] = ACTIONS(3740), + [sym_super] = ACTIONS(3740), + [sym_true] = ACTIONS(3740), + [sym_false] = ACTIONS(3740), + [sym_null] = ACTIONS(3740), + [sym_undefined] = ACTIONS(3740), + [anon_sym_AT] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_readonly] = ACTIONS(3740), + [anon_sym_get] = ACTIONS(3740), + [anon_sym_set] = ACTIONS(3740), + [anon_sym_declare] = ACTIONS(3740), + [anon_sym_public] = ACTIONS(3740), + [anon_sym_private] = ACTIONS(3740), + [anon_sym_protected] = ACTIONS(3740), + [anon_sym_override] = ACTIONS(3740), + [anon_sym_module] = ACTIONS(3740), + [anon_sym_any] = ACTIONS(3740), + [anon_sym_number] = ACTIONS(3740), + [anon_sym_boolean] = ACTIONS(3740), + [anon_sym_string] = ACTIONS(3740), + [anon_sym_symbol] = ACTIONS(3740), + [anon_sym_object] = ACTIONS(3740), + [anon_sym_property] = ACTIONS(3740), + [anon_sym_signal] = ACTIONS(3740), + [anon_sym_on] = ACTIONS(3740), + [anon_sym_required] = ACTIONS(3740), + [anon_sym_component] = ACTIONS(3740), + [anon_sym_abstract] = ACTIONS(3740), + [anon_sym_interface] = ACTIONS(3740), + [anon_sym_enum] = ACTIONS(3740), + [sym_html_comment] = ACTIONS(5), + }, + [1679] = { + [sym_comment] = STATE(1679), + [sym_identifier] = ACTIONS(3740), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_type] = ACTIONS(3740), + [anon_sym_namespace] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_typeof] = ACTIONS(3740), + [anon_sym_import] = ACTIONS(3740), + [anon_sym_from] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_var] = ACTIONS(3740), + [anon_sym_let] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_switch] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_await] = ACTIONS(3740), + [anon_sym_of] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_try] = ACTIONS(3740), + [anon_sym_break] = ACTIONS(3740), + [anon_sym_continue] = ACTIONS(3740), + [anon_sym_debugger] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_throw] = ACTIONS(3740), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_LTtemplate_GT] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_class] = ACTIONS(3740), + [anon_sym_async] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3740), + [anon_sym_using] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_void] = ACTIONS(3740), + [anon_sym_delete] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3740), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3572), - [sym_number] = ACTIONS(3572), - [sym_private_property_identifier] = ACTIONS(3572), - [sym_this] = ACTIONS(3572), - [sym_super] = ACTIONS(3572), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [sym_null] = ACTIONS(3572), - [sym_undefined] = ACTIONS(3572), - [anon_sym_AT] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_readonly] = ACTIONS(3572), - [anon_sym_get] = ACTIONS(3572), - [anon_sym_set] = ACTIONS(3572), - [anon_sym_declare] = ACTIONS(3572), - [anon_sym_public] = ACTIONS(3572), - [anon_sym_private] = ACTIONS(3572), - [anon_sym_protected] = ACTIONS(3572), - [anon_sym_override] = ACTIONS(3572), - [anon_sym_module] = ACTIONS(3572), - [anon_sym_any] = ACTIONS(3572), - [anon_sym_number] = ACTIONS(3572), - [anon_sym_boolean] = ACTIONS(3572), - [anon_sym_string] = ACTIONS(3572), - [anon_sym_symbol] = ACTIONS(3572), - [anon_sym_object] = ACTIONS(3572), - [anon_sym_property] = ACTIONS(3572), - [anon_sym_signal] = ACTIONS(3572), - [anon_sym_on] = ACTIONS(3572), - [anon_sym_required] = ACTIONS(3572), - [anon_sym_component] = ACTIONS(3572), - [anon_sym_abstract] = ACTIONS(3572), - [anon_sym_interface] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), + [anon_sym_BQUOTE] = ACTIONS(3740), + [sym_number] = ACTIONS(3740), + [sym_private_property_identifier] = ACTIONS(3740), + [sym_this] = ACTIONS(3740), + [sym_super] = ACTIONS(3740), + [sym_true] = ACTIONS(3740), + [sym_false] = ACTIONS(3740), + [sym_null] = ACTIONS(3740), + [sym_undefined] = ACTIONS(3740), + [anon_sym_AT] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_readonly] = ACTIONS(3740), + [anon_sym_get] = ACTIONS(3740), + [anon_sym_set] = ACTIONS(3740), + [anon_sym_declare] = ACTIONS(3740), + [anon_sym_public] = ACTIONS(3740), + [anon_sym_private] = ACTIONS(3740), + [anon_sym_protected] = ACTIONS(3740), + [anon_sym_override] = ACTIONS(3740), + [anon_sym_module] = ACTIONS(3740), + [anon_sym_any] = ACTIONS(3740), + [anon_sym_number] = ACTIONS(3740), + [anon_sym_boolean] = ACTIONS(3740), + [anon_sym_string] = ACTIONS(3740), + [anon_sym_symbol] = ACTIONS(3740), + [anon_sym_object] = ACTIONS(3740), + [anon_sym_property] = ACTIONS(3740), + [anon_sym_signal] = ACTIONS(3740), + [anon_sym_on] = ACTIONS(3740), + [anon_sym_required] = ACTIONS(3740), + [anon_sym_component] = ACTIONS(3740), + [anon_sym_abstract] = ACTIONS(3740), + [anon_sym_interface] = ACTIONS(3740), + [anon_sym_enum] = ACTIONS(3740), [sym_html_comment] = ACTIONS(5), }, - [1738] = { - [sym_comment] = STATE(1738), - [sym_identifier] = ACTIONS(3628), - [anon_sym_export] = ACTIONS(3628), - [anon_sym_type] = ACTIONS(3628), - [anon_sym_namespace] = ACTIONS(3628), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_typeof] = ACTIONS(3628), - [anon_sym_import] = ACTIONS(3628), - [anon_sym_from] = ACTIONS(3628), - [anon_sym_with] = ACTIONS(3628), - [anon_sym_var] = ACTIONS(3628), - [anon_sym_let] = ACTIONS(3628), - [anon_sym_const] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_if] = ACTIONS(3628), - [anon_sym_switch] = ACTIONS(3628), - [anon_sym_for] = ACTIONS(3628), - [anon_sym_LPAREN] = ACTIONS(3628), - [anon_sym_await] = ACTIONS(3628), - [anon_sym_of] = ACTIONS(3628), - [anon_sym_while] = ACTIONS(3628), - [anon_sym_do] = ACTIONS(3628), - [anon_sym_try] = ACTIONS(3628), - [anon_sym_break] = ACTIONS(3628), - [anon_sym_continue] = ACTIONS(3628), - [anon_sym_debugger] = ACTIONS(3628), - [anon_sym_return] = ACTIONS(3628), - [anon_sym_throw] = ACTIONS(3628), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym_yield] = ACTIONS(3628), - [anon_sym_LBRACK] = ACTIONS(3628), - [anon_sym_LTtemplate_GT] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_class] = ACTIONS(3628), - [anon_sym_async] = ACTIONS(3628), - [anon_sym_function] = ACTIONS(3628), - [anon_sym_new] = ACTIONS(3628), - [anon_sym_using] = ACTIONS(3628), - [anon_sym_PLUS] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3628), - [anon_sym_SLASH] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_void] = ACTIONS(3628), - [anon_sym_delete] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_DASH_DASH] = ACTIONS(3628), + [1680] = { + [sym_comment] = STATE(1680), + [sym_identifier] = ACTIONS(3464), + [anon_sym_export] = ACTIONS(3464), + [anon_sym_type] = ACTIONS(3464), + [anon_sym_namespace] = ACTIONS(3464), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3464), + [anon_sym_import] = ACTIONS(3464), + [anon_sym_from] = ACTIONS(3464), + [anon_sym_with] = ACTIONS(3464), + [anon_sym_var] = ACTIONS(3464), + [anon_sym_let] = ACTIONS(3464), + [anon_sym_const] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_if] = ACTIONS(3464), + [anon_sym_switch] = ACTIONS(3464), + [anon_sym_for] = ACTIONS(3464), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3464), + [anon_sym_of] = ACTIONS(3464), + [anon_sym_while] = ACTIONS(3464), + [anon_sym_do] = ACTIONS(3464), + [anon_sym_try] = ACTIONS(3464), + [anon_sym_break] = ACTIONS(3464), + [anon_sym_continue] = ACTIONS(3464), + [anon_sym_debugger] = ACTIONS(3464), + [anon_sym_return] = ACTIONS(3464), + [anon_sym_throw] = ACTIONS(3464), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_yield] = ACTIONS(3464), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LTtemplate_GT] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [anon_sym_class] = ACTIONS(3464), + [anon_sym_async] = ACTIONS(3464), + [anon_sym_function] = ACTIONS(3464), + [anon_sym_new] = ACTIONS(3464), + [anon_sym_using] = ACTIONS(3464), + [anon_sym_PLUS] = ACTIONS(3464), + [anon_sym_DASH] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3464), + [anon_sym_delete] = ACTIONS(3464), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3628), - [sym_number] = ACTIONS(3628), - [sym_private_property_identifier] = ACTIONS(3628), - [sym_this] = ACTIONS(3628), - [sym_super] = ACTIONS(3628), - [sym_true] = ACTIONS(3628), - [sym_false] = ACTIONS(3628), - [sym_null] = ACTIONS(3628), - [sym_undefined] = ACTIONS(3628), - [anon_sym_AT] = ACTIONS(3628), - [anon_sym_static] = ACTIONS(3628), - [anon_sym_readonly] = ACTIONS(3628), - [anon_sym_get] = ACTIONS(3628), - [anon_sym_set] = ACTIONS(3628), - [anon_sym_declare] = ACTIONS(3628), - [anon_sym_public] = ACTIONS(3628), - [anon_sym_private] = ACTIONS(3628), - [anon_sym_protected] = ACTIONS(3628), - [anon_sym_override] = ACTIONS(3628), - [anon_sym_module] = ACTIONS(3628), - [anon_sym_any] = ACTIONS(3628), - [anon_sym_number] = ACTIONS(3628), - [anon_sym_boolean] = ACTIONS(3628), - [anon_sym_string] = ACTIONS(3628), - [anon_sym_symbol] = ACTIONS(3628), - [anon_sym_object] = ACTIONS(3628), - [anon_sym_property] = ACTIONS(3628), - [anon_sym_signal] = ACTIONS(3628), - [anon_sym_on] = ACTIONS(3628), - [anon_sym_required] = ACTIONS(3628), - [anon_sym_component] = ACTIONS(3628), - [anon_sym_abstract] = ACTIONS(3628), - [anon_sym_interface] = ACTIONS(3628), - [anon_sym_enum] = ACTIONS(3628), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_private_property_identifier] = ACTIONS(3464), + [sym_this] = ACTIONS(3464), + [sym_super] = ACTIONS(3464), + [sym_true] = ACTIONS(3464), + [sym_false] = ACTIONS(3464), + [sym_null] = ACTIONS(3464), + [sym_undefined] = ACTIONS(3464), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3464), + [anon_sym_readonly] = ACTIONS(3464), + [anon_sym_get] = ACTIONS(3464), + [anon_sym_set] = ACTIONS(3464), + [anon_sym_declare] = ACTIONS(3464), + [anon_sym_public] = ACTIONS(3464), + [anon_sym_private] = ACTIONS(3464), + [anon_sym_protected] = ACTIONS(3464), + [anon_sym_override] = ACTIONS(3464), + [anon_sym_module] = ACTIONS(3464), + [anon_sym_any] = ACTIONS(3464), + [anon_sym_number] = ACTIONS(3464), + [anon_sym_boolean] = ACTIONS(3464), + [anon_sym_string] = ACTIONS(3464), + [anon_sym_symbol] = ACTIONS(3464), + [anon_sym_object] = ACTIONS(3464), + [anon_sym_property] = ACTIONS(3464), + [anon_sym_signal] = ACTIONS(3464), + [anon_sym_on] = ACTIONS(3464), + [anon_sym_required] = ACTIONS(3464), + [anon_sym_component] = ACTIONS(3464), + [anon_sym_abstract] = ACTIONS(3464), + [anon_sym_interface] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3464), [sym_html_comment] = ACTIONS(5), }, - [1739] = { - [sym_comment] = STATE(1739), - [sym_identifier] = ACTIONS(3508), - [anon_sym_export] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym_import] = ACTIONS(3508), - [anon_sym_from] = ACTIONS(3508), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_of] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_debugger] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LTtemplate_GT] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3508), - [anon_sym_class] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_using] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_SLASH] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3508), - [anon_sym_void] = ACTIONS(3508), - [anon_sym_delete] = ACTIONS(3508), - [anon_sym_PLUS_PLUS] = ACTIONS(3508), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3508), - [sym_number] = ACTIONS(3508), - [sym_private_property_identifier] = ACTIONS(3508), - [sym_this] = ACTIONS(3508), - [sym_super] = ACTIONS(3508), - [sym_true] = ACTIONS(3508), - [sym_false] = ACTIONS(3508), - [sym_null] = ACTIONS(3508), - [sym_undefined] = ACTIONS(3508), - [anon_sym_AT] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_get] = ACTIONS(3508), - [anon_sym_set] = ACTIONS(3508), - [anon_sym_declare] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_override] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_any] = ACTIONS(3508), - [anon_sym_number] = ACTIONS(3508), - [anon_sym_boolean] = ACTIONS(3508), - [anon_sym_string] = ACTIONS(3508), - [anon_sym_symbol] = ACTIONS(3508), - [anon_sym_object] = ACTIONS(3508), - [anon_sym_property] = ACTIONS(3508), - [anon_sym_signal] = ACTIONS(3508), - [anon_sym_on] = ACTIONS(3508), - [anon_sym_required] = ACTIONS(3508), - [anon_sym_component] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_interface] = ACTIONS(3508), - [anon_sym_enum] = ACTIONS(3508), + [1681] = { + [sym_comment] = STATE(1681), + [sym_identifier] = ACTIONS(3740), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_type] = ACTIONS(3740), + [anon_sym_namespace] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_typeof] = ACTIONS(3740), + [anon_sym_import] = ACTIONS(3740), + [anon_sym_from] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_var] = ACTIONS(3740), + [anon_sym_let] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_switch] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_await] = ACTIONS(3740), + [anon_sym_of] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_try] = ACTIONS(3740), + [anon_sym_break] = ACTIONS(3740), + [anon_sym_continue] = ACTIONS(3740), + [anon_sym_debugger] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_throw] = ACTIONS(3740), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_LTtemplate_GT] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_class] = ACTIONS(3740), + [anon_sym_async] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3740), + [anon_sym_using] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_void] = ACTIONS(3740), + [anon_sym_delete] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3740), + [sym_number] = ACTIONS(3740), + [sym_private_property_identifier] = ACTIONS(3740), + [sym_this] = ACTIONS(3740), + [sym_super] = ACTIONS(3740), + [sym_true] = ACTIONS(3740), + [sym_false] = ACTIONS(3740), + [sym_null] = ACTIONS(3740), + [sym_undefined] = ACTIONS(3740), + [anon_sym_AT] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_readonly] = ACTIONS(3740), + [anon_sym_get] = ACTIONS(3740), + [anon_sym_set] = ACTIONS(3740), + [anon_sym_declare] = ACTIONS(3740), + [anon_sym_public] = ACTIONS(3740), + [anon_sym_private] = ACTIONS(3740), + [anon_sym_protected] = ACTIONS(3740), + [anon_sym_override] = ACTIONS(3740), + [anon_sym_module] = ACTIONS(3740), + [anon_sym_any] = ACTIONS(3740), + [anon_sym_number] = ACTIONS(3740), + [anon_sym_boolean] = ACTIONS(3740), + [anon_sym_string] = ACTIONS(3740), + [anon_sym_symbol] = ACTIONS(3740), + [anon_sym_object] = ACTIONS(3740), + [anon_sym_property] = ACTIONS(3740), + [anon_sym_signal] = ACTIONS(3740), + [anon_sym_on] = ACTIONS(3740), + [anon_sym_required] = ACTIONS(3740), + [anon_sym_component] = ACTIONS(3740), + [anon_sym_abstract] = ACTIONS(3740), + [anon_sym_interface] = ACTIONS(3740), + [anon_sym_enum] = ACTIONS(3740), [sym_html_comment] = ACTIONS(5), }, - [1740] = { - [sym_comment] = STATE(1740), - [sym_identifier] = ACTIONS(3508), - [anon_sym_export] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3508), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym_import] = ACTIONS(3508), - [anon_sym_from] = ACTIONS(3508), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3508), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_of] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_debugger] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3508), - [anon_sym_LTtemplate_GT] = ACTIONS(3508), - [anon_sym_DQUOTE] = ACTIONS(3508), - [anon_sym_SQUOTE] = ACTIONS(3508), - [anon_sym_class] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_using] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_SLASH] = ACTIONS(3508), - [anon_sym_LT] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3508), - [anon_sym_void] = ACTIONS(3508), - [anon_sym_delete] = ACTIONS(3508), - [anon_sym_PLUS_PLUS] = ACTIONS(3508), - [anon_sym_DASH_DASH] = ACTIONS(3508), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3508), - [sym_number] = ACTIONS(3508), - [sym_private_property_identifier] = ACTIONS(3508), - [sym_this] = ACTIONS(3508), - [sym_super] = ACTIONS(3508), - [sym_true] = ACTIONS(3508), - [sym_false] = ACTIONS(3508), - [sym_null] = ACTIONS(3508), - [sym_undefined] = ACTIONS(3508), - [anon_sym_AT] = ACTIONS(3508), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_get] = ACTIONS(3508), - [anon_sym_set] = ACTIONS(3508), - [anon_sym_declare] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_override] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_any] = ACTIONS(3508), - [anon_sym_number] = ACTIONS(3508), - [anon_sym_boolean] = ACTIONS(3508), - [anon_sym_string] = ACTIONS(3508), - [anon_sym_symbol] = ACTIONS(3508), - [anon_sym_object] = ACTIONS(3508), - [anon_sym_property] = ACTIONS(3508), - [anon_sym_signal] = ACTIONS(3508), - [anon_sym_on] = ACTIONS(3508), - [anon_sym_required] = ACTIONS(3508), - [anon_sym_component] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_interface] = ACTIONS(3508), - [anon_sym_enum] = ACTIONS(3508), + [1682] = { + [sym_comment] = STATE(1682), + [sym_identifier] = ACTIONS(3740), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_type] = ACTIONS(3740), + [anon_sym_namespace] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_typeof] = ACTIONS(3740), + [anon_sym_import] = ACTIONS(3740), + [anon_sym_from] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_var] = ACTIONS(3740), + [anon_sym_let] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_switch] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_await] = ACTIONS(3740), + [anon_sym_of] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_try] = ACTIONS(3740), + [anon_sym_break] = ACTIONS(3740), + [anon_sym_continue] = ACTIONS(3740), + [anon_sym_debugger] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_throw] = ACTIONS(3740), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_LTtemplate_GT] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_class] = ACTIONS(3740), + [anon_sym_async] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3740), + [anon_sym_using] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_void] = ACTIONS(3740), + [anon_sym_delete] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3740), + [sym_number] = ACTIONS(3740), + [sym_private_property_identifier] = ACTIONS(3740), + [sym_this] = ACTIONS(3740), + [sym_super] = ACTIONS(3740), + [sym_true] = ACTIONS(3740), + [sym_false] = ACTIONS(3740), + [sym_null] = ACTIONS(3740), + [sym_undefined] = ACTIONS(3740), + [anon_sym_AT] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_readonly] = ACTIONS(3740), + [anon_sym_get] = ACTIONS(3740), + [anon_sym_set] = ACTIONS(3740), + [anon_sym_declare] = ACTIONS(3740), + [anon_sym_public] = ACTIONS(3740), + [anon_sym_private] = ACTIONS(3740), + [anon_sym_protected] = ACTIONS(3740), + [anon_sym_override] = ACTIONS(3740), + [anon_sym_module] = ACTIONS(3740), + [anon_sym_any] = ACTIONS(3740), + [anon_sym_number] = ACTIONS(3740), + [anon_sym_boolean] = ACTIONS(3740), + [anon_sym_string] = ACTIONS(3740), + [anon_sym_symbol] = ACTIONS(3740), + [anon_sym_object] = ACTIONS(3740), + [anon_sym_property] = ACTIONS(3740), + [anon_sym_signal] = ACTIONS(3740), + [anon_sym_on] = ACTIONS(3740), + [anon_sym_required] = ACTIONS(3740), + [anon_sym_component] = ACTIONS(3740), + [anon_sym_abstract] = ACTIONS(3740), + [anon_sym_interface] = ACTIONS(3740), + [anon_sym_enum] = ACTIONS(3740), [sym_html_comment] = ACTIONS(5), }, - [1741] = { - [sym_comment] = STATE(1741), - [sym_identifier] = ACTIONS(3504), - [anon_sym_export] = ACTIONS(3504), - [anon_sym_type] = ACTIONS(3504), - [anon_sym_namespace] = ACTIONS(3504), - [anon_sym_LBRACE] = ACTIONS(3504), - [anon_sym_RBRACE] = ACTIONS(3504), - [anon_sym_typeof] = ACTIONS(3504), - [anon_sym_import] = ACTIONS(3504), - [anon_sym_from] = ACTIONS(3504), - [anon_sym_with] = ACTIONS(3504), - [anon_sym_var] = ACTIONS(3504), - [anon_sym_let] = ACTIONS(3504), - [anon_sym_const] = ACTIONS(3504), - [anon_sym_BANG] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3504), - [anon_sym_switch] = ACTIONS(3504), - [anon_sym_for] = ACTIONS(3504), - [anon_sym_LPAREN] = ACTIONS(3504), - [anon_sym_await] = ACTIONS(3504), - [anon_sym_of] = ACTIONS(3504), - [anon_sym_while] = ACTIONS(3504), - [anon_sym_do] = ACTIONS(3504), - [anon_sym_try] = ACTIONS(3504), - [anon_sym_break] = ACTIONS(3504), - [anon_sym_continue] = ACTIONS(3504), - [anon_sym_debugger] = ACTIONS(3504), - [anon_sym_return] = ACTIONS(3504), - [anon_sym_throw] = ACTIONS(3504), - [anon_sym_SEMI] = ACTIONS(3504), - [anon_sym_yield] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3504), - [anon_sym_LTtemplate_GT] = ACTIONS(3504), - [anon_sym_DQUOTE] = ACTIONS(3504), - [anon_sym_SQUOTE] = ACTIONS(3504), - [anon_sym_class] = ACTIONS(3504), - [anon_sym_async] = ACTIONS(3504), - [anon_sym_function] = ACTIONS(3504), - [anon_sym_new] = ACTIONS(3504), - [anon_sym_using] = ACTIONS(3504), - [anon_sym_PLUS] = ACTIONS(3504), - [anon_sym_DASH] = ACTIONS(3504), - [anon_sym_SLASH] = ACTIONS(3504), - [anon_sym_LT] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3504), - [anon_sym_void] = ACTIONS(3504), - [anon_sym_delete] = ACTIONS(3504), - [anon_sym_PLUS_PLUS] = ACTIONS(3504), - [anon_sym_DASH_DASH] = ACTIONS(3504), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3504), - [sym_number] = ACTIONS(3504), - [sym_private_property_identifier] = ACTIONS(3504), - [sym_this] = ACTIONS(3504), - [sym_super] = ACTIONS(3504), - [sym_true] = ACTIONS(3504), - [sym_false] = ACTIONS(3504), - [sym_null] = ACTIONS(3504), - [sym_undefined] = ACTIONS(3504), - [anon_sym_AT] = ACTIONS(3504), - [anon_sym_static] = ACTIONS(3504), - [anon_sym_readonly] = ACTIONS(3504), - [anon_sym_get] = ACTIONS(3504), - [anon_sym_set] = ACTIONS(3504), - [anon_sym_declare] = ACTIONS(3504), - [anon_sym_public] = ACTIONS(3504), - [anon_sym_private] = ACTIONS(3504), - [anon_sym_protected] = ACTIONS(3504), - [anon_sym_override] = ACTIONS(3504), - [anon_sym_module] = ACTIONS(3504), - [anon_sym_any] = ACTIONS(3504), - [anon_sym_number] = ACTIONS(3504), - [anon_sym_boolean] = ACTIONS(3504), - [anon_sym_string] = ACTIONS(3504), - [anon_sym_symbol] = ACTIONS(3504), - [anon_sym_object] = ACTIONS(3504), - [anon_sym_property] = ACTIONS(3504), - [anon_sym_signal] = ACTIONS(3504), - [anon_sym_on] = ACTIONS(3504), - [anon_sym_required] = ACTIONS(3504), - [anon_sym_component] = ACTIONS(3504), - [anon_sym_abstract] = ACTIONS(3504), - [anon_sym_interface] = ACTIONS(3504), - [anon_sym_enum] = ACTIONS(3504), + [1683] = { + [sym_comment] = STATE(1683), + [sym_identifier] = ACTIONS(3740), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_type] = ACTIONS(3740), + [anon_sym_namespace] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_typeof] = ACTIONS(3740), + [anon_sym_import] = ACTIONS(3740), + [anon_sym_from] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_var] = ACTIONS(3740), + [anon_sym_let] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_switch] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_await] = ACTIONS(3740), + [anon_sym_of] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_try] = ACTIONS(3740), + [anon_sym_break] = ACTIONS(3740), + [anon_sym_continue] = ACTIONS(3740), + [anon_sym_debugger] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_throw] = ACTIONS(3740), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_LTtemplate_GT] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_class] = ACTIONS(3740), + [anon_sym_async] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3740), + [anon_sym_using] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_void] = ACTIONS(3740), + [anon_sym_delete] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3740), + [sym_number] = ACTIONS(3740), + [sym_private_property_identifier] = ACTIONS(3740), + [sym_this] = ACTIONS(3740), + [sym_super] = ACTIONS(3740), + [sym_true] = ACTIONS(3740), + [sym_false] = ACTIONS(3740), + [sym_null] = ACTIONS(3740), + [sym_undefined] = ACTIONS(3740), + [anon_sym_AT] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_readonly] = ACTIONS(3740), + [anon_sym_get] = ACTIONS(3740), + [anon_sym_set] = ACTIONS(3740), + [anon_sym_declare] = ACTIONS(3740), + [anon_sym_public] = ACTIONS(3740), + [anon_sym_private] = ACTIONS(3740), + [anon_sym_protected] = ACTIONS(3740), + [anon_sym_override] = ACTIONS(3740), + [anon_sym_module] = ACTIONS(3740), + [anon_sym_any] = ACTIONS(3740), + [anon_sym_number] = ACTIONS(3740), + [anon_sym_boolean] = ACTIONS(3740), + [anon_sym_string] = ACTIONS(3740), + [anon_sym_symbol] = ACTIONS(3740), + [anon_sym_object] = ACTIONS(3740), + [anon_sym_property] = ACTIONS(3740), + [anon_sym_signal] = ACTIONS(3740), + [anon_sym_on] = ACTIONS(3740), + [anon_sym_required] = ACTIONS(3740), + [anon_sym_component] = ACTIONS(3740), + [anon_sym_abstract] = ACTIONS(3740), + [anon_sym_interface] = ACTIONS(3740), + [anon_sym_enum] = ACTIONS(3740), [sym_html_comment] = ACTIONS(5), }, - [1742] = { - [sym_comment] = STATE(1742), - [sym_identifier] = ACTIONS(3484), - [anon_sym_export] = ACTIONS(3484), - [anon_sym_type] = ACTIONS(3484), - [anon_sym_namespace] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3484), - [anon_sym_RBRACE] = ACTIONS(3484), - [anon_sym_typeof] = ACTIONS(3484), - [anon_sym_import] = ACTIONS(3484), - [anon_sym_from] = ACTIONS(3484), - [anon_sym_with] = ACTIONS(3484), - [anon_sym_var] = ACTIONS(3484), - [anon_sym_let] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3484), - [anon_sym_if] = ACTIONS(3484), - [anon_sym_switch] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_await] = ACTIONS(3484), - [anon_sym_of] = ACTIONS(3484), - [anon_sym_while] = ACTIONS(3484), - [anon_sym_do] = ACTIONS(3484), - [anon_sym_try] = ACTIONS(3484), - [anon_sym_break] = ACTIONS(3484), - [anon_sym_continue] = ACTIONS(3484), - [anon_sym_debugger] = ACTIONS(3484), - [anon_sym_return] = ACTIONS(3484), - [anon_sym_throw] = ACTIONS(3484), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3484), - [anon_sym_LBRACK] = ACTIONS(3484), - [anon_sym_LTtemplate_GT] = ACTIONS(3484), - [anon_sym_DQUOTE] = ACTIONS(3484), - [anon_sym_SQUOTE] = ACTIONS(3484), - [anon_sym_class] = ACTIONS(3484), - [anon_sym_async] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3484), - [anon_sym_using] = ACTIONS(3484), - [anon_sym_PLUS] = ACTIONS(3484), - [anon_sym_DASH] = ACTIONS(3484), - [anon_sym_SLASH] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_TILDE] = ACTIONS(3484), - [anon_sym_void] = ACTIONS(3484), - [anon_sym_delete] = ACTIONS(3484), - [anon_sym_PLUS_PLUS] = ACTIONS(3484), - [anon_sym_DASH_DASH] = ACTIONS(3484), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3484), - [sym_number] = ACTIONS(3484), - [sym_private_property_identifier] = ACTIONS(3484), - [sym_this] = ACTIONS(3484), - [sym_super] = ACTIONS(3484), - [sym_true] = ACTIONS(3484), - [sym_false] = ACTIONS(3484), - [sym_null] = ACTIONS(3484), - [sym_undefined] = ACTIONS(3484), - [anon_sym_AT] = ACTIONS(3484), - [anon_sym_static] = ACTIONS(3484), - [anon_sym_readonly] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3484), - [anon_sym_set] = ACTIONS(3484), - [anon_sym_declare] = ACTIONS(3484), - [anon_sym_public] = ACTIONS(3484), - [anon_sym_private] = ACTIONS(3484), - [anon_sym_protected] = ACTIONS(3484), - [anon_sym_override] = ACTIONS(3484), - [anon_sym_module] = ACTIONS(3484), - [anon_sym_any] = ACTIONS(3484), - [anon_sym_number] = ACTIONS(3484), - [anon_sym_boolean] = ACTIONS(3484), - [anon_sym_string] = ACTIONS(3484), - [anon_sym_symbol] = ACTIONS(3484), - [anon_sym_object] = ACTIONS(3484), - [anon_sym_property] = ACTIONS(3484), - [anon_sym_signal] = ACTIONS(3484), - [anon_sym_on] = ACTIONS(3484), - [anon_sym_required] = ACTIONS(3484), - [anon_sym_component] = ACTIONS(3484), - [anon_sym_abstract] = ACTIONS(3484), - [anon_sym_interface] = ACTIONS(3484), - [anon_sym_enum] = ACTIONS(3484), + [1684] = { + [sym_comment] = STATE(1684), + [sym_identifier] = ACTIONS(3744), + [anon_sym_export] = ACTIONS(3744), + [anon_sym_type] = ACTIONS(3744), + [anon_sym_namespace] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_typeof] = ACTIONS(3744), + [anon_sym_import] = ACTIONS(3744), + [anon_sym_from] = ACTIONS(3744), + [anon_sym_with] = ACTIONS(3744), + [anon_sym_var] = ACTIONS(3744), + [anon_sym_let] = ACTIONS(3744), + [anon_sym_const] = ACTIONS(3744), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_if] = ACTIONS(3744), + [anon_sym_switch] = ACTIONS(3744), + [anon_sym_for] = ACTIONS(3744), + [anon_sym_LPAREN] = ACTIONS(3744), + [anon_sym_await] = ACTIONS(3744), + [anon_sym_of] = ACTIONS(3744), + [anon_sym_while] = ACTIONS(3744), + [anon_sym_do] = ACTIONS(3744), + [anon_sym_try] = ACTIONS(3744), + [anon_sym_break] = ACTIONS(3744), + [anon_sym_continue] = ACTIONS(3744), + [anon_sym_debugger] = ACTIONS(3744), + [anon_sym_return] = ACTIONS(3744), + [anon_sym_throw] = ACTIONS(3744), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym_yield] = ACTIONS(3744), + [anon_sym_LBRACK] = ACTIONS(3744), + [anon_sym_LTtemplate_GT] = ACTIONS(3744), + [anon_sym_DQUOTE] = ACTIONS(3744), + [anon_sym_SQUOTE] = ACTIONS(3744), + [anon_sym_class] = ACTIONS(3744), + [anon_sym_async] = ACTIONS(3744), + [anon_sym_function] = ACTIONS(3744), + [anon_sym_new] = ACTIONS(3744), + [anon_sym_using] = ACTIONS(3744), + [anon_sym_PLUS] = ACTIONS(3744), + [anon_sym_DASH] = ACTIONS(3744), + [anon_sym_SLASH] = ACTIONS(3744), + [anon_sym_LT] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_void] = ACTIONS(3744), + [anon_sym_delete] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3744), + [sym_number] = ACTIONS(3744), + [sym_private_property_identifier] = ACTIONS(3744), + [sym_this] = ACTIONS(3744), + [sym_super] = ACTIONS(3744), + [sym_true] = ACTIONS(3744), + [sym_false] = ACTIONS(3744), + [sym_null] = ACTIONS(3744), + [sym_undefined] = ACTIONS(3744), + [anon_sym_AT] = ACTIONS(3744), + [anon_sym_static] = ACTIONS(3744), + [anon_sym_readonly] = ACTIONS(3744), + [anon_sym_get] = ACTIONS(3744), + [anon_sym_set] = ACTIONS(3744), + [anon_sym_declare] = ACTIONS(3744), + [anon_sym_public] = ACTIONS(3744), + [anon_sym_private] = ACTIONS(3744), + [anon_sym_protected] = ACTIONS(3744), + [anon_sym_override] = ACTIONS(3744), + [anon_sym_module] = ACTIONS(3744), + [anon_sym_any] = ACTIONS(3744), + [anon_sym_number] = ACTIONS(3744), + [anon_sym_boolean] = ACTIONS(3744), + [anon_sym_string] = ACTIONS(3744), + [anon_sym_symbol] = ACTIONS(3744), + [anon_sym_object] = ACTIONS(3744), + [anon_sym_property] = ACTIONS(3744), + [anon_sym_signal] = ACTIONS(3744), + [anon_sym_on] = ACTIONS(3744), + [anon_sym_required] = ACTIONS(3744), + [anon_sym_component] = ACTIONS(3744), + [anon_sym_abstract] = ACTIONS(3744), + [anon_sym_interface] = ACTIONS(3744), + [anon_sym_enum] = ACTIONS(3744), [sym_html_comment] = ACTIONS(5), }, - [1743] = { - [sym_comment] = STATE(1743), + [1685] = { + [sym_comment] = STATE(1685), + [sym_identifier] = ACTIONS(3746), + [anon_sym_export] = ACTIONS(3746), + [anon_sym_type] = ACTIONS(3746), + [anon_sym_namespace] = ACTIONS(3746), + [anon_sym_LBRACE] = ACTIONS(3746), + [anon_sym_typeof] = ACTIONS(3746), + [anon_sym_import] = ACTIONS(3746), + [anon_sym_from] = ACTIONS(3746), + [anon_sym_with] = ACTIONS(3746), + [anon_sym_var] = ACTIONS(3746), + [anon_sym_let] = ACTIONS(3746), + [anon_sym_const] = ACTIONS(3746), + [anon_sym_BANG] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_switch] = ACTIONS(3746), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_LPAREN] = ACTIONS(3746), + [anon_sym_await] = ACTIONS(3746), + [anon_sym_of] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_break] = ACTIONS(3746), + [anon_sym_continue] = ACTIONS(3746), + [anon_sym_debugger] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_throw] = ACTIONS(3746), + [anon_sym_SEMI] = ACTIONS(3746), + [anon_sym_yield] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_LTtemplate_GT] = ACTIONS(3746), + [anon_sym_DQUOTE] = ACTIONS(3746), + [anon_sym_SQUOTE] = ACTIONS(3746), + [anon_sym_class] = ACTIONS(3746), + [anon_sym_async] = ACTIONS(3746), + [anon_sym_function] = ACTIONS(3746), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_using] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_SLASH] = ACTIONS(3746), + [anon_sym_LT] = ACTIONS(3746), + [anon_sym_TILDE] = ACTIONS(3746), + [anon_sym_void] = ACTIONS(3746), + [anon_sym_delete] = ACTIONS(3746), + [anon_sym_PLUS_PLUS] = ACTIONS(3746), + [anon_sym_DASH_DASH] = ACTIONS(3746), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3746), + [sym_number] = ACTIONS(3746), + [sym_private_property_identifier] = ACTIONS(3746), + [sym_this] = ACTIONS(3746), + [sym_super] = ACTIONS(3746), + [sym_true] = ACTIONS(3746), + [sym_false] = ACTIONS(3746), + [sym_null] = ACTIONS(3746), + [sym_undefined] = ACTIONS(3746), + [anon_sym_AT] = ACTIONS(3746), + [anon_sym_static] = ACTIONS(3746), + [anon_sym_readonly] = ACTIONS(3746), + [anon_sym_get] = ACTIONS(3746), + [anon_sym_set] = ACTIONS(3746), + [anon_sym_declare] = ACTIONS(3746), + [anon_sym_public] = ACTIONS(3746), + [anon_sym_private] = ACTIONS(3746), + [anon_sym_protected] = ACTIONS(3746), + [anon_sym_override] = ACTIONS(3746), + [anon_sym_module] = ACTIONS(3746), + [anon_sym_any] = ACTIONS(3746), + [anon_sym_number] = ACTIONS(3746), + [anon_sym_boolean] = ACTIONS(3746), + [anon_sym_string] = ACTIONS(3746), + [anon_sym_symbol] = ACTIONS(3746), + [anon_sym_object] = ACTIONS(3746), + [anon_sym_property] = ACTIONS(3746), + [anon_sym_signal] = ACTIONS(3746), + [anon_sym_on] = ACTIONS(3746), + [anon_sym_required] = ACTIONS(3746), + [anon_sym_component] = ACTIONS(3746), + [anon_sym_abstract] = ACTIONS(3746), + [anon_sym_interface] = ACTIONS(3746), + [anon_sym_enum] = ACTIONS(3746), + [sym_html_comment] = ACTIONS(5), + }, + [1686] = { + [sym_comment] = STATE(1686), + [sym_identifier] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3454), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_from] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3454), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_of] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_debugger] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3454), + [anon_sym_LTtemplate_GT] = ACTIONS(3454), + [anon_sym_DQUOTE] = ACTIONS(3454), + [anon_sym_SQUOTE] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_function] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_LT] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3454), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3454), + [anon_sym_DASH_DASH] = ACTIONS(3454), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3454), + [sym_number] = ACTIONS(3454), + [sym_private_property_identifier] = ACTIONS(3454), + [sym_this] = ACTIONS(3454), + [sym_super] = ACTIONS(3454), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [anon_sym_AT] = ACTIONS(3454), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_get] = ACTIONS(3454), + [anon_sym_set] = ACTIONS(3454), + [anon_sym_declare] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_override] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_any] = ACTIONS(3454), + [anon_sym_number] = ACTIONS(3454), + [anon_sym_boolean] = ACTIONS(3454), + [anon_sym_string] = ACTIONS(3454), + [anon_sym_symbol] = ACTIONS(3454), + [anon_sym_object] = ACTIONS(3454), + [anon_sym_property] = ACTIONS(3454), + [anon_sym_signal] = ACTIONS(3454), + [anon_sym_on] = ACTIONS(3454), + [anon_sym_required] = ACTIONS(3454), + [anon_sym_component] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), + [sym_html_comment] = ACTIONS(5), + }, + [1687] = { + [sym_comment] = STATE(1687), + [sym_identifier] = ACTIONS(3740), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_type] = ACTIONS(3740), + [anon_sym_namespace] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_typeof] = ACTIONS(3740), + [anon_sym_import] = ACTIONS(3740), + [anon_sym_from] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_var] = ACTIONS(3740), + [anon_sym_let] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_switch] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_await] = ACTIONS(3740), + [anon_sym_of] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_try] = ACTIONS(3740), + [anon_sym_break] = ACTIONS(3740), + [anon_sym_continue] = ACTIONS(3740), + [anon_sym_debugger] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_throw] = ACTIONS(3740), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_LTtemplate_GT] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_class] = ACTIONS(3740), + [anon_sym_async] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3740), + [anon_sym_using] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_void] = ACTIONS(3740), + [anon_sym_delete] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3740), + [sym_number] = ACTIONS(3740), + [sym_private_property_identifier] = ACTIONS(3740), + [sym_this] = ACTIONS(3740), + [sym_super] = ACTIONS(3740), + [sym_true] = ACTIONS(3740), + [sym_false] = ACTIONS(3740), + [sym_null] = ACTIONS(3740), + [sym_undefined] = ACTIONS(3740), + [anon_sym_AT] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_readonly] = ACTIONS(3740), + [anon_sym_get] = ACTIONS(3740), + [anon_sym_set] = ACTIONS(3740), + [anon_sym_declare] = ACTIONS(3740), + [anon_sym_public] = ACTIONS(3740), + [anon_sym_private] = ACTIONS(3740), + [anon_sym_protected] = ACTIONS(3740), + [anon_sym_override] = ACTIONS(3740), + [anon_sym_module] = ACTIONS(3740), + [anon_sym_any] = ACTIONS(3740), + [anon_sym_number] = ACTIONS(3740), + [anon_sym_boolean] = ACTIONS(3740), + [anon_sym_string] = ACTIONS(3740), + [anon_sym_symbol] = ACTIONS(3740), + [anon_sym_object] = ACTIONS(3740), + [anon_sym_property] = ACTIONS(3740), + [anon_sym_signal] = ACTIONS(3740), + [anon_sym_on] = ACTIONS(3740), + [anon_sym_required] = ACTIONS(3740), + [anon_sym_component] = ACTIONS(3740), + [anon_sym_abstract] = ACTIONS(3740), + [anon_sym_interface] = ACTIONS(3740), + [anon_sym_enum] = ACTIONS(3740), + [sym_html_comment] = ACTIONS(5), + }, + [1688] = { + [sym_comment] = STATE(1688), + [sym_identifier] = ACTIONS(3740), + [anon_sym_export] = ACTIONS(3740), + [anon_sym_type] = ACTIONS(3740), + [anon_sym_namespace] = ACTIONS(3740), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_typeof] = ACTIONS(3740), + [anon_sym_import] = ACTIONS(3740), + [anon_sym_from] = ACTIONS(3740), + [anon_sym_with] = ACTIONS(3740), + [anon_sym_var] = ACTIONS(3740), + [anon_sym_let] = ACTIONS(3740), + [anon_sym_const] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_if] = ACTIONS(3740), + [anon_sym_switch] = ACTIONS(3740), + [anon_sym_for] = ACTIONS(3740), + [anon_sym_LPAREN] = ACTIONS(3740), + [anon_sym_await] = ACTIONS(3740), + [anon_sym_of] = ACTIONS(3740), + [anon_sym_while] = ACTIONS(3740), + [anon_sym_do] = ACTIONS(3740), + [anon_sym_try] = ACTIONS(3740), + [anon_sym_break] = ACTIONS(3740), + [anon_sym_continue] = ACTIONS(3740), + [anon_sym_debugger] = ACTIONS(3740), + [anon_sym_return] = ACTIONS(3740), + [anon_sym_throw] = ACTIONS(3740), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym_yield] = ACTIONS(3740), + [anon_sym_LBRACK] = ACTIONS(3740), + [anon_sym_LTtemplate_GT] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_class] = ACTIONS(3740), + [anon_sym_async] = ACTIONS(3740), + [anon_sym_function] = ACTIONS(3740), + [anon_sym_new] = ACTIONS(3740), + [anon_sym_using] = ACTIONS(3740), + [anon_sym_PLUS] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(3740), + [anon_sym_LT] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_void] = ACTIONS(3740), + [anon_sym_delete] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3740), + [sym_number] = ACTIONS(3740), + [sym_private_property_identifier] = ACTIONS(3740), + [sym_this] = ACTIONS(3740), + [sym_super] = ACTIONS(3740), + [sym_true] = ACTIONS(3740), + [sym_false] = ACTIONS(3740), + [sym_null] = ACTIONS(3740), + [sym_undefined] = ACTIONS(3740), + [anon_sym_AT] = ACTIONS(3740), + [anon_sym_static] = ACTIONS(3740), + [anon_sym_readonly] = ACTIONS(3740), + [anon_sym_get] = ACTIONS(3740), + [anon_sym_set] = ACTIONS(3740), + [anon_sym_declare] = ACTIONS(3740), + [anon_sym_public] = ACTIONS(3740), + [anon_sym_private] = ACTIONS(3740), + [anon_sym_protected] = ACTIONS(3740), + [anon_sym_override] = ACTIONS(3740), + [anon_sym_module] = ACTIONS(3740), + [anon_sym_any] = ACTIONS(3740), + [anon_sym_number] = ACTIONS(3740), + [anon_sym_boolean] = ACTIONS(3740), + [anon_sym_string] = ACTIONS(3740), + [anon_sym_symbol] = ACTIONS(3740), + [anon_sym_object] = ACTIONS(3740), + [anon_sym_property] = ACTIONS(3740), + [anon_sym_signal] = ACTIONS(3740), + [anon_sym_on] = ACTIONS(3740), + [anon_sym_required] = ACTIONS(3740), + [anon_sym_component] = ACTIONS(3740), + [anon_sym_abstract] = ACTIONS(3740), + [anon_sym_interface] = ACTIONS(3740), + [anon_sym_enum] = ACTIONS(3740), + [sym_html_comment] = ACTIONS(5), + }, + [1689] = { + [sym_statement_block] = STATE(1725), + [sym_comment] = STATE(1689), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3748), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3750), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [1690] = { + [sym_statement_block] = STATE(1725), + [sym_comment] = STATE(1690), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3748), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [1691] = { + [sym_statement_block] = STATE(1725), + [sym_comment] = STATE(1691), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3748), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3752), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), + [sym_html_comment] = ACTIONS(5), + }, + [1692] = { + [sym_comment] = STATE(1692), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_else] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2470), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_instanceof] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2472), + [sym__ternary_qmark] = ACTIONS(2472), + [sym_html_comment] = ACTIONS(5), + }, + [1693] = { + [sym_comment] = STATE(1693), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_in] = ACTIONS(2298), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_GT] = ACTIONS(2298), + [anon_sym_DOT] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2298), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_GT_GT] = ACTIONS(2298), + [anon_sym_GT_GT_GT] = ACTIONS(2298), + [anon_sym_LT_LT] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_CARET] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_LT_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), + [anon_sym_GT_EQ] = ACTIONS(2298), + [anon_sym_QMARK_QMARK] = ACTIONS(2298), + [anon_sym_instanceof] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3754), + [sym__ternary_qmark] = ACTIONS(2304), + [sym_html_comment] = ACTIONS(5), + }, + [1694] = { + [sym_comment] = STATE(1694), + [sym_identifier] = ACTIONS(2366), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_default] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_from] = ACTIONS(2366), + [anon_sym_var] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_in] = ACTIONS(2366), + [anon_sym_of] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_GT] = ACTIONS(2366), + [anon_sym_DOT] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_function] = ACTIONS(2366), + [anon_sym_QMARK_DOT] = ACTIONS(2366), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE_PIPE] = ACTIONS(2366), + [anon_sym_GT_GT] = ACTIONS(2366), + [anon_sym_GT_GT_GT] = ACTIONS(2366), + [anon_sym_LT_LT] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2366), + [anon_sym_PERCENT] = ACTIONS(2366), + [anon_sym_STAR_STAR] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_LT_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2366), + [anon_sym_GT_EQ] = ACTIONS(2366), + [anon_sym_QMARK_QMARK] = ACTIONS(2366), + [anon_sym_instanceof] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_readonly] = ACTIONS(2366), + [anon_sym_get] = ACTIONS(2366), + [anon_sym_set] = ACTIONS(2366), + [anon_sym_declare] = ACTIONS(2366), + [anon_sym_public] = ACTIONS(2366), + [anon_sym_private] = ACTIONS(2366), + [anon_sym_protected] = ACTIONS(2366), + [anon_sym_override] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_any] = ACTIONS(2366), + [anon_sym_number] = ACTIONS(2366), + [anon_sym_boolean] = ACTIONS(2366), + [anon_sym_string] = ACTIONS(2366), + [anon_sym_symbol] = ACTIONS(2366), + [anon_sym_object] = ACTIONS(2366), + [anon_sym_property] = ACTIONS(2366), + [anon_sym_signal] = ACTIONS(2366), + [anon_sym_on] = ACTIONS(2366), + [anon_sym_required] = ACTIONS(2366), + [anon_sym_component] = ACTIONS(2366), + [anon_sym_satisfies] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), + [sym__automatic_semicolon] = ACTIONS(2368), + [sym__ternary_qmark] = ACTIONS(2368), + [sym_html_comment] = ACTIONS(5), + }, + [1695] = { + [sym_comment] = STATE(1695), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_as] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_from] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_else] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_of] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_QMARK_DOT] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(2482), + [anon_sym_PIPE_PIPE] = ACTIONS(2482), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2482), + [anon_sym_LT_LT] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2482), + [anon_sym_GT_EQ] = ACTIONS(2482), + [anon_sym_QMARK_QMARK] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_property] = ACTIONS(2482), + [anon_sym_signal] = ACTIONS(2482), + [anon_sym_on] = ACTIONS(2482), + [anon_sym_required] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_satisfies] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [1696] = { + [sym_comment] = STATE(1696), [sym_identifier] = ACTIONS(2466), [anon_sym_export] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), [anon_sym_type] = ACTIONS(2466), + [anon_sym_as] = ACTIONS(2466), [anon_sym_namespace] = ACTIONS(2466), [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_COMMA] = ACTIONS(2466), [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), [anon_sym_from] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), [anon_sym_var] = ACTIONS(2466), [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), + [anon_sym_else] = ACTIONS(2466), [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_await] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), [anon_sym_of] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_DOT] = ACTIONS(2466), [anon_sym_async] = ACTIONS(2466), [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), + [anon_sym_QMARK_DOT] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2466), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2466), [anon_sym_PLUS] = ACTIONS(2466), [anon_sym_DASH] = ACTIONS(2466), [anon_sym_SLASH] = ACTIONS(2466), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_STAR_STAR] = ACTIONS(2466), [anon_sym_LT] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_instanceof] = ACTIONS(2466), [anon_sym_PLUS_PLUS] = ACTIONS(2466), [anon_sym_DASH_DASH] = ACTIONS(2466), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2466), - [sym_number] = ACTIONS(2466), - [sym_private_property_identifier] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), [anon_sym_AT] = ACTIONS(2466), [anon_sym_static] = ACTIONS(2466), [anon_sym_readonly] = ACTIONS(2466), @@ -223768,4247 +219062,3826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_on] = ACTIONS(2466), [anon_sym_required] = ACTIONS(2466), [anon_sym_component] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), + [anon_sym_satisfies] = ACTIONS(2466), [anon_sym_enum] = ACTIONS(2466), + [sym__automatic_semicolon] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(2468), [sym_html_comment] = ACTIONS(5), }, - [1744] = { - [sym_comment] = STATE(1744), - [sym_identifier] = ACTIONS(3516), - [anon_sym_export] = ACTIONS(3516), - [anon_sym_type] = ACTIONS(3516), - [anon_sym_namespace] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3516), - [anon_sym_RBRACE] = ACTIONS(3516), - [anon_sym_typeof] = ACTIONS(3516), - [anon_sym_import] = ACTIONS(3516), - [anon_sym_from] = ACTIONS(3516), - [anon_sym_with] = ACTIONS(3516), - [anon_sym_var] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_const] = ACTIONS(3516), - [anon_sym_BANG] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_switch] = ACTIONS(3516), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_LPAREN] = ACTIONS(3516), - [anon_sym_await] = ACTIONS(3516), - [anon_sym_of] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_break] = ACTIONS(3516), - [anon_sym_continue] = ACTIONS(3516), - [anon_sym_debugger] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_throw] = ACTIONS(3516), - [anon_sym_SEMI] = ACTIONS(3516), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3516), - [anon_sym_LTtemplate_GT] = ACTIONS(3516), - [anon_sym_DQUOTE] = ACTIONS(3516), - [anon_sym_SQUOTE] = ACTIONS(3516), - [anon_sym_class] = ACTIONS(3516), - [anon_sym_async] = ACTIONS(3516), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_using] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3516), - [anon_sym_void] = ACTIONS(3516), - [anon_sym_delete] = ACTIONS(3516), - [anon_sym_PLUS_PLUS] = ACTIONS(3516), - [anon_sym_DASH_DASH] = ACTIONS(3516), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3516), - [sym_number] = ACTIONS(3516), - [sym_private_property_identifier] = ACTIONS(3516), - [sym_this] = ACTIONS(3516), - [sym_super] = ACTIONS(3516), - [sym_true] = ACTIONS(3516), - [sym_false] = ACTIONS(3516), - [sym_null] = ACTIONS(3516), - [sym_undefined] = ACTIONS(3516), - [anon_sym_AT] = ACTIONS(3516), - [anon_sym_static] = ACTIONS(3516), - [anon_sym_readonly] = ACTIONS(3516), - [anon_sym_get] = ACTIONS(3516), - [anon_sym_set] = ACTIONS(3516), - [anon_sym_declare] = ACTIONS(3516), - [anon_sym_public] = ACTIONS(3516), - [anon_sym_private] = ACTIONS(3516), - [anon_sym_protected] = ACTIONS(3516), - [anon_sym_override] = ACTIONS(3516), - [anon_sym_module] = ACTIONS(3516), - [anon_sym_any] = ACTIONS(3516), - [anon_sym_number] = ACTIONS(3516), - [anon_sym_boolean] = ACTIONS(3516), - [anon_sym_string] = ACTIONS(3516), - [anon_sym_symbol] = ACTIONS(3516), - [anon_sym_object] = ACTIONS(3516), - [anon_sym_property] = ACTIONS(3516), - [anon_sym_signal] = ACTIONS(3516), - [anon_sym_on] = ACTIONS(3516), - [anon_sym_required] = ACTIONS(3516), - [anon_sym_component] = ACTIONS(3516), - [anon_sym_abstract] = ACTIONS(3516), - [anon_sym_interface] = ACTIONS(3516), - [anon_sym_enum] = ACTIONS(3516), + [1697] = { + [sym_statement_block] = STATE(1745), + [sym_comment] = STATE(1697), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), [sym_html_comment] = ACTIONS(5), }, - [1745] = { - [sym_comment] = STATE(1745), - [sym_identifier] = ACTIONS(3500), - [anon_sym_export] = ACTIONS(3500), - [anon_sym_type] = ACTIONS(3500), - [anon_sym_namespace] = ACTIONS(3500), - [anon_sym_LBRACE] = ACTIONS(3500), - [anon_sym_RBRACE] = ACTIONS(3500), - [anon_sym_typeof] = ACTIONS(3500), - [anon_sym_import] = ACTIONS(3500), - [anon_sym_from] = ACTIONS(3500), - [anon_sym_with] = ACTIONS(3500), - [anon_sym_var] = ACTIONS(3500), - [anon_sym_let] = ACTIONS(3500), - [anon_sym_const] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3500), - [anon_sym_if] = ACTIONS(3500), - [anon_sym_switch] = ACTIONS(3500), - [anon_sym_for] = ACTIONS(3500), - [anon_sym_LPAREN] = ACTIONS(3500), - [anon_sym_await] = ACTIONS(3500), - [anon_sym_of] = ACTIONS(3500), - [anon_sym_while] = ACTIONS(3500), - [anon_sym_do] = ACTIONS(3500), - [anon_sym_try] = ACTIONS(3500), - [anon_sym_break] = ACTIONS(3500), - [anon_sym_continue] = ACTIONS(3500), - [anon_sym_debugger] = ACTIONS(3500), - [anon_sym_return] = ACTIONS(3500), - [anon_sym_throw] = ACTIONS(3500), - [anon_sym_SEMI] = ACTIONS(3500), - [anon_sym_yield] = ACTIONS(3500), - [anon_sym_LBRACK] = ACTIONS(3500), - [anon_sym_LTtemplate_GT] = ACTIONS(3500), - [anon_sym_DQUOTE] = ACTIONS(3500), - [anon_sym_SQUOTE] = ACTIONS(3500), - [anon_sym_class] = ACTIONS(3500), - [anon_sym_async] = ACTIONS(3500), - [anon_sym_function] = ACTIONS(3500), - [anon_sym_new] = ACTIONS(3500), - [anon_sym_using] = ACTIONS(3500), - [anon_sym_PLUS] = ACTIONS(3500), - [anon_sym_DASH] = ACTIONS(3500), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_LT] = ACTIONS(3500), - [anon_sym_TILDE] = ACTIONS(3500), - [anon_sym_void] = ACTIONS(3500), - [anon_sym_delete] = ACTIONS(3500), - [anon_sym_PLUS_PLUS] = ACTIONS(3500), - [anon_sym_DASH_DASH] = ACTIONS(3500), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3500), - [sym_number] = ACTIONS(3500), - [sym_private_property_identifier] = ACTIONS(3500), - [sym_this] = ACTIONS(3500), - [sym_super] = ACTIONS(3500), - [sym_true] = ACTIONS(3500), - [sym_false] = ACTIONS(3500), - [sym_null] = ACTIONS(3500), - [sym_undefined] = ACTIONS(3500), - [anon_sym_AT] = ACTIONS(3500), - [anon_sym_static] = ACTIONS(3500), - [anon_sym_readonly] = ACTIONS(3500), - [anon_sym_get] = ACTIONS(3500), - [anon_sym_set] = ACTIONS(3500), - [anon_sym_declare] = ACTIONS(3500), - [anon_sym_public] = ACTIONS(3500), - [anon_sym_private] = ACTIONS(3500), - [anon_sym_protected] = ACTIONS(3500), - [anon_sym_override] = ACTIONS(3500), - [anon_sym_module] = ACTIONS(3500), - [anon_sym_any] = ACTIONS(3500), - [anon_sym_number] = ACTIONS(3500), - [anon_sym_boolean] = ACTIONS(3500), - [anon_sym_string] = ACTIONS(3500), - [anon_sym_symbol] = ACTIONS(3500), - [anon_sym_object] = ACTIONS(3500), - [anon_sym_property] = ACTIONS(3500), - [anon_sym_signal] = ACTIONS(3500), - [anon_sym_on] = ACTIONS(3500), - [anon_sym_required] = ACTIONS(3500), - [anon_sym_component] = ACTIONS(3500), - [anon_sym_abstract] = ACTIONS(3500), - [anon_sym_interface] = ACTIONS(3500), - [anon_sym_enum] = ACTIONS(3500), + [1698] = { + [sym_statement_block] = STATE(1745), + [sym_comment] = STATE(1698), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3758), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), [sym_html_comment] = ACTIONS(5), }, - [1746] = { - [sym_comment] = STATE(1746), - [sym_identifier] = ACTIONS(3506), - [anon_sym_export] = ACTIONS(3506), - [anon_sym_type] = ACTIONS(3506), - [anon_sym_namespace] = ACTIONS(3506), - [anon_sym_LBRACE] = ACTIONS(3506), - [anon_sym_RBRACE] = ACTIONS(3506), - [anon_sym_typeof] = ACTIONS(3506), - [anon_sym_import] = ACTIONS(3506), - [anon_sym_from] = ACTIONS(3506), - [anon_sym_with] = ACTIONS(3506), - [anon_sym_var] = ACTIONS(3506), - [anon_sym_let] = ACTIONS(3506), - [anon_sym_const] = ACTIONS(3506), - [anon_sym_BANG] = ACTIONS(3506), - [anon_sym_if] = ACTIONS(3506), - [anon_sym_switch] = ACTIONS(3506), - [anon_sym_for] = ACTIONS(3506), - [anon_sym_LPAREN] = ACTIONS(3506), - [anon_sym_await] = ACTIONS(3506), - [anon_sym_of] = ACTIONS(3506), - [anon_sym_while] = ACTIONS(3506), - [anon_sym_do] = ACTIONS(3506), - [anon_sym_try] = ACTIONS(3506), - [anon_sym_break] = ACTIONS(3506), - [anon_sym_continue] = ACTIONS(3506), - [anon_sym_debugger] = ACTIONS(3506), - [anon_sym_return] = ACTIONS(3506), - [anon_sym_throw] = ACTIONS(3506), - [anon_sym_SEMI] = ACTIONS(3506), - [anon_sym_yield] = ACTIONS(3506), - [anon_sym_LBRACK] = ACTIONS(3506), - [anon_sym_LTtemplate_GT] = ACTIONS(3506), - [anon_sym_DQUOTE] = ACTIONS(3506), - [anon_sym_SQUOTE] = ACTIONS(3506), - [anon_sym_class] = ACTIONS(3506), - [anon_sym_async] = ACTIONS(3506), - [anon_sym_function] = ACTIONS(3506), - [anon_sym_new] = ACTIONS(3506), - [anon_sym_using] = ACTIONS(3506), - [anon_sym_PLUS] = ACTIONS(3506), - [anon_sym_DASH] = ACTIONS(3506), - [anon_sym_SLASH] = ACTIONS(3506), - [anon_sym_LT] = ACTIONS(3506), - [anon_sym_TILDE] = ACTIONS(3506), - [anon_sym_void] = ACTIONS(3506), - [anon_sym_delete] = ACTIONS(3506), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3506), - [sym_number] = ACTIONS(3506), - [sym_private_property_identifier] = ACTIONS(3506), - [sym_this] = ACTIONS(3506), - [sym_super] = ACTIONS(3506), - [sym_true] = ACTIONS(3506), - [sym_false] = ACTIONS(3506), - [sym_null] = ACTIONS(3506), - [sym_undefined] = ACTIONS(3506), - [anon_sym_AT] = ACTIONS(3506), - [anon_sym_static] = ACTIONS(3506), - [anon_sym_readonly] = ACTIONS(3506), - [anon_sym_get] = ACTIONS(3506), - [anon_sym_set] = ACTIONS(3506), - [anon_sym_declare] = ACTIONS(3506), - [anon_sym_public] = ACTIONS(3506), - [anon_sym_private] = ACTIONS(3506), - [anon_sym_protected] = ACTIONS(3506), - [anon_sym_override] = ACTIONS(3506), - [anon_sym_module] = ACTIONS(3506), - [anon_sym_any] = ACTIONS(3506), - [anon_sym_number] = ACTIONS(3506), - [anon_sym_boolean] = ACTIONS(3506), - [anon_sym_string] = ACTIONS(3506), - [anon_sym_symbol] = ACTIONS(3506), - [anon_sym_object] = ACTIONS(3506), - [anon_sym_property] = ACTIONS(3506), - [anon_sym_signal] = ACTIONS(3506), - [anon_sym_on] = ACTIONS(3506), - [anon_sym_required] = ACTIONS(3506), - [anon_sym_component] = ACTIONS(3506), - [anon_sym_abstract] = ACTIONS(3506), - [anon_sym_interface] = ACTIONS(3506), - [anon_sym_enum] = ACTIONS(3506), + [1699] = { + [sym_statement_block] = STATE(1745), + [sym_comment] = STATE(1699), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_from] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_of] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(3760), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_property] = ACTIONS(2288), + [anon_sym_signal] = ACTIONS(2288), + [anon_sym_on] = ACTIONS(2288), + [anon_sym_required] = ACTIONS(2288), + [anon_sym_component] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2294), + [sym__ternary_qmark] = ACTIONS(2294), [sym_html_comment] = ACTIONS(5), }, - [1747] = { - [sym_comment] = STATE(1747), - [sym_identifier] = ACTIONS(3496), - [anon_sym_export] = ACTIONS(3496), - [anon_sym_type] = ACTIONS(3496), - [anon_sym_namespace] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(3496), - [anon_sym_RBRACE] = ACTIONS(3496), - [anon_sym_typeof] = ACTIONS(3496), - [anon_sym_import] = ACTIONS(3496), - [anon_sym_from] = ACTIONS(3496), - [anon_sym_with] = ACTIONS(3496), - [anon_sym_var] = ACTIONS(3496), - [anon_sym_let] = ACTIONS(3496), - [anon_sym_const] = ACTIONS(3496), - [anon_sym_BANG] = ACTIONS(3496), - [anon_sym_if] = ACTIONS(3496), - [anon_sym_switch] = ACTIONS(3496), - [anon_sym_for] = ACTIONS(3496), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_await] = ACTIONS(3496), - [anon_sym_of] = ACTIONS(3496), - [anon_sym_while] = ACTIONS(3496), - [anon_sym_do] = ACTIONS(3496), - [anon_sym_try] = ACTIONS(3496), - [anon_sym_break] = ACTIONS(3496), - [anon_sym_continue] = ACTIONS(3496), - [anon_sym_debugger] = ACTIONS(3496), - [anon_sym_return] = ACTIONS(3496), - [anon_sym_throw] = ACTIONS(3496), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_yield] = ACTIONS(3496), - [anon_sym_LBRACK] = ACTIONS(3496), - [anon_sym_LTtemplate_GT] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(3496), - [anon_sym_SQUOTE] = ACTIONS(3496), - [anon_sym_class] = ACTIONS(3496), - [anon_sym_async] = ACTIONS(3496), - [anon_sym_function] = ACTIONS(3496), - [anon_sym_new] = ACTIONS(3496), - [anon_sym_using] = ACTIONS(3496), - [anon_sym_PLUS] = ACTIONS(3496), - [anon_sym_DASH] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(3496), - [anon_sym_void] = ACTIONS(3496), - [anon_sym_delete] = ACTIONS(3496), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3496), + [1700] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1700), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3762), + [anon_sym_export] = ACTIONS(3764), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3762), + [anon_sym_namespace] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3772), + [anon_sym_from] = ACTIONS(3762), + [anon_sym_let] = ACTIONS(3762), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3762), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3780), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3496), - [sym_number] = ACTIONS(3496), - [sym_private_property_identifier] = ACTIONS(3496), - [sym_this] = ACTIONS(3496), - [sym_super] = ACTIONS(3496), - [sym_true] = ACTIONS(3496), - [sym_false] = ACTIONS(3496), - [sym_null] = ACTIONS(3496), - [sym_undefined] = ACTIONS(3496), - [anon_sym_AT] = ACTIONS(3496), - [anon_sym_static] = ACTIONS(3496), - [anon_sym_readonly] = ACTIONS(3496), - [anon_sym_get] = ACTIONS(3496), - [anon_sym_set] = ACTIONS(3496), - [anon_sym_declare] = ACTIONS(3496), - [anon_sym_public] = ACTIONS(3496), - [anon_sym_private] = ACTIONS(3496), - [anon_sym_protected] = ACTIONS(3496), - [anon_sym_override] = ACTIONS(3496), - [anon_sym_module] = ACTIONS(3496), - [anon_sym_any] = ACTIONS(3496), - [anon_sym_number] = ACTIONS(3496), - [anon_sym_boolean] = ACTIONS(3496), - [anon_sym_string] = ACTIONS(3496), - [anon_sym_symbol] = ACTIONS(3496), - [anon_sym_object] = ACTIONS(3496), - [anon_sym_property] = ACTIONS(3496), - [anon_sym_signal] = ACTIONS(3496), - [anon_sym_on] = ACTIONS(3496), - [anon_sym_required] = ACTIONS(3496), - [anon_sym_component] = ACTIONS(3496), - [anon_sym_abstract] = ACTIONS(3496), - [anon_sym_interface] = ACTIONS(3496), - [anon_sym_enum] = ACTIONS(3496), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3788), + [anon_sym_readonly] = ACTIONS(3790), + [anon_sym_get] = ACTIONS(3792), + [anon_sym_set] = ACTIONS(3792), + [anon_sym_declare] = ACTIONS(3762), + [anon_sym_public] = ACTIONS(3794), + [anon_sym_private] = ACTIONS(3794), + [anon_sym_protected] = ACTIONS(3794), + [anon_sym_override] = ACTIONS(3796), + [anon_sym_module] = ACTIONS(3762), + [anon_sym_any] = ACTIONS(3762), + [anon_sym_number] = ACTIONS(3762), + [anon_sym_boolean] = ACTIONS(3762), + [anon_sym_string] = ACTIONS(3762), + [anon_sym_symbol] = ACTIONS(3762), + [anon_sym_object] = ACTIONS(3762), + [anon_sym_property] = ACTIONS(3762), + [anon_sym_signal] = ACTIONS(3762), + [anon_sym_on] = ACTIONS(3762), + [anon_sym_required] = ACTIONS(3762), + [anon_sym_component] = ACTIONS(3762), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1748] = { - [sym_comment] = STATE(1748), - [sym_identifier] = ACTIONS(3592), - [anon_sym_export] = ACTIONS(3592), - [anon_sym_type] = ACTIONS(3592), - [anon_sym_namespace] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3592), - [anon_sym_RBRACE] = ACTIONS(3592), - [anon_sym_typeof] = ACTIONS(3592), - [anon_sym_import] = ACTIONS(3592), - [anon_sym_from] = ACTIONS(3592), - [anon_sym_with] = ACTIONS(3592), - [anon_sym_var] = ACTIONS(3592), - [anon_sym_let] = ACTIONS(3592), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_BANG] = ACTIONS(3592), - [anon_sym_if] = ACTIONS(3592), - [anon_sym_switch] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3592), - [anon_sym_LPAREN] = ACTIONS(3592), - [anon_sym_await] = ACTIONS(3592), - [anon_sym_of] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3592), - [anon_sym_do] = ACTIONS(3592), - [anon_sym_try] = ACTIONS(3592), - [anon_sym_break] = ACTIONS(3592), - [anon_sym_continue] = ACTIONS(3592), - [anon_sym_debugger] = ACTIONS(3592), - [anon_sym_return] = ACTIONS(3592), - [anon_sym_throw] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(3592), - [anon_sym_yield] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3592), - [anon_sym_LTtemplate_GT] = ACTIONS(3592), - [anon_sym_DQUOTE] = ACTIONS(3592), - [anon_sym_SQUOTE] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_async] = ACTIONS(3592), - [anon_sym_function] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3592), - [anon_sym_using] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_SLASH] = ACTIONS(3592), - [anon_sym_LT] = ACTIONS(3592), - [anon_sym_TILDE] = ACTIONS(3592), - [anon_sym_void] = ACTIONS(3592), - [anon_sym_delete] = ACTIONS(3592), - [anon_sym_PLUS_PLUS] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3592), + [1701] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1701), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7094), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(3804), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3806), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3592), - [sym_number] = ACTIONS(3592), - [sym_private_property_identifier] = ACTIONS(3592), - [sym_this] = ACTIONS(3592), - [sym_super] = ACTIONS(3592), - [sym_true] = ACTIONS(3592), - [sym_false] = ACTIONS(3592), - [sym_null] = ACTIONS(3592), - [sym_undefined] = ACTIONS(3592), - [anon_sym_AT] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_readonly] = ACTIONS(3592), - [anon_sym_get] = ACTIONS(3592), - [anon_sym_set] = ACTIONS(3592), - [anon_sym_declare] = ACTIONS(3592), - [anon_sym_public] = ACTIONS(3592), - [anon_sym_private] = ACTIONS(3592), - [anon_sym_protected] = ACTIONS(3592), - [anon_sym_override] = ACTIONS(3592), - [anon_sym_module] = ACTIONS(3592), - [anon_sym_any] = ACTIONS(3592), - [anon_sym_number] = ACTIONS(3592), - [anon_sym_boolean] = ACTIONS(3592), - [anon_sym_string] = ACTIONS(3592), - [anon_sym_symbol] = ACTIONS(3592), - [anon_sym_object] = ACTIONS(3592), - [anon_sym_property] = ACTIONS(3592), - [anon_sym_signal] = ACTIONS(3592), - [anon_sym_on] = ACTIONS(3592), - [anon_sym_required] = ACTIONS(3592), - [anon_sym_component] = ACTIONS(3592), - [anon_sym_abstract] = ACTIONS(3592), - [anon_sym_interface] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1749] = { - [sym_comment] = STATE(1749), - [sym_identifier] = ACTIONS(3568), - [anon_sym_export] = ACTIONS(3568), - [anon_sym_type] = ACTIONS(3568), - [anon_sym_namespace] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3568), - [anon_sym_RBRACE] = ACTIONS(3568), - [anon_sym_typeof] = ACTIONS(3568), - [anon_sym_import] = ACTIONS(3568), - [anon_sym_from] = ACTIONS(3568), - [anon_sym_with] = ACTIONS(3568), - [anon_sym_var] = ACTIONS(3568), - [anon_sym_let] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_BANG] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_LPAREN] = ACTIONS(3568), - [anon_sym_await] = ACTIONS(3568), - [anon_sym_of] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_debugger] = ACTIONS(3568), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_SEMI] = ACTIONS(3568), - [anon_sym_yield] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_LTtemplate_GT] = ACTIONS(3568), - [anon_sym_DQUOTE] = ACTIONS(3568), - [anon_sym_SQUOTE] = ACTIONS(3568), - [anon_sym_class] = ACTIONS(3568), - [anon_sym_async] = ACTIONS(3568), - [anon_sym_function] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_using] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_SLASH] = ACTIONS(3568), - [anon_sym_LT] = ACTIONS(3568), - [anon_sym_TILDE] = ACTIONS(3568), - [anon_sym_void] = ACTIONS(3568), - [anon_sym_delete] = ACTIONS(3568), - [anon_sym_PLUS_PLUS] = ACTIONS(3568), - [anon_sym_DASH_DASH] = ACTIONS(3568), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3568), - [sym_number] = ACTIONS(3568), - [sym_private_property_identifier] = ACTIONS(3568), - [sym_this] = ACTIONS(3568), - [sym_super] = ACTIONS(3568), - [sym_true] = ACTIONS(3568), - [sym_false] = ACTIONS(3568), - [sym_null] = ACTIONS(3568), - [sym_undefined] = ACTIONS(3568), - [anon_sym_AT] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_readonly] = ACTIONS(3568), - [anon_sym_get] = ACTIONS(3568), - [anon_sym_set] = ACTIONS(3568), - [anon_sym_declare] = ACTIONS(3568), - [anon_sym_public] = ACTIONS(3568), - [anon_sym_private] = ACTIONS(3568), - [anon_sym_protected] = ACTIONS(3568), - [anon_sym_override] = ACTIONS(3568), - [anon_sym_module] = ACTIONS(3568), - [anon_sym_any] = ACTIONS(3568), - [anon_sym_number] = ACTIONS(3568), - [anon_sym_boolean] = ACTIONS(3568), - [anon_sym_string] = ACTIONS(3568), - [anon_sym_symbol] = ACTIONS(3568), - [anon_sym_object] = ACTIONS(3568), - [anon_sym_property] = ACTIONS(3568), - [anon_sym_signal] = ACTIONS(3568), - [anon_sym_on] = ACTIONS(3568), - [anon_sym_required] = ACTIONS(3568), - [anon_sym_component] = ACTIONS(3568), - [anon_sym_abstract] = ACTIONS(3568), - [anon_sym_interface] = ACTIONS(3568), - [anon_sym_enum] = ACTIONS(3568), + [1702] = { + [sym_comment] = STATE(1702), + [sym_identifier] = ACTIONS(2450), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_from] = ACTIONS(2450), + [anon_sym_var] = ACTIONS(2450), + [anon_sym_let] = ACTIONS(2450), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_else] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2450), + [anon_sym_function] = ACTIONS(2450), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2450), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2450), + [anon_sym_AT] = ACTIONS(2450), + [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_property] = ACTIONS(2450), + [anon_sym_signal] = ACTIONS(2450), + [anon_sym_on] = ACTIONS(2450), + [anon_sym_required] = ACTIONS(2450), + [anon_sym_component] = ACTIONS(2450), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [sym__automatic_semicolon] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2452), [sym_html_comment] = ACTIONS(5), }, - [1750] = { - [sym_comment] = STATE(1750), - [sym_identifier] = ACTIONS(3702), - [anon_sym_export] = ACTIONS(3702), - [anon_sym_type] = ACTIONS(3702), - [anon_sym_namespace] = ACTIONS(3702), - [anon_sym_LBRACE] = ACTIONS(3702), - [anon_sym_RBRACE] = ACTIONS(3702), - [anon_sym_typeof] = ACTIONS(3702), - [anon_sym_import] = ACTIONS(3702), - [anon_sym_from] = ACTIONS(3702), - [anon_sym_with] = ACTIONS(3702), - [anon_sym_var] = ACTIONS(3702), - [anon_sym_let] = ACTIONS(3702), - [anon_sym_const] = ACTIONS(3702), - [anon_sym_BANG] = ACTIONS(3702), - [anon_sym_if] = ACTIONS(3702), - [anon_sym_switch] = ACTIONS(3702), - [anon_sym_for] = ACTIONS(3702), - [anon_sym_LPAREN] = ACTIONS(3702), - [anon_sym_await] = ACTIONS(3702), - [anon_sym_of] = ACTIONS(3702), - [anon_sym_while] = ACTIONS(3702), - [anon_sym_do] = ACTIONS(3702), - [anon_sym_try] = ACTIONS(3702), - [anon_sym_break] = ACTIONS(3702), - [anon_sym_continue] = ACTIONS(3702), - [anon_sym_debugger] = ACTIONS(3702), - [anon_sym_return] = ACTIONS(3702), - [anon_sym_throw] = ACTIONS(3702), - [anon_sym_SEMI] = ACTIONS(3702), - [anon_sym_yield] = ACTIONS(3702), - [anon_sym_LBRACK] = ACTIONS(3702), - [anon_sym_LTtemplate_GT] = ACTIONS(3702), - [anon_sym_DQUOTE] = ACTIONS(3702), - [anon_sym_SQUOTE] = ACTIONS(3702), - [anon_sym_class] = ACTIONS(3702), - [anon_sym_async] = ACTIONS(3702), - [anon_sym_function] = ACTIONS(3702), - [anon_sym_new] = ACTIONS(3702), - [anon_sym_using] = ACTIONS(3702), - [anon_sym_PLUS] = ACTIONS(3702), - [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_SLASH] = ACTIONS(3702), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_TILDE] = ACTIONS(3702), - [anon_sym_void] = ACTIONS(3702), - [anon_sym_delete] = ACTIONS(3702), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_DASH_DASH] = ACTIONS(3702), + [1703] = { + [sym_comment] = STATE(1703), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_COMMA] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_in] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_DOT] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_QMARK_DOT] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_STAR_STAR] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_instanceof] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3702), - [sym_number] = ACTIONS(3702), - [sym_private_property_identifier] = ACTIONS(3702), - [sym_this] = ACTIONS(3702), - [sym_super] = ACTIONS(3702), - [sym_true] = ACTIONS(3702), - [sym_false] = ACTIONS(3702), - [sym_null] = ACTIONS(3702), - [sym_undefined] = ACTIONS(3702), - [anon_sym_AT] = ACTIONS(3702), - [anon_sym_static] = ACTIONS(3702), - [anon_sym_readonly] = ACTIONS(3702), - [anon_sym_get] = ACTIONS(3702), - [anon_sym_set] = ACTIONS(3702), - [anon_sym_declare] = ACTIONS(3702), - [anon_sym_public] = ACTIONS(3702), - [anon_sym_private] = ACTIONS(3702), - [anon_sym_protected] = ACTIONS(3702), - [anon_sym_override] = ACTIONS(3702), - [anon_sym_module] = ACTIONS(3702), - [anon_sym_any] = ACTIONS(3702), - [anon_sym_number] = ACTIONS(3702), - [anon_sym_boolean] = ACTIONS(3702), - [anon_sym_string] = ACTIONS(3702), - [anon_sym_symbol] = ACTIONS(3702), - [anon_sym_object] = ACTIONS(3702), - [anon_sym_property] = ACTIONS(3702), - [anon_sym_signal] = ACTIONS(3702), - [anon_sym_on] = ACTIONS(3702), - [anon_sym_required] = ACTIONS(3702), - [anon_sym_component] = ACTIONS(3702), - [anon_sym_abstract] = ACTIONS(3702), - [anon_sym_interface] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(3702), + [anon_sym_BQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_satisfies] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3810), + [sym__ternary_qmark] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, - [1751] = { - [sym_comment] = STATE(1751), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2466), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_typeof] = ACTIONS(2466), - [anon_sym_import] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_with] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_switch] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2466), - [anon_sym_await] = ACTIONS(2466), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_do] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_debugger] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_throw] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2466), - [anon_sym_LTtemplate_GT] = ACTIONS(2466), - [anon_sym_DQUOTE] = ACTIONS(2466), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_class] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_new] = ACTIONS(2466), - [anon_sym_using] = ACTIONS(2466), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_SLASH] = ACTIONS(2466), - [anon_sym_LT] = ACTIONS(2466), - [anon_sym_TILDE] = ACTIONS(2466), - [anon_sym_void] = ACTIONS(2466), - [anon_sym_delete] = ACTIONS(2466), - [anon_sym_PLUS_PLUS] = ACTIONS(2466), - [anon_sym_DASH_DASH] = ACTIONS(2466), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2466), - [sym_number] = ACTIONS(2466), - [sym_private_property_identifier] = ACTIONS(2466), - [sym_this] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_true] = ACTIONS(2466), - [sym_false] = ACTIONS(2466), - [sym_null] = ACTIONS(2466), - [sym_undefined] = ACTIONS(2466), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_abstract] = ACTIONS(2466), - [anon_sym_interface] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), + [1704] = { + [sym_comment] = STATE(1704), + [sym_identifier] = ACTIONS(2366), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_STAR] = ACTIONS(2366), + [anon_sym_default] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_namespace] = ACTIONS(2366), + [anon_sym_LBRACE] = ACTIONS(2366), + [anon_sym_COMMA] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_from] = ACTIONS(2366), + [anon_sym_var] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_BANG] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_in] = ACTIONS(2366), + [anon_sym_of] = ACTIONS(2366), + [anon_sym_SEMI] = ACTIONS(2366), + [anon_sym_LBRACK] = ACTIONS(2366), + [anon_sym_GT] = ACTIONS(2366), + [anon_sym_DOT] = ACTIONS(2366), + [anon_sym_async] = ACTIONS(2366), + [anon_sym_function] = ACTIONS(2366), + [anon_sym_QMARK_DOT] = ACTIONS(2366), + [anon_sym_AMP_AMP] = ACTIONS(2366), + [anon_sym_PIPE_PIPE] = ACTIONS(2366), + [anon_sym_GT_GT] = ACTIONS(2366), + [anon_sym_GT_GT_GT] = ACTIONS(2366), + [anon_sym_LT_LT] = ACTIONS(2366), + [anon_sym_AMP] = ACTIONS(2366), + [anon_sym_CARET] = ACTIONS(2366), + [anon_sym_PIPE] = ACTIONS(2366), + [anon_sym_PLUS] = ACTIONS(2366), + [anon_sym_DASH] = ACTIONS(2366), + [anon_sym_SLASH] = ACTIONS(2366), + [anon_sym_PERCENT] = ACTIONS(2366), + [anon_sym_STAR_STAR] = ACTIONS(2366), + [anon_sym_LT] = ACTIONS(2366), + [anon_sym_LT_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ] = ACTIONS(2366), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ] = ACTIONS(2366), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2366), + [anon_sym_GT_EQ] = ACTIONS(2366), + [anon_sym_QMARK_QMARK] = ACTIONS(2366), + [anon_sym_instanceof] = ACTIONS(2366), + [anon_sym_PLUS_PLUS] = ACTIONS(2366), + [anon_sym_DASH_DASH] = ACTIONS(2366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2366), + [anon_sym_AT] = ACTIONS(2366), + [anon_sym_static] = ACTIONS(2366), + [anon_sym_readonly] = ACTIONS(2366), + [anon_sym_get] = ACTIONS(2366), + [anon_sym_set] = ACTIONS(2366), + [anon_sym_declare] = ACTIONS(2366), + [anon_sym_public] = ACTIONS(2366), + [anon_sym_private] = ACTIONS(2366), + [anon_sym_protected] = ACTIONS(2366), + [anon_sym_override] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_any] = ACTIONS(2366), + [anon_sym_number] = ACTIONS(2366), + [anon_sym_boolean] = ACTIONS(2366), + [anon_sym_string] = ACTIONS(2366), + [anon_sym_symbol] = ACTIONS(2366), + [anon_sym_object] = ACTIONS(2366), + [anon_sym_property] = ACTIONS(2366), + [anon_sym_signal] = ACTIONS(2366), + [anon_sym_on] = ACTIONS(2366), + [anon_sym_required] = ACTIONS(2366), + [anon_sym_component] = ACTIONS(2366), + [anon_sym_satisfies] = ACTIONS(2366), + [anon_sym_enum] = ACTIONS(2366), + [sym__automatic_semicolon] = ACTIONS(2368), + [sym__ternary_qmark] = ACTIONS(2368), [sym_html_comment] = ACTIONS(5), }, - [1752] = { - [sym_comment] = STATE(1752), - [sym_identifier] = ACTIONS(3590), - [anon_sym_export] = ACTIONS(3590), - [anon_sym_type] = ACTIONS(3590), - [anon_sym_namespace] = ACTIONS(3590), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_RBRACE] = ACTIONS(3590), - [anon_sym_typeof] = ACTIONS(3590), - [anon_sym_import] = ACTIONS(3590), - [anon_sym_from] = ACTIONS(3590), - [anon_sym_with] = ACTIONS(3590), - [anon_sym_var] = ACTIONS(3590), - [anon_sym_let] = ACTIONS(3590), - [anon_sym_const] = ACTIONS(3590), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_if] = ACTIONS(3590), - [anon_sym_switch] = ACTIONS(3590), - [anon_sym_for] = ACTIONS(3590), - [anon_sym_LPAREN] = ACTIONS(3590), - [anon_sym_await] = ACTIONS(3590), - [anon_sym_of] = ACTIONS(3590), - [anon_sym_while] = ACTIONS(3590), - [anon_sym_do] = ACTIONS(3590), - [anon_sym_try] = ACTIONS(3590), - [anon_sym_break] = ACTIONS(3590), - [anon_sym_continue] = ACTIONS(3590), - [anon_sym_debugger] = ACTIONS(3590), - [anon_sym_return] = ACTIONS(3590), - [anon_sym_throw] = ACTIONS(3590), - [anon_sym_SEMI] = ACTIONS(3590), - [anon_sym_yield] = ACTIONS(3590), - [anon_sym_LBRACK] = ACTIONS(3590), - [anon_sym_LTtemplate_GT] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [anon_sym_SQUOTE] = ACTIONS(3590), - [anon_sym_class] = ACTIONS(3590), - [anon_sym_async] = ACTIONS(3590), - [anon_sym_function] = ACTIONS(3590), - [anon_sym_new] = ACTIONS(3590), - [anon_sym_using] = ACTIONS(3590), - [anon_sym_PLUS] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3590), - [anon_sym_SLASH] = ACTIONS(3590), - [anon_sym_LT] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_void] = ACTIONS(3590), - [anon_sym_delete] = ACTIONS(3590), - [anon_sym_PLUS_PLUS] = ACTIONS(3590), - [anon_sym_DASH_DASH] = ACTIONS(3590), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3590), - [sym_number] = ACTIONS(3590), - [sym_private_property_identifier] = ACTIONS(3590), - [sym_this] = ACTIONS(3590), - [sym_super] = ACTIONS(3590), - [sym_true] = ACTIONS(3590), - [sym_false] = ACTIONS(3590), - [sym_null] = ACTIONS(3590), - [sym_undefined] = ACTIONS(3590), - [anon_sym_AT] = ACTIONS(3590), - [anon_sym_static] = ACTIONS(3590), - [anon_sym_readonly] = ACTIONS(3590), - [anon_sym_get] = ACTIONS(3590), - [anon_sym_set] = ACTIONS(3590), - [anon_sym_declare] = ACTIONS(3590), - [anon_sym_public] = ACTIONS(3590), - [anon_sym_private] = ACTIONS(3590), - [anon_sym_protected] = ACTIONS(3590), - [anon_sym_override] = ACTIONS(3590), - [anon_sym_module] = ACTIONS(3590), - [anon_sym_any] = ACTIONS(3590), - [anon_sym_number] = ACTIONS(3590), - [anon_sym_boolean] = ACTIONS(3590), - [anon_sym_string] = ACTIONS(3590), - [anon_sym_symbol] = ACTIONS(3590), - [anon_sym_object] = ACTIONS(3590), - [anon_sym_property] = ACTIONS(3590), - [anon_sym_signal] = ACTIONS(3590), - [anon_sym_on] = ACTIONS(3590), - [anon_sym_required] = ACTIONS(3590), - [anon_sym_component] = ACTIONS(3590), - [anon_sym_abstract] = ACTIONS(3590), - [anon_sym_interface] = ACTIONS(3590), - [anon_sym_enum] = ACTIONS(3590), + [1705] = { + [sym_comment] = STATE(1705), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_as] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_from] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_else] = ACTIONS(2386), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_of] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_GT] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_function] = ACTIONS(2386), + [anon_sym_QMARK_DOT] = ACTIONS(2388), + [anon_sym_AMP_AMP] = ACTIONS(2388), + [anon_sym_PIPE_PIPE] = ACTIONS(2388), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2388), + [anon_sym_LT_LT] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2388), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2388), + [anon_sym_GT_EQ] = ACTIONS(2388), + [anon_sym_QMARK_QMARK] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(2388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_readonly] = ACTIONS(2386), + [anon_sym_get] = ACTIONS(2386), + [anon_sym_set] = ACTIONS(2386), + [anon_sym_declare] = ACTIONS(2386), + [anon_sym_public] = ACTIONS(2386), + [anon_sym_private] = ACTIONS(2386), + [anon_sym_protected] = ACTIONS(2386), + [anon_sym_override] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_any] = ACTIONS(2386), + [anon_sym_number] = ACTIONS(2386), + [anon_sym_boolean] = ACTIONS(2386), + [anon_sym_string] = ACTIONS(2386), + [anon_sym_symbol] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(2386), + [anon_sym_property] = ACTIONS(2386), + [anon_sym_signal] = ACTIONS(2386), + [anon_sym_on] = ACTIONS(2386), + [anon_sym_required] = ACTIONS(2386), + [anon_sym_component] = ACTIONS(2386), + [anon_sym_satisfies] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2386), + [sym__automatic_semicolon] = ACTIONS(3812), + [sym__ternary_qmark] = ACTIONS(2392), [sym_html_comment] = ACTIONS(5), }, - [1753] = { - [sym_comment] = STATE(1753), - [sym_identifier] = ACTIONS(3588), - [anon_sym_export] = ACTIONS(3588), - [anon_sym_type] = ACTIONS(3588), - [anon_sym_namespace] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3588), - [anon_sym_RBRACE] = ACTIONS(3588), - [anon_sym_typeof] = ACTIONS(3588), - [anon_sym_import] = ACTIONS(3588), - [anon_sym_from] = ACTIONS(3588), - [anon_sym_with] = ACTIONS(3588), - [anon_sym_var] = ACTIONS(3588), - [anon_sym_let] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_BANG] = ACTIONS(3588), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_switch] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3588), - [anon_sym_await] = ACTIONS(3588), - [anon_sym_of] = ACTIONS(3588), - [anon_sym_while] = ACTIONS(3588), - [anon_sym_do] = ACTIONS(3588), - [anon_sym_try] = ACTIONS(3588), - [anon_sym_break] = ACTIONS(3588), - [anon_sym_continue] = ACTIONS(3588), - [anon_sym_debugger] = ACTIONS(3588), - [anon_sym_return] = ACTIONS(3588), - [anon_sym_throw] = ACTIONS(3588), - [anon_sym_SEMI] = ACTIONS(3588), - [anon_sym_yield] = ACTIONS(3588), - [anon_sym_LBRACK] = ACTIONS(3588), - [anon_sym_LTtemplate_GT] = ACTIONS(3588), - [anon_sym_DQUOTE] = ACTIONS(3588), - [anon_sym_SQUOTE] = ACTIONS(3588), - [anon_sym_class] = ACTIONS(3588), - [anon_sym_async] = ACTIONS(3588), - [anon_sym_function] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3588), - [anon_sym_using] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_SLASH] = ACTIONS(3588), - [anon_sym_LT] = ACTIONS(3588), - [anon_sym_TILDE] = ACTIONS(3588), - [anon_sym_void] = ACTIONS(3588), - [anon_sym_delete] = ACTIONS(3588), - [anon_sym_PLUS_PLUS] = ACTIONS(3588), - [anon_sym_DASH_DASH] = ACTIONS(3588), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3588), - [sym_number] = ACTIONS(3588), - [sym_private_property_identifier] = ACTIONS(3588), - [sym_this] = ACTIONS(3588), - [sym_super] = ACTIONS(3588), - [sym_true] = ACTIONS(3588), - [sym_false] = ACTIONS(3588), - [sym_null] = ACTIONS(3588), - [sym_undefined] = ACTIONS(3588), - [anon_sym_AT] = ACTIONS(3588), - [anon_sym_static] = ACTIONS(3588), - [anon_sym_readonly] = ACTIONS(3588), - [anon_sym_get] = ACTIONS(3588), - [anon_sym_set] = ACTIONS(3588), - [anon_sym_declare] = ACTIONS(3588), - [anon_sym_public] = ACTIONS(3588), - [anon_sym_private] = ACTIONS(3588), - [anon_sym_protected] = ACTIONS(3588), - [anon_sym_override] = ACTIONS(3588), - [anon_sym_module] = ACTIONS(3588), - [anon_sym_any] = ACTIONS(3588), - [anon_sym_number] = ACTIONS(3588), - [anon_sym_boolean] = ACTIONS(3588), - [anon_sym_string] = ACTIONS(3588), - [anon_sym_symbol] = ACTIONS(3588), - [anon_sym_object] = ACTIONS(3588), - [anon_sym_property] = ACTIONS(3588), - [anon_sym_signal] = ACTIONS(3588), - [anon_sym_on] = ACTIONS(3588), - [anon_sym_required] = ACTIONS(3588), - [anon_sym_component] = ACTIONS(3588), - [anon_sym_abstract] = ACTIONS(3588), - [anon_sym_interface] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), + [1706] = { + [sym_comment] = STATE(1706), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_as] = ACTIONS(2444), + [anon_sym_namespace] = ACTIONS(2442), + [anon_sym_COMMA] = ACTIONS(2444), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_from] = ACTIONS(2442), + [anon_sym_var] = ACTIONS(2442), + [anon_sym_let] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_else] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2444), + [anon_sym_in] = ACTIONS(2444), + [anon_sym_of] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_DOT] = ACTIONS(2444), + [anon_sym_async] = ACTIONS(2442), + [anon_sym_function] = ACTIONS(2442), + [anon_sym_QMARK_DOT] = ACTIONS(2444), + [anon_sym_AMP_AMP] = ACTIONS(2444), + [anon_sym_PIPE_PIPE] = ACTIONS(2444), + [anon_sym_GT_GT] = ACTIONS(2444), + [anon_sym_GT_GT_GT] = ACTIONS(2444), + [anon_sym_LT_LT] = ACTIONS(2444), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_SLASH] = ACTIONS(2444), + [anon_sym_PERCENT] = ACTIONS(2444), + [anon_sym_STAR_STAR] = ACTIONS(2444), + [anon_sym_LT] = ACTIONS(2444), + [anon_sym_LT_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), + [anon_sym_GT_EQ] = ACTIONS(2444), + [anon_sym_QMARK_QMARK] = ACTIONS(2444), + [anon_sym_instanceof] = ACTIONS(2444), + [anon_sym_PLUS_PLUS] = ACTIONS(2444), + [anon_sym_DASH_DASH] = ACTIONS(2444), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2444), + [anon_sym_AT] = ACTIONS(2442), + [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_property] = ACTIONS(2442), + [anon_sym_signal] = ACTIONS(2442), + [anon_sym_on] = ACTIONS(2442), + [anon_sym_required] = ACTIONS(2442), + [anon_sym_component] = ACTIONS(2442), + [anon_sym_satisfies] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2442), + [sym__automatic_semicolon] = ACTIONS(3814), + [sym__ternary_qmark] = ACTIONS(2448), [sym_html_comment] = ACTIONS(5), }, - [1754] = { - [sym_comment] = STATE(1754), - [sym_identifier] = ACTIONS(3700), - [anon_sym_export] = ACTIONS(3700), - [anon_sym_type] = ACTIONS(3700), - [anon_sym_namespace] = ACTIONS(3700), - [anon_sym_LBRACE] = ACTIONS(3700), - [anon_sym_RBRACE] = ACTIONS(3700), - [anon_sym_typeof] = ACTIONS(3700), - [anon_sym_import] = ACTIONS(3700), - [anon_sym_from] = ACTIONS(3700), - [anon_sym_with] = ACTIONS(3700), - [anon_sym_var] = ACTIONS(3700), - [anon_sym_let] = ACTIONS(3700), - [anon_sym_const] = ACTIONS(3700), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_if] = ACTIONS(3700), - [anon_sym_switch] = ACTIONS(3700), - [anon_sym_for] = ACTIONS(3700), - [anon_sym_LPAREN] = ACTIONS(3700), - [anon_sym_await] = ACTIONS(3700), - [anon_sym_of] = ACTIONS(3700), - [anon_sym_while] = ACTIONS(3700), - [anon_sym_do] = ACTIONS(3700), - [anon_sym_try] = ACTIONS(3700), - [anon_sym_break] = ACTIONS(3700), - [anon_sym_continue] = ACTIONS(3700), - [anon_sym_debugger] = ACTIONS(3700), - [anon_sym_return] = ACTIONS(3700), - [anon_sym_throw] = ACTIONS(3700), - [anon_sym_SEMI] = ACTIONS(3700), - [anon_sym_yield] = ACTIONS(3700), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_LTtemplate_GT] = ACTIONS(3700), - [anon_sym_DQUOTE] = ACTIONS(3700), - [anon_sym_SQUOTE] = ACTIONS(3700), - [anon_sym_class] = ACTIONS(3700), - [anon_sym_async] = ACTIONS(3700), - [anon_sym_function] = ACTIONS(3700), - [anon_sym_new] = ACTIONS(3700), - [anon_sym_using] = ACTIONS(3700), - [anon_sym_PLUS] = ACTIONS(3700), - [anon_sym_DASH] = ACTIONS(3700), - [anon_sym_SLASH] = ACTIONS(3700), - [anon_sym_LT] = ACTIONS(3700), - [anon_sym_TILDE] = ACTIONS(3700), - [anon_sym_void] = ACTIONS(3700), - [anon_sym_delete] = ACTIONS(3700), - [anon_sym_PLUS_PLUS] = ACTIONS(3700), - [anon_sym_DASH_DASH] = ACTIONS(3700), + [1707] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6753), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1707), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6753), + [sym_pair] = STATE(6753), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6756), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3816), + [anon_sym_export] = ACTIONS(3818), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3816), + [anon_sym_namespace] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3820), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3816), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3822), + [anon_sym_new] = ACTIONS(3824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3700), - [sym_number] = ACTIONS(3700), - [sym_private_property_identifier] = ACTIONS(3700), - [sym_this] = ACTIONS(3700), - [sym_super] = ACTIONS(3700), - [sym_true] = ACTIONS(3700), - [sym_false] = ACTIONS(3700), - [sym_null] = ACTIONS(3700), - [sym_undefined] = ACTIONS(3700), - [anon_sym_AT] = ACTIONS(3700), - [anon_sym_static] = ACTIONS(3700), - [anon_sym_readonly] = ACTIONS(3700), - [anon_sym_get] = ACTIONS(3700), - [anon_sym_set] = ACTIONS(3700), - [anon_sym_declare] = ACTIONS(3700), - [anon_sym_public] = ACTIONS(3700), - [anon_sym_private] = ACTIONS(3700), - [anon_sym_protected] = ACTIONS(3700), - [anon_sym_override] = ACTIONS(3700), - [anon_sym_module] = ACTIONS(3700), - [anon_sym_any] = ACTIONS(3700), - [anon_sym_number] = ACTIONS(3700), - [anon_sym_boolean] = ACTIONS(3700), - [anon_sym_string] = ACTIONS(3700), - [anon_sym_symbol] = ACTIONS(3700), - [anon_sym_object] = ACTIONS(3700), - [anon_sym_property] = ACTIONS(3700), - [anon_sym_signal] = ACTIONS(3700), - [anon_sym_on] = ACTIONS(3700), - [anon_sym_required] = ACTIONS(3700), - [anon_sym_component] = ACTIONS(3700), - [anon_sym_abstract] = ACTIONS(3700), - [anon_sym_interface] = ACTIONS(3700), - [anon_sym_enum] = ACTIONS(3700), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3826), + [anon_sym_readonly] = ACTIONS(3828), + [anon_sym_get] = ACTIONS(3830), + [anon_sym_set] = ACTIONS(3830), + [anon_sym_declare] = ACTIONS(3816), + [anon_sym_public] = ACTIONS(3832), + [anon_sym_private] = ACTIONS(3832), + [anon_sym_protected] = ACTIONS(3832), + [anon_sym_override] = ACTIONS(3834), + [anon_sym_module] = ACTIONS(3816), + [anon_sym_any] = ACTIONS(3816), + [anon_sym_number] = ACTIONS(3816), + [anon_sym_boolean] = ACTIONS(3816), + [anon_sym_string] = ACTIONS(3816), + [anon_sym_symbol] = ACTIONS(3816), + [anon_sym_object] = ACTIONS(3816), + [anon_sym_property] = ACTIONS(3816), + [anon_sym_signal] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_required] = ACTIONS(3816), + [anon_sym_component] = ACTIONS(3816), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1755] = { - [sym_comment] = STATE(1755), - [sym_identifier] = ACTIONS(3550), - [anon_sym_export] = ACTIONS(3550), - [anon_sym_type] = ACTIONS(3550), - [anon_sym_namespace] = ACTIONS(3550), - [anon_sym_LBRACE] = ACTIONS(3550), - [anon_sym_RBRACE] = ACTIONS(3550), - [anon_sym_typeof] = ACTIONS(3550), - [anon_sym_import] = ACTIONS(3550), - [anon_sym_from] = ACTIONS(3550), - [anon_sym_with] = ACTIONS(3550), - [anon_sym_var] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_const] = ACTIONS(3550), - [anon_sym_BANG] = ACTIONS(3550), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_switch] = ACTIONS(3550), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_LPAREN] = ACTIONS(3550), - [anon_sym_await] = ACTIONS(3550), - [anon_sym_of] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_break] = ACTIONS(3550), - [anon_sym_continue] = ACTIONS(3550), - [anon_sym_debugger] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_throw] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3550), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_LBRACK] = ACTIONS(3550), - [anon_sym_LTtemplate_GT] = ACTIONS(3550), - [anon_sym_DQUOTE] = ACTIONS(3550), - [anon_sym_SQUOTE] = ACTIONS(3550), - [anon_sym_class] = ACTIONS(3550), - [anon_sym_async] = ACTIONS(3550), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_using] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_SLASH] = ACTIONS(3550), - [anon_sym_LT] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3550), - [anon_sym_void] = ACTIONS(3550), - [anon_sym_delete] = ACTIONS(3550), - [anon_sym_PLUS_PLUS] = ACTIONS(3550), - [anon_sym_DASH_DASH] = ACTIONS(3550), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3550), - [sym_number] = ACTIONS(3550), - [sym_private_property_identifier] = ACTIONS(3550), - [sym_this] = ACTIONS(3550), - [sym_super] = ACTIONS(3550), - [sym_true] = ACTIONS(3550), - [sym_false] = ACTIONS(3550), - [sym_null] = ACTIONS(3550), - [sym_undefined] = ACTIONS(3550), - [anon_sym_AT] = ACTIONS(3550), - [anon_sym_static] = ACTIONS(3550), - [anon_sym_readonly] = ACTIONS(3550), - [anon_sym_get] = ACTIONS(3550), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_declare] = ACTIONS(3550), - [anon_sym_public] = ACTIONS(3550), - [anon_sym_private] = ACTIONS(3550), - [anon_sym_protected] = ACTIONS(3550), - [anon_sym_override] = ACTIONS(3550), - [anon_sym_module] = ACTIONS(3550), - [anon_sym_any] = ACTIONS(3550), - [anon_sym_number] = ACTIONS(3550), - [anon_sym_boolean] = ACTIONS(3550), - [anon_sym_string] = ACTIONS(3550), - [anon_sym_symbol] = ACTIONS(3550), - [anon_sym_object] = ACTIONS(3550), - [anon_sym_property] = ACTIONS(3550), - [anon_sym_signal] = ACTIONS(3550), - [anon_sym_on] = ACTIONS(3550), - [anon_sym_required] = ACTIONS(3550), - [anon_sym_component] = ACTIONS(3550), - [anon_sym_abstract] = ACTIONS(3550), - [anon_sym_interface] = ACTIONS(3550), - [anon_sym_enum] = ACTIONS(3550), + [1708] = { + [sym_comment] = STATE(1708), + [sym_identifier] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_as] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_COMMA] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_from] = ACTIONS(2474), + [anon_sym_var] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_else] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_in] = ACTIONS(2476), + [anon_sym_of] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(2474), + [anon_sym_QMARK_DOT] = ACTIONS(2476), + [anon_sym_AMP_AMP] = ACTIONS(2476), + [anon_sym_PIPE_PIPE] = ACTIONS(2476), + [anon_sym_GT_GT] = ACTIONS(2476), + [anon_sym_GT_GT_GT] = ACTIONS(2476), + [anon_sym_LT_LT] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_SLASH] = ACTIONS(2476), + [anon_sym_PERCENT] = ACTIONS(2476), + [anon_sym_STAR_STAR] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_LT_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2476), + [anon_sym_GT_EQ] = ACTIONS(2476), + [anon_sym_QMARK_QMARK] = ACTIONS(2476), + [anon_sym_instanceof] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2474), + [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_property] = ACTIONS(2474), + [anon_sym_signal] = ACTIONS(2474), + [anon_sym_on] = ACTIONS(2474), + [anon_sym_required] = ACTIONS(2474), + [anon_sym_component] = ACTIONS(2474), + [anon_sym_satisfies] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2474), + [sym__automatic_semicolon] = ACTIONS(3836), + [sym__ternary_qmark] = ACTIONS(2480), [sym_html_comment] = ACTIONS(5), }, - [1756] = { - [sym_comment] = STATE(1756), - [sym_identifier] = ACTIONS(3586), - [anon_sym_export] = ACTIONS(3586), - [anon_sym_type] = ACTIONS(3586), - [anon_sym_namespace] = ACTIONS(3586), - [anon_sym_LBRACE] = ACTIONS(3586), - [anon_sym_RBRACE] = ACTIONS(3586), - [anon_sym_typeof] = ACTIONS(3586), - [anon_sym_import] = ACTIONS(3586), - [anon_sym_from] = ACTIONS(3586), - [anon_sym_with] = ACTIONS(3586), - [anon_sym_var] = ACTIONS(3586), - [anon_sym_let] = ACTIONS(3586), - [anon_sym_const] = ACTIONS(3586), - [anon_sym_BANG] = ACTIONS(3586), - [anon_sym_if] = ACTIONS(3586), - [anon_sym_switch] = ACTIONS(3586), - [anon_sym_for] = ACTIONS(3586), - [anon_sym_LPAREN] = ACTIONS(3586), - [anon_sym_await] = ACTIONS(3586), - [anon_sym_of] = ACTIONS(3586), - [anon_sym_while] = ACTIONS(3586), - [anon_sym_do] = ACTIONS(3586), - [anon_sym_try] = ACTIONS(3586), - [anon_sym_break] = ACTIONS(3586), - [anon_sym_continue] = ACTIONS(3586), - [anon_sym_debugger] = ACTIONS(3586), - [anon_sym_return] = ACTIONS(3586), - [anon_sym_throw] = ACTIONS(3586), - [anon_sym_SEMI] = ACTIONS(3586), - [anon_sym_yield] = ACTIONS(3586), - [anon_sym_LBRACK] = ACTIONS(3586), - [anon_sym_LTtemplate_GT] = ACTIONS(3586), - [anon_sym_DQUOTE] = ACTIONS(3586), - [anon_sym_SQUOTE] = ACTIONS(3586), - [anon_sym_class] = ACTIONS(3586), - [anon_sym_async] = ACTIONS(3586), - [anon_sym_function] = ACTIONS(3586), - [anon_sym_new] = ACTIONS(3586), - [anon_sym_using] = ACTIONS(3586), - [anon_sym_PLUS] = ACTIONS(3586), - [anon_sym_DASH] = ACTIONS(3586), - [anon_sym_SLASH] = ACTIONS(3586), - [anon_sym_LT] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3586), - [anon_sym_void] = ACTIONS(3586), - [anon_sym_delete] = ACTIONS(3586), - [anon_sym_PLUS_PLUS] = ACTIONS(3586), - [anon_sym_DASH_DASH] = ACTIONS(3586), + [1709] = { + [sym_comment] = STATE(1709), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2348), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2350), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_SLASH] = ACTIONS(2350), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_PLUS_PLUS] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2350), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3586), - [sym_number] = ACTIONS(3586), - [sym_private_property_identifier] = ACTIONS(3586), - [sym_this] = ACTIONS(3586), - [sym_super] = ACTIONS(3586), - [sym_true] = ACTIONS(3586), - [sym_false] = ACTIONS(3586), - [sym_null] = ACTIONS(3586), - [sym_undefined] = ACTIONS(3586), - [anon_sym_AT] = ACTIONS(3586), - [anon_sym_static] = ACTIONS(3586), - [anon_sym_readonly] = ACTIONS(3586), - [anon_sym_get] = ACTIONS(3586), - [anon_sym_set] = ACTIONS(3586), - [anon_sym_declare] = ACTIONS(3586), - [anon_sym_public] = ACTIONS(3586), - [anon_sym_private] = ACTIONS(3586), - [anon_sym_protected] = ACTIONS(3586), - [anon_sym_override] = ACTIONS(3586), - [anon_sym_module] = ACTIONS(3586), - [anon_sym_any] = ACTIONS(3586), - [anon_sym_number] = ACTIONS(3586), - [anon_sym_boolean] = ACTIONS(3586), - [anon_sym_string] = ACTIONS(3586), - [anon_sym_symbol] = ACTIONS(3586), - [anon_sym_object] = ACTIONS(3586), - [anon_sym_property] = ACTIONS(3586), - [anon_sym_signal] = ACTIONS(3586), - [anon_sym_on] = ACTIONS(3586), - [anon_sym_required] = ACTIONS(3586), - [anon_sym_component] = ACTIONS(3586), - [anon_sym_abstract] = ACTIONS(3586), - [anon_sym_interface] = ACTIONS(3586), - [anon_sym_enum] = ACTIONS(3586), + [anon_sym_BQUOTE] = ACTIONS(2350), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(3838), + [sym__ternary_qmark] = ACTIONS(2354), [sym_html_comment] = ACTIONS(5), }, - [1757] = { - [sym_comment] = STATE(1757), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_typeof] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_with] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_const] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_for] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_await] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_while] = ACTIONS(2328), - [anon_sym_do] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_debugger] = ACTIONS(2328), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LTtemplate_GT] = ACTIONS(2328), - [anon_sym_DQUOTE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2328), - [anon_sym_void] = ACTIONS(2328), - [anon_sym_delete] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [sym_number] = ACTIONS(2328), - [sym_private_property_identifier] = ACTIONS(2328), - [sym_this] = ACTIONS(2328), - [sym_super] = ACTIONS(2328), - [sym_true] = ACTIONS(2328), - [sym_false] = ACTIONS(2328), - [sym_null] = ACTIONS(2328), - [sym_undefined] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), + [1710] = { + [sym_comment] = STATE(1710), + [sym_identifier] = ACTIONS(2482), + [anon_sym_export] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_default] = ACTIONS(2482), + [anon_sym_type] = ACTIONS(2482), + [anon_sym_as] = ACTIONS(2482), + [anon_sym_namespace] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_COMMA] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_from] = ACTIONS(2482), + [anon_sym_var] = ACTIONS(2482), + [anon_sym_let] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_in] = ACTIONS(2482), + [anon_sym_of] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_GT] = ACTIONS(2482), + [anon_sym_DOT] = ACTIONS(2482), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(2482), + [anon_sym_QMARK_DOT] = ACTIONS(2482), + [anon_sym_AMP_AMP] = ACTIONS(2482), + [anon_sym_PIPE_PIPE] = ACTIONS(2482), + [anon_sym_GT_GT] = ACTIONS(2482), + [anon_sym_GT_GT_GT] = ACTIONS(2482), + [anon_sym_LT_LT] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_CARET] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_PLUS] = ACTIONS(2482), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_SLASH] = ACTIONS(2482), + [anon_sym_PERCENT] = ACTIONS(2482), + [anon_sym_STAR_STAR] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_LT_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ] = ACTIONS(2482), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2482), + [anon_sym_GT_EQ] = ACTIONS(2482), + [anon_sym_QMARK_QMARK] = ACTIONS(2482), + [anon_sym_instanceof] = ACTIONS(2482), + [anon_sym_PLUS_PLUS] = ACTIONS(2482), + [anon_sym_DASH_DASH] = ACTIONS(2482), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2482), + [anon_sym_AT] = ACTIONS(2482), + [anon_sym_static] = ACTIONS(2482), + [anon_sym_readonly] = ACTIONS(2482), + [anon_sym_get] = ACTIONS(2482), + [anon_sym_set] = ACTIONS(2482), + [anon_sym_declare] = ACTIONS(2482), + [anon_sym_public] = ACTIONS(2482), + [anon_sym_private] = ACTIONS(2482), + [anon_sym_protected] = ACTIONS(2482), + [anon_sym_override] = ACTIONS(2482), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_any] = ACTIONS(2482), + [anon_sym_number] = ACTIONS(2482), + [anon_sym_boolean] = ACTIONS(2482), + [anon_sym_string] = ACTIONS(2482), + [anon_sym_symbol] = ACTIONS(2482), + [anon_sym_object] = ACTIONS(2482), + [anon_sym_property] = ACTIONS(2482), + [anon_sym_signal] = ACTIONS(2482), + [anon_sym_on] = ACTIONS(2482), + [anon_sym_required] = ACTIONS(2482), + [anon_sym_component] = ACTIONS(2482), + [anon_sym_satisfies] = ACTIONS(2482), + [anon_sym_enum] = ACTIONS(2482), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym__ternary_qmark] = ACTIONS(2484), [sym_html_comment] = ACTIONS(5), }, - [1758] = { - [sym_comment] = STATE(1758), - [sym_identifier] = ACTIONS(3560), - [anon_sym_export] = ACTIONS(3560), - [anon_sym_type] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3560), - [anon_sym_RBRACE] = ACTIONS(3560), - [anon_sym_typeof] = ACTIONS(3560), - [anon_sym_import] = ACTIONS(3560), - [anon_sym_from] = ACTIONS(3560), - [anon_sym_with] = ACTIONS(3560), - [anon_sym_var] = ACTIONS(3560), - [anon_sym_let] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_BANG] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_LPAREN] = ACTIONS(3560), - [anon_sym_await] = ACTIONS(3560), - [anon_sym_of] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_debugger] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3560), - [anon_sym_yield] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_LTtemplate_GT] = ACTIONS(3560), - [anon_sym_DQUOTE] = ACTIONS(3560), - [anon_sym_SQUOTE] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_async] = ACTIONS(3560), - [anon_sym_function] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3560), - [anon_sym_TILDE] = ACTIONS(3560), - [anon_sym_void] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_PLUS_PLUS] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3560), + [1711] = { + [sym_comment] = STATE(1711), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_COMMA] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_else] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_in] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_DOT] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_QMARK_DOT] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_STAR_STAR] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_instanceof] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3560), - [sym_number] = ACTIONS(3560), - [sym_private_property_identifier] = ACTIONS(3560), - [sym_this] = ACTIONS(3560), - [sym_super] = ACTIONS(3560), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [sym_null] = ACTIONS(3560), - [sym_undefined] = ACTIONS(3560), - [anon_sym_AT] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_readonly] = ACTIONS(3560), - [anon_sym_get] = ACTIONS(3560), - [anon_sym_set] = ACTIONS(3560), - [anon_sym_declare] = ACTIONS(3560), - [anon_sym_public] = ACTIONS(3560), - [anon_sym_private] = ACTIONS(3560), - [anon_sym_protected] = ACTIONS(3560), - [anon_sym_override] = ACTIONS(3560), - [anon_sym_module] = ACTIONS(3560), - [anon_sym_any] = ACTIONS(3560), - [anon_sym_number] = ACTIONS(3560), - [anon_sym_boolean] = ACTIONS(3560), - [anon_sym_string] = ACTIONS(3560), - [anon_sym_symbol] = ACTIONS(3560), - [anon_sym_object] = ACTIONS(3560), - [anon_sym_property] = ACTIONS(3560), - [anon_sym_signal] = ACTIONS(3560), - [anon_sym_on] = ACTIONS(3560), - [anon_sym_required] = ACTIONS(3560), - [anon_sym_component] = ACTIONS(3560), - [anon_sym_abstract] = ACTIONS(3560), - [anon_sym_interface] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), + [anon_sym_BQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_satisfies] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym__ternary_qmark] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, - [1759] = { - [sym_comment] = STATE(1759), - [sym_identifier] = ACTIONS(3604), - [anon_sym_export] = ACTIONS(3604), - [anon_sym_type] = ACTIONS(3604), - [anon_sym_namespace] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3604), - [anon_sym_RBRACE] = ACTIONS(3604), - [anon_sym_typeof] = ACTIONS(3604), - [anon_sym_import] = ACTIONS(3604), - [anon_sym_from] = ACTIONS(3604), - [anon_sym_with] = ACTIONS(3604), - [anon_sym_var] = ACTIONS(3604), - [anon_sym_let] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_if] = ACTIONS(3604), - [anon_sym_switch] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3604), - [anon_sym_LPAREN] = ACTIONS(3604), - [anon_sym_await] = ACTIONS(3604), - [anon_sym_of] = ACTIONS(3604), - [anon_sym_while] = ACTIONS(3604), - [anon_sym_do] = ACTIONS(3604), - [anon_sym_try] = ACTIONS(3604), - [anon_sym_break] = ACTIONS(3604), - [anon_sym_continue] = ACTIONS(3604), - [anon_sym_debugger] = ACTIONS(3604), - [anon_sym_return] = ACTIONS(3604), - [anon_sym_throw] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3604), - [anon_sym_yield] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_LTtemplate_GT] = ACTIONS(3604), - [anon_sym_DQUOTE] = ACTIONS(3604), - [anon_sym_SQUOTE] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_async] = ACTIONS(3604), - [anon_sym_function] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(3604), - [anon_sym_DASH] = ACTIONS(3604), - [anon_sym_SLASH] = ACTIONS(3604), - [anon_sym_LT] = ACTIONS(3604), - [anon_sym_TILDE] = ACTIONS(3604), - [anon_sym_void] = ACTIONS(3604), - [anon_sym_delete] = ACTIONS(3604), - [anon_sym_PLUS_PLUS] = ACTIONS(3604), - [anon_sym_DASH_DASH] = ACTIONS(3604), + [1712] = { + [sym_comment] = STATE(1712), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_EQ] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2298), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_in] = ACTIONS(2298), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_GT] = ACTIONS(2298), + [anon_sym_DOT] = ACTIONS(2298), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2298), + [anon_sym_AMP_AMP] = ACTIONS(2298), + [anon_sym_PIPE_PIPE] = ACTIONS(2298), + [anon_sym_GT_GT] = ACTIONS(2298), + [anon_sym_GT_GT_GT] = ACTIONS(2298), + [anon_sym_LT_LT] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_CARET] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_PLUS] = ACTIONS(2298), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_SLASH] = ACTIONS(2298), + [anon_sym_PERCENT] = ACTIONS(2298), + [anon_sym_STAR_STAR] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_LT_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ] = ACTIONS(2298), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ] = ACTIONS(2298), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2298), + [anon_sym_GT_EQ] = ACTIONS(2298), + [anon_sym_QMARK_QMARK] = ACTIONS(2298), + [anon_sym_instanceof] = ACTIONS(2298), + [anon_sym_PLUS_PLUS] = ACTIONS(2298), + [anon_sym_DASH_DASH] = ACTIONS(2298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2298), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2298), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3840), + [sym__ternary_qmark] = ACTIONS(2304), + [sym_html_comment] = ACTIONS(5), + }, + [1713] = { + [sym_comment] = STATE(1713), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_default] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_as] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_COMMA] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_else] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_in] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_GT] = ACTIONS(2434), + [anon_sym_DOT] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_QMARK_DOT] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_PIPE_PIPE] = ACTIONS(2434), + [anon_sym_GT_GT] = ACTIONS(2434), + [anon_sym_GT_GT_GT] = ACTIONS(2434), + [anon_sym_LT_LT] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_PERCENT] = ACTIONS(2434), + [anon_sym_STAR_STAR] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_LT_EQ] = ACTIONS(2434), + [anon_sym_EQ_EQ] = ACTIONS(2434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2434), + [anon_sym_BANG_EQ] = ACTIONS(2434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2434), + [anon_sym_GT_EQ] = ACTIONS(2434), + [anon_sym_QMARK_QMARK] = ACTIONS(2434), + [anon_sym_instanceof] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3604), - [sym_number] = ACTIONS(3604), - [sym_private_property_identifier] = ACTIONS(3604), - [sym_this] = ACTIONS(3604), - [sym_super] = ACTIONS(3604), - [sym_true] = ACTIONS(3604), - [sym_false] = ACTIONS(3604), - [sym_null] = ACTIONS(3604), - [sym_undefined] = ACTIONS(3604), - [anon_sym_AT] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_readonly] = ACTIONS(3604), - [anon_sym_get] = ACTIONS(3604), - [anon_sym_set] = ACTIONS(3604), - [anon_sym_declare] = ACTIONS(3604), - [anon_sym_public] = ACTIONS(3604), - [anon_sym_private] = ACTIONS(3604), - [anon_sym_protected] = ACTIONS(3604), - [anon_sym_override] = ACTIONS(3604), - [anon_sym_module] = ACTIONS(3604), - [anon_sym_any] = ACTIONS(3604), - [anon_sym_number] = ACTIONS(3604), - [anon_sym_boolean] = ACTIONS(3604), - [anon_sym_string] = ACTIONS(3604), - [anon_sym_symbol] = ACTIONS(3604), - [anon_sym_object] = ACTIONS(3604), - [anon_sym_property] = ACTIONS(3604), - [anon_sym_signal] = ACTIONS(3604), - [anon_sym_on] = ACTIONS(3604), - [anon_sym_required] = ACTIONS(3604), - [anon_sym_component] = ACTIONS(3604), - [anon_sym_abstract] = ACTIONS(3604), - [anon_sym_interface] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), + [anon_sym_BQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_satisfies] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [sym__automatic_semicolon] = ACTIONS(2436), + [sym__ternary_qmark] = ACTIONS(2436), [sym_html_comment] = ACTIONS(5), }, - [1760] = { - [sym_comment] = STATE(1760), - [sym_identifier] = ACTIONS(3584), - [anon_sym_export] = ACTIONS(3584), - [anon_sym_type] = ACTIONS(3584), - [anon_sym_namespace] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3584), - [anon_sym_RBRACE] = ACTIONS(3584), - [anon_sym_typeof] = ACTIONS(3584), - [anon_sym_import] = ACTIONS(3584), - [anon_sym_from] = ACTIONS(3584), - [anon_sym_with] = ACTIONS(3584), - [anon_sym_var] = ACTIONS(3584), - [anon_sym_let] = ACTIONS(3584), - [anon_sym_const] = ACTIONS(3584), - [anon_sym_BANG] = ACTIONS(3584), - [anon_sym_if] = ACTIONS(3584), - [anon_sym_switch] = ACTIONS(3584), - [anon_sym_for] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3584), - [anon_sym_await] = ACTIONS(3584), - [anon_sym_of] = ACTIONS(3584), - [anon_sym_while] = ACTIONS(3584), - [anon_sym_do] = ACTIONS(3584), - [anon_sym_try] = ACTIONS(3584), - [anon_sym_break] = ACTIONS(3584), - [anon_sym_continue] = ACTIONS(3584), - [anon_sym_debugger] = ACTIONS(3584), - [anon_sym_return] = ACTIONS(3584), - [anon_sym_throw] = ACTIONS(3584), - [anon_sym_SEMI] = ACTIONS(3584), - [anon_sym_yield] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(3584), - [anon_sym_LTtemplate_GT] = ACTIONS(3584), - [anon_sym_DQUOTE] = ACTIONS(3584), - [anon_sym_SQUOTE] = ACTIONS(3584), - [anon_sym_class] = ACTIONS(3584), - [anon_sym_async] = ACTIONS(3584), - [anon_sym_function] = ACTIONS(3584), - [anon_sym_new] = ACTIONS(3584), - [anon_sym_using] = ACTIONS(3584), - [anon_sym_PLUS] = ACTIONS(3584), - [anon_sym_DASH] = ACTIONS(3584), - [anon_sym_SLASH] = ACTIONS(3584), - [anon_sym_LT] = ACTIONS(3584), - [anon_sym_TILDE] = ACTIONS(3584), - [anon_sym_void] = ACTIONS(3584), - [anon_sym_delete] = ACTIONS(3584), - [anon_sym_PLUS_PLUS] = ACTIONS(3584), - [anon_sym_DASH_DASH] = ACTIONS(3584), + [1714] = { + [sym_comment] = STATE(1714), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_else] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3584), - [sym_number] = ACTIONS(3584), - [sym_private_property_identifier] = ACTIONS(3584), - [sym_this] = ACTIONS(3584), - [sym_super] = ACTIONS(3584), - [sym_true] = ACTIONS(3584), - [sym_false] = ACTIONS(3584), - [sym_null] = ACTIONS(3584), - [sym_undefined] = ACTIONS(3584), - [anon_sym_AT] = ACTIONS(3584), - [anon_sym_static] = ACTIONS(3584), - [anon_sym_readonly] = ACTIONS(3584), - [anon_sym_get] = ACTIONS(3584), - [anon_sym_set] = ACTIONS(3584), - [anon_sym_declare] = ACTIONS(3584), - [anon_sym_public] = ACTIONS(3584), - [anon_sym_private] = ACTIONS(3584), - [anon_sym_protected] = ACTIONS(3584), - [anon_sym_override] = ACTIONS(3584), - [anon_sym_module] = ACTIONS(3584), - [anon_sym_any] = ACTIONS(3584), - [anon_sym_number] = ACTIONS(3584), - [anon_sym_boolean] = ACTIONS(3584), - [anon_sym_string] = ACTIONS(3584), - [anon_sym_symbol] = ACTIONS(3584), - [anon_sym_object] = ACTIONS(3584), - [anon_sym_property] = ACTIONS(3584), - [anon_sym_signal] = ACTIONS(3584), - [anon_sym_on] = ACTIONS(3584), - [anon_sym_required] = ACTIONS(3584), - [anon_sym_component] = ACTIONS(3584), - [anon_sym_abstract] = ACTIONS(3584), - [anon_sym_interface] = ACTIONS(3584), - [anon_sym_enum] = ACTIONS(3584), + [anon_sym_BQUOTE] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), [sym_html_comment] = ACTIONS(5), }, - [1761] = { - [sym_comment] = STATE(1761), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_RBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_from] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_of] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), + [1715] = { + [sym_export_statement] = STATE(5480), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1715), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5480), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5480), + [sym_property_signature] = STATE(5480), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5480), + [sym_index_signature] = STATE(5480), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3842), + [anon_sym_export] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3842), + [anon_sym_namespace] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3846), + [anon_sym_RBRACE] = ACTIONS(3848), + [anon_sym_from] = ACTIONS(3842), + [anon_sym_let] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3852), + [anon_sym_new] = ACTIONS(3854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_property] = ACTIONS(3612), - [anon_sym_signal] = ACTIONS(3612), - [anon_sym_on] = ACTIONS(3612), - [anon_sym_required] = ACTIONS(3612), - [anon_sym_component] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3858), + [anon_sym_get] = ACTIONS(3860), + [anon_sym_set] = ACTIONS(3860), + [anon_sym_declare] = ACTIONS(3842), + [anon_sym_public] = ACTIONS(3862), + [anon_sym_private] = ACTIONS(3862), + [anon_sym_protected] = ACTIONS(3862), + [anon_sym_override] = ACTIONS(3864), + [anon_sym_module] = ACTIONS(3842), + [anon_sym_any] = ACTIONS(3842), + [anon_sym_number] = ACTIONS(3842), + [anon_sym_boolean] = ACTIONS(3842), + [anon_sym_string] = ACTIONS(3842), + [anon_sym_symbol] = ACTIONS(3842), + [anon_sym_object] = ACTIONS(3842), + [anon_sym_property] = ACTIONS(3842), + [anon_sym_signal] = ACTIONS(3842), + [anon_sym_on] = ACTIONS(3842), + [anon_sym_required] = ACTIONS(3842), + [anon_sym_component] = ACTIONS(3842), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3866), [sym_html_comment] = ACTIONS(5), }, - [1762] = { - [sym_comment] = STATE(1762), - [sym_identifier] = ACTIONS(3698), - [anon_sym_export] = ACTIONS(3698), - [anon_sym_type] = ACTIONS(3698), - [anon_sym_namespace] = ACTIONS(3698), - [anon_sym_LBRACE] = ACTIONS(3698), - [anon_sym_RBRACE] = ACTIONS(3698), - [anon_sym_typeof] = ACTIONS(3698), - [anon_sym_import] = ACTIONS(3698), - [anon_sym_from] = ACTIONS(3698), - [anon_sym_with] = ACTIONS(3698), - [anon_sym_var] = ACTIONS(3698), - [anon_sym_let] = ACTIONS(3698), - [anon_sym_const] = ACTIONS(3698), - [anon_sym_BANG] = ACTIONS(3698), - [anon_sym_if] = ACTIONS(3698), - [anon_sym_switch] = ACTIONS(3698), - [anon_sym_for] = ACTIONS(3698), - [anon_sym_LPAREN] = ACTIONS(3698), - [anon_sym_await] = ACTIONS(3698), - [anon_sym_of] = ACTIONS(3698), - [anon_sym_while] = ACTIONS(3698), - [anon_sym_do] = ACTIONS(3698), - [anon_sym_try] = ACTIONS(3698), - [anon_sym_break] = ACTIONS(3698), - [anon_sym_continue] = ACTIONS(3698), - [anon_sym_debugger] = ACTIONS(3698), - [anon_sym_return] = ACTIONS(3698), - [anon_sym_throw] = ACTIONS(3698), - [anon_sym_SEMI] = ACTIONS(3698), - [anon_sym_yield] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3698), - [anon_sym_LTtemplate_GT] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3698), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_class] = ACTIONS(3698), - [anon_sym_async] = ACTIONS(3698), - [anon_sym_function] = ACTIONS(3698), - [anon_sym_new] = ACTIONS(3698), - [anon_sym_using] = ACTIONS(3698), - [anon_sym_PLUS] = ACTIONS(3698), - [anon_sym_DASH] = ACTIONS(3698), - [anon_sym_SLASH] = ACTIONS(3698), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_TILDE] = ACTIONS(3698), - [anon_sym_void] = ACTIONS(3698), - [anon_sym_delete] = ACTIONS(3698), - [anon_sym_PLUS_PLUS] = ACTIONS(3698), - [anon_sym_DASH_DASH] = ACTIONS(3698), + [1716] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1716), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3868), + [anon_sym_export] = ACTIONS(3870), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3868), + [anon_sym_namespace] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3772), + [anon_sym_from] = ACTIONS(3868), + [anon_sym_let] = ACTIONS(3868), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3868), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3872), + [anon_sym_new] = ACTIONS(3874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3698), - [sym_number] = ACTIONS(3698), - [sym_private_property_identifier] = ACTIONS(3698), - [sym_this] = ACTIONS(3698), - [sym_super] = ACTIONS(3698), - [sym_true] = ACTIONS(3698), - [sym_false] = ACTIONS(3698), - [sym_null] = ACTIONS(3698), - [sym_undefined] = ACTIONS(3698), - [anon_sym_AT] = ACTIONS(3698), - [anon_sym_static] = ACTIONS(3698), - [anon_sym_readonly] = ACTIONS(3698), - [anon_sym_get] = ACTIONS(3698), - [anon_sym_set] = ACTIONS(3698), - [anon_sym_declare] = ACTIONS(3698), - [anon_sym_public] = ACTIONS(3698), - [anon_sym_private] = ACTIONS(3698), - [anon_sym_protected] = ACTIONS(3698), - [anon_sym_override] = ACTIONS(3698), - [anon_sym_module] = ACTIONS(3698), - [anon_sym_any] = ACTIONS(3698), - [anon_sym_number] = ACTIONS(3698), - [anon_sym_boolean] = ACTIONS(3698), - [anon_sym_string] = ACTIONS(3698), - [anon_sym_symbol] = ACTIONS(3698), - [anon_sym_object] = ACTIONS(3698), - [anon_sym_property] = ACTIONS(3698), - [anon_sym_signal] = ACTIONS(3698), - [anon_sym_on] = ACTIONS(3698), - [anon_sym_required] = ACTIONS(3698), - [anon_sym_component] = ACTIONS(3698), - [anon_sym_abstract] = ACTIONS(3698), - [anon_sym_interface] = ACTIONS(3698), - [anon_sym_enum] = ACTIONS(3698), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_readonly] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(3880), + [anon_sym_set] = ACTIONS(3880), + [anon_sym_declare] = ACTIONS(3868), + [anon_sym_public] = ACTIONS(3882), + [anon_sym_private] = ACTIONS(3882), + [anon_sym_protected] = ACTIONS(3882), + [anon_sym_override] = ACTIONS(3884), + [anon_sym_module] = ACTIONS(3868), + [anon_sym_any] = ACTIONS(3868), + [anon_sym_number] = ACTIONS(3868), + [anon_sym_boolean] = ACTIONS(3868), + [anon_sym_string] = ACTIONS(3868), + [anon_sym_symbol] = ACTIONS(3868), + [anon_sym_object] = ACTIONS(3868), + [anon_sym_property] = ACTIONS(3868), + [anon_sym_signal] = ACTIONS(3868), + [anon_sym_on] = ACTIONS(3868), + [anon_sym_required] = ACTIONS(3868), + [anon_sym_component] = ACTIONS(3868), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1763] = { - [sym_comment] = STATE(1763), - [sym_identifier] = ACTIONS(3486), - [anon_sym_export] = ACTIONS(3486), - [anon_sym_type] = ACTIONS(3486), - [anon_sym_namespace] = ACTIONS(3486), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_RBRACE] = ACTIONS(3486), - [anon_sym_typeof] = ACTIONS(3486), - [anon_sym_import] = ACTIONS(3486), - [anon_sym_from] = ACTIONS(3486), - [anon_sym_with] = ACTIONS(3486), - [anon_sym_var] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_const] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3486), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_switch] = ACTIONS(3486), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_await] = ACTIONS(3486), - [anon_sym_of] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_break] = ACTIONS(3486), - [anon_sym_continue] = ACTIONS(3486), - [anon_sym_debugger] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_throw] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LTtemplate_GT] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_SQUOTE] = ACTIONS(3486), - [anon_sym_class] = ACTIONS(3486), - [anon_sym_async] = ACTIONS(3486), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_using] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_LT] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3486), - [anon_sym_void] = ACTIONS(3486), - [anon_sym_delete] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DASH_DASH] = ACTIONS(3486), + [1717] = { + [sym_comment] = STATE(1717), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2340), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2342), + [anon_sym_DASH] = ACTIONS(2342), + [anon_sym_SLASH] = ACTIONS(2342), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3486), - [sym_number] = ACTIONS(3486), - [sym_private_property_identifier] = ACTIONS(3486), - [sym_this] = ACTIONS(3486), - [sym_super] = ACTIONS(3486), - [sym_true] = ACTIONS(3486), - [sym_false] = ACTIONS(3486), - [sym_null] = ACTIONS(3486), - [sym_undefined] = ACTIONS(3486), - [anon_sym_AT] = ACTIONS(3486), - [anon_sym_static] = ACTIONS(3486), - [anon_sym_readonly] = ACTIONS(3486), - [anon_sym_get] = ACTIONS(3486), - [anon_sym_set] = ACTIONS(3486), - [anon_sym_declare] = ACTIONS(3486), - [anon_sym_public] = ACTIONS(3486), - [anon_sym_private] = ACTIONS(3486), - [anon_sym_protected] = ACTIONS(3486), - [anon_sym_override] = ACTIONS(3486), - [anon_sym_module] = ACTIONS(3486), - [anon_sym_any] = ACTIONS(3486), - [anon_sym_number] = ACTIONS(3486), - [anon_sym_boolean] = ACTIONS(3486), - [anon_sym_string] = ACTIONS(3486), - [anon_sym_symbol] = ACTIONS(3486), - [anon_sym_object] = ACTIONS(3486), - [anon_sym_property] = ACTIONS(3486), - [anon_sym_signal] = ACTIONS(3486), - [anon_sym_on] = ACTIONS(3486), - [anon_sym_required] = ACTIONS(3486), - [anon_sym_component] = ACTIONS(3486), - [anon_sym_abstract] = ACTIONS(3486), - [anon_sym_interface] = ACTIONS(3486), - [anon_sym_enum] = ACTIONS(3486), + [anon_sym_BQUOTE] = ACTIONS(2342), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(3886), + [sym__ternary_qmark] = ACTIONS(2346), [sym_html_comment] = ACTIONS(5), }, - [1764] = { - [sym_comment] = STATE(1764), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), + [1718] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1718), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3842), + [anon_sym_export] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3842), + [anon_sym_namespace] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_from] = ACTIONS(3842), + [anon_sym_let] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3852), + [anon_sym_new] = ACTIONS(3854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3858), + [anon_sym_get] = ACTIONS(3860), + [anon_sym_set] = ACTIONS(3860), + [anon_sym_declare] = ACTIONS(3842), + [anon_sym_public] = ACTIONS(3862), + [anon_sym_private] = ACTIONS(3862), + [anon_sym_protected] = ACTIONS(3862), + [anon_sym_override] = ACTIONS(3864), + [anon_sym_module] = ACTIONS(3842), + [anon_sym_any] = ACTIONS(3842), + [anon_sym_number] = ACTIONS(3842), + [anon_sym_boolean] = ACTIONS(3842), + [anon_sym_string] = ACTIONS(3842), + [anon_sym_symbol] = ACTIONS(3842), + [anon_sym_object] = ACTIONS(3842), + [anon_sym_property] = ACTIONS(3842), + [anon_sym_signal] = ACTIONS(3842), + [anon_sym_on] = ACTIONS(3842), + [anon_sym_required] = ACTIONS(3842), + [anon_sym_component] = ACTIONS(3842), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1765] = { - [sym_comment] = STATE(1765), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [1719] = { + [sym_comment] = STATE(1719), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2332), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2334), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2334), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(3890), + [sym__ternary_qmark] = ACTIONS(2338), [sym_html_comment] = ACTIONS(5), }, - [1766] = { - [sym_comment] = STATE(1766), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), + [1720] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1720), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3868), + [anon_sym_export] = ACTIONS(3870), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3868), + [anon_sym_namespace] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_from] = ACTIONS(3868), + [anon_sym_let] = ACTIONS(3868), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3868), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3872), + [anon_sym_new] = ACTIONS(3874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_readonly] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(3880), + [anon_sym_set] = ACTIONS(3880), + [anon_sym_declare] = ACTIONS(3868), + [anon_sym_public] = ACTIONS(3882), + [anon_sym_private] = ACTIONS(3882), + [anon_sym_protected] = ACTIONS(3882), + [anon_sym_override] = ACTIONS(3884), + [anon_sym_module] = ACTIONS(3868), + [anon_sym_any] = ACTIONS(3868), + [anon_sym_number] = ACTIONS(3868), + [anon_sym_boolean] = ACTIONS(3868), + [anon_sym_string] = ACTIONS(3868), + [anon_sym_symbol] = ACTIONS(3868), + [anon_sym_object] = ACTIONS(3868), + [anon_sym_property] = ACTIONS(3868), + [anon_sym_signal] = ACTIONS(3868), + [anon_sym_on] = ACTIONS(3868), + [anon_sym_required] = ACTIONS(3868), + [anon_sym_component] = ACTIONS(3868), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1767] = { - [sym_comment] = STATE(1767), - [sym_identifier] = ACTIONS(3616), - [anon_sym_export] = ACTIONS(3616), - [anon_sym_type] = ACTIONS(3616), - [anon_sym_namespace] = ACTIONS(3616), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_typeof] = ACTIONS(3616), - [anon_sym_import] = ACTIONS(3616), - [anon_sym_from] = ACTIONS(3616), - [anon_sym_with] = ACTIONS(3616), - [anon_sym_var] = ACTIONS(3616), - [anon_sym_let] = ACTIONS(3616), - [anon_sym_const] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_if] = ACTIONS(3616), - [anon_sym_switch] = ACTIONS(3616), - [anon_sym_for] = ACTIONS(3616), - [anon_sym_LPAREN] = ACTIONS(3616), - [anon_sym_await] = ACTIONS(3616), - [anon_sym_of] = ACTIONS(3616), - [anon_sym_while] = ACTIONS(3616), - [anon_sym_do] = ACTIONS(3616), - [anon_sym_try] = ACTIONS(3616), - [anon_sym_break] = ACTIONS(3616), - [anon_sym_continue] = ACTIONS(3616), - [anon_sym_debugger] = ACTIONS(3616), - [anon_sym_return] = ACTIONS(3616), - [anon_sym_throw] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym_yield] = ACTIONS(3616), - [anon_sym_LBRACK] = ACTIONS(3616), - [anon_sym_LTtemplate_GT] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_class] = ACTIONS(3616), - [anon_sym_async] = ACTIONS(3616), - [anon_sym_function] = ACTIONS(3616), - [anon_sym_new] = ACTIONS(3616), - [anon_sym_using] = ACTIONS(3616), - [anon_sym_PLUS] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_void] = ACTIONS(3616), - [anon_sym_delete] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_DASH_DASH] = ACTIONS(3616), + [1721] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1721), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6744), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(3894), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3896), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3616), - [sym_number] = ACTIONS(3616), - [sym_private_property_identifier] = ACTIONS(3616), - [sym_this] = ACTIONS(3616), - [sym_super] = ACTIONS(3616), - [sym_true] = ACTIONS(3616), - [sym_false] = ACTIONS(3616), - [sym_null] = ACTIONS(3616), - [sym_undefined] = ACTIONS(3616), - [anon_sym_AT] = ACTIONS(3616), - [anon_sym_static] = ACTIONS(3616), - [anon_sym_readonly] = ACTIONS(3616), - [anon_sym_get] = ACTIONS(3616), - [anon_sym_set] = ACTIONS(3616), - [anon_sym_declare] = ACTIONS(3616), - [anon_sym_public] = ACTIONS(3616), - [anon_sym_private] = ACTIONS(3616), - [anon_sym_protected] = ACTIONS(3616), - [anon_sym_override] = ACTIONS(3616), - [anon_sym_module] = ACTIONS(3616), - [anon_sym_any] = ACTIONS(3616), - [anon_sym_number] = ACTIONS(3616), - [anon_sym_boolean] = ACTIONS(3616), - [anon_sym_string] = ACTIONS(3616), - [anon_sym_symbol] = ACTIONS(3616), - [anon_sym_object] = ACTIONS(3616), - [anon_sym_property] = ACTIONS(3616), - [anon_sym_signal] = ACTIONS(3616), - [anon_sym_on] = ACTIONS(3616), - [anon_sym_required] = ACTIONS(3616), - [anon_sym_component] = ACTIONS(3616), - [anon_sym_abstract] = ACTIONS(3616), - [anon_sym_interface] = ACTIONS(3616), - [anon_sym_enum] = ACTIONS(3616), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1768] = { - [sym_comment] = STATE(1768), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), + [1722] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1722), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6757), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(3898), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3900), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1769] = { - [sym_comment] = STATE(1769), - [sym_identifier] = ACTIONS(3582), - [anon_sym_export] = ACTIONS(3582), - [anon_sym_type] = ACTIONS(3582), - [anon_sym_namespace] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(3582), - [anon_sym_import] = ACTIONS(3582), - [anon_sym_from] = ACTIONS(3582), - [anon_sym_with] = ACTIONS(3582), - [anon_sym_var] = ACTIONS(3582), - [anon_sym_let] = ACTIONS(3582), - [anon_sym_const] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_if] = ACTIONS(3582), - [anon_sym_switch] = ACTIONS(3582), - [anon_sym_for] = ACTIONS(3582), - [anon_sym_LPAREN] = ACTIONS(3582), - [anon_sym_await] = ACTIONS(3582), - [anon_sym_of] = ACTIONS(3582), - [anon_sym_while] = ACTIONS(3582), - [anon_sym_do] = ACTIONS(3582), - [anon_sym_try] = ACTIONS(3582), - [anon_sym_break] = ACTIONS(3582), - [anon_sym_continue] = ACTIONS(3582), - [anon_sym_debugger] = ACTIONS(3582), - [anon_sym_return] = ACTIONS(3582), - [anon_sym_throw] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_yield] = ACTIONS(3582), - [anon_sym_LBRACK] = ACTIONS(3582), - [anon_sym_LTtemplate_GT] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_class] = ACTIONS(3582), - [anon_sym_async] = ACTIONS(3582), - [anon_sym_function] = ACTIONS(3582), - [anon_sym_new] = ACTIONS(3582), - [anon_sym_using] = ACTIONS(3582), - [anon_sym_PLUS] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3582), - [anon_sym_SLASH] = ACTIONS(3582), - [anon_sym_LT] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_void] = ACTIONS(3582), - [anon_sym_delete] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_DASH_DASH] = ACTIONS(3582), + [1723] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6753), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1723), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6753), + [sym_pair] = STATE(6753), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6756), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3816), + [anon_sym_export] = ACTIONS(3818), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3816), + [anon_sym_namespace] = ACTIONS(3816), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3902), + [anon_sym_from] = ACTIONS(3816), + [anon_sym_let] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3816), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3822), + [anon_sym_new] = ACTIONS(3824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3582), - [sym_number] = ACTIONS(3582), - [sym_private_property_identifier] = ACTIONS(3582), - [sym_this] = ACTIONS(3582), - [sym_super] = ACTIONS(3582), - [sym_true] = ACTIONS(3582), - [sym_false] = ACTIONS(3582), - [sym_null] = ACTIONS(3582), - [sym_undefined] = ACTIONS(3582), - [anon_sym_AT] = ACTIONS(3582), - [anon_sym_static] = ACTIONS(3582), - [anon_sym_readonly] = ACTIONS(3582), - [anon_sym_get] = ACTIONS(3582), - [anon_sym_set] = ACTIONS(3582), - [anon_sym_declare] = ACTIONS(3582), - [anon_sym_public] = ACTIONS(3582), - [anon_sym_private] = ACTIONS(3582), - [anon_sym_protected] = ACTIONS(3582), - [anon_sym_override] = ACTIONS(3582), - [anon_sym_module] = ACTIONS(3582), - [anon_sym_any] = ACTIONS(3582), - [anon_sym_number] = ACTIONS(3582), - [anon_sym_boolean] = ACTIONS(3582), - [anon_sym_string] = ACTIONS(3582), - [anon_sym_symbol] = ACTIONS(3582), - [anon_sym_object] = ACTIONS(3582), - [anon_sym_property] = ACTIONS(3582), - [anon_sym_signal] = ACTIONS(3582), - [anon_sym_on] = ACTIONS(3582), - [anon_sym_required] = ACTIONS(3582), - [anon_sym_component] = ACTIONS(3582), - [anon_sym_abstract] = ACTIONS(3582), - [anon_sym_interface] = ACTIONS(3582), - [anon_sym_enum] = ACTIONS(3582), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3826), + [anon_sym_readonly] = ACTIONS(3828), + [anon_sym_get] = ACTIONS(3830), + [anon_sym_set] = ACTIONS(3830), + [anon_sym_declare] = ACTIONS(3816), + [anon_sym_public] = ACTIONS(3832), + [anon_sym_private] = ACTIONS(3832), + [anon_sym_protected] = ACTIONS(3832), + [anon_sym_override] = ACTIONS(3834), + [anon_sym_module] = ACTIONS(3816), + [anon_sym_any] = ACTIONS(3816), + [anon_sym_number] = ACTIONS(3816), + [anon_sym_boolean] = ACTIONS(3816), + [anon_sym_string] = ACTIONS(3816), + [anon_sym_symbol] = ACTIONS(3816), + [anon_sym_object] = ACTIONS(3816), + [anon_sym_property] = ACTIONS(3816), + [anon_sym_signal] = ACTIONS(3816), + [anon_sym_on] = ACTIONS(3816), + [anon_sym_required] = ACTIONS(3816), + [anon_sym_component] = ACTIONS(3816), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1770] = { - [sym_comment] = STATE(1770), - [sym_identifier] = ACTIONS(3578), - [anon_sym_export] = ACTIONS(3578), - [anon_sym_type] = ACTIONS(3578), - [anon_sym_namespace] = ACTIONS(3578), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_RBRACE] = ACTIONS(3578), - [anon_sym_typeof] = ACTIONS(3578), - [anon_sym_import] = ACTIONS(3578), - [anon_sym_from] = ACTIONS(3578), - [anon_sym_with] = ACTIONS(3578), - [anon_sym_var] = ACTIONS(3578), - [anon_sym_let] = ACTIONS(3578), - [anon_sym_const] = ACTIONS(3578), - [anon_sym_BANG] = ACTIONS(3578), - [anon_sym_if] = ACTIONS(3578), - [anon_sym_switch] = ACTIONS(3578), - [anon_sym_for] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3578), - [anon_sym_await] = ACTIONS(3578), - [anon_sym_of] = ACTIONS(3578), - [anon_sym_while] = ACTIONS(3578), - [anon_sym_do] = ACTIONS(3578), - [anon_sym_try] = ACTIONS(3578), - [anon_sym_break] = ACTIONS(3578), - [anon_sym_continue] = ACTIONS(3578), - [anon_sym_debugger] = ACTIONS(3578), - [anon_sym_return] = ACTIONS(3578), - [anon_sym_throw] = ACTIONS(3578), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym_yield] = ACTIONS(3578), - [anon_sym_LBRACK] = ACTIONS(3578), - [anon_sym_LTtemplate_GT] = ACTIONS(3578), - [anon_sym_DQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3578), - [anon_sym_class] = ACTIONS(3578), - [anon_sym_async] = ACTIONS(3578), - [anon_sym_function] = ACTIONS(3578), - [anon_sym_new] = ACTIONS(3578), - [anon_sym_using] = ACTIONS(3578), - [anon_sym_PLUS] = ACTIONS(3578), - [anon_sym_DASH] = ACTIONS(3578), - [anon_sym_SLASH] = ACTIONS(3578), - [anon_sym_LT] = ACTIONS(3578), - [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_void] = ACTIONS(3578), - [anon_sym_delete] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_DASH_DASH] = ACTIONS(3578), + [1724] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1724), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3868), + [anon_sym_export] = ACTIONS(3870), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3868), + [anon_sym_namespace] = ACTIONS(3868), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3904), + [anon_sym_from] = ACTIONS(3868), + [anon_sym_let] = ACTIONS(3868), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3868), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3872), + [anon_sym_new] = ACTIONS(3874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3578), - [sym_number] = ACTIONS(3578), - [sym_private_property_identifier] = ACTIONS(3578), - [sym_this] = ACTIONS(3578), - [sym_super] = ACTIONS(3578), - [sym_true] = ACTIONS(3578), - [sym_false] = ACTIONS(3578), - [sym_null] = ACTIONS(3578), - [sym_undefined] = ACTIONS(3578), - [anon_sym_AT] = ACTIONS(3578), - [anon_sym_static] = ACTIONS(3578), - [anon_sym_readonly] = ACTIONS(3578), - [anon_sym_get] = ACTIONS(3578), - [anon_sym_set] = ACTIONS(3578), - [anon_sym_declare] = ACTIONS(3578), - [anon_sym_public] = ACTIONS(3578), - [anon_sym_private] = ACTIONS(3578), - [anon_sym_protected] = ACTIONS(3578), - [anon_sym_override] = ACTIONS(3578), - [anon_sym_module] = ACTIONS(3578), - [anon_sym_any] = ACTIONS(3578), - [anon_sym_number] = ACTIONS(3578), - [anon_sym_boolean] = ACTIONS(3578), - [anon_sym_string] = ACTIONS(3578), - [anon_sym_symbol] = ACTIONS(3578), - [anon_sym_object] = ACTIONS(3578), - [anon_sym_property] = ACTIONS(3578), - [anon_sym_signal] = ACTIONS(3578), - [anon_sym_on] = ACTIONS(3578), - [anon_sym_required] = ACTIONS(3578), - [anon_sym_component] = ACTIONS(3578), - [anon_sym_abstract] = ACTIONS(3578), - [anon_sym_interface] = ACTIONS(3578), - [anon_sym_enum] = ACTIONS(3578), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3876), + [anon_sym_readonly] = ACTIONS(3878), + [anon_sym_get] = ACTIONS(3880), + [anon_sym_set] = ACTIONS(3880), + [anon_sym_declare] = ACTIONS(3868), + [anon_sym_public] = ACTIONS(3882), + [anon_sym_private] = ACTIONS(3882), + [anon_sym_protected] = ACTIONS(3882), + [anon_sym_override] = ACTIONS(3884), + [anon_sym_module] = ACTIONS(3868), + [anon_sym_any] = ACTIONS(3868), + [anon_sym_number] = ACTIONS(3868), + [anon_sym_boolean] = ACTIONS(3868), + [anon_sym_string] = ACTIONS(3868), + [anon_sym_symbol] = ACTIONS(3868), + [anon_sym_object] = ACTIONS(3868), + [anon_sym_property] = ACTIONS(3868), + [anon_sym_signal] = ACTIONS(3868), + [anon_sym_on] = ACTIONS(3868), + [anon_sym_required] = ACTIONS(3868), + [anon_sym_component] = ACTIONS(3868), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1771] = { - [sym_comment] = STATE(1771), - [sym_identifier] = ACTIONS(3692), - [anon_sym_export] = ACTIONS(3692), - [anon_sym_type] = ACTIONS(3692), - [anon_sym_namespace] = ACTIONS(3692), - [anon_sym_LBRACE] = ACTIONS(3692), - [anon_sym_RBRACE] = ACTIONS(3692), - [anon_sym_typeof] = ACTIONS(3692), - [anon_sym_import] = ACTIONS(3692), - [anon_sym_from] = ACTIONS(3692), - [anon_sym_with] = ACTIONS(3692), - [anon_sym_var] = ACTIONS(3692), - [anon_sym_let] = ACTIONS(3692), - [anon_sym_const] = ACTIONS(3692), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_if] = ACTIONS(3692), - [anon_sym_switch] = ACTIONS(3692), - [anon_sym_for] = ACTIONS(3692), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_await] = ACTIONS(3692), - [anon_sym_of] = ACTIONS(3692), - [anon_sym_while] = ACTIONS(3692), - [anon_sym_do] = ACTIONS(3692), - [anon_sym_try] = ACTIONS(3692), - [anon_sym_break] = ACTIONS(3692), - [anon_sym_continue] = ACTIONS(3692), - [anon_sym_debugger] = ACTIONS(3692), - [anon_sym_return] = ACTIONS(3692), - [anon_sym_throw] = ACTIONS(3692), - [anon_sym_SEMI] = ACTIONS(3692), - [anon_sym_yield] = ACTIONS(3692), - [anon_sym_LBRACK] = ACTIONS(3692), - [anon_sym_LTtemplate_GT] = ACTIONS(3692), - [anon_sym_DQUOTE] = ACTIONS(3692), - [anon_sym_SQUOTE] = ACTIONS(3692), - [anon_sym_class] = ACTIONS(3692), - [anon_sym_async] = ACTIONS(3692), - [anon_sym_function] = ACTIONS(3692), - [anon_sym_new] = ACTIONS(3692), - [anon_sym_using] = ACTIONS(3692), - [anon_sym_PLUS] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3692), - [anon_sym_SLASH] = ACTIONS(3692), - [anon_sym_LT] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_void] = ACTIONS(3692), - [anon_sym_delete] = ACTIONS(3692), - [anon_sym_PLUS_PLUS] = ACTIONS(3692), - [anon_sym_DASH_DASH] = ACTIONS(3692), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3692), - [sym_number] = ACTIONS(3692), - [sym_private_property_identifier] = ACTIONS(3692), - [sym_this] = ACTIONS(3692), - [sym_super] = ACTIONS(3692), - [sym_true] = ACTIONS(3692), - [sym_false] = ACTIONS(3692), - [sym_null] = ACTIONS(3692), - [sym_undefined] = ACTIONS(3692), - [anon_sym_AT] = ACTIONS(3692), - [anon_sym_static] = ACTIONS(3692), - [anon_sym_readonly] = ACTIONS(3692), - [anon_sym_get] = ACTIONS(3692), - [anon_sym_set] = ACTIONS(3692), - [anon_sym_declare] = ACTIONS(3692), - [anon_sym_public] = ACTIONS(3692), - [anon_sym_private] = ACTIONS(3692), - [anon_sym_protected] = ACTIONS(3692), - [anon_sym_override] = ACTIONS(3692), - [anon_sym_module] = ACTIONS(3692), - [anon_sym_any] = ACTIONS(3692), - [anon_sym_number] = ACTIONS(3692), - [anon_sym_boolean] = ACTIONS(3692), - [anon_sym_string] = ACTIONS(3692), - [anon_sym_symbol] = ACTIONS(3692), - [anon_sym_object] = ACTIONS(3692), - [anon_sym_property] = ACTIONS(3692), - [anon_sym_signal] = ACTIONS(3692), - [anon_sym_on] = ACTIONS(3692), - [anon_sym_required] = ACTIONS(3692), - [anon_sym_component] = ACTIONS(3692), - [anon_sym_abstract] = ACTIONS(3692), - [anon_sym_interface] = ACTIONS(3692), - [anon_sym_enum] = ACTIONS(3692), + [1725] = { + [sym_comment] = STATE(1725), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_as] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_from] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_else] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2462), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_QMARK_DOT] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_instanceof] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_override] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_object] = ACTIONS(2462), + [anon_sym_property] = ACTIONS(2462), + [anon_sym_signal] = ACTIONS(2462), + [anon_sym_on] = ACTIONS(2462), + [anon_sym_required] = ACTIONS(2462), + [anon_sym_component] = ACTIONS(2462), + [anon_sym_satisfies] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [sym__automatic_semicolon] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2464), [sym_html_comment] = ACTIONS(5), }, - [1772] = { - [sym_comment] = STATE(1772), - [sym_identifier] = ACTIONS(3688), - [anon_sym_export] = ACTIONS(3688), - [anon_sym_type] = ACTIONS(3688), - [anon_sym_namespace] = ACTIONS(3688), - [anon_sym_LBRACE] = ACTIONS(3688), - [anon_sym_RBRACE] = ACTIONS(3688), - [anon_sym_typeof] = ACTIONS(3688), - [anon_sym_import] = ACTIONS(3688), - [anon_sym_from] = ACTIONS(3688), - [anon_sym_with] = ACTIONS(3688), - [anon_sym_var] = ACTIONS(3688), - [anon_sym_let] = ACTIONS(3688), - [anon_sym_const] = ACTIONS(3688), - [anon_sym_BANG] = ACTIONS(3688), - [anon_sym_if] = ACTIONS(3688), - [anon_sym_switch] = ACTIONS(3688), - [anon_sym_for] = ACTIONS(3688), - [anon_sym_LPAREN] = ACTIONS(3688), - [anon_sym_await] = ACTIONS(3688), - [anon_sym_of] = ACTIONS(3688), - [anon_sym_while] = ACTIONS(3688), - [anon_sym_do] = ACTIONS(3688), - [anon_sym_try] = ACTIONS(3688), - [anon_sym_break] = ACTIONS(3688), - [anon_sym_continue] = ACTIONS(3688), - [anon_sym_debugger] = ACTIONS(3688), - [anon_sym_return] = ACTIONS(3688), - [anon_sym_throw] = ACTIONS(3688), - [anon_sym_SEMI] = ACTIONS(3688), - [anon_sym_yield] = ACTIONS(3688), - [anon_sym_LBRACK] = ACTIONS(3688), - [anon_sym_LTtemplate_GT] = ACTIONS(3688), - [anon_sym_DQUOTE] = ACTIONS(3688), - [anon_sym_SQUOTE] = ACTIONS(3688), - [anon_sym_class] = ACTIONS(3688), - [anon_sym_async] = ACTIONS(3688), - [anon_sym_function] = ACTIONS(3688), - [anon_sym_new] = ACTIONS(3688), - [anon_sym_using] = ACTIONS(3688), - [anon_sym_PLUS] = ACTIONS(3688), - [anon_sym_DASH] = ACTIONS(3688), - [anon_sym_SLASH] = ACTIONS(3688), - [anon_sym_LT] = ACTIONS(3688), - [anon_sym_TILDE] = ACTIONS(3688), - [anon_sym_void] = ACTIONS(3688), - [anon_sym_delete] = ACTIONS(3688), - [anon_sym_PLUS_PLUS] = ACTIONS(3688), - [anon_sym_DASH_DASH] = ACTIONS(3688), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3688), - [sym_number] = ACTIONS(3688), - [sym_private_property_identifier] = ACTIONS(3688), - [sym_this] = ACTIONS(3688), - [sym_super] = ACTIONS(3688), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [sym_null] = ACTIONS(3688), - [sym_undefined] = ACTIONS(3688), - [anon_sym_AT] = ACTIONS(3688), - [anon_sym_static] = ACTIONS(3688), - [anon_sym_readonly] = ACTIONS(3688), - [anon_sym_get] = ACTIONS(3688), - [anon_sym_set] = ACTIONS(3688), - [anon_sym_declare] = ACTIONS(3688), - [anon_sym_public] = ACTIONS(3688), - [anon_sym_private] = ACTIONS(3688), - [anon_sym_protected] = ACTIONS(3688), - [anon_sym_override] = ACTIONS(3688), - [anon_sym_module] = ACTIONS(3688), - [anon_sym_any] = ACTIONS(3688), - [anon_sym_number] = ACTIONS(3688), - [anon_sym_boolean] = ACTIONS(3688), - [anon_sym_string] = ACTIONS(3688), - [anon_sym_symbol] = ACTIONS(3688), - [anon_sym_object] = ACTIONS(3688), - [anon_sym_property] = ACTIONS(3688), - [anon_sym_signal] = ACTIONS(3688), - [anon_sym_on] = ACTIONS(3688), - [anon_sym_required] = ACTIONS(3688), - [anon_sym_component] = ACTIONS(3688), - [anon_sym_abstract] = ACTIONS(3688), - [anon_sym_interface] = ACTIONS(3688), - [anon_sym_enum] = ACTIONS(3688), + [1726] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1726), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6981), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(3906), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3908), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1773] = { - [sym_comment] = STATE(1773), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_typeof] = ACTIONS(2434), - [anon_sym_import] = ACTIONS(2434), - [anon_sym_from] = ACTIONS(2434), - [anon_sym_with] = ACTIONS(2434), - [anon_sym_var] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_switch] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_await] = ACTIONS(2434), - [anon_sym_of] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_do] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_debugger] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_throw] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_LTtemplate_GT] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2434), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_class] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_new] = ACTIONS(2434), - [anon_sym_using] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_TILDE] = ACTIONS(2434), - [anon_sym_void] = ACTIONS(2434), - [anon_sym_delete] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_DASH_DASH] = ACTIONS(2434), + [1727] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1727), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3910), + [anon_sym_export] = ACTIONS(3912), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3910), + [anon_sym_namespace] = ACTIONS(3910), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_from] = ACTIONS(3910), + [anon_sym_let] = ACTIONS(3910), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3910), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3916), + [anon_sym_new] = ACTIONS(3918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2434), - [sym_number] = ACTIONS(2434), - [sym_private_property_identifier] = ACTIONS(2434), - [sym_this] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_true] = ACTIONS(2434), - [sym_false] = ACTIONS(2434), - [sym_null] = ACTIONS(2434), - [sym_undefined] = ACTIONS(2434), - [anon_sym_AT] = ACTIONS(2434), - [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_property] = ACTIONS(2434), - [anon_sym_signal] = ACTIONS(2434), - [anon_sym_on] = ACTIONS(2434), - [anon_sym_required] = ACTIONS(2434), - [anon_sym_component] = ACTIONS(2434), - [anon_sym_abstract] = ACTIONS(2434), - [anon_sym_interface] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3920), + [anon_sym_readonly] = ACTIONS(3922), + [anon_sym_get] = ACTIONS(3924), + [anon_sym_set] = ACTIONS(3924), + [anon_sym_declare] = ACTIONS(3910), + [anon_sym_public] = ACTIONS(3926), + [anon_sym_private] = ACTIONS(3926), + [anon_sym_protected] = ACTIONS(3926), + [anon_sym_override] = ACTIONS(3928), + [anon_sym_module] = ACTIONS(3910), + [anon_sym_any] = ACTIONS(3910), + [anon_sym_number] = ACTIONS(3910), + [anon_sym_boolean] = ACTIONS(3910), + [anon_sym_string] = ACTIONS(3910), + [anon_sym_symbol] = ACTIONS(3910), + [anon_sym_object] = ACTIONS(3910), + [anon_sym_property] = ACTIONS(3910), + [anon_sym_signal] = ACTIONS(3910), + [anon_sym_on] = ACTIONS(3910), + [anon_sym_required] = ACTIONS(3910), + [anon_sym_component] = ACTIONS(3910), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1774] = { - [sym_comment] = STATE(1774), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1728] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1728), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(6471), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(3930), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3932), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1775] = { - [sym_comment] = STATE(1775), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1729] = { + [sym_comment] = STATE(1729), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_else] = ACTIONS(2396), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LBRACK] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_DOT] = ACTIONS(2398), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_SLASH] = ACTIONS(2398), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_STAR_STAR] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2398), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_QMARK_QMARK] = ACTIONS(2398), + [anon_sym_instanceof] = ACTIONS(2398), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2398), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(3934), + [sym__ternary_qmark] = ACTIONS(2402), [sym_html_comment] = ACTIONS(5), }, - [1776] = { - [sym_comment] = STATE(1776), - [sym_identifier] = ACTIONS(3620), - [anon_sym_export] = ACTIONS(3620), - [anon_sym_type] = ACTIONS(3620), - [anon_sym_namespace] = ACTIONS(3620), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_typeof] = ACTIONS(3620), - [anon_sym_import] = ACTIONS(3620), - [anon_sym_from] = ACTIONS(3620), - [anon_sym_with] = ACTIONS(3620), - [anon_sym_var] = ACTIONS(3620), - [anon_sym_let] = ACTIONS(3620), - [anon_sym_const] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_if] = ACTIONS(3620), - [anon_sym_switch] = ACTIONS(3620), - [anon_sym_for] = ACTIONS(3620), - [anon_sym_LPAREN] = ACTIONS(3620), - [anon_sym_await] = ACTIONS(3620), - [anon_sym_of] = ACTIONS(3620), - [anon_sym_while] = ACTIONS(3620), - [anon_sym_do] = ACTIONS(3620), - [anon_sym_try] = ACTIONS(3620), - [anon_sym_break] = ACTIONS(3620), - [anon_sym_continue] = ACTIONS(3620), - [anon_sym_debugger] = ACTIONS(3620), - [anon_sym_return] = ACTIONS(3620), - [anon_sym_throw] = ACTIONS(3620), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym_yield] = ACTIONS(3620), - [anon_sym_LBRACK] = ACTIONS(3620), - [anon_sym_LTtemplate_GT] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_class] = ACTIONS(3620), - [anon_sym_async] = ACTIONS(3620), - [anon_sym_function] = ACTIONS(3620), - [anon_sym_new] = ACTIONS(3620), - [anon_sym_using] = ACTIONS(3620), - [anon_sym_PLUS] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3620), - [anon_sym_SLASH] = ACTIONS(3620), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_void] = ACTIONS(3620), - [anon_sym_delete] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_DASH_DASH] = ACTIONS(3620), + [1730] = { + [sym_comment] = STATE(1730), + [sym_identifier] = ACTIONS(2466), + [anon_sym_export] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_default] = ACTIONS(2466), + [anon_sym_type] = ACTIONS(2466), + [anon_sym_as] = ACTIONS(2466), + [anon_sym_namespace] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_COMMA] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_from] = ACTIONS(2466), + [anon_sym_var] = ACTIONS(2466), + [anon_sym_let] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_in] = ACTIONS(2466), + [anon_sym_of] = ACTIONS(2466), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_GT] = ACTIONS(2466), + [anon_sym_DOT] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2466), + [anon_sym_function] = ACTIONS(2466), + [anon_sym_QMARK_DOT] = ACTIONS(2466), + [anon_sym_AMP_AMP] = ACTIONS(2466), + [anon_sym_PIPE_PIPE] = ACTIONS(2466), + [anon_sym_GT_GT] = ACTIONS(2466), + [anon_sym_GT_GT_GT] = ACTIONS(2466), + [anon_sym_LT_LT] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_CARET] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2466), + [anon_sym_PLUS] = ACTIONS(2466), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_SLASH] = ACTIONS(2466), + [anon_sym_PERCENT] = ACTIONS(2466), + [anon_sym_STAR_STAR] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_LT_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ] = ACTIONS(2466), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ] = ACTIONS(2466), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2466), + [anon_sym_GT_EQ] = ACTIONS(2466), + [anon_sym_QMARK_QMARK] = ACTIONS(2466), + [anon_sym_instanceof] = ACTIONS(2466), + [anon_sym_PLUS_PLUS] = ACTIONS(2466), + [anon_sym_DASH_DASH] = ACTIONS(2466), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3620), - [sym_number] = ACTIONS(3620), - [sym_private_property_identifier] = ACTIONS(3620), - [sym_this] = ACTIONS(3620), - [sym_super] = ACTIONS(3620), - [sym_true] = ACTIONS(3620), - [sym_false] = ACTIONS(3620), - [sym_null] = ACTIONS(3620), - [sym_undefined] = ACTIONS(3620), - [anon_sym_AT] = ACTIONS(3620), - [anon_sym_static] = ACTIONS(3620), - [anon_sym_readonly] = ACTIONS(3620), - [anon_sym_get] = ACTIONS(3620), - [anon_sym_set] = ACTIONS(3620), - [anon_sym_declare] = ACTIONS(3620), - [anon_sym_public] = ACTIONS(3620), - [anon_sym_private] = ACTIONS(3620), - [anon_sym_protected] = ACTIONS(3620), - [anon_sym_override] = ACTIONS(3620), - [anon_sym_module] = ACTIONS(3620), - [anon_sym_any] = ACTIONS(3620), - [anon_sym_number] = ACTIONS(3620), - [anon_sym_boolean] = ACTIONS(3620), - [anon_sym_string] = ACTIONS(3620), - [anon_sym_symbol] = ACTIONS(3620), - [anon_sym_object] = ACTIONS(3620), - [anon_sym_property] = ACTIONS(3620), - [anon_sym_signal] = ACTIONS(3620), - [anon_sym_on] = ACTIONS(3620), - [anon_sym_required] = ACTIONS(3620), - [anon_sym_component] = ACTIONS(3620), - [anon_sym_abstract] = ACTIONS(3620), - [anon_sym_interface] = ACTIONS(3620), - [anon_sym_enum] = ACTIONS(3620), + [anon_sym_BQUOTE] = ACTIONS(2466), + [anon_sym_AT] = ACTIONS(2466), + [anon_sym_static] = ACTIONS(2466), + [anon_sym_readonly] = ACTIONS(2466), + [anon_sym_get] = ACTIONS(2466), + [anon_sym_set] = ACTIONS(2466), + [anon_sym_declare] = ACTIONS(2466), + [anon_sym_public] = ACTIONS(2466), + [anon_sym_private] = ACTIONS(2466), + [anon_sym_protected] = ACTIONS(2466), + [anon_sym_override] = ACTIONS(2466), + [anon_sym_module] = ACTIONS(2466), + [anon_sym_any] = ACTIONS(2466), + [anon_sym_number] = ACTIONS(2466), + [anon_sym_boolean] = ACTIONS(2466), + [anon_sym_string] = ACTIONS(2466), + [anon_sym_symbol] = ACTIONS(2466), + [anon_sym_object] = ACTIONS(2466), + [anon_sym_property] = ACTIONS(2466), + [anon_sym_signal] = ACTIONS(2466), + [anon_sym_on] = ACTIONS(2466), + [anon_sym_required] = ACTIONS(2466), + [anon_sym_component] = ACTIONS(2466), + [anon_sym_satisfies] = ACTIONS(2466), + [anon_sym_enum] = ACTIONS(2466), + [sym__automatic_semicolon] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(2468), [sym_html_comment] = ACTIONS(5), }, - [1777] = { - [sym_comment] = STATE(1777), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1731] = { + [sym_comment] = STATE(1731), + [sym_identifier] = ACTIONS(2470), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_default] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_as] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_COMMA] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_from] = ACTIONS(2470), + [anon_sym_var] = ACTIONS(2470), + [anon_sym_let] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_in] = ACTIONS(2470), + [anon_sym_of] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_GT] = ACTIONS(2470), + [anon_sym_DOT] = ACTIONS(2470), + [anon_sym_async] = ACTIONS(2470), + [anon_sym_function] = ACTIONS(2470), + [anon_sym_QMARK_DOT] = ACTIONS(2470), + [anon_sym_AMP_AMP] = ACTIONS(2470), + [anon_sym_PIPE_PIPE] = ACTIONS(2470), + [anon_sym_GT_GT] = ACTIONS(2470), + [anon_sym_GT_GT_GT] = ACTIONS(2470), + [anon_sym_LT_LT] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_CARET] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2470), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PERCENT] = ACTIONS(2470), + [anon_sym_STAR_STAR] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ] = ACTIONS(2470), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ] = ACTIONS(2470), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2470), + [anon_sym_GT_EQ] = ACTIONS(2470), + [anon_sym_QMARK_QMARK] = ACTIONS(2470), + [anon_sym_instanceof] = ACTIONS(2470), + [anon_sym_PLUS_PLUS] = ACTIONS(2470), + [anon_sym_DASH_DASH] = ACTIONS(2470), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2470), + [anon_sym_AT] = ACTIONS(2470), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_override] = ACTIONS(2470), + [anon_sym_module] = ACTIONS(2470), + [anon_sym_any] = ACTIONS(2470), + [anon_sym_number] = ACTIONS(2470), + [anon_sym_boolean] = ACTIONS(2470), + [anon_sym_string] = ACTIONS(2470), + [anon_sym_symbol] = ACTIONS(2470), + [anon_sym_object] = ACTIONS(2470), + [anon_sym_property] = ACTIONS(2470), + [anon_sym_signal] = ACTIONS(2470), + [anon_sym_on] = ACTIONS(2470), + [anon_sym_required] = ACTIONS(2470), + [anon_sym_component] = ACTIONS(2470), + [anon_sym_satisfies] = ACTIONS(2470), + [anon_sym_enum] = ACTIONS(2470), + [sym__automatic_semicolon] = ACTIONS(2472), + [sym__ternary_qmark] = ACTIONS(2472), [sym_html_comment] = ACTIONS(5), }, - [1778] = { - [sym_comment] = STATE(1778), - [sym_identifier] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_type] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3622), - [anon_sym_RBRACE] = ACTIONS(3622), - [anon_sym_typeof] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_from] = ACTIONS(3622), - [anon_sym_with] = ACTIONS(3622), - [anon_sym_var] = ACTIONS(3622), - [anon_sym_let] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_BANG] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_await] = ACTIONS(3622), - [anon_sym_of] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_debugger] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3622), - [anon_sym_yield] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_LTtemplate_GT] = ACTIONS(3622), - [anon_sym_DQUOTE] = ACTIONS(3622), - [anon_sym_SQUOTE] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_async] = ACTIONS(3622), - [anon_sym_function] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_SLASH] = ACTIONS(3622), - [anon_sym_LT] = ACTIONS(3622), - [anon_sym_TILDE] = ACTIONS(3622), - [anon_sym_void] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_PLUS_PLUS] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3622), + [1732] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1732), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3936), + [anon_sym_export] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3936), + [anon_sym_namespace] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3940), + [anon_sym_from] = ACTIONS(3936), + [anon_sym_let] = ACTIONS(3936), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3936), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3942), + [anon_sym_new] = ACTIONS(3944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3622), - [sym_number] = ACTIONS(3622), - [sym_private_property_identifier] = ACTIONS(3622), - [sym_this] = ACTIONS(3622), - [sym_super] = ACTIONS(3622), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [sym_null] = ACTIONS(3622), - [sym_undefined] = ACTIONS(3622), - [anon_sym_AT] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_readonly] = ACTIONS(3622), - [anon_sym_get] = ACTIONS(3622), - [anon_sym_set] = ACTIONS(3622), - [anon_sym_declare] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_override] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_any] = ACTIONS(3622), - [anon_sym_number] = ACTIONS(3622), - [anon_sym_boolean] = ACTIONS(3622), - [anon_sym_string] = ACTIONS(3622), - [anon_sym_symbol] = ACTIONS(3622), - [anon_sym_object] = ACTIONS(3622), - [anon_sym_property] = ACTIONS(3622), - [anon_sym_signal] = ACTIONS(3622), - [anon_sym_on] = ACTIONS(3622), - [anon_sym_required] = ACTIONS(3622), - [anon_sym_component] = ACTIONS(3622), - [anon_sym_abstract] = ACTIONS(3622), - [anon_sym_interface] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3946), + [anon_sym_readonly] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_declare] = ACTIONS(3936), + [anon_sym_public] = ACTIONS(3952), + [anon_sym_private] = ACTIONS(3952), + [anon_sym_protected] = ACTIONS(3952), + [anon_sym_override] = ACTIONS(3954), + [anon_sym_module] = ACTIONS(3936), + [anon_sym_any] = ACTIONS(3936), + [anon_sym_number] = ACTIONS(3936), + [anon_sym_boolean] = ACTIONS(3936), + [anon_sym_string] = ACTIONS(3936), + [anon_sym_symbol] = ACTIONS(3936), + [anon_sym_object] = ACTIONS(3936), + [anon_sym_property] = ACTIONS(3936), + [anon_sym_signal] = ACTIONS(3936), + [anon_sym_on] = ACTIONS(3936), + [anon_sym_required] = ACTIONS(3936), + [anon_sym_component] = ACTIONS(3936), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1779] = { - [sym_comment] = STATE(1779), - [sym_identifier] = ACTIONS(3682), - [anon_sym_export] = ACTIONS(3682), - [anon_sym_type] = ACTIONS(3682), - [anon_sym_namespace] = ACTIONS(3682), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_RBRACE] = ACTIONS(3682), - [anon_sym_typeof] = ACTIONS(3682), - [anon_sym_import] = ACTIONS(3682), - [anon_sym_from] = ACTIONS(3682), - [anon_sym_with] = ACTIONS(3682), - [anon_sym_var] = ACTIONS(3682), - [anon_sym_let] = ACTIONS(3682), - [anon_sym_const] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3682), - [anon_sym_if] = ACTIONS(3682), - [anon_sym_switch] = ACTIONS(3682), - [anon_sym_for] = ACTIONS(3682), - [anon_sym_LPAREN] = ACTIONS(3682), - [anon_sym_await] = ACTIONS(3682), - [anon_sym_of] = ACTIONS(3682), - [anon_sym_while] = ACTIONS(3682), - [anon_sym_do] = ACTIONS(3682), - [anon_sym_try] = ACTIONS(3682), - [anon_sym_break] = ACTIONS(3682), - [anon_sym_continue] = ACTIONS(3682), - [anon_sym_debugger] = ACTIONS(3682), - [anon_sym_return] = ACTIONS(3682), - [anon_sym_throw] = ACTIONS(3682), - [anon_sym_SEMI] = ACTIONS(3682), - [anon_sym_yield] = ACTIONS(3682), - [anon_sym_LBRACK] = ACTIONS(3682), - [anon_sym_LTtemplate_GT] = ACTIONS(3682), - [anon_sym_DQUOTE] = ACTIONS(3682), - [anon_sym_SQUOTE] = ACTIONS(3682), - [anon_sym_class] = ACTIONS(3682), - [anon_sym_async] = ACTIONS(3682), - [anon_sym_function] = ACTIONS(3682), - [anon_sym_new] = ACTIONS(3682), - [anon_sym_using] = ACTIONS(3682), - [anon_sym_PLUS] = ACTIONS(3682), - [anon_sym_DASH] = ACTIONS(3682), - [anon_sym_SLASH] = ACTIONS(3682), - [anon_sym_LT] = ACTIONS(3682), - [anon_sym_TILDE] = ACTIONS(3682), - [anon_sym_void] = ACTIONS(3682), - [anon_sym_delete] = ACTIONS(3682), - [anon_sym_PLUS_PLUS] = ACTIONS(3682), - [anon_sym_DASH_DASH] = ACTIONS(3682), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3682), - [sym_number] = ACTIONS(3682), - [sym_private_property_identifier] = ACTIONS(3682), - [sym_this] = ACTIONS(3682), - [sym_super] = ACTIONS(3682), - [sym_true] = ACTIONS(3682), - [sym_false] = ACTIONS(3682), - [sym_null] = ACTIONS(3682), - [sym_undefined] = ACTIONS(3682), - [anon_sym_AT] = ACTIONS(3682), - [anon_sym_static] = ACTIONS(3682), - [anon_sym_readonly] = ACTIONS(3682), - [anon_sym_get] = ACTIONS(3682), - [anon_sym_set] = ACTIONS(3682), - [anon_sym_declare] = ACTIONS(3682), - [anon_sym_public] = ACTIONS(3682), - [anon_sym_private] = ACTIONS(3682), - [anon_sym_protected] = ACTIONS(3682), - [anon_sym_override] = ACTIONS(3682), - [anon_sym_module] = ACTIONS(3682), - [anon_sym_any] = ACTIONS(3682), - [anon_sym_number] = ACTIONS(3682), - [anon_sym_boolean] = ACTIONS(3682), - [anon_sym_string] = ACTIONS(3682), - [anon_sym_symbol] = ACTIONS(3682), - [anon_sym_object] = ACTIONS(3682), - [anon_sym_property] = ACTIONS(3682), - [anon_sym_signal] = ACTIONS(3682), - [anon_sym_on] = ACTIONS(3682), - [anon_sym_required] = ACTIONS(3682), - [anon_sym_component] = ACTIONS(3682), - [anon_sym_abstract] = ACTIONS(3682), - [anon_sym_interface] = ACTIONS(3682), - [anon_sym_enum] = ACTIONS(3682), + [1733] = { + [sym_comment] = STATE(1733), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2412), + [anon_sym_else] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2412), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2412), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PERCENT] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2412), + [anon_sym_GT_EQ] = ACTIONS(2412), + [anon_sym_QMARK_QMARK] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), + [anon_sym_PLUS_PLUS] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2412), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(3956), + [sym__ternary_qmark] = ACTIONS(2416), [sym_html_comment] = ACTIONS(5), }, - [1780] = { - [sym_comment] = STATE(1780), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1734] = { + [sym_comment] = STATE(1734), + [sym_identifier] = ACTIONS(2358), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_from] = ACTIONS(2358), + [anon_sym_var] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_of] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2358), + [anon_sym_QMARK_DOT] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_STAR_STAR] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_QMARK_QMARK] = ACTIONS(2360), + [anon_sym_instanceof] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_readonly] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), + [anon_sym_declare] = ACTIONS(2358), + [anon_sym_public] = ACTIONS(2358), + [anon_sym_private] = ACTIONS(2358), + [anon_sym_protected] = ACTIONS(2358), + [anon_sym_override] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_any] = ACTIONS(2358), + [anon_sym_number] = ACTIONS(2358), + [anon_sym_boolean] = ACTIONS(2358), + [anon_sym_string] = ACTIONS(2358), + [anon_sym_symbol] = ACTIONS(2358), + [anon_sym_object] = ACTIONS(2358), + [anon_sym_property] = ACTIONS(2358), + [anon_sym_signal] = ACTIONS(2358), + [anon_sym_on] = ACTIONS(2358), + [anon_sym_required] = ACTIONS(2358), + [anon_sym_component] = ACTIONS(2358), + [anon_sym_satisfies] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(3958), + [sym__ternary_qmark] = ACTIONS(2364), [sym_html_comment] = ACTIONS(5), }, - [1781] = { - [sym_comment] = STATE(1781), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1735] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1735), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3936), + [anon_sym_export] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3936), + [anon_sym_namespace] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3960), + [anon_sym_from] = ACTIONS(3936), + [anon_sym_let] = ACTIONS(3936), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3936), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3942), + [anon_sym_new] = ACTIONS(3944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3946), + [anon_sym_readonly] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_declare] = ACTIONS(3936), + [anon_sym_public] = ACTIONS(3952), + [anon_sym_private] = ACTIONS(3952), + [anon_sym_protected] = ACTIONS(3952), + [anon_sym_override] = ACTIONS(3954), + [anon_sym_module] = ACTIONS(3936), + [anon_sym_any] = ACTIONS(3936), + [anon_sym_number] = ACTIONS(3936), + [anon_sym_boolean] = ACTIONS(3936), + [anon_sym_string] = ACTIONS(3936), + [anon_sym_symbol] = ACTIONS(3936), + [anon_sym_object] = ACTIONS(3936), + [anon_sym_property] = ACTIONS(3936), + [anon_sym_signal] = ACTIONS(3936), + [anon_sym_on] = ACTIONS(3936), + [anon_sym_required] = ACTIONS(3936), + [anon_sym_component] = ACTIONS(3936), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1782] = { - [sym_comment] = STATE(1782), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1736] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1736), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3936), + [anon_sym_export] = ACTIONS(3938), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3936), + [anon_sym_namespace] = ACTIONS(3936), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3772), + [anon_sym_from] = ACTIONS(3936), + [anon_sym_let] = ACTIONS(3936), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3936), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3942), + [anon_sym_new] = ACTIONS(3944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3946), + [anon_sym_readonly] = ACTIONS(3948), + [anon_sym_get] = ACTIONS(3950), + [anon_sym_set] = ACTIONS(3950), + [anon_sym_declare] = ACTIONS(3936), + [anon_sym_public] = ACTIONS(3952), + [anon_sym_private] = ACTIONS(3952), + [anon_sym_protected] = ACTIONS(3952), + [anon_sym_override] = ACTIONS(3954), + [anon_sym_module] = ACTIONS(3936), + [anon_sym_any] = ACTIONS(3936), + [anon_sym_number] = ACTIONS(3936), + [anon_sym_boolean] = ACTIONS(3936), + [anon_sym_string] = ACTIONS(3936), + [anon_sym_symbol] = ACTIONS(3936), + [anon_sym_object] = ACTIONS(3936), + [anon_sym_property] = ACTIONS(3936), + [anon_sym_signal] = ACTIONS(3936), + [anon_sym_on] = ACTIONS(3936), + [anon_sym_required] = ACTIONS(3936), + [anon_sym_component] = ACTIONS(3936), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1783] = { - [sym_comment] = STATE(1783), - [sym_identifier] = ACTIONS(3624), - [anon_sym_export] = ACTIONS(3624), - [anon_sym_type] = ACTIONS(3624), - [anon_sym_namespace] = ACTIONS(3624), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3624), - [anon_sym_typeof] = ACTIONS(3624), - [anon_sym_import] = ACTIONS(3624), - [anon_sym_from] = ACTIONS(3624), - [anon_sym_with] = ACTIONS(3624), - [anon_sym_var] = ACTIONS(3624), - [anon_sym_let] = ACTIONS(3624), - [anon_sym_const] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_if] = ACTIONS(3624), - [anon_sym_switch] = ACTIONS(3624), - [anon_sym_for] = ACTIONS(3624), - [anon_sym_LPAREN] = ACTIONS(3624), - [anon_sym_await] = ACTIONS(3624), - [anon_sym_of] = ACTIONS(3624), - [anon_sym_while] = ACTIONS(3624), - [anon_sym_do] = ACTIONS(3624), - [anon_sym_try] = ACTIONS(3624), - [anon_sym_break] = ACTIONS(3624), - [anon_sym_continue] = ACTIONS(3624), - [anon_sym_debugger] = ACTIONS(3624), - [anon_sym_return] = ACTIONS(3624), - [anon_sym_throw] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym_yield] = ACTIONS(3624), - [anon_sym_LBRACK] = ACTIONS(3624), - [anon_sym_LTtemplate_GT] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_class] = ACTIONS(3624), - [anon_sym_async] = ACTIONS(3624), - [anon_sym_function] = ACTIONS(3624), - [anon_sym_new] = ACTIONS(3624), - [anon_sym_using] = ACTIONS(3624), - [anon_sym_PLUS] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3624), - [anon_sym_SLASH] = ACTIONS(3624), - [anon_sym_LT] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_void] = ACTIONS(3624), - [anon_sym_delete] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3624), - [sym_number] = ACTIONS(3624), - [sym_private_property_identifier] = ACTIONS(3624), - [sym_this] = ACTIONS(3624), - [sym_super] = ACTIONS(3624), - [sym_true] = ACTIONS(3624), - [sym_false] = ACTIONS(3624), - [sym_null] = ACTIONS(3624), - [sym_undefined] = ACTIONS(3624), - [anon_sym_AT] = ACTIONS(3624), - [anon_sym_static] = ACTIONS(3624), - [anon_sym_readonly] = ACTIONS(3624), - [anon_sym_get] = ACTIONS(3624), - [anon_sym_set] = ACTIONS(3624), - [anon_sym_declare] = ACTIONS(3624), - [anon_sym_public] = ACTIONS(3624), - [anon_sym_private] = ACTIONS(3624), - [anon_sym_protected] = ACTIONS(3624), - [anon_sym_override] = ACTIONS(3624), - [anon_sym_module] = ACTIONS(3624), - [anon_sym_any] = ACTIONS(3624), - [anon_sym_number] = ACTIONS(3624), - [anon_sym_boolean] = ACTIONS(3624), - [anon_sym_string] = ACTIONS(3624), - [anon_sym_symbol] = ACTIONS(3624), - [anon_sym_object] = ACTIONS(3624), - [anon_sym_property] = ACTIONS(3624), - [anon_sym_signal] = ACTIONS(3624), - [anon_sym_on] = ACTIONS(3624), - [anon_sym_required] = ACTIONS(3624), - [anon_sym_component] = ACTIONS(3624), - [anon_sym_abstract] = ACTIONS(3624), - [anon_sym_interface] = ACTIONS(3624), - [anon_sym_enum] = ACTIONS(3624), + [1737] = { + [sym_comment] = STATE(1737), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_else] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_GT] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2420), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2420), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2420), + [anon_sym_LT_LT] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_QMARK_QMARK] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(3962), + [sym__ternary_qmark] = ACTIONS(2424), [sym_html_comment] = ACTIONS(5), }, - [1784] = { - [sym_comment] = STATE(1784), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1738] = { + [sym_comment] = STATE(1738), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_else] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2296), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2296), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_instanceof] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3964), + [sym__ternary_qmark] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [1739] = { + [sym_comment] = STATE(1739), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_else] = ACTIONS(2376), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_in] = ACTIONS(2378), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2378), + [anon_sym_AMP_AMP] = ACTIONS(2378), + [anon_sym_PIPE_PIPE] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_GT_GT_GT] = ACTIONS(2378), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_SLASH] = ACTIONS(2378), + [anon_sym_PERCENT] = ACTIONS(2378), + [anon_sym_STAR_STAR] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2378), + [anon_sym_instanceof] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2378), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2378), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(3966), + [sym__ternary_qmark] = ACTIONS(2382), + [sym_html_comment] = ACTIONS(5), + }, + [1740] = { + [sym_comment] = STATE(1740), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_default] = ACTIONS(2438), + [anon_sym_type] = ACTIONS(2438), + [anon_sym_as] = ACTIONS(2438), + [anon_sym_namespace] = ACTIONS(2438), + [anon_sym_COMMA] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_from] = ACTIONS(2438), + [anon_sym_var] = ACTIONS(2438), + [anon_sym_let] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_else] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_in] = ACTIONS(2438), + [anon_sym_of] = ACTIONS(2438), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(2438), + [anon_sym_async] = ACTIONS(2438), + [anon_sym_function] = ACTIONS(2438), + [anon_sym_QMARK_DOT] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2438), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2438), + [anon_sym_PLUS] = ACTIONS(2438), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_STAR_STAR] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_instanceof] = ACTIONS(2438), + [anon_sym_PLUS_PLUS] = ACTIONS(2438), + [anon_sym_DASH_DASH] = ACTIONS(2438), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2438), + [anon_sym_AT] = ACTIONS(2438), + [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_property] = ACTIONS(2438), + [anon_sym_signal] = ACTIONS(2438), + [anon_sym_on] = ACTIONS(2438), + [anon_sym_required] = ACTIONS(2438), + [anon_sym_component] = ACTIONS(2438), + [anon_sym_satisfies] = ACTIONS(2438), + [anon_sym_enum] = ACTIONS(2438), + [sym__automatic_semicolon] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2440), [sym_html_comment] = ACTIONS(5), }, - [1785] = { - [sym_comment] = STATE(1785), - [sym_identifier] = ACTIONS(3634), - [anon_sym_export] = ACTIONS(3634), - [anon_sym_type] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3634), - [anon_sym_RBRACE] = ACTIONS(3634), - [anon_sym_typeof] = ACTIONS(3634), - [anon_sym_import] = ACTIONS(3634), - [anon_sym_from] = ACTIONS(3634), - [anon_sym_with] = ACTIONS(3634), - [anon_sym_var] = ACTIONS(3634), - [anon_sym_let] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_BANG] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_await] = ACTIONS(3634), - [anon_sym_of] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_debugger] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_yield] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_LTtemplate_GT] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(3634), - [anon_sym_SQUOTE] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_async] = ACTIONS(3634), - [anon_sym_function] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_SLASH] = ACTIONS(3634), - [anon_sym_LT] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(3634), - [anon_sym_void] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_PLUS_PLUS] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3634), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3634), - [sym_number] = ACTIONS(3634), - [sym_private_property_identifier] = ACTIONS(3634), - [sym_this] = ACTIONS(3634), - [sym_super] = ACTIONS(3634), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [sym_null] = ACTIONS(3634), - [sym_undefined] = ACTIONS(3634), - [anon_sym_AT] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_readonly] = ACTIONS(3634), - [anon_sym_get] = ACTIONS(3634), - [anon_sym_set] = ACTIONS(3634), - [anon_sym_declare] = ACTIONS(3634), - [anon_sym_public] = ACTIONS(3634), - [anon_sym_private] = ACTIONS(3634), - [anon_sym_protected] = ACTIONS(3634), - [anon_sym_override] = ACTIONS(3634), - [anon_sym_module] = ACTIONS(3634), - [anon_sym_any] = ACTIONS(3634), - [anon_sym_number] = ACTIONS(3634), - [anon_sym_boolean] = ACTIONS(3634), - [anon_sym_string] = ACTIONS(3634), - [anon_sym_symbol] = ACTIONS(3634), - [anon_sym_object] = ACTIONS(3634), - [anon_sym_property] = ACTIONS(3634), - [anon_sym_signal] = ACTIONS(3634), - [anon_sym_on] = ACTIONS(3634), - [anon_sym_required] = ACTIONS(3634), - [anon_sym_component] = ACTIONS(3634), - [anon_sym_abstract] = ACTIONS(3634), - [anon_sym_interface] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [sym_html_comment] = ACTIONS(5), - }, - [1786] = { - [sym_comment] = STATE(1786), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1787] = { - [sym_comment] = STATE(1787), - [sym_identifier] = ACTIONS(3680), - [anon_sym_export] = ACTIONS(3680), - [anon_sym_type] = ACTIONS(3680), - [anon_sym_namespace] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3680), - [anon_sym_RBRACE] = ACTIONS(3680), - [anon_sym_typeof] = ACTIONS(3680), - [anon_sym_import] = ACTIONS(3680), - [anon_sym_from] = ACTIONS(3680), - [anon_sym_with] = ACTIONS(3680), - [anon_sym_var] = ACTIONS(3680), - [anon_sym_let] = ACTIONS(3680), - [anon_sym_const] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_if] = ACTIONS(3680), - [anon_sym_switch] = ACTIONS(3680), - [anon_sym_for] = ACTIONS(3680), - [anon_sym_LPAREN] = ACTIONS(3680), - [anon_sym_await] = ACTIONS(3680), - [anon_sym_of] = ACTIONS(3680), - [anon_sym_while] = ACTIONS(3680), - [anon_sym_do] = ACTIONS(3680), - [anon_sym_try] = ACTIONS(3680), - [anon_sym_break] = ACTIONS(3680), - [anon_sym_continue] = ACTIONS(3680), - [anon_sym_debugger] = ACTIONS(3680), - [anon_sym_return] = ACTIONS(3680), - [anon_sym_throw] = ACTIONS(3680), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym_yield] = ACTIONS(3680), - [anon_sym_LBRACK] = ACTIONS(3680), - [anon_sym_LTtemplate_GT] = ACTIONS(3680), - [anon_sym_DQUOTE] = ACTIONS(3680), - [anon_sym_SQUOTE] = ACTIONS(3680), - [anon_sym_class] = ACTIONS(3680), - [anon_sym_async] = ACTIONS(3680), - [anon_sym_function] = ACTIONS(3680), - [anon_sym_new] = ACTIONS(3680), - [anon_sym_using] = ACTIONS(3680), - [anon_sym_PLUS] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3680), - [anon_sym_SLASH] = ACTIONS(3680), - [anon_sym_LT] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_void] = ACTIONS(3680), - [anon_sym_delete] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3680), - [anon_sym_DASH_DASH] = ACTIONS(3680), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3680), - [sym_number] = ACTIONS(3680), - [sym_private_property_identifier] = ACTIONS(3680), - [sym_this] = ACTIONS(3680), - [sym_super] = ACTIONS(3680), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_AT] = ACTIONS(3680), - [anon_sym_static] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3680), - [anon_sym_get] = ACTIONS(3680), - [anon_sym_set] = ACTIONS(3680), - [anon_sym_declare] = ACTIONS(3680), - [anon_sym_public] = ACTIONS(3680), - [anon_sym_private] = ACTIONS(3680), - [anon_sym_protected] = ACTIONS(3680), - [anon_sym_override] = ACTIONS(3680), - [anon_sym_module] = ACTIONS(3680), - [anon_sym_any] = ACTIONS(3680), - [anon_sym_number] = ACTIONS(3680), - [anon_sym_boolean] = ACTIONS(3680), - [anon_sym_string] = ACTIONS(3680), - [anon_sym_symbol] = ACTIONS(3680), - [anon_sym_object] = ACTIONS(3680), - [anon_sym_property] = ACTIONS(3680), - [anon_sym_signal] = ACTIONS(3680), - [anon_sym_on] = ACTIONS(3680), - [anon_sym_required] = ACTIONS(3680), - [anon_sym_component] = ACTIONS(3680), - [anon_sym_abstract] = ACTIONS(3680), - [anon_sym_interface] = ACTIONS(3680), - [anon_sym_enum] = ACTIONS(3680), - [sym_html_comment] = ACTIONS(5), - }, - [1788] = { - [sym_comment] = STATE(1788), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [sym_html_comment] = ACTIONS(5), - }, - [1789] = { - [sym_comment] = STATE(1789), - [sym_identifier] = ACTIONS(3650), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_type] = ACTIONS(3650), - [anon_sym_namespace] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3650), - [anon_sym_RBRACE] = ACTIONS(3650), - [anon_sym_typeof] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_from] = ACTIONS(3650), - [anon_sym_with] = ACTIONS(3650), - [anon_sym_var] = ACTIONS(3650), - [anon_sym_let] = ACTIONS(3650), - [anon_sym_const] = ACTIONS(3650), - [anon_sym_BANG] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_LPAREN] = ACTIONS(3650), - [anon_sym_await] = ACTIONS(3650), - [anon_sym_of] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_debugger] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3650), - [anon_sym_yield] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_LTtemplate_GT] = ACTIONS(3650), - [anon_sym_DQUOTE] = ACTIONS(3650), - [anon_sym_SQUOTE] = ACTIONS(3650), - [anon_sym_class] = ACTIONS(3650), - [anon_sym_async] = ACTIONS(3650), - [anon_sym_function] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_using] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_SLASH] = ACTIONS(3650), - [anon_sym_LT] = ACTIONS(3650), - [anon_sym_TILDE] = ACTIONS(3650), - [anon_sym_void] = ACTIONS(3650), - [anon_sym_delete] = ACTIONS(3650), - [anon_sym_PLUS_PLUS] = ACTIONS(3650), - [anon_sym_DASH_DASH] = ACTIONS(3650), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3650), - [sym_number] = ACTIONS(3650), - [sym_private_property_identifier] = ACTIONS(3650), - [sym_this] = ACTIONS(3650), - [sym_super] = ACTIONS(3650), - [sym_true] = ACTIONS(3650), - [sym_false] = ACTIONS(3650), - [sym_null] = ACTIONS(3650), - [sym_undefined] = ACTIONS(3650), - [anon_sym_AT] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_readonly] = ACTIONS(3650), - [anon_sym_get] = ACTIONS(3650), - [anon_sym_set] = ACTIONS(3650), - [anon_sym_declare] = ACTIONS(3650), - [anon_sym_public] = ACTIONS(3650), - [anon_sym_private] = ACTIONS(3650), - [anon_sym_protected] = ACTIONS(3650), - [anon_sym_override] = ACTIONS(3650), - [anon_sym_module] = ACTIONS(3650), - [anon_sym_any] = ACTIONS(3650), - [anon_sym_number] = ACTIONS(3650), - [anon_sym_boolean] = ACTIONS(3650), - [anon_sym_string] = ACTIONS(3650), - [anon_sym_symbol] = ACTIONS(3650), - [anon_sym_object] = ACTIONS(3650), - [anon_sym_property] = ACTIONS(3650), - [anon_sym_signal] = ACTIONS(3650), - [anon_sym_on] = ACTIONS(3650), - [anon_sym_required] = ACTIONS(3650), - [anon_sym_component] = ACTIONS(3650), - [anon_sym_abstract] = ACTIONS(3650), - [anon_sym_interface] = ACTIONS(3650), - [anon_sym_enum] = ACTIONS(3650), + [1741] = { + [sym_comment] = STATE(1741), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_COMMA] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_else] = ACTIONS(2404), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_in] = ACTIONS(2406), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_GT] = ACTIONS(2406), + [anon_sym_DOT] = ACTIONS(2406), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_QMARK_DOT] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_GT_GT] = ACTIONS(2406), + [anon_sym_GT_GT_GT] = ACTIONS(2406), + [anon_sym_LT_LT] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + [anon_sym_CARET] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_PLUS] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2406), + [anon_sym_SLASH] = ACTIONS(2406), + [anon_sym_PERCENT] = ACTIONS(2406), + [anon_sym_STAR_STAR] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2406), + [anon_sym_LT_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2406), + [anon_sym_GT_EQ] = ACTIONS(2406), + [anon_sym_QMARK_QMARK] = ACTIONS(2406), + [anon_sym_instanceof] = ACTIONS(2406), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_satisfies] = ACTIONS(2406), + [anon_sym_enum] = ACTIONS(2404), + [sym__automatic_semicolon] = ACTIONS(2408), + [sym__ternary_qmark] = ACTIONS(2408), [sym_html_comment] = ACTIONS(5), }, - [1790] = { - [sym_comment] = STATE(1790), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1742] = { + [sym_comment] = STATE(1742), + [sym_identifier] = ACTIONS(2426), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2426), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_as] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_from] = ACTIONS(2426), + [anon_sym_var] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2428), + [anon_sym_else] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_of] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_GT] = ACTIONS(2428), + [anon_sym_DOT] = ACTIONS(2428), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2426), + [anon_sym_QMARK_DOT] = ACTIONS(2428), + [anon_sym_AMP_AMP] = ACTIONS(2428), + [anon_sym_PIPE_PIPE] = ACTIONS(2428), + [anon_sym_GT_GT] = ACTIONS(2428), + [anon_sym_GT_GT_GT] = ACTIONS(2428), + [anon_sym_LT_LT] = ACTIONS(2428), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_CARET] = ACTIONS(2428), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), + [anon_sym_STAR_STAR] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(2428), + [anon_sym_LT_EQ] = ACTIONS(2428), + [anon_sym_EQ_EQ] = ACTIONS(2428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2428), + [anon_sym_BANG_EQ] = ACTIONS(2428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2428), + [anon_sym_GT_EQ] = ACTIONS(2428), + [anon_sym_QMARK_QMARK] = ACTIONS(2428), + [anon_sym_instanceof] = ACTIONS(2428), + [anon_sym_PLUS_PLUS] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2428), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2428), + [anon_sym_AT] = ACTIONS(2426), + [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_property] = ACTIONS(2426), + [anon_sym_signal] = ACTIONS(2426), + [anon_sym_on] = ACTIONS(2426), + [anon_sym_required] = ACTIONS(2426), + [anon_sym_component] = ACTIONS(2426), + [anon_sym_satisfies] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2426), + [sym__automatic_semicolon] = ACTIONS(3968), + [sym__ternary_qmark] = ACTIONS(2432), [sym_html_comment] = ACTIONS(5), }, - [1791] = { - [sym_comment] = STATE(1791), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1743] = { + [sym_export_statement] = STATE(5505), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(6894), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(6927), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1743), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(6894), + [sym_method_definition] = STATE(6927), + [sym_pair] = STATE(6927), + [sym_pair_pattern] = STATE(6894), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [aux_sym_object_repeat1] = STATE(6930), + [aux_sym_object_pattern_repeat1] = STATE(6895), + [sym_identifier] = ACTIONS(3842), + [anon_sym_export] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(3842), + [anon_sym_namespace] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(3770), + [anon_sym_RBRACE] = ACTIONS(3914), + [anon_sym_from] = ACTIONS(3842), + [anon_sym_let] = ACTIONS(3842), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(3852), + [anon_sym_new] = ACTIONS(3854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3858), + [anon_sym_get] = ACTIONS(3860), + [anon_sym_set] = ACTIONS(3860), + [anon_sym_declare] = ACTIONS(3842), + [anon_sym_public] = ACTIONS(3862), + [anon_sym_private] = ACTIONS(3862), + [anon_sym_protected] = ACTIONS(3862), + [anon_sym_override] = ACTIONS(3864), + [anon_sym_module] = ACTIONS(3842), + [anon_sym_any] = ACTIONS(3842), + [anon_sym_number] = ACTIONS(3842), + [anon_sym_boolean] = ACTIONS(3842), + [anon_sym_string] = ACTIONS(3842), + [anon_sym_symbol] = ACTIONS(3842), + [anon_sym_object] = ACTIONS(3842), + [anon_sym_property] = ACTIONS(3842), + [anon_sym_signal] = ACTIONS(3842), + [anon_sym_on] = ACTIONS(3842), + [anon_sym_required] = ACTIONS(3842), + [anon_sym_component] = ACTIONS(3842), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), [sym_html_comment] = ACTIONS(5), }, - [1792] = { - [sym_comment] = STATE(1792), + [1744] = { + [sym_comment] = STATE(1744), [sym_identifier] = ACTIONS(2438), [anon_sym_export] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_default] = ACTIONS(2438), [anon_sym_type] = ACTIONS(2438), + [anon_sym_as] = ACTIONS(2438), [anon_sym_namespace] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_COMMA] = ACTIONS(2438), [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_typeof] = ACTIONS(2438), - [anon_sym_import] = ACTIONS(2438), [anon_sym_from] = ACTIONS(2438), - [anon_sym_with] = ACTIONS(2438), [anon_sym_var] = ACTIONS(2438), [anon_sym_let] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_switch] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_await] = ACTIONS(2438), + [anon_sym_in] = ACTIONS(2438), [anon_sym_of] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_do] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_debugger] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_throw] = ACTIONS(2438), [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_LTtemplate_GT] = ACTIONS(2438), - [anon_sym_DQUOTE] = ACTIONS(2438), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_class] = ACTIONS(2438), + [anon_sym_GT] = ACTIONS(2438), + [anon_sym_DOT] = ACTIONS(2438), [anon_sym_async] = ACTIONS(2438), [anon_sym_function] = ACTIONS(2438), - [anon_sym_new] = ACTIONS(2438), - [anon_sym_using] = ACTIONS(2438), + [anon_sym_QMARK_DOT] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2438), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_GT_GT] = ACTIONS(2438), + [anon_sym_GT_GT_GT] = ACTIONS(2438), + [anon_sym_LT_LT] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_CARET] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2438), [anon_sym_PLUS] = ACTIONS(2438), [anon_sym_DASH] = ACTIONS(2438), [anon_sym_SLASH] = ACTIONS(2438), + [anon_sym_PERCENT] = ACTIONS(2438), + [anon_sym_STAR_STAR] = ACTIONS(2438), [anon_sym_LT] = ACTIONS(2438), - [anon_sym_TILDE] = ACTIONS(2438), - [anon_sym_void] = ACTIONS(2438), - [anon_sym_delete] = ACTIONS(2438), + [anon_sym_LT_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ] = ACTIONS(2438), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), + [anon_sym_BANG_EQ] = ACTIONS(2438), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), + [anon_sym_GT_EQ] = ACTIONS(2438), + [anon_sym_QMARK_QMARK] = ACTIONS(2438), + [anon_sym_instanceof] = ACTIONS(2438), [anon_sym_PLUS_PLUS] = ACTIONS(2438), [anon_sym_DASH_DASH] = ACTIONS(2438), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2438), - [sym_number] = ACTIONS(2438), - [sym_private_property_identifier] = ACTIONS(2438), - [sym_this] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_true] = ACTIONS(2438), - [sym_false] = ACTIONS(2438), - [sym_null] = ACTIONS(2438), - [sym_undefined] = ACTIONS(2438), [anon_sym_AT] = ACTIONS(2438), [anon_sym_static] = ACTIONS(2438), [anon_sym_readonly] = ACTIONS(2438), @@ -228031,2159 +222904,1722 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_on] = ACTIONS(2438), [anon_sym_required] = ACTIONS(2438), [anon_sym_component] = ACTIONS(2438), - [anon_sym_abstract] = ACTIONS(2438), - [anon_sym_interface] = ACTIONS(2438), + [anon_sym_satisfies] = ACTIONS(2438), [anon_sym_enum] = ACTIONS(2438), + [sym__automatic_semicolon] = ACTIONS(2440), + [sym__ternary_qmark] = ACTIONS(2440), [sym_html_comment] = ACTIONS(5), }, - [1793] = { - [sym_comment] = STATE(1793), - [sym_identifier] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_type] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3662), - [anon_sym_typeof] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_from] = ACTIONS(3662), - [anon_sym_with] = ACTIONS(3662), - [anon_sym_var] = ACTIONS(3662), - [anon_sym_let] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_BANG] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_LPAREN] = ACTIONS(3662), - [anon_sym_await] = ACTIONS(3662), - [anon_sym_of] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_debugger] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3662), - [anon_sym_yield] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_LTtemplate_GT] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3662), - [anon_sym_SQUOTE] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_async] = ACTIONS(3662), - [anon_sym_function] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_SLASH] = ACTIONS(3662), - [anon_sym_LT] = ACTIONS(3662), - [anon_sym_TILDE] = ACTIONS(3662), - [anon_sym_void] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_PLUS_PLUS] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3662), + [1745] = { + [sym_comment] = STATE(1745), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_default] = ACTIONS(2462), + [anon_sym_type] = ACTIONS(2462), + [anon_sym_as] = ACTIONS(2462), + [anon_sym_namespace] = ACTIONS(2462), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_from] = ACTIONS(2462), + [anon_sym_var] = ACTIONS(2462), + [anon_sym_let] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_in] = ACTIONS(2462), + [anon_sym_of] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2462), + [anon_sym_DOT] = ACTIONS(2462), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(2462), + [anon_sym_QMARK_DOT] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_GT_GT_GT] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_CARET] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_PLUS] = ACTIONS(2462), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_SLASH] = ACTIONS(2462), + [anon_sym_PERCENT] = ACTIONS(2462), + [anon_sym_STAR_STAR] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_LT_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ] = ACTIONS(2462), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ] = ACTIONS(2462), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2462), + [anon_sym_GT_EQ] = ACTIONS(2462), + [anon_sym_QMARK_QMARK] = ACTIONS(2462), + [anon_sym_instanceof] = ACTIONS(2462), + [anon_sym_PLUS_PLUS] = ACTIONS(2462), + [anon_sym_DASH_DASH] = ACTIONS(2462), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2462), + [anon_sym_AT] = ACTIONS(2462), + [anon_sym_static] = ACTIONS(2462), + [anon_sym_readonly] = ACTIONS(2462), + [anon_sym_get] = ACTIONS(2462), + [anon_sym_set] = ACTIONS(2462), + [anon_sym_declare] = ACTIONS(2462), + [anon_sym_public] = ACTIONS(2462), + [anon_sym_private] = ACTIONS(2462), + [anon_sym_protected] = ACTIONS(2462), + [anon_sym_override] = ACTIONS(2462), + [anon_sym_module] = ACTIONS(2462), + [anon_sym_any] = ACTIONS(2462), + [anon_sym_number] = ACTIONS(2462), + [anon_sym_boolean] = ACTIONS(2462), + [anon_sym_string] = ACTIONS(2462), + [anon_sym_symbol] = ACTIONS(2462), + [anon_sym_object] = ACTIONS(2462), + [anon_sym_property] = ACTIONS(2462), + [anon_sym_signal] = ACTIONS(2462), + [anon_sym_on] = ACTIONS(2462), + [anon_sym_required] = ACTIONS(2462), + [anon_sym_component] = ACTIONS(2462), + [anon_sym_satisfies] = ACTIONS(2462), + [anon_sym_enum] = ACTIONS(2462), + [sym__automatic_semicolon] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2464), + [sym_html_comment] = ACTIONS(5), + }, + [1746] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1746), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3970), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3662), - [sym_number] = ACTIONS(3662), - [sym_private_property_identifier] = ACTIONS(3662), - [sym_this] = ACTIONS(3662), - [sym_super] = ACTIONS(3662), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [sym_null] = ACTIONS(3662), - [sym_undefined] = ACTIONS(3662), - [anon_sym_AT] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_readonly] = ACTIONS(3662), - [anon_sym_get] = ACTIONS(3662), - [anon_sym_set] = ACTIONS(3662), - [anon_sym_declare] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_override] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_any] = ACTIONS(3662), - [anon_sym_number] = ACTIONS(3662), - [anon_sym_boolean] = ACTIONS(3662), - [anon_sym_string] = ACTIONS(3662), - [anon_sym_symbol] = ACTIONS(3662), - [anon_sym_object] = ACTIONS(3662), - [anon_sym_property] = ACTIONS(3662), - [anon_sym_signal] = ACTIONS(3662), - [anon_sym_on] = ACTIONS(3662), - [anon_sym_required] = ACTIONS(3662), - [anon_sym_component] = ACTIONS(3662), - [anon_sym_abstract] = ACTIONS(3662), - [anon_sym_interface] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1794] = { - [sym_comment] = STATE(1794), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1747] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1747), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3972), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1795] = { - [sym_comment] = STATE(1795), - [sym_identifier] = ACTIONS(3666), - [anon_sym_export] = ACTIONS(3666), - [anon_sym_type] = ACTIONS(3666), - [anon_sym_namespace] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3666), - [anon_sym_RBRACE] = ACTIONS(3666), - [anon_sym_typeof] = ACTIONS(3666), - [anon_sym_import] = ACTIONS(3666), - [anon_sym_from] = ACTIONS(3666), - [anon_sym_with] = ACTIONS(3666), - [anon_sym_var] = ACTIONS(3666), - [anon_sym_let] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_BANG] = ACTIONS(3666), - [anon_sym_if] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_for] = ACTIONS(3666), - [anon_sym_LPAREN] = ACTIONS(3666), - [anon_sym_await] = ACTIONS(3666), - [anon_sym_of] = ACTIONS(3666), - [anon_sym_while] = ACTIONS(3666), - [anon_sym_do] = ACTIONS(3666), - [anon_sym_try] = ACTIONS(3666), - [anon_sym_break] = ACTIONS(3666), - [anon_sym_continue] = ACTIONS(3666), - [anon_sym_debugger] = ACTIONS(3666), - [anon_sym_return] = ACTIONS(3666), - [anon_sym_throw] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3666), - [anon_sym_yield] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_LTtemplate_GT] = ACTIONS(3666), - [anon_sym_DQUOTE] = ACTIONS(3666), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_async] = ACTIONS(3666), - [anon_sym_function] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_SLASH] = ACTIONS(3666), - [anon_sym_LT] = ACTIONS(3666), - [anon_sym_TILDE] = ACTIONS(3666), - [anon_sym_void] = ACTIONS(3666), - [anon_sym_delete] = ACTIONS(3666), - [anon_sym_PLUS_PLUS] = ACTIONS(3666), - [anon_sym_DASH_DASH] = ACTIONS(3666), + [1748] = { + [sym_comment] = STATE(1748), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_COMMA] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_in] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_DOT] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_QMARK_DOT] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_STAR_STAR] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_instanceof] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3666), - [sym_number] = ACTIONS(3666), - [sym_private_property_identifier] = ACTIONS(3666), - [sym_this] = ACTIONS(3666), - [sym_super] = ACTIONS(3666), - [sym_true] = ACTIONS(3666), - [sym_false] = ACTIONS(3666), - [sym_null] = ACTIONS(3666), - [sym_undefined] = ACTIONS(3666), - [anon_sym_AT] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_readonly] = ACTIONS(3666), - [anon_sym_get] = ACTIONS(3666), - [anon_sym_set] = ACTIONS(3666), - [anon_sym_declare] = ACTIONS(3666), - [anon_sym_public] = ACTIONS(3666), - [anon_sym_private] = ACTIONS(3666), - [anon_sym_protected] = ACTIONS(3666), - [anon_sym_override] = ACTIONS(3666), - [anon_sym_module] = ACTIONS(3666), - [anon_sym_any] = ACTIONS(3666), - [anon_sym_number] = ACTIONS(3666), - [anon_sym_boolean] = ACTIONS(3666), - [anon_sym_string] = ACTIONS(3666), - [anon_sym_symbol] = ACTIONS(3666), - [anon_sym_object] = ACTIONS(3666), - [anon_sym_property] = ACTIONS(3666), - [anon_sym_signal] = ACTIONS(3666), - [anon_sym_on] = ACTIONS(3666), - [anon_sym_required] = ACTIONS(3666), - [anon_sym_component] = ACTIONS(3666), - [anon_sym_abstract] = ACTIONS(3666), - [anon_sym_interface] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), + [anon_sym_BQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_satisfies] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(3974), + [sym__ternary_qmark] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, - [1796] = { - [sym_comment] = STATE(1796), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1749] = { + [sym_comment] = STATE(1749), + [sym_identifier] = ACTIONS(2426), + [anon_sym_export] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2426), + [anon_sym_type] = ACTIONS(2426), + [anon_sym_as] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2428), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_from] = ACTIONS(2426), + [anon_sym_var] = ACTIONS(2426), + [anon_sym_let] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2428), + [anon_sym_LPAREN] = ACTIONS(2428), + [anon_sym_in] = ACTIONS(2428), + [anon_sym_of] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(2428), + [anon_sym_LBRACK] = ACTIONS(2428), + [anon_sym_GT] = ACTIONS(2428), + [anon_sym_DOT] = ACTIONS(2428), + [anon_sym_async] = ACTIONS(2426), + [anon_sym_function] = ACTIONS(2426), + [anon_sym_QMARK_DOT] = ACTIONS(2428), + [anon_sym_AMP_AMP] = ACTIONS(2428), + [anon_sym_PIPE_PIPE] = ACTIONS(2428), + [anon_sym_GT_GT] = ACTIONS(2428), + [anon_sym_GT_GT_GT] = ACTIONS(2428), + [anon_sym_LT_LT] = ACTIONS(2428), + [anon_sym_AMP] = ACTIONS(2428), + [anon_sym_CARET] = ACTIONS(2428), + [anon_sym_PIPE] = ACTIONS(2428), + [anon_sym_PLUS] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2428), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), + [anon_sym_STAR_STAR] = ACTIONS(2428), + [anon_sym_LT] = ACTIONS(2428), + [anon_sym_LT_EQ] = ACTIONS(2428), + [anon_sym_EQ_EQ] = ACTIONS(2428), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2428), + [anon_sym_BANG_EQ] = ACTIONS(2428), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2428), + [anon_sym_GT_EQ] = ACTIONS(2428), + [anon_sym_QMARK_QMARK] = ACTIONS(2428), + [anon_sym_instanceof] = ACTIONS(2428), + [anon_sym_PLUS_PLUS] = ACTIONS(2428), + [anon_sym_DASH_DASH] = ACTIONS(2428), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2428), + [anon_sym_AT] = ACTIONS(2426), + [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_property] = ACTIONS(2426), + [anon_sym_signal] = ACTIONS(2426), + [anon_sym_on] = ACTIONS(2426), + [anon_sym_required] = ACTIONS(2426), + [anon_sym_component] = ACTIONS(2426), + [anon_sym_satisfies] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2426), + [sym__automatic_semicolon] = ACTIONS(3976), + [sym__ternary_qmark] = ACTIONS(2432), [sym_html_comment] = ACTIONS(5), }, - [1797] = { - [sym_comment] = STATE(1797), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1750] = { + [sym_comment] = STATE(1750), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2418), + [anon_sym_type] = ACTIONS(2418), + [anon_sym_as] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2418), + [anon_sym_COMMA] = ACTIONS(2420), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_from] = ACTIONS(2418), + [anon_sym_var] = ACTIONS(2418), + [anon_sym_let] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2420), + [anon_sym_LPAREN] = ACTIONS(2420), + [anon_sym_in] = ACTIONS(2420), + [anon_sym_of] = ACTIONS(2418), + [anon_sym_SEMI] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_GT] = ACTIONS(2420), + [anon_sym_DOT] = ACTIONS(2420), + [anon_sym_async] = ACTIONS(2418), + [anon_sym_function] = ACTIONS(2418), + [anon_sym_QMARK_DOT] = ACTIONS(2420), + [anon_sym_AMP_AMP] = ACTIONS(2420), + [anon_sym_PIPE_PIPE] = ACTIONS(2420), + [anon_sym_GT_GT] = ACTIONS(2420), + [anon_sym_GT_GT_GT] = ACTIONS(2420), + [anon_sym_LT_LT] = ACTIONS(2420), + [anon_sym_AMP] = ACTIONS(2420), + [anon_sym_CARET] = ACTIONS(2420), + [anon_sym_PIPE] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2420), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_PERCENT] = ACTIONS(2420), + [anon_sym_STAR_STAR] = ACTIONS(2420), + [anon_sym_LT] = ACTIONS(2420), + [anon_sym_LT_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ] = ACTIONS(2420), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ] = ACTIONS(2420), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2420), + [anon_sym_GT_EQ] = ACTIONS(2420), + [anon_sym_QMARK_QMARK] = ACTIONS(2420), + [anon_sym_instanceof] = ACTIONS(2420), + [anon_sym_PLUS_PLUS] = ACTIONS(2420), + [anon_sym_DASH_DASH] = ACTIONS(2420), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2420), + [anon_sym_AT] = ACTIONS(2418), + [anon_sym_static] = ACTIONS(2418), + [anon_sym_readonly] = ACTIONS(2418), + [anon_sym_get] = ACTIONS(2418), + [anon_sym_set] = ACTIONS(2418), + [anon_sym_declare] = ACTIONS(2418), + [anon_sym_public] = ACTIONS(2418), + [anon_sym_private] = ACTIONS(2418), + [anon_sym_protected] = ACTIONS(2418), + [anon_sym_override] = ACTIONS(2418), + [anon_sym_module] = ACTIONS(2418), + [anon_sym_any] = ACTIONS(2418), + [anon_sym_number] = ACTIONS(2418), + [anon_sym_boolean] = ACTIONS(2418), + [anon_sym_string] = ACTIONS(2418), + [anon_sym_symbol] = ACTIONS(2418), + [anon_sym_object] = ACTIONS(2418), + [anon_sym_property] = ACTIONS(2418), + [anon_sym_signal] = ACTIONS(2418), + [anon_sym_on] = ACTIONS(2418), + [anon_sym_required] = ACTIONS(2418), + [anon_sym_component] = ACTIONS(2418), + [anon_sym_satisfies] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(3978), + [sym__ternary_qmark] = ACTIONS(2424), [sym_html_comment] = ACTIONS(5), }, - [1798] = { - [sym_comment] = STATE(1798), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1751] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1751), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3980), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1799] = { - [sym_comment] = STATE(1799), - [sym_identifier] = ACTIONS(3674), - [anon_sym_export] = ACTIONS(3674), - [anon_sym_type] = ACTIONS(3674), - [anon_sym_namespace] = ACTIONS(3674), - [anon_sym_LBRACE] = ACTIONS(3674), - [anon_sym_RBRACE] = ACTIONS(3674), - [anon_sym_typeof] = ACTIONS(3674), - [anon_sym_import] = ACTIONS(3674), - [anon_sym_from] = ACTIONS(3674), - [anon_sym_with] = ACTIONS(3674), - [anon_sym_var] = ACTIONS(3674), - [anon_sym_let] = ACTIONS(3674), - [anon_sym_const] = ACTIONS(3674), - [anon_sym_BANG] = ACTIONS(3674), - [anon_sym_if] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_for] = ACTIONS(3674), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_await] = ACTIONS(3674), - [anon_sym_of] = ACTIONS(3674), - [anon_sym_while] = ACTIONS(3674), - [anon_sym_do] = ACTIONS(3674), - [anon_sym_try] = ACTIONS(3674), - [anon_sym_break] = ACTIONS(3674), - [anon_sym_continue] = ACTIONS(3674), - [anon_sym_debugger] = ACTIONS(3674), - [anon_sym_return] = ACTIONS(3674), - [anon_sym_throw] = ACTIONS(3674), - [anon_sym_SEMI] = ACTIONS(3674), - [anon_sym_yield] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_LTtemplate_GT] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(3674), - [anon_sym_SQUOTE] = ACTIONS(3674), - [anon_sym_class] = ACTIONS(3674), - [anon_sym_async] = ACTIONS(3674), - [anon_sym_function] = ACTIONS(3674), - [anon_sym_new] = ACTIONS(3674), - [anon_sym_using] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_SLASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(3674), - [anon_sym_TILDE] = ACTIONS(3674), - [anon_sym_void] = ACTIONS(3674), - [anon_sym_delete] = ACTIONS(3674), - [anon_sym_PLUS_PLUS] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3674), + [1752] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1752), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3674), - [sym_number] = ACTIONS(3674), - [sym_private_property_identifier] = ACTIONS(3674), - [sym_this] = ACTIONS(3674), - [sym_super] = ACTIONS(3674), - [sym_true] = ACTIONS(3674), - [sym_false] = ACTIONS(3674), - [sym_null] = ACTIONS(3674), - [sym_undefined] = ACTIONS(3674), - [anon_sym_AT] = ACTIONS(3674), - [anon_sym_static] = ACTIONS(3674), - [anon_sym_readonly] = ACTIONS(3674), - [anon_sym_get] = ACTIONS(3674), - [anon_sym_set] = ACTIONS(3674), - [anon_sym_declare] = ACTIONS(3674), - [anon_sym_public] = ACTIONS(3674), - [anon_sym_private] = ACTIONS(3674), - [anon_sym_protected] = ACTIONS(3674), - [anon_sym_override] = ACTIONS(3674), - [anon_sym_module] = ACTIONS(3674), - [anon_sym_any] = ACTIONS(3674), - [anon_sym_number] = ACTIONS(3674), - [anon_sym_boolean] = ACTIONS(3674), - [anon_sym_string] = ACTIONS(3674), - [anon_sym_symbol] = ACTIONS(3674), - [anon_sym_object] = ACTIONS(3674), - [anon_sym_property] = ACTIONS(3674), - [anon_sym_signal] = ACTIONS(3674), - [anon_sym_on] = ACTIONS(3674), - [anon_sym_required] = ACTIONS(3674), - [anon_sym_component] = ACTIONS(3674), - [anon_sym_abstract] = ACTIONS(3674), - [anon_sym_interface] = ACTIONS(3674), - [anon_sym_enum] = ACTIONS(3674), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1800] = { - [sym_comment] = STATE(1800), - [sym_identifier] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_type] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_with] = ACTIONS(3654), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_await] = ACTIONS(3654), - [anon_sym_of] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_debugger] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_LTtemplate_GT] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_async] = ACTIONS(3654), - [anon_sym_function] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_void] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3654), + [1753] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1753), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3984), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3654), - [sym_number] = ACTIONS(3654), - [sym_private_property_identifier] = ACTIONS(3654), - [sym_this] = ACTIONS(3654), - [sym_super] = ACTIONS(3654), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [sym_null] = ACTIONS(3654), - [sym_undefined] = ACTIONS(3654), - [anon_sym_AT] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_readonly] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(3654), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_declare] = ACTIONS(3654), - [anon_sym_public] = ACTIONS(3654), - [anon_sym_private] = ACTIONS(3654), - [anon_sym_protected] = ACTIONS(3654), - [anon_sym_override] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_any] = ACTIONS(3654), - [anon_sym_number] = ACTIONS(3654), - [anon_sym_boolean] = ACTIONS(3654), - [anon_sym_string] = ACTIONS(3654), - [anon_sym_symbol] = ACTIONS(3654), - [anon_sym_object] = ACTIONS(3654), - [anon_sym_property] = ACTIONS(3654), - [anon_sym_signal] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_required] = ACTIONS(3654), - [anon_sym_component] = ACTIONS(3654), - [anon_sym_abstract] = ACTIONS(3654), - [anon_sym_interface] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1801] = { - [sym_comment] = STATE(1801), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1754] = { + [sym_comment] = STATE(1754), + [sym_identifier] = ACTIONS(2340), + [anon_sym_export] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2342), + [anon_sym_default] = ACTIONS(2340), + [anon_sym_type] = ACTIONS(2340), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_from] = ACTIONS(2340), + [anon_sym_var] = ACTIONS(2340), + [anon_sym_let] = ACTIONS(2340), + [anon_sym_BANG] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_in] = ACTIONS(2342), + [anon_sym_of] = ACTIONS(2340), + [anon_sym_SEMI] = ACTIONS(2342), + [anon_sym_LBRACK] = ACTIONS(2342), + [anon_sym_GT] = ACTIONS(2342), + [anon_sym_DOT] = ACTIONS(2342), + [anon_sym_async] = ACTIONS(2340), + [anon_sym_function] = ACTIONS(2340), + [anon_sym_QMARK_DOT] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2342), + [anon_sym_PIPE_PIPE] = ACTIONS(2342), + [anon_sym_GT_GT] = ACTIONS(2342), + [anon_sym_GT_GT_GT] = ACTIONS(2342), + [anon_sym_LT_LT] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_CARET] = ACTIONS(2342), + [anon_sym_PIPE] = ACTIONS(2342), + [anon_sym_PLUS] = ACTIONS(2342), + [anon_sym_DASH] = ACTIONS(2342), + [anon_sym_SLASH] = ACTIONS(2342), + [anon_sym_PERCENT] = ACTIONS(2342), + [anon_sym_STAR_STAR] = ACTIONS(2342), + [anon_sym_LT] = ACTIONS(2342), + [anon_sym_LT_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ] = ACTIONS(2342), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ] = ACTIONS(2342), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2342), + [anon_sym_GT_EQ] = ACTIONS(2342), + [anon_sym_QMARK_QMARK] = ACTIONS(2342), + [anon_sym_instanceof] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_DASH_DASH] = ACTIONS(2342), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2342), + [anon_sym_AT] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2340), + [anon_sym_readonly] = ACTIONS(2340), + [anon_sym_get] = ACTIONS(2340), + [anon_sym_set] = ACTIONS(2340), + [anon_sym_declare] = ACTIONS(2340), + [anon_sym_public] = ACTIONS(2340), + [anon_sym_private] = ACTIONS(2340), + [anon_sym_protected] = ACTIONS(2340), + [anon_sym_override] = ACTIONS(2340), + [anon_sym_module] = ACTIONS(2340), + [anon_sym_any] = ACTIONS(2340), + [anon_sym_number] = ACTIONS(2340), + [anon_sym_boolean] = ACTIONS(2340), + [anon_sym_string] = ACTIONS(2340), + [anon_sym_symbol] = ACTIONS(2340), + [anon_sym_object] = ACTIONS(2340), + [anon_sym_property] = ACTIONS(2340), + [anon_sym_signal] = ACTIONS(2340), + [anon_sym_on] = ACTIONS(2340), + [anon_sym_required] = ACTIONS(2340), + [anon_sym_component] = ACTIONS(2340), + [anon_sym_satisfies] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2340), + [sym__automatic_semicolon] = ACTIONS(3986), + [sym__ternary_qmark] = ACTIONS(2346), [sym_html_comment] = ACTIONS(5), }, - [1802] = { - [sym_comment] = STATE(1802), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), + [1755] = { + [sym_comment] = STATE(1755), + [sym_identifier] = ACTIONS(2348), + [anon_sym_export] = ACTIONS(2348), + [anon_sym_STAR] = ACTIONS(2350), + [anon_sym_default] = ACTIONS(2348), + [anon_sym_type] = ACTIONS(2348), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_namespace] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_from] = ACTIONS(2348), + [anon_sym_var] = ACTIONS(2348), + [anon_sym_let] = ACTIONS(2348), + [anon_sym_BANG] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_in] = ACTIONS(2350), + [anon_sym_of] = ACTIONS(2348), + [anon_sym_SEMI] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2350), + [anon_sym_GT] = ACTIONS(2350), + [anon_sym_DOT] = ACTIONS(2350), + [anon_sym_async] = ACTIONS(2348), + [anon_sym_function] = ACTIONS(2348), + [anon_sym_QMARK_DOT] = ACTIONS(2350), + [anon_sym_AMP_AMP] = ACTIONS(2350), + [anon_sym_PIPE_PIPE] = ACTIONS(2350), + [anon_sym_GT_GT] = ACTIONS(2350), + [anon_sym_GT_GT_GT] = ACTIONS(2350), + [anon_sym_LT_LT] = ACTIONS(2350), + [anon_sym_AMP] = ACTIONS(2350), + [anon_sym_CARET] = ACTIONS(2350), + [anon_sym_PIPE] = ACTIONS(2350), + [anon_sym_PLUS] = ACTIONS(2350), + [anon_sym_DASH] = ACTIONS(2350), + [anon_sym_SLASH] = ACTIONS(2350), + [anon_sym_PERCENT] = ACTIONS(2350), + [anon_sym_STAR_STAR] = ACTIONS(2350), + [anon_sym_LT] = ACTIONS(2350), + [anon_sym_LT_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ] = ACTIONS(2350), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ] = ACTIONS(2350), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), + [anon_sym_GT_EQ] = ACTIONS(2350), + [anon_sym_QMARK_QMARK] = ACTIONS(2350), + [anon_sym_instanceof] = ACTIONS(2350), + [anon_sym_PLUS_PLUS] = ACTIONS(2350), + [anon_sym_DASH_DASH] = ACTIONS(2350), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [anon_sym_BQUOTE] = ACTIONS(2350), + [anon_sym_AT] = ACTIONS(2348), + [anon_sym_static] = ACTIONS(2348), + [anon_sym_readonly] = ACTIONS(2348), + [anon_sym_get] = ACTIONS(2348), + [anon_sym_set] = ACTIONS(2348), + [anon_sym_declare] = ACTIONS(2348), + [anon_sym_public] = ACTIONS(2348), + [anon_sym_private] = ACTIONS(2348), + [anon_sym_protected] = ACTIONS(2348), + [anon_sym_override] = ACTIONS(2348), + [anon_sym_module] = ACTIONS(2348), + [anon_sym_any] = ACTIONS(2348), + [anon_sym_number] = ACTIONS(2348), + [anon_sym_boolean] = ACTIONS(2348), + [anon_sym_string] = ACTIONS(2348), + [anon_sym_symbol] = ACTIONS(2348), + [anon_sym_object] = ACTIONS(2348), + [anon_sym_property] = ACTIONS(2348), + [anon_sym_signal] = ACTIONS(2348), + [anon_sym_on] = ACTIONS(2348), + [anon_sym_required] = ACTIONS(2348), + [anon_sym_component] = ACTIONS(2348), + [anon_sym_satisfies] = ACTIONS(2350), + [anon_sym_enum] = ACTIONS(2348), + [sym__automatic_semicolon] = ACTIONS(3988), + [sym__ternary_qmark] = ACTIONS(2354), [sym_html_comment] = ACTIONS(5), }, - [1803] = { - [sym_comment] = STATE(1803), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1756] = { + [sym_comment] = STATE(1756), + [sym_identifier] = ACTIONS(2396), + [anon_sym_export] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2398), + [anon_sym_default] = ACTIONS(2396), + [anon_sym_type] = ACTIONS(2396), + [anon_sym_as] = ACTIONS(2398), + [anon_sym_namespace] = ACTIONS(2396), + [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_from] = ACTIONS(2396), + [anon_sym_var] = ACTIONS(2396), + [anon_sym_let] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2398), + [anon_sym_in] = ACTIONS(2398), + [anon_sym_of] = ACTIONS(2396), + [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_LBRACK] = ACTIONS(2398), + [anon_sym_GT] = ACTIONS(2398), + [anon_sym_DOT] = ACTIONS(2398), + [anon_sym_async] = ACTIONS(2396), + [anon_sym_function] = ACTIONS(2396), + [anon_sym_QMARK_DOT] = ACTIONS(2398), + [anon_sym_AMP_AMP] = ACTIONS(2398), + [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [anon_sym_GT_GT] = ACTIONS(2398), + [anon_sym_GT_GT_GT] = ACTIONS(2398), + [anon_sym_LT_LT] = ACTIONS(2398), + [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_CARET] = ACTIONS(2398), + [anon_sym_PIPE] = ACTIONS(2398), + [anon_sym_PLUS] = ACTIONS(2398), + [anon_sym_DASH] = ACTIONS(2398), + [anon_sym_SLASH] = ACTIONS(2398), + [anon_sym_PERCENT] = ACTIONS(2398), + [anon_sym_STAR_STAR] = ACTIONS(2398), + [anon_sym_LT] = ACTIONS(2398), + [anon_sym_LT_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ] = ACTIONS(2398), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ] = ACTIONS(2398), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2398), + [anon_sym_GT_EQ] = ACTIONS(2398), + [anon_sym_QMARK_QMARK] = ACTIONS(2398), + [anon_sym_instanceof] = ACTIONS(2398), + [anon_sym_PLUS_PLUS] = ACTIONS(2398), + [anon_sym_DASH_DASH] = ACTIONS(2398), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2398), + [anon_sym_AT] = ACTIONS(2396), + [anon_sym_static] = ACTIONS(2396), + [anon_sym_readonly] = ACTIONS(2396), + [anon_sym_get] = ACTIONS(2396), + [anon_sym_set] = ACTIONS(2396), + [anon_sym_declare] = ACTIONS(2396), + [anon_sym_public] = ACTIONS(2396), + [anon_sym_private] = ACTIONS(2396), + [anon_sym_protected] = ACTIONS(2396), + [anon_sym_override] = ACTIONS(2396), + [anon_sym_module] = ACTIONS(2396), + [anon_sym_any] = ACTIONS(2396), + [anon_sym_number] = ACTIONS(2396), + [anon_sym_boolean] = ACTIONS(2396), + [anon_sym_string] = ACTIONS(2396), + [anon_sym_symbol] = ACTIONS(2396), + [anon_sym_object] = ACTIONS(2396), + [anon_sym_property] = ACTIONS(2396), + [anon_sym_signal] = ACTIONS(2396), + [anon_sym_on] = ACTIONS(2396), + [anon_sym_required] = ACTIONS(2396), + [anon_sym_component] = ACTIONS(2396), + [anon_sym_satisfies] = ACTIONS(2398), + [anon_sym_enum] = ACTIONS(2396), + [sym__automatic_semicolon] = ACTIONS(3990), + [sym__ternary_qmark] = ACTIONS(2402), [sym_html_comment] = ACTIONS(5), }, - [1804] = { - [sym_comment] = STATE(1804), - [sym_identifier] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_type] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3626), - [anon_sym_typeof] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_from] = ACTIONS(3626), - [anon_sym_with] = ACTIONS(3626), - [anon_sym_var] = ACTIONS(3626), - [anon_sym_let] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_LPAREN] = ACTIONS(3626), - [anon_sym_await] = ACTIONS(3626), - [anon_sym_of] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_debugger] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3626), - [anon_sym_yield] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_LTtemplate_GT] = ACTIONS(3626), - [anon_sym_DQUOTE] = ACTIONS(3626), - [anon_sym_SQUOTE] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_async] = ACTIONS(3626), - [anon_sym_function] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_SLASH] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(3626), - [anon_sym_TILDE] = ACTIONS(3626), - [anon_sym_void] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_PLUS_PLUS] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3626), - [sym_number] = ACTIONS(3626), - [sym_private_property_identifier] = ACTIONS(3626), - [sym_this] = ACTIONS(3626), - [sym_super] = ACTIONS(3626), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [sym_null] = ACTIONS(3626), - [sym_undefined] = ACTIONS(3626), - [anon_sym_AT] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_readonly] = ACTIONS(3626), - [anon_sym_get] = ACTIONS(3626), - [anon_sym_set] = ACTIONS(3626), - [anon_sym_declare] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_override] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_any] = ACTIONS(3626), - [anon_sym_number] = ACTIONS(3626), - [anon_sym_boolean] = ACTIONS(3626), - [anon_sym_string] = ACTIONS(3626), - [anon_sym_symbol] = ACTIONS(3626), - [anon_sym_object] = ACTIONS(3626), - [anon_sym_property] = ACTIONS(3626), - [anon_sym_signal] = ACTIONS(3626), - [anon_sym_on] = ACTIONS(3626), - [anon_sym_required] = ACTIONS(3626), - [anon_sym_component] = ACTIONS(3626), - [anon_sym_abstract] = ACTIONS(3626), - [anon_sym_interface] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), + [1757] = { + [sym_comment] = STATE(1757), + [sym_identifier] = ACTIONS(2296), + [anon_sym_export] = ACTIONS(2296), + [anon_sym_STAR] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_as] = ACTIONS(2296), + [anon_sym_namespace] = ACTIONS(2296), + [anon_sym_COMMA] = ACTIONS(2296), + [anon_sym_RBRACE] = ACTIONS(2296), + [anon_sym_from] = ACTIONS(2296), + [anon_sym_var] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_BANG] = ACTIONS(2296), + [anon_sym_LPAREN] = ACTIONS(2296), + [anon_sym_in] = ACTIONS(2296), + [anon_sym_of] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2296), + [anon_sym_LBRACK] = ACTIONS(2296), + [anon_sym_GT] = ACTIONS(2296), + [anon_sym_DOT] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_function] = ACTIONS(2296), + [anon_sym_QMARK_DOT] = ACTIONS(2296), + [anon_sym_AMP_AMP] = ACTIONS(2296), + [anon_sym_PIPE_PIPE] = ACTIONS(2296), + [anon_sym_GT_GT] = ACTIONS(2296), + [anon_sym_GT_GT_GT] = ACTIONS(2296), + [anon_sym_LT_LT] = ACTIONS(2296), + [anon_sym_AMP] = ACTIONS(2296), + [anon_sym_CARET] = ACTIONS(2296), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2296), + [anon_sym_SLASH] = ACTIONS(2296), + [anon_sym_PERCENT] = ACTIONS(2296), + [anon_sym_STAR_STAR] = ACTIONS(2296), + [anon_sym_LT] = ACTIONS(2296), + [anon_sym_LT_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ] = ACTIONS(2296), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ] = ACTIONS(2296), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), + [anon_sym_GT_EQ] = ACTIONS(2296), + [anon_sym_QMARK_QMARK] = ACTIONS(2296), + [anon_sym_instanceof] = ACTIONS(2296), + [anon_sym_PLUS_PLUS] = ACTIONS(2296), + [anon_sym_DASH_DASH] = ACTIONS(2296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2296), + [anon_sym_AT] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_readonly] = ACTIONS(2296), + [anon_sym_get] = ACTIONS(2296), + [anon_sym_set] = ACTIONS(2296), + [anon_sym_declare] = ACTIONS(2296), + [anon_sym_public] = ACTIONS(2296), + [anon_sym_private] = ACTIONS(2296), + [anon_sym_protected] = ACTIONS(2296), + [anon_sym_override] = ACTIONS(2296), + [anon_sym_module] = ACTIONS(2296), + [anon_sym_any] = ACTIONS(2296), + [anon_sym_number] = ACTIONS(2296), + [anon_sym_boolean] = ACTIONS(2296), + [anon_sym_string] = ACTIONS(2296), + [anon_sym_symbol] = ACTIONS(2296), + [anon_sym_object] = ACTIONS(2296), + [anon_sym_property] = ACTIONS(2296), + [anon_sym_signal] = ACTIONS(2296), + [anon_sym_on] = ACTIONS(2296), + [anon_sym_required] = ACTIONS(2296), + [anon_sym_component] = ACTIONS(2296), + [anon_sym_satisfies] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [sym__automatic_semicolon] = ACTIONS(3992), + [sym__ternary_qmark] = ACTIONS(2456), [sym_html_comment] = ACTIONS(5), }, - [1805] = { - [sym_comment] = STATE(1805), - [sym_identifier] = ACTIONS(3570), - [anon_sym_export] = ACTIONS(3570), - [anon_sym_type] = ACTIONS(3570), - [anon_sym_namespace] = ACTIONS(3570), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym_typeof] = ACTIONS(3570), - [anon_sym_import] = ACTIONS(3570), - [anon_sym_from] = ACTIONS(3570), - [anon_sym_with] = ACTIONS(3570), - [anon_sym_var] = ACTIONS(3570), - [anon_sym_let] = ACTIONS(3570), - [anon_sym_const] = ACTIONS(3570), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_if] = ACTIONS(3570), - [anon_sym_switch] = ACTIONS(3570), - [anon_sym_for] = ACTIONS(3570), - [anon_sym_LPAREN] = ACTIONS(3570), - [anon_sym_await] = ACTIONS(3570), - [anon_sym_of] = ACTIONS(3570), - [anon_sym_while] = ACTIONS(3570), - [anon_sym_do] = ACTIONS(3570), - [anon_sym_try] = ACTIONS(3570), - [anon_sym_break] = ACTIONS(3570), - [anon_sym_continue] = ACTIONS(3570), - [anon_sym_debugger] = ACTIONS(3570), - [anon_sym_return] = ACTIONS(3570), - [anon_sym_throw] = ACTIONS(3570), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym_yield] = ACTIONS(3570), - [anon_sym_LBRACK] = ACTIONS(3570), - [anon_sym_LTtemplate_GT] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [anon_sym_SQUOTE] = ACTIONS(3570), - [anon_sym_class] = ACTIONS(3570), - [anon_sym_async] = ACTIONS(3570), - [anon_sym_function] = ACTIONS(3570), - [anon_sym_new] = ACTIONS(3570), - [anon_sym_using] = ACTIONS(3570), - [anon_sym_PLUS] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3570), - [anon_sym_SLASH] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_void] = ACTIONS(3570), - [anon_sym_delete] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3570), - [sym_number] = ACTIONS(3570), - [sym_private_property_identifier] = ACTIONS(3570), - [sym_this] = ACTIONS(3570), - [sym_super] = ACTIONS(3570), - [sym_true] = ACTIONS(3570), - [sym_false] = ACTIONS(3570), - [sym_null] = ACTIONS(3570), - [sym_undefined] = ACTIONS(3570), - [anon_sym_AT] = ACTIONS(3570), - [anon_sym_static] = ACTIONS(3570), - [anon_sym_readonly] = ACTIONS(3570), - [anon_sym_get] = ACTIONS(3570), - [anon_sym_set] = ACTIONS(3570), - [anon_sym_declare] = ACTIONS(3570), - [anon_sym_public] = ACTIONS(3570), - [anon_sym_private] = ACTIONS(3570), - [anon_sym_protected] = ACTIONS(3570), - [anon_sym_override] = ACTIONS(3570), - [anon_sym_module] = ACTIONS(3570), - [anon_sym_any] = ACTIONS(3570), - [anon_sym_number] = ACTIONS(3570), - [anon_sym_boolean] = ACTIONS(3570), - [anon_sym_string] = ACTIONS(3570), - [anon_sym_symbol] = ACTIONS(3570), - [anon_sym_object] = ACTIONS(3570), - [anon_sym_property] = ACTIONS(3570), - [anon_sym_signal] = ACTIONS(3570), - [anon_sym_on] = ACTIONS(3570), - [anon_sym_required] = ACTIONS(3570), - [anon_sym_component] = ACTIONS(3570), - [anon_sym_abstract] = ACTIONS(3570), - [anon_sym_interface] = ACTIONS(3570), - [anon_sym_enum] = ACTIONS(3570), + [1758] = { + [sym_comment] = STATE(1758), + [sym_identifier] = ACTIONS(2358), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_STAR] = ACTIONS(2360), + [anon_sym_default] = ACTIONS(2358), + [anon_sym_type] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2360), + [anon_sym_namespace] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_from] = ACTIONS(2358), + [anon_sym_var] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_BANG] = ACTIONS(2360), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_in] = ACTIONS(2360), + [anon_sym_of] = ACTIONS(2358), + [anon_sym_SEMI] = ACTIONS(2360), + [anon_sym_LBRACK] = ACTIONS(2360), + [anon_sym_GT] = ACTIONS(2360), + [anon_sym_DOT] = ACTIONS(2360), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2358), + [anon_sym_QMARK_DOT] = ACTIONS(2360), + [anon_sym_AMP_AMP] = ACTIONS(2360), + [anon_sym_PIPE_PIPE] = ACTIONS(2360), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_GT_GT_GT] = ACTIONS(2360), + [anon_sym_LT_LT] = ACTIONS(2360), + [anon_sym_AMP] = ACTIONS(2360), + [anon_sym_CARET] = ACTIONS(2360), + [anon_sym_PIPE] = ACTIONS(2360), + [anon_sym_PLUS] = ACTIONS(2360), + [anon_sym_DASH] = ACTIONS(2360), + [anon_sym_SLASH] = ACTIONS(2360), + [anon_sym_PERCENT] = ACTIONS(2360), + [anon_sym_STAR_STAR] = ACTIONS(2360), + [anon_sym_LT] = ACTIONS(2360), + [anon_sym_LT_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ] = ACTIONS(2360), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ] = ACTIONS(2360), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2360), + [anon_sym_GT_EQ] = ACTIONS(2360), + [anon_sym_QMARK_QMARK] = ACTIONS(2360), + [anon_sym_instanceof] = ACTIONS(2360), + [anon_sym_PLUS_PLUS] = ACTIONS(2360), + [anon_sym_DASH_DASH] = ACTIONS(2360), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2360), + [anon_sym_AT] = ACTIONS(2358), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_readonly] = ACTIONS(2358), + [anon_sym_get] = ACTIONS(2358), + [anon_sym_set] = ACTIONS(2358), + [anon_sym_declare] = ACTIONS(2358), + [anon_sym_public] = ACTIONS(2358), + [anon_sym_private] = ACTIONS(2358), + [anon_sym_protected] = ACTIONS(2358), + [anon_sym_override] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_any] = ACTIONS(2358), + [anon_sym_number] = ACTIONS(2358), + [anon_sym_boolean] = ACTIONS(2358), + [anon_sym_string] = ACTIONS(2358), + [anon_sym_symbol] = ACTIONS(2358), + [anon_sym_object] = ACTIONS(2358), + [anon_sym_property] = ACTIONS(2358), + [anon_sym_signal] = ACTIONS(2358), + [anon_sym_on] = ACTIONS(2358), + [anon_sym_required] = ACTIONS(2358), + [anon_sym_component] = ACTIONS(2358), + [anon_sym_satisfies] = ACTIONS(2360), + [anon_sym_enum] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(3994), + [sym__ternary_qmark] = ACTIONS(2364), [sym_html_comment] = ACTIONS(5), }, - [1806] = { - [sym_comment] = STATE(1806), - [sym_identifier] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_type] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_RBRACE] = ACTIONS(3630), - [anon_sym_typeof] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_from] = ACTIONS(3630), - [anon_sym_with] = ACTIONS(3630), - [anon_sym_var] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_await] = ACTIONS(3630), - [anon_sym_of] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_debugger] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LTtemplate_GT] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_SQUOTE] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_async] = ACTIONS(3630), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_SLASH] = ACTIONS(3630), - [anon_sym_LT] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3630), - [anon_sym_void] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3630), + [1759] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1759), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(3996), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3630), - [sym_number] = ACTIONS(3630), - [sym_private_property_identifier] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [sym_super] = ACTIONS(3630), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [sym_null] = ACTIONS(3630), - [sym_undefined] = ACTIONS(3630), - [anon_sym_AT] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_readonly] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(3630), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_declare] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_override] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_any] = ACTIONS(3630), - [anon_sym_number] = ACTIONS(3630), - [anon_sym_boolean] = ACTIONS(3630), - [anon_sym_string] = ACTIONS(3630), - [anon_sym_symbol] = ACTIONS(3630), - [anon_sym_object] = ACTIONS(3630), - [anon_sym_property] = ACTIONS(3630), - [anon_sym_signal] = ACTIONS(3630), - [anon_sym_on] = ACTIONS(3630), - [anon_sym_required] = ACTIONS(3630), - [anon_sym_component] = ACTIONS(3630), - [anon_sym_abstract] = ACTIONS(3630), - [anon_sym_interface] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1807] = { - [sym_comment] = STATE(1807), - [sym_identifier] = ACTIONS(3648), - [anon_sym_export] = ACTIONS(3648), - [anon_sym_type] = ACTIONS(3648), - [anon_sym_namespace] = ACTIONS(3648), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_RBRACE] = ACTIONS(3648), - [anon_sym_typeof] = ACTIONS(3648), - [anon_sym_import] = ACTIONS(3648), - [anon_sym_from] = ACTIONS(3648), - [anon_sym_with] = ACTIONS(3648), - [anon_sym_var] = ACTIONS(3648), - [anon_sym_let] = ACTIONS(3648), - [anon_sym_const] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_if] = ACTIONS(3648), - [anon_sym_switch] = ACTIONS(3648), - [anon_sym_for] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3648), - [anon_sym_await] = ACTIONS(3648), - [anon_sym_of] = ACTIONS(3648), - [anon_sym_while] = ACTIONS(3648), - [anon_sym_do] = ACTIONS(3648), - [anon_sym_try] = ACTIONS(3648), - [anon_sym_break] = ACTIONS(3648), - [anon_sym_continue] = ACTIONS(3648), - [anon_sym_debugger] = ACTIONS(3648), - [anon_sym_return] = ACTIONS(3648), - [anon_sym_throw] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym_yield] = ACTIONS(3648), - [anon_sym_LBRACK] = ACTIONS(3648), - [anon_sym_LTtemplate_GT] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [anon_sym_class] = ACTIONS(3648), - [anon_sym_async] = ACTIONS(3648), - [anon_sym_function] = ACTIONS(3648), - [anon_sym_new] = ACTIONS(3648), - [anon_sym_using] = ACTIONS(3648), - [anon_sym_PLUS] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3648), - [anon_sym_SLASH] = ACTIONS(3648), - [anon_sym_LT] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [anon_sym_void] = ACTIONS(3648), - [anon_sym_delete] = ACTIONS(3648), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3648), - [sym_number] = ACTIONS(3648), - [sym_private_property_identifier] = ACTIONS(3648), - [sym_this] = ACTIONS(3648), - [sym_super] = ACTIONS(3648), - [sym_true] = ACTIONS(3648), - [sym_false] = ACTIONS(3648), - [sym_null] = ACTIONS(3648), - [sym_undefined] = ACTIONS(3648), - [anon_sym_AT] = ACTIONS(3648), - [anon_sym_static] = ACTIONS(3648), - [anon_sym_readonly] = ACTIONS(3648), - [anon_sym_get] = ACTIONS(3648), - [anon_sym_set] = ACTIONS(3648), - [anon_sym_declare] = ACTIONS(3648), - [anon_sym_public] = ACTIONS(3648), - [anon_sym_private] = ACTIONS(3648), - [anon_sym_protected] = ACTIONS(3648), - [anon_sym_override] = ACTIONS(3648), - [anon_sym_module] = ACTIONS(3648), - [anon_sym_any] = ACTIONS(3648), - [anon_sym_number] = ACTIONS(3648), - [anon_sym_boolean] = ACTIONS(3648), - [anon_sym_string] = ACTIONS(3648), - [anon_sym_symbol] = ACTIONS(3648), - [anon_sym_object] = ACTIONS(3648), - [anon_sym_property] = ACTIONS(3648), - [anon_sym_signal] = ACTIONS(3648), - [anon_sym_on] = ACTIONS(3648), - [anon_sym_required] = ACTIONS(3648), - [anon_sym_component] = ACTIONS(3648), - [anon_sym_abstract] = ACTIONS(3648), - [anon_sym_interface] = ACTIONS(3648), - [anon_sym_enum] = ACTIONS(3648), + [1760] = { + [sym_comment] = STATE(1760), + [sym_identifier] = ACTIONS(2410), + [anon_sym_export] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2410), + [anon_sym_type] = ACTIONS(2410), + [anon_sym_as] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2412), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_from] = ACTIONS(2410), + [anon_sym_var] = ACTIONS(2410), + [anon_sym_let] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2412), + [anon_sym_in] = ACTIONS(2412), + [anon_sym_of] = ACTIONS(2410), + [anon_sym_SEMI] = ACTIONS(2412), + [anon_sym_LBRACK] = ACTIONS(2412), + [anon_sym_GT] = ACTIONS(2412), + [anon_sym_DOT] = ACTIONS(2412), + [anon_sym_async] = ACTIONS(2410), + [anon_sym_function] = ACTIONS(2410), + [anon_sym_QMARK_DOT] = ACTIONS(2412), + [anon_sym_AMP_AMP] = ACTIONS(2412), + [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [anon_sym_GT_GT] = ACTIONS(2412), + [anon_sym_GT_GT_GT] = ACTIONS(2412), + [anon_sym_LT_LT] = ACTIONS(2412), + [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_CARET] = ACTIONS(2412), + [anon_sym_PIPE] = ACTIONS(2412), + [anon_sym_PLUS] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2412), + [anon_sym_SLASH] = ACTIONS(2412), + [anon_sym_PERCENT] = ACTIONS(2412), + [anon_sym_STAR_STAR] = ACTIONS(2412), + [anon_sym_LT] = ACTIONS(2412), + [anon_sym_LT_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ] = ACTIONS(2412), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ] = ACTIONS(2412), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2412), + [anon_sym_GT_EQ] = ACTIONS(2412), + [anon_sym_QMARK_QMARK] = ACTIONS(2412), + [anon_sym_instanceof] = ACTIONS(2412), + [anon_sym_PLUS_PLUS] = ACTIONS(2412), + [anon_sym_DASH_DASH] = ACTIONS(2412), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2412), + [anon_sym_AT] = ACTIONS(2410), + [anon_sym_static] = ACTIONS(2410), + [anon_sym_readonly] = ACTIONS(2410), + [anon_sym_get] = ACTIONS(2410), + [anon_sym_set] = ACTIONS(2410), + [anon_sym_declare] = ACTIONS(2410), + [anon_sym_public] = ACTIONS(2410), + [anon_sym_private] = ACTIONS(2410), + [anon_sym_protected] = ACTIONS(2410), + [anon_sym_override] = ACTIONS(2410), + [anon_sym_module] = ACTIONS(2410), + [anon_sym_any] = ACTIONS(2410), + [anon_sym_number] = ACTIONS(2410), + [anon_sym_boolean] = ACTIONS(2410), + [anon_sym_string] = ACTIONS(2410), + [anon_sym_symbol] = ACTIONS(2410), + [anon_sym_object] = ACTIONS(2410), + [anon_sym_property] = ACTIONS(2410), + [anon_sym_signal] = ACTIONS(2410), + [anon_sym_on] = ACTIONS(2410), + [anon_sym_required] = ACTIONS(2410), + [anon_sym_component] = ACTIONS(2410), + [anon_sym_satisfies] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2410), + [sym__automatic_semicolon] = ACTIONS(3998), + [sym__ternary_qmark] = ACTIONS(2416), [sym_html_comment] = ACTIONS(5), }, - [1808] = { - [sym_comment] = STATE(1808), - [sym_identifier] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_type] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_from] = ACTIONS(3654), - [anon_sym_with] = ACTIONS(3654), - [anon_sym_var] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_BANG] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_await] = ACTIONS(3654), - [anon_sym_of] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_debugger] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_yield] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_LTtemplate_GT] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_async] = ACTIONS(3654), - [anon_sym_function] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_SLASH] = ACTIONS(3654), - [anon_sym_LT] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3654), - [anon_sym_void] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_PLUS_PLUS] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3654), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3654), - [sym_number] = ACTIONS(3654), - [sym_private_property_identifier] = ACTIONS(3654), - [sym_this] = ACTIONS(3654), - [sym_super] = ACTIONS(3654), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [sym_null] = ACTIONS(3654), - [sym_undefined] = ACTIONS(3654), - [anon_sym_AT] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_readonly] = ACTIONS(3654), - [anon_sym_get] = ACTIONS(3654), - [anon_sym_set] = ACTIONS(3654), - [anon_sym_declare] = ACTIONS(3654), - [anon_sym_public] = ACTIONS(3654), - [anon_sym_private] = ACTIONS(3654), - [anon_sym_protected] = ACTIONS(3654), - [anon_sym_override] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_any] = ACTIONS(3654), - [anon_sym_number] = ACTIONS(3654), - [anon_sym_boolean] = ACTIONS(3654), - [anon_sym_string] = ACTIONS(3654), - [anon_sym_symbol] = ACTIONS(3654), - [anon_sym_object] = ACTIONS(3654), - [anon_sym_property] = ACTIONS(3654), - [anon_sym_signal] = ACTIONS(3654), - [anon_sym_on] = ACTIONS(3654), - [anon_sym_required] = ACTIONS(3654), - [anon_sym_component] = ACTIONS(3654), - [anon_sym_abstract] = ACTIONS(3654), - [anon_sym_interface] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), + [1761] = { + [sym_comment] = STATE(1761), + [sym_identifier] = ACTIONS(2332), + [anon_sym_export] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_default] = ACTIONS(2332), + [anon_sym_type] = ACTIONS(2332), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_namespace] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_from] = ACTIONS(2332), + [anon_sym_var] = ACTIONS(2332), + [anon_sym_let] = ACTIONS(2332), + [anon_sym_BANG] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_in] = ACTIONS(2334), + [anon_sym_of] = ACTIONS(2332), + [anon_sym_SEMI] = ACTIONS(2334), + [anon_sym_LBRACK] = ACTIONS(2334), + [anon_sym_GT] = ACTIONS(2334), + [anon_sym_DOT] = ACTIONS(2334), + [anon_sym_async] = ACTIONS(2332), + [anon_sym_function] = ACTIONS(2332), + [anon_sym_QMARK_DOT] = ACTIONS(2334), + [anon_sym_AMP_AMP] = ACTIONS(2334), + [anon_sym_PIPE_PIPE] = ACTIONS(2334), + [anon_sym_GT_GT] = ACTIONS(2334), + [anon_sym_GT_GT_GT] = ACTIONS(2334), + [anon_sym_LT_LT] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_CARET] = ACTIONS(2334), + [anon_sym_PIPE] = ACTIONS(2334), + [anon_sym_PLUS] = ACTIONS(2334), + [anon_sym_DASH] = ACTIONS(2334), + [anon_sym_SLASH] = ACTIONS(2334), + [anon_sym_PERCENT] = ACTIONS(2334), + [anon_sym_STAR_STAR] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(2334), + [anon_sym_LT_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ] = ACTIONS(2334), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ] = ACTIONS(2334), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2334), + [anon_sym_GT_EQ] = ACTIONS(2334), + [anon_sym_QMARK_QMARK] = ACTIONS(2334), + [anon_sym_instanceof] = ACTIONS(2334), + [anon_sym_PLUS_PLUS] = ACTIONS(2334), + [anon_sym_DASH_DASH] = ACTIONS(2334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2334), + [anon_sym_AT] = ACTIONS(2332), + [anon_sym_static] = ACTIONS(2332), + [anon_sym_readonly] = ACTIONS(2332), + [anon_sym_get] = ACTIONS(2332), + [anon_sym_set] = ACTIONS(2332), + [anon_sym_declare] = ACTIONS(2332), + [anon_sym_public] = ACTIONS(2332), + [anon_sym_private] = ACTIONS(2332), + [anon_sym_protected] = ACTIONS(2332), + [anon_sym_override] = ACTIONS(2332), + [anon_sym_module] = ACTIONS(2332), + [anon_sym_any] = ACTIONS(2332), + [anon_sym_number] = ACTIONS(2332), + [anon_sym_boolean] = ACTIONS(2332), + [anon_sym_string] = ACTIONS(2332), + [anon_sym_symbol] = ACTIONS(2332), + [anon_sym_object] = ACTIONS(2332), + [anon_sym_property] = ACTIONS(2332), + [anon_sym_signal] = ACTIONS(2332), + [anon_sym_on] = ACTIONS(2332), + [anon_sym_required] = ACTIONS(2332), + [anon_sym_component] = ACTIONS(2332), + [anon_sym_satisfies] = ACTIONS(2334), + [anon_sym_enum] = ACTIONS(2332), + [sym__automatic_semicolon] = ACTIONS(4000), + [sym__ternary_qmark] = ACTIONS(2338), [sym_html_comment] = ACTIONS(5), }, - [1809] = { - [sym_comment] = STATE(1809), - [sym_identifier] = ACTIONS(3678), - [anon_sym_export] = ACTIONS(3678), - [anon_sym_type] = ACTIONS(3678), - [anon_sym_namespace] = ACTIONS(3678), - [anon_sym_LBRACE] = ACTIONS(3678), - [anon_sym_RBRACE] = ACTIONS(3678), - [anon_sym_typeof] = ACTIONS(3678), - [anon_sym_import] = ACTIONS(3678), - [anon_sym_from] = ACTIONS(3678), - [anon_sym_with] = ACTIONS(3678), - [anon_sym_var] = ACTIONS(3678), - [anon_sym_let] = ACTIONS(3678), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_BANG] = ACTIONS(3678), - [anon_sym_if] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3678), - [anon_sym_for] = ACTIONS(3678), - [anon_sym_LPAREN] = ACTIONS(3678), - [anon_sym_await] = ACTIONS(3678), - [anon_sym_of] = ACTIONS(3678), - [anon_sym_while] = ACTIONS(3678), - [anon_sym_do] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_break] = ACTIONS(3678), - [anon_sym_continue] = ACTIONS(3678), - [anon_sym_debugger] = ACTIONS(3678), - [anon_sym_return] = ACTIONS(3678), - [anon_sym_throw] = ACTIONS(3678), - [anon_sym_SEMI] = ACTIONS(3678), - [anon_sym_yield] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_LTtemplate_GT] = ACTIONS(3678), - [anon_sym_DQUOTE] = ACTIONS(3678), - [anon_sym_SQUOTE] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_async] = ACTIONS(3678), - [anon_sym_function] = ACTIONS(3678), - [anon_sym_new] = ACTIONS(3678), - [anon_sym_using] = ACTIONS(3678), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_SLASH] = ACTIONS(3678), - [anon_sym_LT] = ACTIONS(3678), - [anon_sym_TILDE] = ACTIONS(3678), - [anon_sym_void] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_PLUS_PLUS] = ACTIONS(3678), - [anon_sym_DASH_DASH] = ACTIONS(3678), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3678), - [sym_private_property_identifier] = ACTIONS(3678), - [sym_this] = ACTIONS(3678), - [sym_super] = ACTIONS(3678), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [sym_null] = ACTIONS(3678), - [sym_undefined] = ACTIONS(3678), - [anon_sym_AT] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_readonly] = ACTIONS(3678), - [anon_sym_get] = ACTIONS(3678), - [anon_sym_set] = ACTIONS(3678), - [anon_sym_declare] = ACTIONS(3678), - [anon_sym_public] = ACTIONS(3678), - [anon_sym_private] = ACTIONS(3678), - [anon_sym_protected] = ACTIONS(3678), - [anon_sym_override] = ACTIONS(3678), - [anon_sym_module] = ACTIONS(3678), - [anon_sym_any] = ACTIONS(3678), - [anon_sym_number] = ACTIONS(3678), - [anon_sym_boolean] = ACTIONS(3678), - [anon_sym_string] = ACTIONS(3678), - [anon_sym_symbol] = ACTIONS(3678), - [anon_sym_object] = ACTIONS(3678), - [anon_sym_property] = ACTIONS(3678), - [anon_sym_signal] = ACTIONS(3678), - [anon_sym_on] = ACTIONS(3678), - [anon_sym_required] = ACTIONS(3678), - [anon_sym_component] = ACTIONS(3678), - [anon_sym_abstract] = ACTIONS(3678), - [anon_sym_interface] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), + [1762] = { + [sym_comment] = STATE(1762), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(2376), + [anon_sym_STAR] = ACTIONS(2378), + [anon_sym_default] = ACTIONS(2376), + [anon_sym_type] = ACTIONS(2376), + [anon_sym_as] = ACTIONS(2378), + [anon_sym_namespace] = ACTIONS(2376), + [anon_sym_COMMA] = ACTIONS(2378), + [anon_sym_RBRACE] = ACTIONS(2376), + [anon_sym_from] = ACTIONS(2376), + [anon_sym_var] = ACTIONS(2376), + [anon_sym_let] = ACTIONS(2376), + [anon_sym_BANG] = ACTIONS(2378), + [anon_sym_LPAREN] = ACTIONS(2378), + [anon_sym_in] = ACTIONS(2378), + [anon_sym_of] = ACTIONS(2376), + [anon_sym_SEMI] = ACTIONS(2378), + [anon_sym_LBRACK] = ACTIONS(2378), + [anon_sym_GT] = ACTIONS(2378), + [anon_sym_DOT] = ACTIONS(2378), + [anon_sym_async] = ACTIONS(2376), + [anon_sym_function] = ACTIONS(2376), + [anon_sym_QMARK_DOT] = ACTIONS(2378), + [anon_sym_AMP_AMP] = ACTIONS(2378), + [anon_sym_PIPE_PIPE] = ACTIONS(2378), + [anon_sym_GT_GT] = ACTIONS(2378), + [anon_sym_GT_GT_GT] = ACTIONS(2378), + [anon_sym_LT_LT] = ACTIONS(2378), + [anon_sym_AMP] = ACTIONS(2378), + [anon_sym_CARET] = ACTIONS(2378), + [anon_sym_PIPE] = ACTIONS(2378), + [anon_sym_PLUS] = ACTIONS(2378), + [anon_sym_DASH] = ACTIONS(2378), + [anon_sym_SLASH] = ACTIONS(2378), + [anon_sym_PERCENT] = ACTIONS(2378), + [anon_sym_STAR_STAR] = ACTIONS(2378), + [anon_sym_LT] = ACTIONS(2378), + [anon_sym_LT_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ] = ACTIONS(2378), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ] = ACTIONS(2378), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2378), + [anon_sym_GT_EQ] = ACTIONS(2378), + [anon_sym_QMARK_QMARK] = ACTIONS(2378), + [anon_sym_instanceof] = ACTIONS(2378), + [anon_sym_PLUS_PLUS] = ACTIONS(2378), + [anon_sym_DASH_DASH] = ACTIONS(2378), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2378), + [anon_sym_AT] = ACTIONS(2376), + [anon_sym_static] = ACTIONS(2376), + [anon_sym_readonly] = ACTIONS(2376), + [anon_sym_get] = ACTIONS(2376), + [anon_sym_set] = ACTIONS(2376), + [anon_sym_declare] = ACTIONS(2376), + [anon_sym_public] = ACTIONS(2376), + [anon_sym_private] = ACTIONS(2376), + [anon_sym_protected] = ACTIONS(2376), + [anon_sym_override] = ACTIONS(2376), + [anon_sym_module] = ACTIONS(2376), + [anon_sym_any] = ACTIONS(2376), + [anon_sym_number] = ACTIONS(2376), + [anon_sym_boolean] = ACTIONS(2376), + [anon_sym_string] = ACTIONS(2376), + [anon_sym_symbol] = ACTIONS(2376), + [anon_sym_object] = ACTIONS(2376), + [anon_sym_property] = ACTIONS(2376), + [anon_sym_signal] = ACTIONS(2376), + [anon_sym_on] = ACTIONS(2376), + [anon_sym_required] = ACTIONS(2376), + [anon_sym_component] = ACTIONS(2376), + [anon_sym_satisfies] = ACTIONS(2378), + [anon_sym_enum] = ACTIONS(2376), + [sym__automatic_semicolon] = ACTIONS(4002), + [sym__ternary_qmark] = ACTIONS(2382), [sym_html_comment] = ACTIONS(5), }, - [1810] = { - [sym_comment] = STATE(1810), - [sym_identifier] = ACTIONS(3658), - [anon_sym_export] = ACTIONS(3658), - [anon_sym_type] = ACTIONS(3658), - [anon_sym_namespace] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_RBRACE] = ACTIONS(3658), - [anon_sym_typeof] = ACTIONS(3658), - [anon_sym_import] = ACTIONS(3658), - [anon_sym_from] = ACTIONS(3658), - [anon_sym_with] = ACTIONS(3658), - [anon_sym_var] = ACTIONS(3658), - [anon_sym_let] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_BANG] = ACTIONS(3658), - [anon_sym_if] = ACTIONS(3658), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_for] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3658), - [anon_sym_await] = ACTIONS(3658), - [anon_sym_of] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_try] = ACTIONS(3658), - [anon_sym_break] = ACTIONS(3658), - [anon_sym_continue] = ACTIONS(3658), - [anon_sym_debugger] = ACTIONS(3658), - [anon_sym_return] = ACTIONS(3658), - [anon_sym_throw] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym_yield] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_LTtemplate_GT] = ACTIONS(3658), - [anon_sym_DQUOTE] = ACTIONS(3658), - [anon_sym_SQUOTE] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_async] = ACTIONS(3658), - [anon_sym_function] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_SLASH] = ACTIONS(3658), - [anon_sym_LT] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_void] = ACTIONS(3658), - [anon_sym_delete] = ACTIONS(3658), - [anon_sym_PLUS_PLUS] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3658), + [1763] = { + [sym_comment] = STATE(1763), + [sym_identifier] = ACTIONS(2450), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_default] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_as] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2450), + [anon_sym_COMMA] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_from] = ACTIONS(2450), + [anon_sym_var] = ACTIONS(2450), + [anon_sym_let] = ACTIONS(2450), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_in] = ACTIONS(2450), + [anon_sym_of] = ACTIONS(2450), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_GT] = ACTIONS(2450), + [anon_sym_DOT] = ACTIONS(2450), + [anon_sym_async] = ACTIONS(2450), + [anon_sym_function] = ACTIONS(2450), + [anon_sym_QMARK_DOT] = ACTIONS(2450), + [anon_sym_AMP_AMP] = ACTIONS(2450), + [anon_sym_PIPE_PIPE] = ACTIONS(2450), + [anon_sym_GT_GT] = ACTIONS(2450), + [anon_sym_GT_GT_GT] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_CARET] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_PLUS] = ACTIONS(2450), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_SLASH] = ACTIONS(2450), + [anon_sym_PERCENT] = ACTIONS(2450), + [anon_sym_STAR_STAR] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ] = ACTIONS(2450), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ] = ACTIONS(2450), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_QMARK_QMARK] = ACTIONS(2450), + [anon_sym_instanceof] = ACTIONS(2450), + [anon_sym_PLUS_PLUS] = ACTIONS(2450), + [anon_sym_DASH_DASH] = ACTIONS(2450), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3658), - [sym_number] = ACTIONS(3658), - [sym_private_property_identifier] = ACTIONS(3658), - [sym_this] = ACTIONS(3658), - [sym_super] = ACTIONS(3658), - [sym_true] = ACTIONS(3658), - [sym_false] = ACTIONS(3658), - [sym_null] = ACTIONS(3658), - [sym_undefined] = ACTIONS(3658), - [anon_sym_AT] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_readonly] = ACTIONS(3658), - [anon_sym_get] = ACTIONS(3658), - [anon_sym_set] = ACTIONS(3658), - [anon_sym_declare] = ACTIONS(3658), - [anon_sym_public] = ACTIONS(3658), - [anon_sym_private] = ACTIONS(3658), - [anon_sym_protected] = ACTIONS(3658), - [anon_sym_override] = ACTIONS(3658), - [anon_sym_module] = ACTIONS(3658), - [anon_sym_any] = ACTIONS(3658), - [anon_sym_number] = ACTIONS(3658), - [anon_sym_boolean] = ACTIONS(3658), - [anon_sym_string] = ACTIONS(3658), - [anon_sym_symbol] = ACTIONS(3658), - [anon_sym_object] = ACTIONS(3658), - [anon_sym_property] = ACTIONS(3658), - [anon_sym_signal] = ACTIONS(3658), - [anon_sym_on] = ACTIONS(3658), - [anon_sym_required] = ACTIONS(3658), - [anon_sym_component] = ACTIONS(3658), - [anon_sym_abstract] = ACTIONS(3658), - [anon_sym_interface] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), + [anon_sym_BQUOTE] = ACTIONS(2450), + [anon_sym_AT] = ACTIONS(2450), + [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_property] = ACTIONS(2450), + [anon_sym_signal] = ACTIONS(2450), + [anon_sym_on] = ACTIONS(2450), + [anon_sym_required] = ACTIONS(2450), + [anon_sym_component] = ACTIONS(2450), + [anon_sym_satisfies] = ACTIONS(2450), + [anon_sym_enum] = ACTIONS(2450), + [sym__automatic_semicolon] = ACTIONS(2452), + [sym__ternary_qmark] = ACTIONS(2452), [sym_html_comment] = ACTIONS(5), }, - [1811] = { - [sym_comment] = STATE(1811), - [sym_identifier] = ACTIONS(3660), - [anon_sym_export] = ACTIONS(3660), - [anon_sym_type] = ACTIONS(3660), - [anon_sym_namespace] = ACTIONS(3660), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_typeof] = ACTIONS(3660), - [anon_sym_import] = ACTIONS(3660), - [anon_sym_from] = ACTIONS(3660), - [anon_sym_with] = ACTIONS(3660), - [anon_sym_var] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3660), - [anon_sym_const] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_if] = ACTIONS(3660), - [anon_sym_switch] = ACTIONS(3660), - [anon_sym_for] = ACTIONS(3660), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_await] = ACTIONS(3660), - [anon_sym_of] = ACTIONS(3660), - [anon_sym_while] = ACTIONS(3660), - [anon_sym_do] = ACTIONS(3660), - [anon_sym_try] = ACTIONS(3660), - [anon_sym_break] = ACTIONS(3660), - [anon_sym_continue] = ACTIONS(3660), - [anon_sym_debugger] = ACTIONS(3660), - [anon_sym_return] = ACTIONS(3660), - [anon_sym_throw] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_yield] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3660), - [anon_sym_LTtemplate_GT] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_class] = ACTIONS(3660), - [anon_sym_async] = ACTIONS(3660), - [anon_sym_function] = ACTIONS(3660), - [anon_sym_new] = ACTIONS(3660), - [anon_sym_using] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3660), - [anon_sym_SLASH] = ACTIONS(3660), - [anon_sym_LT] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_void] = ACTIONS(3660), - [anon_sym_delete] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_DASH_DASH] = ACTIONS(3660), + [1764] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1764), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(4004), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3660), - [sym_number] = ACTIONS(3660), - [sym_private_property_identifier] = ACTIONS(3660), - [sym_this] = ACTIONS(3660), - [sym_super] = ACTIONS(3660), - [sym_true] = ACTIONS(3660), - [sym_false] = ACTIONS(3660), - [sym_null] = ACTIONS(3660), - [sym_undefined] = ACTIONS(3660), - [anon_sym_AT] = ACTIONS(3660), - [anon_sym_static] = ACTIONS(3660), - [anon_sym_readonly] = ACTIONS(3660), - [anon_sym_get] = ACTIONS(3660), - [anon_sym_set] = ACTIONS(3660), - [anon_sym_declare] = ACTIONS(3660), - [anon_sym_public] = ACTIONS(3660), - [anon_sym_private] = ACTIONS(3660), - [anon_sym_protected] = ACTIONS(3660), - [anon_sym_override] = ACTIONS(3660), - [anon_sym_module] = ACTIONS(3660), - [anon_sym_any] = ACTIONS(3660), - [anon_sym_number] = ACTIONS(3660), - [anon_sym_boolean] = ACTIONS(3660), - [anon_sym_string] = ACTIONS(3660), - [anon_sym_symbol] = ACTIONS(3660), - [anon_sym_object] = ACTIONS(3660), - [anon_sym_property] = ACTIONS(3660), - [anon_sym_signal] = ACTIONS(3660), - [anon_sym_on] = ACTIONS(3660), - [anon_sym_required] = ACTIONS(3660), - [anon_sym_component] = ACTIONS(3660), - [anon_sym_abstract] = ACTIONS(3660), - [anon_sym_interface] = ACTIONS(3660), - [anon_sym_enum] = ACTIONS(3660), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1812] = { - [sym_comment] = STATE(1812), - [sym_identifier] = ACTIONS(3558), - [anon_sym_export] = ACTIONS(3558), - [anon_sym_type] = ACTIONS(3558), - [anon_sym_namespace] = ACTIONS(3558), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_RBRACE] = ACTIONS(3558), - [anon_sym_typeof] = ACTIONS(3558), - [anon_sym_import] = ACTIONS(3558), - [anon_sym_from] = ACTIONS(3558), - [anon_sym_with] = ACTIONS(3558), - [anon_sym_var] = ACTIONS(3558), - [anon_sym_let] = ACTIONS(3558), - [anon_sym_const] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_if] = ACTIONS(3558), - [anon_sym_switch] = ACTIONS(3558), - [anon_sym_for] = ACTIONS(3558), - [anon_sym_LPAREN] = ACTIONS(3558), - [anon_sym_await] = ACTIONS(3558), - [anon_sym_of] = ACTIONS(3558), - [anon_sym_while] = ACTIONS(3558), - [anon_sym_do] = ACTIONS(3558), - [anon_sym_try] = ACTIONS(3558), - [anon_sym_break] = ACTIONS(3558), - [anon_sym_continue] = ACTIONS(3558), - [anon_sym_debugger] = ACTIONS(3558), - [anon_sym_return] = ACTIONS(3558), - [anon_sym_throw] = ACTIONS(3558), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym_yield] = ACTIONS(3558), - [anon_sym_LBRACK] = ACTIONS(3558), - [anon_sym_LTtemplate_GT] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_class] = ACTIONS(3558), - [anon_sym_async] = ACTIONS(3558), - [anon_sym_function] = ACTIONS(3558), - [anon_sym_new] = ACTIONS(3558), - [anon_sym_using] = ACTIONS(3558), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_SLASH] = ACTIONS(3558), - [anon_sym_LT] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_void] = ACTIONS(3558), - [anon_sym_delete] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_DASH_DASH] = ACTIONS(3558), + [1765] = { + [sym_comment] = STATE(1765), + [sym_identifier] = ACTIONS(2434), + [anon_sym_export] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_default] = ACTIONS(2434), + [anon_sym_type] = ACTIONS(2434), + [anon_sym_as] = ACTIONS(2434), + [anon_sym_namespace] = ACTIONS(2434), + [anon_sym_COMMA] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_from] = ACTIONS(2434), + [anon_sym_var] = ACTIONS(2434), + [anon_sym_let] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_in] = ACTIONS(2434), + [anon_sym_of] = ACTIONS(2434), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_GT] = ACTIONS(2434), + [anon_sym_DOT] = ACTIONS(2434), + [anon_sym_async] = ACTIONS(2434), + [anon_sym_function] = ACTIONS(2434), + [anon_sym_QMARK_DOT] = ACTIONS(2434), + [anon_sym_AMP_AMP] = ACTIONS(2434), + [anon_sym_PIPE_PIPE] = ACTIONS(2434), + [anon_sym_GT_GT] = ACTIONS(2434), + [anon_sym_GT_GT_GT] = ACTIONS(2434), + [anon_sym_LT_LT] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_CARET] = ACTIONS(2434), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(2434), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_PERCENT] = ACTIONS(2434), + [anon_sym_STAR_STAR] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_LT_EQ] = ACTIONS(2434), + [anon_sym_EQ_EQ] = ACTIONS(2434), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2434), + [anon_sym_BANG_EQ] = ACTIONS(2434), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2434), + [anon_sym_GT_EQ] = ACTIONS(2434), + [anon_sym_QMARK_QMARK] = ACTIONS(2434), + [anon_sym_instanceof] = ACTIONS(2434), + [anon_sym_PLUS_PLUS] = ACTIONS(2434), + [anon_sym_DASH_DASH] = ACTIONS(2434), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3558), - [sym_number] = ACTIONS(3558), - [sym_private_property_identifier] = ACTIONS(3558), - [sym_this] = ACTIONS(3558), - [sym_super] = ACTIONS(3558), - [sym_true] = ACTIONS(3558), - [sym_false] = ACTIONS(3558), - [sym_null] = ACTIONS(3558), - [sym_undefined] = ACTIONS(3558), - [anon_sym_AT] = ACTIONS(3558), - [anon_sym_static] = ACTIONS(3558), - [anon_sym_readonly] = ACTIONS(3558), - [anon_sym_get] = ACTIONS(3558), - [anon_sym_set] = ACTIONS(3558), - [anon_sym_declare] = ACTIONS(3558), - [anon_sym_public] = ACTIONS(3558), - [anon_sym_private] = ACTIONS(3558), - [anon_sym_protected] = ACTIONS(3558), - [anon_sym_override] = ACTIONS(3558), - [anon_sym_module] = ACTIONS(3558), - [anon_sym_any] = ACTIONS(3558), - [anon_sym_number] = ACTIONS(3558), - [anon_sym_boolean] = ACTIONS(3558), - [anon_sym_string] = ACTIONS(3558), - [anon_sym_symbol] = ACTIONS(3558), - [anon_sym_object] = ACTIONS(3558), - [anon_sym_property] = ACTIONS(3558), - [anon_sym_signal] = ACTIONS(3558), - [anon_sym_on] = ACTIONS(3558), - [anon_sym_required] = ACTIONS(3558), - [anon_sym_component] = ACTIONS(3558), - [anon_sym_abstract] = ACTIONS(3558), - [anon_sym_interface] = ACTIONS(3558), - [anon_sym_enum] = ACTIONS(3558), + [anon_sym_BQUOTE] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [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_property] = ACTIONS(2434), + [anon_sym_signal] = ACTIONS(2434), + [anon_sym_on] = ACTIONS(2434), + [anon_sym_required] = ACTIONS(2434), + [anon_sym_component] = ACTIONS(2434), + [anon_sym_satisfies] = ACTIONS(2434), + [anon_sym_enum] = ACTIONS(2434), + [sym__automatic_semicolon] = ACTIONS(2436), + [sym__ternary_qmark] = ACTIONS(2436), [sym_html_comment] = ACTIONS(5), }, - [1813] = { - [sym_comment] = STATE(1813), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [sym_html_comment] = ACTIONS(5), - }, - [1814] = { - [sym_comment] = STATE(1814), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [sym_html_comment] = ACTIONS(5), - }, - [1815] = { - [sym_comment] = STATE(1815), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [sym_html_comment] = ACTIONS(5), - }, - [1816] = { - [sym_comment] = STATE(1816), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [sym_html_comment] = ACTIONS(5), - }, - [1817] = { - [sym_comment] = STATE(1817), + [1766] = { + [sym_comment] = STATE(1766), [sym_identifier] = ACTIONS(2442), [anon_sym_export] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2442), [anon_sym_type] = ACTIONS(2442), + [anon_sym_as] = ACTIONS(2444), [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_COMMA] = ACTIONS(2444), [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_typeof] = ACTIONS(2442), - [anon_sym_import] = ACTIONS(2442), [anon_sym_from] = ACTIONS(2442), - [anon_sym_with] = ACTIONS(2442), [anon_sym_var] = ACTIONS(2442), [anon_sym_let] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_switch] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_await] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2444), + [anon_sym_LPAREN] = ACTIONS(2444), + [anon_sym_in] = ACTIONS(2444), [anon_sym_of] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_do] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_debugger] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_throw] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_LTtemplate_GT] = ACTIONS(2442), - [anon_sym_DQUOTE] = ACTIONS(2442), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_class] = ACTIONS(2442), + [anon_sym_SEMI] = ACTIONS(2444), + [anon_sym_LBRACK] = ACTIONS(2444), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_DOT] = ACTIONS(2444), [anon_sym_async] = ACTIONS(2442), [anon_sym_function] = ACTIONS(2442), - [anon_sym_new] = ACTIONS(2442), - [anon_sym_using] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_TILDE] = ACTIONS(2442), - [anon_sym_void] = ACTIONS(2442), - [anon_sym_delete] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [sym_number] = ACTIONS(2442), - [sym_private_property_identifier] = ACTIONS(2442), - [sym_this] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_true] = ACTIONS(2442), - [sym_false] = ACTIONS(2442), - [sym_null] = ACTIONS(2442), - [sym_undefined] = ACTIONS(2442), + [anon_sym_QMARK_DOT] = ACTIONS(2444), + [anon_sym_AMP_AMP] = ACTIONS(2444), + [anon_sym_PIPE_PIPE] = ACTIONS(2444), + [anon_sym_GT_GT] = ACTIONS(2444), + [anon_sym_GT_GT_GT] = ACTIONS(2444), + [anon_sym_LT_LT] = ACTIONS(2444), + [anon_sym_AMP] = ACTIONS(2444), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_PLUS] = ACTIONS(2444), + [anon_sym_DASH] = ACTIONS(2444), + [anon_sym_SLASH] = ACTIONS(2444), + [anon_sym_PERCENT] = ACTIONS(2444), + [anon_sym_STAR_STAR] = ACTIONS(2444), + [anon_sym_LT] = ACTIONS(2444), + [anon_sym_LT_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2444), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ] = ACTIONS(2444), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2444), + [anon_sym_GT_EQ] = ACTIONS(2444), + [anon_sym_QMARK_QMARK] = ACTIONS(2444), + [anon_sym_instanceof] = ACTIONS(2444), + [anon_sym_PLUS_PLUS] = ACTIONS(2444), + [anon_sym_DASH_DASH] = ACTIONS(2444), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2444), [anon_sym_AT] = ACTIONS(2442), [anon_sym_static] = ACTIONS(2442), [anon_sym_readonly] = ACTIONS(2442), @@ -230206,2594 +224642,1381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_on] = ACTIONS(2442), [anon_sym_required] = ACTIONS(2442), [anon_sym_component] = ACTIONS(2442), - [anon_sym_abstract] = ACTIONS(2442), - [anon_sym_interface] = ACTIONS(2442), + [anon_sym_satisfies] = ACTIONS(2444), [anon_sym_enum] = ACTIONS(2442), + [sym__automatic_semicolon] = ACTIONS(4006), + [sym__ternary_qmark] = ACTIONS(2448), [sym_html_comment] = ACTIONS(5), }, - [1818] = { - [sym_comment] = STATE(1818), - [sym_identifier] = ACTIONS(3542), - [anon_sym_export] = ACTIONS(3542), - [anon_sym_type] = ACTIONS(3542), - [anon_sym_namespace] = ACTIONS(3542), - [anon_sym_LBRACE] = ACTIONS(3542), - [anon_sym_RBRACE] = ACTIONS(3542), - [anon_sym_typeof] = ACTIONS(3542), - [anon_sym_import] = ACTIONS(3542), - [anon_sym_from] = ACTIONS(3542), - [anon_sym_with] = ACTIONS(3542), - [anon_sym_var] = ACTIONS(3542), - [anon_sym_let] = ACTIONS(3542), - [anon_sym_const] = ACTIONS(3542), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_if] = ACTIONS(3542), - [anon_sym_switch] = ACTIONS(3542), - [anon_sym_for] = ACTIONS(3542), - [anon_sym_LPAREN] = ACTIONS(3542), - [anon_sym_await] = ACTIONS(3542), - [anon_sym_of] = ACTIONS(3542), - [anon_sym_while] = ACTIONS(3542), - [anon_sym_do] = ACTIONS(3542), - [anon_sym_try] = ACTIONS(3542), - [anon_sym_break] = ACTIONS(3542), - [anon_sym_continue] = ACTIONS(3542), - [anon_sym_debugger] = ACTIONS(3542), - [anon_sym_return] = ACTIONS(3542), - [anon_sym_throw] = ACTIONS(3542), - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym_yield] = ACTIONS(3542), - [anon_sym_LBRACK] = ACTIONS(3542), - [anon_sym_LTtemplate_GT] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3542), - [anon_sym_SQUOTE] = ACTIONS(3542), - [anon_sym_class] = ACTIONS(3542), - [anon_sym_async] = ACTIONS(3542), - [anon_sym_function] = ACTIONS(3542), - [anon_sym_new] = ACTIONS(3542), - [anon_sym_using] = ACTIONS(3542), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_SLASH] = ACTIONS(3542), - [anon_sym_LT] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_void] = ACTIONS(3542), - [anon_sym_delete] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_DASH_DASH] = ACTIONS(3542), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3542), - [sym_number] = ACTIONS(3542), - [sym_private_property_identifier] = ACTIONS(3542), - [sym_this] = ACTIONS(3542), - [sym_super] = ACTIONS(3542), - [sym_true] = ACTIONS(3542), - [sym_false] = ACTIONS(3542), - [sym_null] = ACTIONS(3542), - [sym_undefined] = ACTIONS(3542), - [anon_sym_AT] = ACTIONS(3542), - [anon_sym_static] = ACTIONS(3542), - [anon_sym_readonly] = ACTIONS(3542), - [anon_sym_get] = ACTIONS(3542), - [anon_sym_set] = ACTIONS(3542), - [anon_sym_declare] = ACTIONS(3542), - [anon_sym_public] = ACTIONS(3542), - [anon_sym_private] = ACTIONS(3542), - [anon_sym_protected] = ACTIONS(3542), - [anon_sym_override] = ACTIONS(3542), - [anon_sym_module] = ACTIONS(3542), - [anon_sym_any] = ACTIONS(3542), - [anon_sym_number] = ACTIONS(3542), - [anon_sym_boolean] = ACTIONS(3542), - [anon_sym_string] = ACTIONS(3542), - [anon_sym_symbol] = ACTIONS(3542), - [anon_sym_object] = ACTIONS(3542), - [anon_sym_property] = ACTIONS(3542), - [anon_sym_signal] = ACTIONS(3542), - [anon_sym_on] = ACTIONS(3542), - [anon_sym_required] = ACTIONS(3542), - [anon_sym_component] = ACTIONS(3542), - [anon_sym_abstract] = ACTIONS(3542), - [anon_sym_interface] = ACTIONS(3542), - [anon_sym_enum] = ACTIONS(3542), + [1767] = { + [sym_comment] = STATE(1767), + [sym_identifier] = ACTIONS(2404), + [anon_sym_export] = ACTIONS(2404), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_default] = ACTIONS(2404), + [anon_sym_type] = ACTIONS(2404), + [anon_sym_as] = ACTIONS(2406), + [anon_sym_namespace] = ACTIONS(2404), + [anon_sym_COMMA] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_from] = ACTIONS(2404), + [anon_sym_var] = ACTIONS(2404), + [anon_sym_let] = ACTIONS(2404), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_in] = ACTIONS(2406), + [anon_sym_of] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_GT] = ACTIONS(2406), + [anon_sym_DOT] = ACTIONS(2406), + [anon_sym_async] = ACTIONS(2404), + [anon_sym_function] = ACTIONS(2404), + [anon_sym_QMARK_DOT] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_GT_GT] = ACTIONS(2406), + [anon_sym_GT_GT_GT] = ACTIONS(2406), + [anon_sym_LT_LT] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + [anon_sym_CARET] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_PLUS] = ACTIONS(2406), + [anon_sym_DASH] = ACTIONS(2406), + [anon_sym_SLASH] = ACTIONS(2406), + [anon_sym_PERCENT] = ACTIONS(2406), + [anon_sym_STAR_STAR] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2406), + [anon_sym_LT_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ] = ACTIONS(2406), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ] = ACTIONS(2406), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2406), + [anon_sym_GT_EQ] = ACTIONS(2406), + [anon_sym_QMARK_QMARK] = ACTIONS(2406), + [anon_sym_instanceof] = ACTIONS(2406), + [anon_sym_PLUS_PLUS] = ACTIONS(2406), + [anon_sym_DASH_DASH] = ACTIONS(2406), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2406), + [anon_sym_AT] = ACTIONS(2404), + [anon_sym_static] = ACTIONS(2404), + [anon_sym_readonly] = ACTIONS(2404), + [anon_sym_get] = ACTIONS(2404), + [anon_sym_set] = ACTIONS(2404), + [anon_sym_declare] = ACTIONS(2404), + [anon_sym_public] = ACTIONS(2404), + [anon_sym_private] = ACTIONS(2404), + [anon_sym_protected] = ACTIONS(2404), + [anon_sym_override] = ACTIONS(2404), + [anon_sym_module] = ACTIONS(2404), + [anon_sym_any] = ACTIONS(2404), + [anon_sym_number] = ACTIONS(2404), + [anon_sym_boolean] = ACTIONS(2404), + [anon_sym_string] = ACTIONS(2404), + [anon_sym_symbol] = ACTIONS(2404), + [anon_sym_object] = ACTIONS(2404), + [anon_sym_property] = ACTIONS(2404), + [anon_sym_signal] = ACTIONS(2404), + [anon_sym_on] = ACTIONS(2404), + [anon_sym_required] = ACTIONS(2404), + [anon_sym_component] = ACTIONS(2404), + [anon_sym_satisfies] = ACTIONS(2406), + [anon_sym_enum] = ACTIONS(2404), + [sym__automatic_semicolon] = ACTIONS(2408), + [sym__ternary_qmark] = ACTIONS(2408), [sym_html_comment] = ACTIONS(5), }, - [1819] = { - [sym_comment] = STATE(1819), - [sym_identifier] = ACTIONS(3540), - [anon_sym_export] = ACTIONS(3540), - [anon_sym_type] = ACTIONS(3540), - [anon_sym_namespace] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_RBRACE] = ACTIONS(3540), - [anon_sym_typeof] = ACTIONS(3540), - [anon_sym_import] = ACTIONS(3540), - [anon_sym_from] = ACTIONS(3540), - [anon_sym_with] = ACTIONS(3540), - [anon_sym_var] = ACTIONS(3540), - [anon_sym_let] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_BANG] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_switch] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_LPAREN] = ACTIONS(3540), - [anon_sym_await] = ACTIONS(3540), - [anon_sym_of] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_do] = ACTIONS(3540), - [anon_sym_try] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_debugger] = ACTIONS(3540), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_throw] = ACTIONS(3540), - [anon_sym_SEMI] = ACTIONS(3540), - [anon_sym_yield] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LTtemplate_GT] = ACTIONS(3540), - [anon_sym_DQUOTE] = ACTIONS(3540), - [anon_sym_SQUOTE] = ACTIONS(3540), - [anon_sym_class] = ACTIONS(3540), - [anon_sym_async] = ACTIONS(3540), - [anon_sym_function] = ACTIONS(3540), - [anon_sym_new] = ACTIONS(3540), - [anon_sym_using] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_SLASH] = ACTIONS(3540), - [anon_sym_LT] = ACTIONS(3540), - [anon_sym_TILDE] = ACTIONS(3540), - [anon_sym_void] = ACTIONS(3540), - [anon_sym_delete] = ACTIONS(3540), - [anon_sym_PLUS_PLUS] = ACTIONS(3540), - [anon_sym_DASH_DASH] = ACTIONS(3540), + [1768] = { + [sym_comment] = STATE(1768), + [sym_identifier] = ACTIONS(2474), + [anon_sym_export] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2474), + [anon_sym_as] = ACTIONS(2476), + [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_COMMA] = ACTIONS(2476), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_from] = ACTIONS(2474), + [anon_sym_var] = ACTIONS(2474), + [anon_sym_let] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2476), + [anon_sym_LPAREN] = ACTIONS(2476), + [anon_sym_in] = ACTIONS(2476), + [anon_sym_of] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2476), + [anon_sym_LBRACK] = ACTIONS(2476), + [anon_sym_GT] = ACTIONS(2476), + [anon_sym_DOT] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(2474), + [anon_sym_QMARK_DOT] = ACTIONS(2476), + [anon_sym_AMP_AMP] = ACTIONS(2476), + [anon_sym_PIPE_PIPE] = ACTIONS(2476), + [anon_sym_GT_GT] = ACTIONS(2476), + [anon_sym_GT_GT_GT] = ACTIONS(2476), + [anon_sym_LT_LT] = ACTIONS(2476), + [anon_sym_AMP] = ACTIONS(2476), + [anon_sym_CARET] = ACTIONS(2476), + [anon_sym_PIPE] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2476), + [anon_sym_SLASH] = ACTIONS(2476), + [anon_sym_PERCENT] = ACTIONS(2476), + [anon_sym_STAR_STAR] = ACTIONS(2476), + [anon_sym_LT] = ACTIONS(2476), + [anon_sym_LT_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ] = ACTIONS(2476), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ] = ACTIONS(2476), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2476), + [anon_sym_GT_EQ] = ACTIONS(2476), + [anon_sym_QMARK_QMARK] = ACTIONS(2476), + [anon_sym_instanceof] = ACTIONS(2476), + [anon_sym_PLUS_PLUS] = ACTIONS(2476), + [anon_sym_DASH_DASH] = ACTIONS(2476), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2476), + [anon_sym_AT] = ACTIONS(2474), + [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_property] = ACTIONS(2474), + [anon_sym_signal] = ACTIONS(2474), + [anon_sym_on] = ACTIONS(2474), + [anon_sym_required] = ACTIONS(2474), + [anon_sym_component] = ACTIONS(2474), + [anon_sym_satisfies] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2474), + [sym__automatic_semicolon] = ACTIONS(4008), + [sym__ternary_qmark] = ACTIONS(2480), + [sym_html_comment] = ACTIONS(5), + }, + [1769] = { + [sym_comment] = STATE(1769), + [sym_identifier] = ACTIONS(2370), + [anon_sym_export] = ACTIONS(2370), + [anon_sym_STAR] = ACTIONS(2370), + [anon_sym_default] = ACTIONS(2370), + [anon_sym_type] = ACTIONS(2370), + [anon_sym_as] = ACTIONS(2370), + [anon_sym_namespace] = ACTIONS(2370), + [anon_sym_COMMA] = ACTIONS(2370), + [anon_sym_RBRACE] = ACTIONS(2370), + [anon_sym_from] = ACTIONS(2370), + [anon_sym_var] = ACTIONS(2370), + [anon_sym_let] = ACTIONS(2370), + [anon_sym_BANG] = ACTIONS(2370), + [anon_sym_LPAREN] = ACTIONS(2370), + [anon_sym_in] = ACTIONS(2370), + [anon_sym_of] = ACTIONS(2370), + [anon_sym_SEMI] = ACTIONS(2370), + [anon_sym_LBRACK] = ACTIONS(2370), + [anon_sym_GT] = ACTIONS(2370), + [anon_sym_DOT] = ACTIONS(2370), + [anon_sym_async] = ACTIONS(2370), + [anon_sym_function] = ACTIONS(2370), + [anon_sym_QMARK_DOT] = ACTIONS(2370), + [anon_sym_AMP_AMP] = ACTIONS(2370), + [anon_sym_PIPE_PIPE] = ACTIONS(2370), + [anon_sym_GT_GT] = ACTIONS(2370), + [anon_sym_GT_GT_GT] = ACTIONS(2370), + [anon_sym_LT_LT] = ACTIONS(2370), + [anon_sym_AMP] = ACTIONS(2370), + [anon_sym_CARET] = ACTIONS(2370), + [anon_sym_PIPE] = ACTIONS(2370), + [anon_sym_PLUS] = ACTIONS(2370), + [anon_sym_DASH] = ACTIONS(2370), + [anon_sym_SLASH] = ACTIONS(2370), + [anon_sym_PERCENT] = ACTIONS(2370), + [anon_sym_STAR_STAR] = ACTIONS(2370), + [anon_sym_LT] = ACTIONS(2370), + [anon_sym_LT_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ] = ACTIONS(2370), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ] = ACTIONS(2370), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), + [anon_sym_GT_EQ] = ACTIONS(2370), + [anon_sym_QMARK_QMARK] = ACTIONS(2370), + [anon_sym_instanceof] = ACTIONS(2370), + [anon_sym_PLUS_PLUS] = ACTIONS(2370), + [anon_sym_DASH_DASH] = ACTIONS(2370), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3540), - [sym_number] = ACTIONS(3540), - [sym_private_property_identifier] = ACTIONS(3540), - [sym_this] = ACTIONS(3540), - [sym_super] = ACTIONS(3540), - [sym_true] = ACTIONS(3540), - [sym_false] = ACTIONS(3540), - [sym_null] = ACTIONS(3540), - [sym_undefined] = ACTIONS(3540), - [anon_sym_AT] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_readonly] = ACTIONS(3540), - [anon_sym_get] = ACTIONS(3540), - [anon_sym_set] = ACTIONS(3540), - [anon_sym_declare] = ACTIONS(3540), - [anon_sym_public] = ACTIONS(3540), - [anon_sym_private] = ACTIONS(3540), - [anon_sym_protected] = ACTIONS(3540), - [anon_sym_override] = ACTIONS(3540), - [anon_sym_module] = ACTIONS(3540), - [anon_sym_any] = ACTIONS(3540), - [anon_sym_number] = ACTIONS(3540), - [anon_sym_boolean] = ACTIONS(3540), - [anon_sym_string] = ACTIONS(3540), - [anon_sym_symbol] = ACTIONS(3540), - [anon_sym_object] = ACTIONS(3540), - [anon_sym_property] = ACTIONS(3540), - [anon_sym_signal] = ACTIONS(3540), - [anon_sym_on] = ACTIONS(3540), - [anon_sym_required] = ACTIONS(3540), - [anon_sym_component] = ACTIONS(3540), - [anon_sym_abstract] = ACTIONS(3540), - [anon_sym_interface] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(3540), + [anon_sym_BQUOTE] = ACTIONS(2370), + [anon_sym_AT] = ACTIONS(2370), + [anon_sym_static] = ACTIONS(2370), + [anon_sym_readonly] = ACTIONS(2370), + [anon_sym_get] = ACTIONS(2370), + [anon_sym_set] = ACTIONS(2370), + [anon_sym_declare] = ACTIONS(2370), + [anon_sym_public] = ACTIONS(2370), + [anon_sym_private] = ACTIONS(2370), + [anon_sym_protected] = ACTIONS(2370), + [anon_sym_override] = ACTIONS(2370), + [anon_sym_module] = ACTIONS(2370), + [anon_sym_any] = ACTIONS(2370), + [anon_sym_number] = ACTIONS(2370), + [anon_sym_boolean] = ACTIONS(2370), + [anon_sym_string] = ACTIONS(2370), + [anon_sym_symbol] = ACTIONS(2370), + [anon_sym_object] = ACTIONS(2370), + [anon_sym_property] = ACTIONS(2370), + [anon_sym_signal] = ACTIONS(2370), + [anon_sym_on] = ACTIONS(2370), + [anon_sym_required] = ACTIONS(2370), + [anon_sym_component] = ACTIONS(2370), + [anon_sym_satisfies] = ACTIONS(2370), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym__ternary_qmark] = ACTIONS(2374), [sym_html_comment] = ACTIONS(5), }, - [1820] = { - [sym_comment] = STATE(1820), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1770] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1770), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(4010), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1821] = { - [sym_comment] = STATE(1821), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3524), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_from] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3524), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_of] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_LTtemplate_GT] = ACTIONS(3524), - [anon_sym_DQUOTE] = ACTIONS(3524), - [anon_sym_SQUOTE] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_LT] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3524), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3524), + [1771] = { + [sym_comment] = STATE(1771), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_default] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_as] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2458), + [anon_sym_COMMA] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_from] = ACTIONS(2458), + [anon_sym_var] = ACTIONS(2458), + [anon_sym_let] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_in] = ACTIONS(2458), + [anon_sym_of] = ACTIONS(2458), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_GT] = ACTIONS(2458), + [anon_sym_DOT] = ACTIONS(2458), + [anon_sym_async] = ACTIONS(2458), + [anon_sym_function] = ACTIONS(2458), + [anon_sym_QMARK_DOT] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_GT_GT_GT] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_CARET] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_PLUS] = ACTIONS(2458), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_SLASH] = ACTIONS(2458), + [anon_sym_PERCENT] = ACTIONS(2458), + [anon_sym_STAR_STAR] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_LT_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ] = ACTIONS(2458), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ] = ACTIONS(2458), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2458), + [anon_sym_GT_EQ] = ACTIONS(2458), + [anon_sym_QMARK_QMARK] = ACTIONS(2458), + [anon_sym_instanceof] = ACTIONS(2458), + [anon_sym_PLUS_PLUS] = ACTIONS(2458), + [anon_sym_DASH_DASH] = ACTIONS(2458), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3524), - [sym_number] = ACTIONS(3524), - [sym_private_property_identifier] = ACTIONS(3524), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_override] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_object] = ACTIONS(3524), - [anon_sym_property] = ACTIONS(3524), - [anon_sym_signal] = ACTIONS(3524), - [anon_sym_on] = ACTIONS(3524), - [anon_sym_required] = ACTIONS(3524), - [anon_sym_component] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [anon_sym_BQUOTE] = ACTIONS(2458), + [anon_sym_AT] = ACTIONS(2458), + [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_property] = ACTIONS(2458), + [anon_sym_signal] = ACTIONS(2458), + [anon_sym_on] = ACTIONS(2458), + [anon_sym_required] = ACTIONS(2458), + [anon_sym_component] = ACTIONS(2458), + [anon_sym_satisfies] = ACTIONS(2458), + [anon_sym_enum] = ACTIONS(2458), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2460), [sym_html_comment] = ACTIONS(5), }, - [1822] = { - [sym_comment] = STATE(1822), - [sym_identifier] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_namespace] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_typeof] = ACTIONS(2338), - [anon_sym_import] = ACTIONS(2338), - [anon_sym_from] = ACTIONS(2338), - [anon_sym_with] = ACTIONS(2338), - [anon_sym_var] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_const] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2338), - [anon_sym_for] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_await] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_while] = ACTIONS(2338), - [anon_sym_do] = ACTIONS(2338), - [anon_sym_try] = ACTIONS(2338), - [anon_sym_break] = ACTIONS(2338), - [anon_sym_continue] = ACTIONS(2338), - [anon_sym_debugger] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2338), - [anon_sym_throw] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_yield] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LTtemplate_GT] = ACTIONS(2338), - [anon_sym_DQUOTE] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2338), - [anon_sym_class] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_new] = ACTIONS(2338), - [anon_sym_using] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_void] = ACTIONS(2338), - [anon_sym_delete] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [sym_number] = ACTIONS(2338), - [sym_private_property_identifier] = ACTIONS(2338), - [sym_this] = ACTIONS(2338), - [sym_super] = ACTIONS(2338), - [sym_true] = ACTIONS(2338), - [sym_false] = ACTIONS(2338), - [sym_null] = ACTIONS(2338), - [sym_undefined] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_readonly] = ACTIONS(2338), - [anon_sym_get] = ACTIONS(2338), - [anon_sym_set] = ACTIONS(2338), - [anon_sym_declare] = ACTIONS(2338), - [anon_sym_public] = ACTIONS(2338), - [anon_sym_private] = ACTIONS(2338), - [anon_sym_protected] = ACTIONS(2338), - [anon_sym_override] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_any] = ACTIONS(2338), - [anon_sym_number] = ACTIONS(2338), - [anon_sym_boolean] = ACTIONS(2338), - [anon_sym_string] = ACTIONS(2338), - [anon_sym_symbol] = ACTIONS(2338), - [anon_sym_object] = ACTIONS(2338), - [anon_sym_property] = ACTIONS(2338), - [anon_sym_signal] = ACTIONS(2338), - [anon_sym_on] = ACTIONS(2338), - [anon_sym_required] = ACTIONS(2338), - [anon_sym_component] = ACTIONS(2338), - [anon_sym_abstract] = ACTIONS(2338), - [anon_sym_interface] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), + [1772] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1772), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1823] = { - [sym_comment] = STATE(1823), - [sym_identifier] = ACTIONS(3676), - [anon_sym_export] = ACTIONS(3676), - [anon_sym_type] = ACTIONS(3676), - [anon_sym_namespace] = ACTIONS(3676), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_typeof] = ACTIONS(3676), - [anon_sym_import] = ACTIONS(3676), - [anon_sym_from] = ACTIONS(3676), - [anon_sym_with] = ACTIONS(3676), - [anon_sym_var] = ACTIONS(3676), - [anon_sym_let] = ACTIONS(3676), - [anon_sym_const] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3676), - [anon_sym_if] = ACTIONS(3676), - [anon_sym_switch] = ACTIONS(3676), - [anon_sym_for] = ACTIONS(3676), - [anon_sym_LPAREN] = ACTIONS(3676), - [anon_sym_await] = ACTIONS(3676), - [anon_sym_of] = ACTIONS(3676), - [anon_sym_while] = ACTIONS(3676), - [anon_sym_do] = ACTIONS(3676), - [anon_sym_try] = ACTIONS(3676), - [anon_sym_break] = ACTIONS(3676), - [anon_sym_continue] = ACTIONS(3676), - [anon_sym_debugger] = ACTIONS(3676), - [anon_sym_return] = ACTIONS(3676), - [anon_sym_throw] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym_yield] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3676), - [anon_sym_LTtemplate_GT] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(3676), - [anon_sym_SQUOTE] = ACTIONS(3676), - [anon_sym_class] = ACTIONS(3676), - [anon_sym_async] = ACTIONS(3676), - [anon_sym_function] = ACTIONS(3676), - [anon_sym_new] = ACTIONS(3676), - [anon_sym_using] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_SLASH] = ACTIONS(3676), - [anon_sym_LT] = ACTIONS(3676), - [anon_sym_TILDE] = ACTIONS(3676), - [anon_sym_void] = ACTIONS(3676), - [anon_sym_delete] = ACTIONS(3676), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3676), - [sym_number] = ACTIONS(3676), - [sym_private_property_identifier] = ACTIONS(3676), - [sym_this] = ACTIONS(3676), - [sym_super] = ACTIONS(3676), - [sym_true] = ACTIONS(3676), - [sym_false] = ACTIONS(3676), - [sym_null] = ACTIONS(3676), - [sym_undefined] = ACTIONS(3676), - [anon_sym_AT] = ACTIONS(3676), - [anon_sym_static] = ACTIONS(3676), - [anon_sym_readonly] = ACTIONS(3676), - [anon_sym_get] = ACTIONS(3676), - [anon_sym_set] = ACTIONS(3676), - [anon_sym_declare] = ACTIONS(3676), - [anon_sym_public] = ACTIONS(3676), - [anon_sym_private] = ACTIONS(3676), - [anon_sym_protected] = ACTIONS(3676), - [anon_sym_override] = ACTIONS(3676), - [anon_sym_module] = ACTIONS(3676), - [anon_sym_any] = ACTIONS(3676), - [anon_sym_number] = ACTIONS(3676), - [anon_sym_boolean] = ACTIONS(3676), - [anon_sym_string] = ACTIONS(3676), - [anon_sym_symbol] = ACTIONS(3676), - [anon_sym_object] = ACTIONS(3676), - [anon_sym_property] = ACTIONS(3676), - [anon_sym_signal] = ACTIONS(3676), - [anon_sym_on] = ACTIONS(3676), - [anon_sym_required] = ACTIONS(3676), - [anon_sym_component] = ACTIONS(3676), - [anon_sym_abstract] = ACTIONS(3676), - [anon_sym_interface] = ACTIONS(3676), - [anon_sym_enum] = ACTIONS(3676), + [1773] = { + [sym_comment] = STATE(1773), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(2388), + [anon_sym_default] = ACTIONS(2386), + [anon_sym_type] = ACTIONS(2386), + [anon_sym_as] = ACTIONS(2388), + [anon_sym_namespace] = ACTIONS(2386), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RBRACE] = ACTIONS(2386), + [anon_sym_from] = ACTIONS(2386), + [anon_sym_var] = ACTIONS(2386), + [anon_sym_let] = ACTIONS(2386), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_LPAREN] = ACTIONS(2388), + [anon_sym_in] = ACTIONS(2388), + [anon_sym_of] = ACTIONS(2386), + [anon_sym_SEMI] = ACTIONS(2388), + [anon_sym_LBRACK] = ACTIONS(2388), + [anon_sym_GT] = ACTIONS(2388), + [anon_sym_DOT] = ACTIONS(2388), + [anon_sym_async] = ACTIONS(2386), + [anon_sym_function] = ACTIONS(2386), + [anon_sym_QMARK_DOT] = ACTIONS(2388), + [anon_sym_AMP_AMP] = ACTIONS(2388), + [anon_sym_PIPE_PIPE] = ACTIONS(2388), + [anon_sym_GT_GT] = ACTIONS(2388), + [anon_sym_GT_GT_GT] = ACTIONS(2388), + [anon_sym_LT_LT] = ACTIONS(2388), + [anon_sym_AMP] = ACTIONS(2388), + [anon_sym_CARET] = ACTIONS(2388), + [anon_sym_PIPE] = ACTIONS(2388), + [anon_sym_PLUS] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2388), + [anon_sym_SLASH] = ACTIONS(2388), + [anon_sym_PERCENT] = ACTIONS(2388), + [anon_sym_STAR_STAR] = ACTIONS(2388), + [anon_sym_LT] = ACTIONS(2388), + [anon_sym_LT_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ] = ACTIONS(2388), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ] = ACTIONS(2388), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2388), + [anon_sym_GT_EQ] = ACTIONS(2388), + [anon_sym_QMARK_QMARK] = ACTIONS(2388), + [anon_sym_instanceof] = ACTIONS(2388), + [anon_sym_PLUS_PLUS] = ACTIONS(2388), + [anon_sym_DASH_DASH] = ACTIONS(2388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2388), + [anon_sym_AT] = ACTIONS(2386), + [anon_sym_static] = ACTIONS(2386), + [anon_sym_readonly] = ACTIONS(2386), + [anon_sym_get] = ACTIONS(2386), + [anon_sym_set] = ACTIONS(2386), + [anon_sym_declare] = ACTIONS(2386), + [anon_sym_public] = ACTIONS(2386), + [anon_sym_private] = ACTIONS(2386), + [anon_sym_protected] = ACTIONS(2386), + [anon_sym_override] = ACTIONS(2386), + [anon_sym_module] = ACTIONS(2386), + [anon_sym_any] = ACTIONS(2386), + [anon_sym_number] = ACTIONS(2386), + [anon_sym_boolean] = ACTIONS(2386), + [anon_sym_string] = ACTIONS(2386), + [anon_sym_symbol] = ACTIONS(2386), + [anon_sym_object] = ACTIONS(2386), + [anon_sym_property] = ACTIONS(2386), + [anon_sym_signal] = ACTIONS(2386), + [anon_sym_on] = ACTIONS(2386), + [anon_sym_required] = ACTIONS(2386), + [anon_sym_component] = ACTIONS(2386), + [anon_sym_satisfies] = ACTIONS(2388), + [anon_sym_enum] = ACTIONS(2386), + [sym__automatic_semicolon] = ACTIONS(4014), + [sym__ternary_qmark] = ACTIONS(2392), [sym_html_comment] = ACTIONS(5), }, - [1824] = { - [sym_comment] = STATE(1824), - [sym_identifier] = ACTIONS(3738), - [anon_sym_export] = ACTIONS(3738), - [anon_sym_type] = ACTIONS(3738), - [anon_sym_namespace] = ACTIONS(3738), - [anon_sym_LBRACE] = ACTIONS(3738), - [anon_sym_typeof] = ACTIONS(3738), - [anon_sym_import] = ACTIONS(3738), - [anon_sym_from] = ACTIONS(3738), - [anon_sym_with] = ACTIONS(3738), - [anon_sym_var] = ACTIONS(3738), - [anon_sym_let] = ACTIONS(3738), - [anon_sym_const] = ACTIONS(3738), - [anon_sym_BANG] = ACTIONS(3738), - [anon_sym_if] = ACTIONS(3738), - [anon_sym_switch] = ACTIONS(3738), - [anon_sym_for] = ACTIONS(3738), - [anon_sym_LPAREN] = ACTIONS(3738), - [anon_sym_await] = ACTIONS(3738), - [anon_sym_of] = ACTIONS(3738), - [anon_sym_while] = ACTIONS(3738), - [anon_sym_do] = ACTIONS(3738), - [anon_sym_try] = ACTIONS(3738), - [anon_sym_break] = ACTIONS(3738), - [anon_sym_continue] = ACTIONS(3738), - [anon_sym_debugger] = ACTIONS(3738), - [anon_sym_return] = ACTIONS(3738), - [anon_sym_throw] = ACTIONS(3738), - [anon_sym_SEMI] = ACTIONS(3738), - [anon_sym_yield] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(3738), - [anon_sym_LTtemplate_GT] = ACTIONS(3738), - [anon_sym_DQUOTE] = ACTIONS(3738), - [anon_sym_SQUOTE] = ACTIONS(3738), - [anon_sym_class] = ACTIONS(3738), - [anon_sym_async] = ACTIONS(3738), - [anon_sym_function] = ACTIONS(3738), - [anon_sym_new] = ACTIONS(3738), - [anon_sym_using] = ACTIONS(3738), - [anon_sym_PLUS] = ACTIONS(3738), - [anon_sym_DASH] = ACTIONS(3738), - [anon_sym_SLASH] = ACTIONS(3738), - [anon_sym_LT] = ACTIONS(3738), - [anon_sym_TILDE] = ACTIONS(3738), - [anon_sym_void] = ACTIONS(3738), - [anon_sym_delete] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(3738), - [anon_sym_DASH_DASH] = ACTIONS(3738), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3738), - [sym_number] = ACTIONS(3738), - [sym_private_property_identifier] = ACTIONS(3738), - [sym_this] = ACTIONS(3738), - [sym_super] = ACTIONS(3738), - [sym_true] = ACTIONS(3738), - [sym_false] = ACTIONS(3738), - [sym_null] = ACTIONS(3738), - [sym_undefined] = ACTIONS(3738), - [anon_sym_AT] = ACTIONS(3738), - [anon_sym_static] = ACTIONS(3738), - [anon_sym_readonly] = ACTIONS(3738), - [anon_sym_get] = ACTIONS(3738), - [anon_sym_set] = ACTIONS(3738), - [anon_sym_declare] = ACTIONS(3738), - [anon_sym_public] = ACTIONS(3738), - [anon_sym_private] = ACTIONS(3738), - [anon_sym_protected] = ACTIONS(3738), - [anon_sym_override] = ACTIONS(3738), - [anon_sym_module] = ACTIONS(3738), - [anon_sym_any] = ACTIONS(3738), - [anon_sym_number] = ACTIONS(3738), - [anon_sym_boolean] = ACTIONS(3738), - [anon_sym_string] = ACTIONS(3738), - [anon_sym_symbol] = ACTIONS(3738), - [anon_sym_object] = ACTIONS(3738), - [anon_sym_property] = ACTIONS(3738), - [anon_sym_signal] = ACTIONS(3738), - [anon_sym_on] = ACTIONS(3738), - [anon_sym_required] = ACTIONS(3738), - [anon_sym_component] = ACTIONS(3738), - [anon_sym_abstract] = ACTIONS(3738), - [anon_sym_interface] = ACTIONS(3738), - [anon_sym_enum] = ACTIONS(3738), + [1774] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1774), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(4016), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1825] = { - [sym_comment] = STATE(1825), - [sym_identifier] = ACTIONS(3740), - [anon_sym_export] = ACTIONS(3740), - [anon_sym_type] = ACTIONS(3740), - [anon_sym_namespace] = ACTIONS(3740), - [anon_sym_LBRACE] = ACTIONS(3740), - [anon_sym_typeof] = ACTIONS(3740), - [anon_sym_import] = ACTIONS(3740), - [anon_sym_from] = ACTIONS(3740), - [anon_sym_with] = ACTIONS(3740), - [anon_sym_var] = ACTIONS(3740), - [anon_sym_let] = ACTIONS(3740), - [anon_sym_const] = ACTIONS(3740), - [anon_sym_BANG] = ACTIONS(3740), - [anon_sym_if] = ACTIONS(3740), - [anon_sym_switch] = ACTIONS(3740), - [anon_sym_for] = ACTIONS(3740), - [anon_sym_LPAREN] = ACTIONS(3740), - [anon_sym_await] = ACTIONS(3740), - [anon_sym_of] = ACTIONS(3740), - [anon_sym_while] = ACTIONS(3740), - [anon_sym_do] = ACTIONS(3740), - [anon_sym_try] = ACTIONS(3740), - [anon_sym_break] = ACTIONS(3740), - [anon_sym_continue] = ACTIONS(3740), - [anon_sym_debugger] = ACTIONS(3740), - [anon_sym_return] = ACTIONS(3740), - [anon_sym_throw] = ACTIONS(3740), - [anon_sym_SEMI] = ACTIONS(3740), - [anon_sym_yield] = ACTIONS(3740), - [anon_sym_LBRACK] = ACTIONS(3740), - [anon_sym_LTtemplate_GT] = ACTIONS(3740), - [anon_sym_DQUOTE] = ACTIONS(3740), - [anon_sym_SQUOTE] = ACTIONS(3740), - [anon_sym_class] = ACTIONS(3740), - [anon_sym_async] = ACTIONS(3740), - [anon_sym_function] = ACTIONS(3740), - [anon_sym_new] = ACTIONS(3740), - [anon_sym_using] = ACTIONS(3740), - [anon_sym_PLUS] = ACTIONS(3740), - [anon_sym_DASH] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(3740), - [anon_sym_LT] = ACTIONS(3740), - [anon_sym_TILDE] = ACTIONS(3740), - [anon_sym_void] = ACTIONS(3740), - [anon_sym_delete] = ACTIONS(3740), - [anon_sym_PLUS_PLUS] = ACTIONS(3740), - [anon_sym_DASH_DASH] = ACTIONS(3740), + [1775] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1775), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(4800), + [sym__type_query_call_expression_in_type_annotation] = STATE(5111), + [sym_asserts] = STATE(7377), + [sym__type] = STATE(4810), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_predicate] = STATE(7373), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4368), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(4018), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3740), - [sym_number] = ACTIONS(3740), - [sym_private_property_identifier] = ACTIONS(3740), - [sym_this] = ACTIONS(3740), - [sym_super] = ACTIONS(3740), - [sym_true] = ACTIONS(3740), - [sym_false] = ACTIONS(3740), - [sym_null] = ACTIONS(3740), - [sym_undefined] = ACTIONS(3740), - [anon_sym_AT] = ACTIONS(3740), - [anon_sym_static] = ACTIONS(3740), - [anon_sym_readonly] = ACTIONS(3740), - [anon_sym_get] = ACTIONS(3740), - [anon_sym_set] = ACTIONS(3740), - [anon_sym_declare] = ACTIONS(3740), - [anon_sym_public] = ACTIONS(3740), - [anon_sym_private] = ACTIONS(3740), - [anon_sym_protected] = ACTIONS(3740), - [anon_sym_override] = ACTIONS(3740), - [anon_sym_module] = ACTIONS(3740), - [anon_sym_any] = ACTIONS(3740), - [anon_sym_number] = ACTIONS(3740), - [anon_sym_boolean] = ACTIONS(3740), - [anon_sym_string] = ACTIONS(3740), - [anon_sym_symbol] = ACTIONS(3740), - [anon_sym_object] = ACTIONS(3740), - [anon_sym_property] = ACTIONS(3740), - [anon_sym_signal] = ACTIONS(3740), - [anon_sym_on] = ACTIONS(3740), - [anon_sym_required] = ACTIONS(3740), - [anon_sym_component] = ACTIONS(3740), - [anon_sym_abstract] = ACTIONS(3740), - [anon_sym_interface] = ACTIONS(3740), - [anon_sym_enum] = ACTIONS(3740), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(4020), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_asserts] = ACTIONS(4022), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1826] = { - [sym_comment] = STATE(1826), - [sym_identifier] = ACTIONS(3742), - [anon_sym_export] = ACTIONS(3742), - [anon_sym_type] = ACTIONS(3742), - [anon_sym_namespace] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_typeof] = ACTIONS(3742), - [anon_sym_import] = ACTIONS(3742), - [anon_sym_from] = ACTIONS(3742), - [anon_sym_with] = ACTIONS(3742), - [anon_sym_var] = ACTIONS(3742), - [anon_sym_let] = ACTIONS(3742), - [anon_sym_const] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_switch] = ACTIONS(3742), - [anon_sym_for] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3742), - [anon_sym_await] = ACTIONS(3742), - [anon_sym_of] = ACTIONS(3742), - [anon_sym_while] = ACTIONS(3742), - [anon_sym_do] = ACTIONS(3742), - [anon_sym_try] = ACTIONS(3742), - [anon_sym_break] = ACTIONS(3742), - [anon_sym_continue] = ACTIONS(3742), - [anon_sym_debugger] = ACTIONS(3742), - [anon_sym_return] = ACTIONS(3742), - [anon_sym_throw] = ACTIONS(3742), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_yield] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_LTtemplate_GT] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(3742), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_class] = ACTIONS(3742), - [anon_sym_async] = ACTIONS(3742), - [anon_sym_function] = ACTIONS(3742), - [anon_sym_new] = ACTIONS(3742), - [anon_sym_using] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_SLASH] = ACTIONS(3742), - [anon_sym_LT] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_void] = ACTIONS(3742), - [anon_sym_delete] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DASH_DASH] = ACTIONS(3742), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3742), - [sym_number] = ACTIONS(3742), - [sym_private_property_identifier] = ACTIONS(3742), - [sym_this] = ACTIONS(3742), - [sym_super] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_null] = ACTIONS(3742), - [sym_undefined] = ACTIONS(3742), - [anon_sym_AT] = ACTIONS(3742), - [anon_sym_static] = ACTIONS(3742), - [anon_sym_readonly] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(3742), - [anon_sym_set] = ACTIONS(3742), - [anon_sym_declare] = ACTIONS(3742), - [anon_sym_public] = ACTIONS(3742), - [anon_sym_private] = ACTIONS(3742), - [anon_sym_protected] = ACTIONS(3742), - [anon_sym_override] = ACTIONS(3742), - [anon_sym_module] = ACTIONS(3742), - [anon_sym_any] = ACTIONS(3742), - [anon_sym_number] = ACTIONS(3742), - [anon_sym_boolean] = ACTIONS(3742), - [anon_sym_string] = ACTIONS(3742), - [anon_sym_symbol] = ACTIONS(3742), - [anon_sym_object] = ACTIONS(3742), - [anon_sym_property] = ACTIONS(3742), - [anon_sym_signal] = ACTIONS(3742), - [anon_sym_on] = ACTIONS(3742), - [anon_sym_required] = ACTIONS(3742), - [anon_sym_component] = ACTIONS(3742), - [anon_sym_abstract] = ACTIONS(3742), - [anon_sym_interface] = ACTIONS(3742), - [anon_sym_enum] = ACTIONS(3742), + [1776] = { + [sym_import] = STATE(6990), + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1776), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type_query_member_expression_in_type_annotation] = STATE(4731), + [sym__type_query_call_expression_in_type_annotation] = STATE(4967), + [sym_asserts] = STATE(5488), + [sym__type] = STATE(4732), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_predicate] = STATE(5491), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4601), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(4026), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_asserts] = ACTIONS(4028), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [1827] = { - [sym_comment] = STATE(1827), - [sym_identifier] = ACTIONS(3742), - [anon_sym_export] = ACTIONS(3742), - [anon_sym_type] = ACTIONS(3742), - [anon_sym_namespace] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_typeof] = ACTIONS(3742), - [anon_sym_import] = ACTIONS(3742), - [anon_sym_from] = ACTIONS(3742), - [anon_sym_with] = ACTIONS(3742), - [anon_sym_var] = ACTIONS(3742), - [anon_sym_let] = ACTIONS(3742), - [anon_sym_const] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_switch] = ACTIONS(3742), - [anon_sym_for] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3742), - [anon_sym_await] = ACTIONS(3742), - [anon_sym_of] = ACTIONS(3742), - [anon_sym_while] = ACTIONS(3742), - [anon_sym_do] = ACTIONS(3742), - [anon_sym_try] = ACTIONS(3742), - [anon_sym_break] = ACTIONS(3742), - [anon_sym_continue] = ACTIONS(3742), - [anon_sym_debugger] = ACTIONS(3742), - [anon_sym_return] = ACTIONS(3742), - [anon_sym_throw] = ACTIONS(3742), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_yield] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_LTtemplate_GT] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(3742), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_class] = ACTIONS(3742), - [anon_sym_async] = ACTIONS(3742), - [anon_sym_function] = ACTIONS(3742), - [anon_sym_new] = ACTIONS(3742), - [anon_sym_using] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_SLASH] = ACTIONS(3742), - [anon_sym_LT] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_void] = ACTIONS(3742), - [anon_sym_delete] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DASH_DASH] = ACTIONS(3742), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3742), - [sym_number] = ACTIONS(3742), - [sym_private_property_identifier] = ACTIONS(3742), - [sym_this] = ACTIONS(3742), - [sym_super] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_null] = ACTIONS(3742), - [sym_undefined] = ACTIONS(3742), - [anon_sym_AT] = ACTIONS(3742), - [anon_sym_static] = ACTIONS(3742), - [anon_sym_readonly] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(3742), - [anon_sym_set] = ACTIONS(3742), - [anon_sym_declare] = ACTIONS(3742), - [anon_sym_public] = ACTIONS(3742), - [anon_sym_private] = ACTIONS(3742), - [anon_sym_protected] = ACTIONS(3742), - [anon_sym_override] = ACTIONS(3742), - [anon_sym_module] = ACTIONS(3742), - [anon_sym_any] = ACTIONS(3742), - [anon_sym_number] = ACTIONS(3742), - [anon_sym_boolean] = ACTIONS(3742), - [anon_sym_string] = ACTIONS(3742), - [anon_sym_symbol] = ACTIONS(3742), - [anon_sym_object] = ACTIONS(3742), - [anon_sym_property] = ACTIONS(3742), - [anon_sym_signal] = ACTIONS(3742), - [anon_sym_on] = ACTIONS(3742), - [anon_sym_required] = ACTIONS(3742), - [anon_sym_component] = ACTIONS(3742), - [anon_sym_abstract] = ACTIONS(3742), - [anon_sym_interface] = ACTIONS(3742), - [anon_sym_enum] = ACTIONS(3742), + [1777] = { + [sym_import] = STATE(6969), + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1777), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type_query_member_expression_in_type_annotation] = STATE(4979), + [sym__type_query_call_expression_in_type_annotation] = STATE(5448), + [sym_asserts] = STATE(5532), + [sym__type] = STATE(4984), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_predicate] = STATE(5535), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4743), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4062), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_asserts] = ACTIONS(4070), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), [sym_html_comment] = ACTIONS(5), }, - [1828] = { - [sym_comment] = STATE(1828), - [sym_identifier] = ACTIONS(3428), - [anon_sym_export] = ACTIONS(3428), - [anon_sym_type] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3428), - [anon_sym_typeof] = ACTIONS(3428), - [anon_sym_import] = ACTIONS(3428), - [anon_sym_from] = ACTIONS(3428), - [anon_sym_with] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3428), - [anon_sym_await] = ACTIONS(3428), - [anon_sym_of] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_debugger] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_LTtemplate_GT] = ACTIONS(3428), - [anon_sym_DQUOTE] = ACTIONS(3428), - [anon_sym_SQUOTE] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_using] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_SLASH] = ACTIONS(3428), - [anon_sym_LT] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3428), - [anon_sym_void] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3428), - [anon_sym_DASH_DASH] = ACTIONS(3428), + [1778] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1778), + [sym_formal_parameters] = STATE(8046), + [sym_rest_pattern] = STATE(7492), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5516), + [sym_tuple_parameter] = STATE(7486), + [sym_optional_tuple_parameter] = STATE(7486), + [sym_optional_type] = STATE(7486), + [sym_rest_type] = STATE(7486), + [sym__tuple_type_member] = STATE(7343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(3802), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3808), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3428), - [sym_number] = ACTIONS(3428), - [sym_private_property_identifier] = ACTIONS(3428), - [sym_this] = ACTIONS(3428), - [sym_super] = ACTIONS(3428), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_null] = ACTIONS(3428), - [sym_undefined] = ACTIONS(3428), - [anon_sym_AT] = ACTIONS(3428), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3428), - [anon_sym_set] = ACTIONS(3428), - [anon_sym_declare] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_override] = ACTIONS(3428), - [anon_sym_module] = ACTIONS(3428), - [anon_sym_any] = ACTIONS(3428), - [anon_sym_number] = ACTIONS(3428), - [anon_sym_boolean] = ACTIONS(3428), - [anon_sym_string] = ACTIONS(3428), - [anon_sym_symbol] = ACTIONS(3428), - [anon_sym_object] = ACTIONS(3428), - [anon_sym_property] = ACTIONS(3428), - [anon_sym_signal] = ACTIONS(3428), - [anon_sym_on] = ACTIONS(3428), - [anon_sym_required] = ACTIONS(3428), - [anon_sym_component] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1829] = { - [sym_comment] = STATE(1829), - [sym_identifier] = ACTIONS(3742), - [anon_sym_export] = ACTIONS(3742), - [anon_sym_type] = ACTIONS(3742), - [anon_sym_namespace] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_typeof] = ACTIONS(3742), - [anon_sym_import] = ACTIONS(3742), - [anon_sym_from] = ACTIONS(3742), - [anon_sym_with] = ACTIONS(3742), - [anon_sym_var] = ACTIONS(3742), - [anon_sym_let] = ACTIONS(3742), - [anon_sym_const] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_switch] = ACTIONS(3742), - [anon_sym_for] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3742), - [anon_sym_await] = ACTIONS(3742), - [anon_sym_of] = ACTIONS(3742), - [anon_sym_while] = ACTIONS(3742), - [anon_sym_do] = ACTIONS(3742), - [anon_sym_try] = ACTIONS(3742), - [anon_sym_break] = ACTIONS(3742), - [anon_sym_continue] = ACTIONS(3742), - [anon_sym_debugger] = ACTIONS(3742), - [anon_sym_return] = ACTIONS(3742), - [anon_sym_throw] = ACTIONS(3742), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_yield] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_LTtemplate_GT] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(3742), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_class] = ACTIONS(3742), - [anon_sym_async] = ACTIONS(3742), - [anon_sym_function] = ACTIONS(3742), - [anon_sym_new] = ACTIONS(3742), - [anon_sym_using] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_SLASH] = ACTIONS(3742), - [anon_sym_LT] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_void] = ACTIONS(3742), - [anon_sym_delete] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DASH_DASH] = ACTIONS(3742), + [1779] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1779), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3742), - [sym_number] = ACTIONS(3742), - [sym_private_property_identifier] = ACTIONS(3742), - [sym_this] = ACTIONS(3742), - [sym_super] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_null] = ACTIONS(3742), - [sym_undefined] = ACTIONS(3742), - [anon_sym_AT] = ACTIONS(3742), - [anon_sym_static] = ACTIONS(3742), - [anon_sym_readonly] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(3742), - [anon_sym_set] = ACTIONS(3742), - [anon_sym_declare] = ACTIONS(3742), - [anon_sym_public] = ACTIONS(3742), - [anon_sym_private] = ACTIONS(3742), - [anon_sym_protected] = ACTIONS(3742), - [anon_sym_override] = ACTIONS(3742), - [anon_sym_module] = ACTIONS(3742), - [anon_sym_any] = ACTIONS(3742), - [anon_sym_number] = ACTIONS(3742), - [anon_sym_boolean] = ACTIONS(3742), - [anon_sym_string] = ACTIONS(3742), - [anon_sym_symbol] = ACTIONS(3742), - [anon_sym_object] = ACTIONS(3742), - [anon_sym_property] = ACTIONS(3742), - [anon_sym_signal] = ACTIONS(3742), - [anon_sym_on] = ACTIONS(3742), - [anon_sym_required] = ACTIONS(3742), - [anon_sym_component] = ACTIONS(3742), - [anon_sym_abstract] = ACTIONS(3742), - [anon_sym_interface] = ACTIONS(3742), - [anon_sym_enum] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1830] = { - [sym_comment] = STATE(1830), - [sym_identifier] = ACTIONS(3742), - [anon_sym_export] = ACTIONS(3742), - [anon_sym_type] = ACTIONS(3742), - [anon_sym_namespace] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_typeof] = ACTIONS(3742), - [anon_sym_import] = ACTIONS(3742), - [anon_sym_from] = ACTIONS(3742), - [anon_sym_with] = ACTIONS(3742), - [anon_sym_var] = ACTIONS(3742), - [anon_sym_let] = ACTIONS(3742), - [anon_sym_const] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_switch] = ACTIONS(3742), - [anon_sym_for] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3742), - [anon_sym_await] = ACTIONS(3742), - [anon_sym_of] = ACTIONS(3742), - [anon_sym_while] = ACTIONS(3742), - [anon_sym_do] = ACTIONS(3742), - [anon_sym_try] = ACTIONS(3742), - [anon_sym_break] = ACTIONS(3742), - [anon_sym_continue] = ACTIONS(3742), - [anon_sym_debugger] = ACTIONS(3742), - [anon_sym_return] = ACTIONS(3742), - [anon_sym_throw] = ACTIONS(3742), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_yield] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_LTtemplate_GT] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(3742), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_class] = ACTIONS(3742), - [anon_sym_async] = ACTIONS(3742), - [anon_sym_function] = ACTIONS(3742), - [anon_sym_new] = ACTIONS(3742), - [anon_sym_using] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_SLASH] = ACTIONS(3742), - [anon_sym_LT] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_void] = ACTIONS(3742), - [anon_sym_delete] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DASH_DASH] = ACTIONS(3742), + [1780] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1780), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(4080), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3742), - [sym_number] = ACTIONS(3742), - [sym_private_property_identifier] = ACTIONS(3742), - [sym_this] = ACTIONS(3742), - [sym_super] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_null] = ACTIONS(3742), - [sym_undefined] = ACTIONS(3742), - [anon_sym_AT] = ACTIONS(3742), - [anon_sym_static] = ACTIONS(3742), - [anon_sym_readonly] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(3742), - [anon_sym_set] = ACTIONS(3742), - [anon_sym_declare] = ACTIONS(3742), - [anon_sym_public] = ACTIONS(3742), - [anon_sym_private] = ACTIONS(3742), - [anon_sym_protected] = ACTIONS(3742), - [anon_sym_override] = ACTIONS(3742), - [anon_sym_module] = ACTIONS(3742), - [anon_sym_any] = ACTIONS(3742), - [anon_sym_number] = ACTIONS(3742), - [anon_sym_boolean] = ACTIONS(3742), - [anon_sym_string] = ACTIONS(3742), - [anon_sym_symbol] = ACTIONS(3742), - [anon_sym_object] = ACTIONS(3742), - [anon_sym_property] = ACTIONS(3742), - [anon_sym_signal] = ACTIONS(3742), - [anon_sym_on] = ACTIONS(3742), - [anon_sym_required] = ACTIONS(3742), - [anon_sym_component] = ACTIONS(3742), - [anon_sym_abstract] = ACTIONS(3742), - [anon_sym_interface] = ACTIONS(3742), - [anon_sym_enum] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1831] = { - [sym_comment] = STATE(1831), - [sym_identifier] = ACTIONS(3464), - [anon_sym_export] = ACTIONS(3464), - [anon_sym_type] = ACTIONS(3464), - [anon_sym_namespace] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3464), - [anon_sym_typeof] = ACTIONS(3464), - [anon_sym_import] = ACTIONS(3464), - [anon_sym_from] = ACTIONS(3464), - [anon_sym_with] = ACTIONS(3464), - [anon_sym_var] = ACTIONS(3464), - [anon_sym_let] = ACTIONS(3464), - [anon_sym_const] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3464), - [anon_sym_if] = ACTIONS(3464), - [anon_sym_switch] = ACTIONS(3464), - [anon_sym_for] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3464), - [anon_sym_await] = ACTIONS(3464), - [anon_sym_of] = ACTIONS(3464), - [anon_sym_while] = ACTIONS(3464), - [anon_sym_do] = ACTIONS(3464), - [anon_sym_try] = ACTIONS(3464), - [anon_sym_break] = ACTIONS(3464), - [anon_sym_continue] = ACTIONS(3464), - [anon_sym_debugger] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3464), - [anon_sym_throw] = ACTIONS(3464), - [anon_sym_SEMI] = ACTIONS(3464), - [anon_sym_yield] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3464), - [anon_sym_LTtemplate_GT] = ACTIONS(3464), - [anon_sym_DQUOTE] = ACTIONS(3464), - [anon_sym_SQUOTE] = ACTIONS(3464), - [anon_sym_class] = ACTIONS(3464), - [anon_sym_async] = ACTIONS(3464), - [anon_sym_function] = ACTIONS(3464), - [anon_sym_new] = ACTIONS(3464), - [anon_sym_using] = ACTIONS(3464), - [anon_sym_PLUS] = ACTIONS(3464), - [anon_sym_DASH] = ACTIONS(3464), - [anon_sym_SLASH] = ACTIONS(3464), - [anon_sym_LT] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3464), - [anon_sym_void] = ACTIONS(3464), - [anon_sym_delete] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3464), - [anon_sym_DASH_DASH] = ACTIONS(3464), + [1781] = { + [sym_export_statement] = STATE(5406), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(7770), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(7638), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1781), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(7770), + [sym_method_definition] = STATE(7638), + [sym_pair] = STATE(7638), + [sym_pair_pattern] = STATE(7770), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5406), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5406), + [sym_property_signature] = STATE(5406), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5406), + [sym_index_signature] = STATE(5406), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4082), + [anon_sym_export] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(4082), + [anon_sym_namespace] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(4086), + [anon_sym_RBRACE] = ACTIONS(4086), + [anon_sym_from] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4089), + [anon_sym_new] = ACTIONS(4091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(211), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3464), - [sym_number] = ACTIONS(3464), - [sym_private_property_identifier] = ACTIONS(3464), - [sym_this] = ACTIONS(3464), - [sym_super] = ACTIONS(3464), - [sym_true] = ACTIONS(3464), - [sym_false] = ACTIONS(3464), - [sym_null] = ACTIONS(3464), - [sym_undefined] = ACTIONS(3464), - [anon_sym_AT] = ACTIONS(3464), - [anon_sym_static] = ACTIONS(3464), - [anon_sym_readonly] = ACTIONS(3464), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3464), - [anon_sym_declare] = ACTIONS(3464), - [anon_sym_public] = ACTIONS(3464), - [anon_sym_private] = ACTIONS(3464), - [anon_sym_protected] = ACTIONS(3464), - [anon_sym_override] = ACTIONS(3464), - [anon_sym_module] = ACTIONS(3464), - [anon_sym_any] = ACTIONS(3464), - [anon_sym_number] = ACTIONS(3464), - [anon_sym_boolean] = ACTIONS(3464), - [anon_sym_string] = ACTIONS(3464), - [anon_sym_symbol] = ACTIONS(3464), - [anon_sym_object] = ACTIONS(3464), - [anon_sym_property] = ACTIONS(3464), - [anon_sym_signal] = ACTIONS(3464), - [anon_sym_on] = ACTIONS(3464), - [anon_sym_required] = ACTIONS(3464), - [anon_sym_component] = ACTIONS(3464), - [anon_sym_abstract] = ACTIONS(3464), - [anon_sym_interface] = ACTIONS(3464), - [anon_sym_enum] = ACTIONS(3464), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4093), + [anon_sym_readonly] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_declare] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4099), + [anon_sym_private] = ACTIONS(4099), + [anon_sym_protected] = ACTIONS(4099), + [anon_sym_override] = ACTIONS(4101), + [anon_sym_module] = ACTIONS(4082), + [anon_sym_any] = ACTIONS(4082), + [anon_sym_number] = ACTIONS(4082), + [anon_sym_boolean] = ACTIONS(4082), + [anon_sym_string] = ACTIONS(4082), + [anon_sym_symbol] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_property] = ACTIONS(4082), + [anon_sym_signal] = ACTIONS(4082), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_required] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(3798), [sym_html_comment] = ACTIONS(5), }, - [1832] = { - [sym_comment] = STATE(1832), - [sym_identifier] = ACTIONS(3742), - [anon_sym_export] = ACTIONS(3742), - [anon_sym_type] = ACTIONS(3742), - [anon_sym_namespace] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_typeof] = ACTIONS(3742), - [anon_sym_import] = ACTIONS(3742), - [anon_sym_from] = ACTIONS(3742), - [anon_sym_with] = ACTIONS(3742), - [anon_sym_var] = ACTIONS(3742), - [anon_sym_let] = ACTIONS(3742), - [anon_sym_const] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_switch] = ACTIONS(3742), - [anon_sym_for] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3742), - [anon_sym_await] = ACTIONS(3742), - [anon_sym_of] = ACTIONS(3742), - [anon_sym_while] = ACTIONS(3742), - [anon_sym_do] = ACTIONS(3742), - [anon_sym_try] = ACTIONS(3742), - [anon_sym_break] = ACTIONS(3742), - [anon_sym_continue] = ACTIONS(3742), - [anon_sym_debugger] = ACTIONS(3742), - [anon_sym_return] = ACTIONS(3742), - [anon_sym_throw] = ACTIONS(3742), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_yield] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_LTtemplate_GT] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(3742), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_class] = ACTIONS(3742), - [anon_sym_async] = ACTIONS(3742), - [anon_sym_function] = ACTIONS(3742), - [anon_sym_new] = ACTIONS(3742), - [anon_sym_using] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_SLASH] = ACTIONS(3742), - [anon_sym_LT] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_void] = ACTIONS(3742), - [anon_sym_delete] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DASH_DASH] = ACTIONS(3742), + [1782] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1782), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(4103), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3742), - [sym_number] = ACTIONS(3742), - [sym_private_property_identifier] = ACTIONS(3742), - [sym_this] = ACTIONS(3742), - [sym_super] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_null] = ACTIONS(3742), - [sym_undefined] = ACTIONS(3742), - [anon_sym_AT] = ACTIONS(3742), - [anon_sym_static] = ACTIONS(3742), - [anon_sym_readonly] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(3742), - [anon_sym_set] = ACTIONS(3742), - [anon_sym_declare] = ACTIONS(3742), - [anon_sym_public] = ACTIONS(3742), - [anon_sym_private] = ACTIONS(3742), - [anon_sym_protected] = ACTIONS(3742), - [anon_sym_override] = ACTIONS(3742), - [anon_sym_module] = ACTIONS(3742), - [anon_sym_any] = ACTIONS(3742), - [anon_sym_number] = ACTIONS(3742), - [anon_sym_boolean] = ACTIONS(3742), - [anon_sym_string] = ACTIONS(3742), - [anon_sym_symbol] = ACTIONS(3742), - [anon_sym_object] = ACTIONS(3742), - [anon_sym_property] = ACTIONS(3742), - [anon_sym_signal] = ACTIONS(3742), - [anon_sym_on] = ACTIONS(3742), - [anon_sym_required] = ACTIONS(3742), - [anon_sym_component] = ACTIONS(3742), - [anon_sym_abstract] = ACTIONS(3742), - [anon_sym_interface] = ACTIONS(3742), - [anon_sym_enum] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1833] = { - [sym_comment] = STATE(1833), - [sym_identifier] = ACTIONS(3742), - [anon_sym_export] = ACTIONS(3742), - [anon_sym_type] = ACTIONS(3742), - [anon_sym_namespace] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_typeof] = ACTIONS(3742), - [anon_sym_import] = ACTIONS(3742), - [anon_sym_from] = ACTIONS(3742), - [anon_sym_with] = ACTIONS(3742), - [anon_sym_var] = ACTIONS(3742), - [anon_sym_let] = ACTIONS(3742), - [anon_sym_const] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_switch] = ACTIONS(3742), - [anon_sym_for] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3742), - [anon_sym_await] = ACTIONS(3742), - [anon_sym_of] = ACTIONS(3742), - [anon_sym_while] = ACTIONS(3742), - [anon_sym_do] = ACTIONS(3742), - [anon_sym_try] = ACTIONS(3742), - [anon_sym_break] = ACTIONS(3742), - [anon_sym_continue] = ACTIONS(3742), - [anon_sym_debugger] = ACTIONS(3742), - [anon_sym_return] = ACTIONS(3742), - [anon_sym_throw] = ACTIONS(3742), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_yield] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_LTtemplate_GT] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(3742), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_class] = ACTIONS(3742), - [anon_sym_async] = ACTIONS(3742), - [anon_sym_function] = ACTIONS(3742), - [anon_sym_new] = ACTIONS(3742), - [anon_sym_using] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_SLASH] = ACTIONS(3742), - [anon_sym_LT] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_void] = ACTIONS(3742), - [anon_sym_delete] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DASH_DASH] = ACTIONS(3742), + [1783] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1783), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5376), + [sym__type_query_call_expression_in_type_annotation] = STATE(6136), + [sym__type] = STATE(5377), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_type_parameter] = STATE(6813), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(4105), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(4107), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3742), - [sym_number] = ACTIONS(3742), - [sym_private_property_identifier] = ACTIONS(3742), - [sym_this] = ACTIONS(3742), - [sym_super] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_null] = ACTIONS(3742), - [sym_undefined] = ACTIONS(3742), - [anon_sym_AT] = ACTIONS(3742), - [anon_sym_static] = ACTIONS(3742), - [anon_sym_readonly] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(3742), - [anon_sym_set] = ACTIONS(3742), - [anon_sym_declare] = ACTIONS(3742), - [anon_sym_public] = ACTIONS(3742), - [anon_sym_private] = ACTIONS(3742), - [anon_sym_protected] = ACTIONS(3742), - [anon_sym_override] = ACTIONS(3742), - [anon_sym_module] = ACTIONS(3742), - [anon_sym_any] = ACTIONS(3742), - [anon_sym_number] = ACTIONS(3742), - [anon_sym_boolean] = ACTIONS(3742), - [anon_sym_string] = ACTIONS(3742), - [anon_sym_symbol] = ACTIONS(3742), - [anon_sym_object] = ACTIONS(3742), - [anon_sym_property] = ACTIONS(3742), - [anon_sym_signal] = ACTIONS(3742), - [anon_sym_on] = ACTIONS(3742), - [anon_sym_required] = ACTIONS(3742), - [anon_sym_component] = ACTIONS(3742), - [anon_sym_abstract] = ACTIONS(3742), - [anon_sym_interface] = ACTIONS(3742), - [anon_sym_enum] = ACTIONS(3742), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1834] = { - [sym_comment] = STATE(1834), - [sym_identifier] = ACTIONS(3742), - [anon_sym_export] = ACTIONS(3742), - [anon_sym_type] = ACTIONS(3742), - [anon_sym_namespace] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_typeof] = ACTIONS(3742), - [anon_sym_import] = ACTIONS(3742), - [anon_sym_from] = ACTIONS(3742), - [anon_sym_with] = ACTIONS(3742), - [anon_sym_var] = ACTIONS(3742), - [anon_sym_let] = ACTIONS(3742), - [anon_sym_const] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_switch] = ACTIONS(3742), - [anon_sym_for] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3742), - [anon_sym_await] = ACTIONS(3742), - [anon_sym_of] = ACTIONS(3742), - [anon_sym_while] = ACTIONS(3742), - [anon_sym_do] = ACTIONS(3742), - [anon_sym_try] = ACTIONS(3742), - [anon_sym_break] = ACTIONS(3742), - [anon_sym_continue] = ACTIONS(3742), - [anon_sym_debugger] = ACTIONS(3742), - [anon_sym_return] = ACTIONS(3742), - [anon_sym_throw] = ACTIONS(3742), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_yield] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_LTtemplate_GT] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(3742), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_class] = ACTIONS(3742), - [anon_sym_async] = ACTIONS(3742), - [anon_sym_function] = ACTIONS(3742), - [anon_sym_new] = ACTIONS(3742), - [anon_sym_using] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_SLASH] = ACTIONS(3742), - [anon_sym_LT] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_void] = ACTIONS(3742), - [anon_sym_delete] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DASH_DASH] = ACTIONS(3742), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3742), - [sym_number] = ACTIONS(3742), - [sym_private_property_identifier] = ACTIONS(3742), - [sym_this] = ACTIONS(3742), - [sym_super] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_null] = ACTIONS(3742), - [sym_undefined] = ACTIONS(3742), - [anon_sym_AT] = ACTIONS(3742), - [anon_sym_static] = ACTIONS(3742), - [anon_sym_readonly] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(3742), - [anon_sym_set] = ACTIONS(3742), - [anon_sym_declare] = ACTIONS(3742), - [anon_sym_public] = ACTIONS(3742), - [anon_sym_private] = ACTIONS(3742), - [anon_sym_protected] = ACTIONS(3742), - [anon_sym_override] = ACTIONS(3742), - [anon_sym_module] = ACTIONS(3742), - [anon_sym_any] = ACTIONS(3742), - [anon_sym_number] = ACTIONS(3742), - [anon_sym_boolean] = ACTIONS(3742), - [anon_sym_string] = ACTIONS(3742), - [anon_sym_symbol] = ACTIONS(3742), - [anon_sym_object] = ACTIONS(3742), - [anon_sym_property] = ACTIONS(3742), - [anon_sym_signal] = ACTIONS(3742), - [anon_sym_on] = ACTIONS(3742), - [anon_sym_required] = ACTIONS(3742), - [anon_sym_component] = ACTIONS(3742), - [anon_sym_abstract] = ACTIONS(3742), - [anon_sym_interface] = ACTIONS(3742), - [anon_sym_enum] = ACTIONS(3742), - [sym_html_comment] = ACTIONS(5), - }, - [1835] = { - [sym_comment] = STATE(1835), - [sym_identifier] = ACTIONS(3744), - [anon_sym_export] = ACTIONS(3744), - [anon_sym_type] = ACTIONS(3744), - [anon_sym_namespace] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3744), - [anon_sym_typeof] = ACTIONS(3744), - [anon_sym_import] = ACTIONS(3744), - [anon_sym_from] = ACTIONS(3744), - [anon_sym_with] = ACTIONS(3744), - [anon_sym_var] = ACTIONS(3744), - [anon_sym_let] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(3744), - [anon_sym_BANG] = ACTIONS(3744), - [anon_sym_if] = ACTIONS(3744), - [anon_sym_switch] = ACTIONS(3744), - [anon_sym_for] = ACTIONS(3744), - [anon_sym_LPAREN] = ACTIONS(3744), - [anon_sym_await] = ACTIONS(3744), - [anon_sym_of] = ACTIONS(3744), - [anon_sym_while] = ACTIONS(3744), - [anon_sym_do] = ACTIONS(3744), - [anon_sym_try] = ACTIONS(3744), - [anon_sym_break] = ACTIONS(3744), - [anon_sym_continue] = ACTIONS(3744), - [anon_sym_debugger] = ACTIONS(3744), - [anon_sym_return] = ACTIONS(3744), - [anon_sym_throw] = ACTIONS(3744), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_yield] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(3744), - [anon_sym_LTtemplate_GT] = ACTIONS(3744), - [anon_sym_DQUOTE] = ACTIONS(3744), - [anon_sym_SQUOTE] = ACTIONS(3744), - [anon_sym_class] = ACTIONS(3744), - [anon_sym_async] = ACTIONS(3744), - [anon_sym_function] = ACTIONS(3744), - [anon_sym_new] = ACTIONS(3744), - [anon_sym_using] = ACTIONS(3744), - [anon_sym_PLUS] = ACTIONS(3744), - [anon_sym_DASH] = ACTIONS(3744), - [anon_sym_SLASH] = ACTIONS(3744), - [anon_sym_LT] = ACTIONS(3744), - [anon_sym_TILDE] = ACTIONS(3744), - [anon_sym_void] = ACTIONS(3744), - [anon_sym_delete] = ACTIONS(3744), - [anon_sym_PLUS_PLUS] = ACTIONS(3744), - [anon_sym_DASH_DASH] = ACTIONS(3744), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3744), - [sym_number] = ACTIONS(3744), - [sym_private_property_identifier] = ACTIONS(3744), - [sym_this] = ACTIONS(3744), - [sym_super] = ACTIONS(3744), - [sym_true] = ACTIONS(3744), - [sym_false] = ACTIONS(3744), - [sym_null] = ACTIONS(3744), - [sym_undefined] = ACTIONS(3744), - [anon_sym_AT] = ACTIONS(3744), - [anon_sym_static] = ACTIONS(3744), - [anon_sym_readonly] = ACTIONS(3744), - [anon_sym_get] = ACTIONS(3744), - [anon_sym_set] = ACTIONS(3744), - [anon_sym_declare] = ACTIONS(3744), - [anon_sym_public] = ACTIONS(3744), - [anon_sym_private] = ACTIONS(3744), - [anon_sym_protected] = ACTIONS(3744), - [anon_sym_override] = ACTIONS(3744), - [anon_sym_module] = ACTIONS(3744), - [anon_sym_any] = ACTIONS(3744), - [anon_sym_number] = ACTIONS(3744), - [anon_sym_boolean] = ACTIONS(3744), - [anon_sym_string] = ACTIONS(3744), - [anon_sym_symbol] = ACTIONS(3744), - [anon_sym_object] = ACTIONS(3744), - [anon_sym_property] = ACTIONS(3744), - [anon_sym_signal] = ACTIONS(3744), - [anon_sym_on] = ACTIONS(3744), - [anon_sym_required] = ACTIONS(3744), - [anon_sym_component] = ACTIONS(3744), - [anon_sym_abstract] = ACTIONS(3744), - [anon_sym_interface] = ACTIONS(3744), - [anon_sym_enum] = ACTIONS(3744), - [sym_html_comment] = ACTIONS(5), - }, - [1836] = { - [sym_comment] = STATE(1836), - [sym_identifier] = ACTIONS(3742), - [anon_sym_export] = ACTIONS(3742), - [anon_sym_type] = ACTIONS(3742), - [anon_sym_namespace] = ACTIONS(3742), - [anon_sym_LBRACE] = ACTIONS(3742), - [anon_sym_typeof] = ACTIONS(3742), - [anon_sym_import] = ACTIONS(3742), - [anon_sym_from] = ACTIONS(3742), - [anon_sym_with] = ACTIONS(3742), - [anon_sym_var] = ACTIONS(3742), - [anon_sym_let] = ACTIONS(3742), - [anon_sym_const] = ACTIONS(3742), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_if] = ACTIONS(3742), - [anon_sym_switch] = ACTIONS(3742), - [anon_sym_for] = ACTIONS(3742), - [anon_sym_LPAREN] = ACTIONS(3742), - [anon_sym_await] = ACTIONS(3742), - [anon_sym_of] = ACTIONS(3742), - [anon_sym_while] = ACTIONS(3742), - [anon_sym_do] = ACTIONS(3742), - [anon_sym_try] = ACTIONS(3742), - [anon_sym_break] = ACTIONS(3742), - [anon_sym_continue] = ACTIONS(3742), - [anon_sym_debugger] = ACTIONS(3742), - [anon_sym_return] = ACTIONS(3742), - [anon_sym_throw] = ACTIONS(3742), - [anon_sym_SEMI] = ACTIONS(3742), - [anon_sym_yield] = ACTIONS(3742), - [anon_sym_LBRACK] = ACTIONS(3742), - [anon_sym_LTtemplate_GT] = ACTIONS(3742), - [anon_sym_DQUOTE] = ACTIONS(3742), - [anon_sym_SQUOTE] = ACTIONS(3742), - [anon_sym_class] = ACTIONS(3742), - [anon_sym_async] = ACTIONS(3742), - [anon_sym_function] = ACTIONS(3742), - [anon_sym_new] = ACTIONS(3742), - [anon_sym_using] = ACTIONS(3742), - [anon_sym_PLUS] = ACTIONS(3742), - [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_SLASH] = ACTIONS(3742), - [anon_sym_LT] = ACTIONS(3742), - [anon_sym_TILDE] = ACTIONS(3742), - [anon_sym_void] = ACTIONS(3742), - [anon_sym_delete] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(3742), - [anon_sym_DASH_DASH] = ACTIONS(3742), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3742), - [sym_number] = ACTIONS(3742), - [sym_private_property_identifier] = ACTIONS(3742), - [sym_this] = ACTIONS(3742), - [sym_super] = ACTIONS(3742), - [sym_true] = ACTIONS(3742), - [sym_false] = ACTIONS(3742), - [sym_null] = ACTIONS(3742), - [sym_undefined] = ACTIONS(3742), - [anon_sym_AT] = ACTIONS(3742), - [anon_sym_static] = ACTIONS(3742), - [anon_sym_readonly] = ACTIONS(3742), - [anon_sym_get] = ACTIONS(3742), - [anon_sym_set] = ACTIONS(3742), - [anon_sym_declare] = ACTIONS(3742), - [anon_sym_public] = ACTIONS(3742), - [anon_sym_private] = ACTIONS(3742), - [anon_sym_protected] = ACTIONS(3742), - [anon_sym_override] = ACTIONS(3742), - [anon_sym_module] = ACTIONS(3742), - [anon_sym_any] = ACTIONS(3742), - [anon_sym_number] = ACTIONS(3742), - [anon_sym_boolean] = ACTIONS(3742), - [anon_sym_string] = ACTIONS(3742), - [anon_sym_symbol] = ACTIONS(3742), - [anon_sym_object] = ACTIONS(3742), - [anon_sym_property] = ACTIONS(3742), - [anon_sym_signal] = ACTIONS(3742), - [anon_sym_on] = ACTIONS(3742), - [anon_sym_required] = ACTIONS(3742), - [anon_sym_component] = ACTIONS(3742), - [anon_sym_abstract] = ACTIONS(3742), - [anon_sym_interface] = ACTIONS(3742), - [anon_sym_enum] = ACTIONS(3742), - [sym_html_comment] = ACTIONS(5), - }, - [1837] = { - [sym_statement_block] = STATE(1862), - [sym_comment] = STATE(1837), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [1838] = { - [sym_statement_block] = STATE(1862), - [sym_comment] = STATE(1838), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3748), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [1839] = { - [sym_statement_block] = STATE(1862), - [sym_comment] = STATE(1839), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_else] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3750), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [1840] = { - [sym_comment] = STATE(1840), - [sym_identifier] = ACTIONS(2410), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_var] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_else] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_in] = ACTIONS(2410), - [anon_sym_of] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_GT] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_function] = ACTIONS(2410), - [anon_sym_QMARK_DOT] = ACTIONS(2410), - [anon_sym_AMP_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2410), - [anon_sym_GT_GT] = ACTIONS(2410), - [anon_sym_GT_GT_GT] = ACTIONS(2410), - [anon_sym_LT_LT] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_CARET] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2410), - [anon_sym_PERCENT] = ACTIONS(2410), - [anon_sym_STAR_STAR] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_LT_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), - [anon_sym_GT_EQ] = ACTIONS(2410), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_instanceof] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2410), - [anon_sym_AT] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_signal] = ACTIONS(2410), - [anon_sym_on] = ACTIONS(2410), - [anon_sym_required] = ACTIONS(2410), - [anon_sym_component] = ACTIONS(2410), - [anon_sym_satisfies] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [sym__automatic_semicolon] = ACTIONS(2412), - [sym__ternary_qmark] = ACTIONS(2412), - [sym_html_comment] = ACTIONS(5), - }, - [1841] = { - [sym_comment] = STATE(1841), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_EQ] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_GT] = ACTIONS(2289), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_PIPE_PIPE] = ACTIONS(2289), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_GT_GT_GT] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_PERCENT] = ACTIONS(2289), - [anon_sym_STAR_STAR] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_LT_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2289), - [anon_sym_GT_EQ] = ACTIONS(2289), - [anon_sym_QMARK_QMARK] = ACTIONS(2289), - [anon_sym_instanceof] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2289), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3752), - [sym__ternary_qmark] = ACTIONS(2295), - [sym_html_comment] = ACTIONS(5), - }, - [1842] = { - [sym_statement_block] = STATE(1922), - [sym_comment] = STATE(1842), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3754), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [1843] = { - [sym_comment] = STATE(1843), - [sym_identifier] = ACTIONS(2370), - [anon_sym_export] = ACTIONS(2370), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_default] = ACTIONS(2370), - [anon_sym_type] = ACTIONS(2370), - [anon_sym_as] = ACTIONS(2370), - [anon_sym_namespace] = ACTIONS(2370), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_COMMA] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_from] = ACTIONS(2370), - [anon_sym_var] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_else] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_in] = ACTIONS(2370), - [anon_sym_of] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2370), - [anon_sym_GT] = ACTIONS(2370), - [anon_sym_DOT] = ACTIONS(2370), - [anon_sym_async] = ACTIONS(2370), - [anon_sym_function] = ACTIONS(2370), - [anon_sym_QMARK_DOT] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_GT_GT] = ACTIONS(2370), - [anon_sym_GT_GT_GT] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2370), - [anon_sym_CARET] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_SLASH] = ACTIONS(2370), - [anon_sym_PERCENT] = ACTIONS(2370), - [anon_sym_STAR_STAR] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_QMARK_QMARK] = ACTIONS(2370), - [anon_sym_instanceof] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_readonly] = ACTIONS(2370), - [anon_sym_get] = ACTIONS(2370), - [anon_sym_set] = ACTIONS(2370), - [anon_sym_declare] = ACTIONS(2370), - [anon_sym_public] = ACTIONS(2370), - [anon_sym_private] = ACTIONS(2370), - [anon_sym_protected] = ACTIONS(2370), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2370), - [anon_sym_any] = ACTIONS(2370), - [anon_sym_number] = ACTIONS(2370), - [anon_sym_boolean] = ACTIONS(2370), - [anon_sym_string] = ACTIONS(2370), - [anon_sym_symbol] = ACTIONS(2370), - [anon_sym_object] = ACTIONS(2370), - [anon_sym_property] = ACTIONS(2370), - [anon_sym_signal] = ACTIONS(2370), - [anon_sym_on] = ACTIONS(2370), - [anon_sym_required] = ACTIONS(2370), - [anon_sym_component] = ACTIONS(2370), - [anon_sym_satisfies] = ACTIONS(2370), - [anon_sym_enum] = ACTIONS(2370), - [sym__automatic_semicolon] = ACTIONS(2372), - [sym__ternary_qmark] = ACTIONS(2372), - [sym_html_comment] = ACTIONS(5), - }, - [1844] = { - [sym_comment] = STATE(1844), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_default] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_as] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_COMMA] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_from] = ACTIONS(2474), - [anon_sym_var] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_else] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_in] = ACTIONS(2474), - [anon_sym_of] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_QMARK_DOT] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_GT_GT_GT] = ACTIONS(2474), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_PERCENT] = ACTIONS(2474), - [anon_sym_STAR_STAR] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2474), - [anon_sym_QMARK_QMARK] = ACTIONS(2474), - [anon_sym_instanceof] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2474), - [anon_sym_AT] = ACTIONS(2474), - [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_property] = ACTIONS(2474), - [anon_sym_signal] = ACTIONS(2474), - [anon_sym_on] = ACTIONS(2474), - [anon_sym_required] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(2476), - [sym_html_comment] = ACTIONS(5), - }, - [1845] = { - [sym_comment] = STATE(1845), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2438), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_as] = ACTIONS(2438), - [anon_sym_namespace] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_COMMA] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_from] = ACTIONS(2438), - [anon_sym_var] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_else] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_in] = ACTIONS(2438), - [anon_sym_of] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_GT] = ACTIONS(2438), - [anon_sym_DOT] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2438), - [anon_sym_QMARK_DOT] = ACTIONS(2438), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE_PIPE] = ACTIONS(2438), - [anon_sym_GT_GT] = ACTIONS(2438), - [anon_sym_GT_GT_GT] = ACTIONS(2438), - [anon_sym_LT_LT] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2438), - [anon_sym_CARET] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2438), - [anon_sym_PLUS] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_SLASH] = ACTIONS(2438), - [anon_sym_PERCENT] = ACTIONS(2438), - [anon_sym_STAR_STAR] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_LT_EQ] = ACTIONS(2438), - [anon_sym_EQ_EQ] = ACTIONS(2438), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), - [anon_sym_GT_EQ] = ACTIONS(2438), - [anon_sym_QMARK_QMARK] = ACTIONS(2438), - [anon_sym_instanceof] = ACTIONS(2438), - [anon_sym_PLUS_PLUS] = ACTIONS(2438), - [anon_sym_DASH_DASH] = ACTIONS(2438), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2438), - [anon_sym_AT] = ACTIONS(2438), - [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_property] = ACTIONS(2438), - [anon_sym_signal] = ACTIONS(2438), - [anon_sym_on] = ACTIONS(2438), - [anon_sym_required] = ACTIONS(2438), - [anon_sym_component] = ACTIONS(2438), - [anon_sym_satisfies] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - [sym__automatic_semicolon] = ACTIONS(2440), - [sym__ternary_qmark] = ACTIONS(2440), - [sym_html_comment] = ACTIONS(5), - }, - [1846] = { - [sym_statement_block] = STATE(1922), - [sym_comment] = STATE(1846), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3754), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3756), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [1847] = { - [sym_statement_block] = STATE(1922), - [sym_comment] = STATE(1847), - [sym_identifier] = ACTIONS(2297), - [anon_sym_export] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_as] = ACTIONS(2297), - [anon_sym_namespace] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(3754), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RBRACE] = ACTIONS(2297), - [anon_sym_from] = ACTIONS(2297), - [anon_sym_var] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_in] = ACTIONS(2297), - [anon_sym_of] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DOT] = ACTIONS(3758), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_function] = ACTIONS(2297), - [anon_sym_QMARK_DOT] = ACTIONS(2297), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_PIPE_PIPE] = ACTIONS(2297), - [anon_sym_GT_GT] = ACTIONS(2297), - [anon_sym_GT_GT_GT] = ACTIONS(2297), - [anon_sym_LT_LT] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_CARET] = ACTIONS(2297), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2297), - [anon_sym_SLASH] = ACTIONS(2297), - [anon_sym_PERCENT] = ACTIONS(2297), - [anon_sym_STAR_STAR] = ACTIONS(2297), - [anon_sym_LT] = ACTIONS(2297), - [anon_sym_LT_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ] = ACTIONS(2297), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ] = ACTIONS(2297), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2297), - [anon_sym_GT_EQ] = ACTIONS(2297), - [anon_sym_QMARK_QMARK] = ACTIONS(2297), - [anon_sym_instanceof] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2297), - [anon_sym_AT] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_readonly] = ACTIONS(2297), - [anon_sym_get] = ACTIONS(2297), - [anon_sym_set] = ACTIONS(2297), - [anon_sym_declare] = ACTIONS(2297), - [anon_sym_public] = ACTIONS(2297), - [anon_sym_private] = ACTIONS(2297), - [anon_sym_protected] = ACTIONS(2297), - [anon_sym_override] = ACTIONS(2297), - [anon_sym_module] = ACTIONS(2297), - [anon_sym_any] = ACTIONS(2297), - [anon_sym_number] = ACTIONS(2297), - [anon_sym_boolean] = ACTIONS(2297), - [anon_sym_string] = ACTIONS(2297), - [anon_sym_symbol] = ACTIONS(2297), - [anon_sym_object] = ACTIONS(2297), - [anon_sym_property] = ACTIONS(2297), - [anon_sym_signal] = ACTIONS(2297), - [anon_sym_on] = ACTIONS(2297), - [anon_sym_required] = ACTIONS(2297), - [anon_sym_component] = ACTIONS(2297), - [anon_sym_satisfies] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2303), - [sym_html_comment] = ACTIONS(5), - }, - [1848] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1848), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7026), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1784] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1784), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(3762), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(4109), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -232825,295 +226048,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1849] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1849), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3768), - [anon_sym_export] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3768), - [anon_sym_namespace] = ACTIONS(3768), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3778), - [anon_sym_from] = ACTIONS(3768), - [anon_sym_let] = ACTIONS(3768), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3768), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3786), - [anon_sym_new] = ACTIONS(3788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3794), - [anon_sym_readonly] = ACTIONS(3796), - [anon_sym_get] = ACTIONS(3798), - [anon_sym_set] = ACTIONS(3798), - [anon_sym_declare] = ACTIONS(3768), - [anon_sym_public] = ACTIONS(3800), - [anon_sym_private] = ACTIONS(3800), - [anon_sym_protected] = ACTIONS(3800), - [anon_sym_override] = ACTIONS(3802), - [anon_sym_module] = ACTIONS(3768), - [anon_sym_any] = ACTIONS(3768), - [anon_sym_number] = ACTIONS(3768), - [anon_sym_boolean] = ACTIONS(3768), - [anon_sym_string] = ACTIONS(3768), - [anon_sym_symbol] = ACTIONS(3768), - [anon_sym_object] = ACTIONS(3768), - [anon_sym_property] = ACTIONS(3768), - [anon_sym_signal] = ACTIONS(3768), - [anon_sym_on] = ACTIONS(3768), - [anon_sym_required] = ACTIONS(3768), - [anon_sym_component] = ACTIONS(3768), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), - [sym_html_comment] = ACTIONS(5), - }, - [1850] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1850), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3808), - [anon_sym_export] = ACTIONS(3810), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3808), - [anon_sym_namespace] = ACTIONS(3808), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3812), - [anon_sym_from] = ACTIONS(3808), - [anon_sym_let] = ACTIONS(3808), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3808), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3814), - [anon_sym_new] = ACTIONS(3816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3818), - [anon_sym_readonly] = ACTIONS(3820), - [anon_sym_get] = ACTIONS(3822), - [anon_sym_set] = ACTIONS(3822), - [anon_sym_declare] = ACTIONS(3808), - [anon_sym_public] = ACTIONS(3824), - [anon_sym_private] = ACTIONS(3824), - [anon_sym_protected] = ACTIONS(3824), - [anon_sym_override] = ACTIONS(3826), - [anon_sym_module] = ACTIONS(3808), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_property] = ACTIONS(3808), - [anon_sym_signal] = ACTIONS(3808), - [anon_sym_on] = ACTIONS(3808), - [anon_sym_required] = ACTIONS(3808), - [anon_sym_component] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), - [sym_html_comment] = ACTIONS(5), - }, - [1851] = { - [sym_comment] = STATE(1851), - [sym_identifier] = ACTIONS(2402), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_COMMA] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_from] = ACTIONS(2402), - [anon_sym_var] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_in] = ACTIONS(2404), - [anon_sym_of] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_DOT] = ACTIONS(2404), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_QMARK_DOT] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_GT_GT_GT] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_SLASH] = ACTIONS(2404), - [anon_sym_PERCENT] = ACTIONS(2404), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_LT_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2404), - [anon_sym_QMARK_QMARK] = ACTIONS(2404), - [anon_sym_instanceof] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_readonly] = ACTIONS(2402), - [anon_sym_get] = ACTIONS(2402), - [anon_sym_set] = ACTIONS(2402), - [anon_sym_declare] = ACTIONS(2402), - [anon_sym_public] = ACTIONS(2402), - [anon_sym_private] = ACTIONS(2402), - [anon_sym_protected] = ACTIONS(2402), - [anon_sym_override] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_any] = ACTIONS(2402), - [anon_sym_number] = ACTIONS(2402), - [anon_sym_boolean] = ACTIONS(2402), - [anon_sym_string] = ACTIONS(2402), - [anon_sym_symbol] = ACTIONS(2402), - [anon_sym_object] = ACTIONS(2402), - [anon_sym_property] = ACTIONS(2402), - [anon_sym_signal] = ACTIONS(2402), - [anon_sym_on] = ACTIONS(2402), - [anon_sym_required] = ACTIONS(2402), - [anon_sym_component] = ACTIONS(2402), - [anon_sym_satisfies] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2402), - [sym__automatic_semicolon] = ACTIONS(3828), - [sym__ternary_qmark] = ACTIONS(2408), - [sym_html_comment] = ACTIONS(5), - }, - [1852] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1852), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7058), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1785] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1785), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(3830), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3832), + [anon_sym_GT] = ACTIONS(4111), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -233145,1175 +226124,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1853] = { - [sym_comment] = STATE(1853), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2468), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_else] = ACTIONS(2466), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_in] = ACTIONS(2468), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_QMARK_DOT] = ACTIONS(2468), - [anon_sym_AMP_AMP] = ACTIONS(2468), - [anon_sym_PIPE_PIPE] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_GT_GT_GT] = ACTIONS(2468), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_STAR_STAR] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_LT_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2468), - [anon_sym_QMARK_QMARK] = ACTIONS(2468), - [anon_sym_instanceof] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2466), - [sym__automatic_semicolon] = ACTIONS(2470), - [sym__ternary_qmark] = ACTIONS(2470), - [sym_html_comment] = ACTIONS(5), - }, - [1854] = { - [sym_comment] = STATE(1854), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_as] = ACTIONS(2452), - [anon_sym_namespace] = ACTIONS(2450), - [anon_sym_COMMA] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_from] = ACTIONS(2450), - [anon_sym_var] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2450), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_else] = ACTIONS(2450), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_in] = ACTIONS(2452), - [anon_sym_of] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_DOT] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_function] = ACTIONS(2450), - [anon_sym_QMARK_DOT] = ACTIONS(2452), - [anon_sym_AMP_AMP] = ACTIONS(2452), - [anon_sym_PIPE_PIPE] = ACTIONS(2452), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_GT_GT_GT] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_CARET] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2452), - [anon_sym_PERCENT] = ACTIONS(2452), - [anon_sym_STAR_STAR] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_LT_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2452), - [anon_sym_GT_EQ] = ACTIONS(2452), - [anon_sym_QMARK_QMARK] = ACTIONS(2452), - [anon_sym_instanceof] = ACTIONS(2452), - [anon_sym_PLUS_PLUS] = ACTIONS(2452), - [anon_sym_DASH_DASH] = ACTIONS(2452), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2452), - [anon_sym_AT] = ACTIONS(2450), - [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_property] = ACTIONS(2450), - [anon_sym_signal] = ACTIONS(2450), - [anon_sym_on] = ACTIONS(2450), - [anon_sym_required] = ACTIONS(2450), - [anon_sym_component] = ACTIONS(2450), - [anon_sym_satisfies] = ACTIONS(2452), - [anon_sym_enum] = ACTIONS(2450), - [sym__automatic_semicolon] = ACTIONS(3834), - [sym__ternary_qmark] = ACTIONS(2456), - [sym_html_comment] = ACTIONS(5), - }, - [1855] = { - [sym_comment] = STATE(1855), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_as] = ACTIONS(2376), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_else] = ACTIONS(2374), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_in] = ACTIONS(2376), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_DOT] = ACTIONS(2376), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_QMARK_DOT] = ACTIONS(2376), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_GT_GT_GT] = ACTIONS(2376), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2376), - [anon_sym_SLASH] = ACTIONS(2376), - [anon_sym_PERCENT] = ACTIONS(2376), - [anon_sym_STAR_STAR] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_LT_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), - [anon_sym_GT_EQ] = ACTIONS(2376), - [anon_sym_QMARK_QMARK] = ACTIONS(2376), - [anon_sym_instanceof] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(2376), - [anon_sym_DASH_DASH] = ACTIONS(2376), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2376), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_satisfies] = ACTIONS(2376), - [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(3836), - [sym__ternary_qmark] = ACTIONS(2380), - [sym_html_comment] = ACTIONS(5), - }, - [1856] = { - [sym_comment] = STATE(1856), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_default] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_COMMA] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_from] = ACTIONS(2434), - [anon_sym_var] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_else] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_in] = ACTIONS(2434), - [anon_sym_of] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_GT] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_QMARK_DOT] = ACTIONS(2434), - [anon_sym_AMP_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2434), - [anon_sym_GT_GT] = ACTIONS(2434), - [anon_sym_GT_GT_GT] = ACTIONS(2434), - [anon_sym_LT_LT] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_PIPE] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2434), - [anon_sym_PERCENT] = ACTIONS(2434), - [anon_sym_STAR_STAR] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_LT_EQ] = ACTIONS(2434), - [anon_sym_EQ_EQ] = ACTIONS(2434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2434), - [anon_sym_BANG_EQ] = ACTIONS(2434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2434), - [anon_sym_GT_EQ] = ACTIONS(2434), - [anon_sym_QMARK_QMARK] = ACTIONS(2434), - [anon_sym_instanceof] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_DASH_DASH] = ACTIONS(2434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2434), - [anon_sym_AT] = ACTIONS(2434), - [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_property] = ACTIONS(2434), - [anon_sym_signal] = ACTIONS(2434), - [anon_sym_on] = ACTIONS(2434), - [anon_sym_required] = ACTIONS(2434), - [anon_sym_component] = ACTIONS(2434), - [anon_sym_satisfies] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - [sym__automatic_semicolon] = ACTIONS(2436), - [sym__ternary_qmark] = ACTIONS(2436), - [sym_html_comment] = ACTIONS(5), - }, - [1857] = { - [sym_comment] = STATE(1857), - [sym_identifier] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2342), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_as] = ACTIONS(2344), - [anon_sym_namespace] = ACTIONS(2342), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_from] = ACTIONS(2342), - [anon_sym_var] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2344), - [anon_sym_else] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2344), - [anon_sym_GT] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2344), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_QMARK_DOT] = ACTIONS(2344), - [anon_sym_AMP_AMP] = ACTIONS(2344), - [anon_sym_PIPE_PIPE] = ACTIONS(2344), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2344), - [anon_sym_LT_LT] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2344), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2344), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2344), - [anon_sym_GT_EQ] = ACTIONS(2344), - [anon_sym_QMARK_QMARK] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2344), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_readonly] = ACTIONS(2342), - [anon_sym_get] = ACTIONS(2342), - [anon_sym_set] = ACTIONS(2342), - [anon_sym_declare] = ACTIONS(2342), - [anon_sym_public] = ACTIONS(2342), - [anon_sym_private] = ACTIONS(2342), - [anon_sym_protected] = ACTIONS(2342), - [anon_sym_override] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_any] = ACTIONS(2342), - [anon_sym_number] = ACTIONS(2342), - [anon_sym_boolean] = ACTIONS(2342), - [anon_sym_string] = ACTIONS(2342), - [anon_sym_symbol] = ACTIONS(2342), - [anon_sym_object] = ACTIONS(2342), - [anon_sym_property] = ACTIONS(2342), - [anon_sym_signal] = ACTIONS(2342), - [anon_sym_on] = ACTIONS(2342), - [anon_sym_required] = ACTIONS(2342), - [anon_sym_component] = ACTIONS(2342), - [anon_sym_satisfies] = ACTIONS(2344), - [anon_sym_enum] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(3838), - [sym__ternary_qmark] = ACTIONS(2348), - [sym_html_comment] = ACTIONS(5), - }, - [1858] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1858), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3840), - [anon_sym_export] = ACTIONS(3842), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3840), - [anon_sym_namespace] = ACTIONS(3840), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3840), - [anon_sym_let] = ACTIONS(3840), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3840), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3846), - [anon_sym_new] = ACTIONS(3848), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3850), - [anon_sym_readonly] = ACTIONS(3852), - [anon_sym_get] = ACTIONS(3854), - [anon_sym_set] = ACTIONS(3854), - [anon_sym_declare] = ACTIONS(3840), - [anon_sym_public] = ACTIONS(3856), - [anon_sym_private] = ACTIONS(3856), - [anon_sym_protected] = ACTIONS(3856), - [anon_sym_override] = ACTIONS(3858), - [anon_sym_module] = ACTIONS(3840), - [anon_sym_any] = ACTIONS(3840), - [anon_sym_number] = ACTIONS(3840), - [anon_sym_boolean] = ACTIONS(3840), - [anon_sym_string] = ACTIONS(3840), - [anon_sym_symbol] = ACTIONS(3840), - [anon_sym_object] = ACTIONS(3840), - [anon_sym_property] = ACTIONS(3840), - [anon_sym_signal] = ACTIONS(3840), - [anon_sym_on] = ACTIONS(3840), - [anon_sym_required] = ACTIONS(3840), - [anon_sym_component] = ACTIONS(3840), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), - [sym_html_comment] = ACTIONS(5), - }, - [1859] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1859), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3768), - [anon_sym_export] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3768), - [anon_sym_namespace] = ACTIONS(3768), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3844), - [anon_sym_from] = ACTIONS(3768), - [anon_sym_let] = ACTIONS(3768), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3768), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3786), - [anon_sym_new] = ACTIONS(3788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3794), - [anon_sym_readonly] = ACTIONS(3796), - [anon_sym_get] = ACTIONS(3798), - [anon_sym_set] = ACTIONS(3798), - [anon_sym_declare] = ACTIONS(3768), - [anon_sym_public] = ACTIONS(3800), - [anon_sym_private] = ACTIONS(3800), - [anon_sym_protected] = ACTIONS(3800), - [anon_sym_override] = ACTIONS(3802), - [anon_sym_module] = ACTIONS(3768), - [anon_sym_any] = ACTIONS(3768), - [anon_sym_number] = ACTIONS(3768), - [anon_sym_boolean] = ACTIONS(3768), - [anon_sym_string] = ACTIONS(3768), - [anon_sym_symbol] = ACTIONS(3768), - [anon_sym_object] = ACTIONS(3768), - [anon_sym_property] = ACTIONS(3768), - [anon_sym_signal] = ACTIONS(3768), - [anon_sym_on] = ACTIONS(3768), - [anon_sym_required] = ACTIONS(3768), - [anon_sym_component] = ACTIONS(3768), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), - [sym_html_comment] = ACTIONS(5), - }, - [1860] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1860), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3860), - [anon_sym_export] = ACTIONS(3862), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3860), - [anon_sym_namespace] = ACTIONS(3860), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3864), - [anon_sym_from] = ACTIONS(3860), - [anon_sym_let] = ACTIONS(3860), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3860), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3866), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3870), - [anon_sym_readonly] = ACTIONS(3872), - [anon_sym_get] = ACTIONS(3874), - [anon_sym_set] = ACTIONS(3874), - [anon_sym_declare] = ACTIONS(3860), - [anon_sym_public] = ACTIONS(3876), - [anon_sym_private] = ACTIONS(3876), - [anon_sym_protected] = ACTIONS(3876), - [anon_sym_override] = ACTIONS(3878), - [anon_sym_module] = ACTIONS(3860), - [anon_sym_any] = ACTIONS(3860), - [anon_sym_number] = ACTIONS(3860), - [anon_sym_boolean] = ACTIONS(3860), - [anon_sym_string] = ACTIONS(3860), - [anon_sym_symbol] = ACTIONS(3860), - [anon_sym_object] = ACTIONS(3860), - [anon_sym_property] = ACTIONS(3860), - [anon_sym_signal] = ACTIONS(3860), - [anon_sym_on] = ACTIONS(3860), - [anon_sym_required] = ACTIONS(3860), - [anon_sym_component] = ACTIONS(3860), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), - [sym_html_comment] = ACTIONS(5), - }, - [1861] = { - [sym_comment] = STATE(1861), - [sym_identifier] = ACTIONS(2410), - [anon_sym_export] = ACTIONS(2410), - [anon_sym_STAR] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_as] = ACTIONS(2410), - [anon_sym_namespace] = ACTIONS(2410), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_COMMA] = ACTIONS(2410), - [anon_sym_RBRACE] = ACTIONS(2410), - [anon_sym_from] = ACTIONS(2410), - [anon_sym_var] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_BANG] = ACTIONS(2410), - [anon_sym_LPAREN] = ACTIONS(2410), - [anon_sym_in] = ACTIONS(2410), - [anon_sym_of] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2410), - [anon_sym_LBRACK] = ACTIONS(2410), - [anon_sym_GT] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_function] = ACTIONS(2410), - [anon_sym_QMARK_DOT] = ACTIONS(2410), - [anon_sym_AMP_AMP] = ACTIONS(2410), - [anon_sym_PIPE_PIPE] = ACTIONS(2410), - [anon_sym_GT_GT] = ACTIONS(2410), - [anon_sym_GT_GT_GT] = ACTIONS(2410), - [anon_sym_LT_LT] = ACTIONS(2410), - [anon_sym_AMP] = ACTIONS(2410), - [anon_sym_CARET] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2410), - [anon_sym_PLUS] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2410), - [anon_sym_SLASH] = ACTIONS(2410), - [anon_sym_PERCENT] = ACTIONS(2410), - [anon_sym_STAR_STAR] = ACTIONS(2410), - [anon_sym_LT] = ACTIONS(2410), - [anon_sym_LT_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ] = ACTIONS(2410), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ] = ACTIONS(2410), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2410), - [anon_sym_GT_EQ] = ACTIONS(2410), - [anon_sym_QMARK_QMARK] = ACTIONS(2410), - [anon_sym_instanceof] = ACTIONS(2410), - [anon_sym_PLUS_PLUS] = ACTIONS(2410), - [anon_sym_DASH_DASH] = ACTIONS(2410), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2410), - [anon_sym_AT] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_readonly] = ACTIONS(2410), - [anon_sym_get] = ACTIONS(2410), - [anon_sym_set] = ACTIONS(2410), - [anon_sym_declare] = ACTIONS(2410), - [anon_sym_public] = ACTIONS(2410), - [anon_sym_private] = ACTIONS(2410), - [anon_sym_protected] = ACTIONS(2410), - [anon_sym_override] = ACTIONS(2410), - [anon_sym_module] = ACTIONS(2410), - [anon_sym_any] = ACTIONS(2410), - [anon_sym_number] = ACTIONS(2410), - [anon_sym_boolean] = ACTIONS(2410), - [anon_sym_string] = ACTIONS(2410), - [anon_sym_symbol] = ACTIONS(2410), - [anon_sym_object] = ACTIONS(2410), - [anon_sym_property] = ACTIONS(2410), - [anon_sym_signal] = ACTIONS(2410), - [anon_sym_on] = ACTIONS(2410), - [anon_sym_required] = ACTIONS(2410), - [anon_sym_component] = ACTIONS(2410), - [anon_sym_satisfies] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [sym__automatic_semicolon] = ACTIONS(2412), - [sym__ternary_qmark] = ACTIONS(2412), - [sym_html_comment] = ACTIONS(5), - }, - [1862] = { - [sym_comment] = STATE(1862), - [sym_identifier] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_default] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_as] = ACTIONS(2338), - [anon_sym_namespace] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_from] = ACTIONS(2338), - [anon_sym_var] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_else] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2338), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_QMARK_DOT] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2338), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_instanceof] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_readonly] = ACTIONS(2338), - [anon_sym_get] = ACTIONS(2338), - [anon_sym_set] = ACTIONS(2338), - [anon_sym_declare] = ACTIONS(2338), - [anon_sym_public] = ACTIONS(2338), - [anon_sym_private] = ACTIONS(2338), - [anon_sym_protected] = ACTIONS(2338), - [anon_sym_override] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_any] = ACTIONS(2338), - [anon_sym_number] = ACTIONS(2338), - [anon_sym_boolean] = ACTIONS(2338), - [anon_sym_string] = ACTIONS(2338), - [anon_sym_symbol] = ACTIONS(2338), - [anon_sym_object] = ACTIONS(2338), - [anon_sym_property] = ACTIONS(2338), - [anon_sym_signal] = ACTIONS(2338), - [anon_sym_on] = ACTIONS(2338), - [anon_sym_required] = ACTIONS(2338), - [anon_sym_component] = ACTIONS(2338), - [anon_sym_satisfies] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), - [sym__automatic_semicolon] = ACTIONS(2340), - [sym__ternary_qmark] = ACTIONS(2340), - [sym_html_comment] = ACTIONS(5), - }, - [1863] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(7033), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1863), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(7033), - [sym_pair] = STATE(7033), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(7039), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3880), - [anon_sym_export] = ACTIONS(3882), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3880), - [anon_sym_namespace] = ACTIONS(3880), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3884), - [anon_sym_from] = ACTIONS(3880), - [anon_sym_let] = ACTIONS(3880), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3880), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3886), - [anon_sym_new] = ACTIONS(3888), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3890), - [anon_sym_readonly] = ACTIONS(3892), - [anon_sym_get] = ACTIONS(3894), - [anon_sym_set] = ACTIONS(3894), - [anon_sym_declare] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3896), - [anon_sym_private] = ACTIONS(3896), - [anon_sym_protected] = ACTIONS(3896), - [anon_sym_override] = ACTIONS(3898), - [anon_sym_module] = ACTIONS(3880), - [anon_sym_any] = ACTIONS(3880), - [anon_sym_number] = ACTIONS(3880), - [anon_sym_boolean] = ACTIONS(3880), - [anon_sym_string] = ACTIONS(3880), - [anon_sym_symbol] = ACTIONS(3880), - [anon_sym_object] = ACTIONS(3880), - [anon_sym_property] = ACTIONS(3880), - [anon_sym_signal] = ACTIONS(3880), - [anon_sym_on] = ACTIONS(3880), - [anon_sym_required] = ACTIONS(3880), - [anon_sym_component] = ACTIONS(3880), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), - [sym_html_comment] = ACTIONS(5), - }, - [1864] = { - [sym_comment] = STATE(1864), - [sym_identifier] = ACTIONS(2370), - [anon_sym_export] = ACTIONS(2370), - [anon_sym_STAR] = ACTIONS(2370), - [anon_sym_default] = ACTIONS(2370), - [anon_sym_type] = ACTIONS(2370), - [anon_sym_as] = ACTIONS(2370), - [anon_sym_namespace] = ACTIONS(2370), - [anon_sym_LBRACE] = ACTIONS(2370), - [anon_sym_COMMA] = ACTIONS(2370), - [anon_sym_RBRACE] = ACTIONS(2370), - [anon_sym_from] = ACTIONS(2370), - [anon_sym_var] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2370), - [anon_sym_in] = ACTIONS(2370), - [anon_sym_of] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2370), - [anon_sym_GT] = ACTIONS(2370), - [anon_sym_DOT] = ACTIONS(2370), - [anon_sym_async] = ACTIONS(2370), - [anon_sym_function] = ACTIONS(2370), - [anon_sym_QMARK_DOT] = ACTIONS(2370), - [anon_sym_AMP_AMP] = ACTIONS(2370), - [anon_sym_PIPE_PIPE] = ACTIONS(2370), - [anon_sym_GT_GT] = ACTIONS(2370), - [anon_sym_GT_GT_GT] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(2370), - [anon_sym_AMP] = ACTIONS(2370), - [anon_sym_CARET] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_SLASH] = ACTIONS(2370), - [anon_sym_PERCENT] = ACTIONS(2370), - [anon_sym_STAR_STAR] = ACTIONS(2370), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_LT_EQ] = ACTIONS(2370), - [anon_sym_EQ_EQ] = ACTIONS(2370), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ] = ACTIONS(2370), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2370), - [anon_sym_QMARK_QMARK] = ACTIONS(2370), - [anon_sym_instanceof] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2370), - [anon_sym_DASH_DASH] = ACTIONS(2370), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_readonly] = ACTIONS(2370), - [anon_sym_get] = ACTIONS(2370), - [anon_sym_set] = ACTIONS(2370), - [anon_sym_declare] = ACTIONS(2370), - [anon_sym_public] = ACTIONS(2370), - [anon_sym_private] = ACTIONS(2370), - [anon_sym_protected] = ACTIONS(2370), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_module] = ACTIONS(2370), - [anon_sym_any] = ACTIONS(2370), - [anon_sym_number] = ACTIONS(2370), - [anon_sym_boolean] = ACTIONS(2370), - [anon_sym_string] = ACTIONS(2370), - [anon_sym_symbol] = ACTIONS(2370), - [anon_sym_object] = ACTIONS(2370), - [anon_sym_property] = ACTIONS(2370), - [anon_sym_signal] = ACTIONS(2370), - [anon_sym_on] = ACTIONS(2370), - [anon_sym_required] = ACTIONS(2370), - [anon_sym_component] = ACTIONS(2370), - [anon_sym_satisfies] = ACTIONS(2370), - [anon_sym_enum] = ACTIONS(2370), - [sym__automatic_semicolon] = ACTIONS(2372), - [sym__ternary_qmark] = ACTIONS(2372), - [sym_html_comment] = ACTIONS(5), - }, - [1865] = { - [sym_comment] = STATE(1865), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_else] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_GT] = ACTIONS(2328), - [anon_sym_DOT] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_QMARK_DOT] = ACTIONS(2328), - [anon_sym_AMP_AMP] = ACTIONS(2328), - [anon_sym_PIPE_PIPE] = ACTIONS(2328), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2328), - [anon_sym_LT_LT] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2328), - [anon_sym_STAR_STAR] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), - [anon_sym_GT_EQ] = ACTIONS(2328), - [anon_sym_QMARK_QMARK] = ACTIONS(2328), - [anon_sym_instanceof] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_satisfies] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym__ternary_qmark] = ACTIONS(2330), - [sym_html_comment] = ACTIONS(5), - }, - [1866] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1866), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3860), - [anon_sym_export] = ACTIONS(3862), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3860), - [anon_sym_namespace] = ACTIONS(3860), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3900), - [anon_sym_from] = ACTIONS(3860), - [anon_sym_let] = ACTIONS(3860), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3860), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3866), - [anon_sym_new] = ACTIONS(3868), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), + [1786] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1786), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(4113), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3870), - [anon_sym_readonly] = ACTIONS(3872), - [anon_sym_get] = ACTIONS(3874), - [anon_sym_set] = ACTIONS(3874), - [anon_sym_declare] = ACTIONS(3860), - [anon_sym_public] = ACTIONS(3876), - [anon_sym_private] = ACTIONS(3876), - [anon_sym_protected] = ACTIONS(3876), - [anon_sym_override] = ACTIONS(3878), - [anon_sym_module] = ACTIONS(3860), - [anon_sym_any] = ACTIONS(3860), - [anon_sym_number] = ACTIONS(3860), - [anon_sym_boolean] = ACTIONS(3860), - [anon_sym_string] = ACTIONS(3860), - [anon_sym_symbol] = ACTIONS(3860), - [anon_sym_object] = ACTIONS(3860), - [anon_sym_property] = ACTIONS(3860), - [anon_sym_signal] = ACTIONS(3860), - [anon_sym_on] = ACTIONS(3860), - [anon_sym_required] = ACTIONS(3860), - [anon_sym_component] = ACTIONS(3860), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1867] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1867), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(6728), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1787] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1787), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(3902), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3904), + [anon_sym_GT] = ACTIONS(4115), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -234345,935 +226276,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1868] = { - [sym_comment] = STATE(1868), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2438), - [anon_sym_STAR] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_as] = ACTIONS(2438), - [anon_sym_namespace] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_COMMA] = ACTIONS(2438), - [anon_sym_RBRACE] = ACTIONS(2438), - [anon_sym_from] = ACTIONS(2438), - [anon_sym_var] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_BANG] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2438), - [anon_sym_in] = ACTIONS(2438), - [anon_sym_of] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_GT] = ACTIONS(2438), - [anon_sym_DOT] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_function] = ACTIONS(2438), - [anon_sym_QMARK_DOT] = ACTIONS(2438), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE_PIPE] = ACTIONS(2438), - [anon_sym_GT_GT] = ACTIONS(2438), - [anon_sym_GT_GT_GT] = ACTIONS(2438), - [anon_sym_LT_LT] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2438), - [anon_sym_CARET] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2438), - [anon_sym_PLUS] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2438), - [anon_sym_SLASH] = ACTIONS(2438), - [anon_sym_PERCENT] = ACTIONS(2438), - [anon_sym_STAR_STAR] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_LT_EQ] = ACTIONS(2438), - [anon_sym_EQ_EQ] = ACTIONS(2438), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ] = ACTIONS(2438), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2438), - [anon_sym_GT_EQ] = ACTIONS(2438), - [anon_sym_QMARK_QMARK] = ACTIONS(2438), - [anon_sym_instanceof] = ACTIONS(2438), - [anon_sym_PLUS_PLUS] = ACTIONS(2438), - [anon_sym_DASH_DASH] = ACTIONS(2438), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2438), - [anon_sym_AT] = ACTIONS(2438), - [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_property] = ACTIONS(2438), - [anon_sym_signal] = ACTIONS(2438), - [anon_sym_on] = ACTIONS(2438), - [anon_sym_required] = ACTIONS(2438), - [anon_sym_component] = ACTIONS(2438), - [anon_sym_satisfies] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - [sym__automatic_semicolon] = ACTIONS(2440), - [sym__ternary_qmark] = ACTIONS(2440), - [sym_html_comment] = ACTIONS(5), - }, - [1869] = { - [sym_comment] = STATE(1869), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_default] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_as] = ACTIONS(2474), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_COMMA] = ACTIONS(2474), - [anon_sym_RBRACE] = ACTIONS(2474), - [anon_sym_from] = ACTIONS(2474), - [anon_sym_var] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_in] = ACTIONS(2474), - [anon_sym_of] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(2474), - [anon_sym_DOT] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_QMARK_DOT] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_GT_GT] = ACTIONS(2474), - [anon_sym_GT_GT_GT] = ACTIONS(2474), - [anon_sym_LT_LT] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - [anon_sym_CARET] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_PERCENT] = ACTIONS(2474), - [anon_sym_STAR_STAR] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_LT_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ] = ACTIONS(2474), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ] = ACTIONS(2474), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2474), - [anon_sym_GT_EQ] = ACTIONS(2474), - [anon_sym_QMARK_QMARK] = ACTIONS(2474), - [anon_sym_instanceof] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2474), - [anon_sym_AT] = ACTIONS(2474), - [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_property] = ACTIONS(2474), - [anon_sym_signal] = ACTIONS(2474), - [anon_sym_on] = ACTIONS(2474), - [anon_sym_required] = ACTIONS(2474), - [anon_sym_component] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(2476), - [sym_html_comment] = ACTIONS(5), - }, - [1870] = { - [sym_comment] = STATE(1870), - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2354), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_as] = ACTIONS(2356), - [anon_sym_namespace] = ACTIONS(2354), - [anon_sym_COMMA] = ACTIONS(2356), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2356), - [anon_sym_else] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2356), - [anon_sym_in] = ACTIONS(2356), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2356), - [anon_sym_LBRACK] = ACTIONS(2356), - [anon_sym_GT] = ACTIONS(2356), - [anon_sym_DOT] = ACTIONS(2356), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_QMARK_DOT] = ACTIONS(2356), - [anon_sym_AMP_AMP] = ACTIONS(2356), - [anon_sym_PIPE_PIPE] = ACTIONS(2356), - [anon_sym_GT_GT] = ACTIONS(2356), - [anon_sym_GT_GT_GT] = ACTIONS(2356), - [anon_sym_LT_LT] = ACTIONS(2356), - [anon_sym_AMP] = ACTIONS(2356), - [anon_sym_CARET] = ACTIONS(2356), - [anon_sym_PIPE] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2356), - [anon_sym_SLASH] = ACTIONS(2356), - [anon_sym_PERCENT] = ACTIONS(2356), - [anon_sym_STAR_STAR] = ACTIONS(2356), - [anon_sym_LT] = ACTIONS(2356), - [anon_sym_LT_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), - [anon_sym_GT_EQ] = ACTIONS(2356), - [anon_sym_QMARK_QMARK] = ACTIONS(2356), - [anon_sym_instanceof] = ACTIONS(2356), - [anon_sym_PLUS_PLUS] = ACTIONS(2356), - [anon_sym_DASH_DASH] = ACTIONS(2356), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2356), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_object] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_satisfies] = ACTIONS(2356), - [anon_sym_enum] = ACTIONS(2354), - [sym__automatic_semicolon] = ACTIONS(3906), - [sym__ternary_qmark] = ACTIONS(2360), - [sym_html_comment] = ACTIONS(5), - }, - [1871] = { - [sym_export_statement] = STATE(5710), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1871), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5710), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5710), - [sym_property_signature] = STATE(5710), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5710), - [sym_index_signature] = STATE(5710), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3768), - [anon_sym_export] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3768), - [anon_sym_namespace] = ACTIONS(3768), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3908), - [anon_sym_RBRACE] = ACTIONS(3910), - [anon_sym_from] = ACTIONS(3768), - [anon_sym_let] = ACTIONS(3768), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3768), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3786), - [anon_sym_new] = ACTIONS(3788), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3794), - [anon_sym_readonly] = ACTIONS(3796), - [anon_sym_get] = ACTIONS(3798), - [anon_sym_set] = ACTIONS(3798), - [anon_sym_declare] = ACTIONS(3768), - [anon_sym_public] = ACTIONS(3800), - [anon_sym_private] = ACTIONS(3800), - [anon_sym_protected] = ACTIONS(3800), - [anon_sym_override] = ACTIONS(3802), - [anon_sym_module] = ACTIONS(3768), - [anon_sym_any] = ACTIONS(3768), - [anon_sym_number] = ACTIONS(3768), - [anon_sym_boolean] = ACTIONS(3768), - [anon_sym_string] = ACTIONS(3768), - [anon_sym_symbol] = ACTIONS(3768), - [anon_sym_object] = ACTIONS(3768), - [anon_sym_property] = ACTIONS(3768), - [anon_sym_signal] = ACTIONS(3768), - [anon_sym_on] = ACTIONS(3768), - [anon_sym_required] = ACTIONS(3768), - [anon_sym_component] = ACTIONS(3768), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3914), - [sym_html_comment] = ACTIONS(5), - }, - [1872] = { - [sym_comment] = STATE(1872), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_as] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_else] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_QMARK_DOT] = ACTIONS(2350), - [anon_sym_AMP_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2350), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), - [anon_sym_GT_EQ] = ACTIONS(2350), - [anon_sym_QMARK_QMARK] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_satisfies] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2352), - [sym__ternary_qmark] = ACTIONS(2352), - [sym_html_comment] = ACTIONS(5), - }, - [1873] = { - [sym_comment] = STATE(1873), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2336), - [sym__ternary_qmark] = ACTIONS(2336), - [sym_html_comment] = ACTIONS(5), - }, - [1874] = { - [sym_comment] = STATE(1874), - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_as] = ACTIONS(2396), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_else] = ACTIONS(2394), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_in] = ACTIONS(2396), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_GT] = ACTIONS(2396), - [anon_sym_DOT] = ACTIONS(2396), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_QMARK_DOT] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_GT_GT_GT] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2396), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_SLASH] = ACTIONS(2396), - [anon_sym_PERCENT] = ACTIONS(2396), - [anon_sym_STAR_STAR] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2396), - [anon_sym_LT_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2396), - [anon_sym_QMARK_QMARK] = ACTIONS(2396), - [anon_sym_instanceof] = ACTIONS(2396), - [anon_sym_PLUS_PLUS] = ACTIONS(2396), - [anon_sym_DASH_DASH] = ACTIONS(2396), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_satisfies] = ACTIONS(2396), - [anon_sym_enum] = ACTIONS(2394), - [sym__automatic_semicolon] = ACTIONS(3916), - [sym__ternary_qmark] = ACTIONS(2400), - [sym_html_comment] = ACTIONS(5), - }, - [1875] = { - [sym_comment] = STATE(1875), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_default] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2364), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2364), - [anon_sym_else] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2364), - [anon_sym_in] = ACTIONS(2364), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_LBRACK] = ACTIONS(2364), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_DOT] = ACTIONS(2364), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_QMARK_DOT] = ACTIONS(2364), - [anon_sym_AMP_AMP] = ACTIONS(2364), - [anon_sym_PIPE_PIPE] = ACTIONS(2364), - [anon_sym_GT_GT] = ACTIONS(2364), - [anon_sym_GT_GT_GT] = ACTIONS(2364), - [anon_sym_LT_LT] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_CARET] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2364), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_SLASH] = ACTIONS(2364), - [anon_sym_PERCENT] = ACTIONS(2364), - [anon_sym_STAR_STAR] = ACTIONS(2364), - [anon_sym_LT] = ACTIONS(2364), - [anon_sym_LT_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2364), - [anon_sym_GT_EQ] = ACTIONS(2364), - [anon_sym_QMARK_QMARK] = ACTIONS(2364), - [anon_sym_instanceof] = ACTIONS(2364), - [anon_sym_PLUS_PLUS] = ACTIONS(2364), - [anon_sym_DASH_DASH] = ACTIONS(2364), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2364), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(2364), - [anon_sym_enum] = ACTIONS(2362), - [sym__automatic_semicolon] = ACTIONS(3918), - [sym__ternary_qmark] = ACTIONS(2368), - [sym_html_comment] = ACTIONS(5), - }, - [1876] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1876), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3808), - [anon_sym_export] = ACTIONS(3810), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3808), - [anon_sym_namespace] = ACTIONS(3808), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3864), - [anon_sym_from] = ACTIONS(3808), - [anon_sym_let] = ACTIONS(3808), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3808), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3814), - [anon_sym_new] = ACTIONS(3816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3818), - [anon_sym_readonly] = ACTIONS(3820), - [anon_sym_get] = ACTIONS(3822), - [anon_sym_set] = ACTIONS(3822), - [anon_sym_declare] = ACTIONS(3808), - [anon_sym_public] = ACTIONS(3824), - [anon_sym_private] = ACTIONS(3824), - [anon_sym_protected] = ACTIONS(3824), - [anon_sym_override] = ACTIONS(3826), - [anon_sym_module] = ACTIONS(3808), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_property] = ACTIONS(3808), - [anon_sym_signal] = ACTIONS(3808), - [anon_sym_on] = ACTIONS(3808), - [anon_sym_required] = ACTIONS(3808), - [anon_sym_component] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), - [sym_html_comment] = ACTIONS(5), - }, - [1877] = { - [sym_comment] = STATE(1877), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_as] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_COMMA] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_else] = ACTIONS(2382), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_in] = ACTIONS(2384), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_QMARK_DOT] = ACTIONS(2384), - [anon_sym_AMP_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_GT_GT_GT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_STAR_STAR] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2384), - [anon_sym_QMARK_QMARK] = ACTIONS(2384), - [anon_sym_instanceof] = ACTIONS(2384), - [anon_sym_PLUS_PLUS] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2384), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2384), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_satisfies] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2382), - [sym__automatic_semicolon] = ACTIONS(3920), - [sym__ternary_qmark] = ACTIONS(2388), - [sym_html_comment] = ACTIONS(5), - }, - [1878] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(7033), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1878), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(7033), - [sym_pair] = STATE(7033), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(7039), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3880), - [anon_sym_export] = ACTIONS(3882), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3880), - [anon_sym_namespace] = ACTIONS(3880), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3922), - [anon_sym_from] = ACTIONS(3880), - [anon_sym_let] = ACTIONS(3880), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3880), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3886), - [anon_sym_new] = ACTIONS(3888), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3890), - [anon_sym_readonly] = ACTIONS(3892), - [anon_sym_get] = ACTIONS(3894), - [anon_sym_set] = ACTIONS(3894), - [anon_sym_declare] = ACTIONS(3880), - [anon_sym_public] = ACTIONS(3896), - [anon_sym_private] = ACTIONS(3896), - [anon_sym_protected] = ACTIONS(3896), - [anon_sym_override] = ACTIONS(3898), - [anon_sym_module] = ACTIONS(3880), - [anon_sym_any] = ACTIONS(3880), - [anon_sym_number] = ACTIONS(3880), - [anon_sym_boolean] = ACTIONS(3880), - [anon_sym_string] = ACTIONS(3880), - [anon_sym_symbol] = ACTIONS(3880), - [anon_sym_object] = ACTIONS(3880), - [anon_sym_property] = ACTIONS(3880), - [anon_sym_signal] = ACTIONS(3880), - [anon_sym_on] = ACTIONS(3880), - [anon_sym_required] = ACTIONS(3880), - [anon_sym_component] = ACTIONS(3880), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), - [sym_html_comment] = ACTIONS(5), - }, - [1879] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1879), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7014), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1788] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1788), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(3924), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3926), + [anon_sym_GT] = ACTIONS(4117), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -235305,375 +226352,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1880] = { - [sym_comment] = STATE(1880), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_as] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_else] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_GT] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_QMARK_DOT] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2442), - [anon_sym_LT_LT] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), - [anon_sym_GT_EQ] = ACTIONS(2442), - [anon_sym_QMARK_QMARK] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_satisfies] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2444), - [sym_html_comment] = ACTIONS(5), - }, - [1881] = { - [sym_comment] = STATE(1881), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_as] = ACTIONS(2460), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_from] = ACTIONS(2458), - [anon_sym_var] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2460), - [anon_sym_else] = ACTIONS(2458), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_in] = ACTIONS(2460), - [anon_sym_of] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2460), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_DOT] = ACTIONS(2460), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_QMARK_DOT] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_GT_GT_GT] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_SLASH] = ACTIONS(2460), - [anon_sym_PERCENT] = ACTIONS(2460), - [anon_sym_STAR_STAR] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_LT_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2460), - [anon_sym_GT_EQ] = ACTIONS(2460), - [anon_sym_QMARK_QMARK] = ACTIONS(2460), - [anon_sym_instanceof] = ACTIONS(2460), - [anon_sym_PLUS_PLUS] = ACTIONS(2460), - [anon_sym_DASH_DASH] = ACTIONS(2460), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2460), - [anon_sym_AT] = ACTIONS(2458), - [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_property] = ACTIONS(2458), - [anon_sym_signal] = ACTIONS(2458), - [anon_sym_on] = ACTIONS(2458), - [anon_sym_required] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_satisfies] = ACTIONS(2460), - [anon_sym_enum] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(3928), - [sym__ternary_qmark] = ACTIONS(2464), - [sym_html_comment] = ACTIONS(5), - }, - [1882] = { - [sym_comment] = STATE(1882), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2480), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_in] = ACTIONS(2480), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2480), - [anon_sym_GT] = ACTIONS(2480), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_QMARK_DOT] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2480), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_SLASH] = ACTIONS(2480), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2480), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_instanceof] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_object] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_satisfies] = ACTIONS(2480), - [anon_sym_enum] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(3930), - [sym__ternary_qmark] = ACTIONS(2484), - [sym_html_comment] = ACTIONS(5), - }, - [1883] = { - [sym_comment] = STATE(1883), - [sym_identifier] = ACTIONS(2426), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_as] = ACTIONS(2428), - [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_from] = ACTIONS(2426), - [anon_sym_var] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2428), - [anon_sym_else] = ACTIONS(2426), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_in] = ACTIONS(2428), - [anon_sym_of] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2428), - [anon_sym_GT] = ACTIONS(2428), - [anon_sym_DOT] = ACTIONS(2428), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2426), - [anon_sym_QMARK_DOT] = ACTIONS(2428), - [anon_sym_AMP_AMP] = ACTIONS(2428), - [anon_sym_PIPE_PIPE] = ACTIONS(2428), - [anon_sym_GT_GT] = ACTIONS(2428), - [anon_sym_GT_GT_GT] = ACTIONS(2428), - [anon_sym_LT_LT] = ACTIONS(2428), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_CARET] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2428), - [anon_sym_PERCENT] = ACTIONS(2428), - [anon_sym_STAR_STAR] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2428), - [anon_sym_LT_EQ] = ACTIONS(2428), - [anon_sym_EQ_EQ] = ACTIONS(2428), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2428), - [anon_sym_BANG_EQ] = ACTIONS(2428), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2428), - [anon_sym_GT_EQ] = ACTIONS(2428), - [anon_sym_QMARK_QMARK] = ACTIONS(2428), - [anon_sym_instanceof] = ACTIONS(2428), - [anon_sym_PLUS_PLUS] = ACTIONS(2428), - [anon_sym_DASH_DASH] = ACTIONS(2428), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2428), - [anon_sym_AT] = ACTIONS(2426), - [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_property] = ACTIONS(2426), - [anon_sym_signal] = ACTIONS(2426), - [anon_sym_on] = ACTIONS(2426), - [anon_sym_required] = ACTIONS(2426), - [anon_sym_component] = ACTIONS(2426), - [anon_sym_satisfies] = ACTIONS(2428), - [anon_sym_enum] = ACTIONS(2426), - [sym__automatic_semicolon] = ACTIONS(3932), - [sym__ternary_qmark] = ACTIONS(2432), - [sym_html_comment] = ACTIONS(5), - }, - [1884] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1884), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7121), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1789] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1789), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_COMMA] = ACTIONS(3934), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3936), + [anon_sym_GT] = ACTIONS(4119), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -235705,851 +226428,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1885] = { - [sym_comment] = STATE(1885), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_EQ] = ACTIONS(2291), - [anon_sym_as] = ACTIONS(2289), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2289), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(2289), - [anon_sym_in] = ACTIONS(2289), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2289), - [anon_sym_LBRACK] = ACTIONS(2289), - [anon_sym_GT] = ACTIONS(2289), - [anon_sym_DOT] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2289), - [anon_sym_AMP_AMP] = ACTIONS(2289), - [anon_sym_PIPE_PIPE] = ACTIONS(2289), - [anon_sym_GT_GT] = ACTIONS(2289), - [anon_sym_GT_GT_GT] = ACTIONS(2289), - [anon_sym_LT_LT] = ACTIONS(2289), - [anon_sym_AMP] = ACTIONS(2289), - [anon_sym_CARET] = ACTIONS(2289), - [anon_sym_PIPE] = ACTIONS(2289), - [anon_sym_PLUS] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2289), - [anon_sym_SLASH] = ACTIONS(2289), - [anon_sym_PERCENT] = ACTIONS(2289), - [anon_sym_STAR_STAR] = ACTIONS(2289), - [anon_sym_LT] = ACTIONS(2289), - [anon_sym_LT_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ] = ACTIONS(2289), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ] = ACTIONS(2289), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2289), - [anon_sym_GT_EQ] = ACTIONS(2289), - [anon_sym_QMARK_QMARK] = ACTIONS(2289), - [anon_sym_instanceof] = ACTIONS(2289), - [anon_sym_PLUS_PLUS] = ACTIONS(2289), - [anon_sym_DASH_DASH] = ACTIONS(2289), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2289), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3938), - [sym__ternary_qmark] = ACTIONS(2295), - [sym_html_comment] = ACTIONS(5), - }, - [1886] = { - [sym_comment] = STATE(1886), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_else] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3940), - [sym__ternary_qmark] = ACTIONS(2336), - [sym_html_comment] = ACTIONS(5), - }, - [1887] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1887), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3808), - [anon_sym_export] = ACTIONS(3810), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3808), - [anon_sym_namespace] = ACTIONS(3808), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3942), - [anon_sym_from] = ACTIONS(3808), - [anon_sym_let] = ACTIONS(3808), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3808), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3814), - [anon_sym_new] = ACTIONS(3816), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), + [1790] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1790), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(4121), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3818), - [anon_sym_readonly] = ACTIONS(3820), - [anon_sym_get] = ACTIONS(3822), - [anon_sym_set] = ACTIONS(3822), - [anon_sym_declare] = ACTIONS(3808), - [anon_sym_public] = ACTIONS(3824), - [anon_sym_private] = ACTIONS(3824), - [anon_sym_protected] = ACTIONS(3824), - [anon_sym_override] = ACTIONS(3826), - [anon_sym_module] = ACTIONS(3808), - [anon_sym_any] = ACTIONS(3808), - [anon_sym_number] = ACTIONS(3808), - [anon_sym_boolean] = ACTIONS(3808), - [anon_sym_string] = ACTIONS(3808), - [anon_sym_symbol] = ACTIONS(3808), - [anon_sym_object] = ACTIONS(3808), - [anon_sym_property] = ACTIONS(3808), - [anon_sym_signal] = ACTIONS(3808), - [anon_sym_on] = ACTIONS(3808), - [anon_sym_required] = ACTIONS(3808), - [anon_sym_component] = ACTIONS(3808), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1888] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1888), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3860), - [anon_sym_export] = ACTIONS(3862), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3860), - [anon_sym_namespace] = ACTIONS(3860), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3944), - [anon_sym_from] = ACTIONS(3860), - [anon_sym_let] = ACTIONS(3860), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3860), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3866), - [anon_sym_new] = ACTIONS(3868), + [1791] = { + [sym_export_statement] = STATE(5427), + [sym_object_pattern] = STATE(4776), + [sym_object_assignment_pattern] = STATE(7770), + [sym_array_pattern] = STATE(4776), + [sym__call_signature] = STATE(5525), + [sym__destructuring_pattern] = STATE(8033), + [sym_spread_element] = STATE(7638), + [sym_string] = STATE(4711), + [sym_comment] = STATE(1791), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym_rest_pattern] = STATE(7770), + [sym_method_definition] = STATE(7638), + [sym_pair] = STATE(7638), + [sym_pair_pattern] = STATE(7770), + [sym__property_name] = STATE(4555), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5427), + [sym_accessibility_modifier] = STATE(3669), + [sym_override_modifier] = STATE(3760), + [sym_call_signature] = STATE(5427), + [sym_property_signature] = STATE(5427), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5427), + [sym_index_signature] = STATE(5427), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4082), + [anon_sym_export] = ACTIONS(4084), + [anon_sym_STAR] = ACTIONS(3766), + [anon_sym_type] = ACTIONS(4082), + [anon_sym_namespace] = ACTIONS(4082), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_COMMA] = ACTIONS(4086), + [anon_sym_RBRACE] = ACTIONS(4086), + [anon_sym_from] = ACTIONS(4082), + [anon_sym_let] = ACTIONS(4082), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4082), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4089), + [anon_sym_new] = ACTIONS(4091), [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3870), - [anon_sym_readonly] = ACTIONS(3872), - [anon_sym_get] = ACTIONS(3874), - [anon_sym_set] = ACTIONS(3874), - [anon_sym_declare] = ACTIONS(3860), - [anon_sym_public] = ACTIONS(3876), - [anon_sym_private] = ACTIONS(3876), - [anon_sym_protected] = ACTIONS(3876), - [anon_sym_override] = ACTIONS(3878), - [anon_sym_module] = ACTIONS(3860), - [anon_sym_any] = ACTIONS(3860), - [anon_sym_number] = ACTIONS(3860), - [anon_sym_boolean] = ACTIONS(3860), - [anon_sym_string] = ACTIONS(3860), - [anon_sym_symbol] = ACTIONS(3860), - [anon_sym_object] = ACTIONS(3860), - [anon_sym_property] = ACTIONS(3860), - [anon_sym_signal] = ACTIONS(3860), - [anon_sym_on] = ACTIONS(3860), - [anon_sym_required] = ACTIONS(3860), - [anon_sym_component] = ACTIONS(3860), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), - [sym_html_comment] = ACTIONS(5), - }, - [1889] = { - [sym_comment] = STATE(1889), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_COMMA] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_from] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_else] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_of] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2418), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_QMARK_DOT] = ACTIONS(2418), - [anon_sym_AMP_AMP] = ACTIONS(2418), - [anon_sym_PIPE_PIPE] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_LT_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), - [anon_sym_GT_EQ] = ACTIONS(2418), - [anon_sym_QMARK_QMARK] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_PLUS_PLUS] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2418), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_property] = ACTIONS(2416), - [anon_sym_signal] = ACTIONS(2416), - [anon_sym_on] = ACTIONS(2416), - [anon_sym_required] = ACTIONS(2416), - [anon_sym_component] = ACTIONS(2416), - [anon_sym_satisfies] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2416), - [sym__automatic_semicolon] = ACTIONS(3946), - [sym__ternary_qmark] = ACTIONS(2422), + [anon_sym_static] = ACTIONS(4093), + [anon_sym_readonly] = ACTIONS(4095), + [anon_sym_get] = ACTIONS(4097), + [anon_sym_set] = ACTIONS(4097), + [anon_sym_declare] = ACTIONS(4082), + [anon_sym_public] = ACTIONS(4099), + [anon_sym_private] = ACTIONS(4099), + [anon_sym_protected] = ACTIONS(4099), + [anon_sym_override] = ACTIONS(4101), + [anon_sym_module] = ACTIONS(4082), + [anon_sym_any] = ACTIONS(4082), + [anon_sym_number] = ACTIONS(4082), + [anon_sym_boolean] = ACTIONS(4082), + [anon_sym_string] = ACTIONS(4082), + [anon_sym_symbol] = ACTIONS(4082), + [anon_sym_object] = ACTIONS(4082), + [anon_sym_property] = ACTIONS(4082), + [anon_sym_signal] = ACTIONS(4082), + [anon_sym_on] = ACTIONS(4082), + [anon_sym_required] = ACTIONS(4082), + [anon_sym_component] = ACTIONS(4082), + [anon_sym_abstract] = ACTIONS(3798), [sym_html_comment] = ACTIONS(5), }, - [1890] = { - [sym_export_statement] = STATE(5615), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(6843), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(6910), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1890), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(6843), - [sym_method_definition] = STATE(6910), - [sym_pair] = STATE(6910), - [sym_pair_pattern] = STATE(6843), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [aux_sym_object_repeat1] = STATE(6911), - [aux_sym_object_pattern_repeat1] = STATE(6845), - [sym_identifier] = ACTIONS(3948), - [anon_sym_export] = ACTIONS(3950), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(3948), - [anon_sym_namespace] = ACTIONS(3948), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3776), - [anon_sym_RBRACE] = ACTIONS(3864), - [anon_sym_from] = ACTIONS(3948), - [anon_sym_let] = ACTIONS(3948), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(3948), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(3952), - [anon_sym_new] = ACTIONS(3954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), + [1792] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1792), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), + [anon_sym_STAR] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_LPAREN] = ACTIONS(2263), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(4123), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(76), + [anon_sym_PIPE] = ACTIONS(78), + [anon_sym_PLUS] = ACTIONS(2273), + [anon_sym_DASH] = ACTIONS(2273), [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(122), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(3956), - [anon_sym_readonly] = ACTIONS(3958), - [anon_sym_get] = ACTIONS(3960), - [anon_sym_set] = ACTIONS(3960), - [anon_sym_declare] = ACTIONS(3948), - [anon_sym_public] = ACTIONS(3962), - [anon_sym_private] = ACTIONS(3962), - [anon_sym_protected] = ACTIONS(3962), - [anon_sym_override] = ACTIONS(3964), - [anon_sym_module] = ACTIONS(3948), - [anon_sym_any] = ACTIONS(3948), - [anon_sym_number] = ACTIONS(3948), - [anon_sym_boolean] = ACTIONS(3948), - [anon_sym_string] = ACTIONS(3948), - [anon_sym_symbol] = ACTIONS(3948), - [anon_sym_object] = ACTIONS(3948), - [anon_sym_property] = ACTIONS(3948), - [anon_sym_signal] = ACTIONS(3948), - [anon_sym_on] = ACTIONS(3948), - [anon_sym_required] = ACTIONS(3948), - [anon_sym_component] = ACTIONS(3948), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), - [sym_html_comment] = ACTIONS(5), - }, - [1891] = { - [sym_comment] = STATE(1891), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2287), - [anon_sym_DOT] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2287), - [anon_sym_PIPE_PIPE] = ACTIONS(2287), - [anon_sym_GT_GT] = ACTIONS(2287), - [anon_sym_GT_GT_GT] = ACTIONS(2287), - [anon_sym_LT_LT] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2287), - [anon_sym_STAR_STAR] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), - [anon_sym_GT_EQ] = ACTIONS(2287), - [anon_sym_QMARK_QMARK] = ACTIONS(2287), - [anon_sym_instanceof] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3966), - [sym__ternary_qmark] = ACTIONS(2448), - [sym_html_comment] = ACTIONS(5), - }, - [1892] = { - [sym_comment] = STATE(1892), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_as] = ACTIONS(2480), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2478), - [anon_sym_from] = ACTIONS(2478), - [anon_sym_var] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_in] = ACTIONS(2480), - [anon_sym_of] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2480), - [anon_sym_GT] = ACTIONS(2480), - [anon_sym_DOT] = ACTIONS(2480), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_function] = ACTIONS(2478), - [anon_sym_QMARK_DOT] = ACTIONS(2480), - [anon_sym_AMP_AMP] = ACTIONS(2480), - [anon_sym_PIPE_PIPE] = ACTIONS(2480), - [anon_sym_GT_GT] = ACTIONS(2480), - [anon_sym_GT_GT_GT] = ACTIONS(2480), - [anon_sym_LT_LT] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_CARET] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_PLUS] = ACTIONS(2480), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_SLASH] = ACTIONS(2480), - [anon_sym_PERCENT] = ACTIONS(2480), - [anon_sym_STAR_STAR] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2480), - [anon_sym_LT_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ] = ACTIONS(2480), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ] = ACTIONS(2480), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2480), - [anon_sym_GT_EQ] = ACTIONS(2480), - [anon_sym_QMARK_QMARK] = ACTIONS(2480), - [anon_sym_instanceof] = ACTIONS(2480), - [anon_sym_PLUS_PLUS] = ACTIONS(2480), - [anon_sym_DASH_DASH] = ACTIONS(2480), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_readonly] = ACTIONS(2478), - [anon_sym_get] = ACTIONS(2478), - [anon_sym_set] = ACTIONS(2478), - [anon_sym_declare] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_override] = ACTIONS(2478), - [anon_sym_module] = ACTIONS(2478), - [anon_sym_any] = ACTIONS(2478), - [anon_sym_number] = ACTIONS(2478), - [anon_sym_boolean] = ACTIONS(2478), - [anon_sym_string] = ACTIONS(2478), - [anon_sym_symbol] = ACTIONS(2478), - [anon_sym_object] = ACTIONS(2478), - [anon_sym_property] = ACTIONS(2478), - [anon_sym_signal] = ACTIONS(2478), - [anon_sym_on] = ACTIONS(2478), - [anon_sym_required] = ACTIONS(2478), - [anon_sym_component] = ACTIONS(2478), - [anon_sym_satisfies] = ACTIONS(2480), - [anon_sym_enum] = ACTIONS(2478), - [sym__automatic_semicolon] = ACTIONS(3968), - [sym__ternary_qmark] = ACTIONS(2484), - [sym_html_comment] = ACTIONS(5), - }, - [1893] = { - [sym_comment] = STATE(1893), - [sym_identifier] = ACTIONS(2426), - [anon_sym_export] = ACTIONS(2426), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_as] = ACTIONS(2428), - [anon_sym_namespace] = ACTIONS(2426), - [anon_sym_COMMA] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_from] = ACTIONS(2426), - [anon_sym_var] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_BANG] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_in] = ACTIONS(2428), - [anon_sym_of] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2428), - [anon_sym_GT] = ACTIONS(2428), - [anon_sym_DOT] = ACTIONS(2428), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_function] = ACTIONS(2426), - [anon_sym_QMARK_DOT] = ACTIONS(2428), - [anon_sym_AMP_AMP] = ACTIONS(2428), - [anon_sym_PIPE_PIPE] = ACTIONS(2428), - [anon_sym_GT_GT] = ACTIONS(2428), - [anon_sym_GT_GT_GT] = ACTIONS(2428), - [anon_sym_LT_LT] = ACTIONS(2428), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_CARET] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_PLUS] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_SLASH] = ACTIONS(2428), - [anon_sym_PERCENT] = ACTIONS(2428), - [anon_sym_STAR_STAR] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2428), - [anon_sym_LT_EQ] = ACTIONS(2428), - [anon_sym_EQ_EQ] = ACTIONS(2428), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2428), - [anon_sym_BANG_EQ] = ACTIONS(2428), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2428), - [anon_sym_GT_EQ] = ACTIONS(2428), - [anon_sym_QMARK_QMARK] = ACTIONS(2428), - [anon_sym_instanceof] = ACTIONS(2428), - [anon_sym_PLUS_PLUS] = ACTIONS(2428), - [anon_sym_DASH_DASH] = ACTIONS(2428), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2428), - [anon_sym_AT] = ACTIONS(2426), - [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_property] = ACTIONS(2426), - [anon_sym_signal] = ACTIONS(2426), - [anon_sym_on] = ACTIONS(2426), - [anon_sym_required] = ACTIONS(2426), - [anon_sym_component] = ACTIONS(2426), - [anon_sym_satisfies] = ACTIONS(2428), - [anon_sym_enum] = ACTIONS(2426), - [sym__automatic_semicolon] = ACTIONS(3970), - [sym__ternary_qmark] = ACTIONS(2432), - [sym_html_comment] = ACTIONS(5), - }, - [1894] = { - [sym_comment] = STATE(1894), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(3972), - [sym__ternary_qmark] = ACTIONS(2336), + [anon_sym_BQUOTE] = ACTIONS(2277), + [sym_number] = ACTIONS(2279), + [sym_this] = ACTIONS(2281), + [sym_true] = ACTIONS(2279), + [sym_false] = ACTIONS(2279), + [sym_null] = ACTIONS(2279), + [sym_undefined] = ACTIONS(2279), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(110), + [anon_sym_any] = ACTIONS(122), + [anon_sym_number] = ACTIONS(122), + [anon_sym_boolean] = ACTIONS(122), + [anon_sym_string] = ACTIONS(122), + [anon_sym_symbol] = ACTIONS(122), + [anon_sym_object] = ACTIONS(122), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(118), + [anon_sym_unique] = ACTIONS(120), + [anon_sym_unknown] = ACTIONS(122), + [anon_sym_never] = ACTIONS(122), + [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1895] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1895), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1793] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1793), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3974), + [anon_sym_GT] = ACTIONS(4125), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -236581,133 +226732,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1896] = { - [sym_comment] = STATE(1896), - [sym_identifier] = ACTIONS(2434), - [anon_sym_export] = ACTIONS(2434), - [anon_sym_STAR] = ACTIONS(2434), - [anon_sym_default] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_as] = ACTIONS(2434), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_COMMA] = ACTIONS(2434), - [anon_sym_RBRACE] = ACTIONS(2434), - [anon_sym_from] = ACTIONS(2434), - [anon_sym_var] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_BANG] = ACTIONS(2434), - [anon_sym_LPAREN] = ACTIONS(2434), - [anon_sym_in] = ACTIONS(2434), - [anon_sym_of] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2434), - [anon_sym_LBRACK] = ACTIONS(2434), - [anon_sym_GT] = ACTIONS(2434), - [anon_sym_DOT] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_function] = ACTIONS(2434), - [anon_sym_QMARK_DOT] = ACTIONS(2434), - [anon_sym_AMP_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2434), - [anon_sym_GT_GT] = ACTIONS(2434), - [anon_sym_GT_GT_GT] = ACTIONS(2434), - [anon_sym_LT_LT] = ACTIONS(2434), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_CARET] = ACTIONS(2434), - [anon_sym_PIPE] = ACTIONS(2434), - [anon_sym_PLUS] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_SLASH] = ACTIONS(2434), - [anon_sym_PERCENT] = ACTIONS(2434), - [anon_sym_STAR_STAR] = ACTIONS(2434), - [anon_sym_LT] = ACTIONS(2434), - [anon_sym_LT_EQ] = ACTIONS(2434), - [anon_sym_EQ_EQ] = ACTIONS(2434), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2434), - [anon_sym_BANG_EQ] = ACTIONS(2434), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2434), - [anon_sym_GT_EQ] = ACTIONS(2434), - [anon_sym_QMARK_QMARK] = ACTIONS(2434), - [anon_sym_instanceof] = ACTIONS(2434), - [anon_sym_PLUS_PLUS] = ACTIONS(2434), - [anon_sym_DASH_DASH] = ACTIONS(2434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2434), - [anon_sym_AT] = ACTIONS(2434), - [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_property] = ACTIONS(2434), - [anon_sym_signal] = ACTIONS(2434), - [anon_sym_on] = ACTIONS(2434), - [anon_sym_required] = ACTIONS(2434), - [anon_sym_component] = ACTIONS(2434), - [anon_sym_satisfies] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - [sym__automatic_semicolon] = ACTIONS(2436), - [sym__ternary_qmark] = ACTIONS(2436), - [sym_html_comment] = ACTIONS(5), - }, - [1897] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1897), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1794] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1794), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3976), + [anon_sym_GT] = ACTIONS(4127), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -236739,54 +226808,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1898] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1898), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1795] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1795), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3978), + [anon_sym_GT] = ACTIONS(4129), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -236818,291 +226884,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1899] = { - [sym_comment] = STATE(1899), - [sym_identifier] = ACTIONS(2328), - [anon_sym_export] = ACTIONS(2328), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_type] = ACTIONS(2328), - [anon_sym_as] = ACTIONS(2328), - [anon_sym_namespace] = ACTIONS(2328), - [anon_sym_COMMA] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_from] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [anon_sym_let] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_in] = ACTIONS(2328), - [anon_sym_of] = ACTIONS(2328), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_GT] = ACTIONS(2328), - [anon_sym_DOT] = ACTIONS(2328), - [anon_sym_async] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_QMARK_DOT] = ACTIONS(2328), - [anon_sym_AMP_AMP] = ACTIONS(2328), - [anon_sym_PIPE_PIPE] = ACTIONS(2328), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2328), - [anon_sym_LT_LT] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PERCENT] = ACTIONS(2328), - [anon_sym_STAR_STAR] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ] = ACTIONS(2328), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ] = ACTIONS(2328), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2328), - [anon_sym_GT_EQ] = ACTIONS(2328), - [anon_sym_QMARK_QMARK] = ACTIONS(2328), - [anon_sym_instanceof] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2328), - [anon_sym_DASH_DASH] = ACTIONS(2328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_readonly] = ACTIONS(2328), - [anon_sym_get] = ACTIONS(2328), - [anon_sym_set] = ACTIONS(2328), - [anon_sym_declare] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_protected] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_module] = ACTIONS(2328), - [anon_sym_any] = ACTIONS(2328), - [anon_sym_number] = ACTIONS(2328), - [anon_sym_boolean] = ACTIONS(2328), - [anon_sym_string] = ACTIONS(2328), - [anon_sym_symbol] = ACTIONS(2328), - [anon_sym_object] = ACTIONS(2328), - [anon_sym_property] = ACTIONS(2328), - [anon_sym_signal] = ACTIONS(2328), - [anon_sym_on] = ACTIONS(2328), - [anon_sym_required] = ACTIONS(2328), - [anon_sym_component] = ACTIONS(2328), - [anon_sym_satisfies] = ACTIONS(2328), - [anon_sym_enum] = ACTIONS(2328), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym__ternary_qmark] = ACTIONS(2330), - [sym_html_comment] = ACTIONS(5), - }, - [1900] = { - [sym_comment] = STATE(1900), - [sym_identifier] = ACTIONS(2332), - [anon_sym_export] = ACTIONS(2332), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_as] = ACTIONS(2332), - [anon_sym_namespace] = ACTIONS(2332), - [anon_sym_COMMA] = ACTIONS(2332), - [anon_sym_RBRACE] = ACTIONS(2332), - [anon_sym_from] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2332), - [anon_sym_in] = ACTIONS(2332), - [anon_sym_of] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2332), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_DOT] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_QMARK_DOT] = ACTIONS(2332), - [anon_sym_AMP_AMP] = ACTIONS(2332), - [anon_sym_PIPE_PIPE] = ACTIONS(2332), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2332), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PERCENT] = ACTIONS(2332), - [anon_sym_STAR_STAR] = ACTIONS(2332), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ] = ACTIONS(2332), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ] = ACTIONS(2332), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2332), - [anon_sym_QMARK_QMARK] = ACTIONS(2332), - [anon_sym_instanceof] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2332), - [anon_sym_DASH_DASH] = ACTIONS(2332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_readonly] = ACTIONS(2332), - [anon_sym_get] = ACTIONS(2332), - [anon_sym_set] = ACTIONS(2332), - [anon_sym_declare] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_protected] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_module] = ACTIONS(2332), - [anon_sym_any] = ACTIONS(2332), - [anon_sym_number] = ACTIONS(2332), - [anon_sym_boolean] = ACTIONS(2332), - [anon_sym_string] = ACTIONS(2332), - [anon_sym_symbol] = ACTIONS(2332), - [anon_sym_object] = ACTIONS(2332), - [anon_sym_property] = ACTIONS(2332), - [anon_sym_signal] = ACTIONS(2332), - [anon_sym_on] = ACTIONS(2332), - [anon_sym_required] = ACTIONS(2332), - [anon_sym_component] = ACTIONS(2332), - [anon_sym_satisfies] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [sym__automatic_semicolon] = ACTIONS(2336), - [sym__ternary_qmark] = ACTIONS(2336), - [sym_html_comment] = ACTIONS(5), - }, - [1901] = { - [sym_comment] = STATE(1901), - [sym_identifier] = ACTIONS(2287), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_default] = ACTIONS(2287), - [anon_sym_type] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_namespace] = ACTIONS(2287), - [anon_sym_COMMA] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_from] = ACTIONS(2287), - [anon_sym_var] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_in] = ACTIONS(2287), - [anon_sym_of] = ACTIONS(2287), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_GT] = ACTIONS(2287), - [anon_sym_DOT] = ACTIONS(2287), - [anon_sym_async] = ACTIONS(2287), - [anon_sym_function] = ACTIONS(2287), - [anon_sym_QMARK_DOT] = ACTIONS(2287), - [anon_sym_AMP_AMP] = ACTIONS(2287), - [anon_sym_PIPE_PIPE] = ACTIONS(2287), - [anon_sym_GT_GT] = ACTIONS(2287), - [anon_sym_GT_GT_GT] = ACTIONS(2287), - [anon_sym_LT_LT] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_CARET] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_PLUS] = ACTIONS(2287), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_SLASH] = ACTIONS(2287), - [anon_sym_PERCENT] = ACTIONS(2287), - [anon_sym_STAR_STAR] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_LT_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ] = ACTIONS(2287), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ] = ACTIONS(2287), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), - [anon_sym_GT_EQ] = ACTIONS(2287), - [anon_sym_QMARK_QMARK] = ACTIONS(2287), - [anon_sym_instanceof] = ACTIONS(2287), - [anon_sym_PLUS_PLUS] = ACTIONS(2287), - [anon_sym_DASH_DASH] = ACTIONS(2287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2287), - [anon_sym_AT] = ACTIONS(2287), - [anon_sym_static] = ACTIONS(2287), - [anon_sym_readonly] = ACTIONS(2287), - [anon_sym_get] = ACTIONS(2287), - [anon_sym_set] = ACTIONS(2287), - [anon_sym_declare] = ACTIONS(2287), - [anon_sym_public] = ACTIONS(2287), - [anon_sym_private] = ACTIONS(2287), - [anon_sym_protected] = ACTIONS(2287), - [anon_sym_override] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_any] = ACTIONS(2287), - [anon_sym_number] = ACTIONS(2287), - [anon_sym_boolean] = ACTIONS(2287), - [anon_sym_string] = ACTIONS(2287), - [anon_sym_symbol] = ACTIONS(2287), - [anon_sym_object] = ACTIONS(2287), - [anon_sym_property] = ACTIONS(2287), - [anon_sym_signal] = ACTIONS(2287), - [anon_sym_on] = ACTIONS(2287), - [anon_sym_required] = ACTIONS(2287), - [anon_sym_component] = ACTIONS(2287), - [anon_sym_satisfies] = ACTIONS(2287), - [anon_sym_enum] = ACTIONS(2287), - [sym__automatic_semicolon] = ACTIONS(3980), - [sym__ternary_qmark] = ACTIONS(2448), - [sym_html_comment] = ACTIONS(5), - }, - [1902] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1902), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1796] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1796), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3982), + [anon_sym_GT] = ACTIONS(4131), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -237134,54 +226960,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1903] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1903), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1797] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1797), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3984), + [anon_sym_GT] = ACTIONS(4133), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -237213,133 +227036,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1904] = { - [sym_comment] = STATE(1904), - [sym_identifier] = ACTIONS(2350), - [anon_sym_export] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_default] = ACTIONS(2350), - [anon_sym_type] = ACTIONS(2350), - [anon_sym_as] = ACTIONS(2350), - [anon_sym_namespace] = ACTIONS(2350), - [anon_sym_COMMA] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_from] = ACTIONS(2350), - [anon_sym_var] = ACTIONS(2350), - [anon_sym_let] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_in] = ACTIONS(2350), - [anon_sym_of] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2350), - [anon_sym_DOT] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2350), - [anon_sym_function] = ACTIONS(2350), - [anon_sym_QMARK_DOT] = ACTIONS(2350), - [anon_sym_AMP_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2350), - [anon_sym_GT_GT_GT] = ACTIONS(2350), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_PLUS] = ACTIONS(2350), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2350), - [anon_sym_STAR_STAR] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_LT_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2350), - [anon_sym_GT_EQ] = ACTIONS(2350), - [anon_sym_QMARK_QMARK] = ACTIONS(2350), - [anon_sym_instanceof] = ACTIONS(2350), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2350), - [anon_sym_AT] = ACTIONS(2350), - [anon_sym_static] = ACTIONS(2350), - [anon_sym_readonly] = ACTIONS(2350), - [anon_sym_get] = ACTIONS(2350), - [anon_sym_set] = ACTIONS(2350), - [anon_sym_declare] = ACTIONS(2350), - [anon_sym_public] = ACTIONS(2350), - [anon_sym_private] = ACTIONS(2350), - [anon_sym_protected] = ACTIONS(2350), - [anon_sym_override] = ACTIONS(2350), - [anon_sym_module] = ACTIONS(2350), - [anon_sym_any] = ACTIONS(2350), - [anon_sym_number] = ACTIONS(2350), - [anon_sym_boolean] = ACTIONS(2350), - [anon_sym_string] = ACTIONS(2350), - [anon_sym_symbol] = ACTIONS(2350), - [anon_sym_object] = ACTIONS(2350), - [anon_sym_property] = ACTIONS(2350), - [anon_sym_signal] = ACTIONS(2350), - [anon_sym_on] = ACTIONS(2350), - [anon_sym_required] = ACTIONS(2350), - [anon_sym_component] = ACTIONS(2350), - [anon_sym_satisfies] = ACTIONS(2350), - [anon_sym_enum] = ACTIONS(2350), - [sym__automatic_semicolon] = ACTIONS(2352), - [sym__ternary_qmark] = ACTIONS(2352), - [sym_html_comment] = ACTIONS(5), - }, - [1905] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1905), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1798] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1798), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3986), + [anon_sym_GT] = ACTIONS(4135), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -237371,133 +227112,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1906] = { - [sym_comment] = STATE(1906), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(2458), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_default] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_as] = ACTIONS(2460), - [anon_sym_namespace] = ACTIONS(2458), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2458), - [anon_sym_from] = ACTIONS(2458), - [anon_sym_var] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_BANG] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_in] = ACTIONS(2460), - [anon_sym_of] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2460), - [anon_sym_GT] = ACTIONS(2460), - [anon_sym_DOT] = ACTIONS(2460), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_function] = ACTIONS(2458), - [anon_sym_QMARK_DOT] = ACTIONS(2460), - [anon_sym_AMP_AMP] = ACTIONS(2460), - [anon_sym_PIPE_PIPE] = ACTIONS(2460), - [anon_sym_GT_GT] = ACTIONS(2460), - [anon_sym_GT_GT_GT] = ACTIONS(2460), - [anon_sym_LT_LT] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_CARET] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_PLUS] = ACTIONS(2460), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_SLASH] = ACTIONS(2460), - [anon_sym_PERCENT] = ACTIONS(2460), - [anon_sym_STAR_STAR] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_LT_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ] = ACTIONS(2460), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ] = ACTIONS(2460), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2460), - [anon_sym_GT_EQ] = ACTIONS(2460), - [anon_sym_QMARK_QMARK] = ACTIONS(2460), - [anon_sym_instanceof] = ACTIONS(2460), - [anon_sym_PLUS_PLUS] = ACTIONS(2460), - [anon_sym_DASH_DASH] = ACTIONS(2460), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2460), - [anon_sym_AT] = ACTIONS(2458), - [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_property] = ACTIONS(2458), - [anon_sym_signal] = ACTIONS(2458), - [anon_sym_on] = ACTIONS(2458), - [anon_sym_required] = ACTIONS(2458), - [anon_sym_component] = ACTIONS(2458), - [anon_sym_satisfies] = ACTIONS(2460), - [anon_sym_enum] = ACTIONS(2458), - [sym__automatic_semicolon] = ACTIONS(3988), - [sym__ternary_qmark] = ACTIONS(2464), - [sym_html_comment] = ACTIONS(5), - }, - [1907] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1907), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1799] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1799), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3990), + [anon_sym_GT] = ACTIONS(4137), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -237529,291 +227188,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1908] = { - [sym_comment] = STATE(1908), - [sym_identifier] = ACTIONS(2342), - [anon_sym_export] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2342), - [anon_sym_type] = ACTIONS(2342), - [anon_sym_as] = ACTIONS(2344), - [anon_sym_namespace] = ACTIONS(2342), - [anon_sym_COMMA] = ACTIONS(2344), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_from] = ACTIONS(2342), - [anon_sym_var] = ACTIONS(2342), - [anon_sym_let] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2344), - [anon_sym_in] = ACTIONS(2344), - [anon_sym_of] = ACTIONS(2342), - [anon_sym_SEMI] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2344), - [anon_sym_GT] = ACTIONS(2344), - [anon_sym_DOT] = ACTIONS(2344), - [anon_sym_async] = ACTIONS(2342), - [anon_sym_function] = ACTIONS(2342), - [anon_sym_QMARK_DOT] = ACTIONS(2344), - [anon_sym_AMP_AMP] = ACTIONS(2344), - [anon_sym_PIPE_PIPE] = ACTIONS(2344), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2344), - [anon_sym_LT_LT] = ACTIONS(2344), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2344), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PERCENT] = ACTIONS(2344), - [anon_sym_STAR_STAR] = ACTIONS(2344), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ] = ACTIONS(2344), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ] = ACTIONS(2344), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2344), - [anon_sym_GT_EQ] = ACTIONS(2344), - [anon_sym_QMARK_QMARK] = ACTIONS(2344), - [anon_sym_instanceof] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2344), - [anon_sym_AT] = ACTIONS(2342), - [anon_sym_static] = ACTIONS(2342), - [anon_sym_readonly] = ACTIONS(2342), - [anon_sym_get] = ACTIONS(2342), - [anon_sym_set] = ACTIONS(2342), - [anon_sym_declare] = ACTIONS(2342), - [anon_sym_public] = ACTIONS(2342), - [anon_sym_private] = ACTIONS(2342), - [anon_sym_protected] = ACTIONS(2342), - [anon_sym_override] = ACTIONS(2342), - [anon_sym_module] = ACTIONS(2342), - [anon_sym_any] = ACTIONS(2342), - [anon_sym_number] = ACTIONS(2342), - [anon_sym_boolean] = ACTIONS(2342), - [anon_sym_string] = ACTIONS(2342), - [anon_sym_symbol] = ACTIONS(2342), - [anon_sym_object] = ACTIONS(2342), - [anon_sym_property] = ACTIONS(2342), - [anon_sym_signal] = ACTIONS(2342), - [anon_sym_on] = ACTIONS(2342), - [anon_sym_required] = ACTIONS(2342), - [anon_sym_component] = ACTIONS(2342), - [anon_sym_satisfies] = ACTIONS(2344), - [anon_sym_enum] = ACTIONS(2342), - [sym__automatic_semicolon] = ACTIONS(3992), - [sym__ternary_qmark] = ACTIONS(2348), - [sym_html_comment] = ACTIONS(5), - }, - [1909] = { - [sym_comment] = STATE(1909), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(2466), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_as] = ACTIONS(2468), - [anon_sym_namespace] = ACTIONS(2466), - [anon_sym_COMMA] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2466), - [anon_sym_from] = ACTIONS(2466), - [anon_sym_var] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_in] = ACTIONS(2468), - [anon_sym_of] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_GT] = ACTIONS(2468), - [anon_sym_DOT] = ACTIONS(2468), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(2466), - [anon_sym_QMARK_DOT] = ACTIONS(2468), - [anon_sym_AMP_AMP] = ACTIONS(2468), - [anon_sym_PIPE_PIPE] = ACTIONS(2468), - [anon_sym_GT_GT] = ACTIONS(2468), - [anon_sym_GT_GT_GT] = ACTIONS(2468), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_CARET] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_PLUS] = ACTIONS(2468), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_SLASH] = ACTIONS(2468), - [anon_sym_PERCENT] = ACTIONS(2468), - [anon_sym_STAR_STAR] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_LT_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ] = ACTIONS(2468), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ] = ACTIONS(2468), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2468), - [anon_sym_GT_EQ] = ACTIONS(2468), - [anon_sym_QMARK_QMARK] = ACTIONS(2468), - [anon_sym_instanceof] = ACTIONS(2468), - [anon_sym_PLUS_PLUS] = ACTIONS(2468), - [anon_sym_DASH_DASH] = ACTIONS(2468), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2468), - [anon_sym_AT] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_readonly] = ACTIONS(2466), - [anon_sym_get] = ACTIONS(2466), - [anon_sym_set] = ACTIONS(2466), - [anon_sym_declare] = ACTIONS(2466), - [anon_sym_public] = ACTIONS(2466), - [anon_sym_private] = ACTIONS(2466), - [anon_sym_protected] = ACTIONS(2466), - [anon_sym_override] = ACTIONS(2466), - [anon_sym_module] = ACTIONS(2466), - [anon_sym_any] = ACTIONS(2466), - [anon_sym_number] = ACTIONS(2466), - [anon_sym_boolean] = ACTIONS(2466), - [anon_sym_string] = ACTIONS(2466), - [anon_sym_symbol] = ACTIONS(2466), - [anon_sym_object] = ACTIONS(2466), - [anon_sym_property] = ACTIONS(2466), - [anon_sym_signal] = ACTIONS(2466), - [anon_sym_on] = ACTIONS(2466), - [anon_sym_required] = ACTIONS(2466), - [anon_sym_component] = ACTIONS(2466), - [anon_sym_satisfies] = ACTIONS(2468), - [anon_sym_enum] = ACTIONS(2466), - [sym__automatic_semicolon] = ACTIONS(2470), - [sym__ternary_qmark] = ACTIONS(2470), - [sym_html_comment] = ACTIONS(5), - }, - [1910] = { - [sym_comment] = STATE(1910), - [sym_identifier] = ACTIONS(2416), - [anon_sym_export] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2416), - [anon_sym_type] = ACTIONS(2416), - [anon_sym_as] = ACTIONS(2418), - [anon_sym_namespace] = ACTIONS(2416), - [anon_sym_COMMA] = ACTIONS(2418), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_from] = ACTIONS(2416), - [anon_sym_var] = ACTIONS(2416), - [anon_sym_let] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2418), - [anon_sym_LPAREN] = ACTIONS(2418), - [anon_sym_in] = ACTIONS(2418), - [anon_sym_of] = ACTIONS(2416), - [anon_sym_SEMI] = ACTIONS(2418), - [anon_sym_LBRACK] = ACTIONS(2418), - [anon_sym_GT] = ACTIONS(2418), - [anon_sym_DOT] = ACTIONS(2418), - [anon_sym_async] = ACTIONS(2416), - [anon_sym_function] = ACTIONS(2416), - [anon_sym_QMARK_DOT] = ACTIONS(2418), - [anon_sym_AMP_AMP] = ACTIONS(2418), - [anon_sym_PIPE_PIPE] = ACTIONS(2418), - [anon_sym_GT_GT] = ACTIONS(2418), - [anon_sym_GT_GT_GT] = ACTIONS(2418), - [anon_sym_LT_LT] = ACTIONS(2418), - [anon_sym_AMP] = ACTIONS(2418), - [anon_sym_CARET] = ACTIONS(2418), - [anon_sym_PIPE] = ACTIONS(2418), - [anon_sym_PLUS] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2418), - [anon_sym_SLASH] = ACTIONS(2418), - [anon_sym_PERCENT] = ACTIONS(2418), - [anon_sym_STAR_STAR] = ACTIONS(2418), - [anon_sym_LT] = ACTIONS(2418), - [anon_sym_LT_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ] = ACTIONS(2418), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ] = ACTIONS(2418), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2418), - [anon_sym_GT_EQ] = ACTIONS(2418), - [anon_sym_QMARK_QMARK] = ACTIONS(2418), - [anon_sym_instanceof] = ACTIONS(2418), - [anon_sym_PLUS_PLUS] = ACTIONS(2418), - [anon_sym_DASH_DASH] = ACTIONS(2418), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2418), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_static] = ACTIONS(2416), - [anon_sym_readonly] = ACTIONS(2416), - [anon_sym_get] = ACTIONS(2416), - [anon_sym_set] = ACTIONS(2416), - [anon_sym_declare] = ACTIONS(2416), - [anon_sym_public] = ACTIONS(2416), - [anon_sym_private] = ACTIONS(2416), - [anon_sym_protected] = ACTIONS(2416), - [anon_sym_override] = ACTIONS(2416), - [anon_sym_module] = ACTIONS(2416), - [anon_sym_any] = ACTIONS(2416), - [anon_sym_number] = ACTIONS(2416), - [anon_sym_boolean] = ACTIONS(2416), - [anon_sym_string] = ACTIONS(2416), - [anon_sym_symbol] = ACTIONS(2416), - [anon_sym_object] = ACTIONS(2416), - [anon_sym_property] = ACTIONS(2416), - [anon_sym_signal] = ACTIONS(2416), - [anon_sym_on] = ACTIONS(2416), - [anon_sym_required] = ACTIONS(2416), - [anon_sym_component] = ACTIONS(2416), - [anon_sym_satisfies] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2416), - [sym__automatic_semicolon] = ACTIONS(3994), - [sym__ternary_qmark] = ACTIONS(2422), - [sym_html_comment] = ACTIONS(5), - }, - [1911] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1911), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1800] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1800), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(3996), + [anon_sym_GT] = ACTIONS(4139), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -237845,607 +227264,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1912] = { - [sym_comment] = STATE(1912), - [sym_identifier] = ACTIONS(2362), - [anon_sym_export] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_default] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_as] = ACTIONS(2364), - [anon_sym_namespace] = ACTIONS(2362), - [anon_sym_COMMA] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2362), - [anon_sym_from] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_BANG] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2364), - [anon_sym_in] = ACTIONS(2364), - [anon_sym_of] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_LBRACK] = ACTIONS(2364), - [anon_sym_GT] = ACTIONS(2364), - [anon_sym_DOT] = ACTIONS(2364), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_QMARK_DOT] = ACTIONS(2364), - [anon_sym_AMP_AMP] = ACTIONS(2364), - [anon_sym_PIPE_PIPE] = ACTIONS(2364), - [anon_sym_GT_GT] = ACTIONS(2364), - [anon_sym_GT_GT_GT] = ACTIONS(2364), - [anon_sym_LT_LT] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_CARET] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_PLUS] = ACTIONS(2364), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_SLASH] = ACTIONS(2364), - [anon_sym_PERCENT] = ACTIONS(2364), - [anon_sym_STAR_STAR] = ACTIONS(2364), - [anon_sym_LT] = ACTIONS(2364), - [anon_sym_LT_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ] = ACTIONS(2364), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ] = ACTIONS(2364), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2364), - [anon_sym_GT_EQ] = ACTIONS(2364), - [anon_sym_QMARK_QMARK] = ACTIONS(2364), - [anon_sym_instanceof] = ACTIONS(2364), - [anon_sym_PLUS_PLUS] = ACTIONS(2364), - [anon_sym_DASH_DASH] = ACTIONS(2364), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2364), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_readonly] = ACTIONS(2362), - [anon_sym_get] = ACTIONS(2362), - [anon_sym_set] = ACTIONS(2362), - [anon_sym_declare] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_protected] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_module] = ACTIONS(2362), - [anon_sym_any] = ACTIONS(2362), - [anon_sym_number] = ACTIONS(2362), - [anon_sym_boolean] = ACTIONS(2362), - [anon_sym_string] = ACTIONS(2362), - [anon_sym_symbol] = ACTIONS(2362), - [anon_sym_object] = ACTIONS(2362), - [anon_sym_property] = ACTIONS(2362), - [anon_sym_signal] = ACTIONS(2362), - [anon_sym_on] = ACTIONS(2362), - [anon_sym_required] = ACTIONS(2362), - [anon_sym_component] = ACTIONS(2362), - [anon_sym_satisfies] = ACTIONS(2364), - [anon_sym_enum] = ACTIONS(2362), - [sym__automatic_semicolon] = ACTIONS(3998), - [sym__ternary_qmark] = ACTIONS(2368), - [sym_html_comment] = ACTIONS(5), - }, - [1913] = { - [sym_comment] = STATE(1913), - [sym_identifier] = ACTIONS(2394), - [anon_sym_export] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2396), - [anon_sym_default] = ACTIONS(2394), - [anon_sym_type] = ACTIONS(2394), - [anon_sym_as] = ACTIONS(2396), - [anon_sym_namespace] = ACTIONS(2394), - [anon_sym_COMMA] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_from] = ACTIONS(2394), - [anon_sym_var] = ACTIONS(2394), - [anon_sym_let] = ACTIONS(2394), - [anon_sym_BANG] = ACTIONS(2396), - [anon_sym_LPAREN] = ACTIONS(2396), - [anon_sym_in] = ACTIONS(2396), - [anon_sym_of] = ACTIONS(2394), - [anon_sym_SEMI] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2396), - [anon_sym_GT] = ACTIONS(2396), - [anon_sym_DOT] = ACTIONS(2396), - [anon_sym_async] = ACTIONS(2394), - [anon_sym_function] = ACTIONS(2394), - [anon_sym_QMARK_DOT] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_GT_GT_GT] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(2396), - [anon_sym_AMP] = ACTIONS(2396), - [anon_sym_CARET] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_PLUS] = ACTIONS(2396), - [anon_sym_DASH] = ACTIONS(2396), - [anon_sym_SLASH] = ACTIONS(2396), - [anon_sym_PERCENT] = ACTIONS(2396), - [anon_sym_STAR_STAR] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(2396), - [anon_sym_LT_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ] = ACTIONS(2396), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ] = ACTIONS(2396), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2396), - [anon_sym_GT_EQ] = ACTIONS(2396), - [anon_sym_QMARK_QMARK] = ACTIONS(2396), - [anon_sym_instanceof] = ACTIONS(2396), - [anon_sym_PLUS_PLUS] = ACTIONS(2396), - [anon_sym_DASH_DASH] = ACTIONS(2396), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_AT] = ACTIONS(2394), - [anon_sym_static] = ACTIONS(2394), - [anon_sym_readonly] = ACTIONS(2394), - [anon_sym_get] = ACTIONS(2394), - [anon_sym_set] = ACTIONS(2394), - [anon_sym_declare] = ACTIONS(2394), - [anon_sym_public] = ACTIONS(2394), - [anon_sym_private] = ACTIONS(2394), - [anon_sym_protected] = ACTIONS(2394), - [anon_sym_override] = ACTIONS(2394), - [anon_sym_module] = ACTIONS(2394), - [anon_sym_any] = ACTIONS(2394), - [anon_sym_number] = ACTIONS(2394), - [anon_sym_boolean] = ACTIONS(2394), - [anon_sym_string] = ACTIONS(2394), - [anon_sym_symbol] = ACTIONS(2394), - [anon_sym_object] = ACTIONS(2394), - [anon_sym_property] = ACTIONS(2394), - [anon_sym_signal] = ACTIONS(2394), - [anon_sym_on] = ACTIONS(2394), - [anon_sym_required] = ACTIONS(2394), - [anon_sym_component] = ACTIONS(2394), - [anon_sym_satisfies] = ACTIONS(2396), - [anon_sym_enum] = ACTIONS(2394), - [sym__automatic_semicolon] = ACTIONS(4000), - [sym__ternary_qmark] = ACTIONS(2400), - [sym_html_comment] = ACTIONS(5), - }, - [1914] = { - [sym_comment] = STATE(1914), - [sym_identifier] = ACTIONS(2382), - [anon_sym_export] = ACTIONS(2382), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_default] = ACTIONS(2382), - [anon_sym_type] = ACTIONS(2382), - [anon_sym_as] = ACTIONS(2384), - [anon_sym_namespace] = ACTIONS(2382), - [anon_sym_COMMA] = ACTIONS(2384), - [anon_sym_RBRACE] = ACTIONS(2382), - [anon_sym_from] = ACTIONS(2382), - [anon_sym_var] = ACTIONS(2382), - [anon_sym_let] = ACTIONS(2382), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2384), - [anon_sym_in] = ACTIONS(2384), - [anon_sym_of] = ACTIONS(2382), - [anon_sym_SEMI] = ACTIONS(2384), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_async] = ACTIONS(2382), - [anon_sym_function] = ACTIONS(2382), - [anon_sym_QMARK_DOT] = ACTIONS(2384), - [anon_sym_AMP_AMP] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_GT_GT_GT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_STAR_STAR] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2384), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ] = ACTIONS(2384), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2384), - [anon_sym_QMARK_QMARK] = ACTIONS(2384), - [anon_sym_instanceof] = ACTIONS(2384), - [anon_sym_PLUS_PLUS] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2384), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2384), - [anon_sym_AT] = ACTIONS(2382), - [anon_sym_static] = ACTIONS(2382), - [anon_sym_readonly] = ACTIONS(2382), - [anon_sym_get] = ACTIONS(2382), - [anon_sym_set] = ACTIONS(2382), - [anon_sym_declare] = ACTIONS(2382), - [anon_sym_public] = ACTIONS(2382), - [anon_sym_private] = ACTIONS(2382), - [anon_sym_protected] = ACTIONS(2382), - [anon_sym_override] = ACTIONS(2382), - [anon_sym_module] = ACTIONS(2382), - [anon_sym_any] = ACTIONS(2382), - [anon_sym_number] = ACTIONS(2382), - [anon_sym_boolean] = ACTIONS(2382), - [anon_sym_string] = ACTIONS(2382), - [anon_sym_symbol] = ACTIONS(2382), - [anon_sym_object] = ACTIONS(2382), - [anon_sym_property] = ACTIONS(2382), - [anon_sym_signal] = ACTIONS(2382), - [anon_sym_on] = ACTIONS(2382), - [anon_sym_required] = ACTIONS(2382), - [anon_sym_component] = ACTIONS(2382), - [anon_sym_satisfies] = ACTIONS(2384), - [anon_sym_enum] = ACTIONS(2382), - [sym__automatic_semicolon] = ACTIONS(4002), - [sym__ternary_qmark] = ACTIONS(2388), - [sym_html_comment] = ACTIONS(5), - }, - [1915] = { - [sym_comment] = STATE(1915), - [sym_identifier] = ACTIONS(2354), - [anon_sym_export] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2354), - [anon_sym_type] = ACTIONS(2354), - [anon_sym_as] = ACTIONS(2356), - [anon_sym_namespace] = ACTIONS(2354), - [anon_sym_COMMA] = ACTIONS(2356), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_from] = ACTIONS(2354), - [anon_sym_var] = ACTIONS(2354), - [anon_sym_let] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2356), - [anon_sym_LPAREN] = ACTIONS(2356), - [anon_sym_in] = ACTIONS(2356), - [anon_sym_of] = ACTIONS(2354), - [anon_sym_SEMI] = ACTIONS(2356), - [anon_sym_LBRACK] = ACTIONS(2356), - [anon_sym_GT] = ACTIONS(2356), - [anon_sym_DOT] = ACTIONS(2356), - [anon_sym_async] = ACTIONS(2354), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_QMARK_DOT] = ACTIONS(2356), - [anon_sym_AMP_AMP] = ACTIONS(2356), - [anon_sym_PIPE_PIPE] = ACTIONS(2356), - [anon_sym_GT_GT] = ACTIONS(2356), - [anon_sym_GT_GT_GT] = ACTIONS(2356), - [anon_sym_LT_LT] = ACTIONS(2356), - [anon_sym_AMP] = ACTIONS(2356), - [anon_sym_CARET] = ACTIONS(2356), - [anon_sym_PIPE] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2356), - [anon_sym_SLASH] = ACTIONS(2356), - [anon_sym_PERCENT] = ACTIONS(2356), - [anon_sym_STAR_STAR] = ACTIONS(2356), - [anon_sym_LT] = ACTIONS(2356), - [anon_sym_LT_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ] = ACTIONS(2356), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ] = ACTIONS(2356), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2356), - [anon_sym_GT_EQ] = ACTIONS(2356), - [anon_sym_QMARK_QMARK] = ACTIONS(2356), - [anon_sym_instanceof] = ACTIONS(2356), - [anon_sym_PLUS_PLUS] = ACTIONS(2356), - [anon_sym_DASH_DASH] = ACTIONS(2356), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2356), - [anon_sym_AT] = ACTIONS(2354), - [anon_sym_static] = ACTIONS(2354), - [anon_sym_readonly] = ACTIONS(2354), - [anon_sym_get] = ACTIONS(2354), - [anon_sym_set] = ACTIONS(2354), - [anon_sym_declare] = ACTIONS(2354), - [anon_sym_public] = ACTIONS(2354), - [anon_sym_private] = ACTIONS(2354), - [anon_sym_protected] = ACTIONS(2354), - [anon_sym_override] = ACTIONS(2354), - [anon_sym_module] = ACTIONS(2354), - [anon_sym_any] = ACTIONS(2354), - [anon_sym_number] = ACTIONS(2354), - [anon_sym_boolean] = ACTIONS(2354), - [anon_sym_string] = ACTIONS(2354), - [anon_sym_symbol] = ACTIONS(2354), - [anon_sym_object] = ACTIONS(2354), - [anon_sym_property] = ACTIONS(2354), - [anon_sym_signal] = ACTIONS(2354), - [anon_sym_on] = ACTIONS(2354), - [anon_sym_required] = ACTIONS(2354), - [anon_sym_component] = ACTIONS(2354), - [anon_sym_satisfies] = ACTIONS(2356), - [anon_sym_enum] = ACTIONS(2354), - [sym__automatic_semicolon] = ACTIONS(4004), - [sym__ternary_qmark] = ACTIONS(2360), - [sym_html_comment] = ACTIONS(5), - }, - [1916] = { - [sym_comment] = STATE(1916), - [sym_identifier] = ACTIONS(2374), - [anon_sym_export] = ACTIONS(2374), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_as] = ACTIONS(2376), - [anon_sym_namespace] = ACTIONS(2374), - [anon_sym_COMMA] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_from] = ACTIONS(2374), - [anon_sym_var] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_in] = ACTIONS(2376), - [anon_sym_of] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2376), - [anon_sym_GT] = ACTIONS(2376), - [anon_sym_DOT] = ACTIONS(2376), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_function] = ACTIONS(2374), - [anon_sym_QMARK_DOT] = ACTIONS(2376), - [anon_sym_AMP_AMP] = ACTIONS(2376), - [anon_sym_PIPE_PIPE] = ACTIONS(2376), - [anon_sym_GT_GT] = ACTIONS(2376), - [anon_sym_GT_GT_GT] = ACTIONS(2376), - [anon_sym_LT_LT] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_CARET] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_PLUS] = ACTIONS(2376), - [anon_sym_DASH] = ACTIONS(2376), - [anon_sym_SLASH] = ACTIONS(2376), - [anon_sym_PERCENT] = ACTIONS(2376), - [anon_sym_STAR_STAR] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_LT_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ] = ACTIONS(2376), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ] = ACTIONS(2376), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2376), - [anon_sym_GT_EQ] = ACTIONS(2376), - [anon_sym_QMARK_QMARK] = ACTIONS(2376), - [anon_sym_instanceof] = ACTIONS(2376), - [anon_sym_PLUS_PLUS] = ACTIONS(2376), - [anon_sym_DASH_DASH] = ACTIONS(2376), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2376), - [anon_sym_AT] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_readonly] = ACTIONS(2374), - [anon_sym_get] = ACTIONS(2374), - [anon_sym_set] = ACTIONS(2374), - [anon_sym_declare] = ACTIONS(2374), - [anon_sym_public] = ACTIONS(2374), - [anon_sym_private] = ACTIONS(2374), - [anon_sym_protected] = ACTIONS(2374), - [anon_sym_override] = ACTIONS(2374), - [anon_sym_module] = ACTIONS(2374), - [anon_sym_any] = ACTIONS(2374), - [anon_sym_number] = ACTIONS(2374), - [anon_sym_boolean] = ACTIONS(2374), - [anon_sym_string] = ACTIONS(2374), - [anon_sym_symbol] = ACTIONS(2374), - [anon_sym_object] = ACTIONS(2374), - [anon_sym_property] = ACTIONS(2374), - [anon_sym_signal] = ACTIONS(2374), - [anon_sym_on] = ACTIONS(2374), - [anon_sym_required] = ACTIONS(2374), - [anon_sym_component] = ACTIONS(2374), - [anon_sym_satisfies] = ACTIONS(2376), - [anon_sym_enum] = ACTIONS(2374), - [sym__automatic_semicolon] = ACTIONS(4006), - [sym__ternary_qmark] = ACTIONS(2380), - [sym_html_comment] = ACTIONS(5), - }, - [1917] = { - [sym_comment] = STATE(1917), - [sym_identifier] = ACTIONS(2442), - [anon_sym_export] = ACTIONS(2442), - [anon_sym_STAR] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_as] = ACTIONS(2442), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_COMMA] = ACTIONS(2442), - [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_from] = ACTIONS(2442), - [anon_sym_var] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_BANG] = ACTIONS(2442), - [anon_sym_LPAREN] = ACTIONS(2442), - [anon_sym_in] = ACTIONS(2442), - [anon_sym_of] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2442), - [anon_sym_LBRACK] = ACTIONS(2442), - [anon_sym_GT] = ACTIONS(2442), - [anon_sym_DOT] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_function] = ACTIONS(2442), - [anon_sym_QMARK_DOT] = ACTIONS(2442), - [anon_sym_AMP_AMP] = ACTIONS(2442), - [anon_sym_PIPE_PIPE] = ACTIONS(2442), - [anon_sym_GT_GT] = ACTIONS(2442), - [anon_sym_GT_GT_GT] = ACTIONS(2442), - [anon_sym_LT_LT] = ACTIONS(2442), - [anon_sym_AMP] = ACTIONS(2442), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_PIPE] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2442), - [anon_sym_SLASH] = ACTIONS(2442), - [anon_sym_PERCENT] = ACTIONS(2442), - [anon_sym_STAR_STAR] = ACTIONS(2442), - [anon_sym_LT] = ACTIONS(2442), - [anon_sym_LT_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2442), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ] = ACTIONS(2442), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2442), - [anon_sym_GT_EQ] = ACTIONS(2442), - [anon_sym_QMARK_QMARK] = ACTIONS(2442), - [anon_sym_instanceof] = ACTIONS(2442), - [anon_sym_PLUS_PLUS] = ACTIONS(2442), - [anon_sym_DASH_DASH] = ACTIONS(2442), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2442), - [anon_sym_AT] = ACTIONS(2442), - [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_property] = ACTIONS(2442), - [anon_sym_signal] = ACTIONS(2442), - [anon_sym_on] = ACTIONS(2442), - [anon_sym_required] = ACTIONS(2442), - [anon_sym_component] = ACTIONS(2442), - [anon_sym_satisfies] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2444), - [sym_html_comment] = ACTIONS(5), - }, - [1918] = { - [sym_comment] = STATE(1918), - [sym_identifier] = ACTIONS(2450), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_as] = ACTIONS(2452), - [anon_sym_namespace] = ACTIONS(2450), - [anon_sym_COMMA] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2450), - [anon_sym_from] = ACTIONS(2450), - [anon_sym_var] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2450), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_in] = ACTIONS(2452), - [anon_sym_of] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_GT] = ACTIONS(2452), - [anon_sym_DOT] = ACTIONS(2452), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_function] = ACTIONS(2450), - [anon_sym_QMARK_DOT] = ACTIONS(2452), - [anon_sym_AMP_AMP] = ACTIONS(2452), - [anon_sym_PIPE_PIPE] = ACTIONS(2452), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_GT_GT_GT] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_CARET] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2452), - [anon_sym_PERCENT] = ACTIONS(2452), - [anon_sym_STAR_STAR] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_LT_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ] = ACTIONS(2452), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ] = ACTIONS(2452), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2452), - [anon_sym_GT_EQ] = ACTIONS(2452), - [anon_sym_QMARK_QMARK] = ACTIONS(2452), - [anon_sym_instanceof] = ACTIONS(2452), - [anon_sym_PLUS_PLUS] = ACTIONS(2452), - [anon_sym_DASH_DASH] = ACTIONS(2452), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2452), - [anon_sym_AT] = ACTIONS(2450), - [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_property] = ACTIONS(2450), - [anon_sym_signal] = ACTIONS(2450), - [anon_sym_on] = ACTIONS(2450), - [anon_sym_required] = ACTIONS(2450), - [anon_sym_component] = ACTIONS(2450), - [anon_sym_satisfies] = ACTIONS(2452), - [anon_sym_enum] = ACTIONS(2450), - [sym__automatic_semicolon] = ACTIONS(4008), - [sym__ternary_qmark] = ACTIONS(2456), - [sym_html_comment] = ACTIONS(5), - }, - [1919] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1919), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1801] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1801), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(4010), + [anon_sym_GT] = ACTIONS(4141), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -238477,54 +227340,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1920] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1920), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1802] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1802), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(4012), + [anon_sym_GT] = ACTIONS(4143), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -238556,356 +227416,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1921] = { - [sym_comment] = STATE(1921), - [sym_identifier] = ACTIONS(2402), - [anon_sym_export] = ACTIONS(2402), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_default] = ACTIONS(2402), - [anon_sym_type] = ACTIONS(2402), - [anon_sym_as] = ACTIONS(2404), - [anon_sym_namespace] = ACTIONS(2402), - [anon_sym_COMMA] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2402), - [anon_sym_from] = ACTIONS(2402), - [anon_sym_var] = ACTIONS(2402), - [anon_sym_let] = ACTIONS(2402), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_in] = ACTIONS(2404), - [anon_sym_of] = ACTIONS(2402), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_GT] = ACTIONS(2404), - [anon_sym_DOT] = ACTIONS(2404), - [anon_sym_async] = ACTIONS(2402), - [anon_sym_function] = ACTIONS(2402), - [anon_sym_QMARK_DOT] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2404), - [anon_sym_GT_GT_GT] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_PLUS] = ACTIONS(2404), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_SLASH] = ACTIONS(2404), - [anon_sym_PERCENT] = ACTIONS(2404), - [anon_sym_STAR_STAR] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_LT_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2404), - [anon_sym_QMARK_QMARK] = ACTIONS(2404), - [anon_sym_instanceof] = ACTIONS(2404), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2404), - [anon_sym_AT] = ACTIONS(2402), - [anon_sym_static] = ACTIONS(2402), - [anon_sym_readonly] = ACTIONS(2402), - [anon_sym_get] = ACTIONS(2402), - [anon_sym_set] = ACTIONS(2402), - [anon_sym_declare] = ACTIONS(2402), - [anon_sym_public] = ACTIONS(2402), - [anon_sym_private] = ACTIONS(2402), - [anon_sym_protected] = ACTIONS(2402), - [anon_sym_override] = ACTIONS(2402), - [anon_sym_module] = ACTIONS(2402), - [anon_sym_any] = ACTIONS(2402), - [anon_sym_number] = ACTIONS(2402), - [anon_sym_boolean] = ACTIONS(2402), - [anon_sym_string] = ACTIONS(2402), - [anon_sym_symbol] = ACTIONS(2402), - [anon_sym_object] = ACTIONS(2402), - [anon_sym_property] = ACTIONS(2402), - [anon_sym_signal] = ACTIONS(2402), - [anon_sym_on] = ACTIONS(2402), - [anon_sym_required] = ACTIONS(2402), - [anon_sym_component] = ACTIONS(2402), - [anon_sym_satisfies] = ACTIONS(2404), - [anon_sym_enum] = ACTIONS(2402), - [sym__automatic_semicolon] = ACTIONS(4014), - [sym__ternary_qmark] = ACTIONS(2408), - [sym_html_comment] = ACTIONS(5), - }, - [1922] = { - [sym_comment] = STATE(1922), - [sym_identifier] = ACTIONS(2338), - [anon_sym_export] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_default] = ACTIONS(2338), - [anon_sym_type] = ACTIONS(2338), - [anon_sym_as] = ACTIONS(2338), - [anon_sym_namespace] = ACTIONS(2338), - [anon_sym_COMMA] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_from] = ACTIONS(2338), - [anon_sym_var] = ACTIONS(2338), - [anon_sym_let] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_in] = ACTIONS(2338), - [anon_sym_of] = ACTIONS(2338), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2338), - [anon_sym_DOT] = ACTIONS(2338), - [anon_sym_async] = ACTIONS(2338), - [anon_sym_function] = ACTIONS(2338), - [anon_sym_QMARK_DOT] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2338), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2338), - [anon_sym_PLUS] = ACTIONS(2338), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2338), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_STAR_STAR] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2338), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2338), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_instanceof] = ACTIONS(2338), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2338), - [anon_sym_AT] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2338), - [anon_sym_readonly] = ACTIONS(2338), - [anon_sym_get] = ACTIONS(2338), - [anon_sym_set] = ACTIONS(2338), - [anon_sym_declare] = ACTIONS(2338), - [anon_sym_public] = ACTIONS(2338), - [anon_sym_private] = ACTIONS(2338), - [anon_sym_protected] = ACTIONS(2338), - [anon_sym_override] = ACTIONS(2338), - [anon_sym_module] = ACTIONS(2338), - [anon_sym_any] = ACTIONS(2338), - [anon_sym_number] = ACTIONS(2338), - [anon_sym_boolean] = ACTIONS(2338), - [anon_sym_string] = ACTIONS(2338), - [anon_sym_symbol] = ACTIONS(2338), - [anon_sym_object] = ACTIONS(2338), - [anon_sym_property] = ACTIONS(2338), - [anon_sym_signal] = ACTIONS(2338), - [anon_sym_on] = ACTIONS(2338), - [anon_sym_required] = ACTIONS(2338), - [anon_sym_component] = ACTIONS(2338), - [anon_sym_satisfies] = ACTIONS(2338), - [anon_sym_enum] = ACTIONS(2338), - [sym__automatic_semicolon] = ACTIONS(2340), - [sym__ternary_qmark] = ACTIONS(2340), - [sym_html_comment] = ACTIONS(5), - }, - [1923] = { - [sym_import] = STATE(6975), - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(1923), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type_query_member_expression_in_type_annotation] = STATE(4970), - [sym__type_query_call_expression_in_type_annotation] = STATE(5215), - [sym_asserts] = STATE(5706), - [sym__type] = STATE(4934), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_predicate] = STATE(5705), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4818), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_import] = ACTIONS(39), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(4018), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_asserts] = ACTIONS(4020), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [1924] = { - [sym_import] = STATE(7117), - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(1924), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type_query_member_expression_in_type_annotation] = STATE(5212), - [sym__type_query_call_expression_in_type_annotation] = STATE(5603), - [sym_asserts] = STATE(6245), - [sym__type] = STATE(5213), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_predicate] = STATE(6235), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(4939), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_import] = ACTIONS(39), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_asserts] = ACTIONS(4062), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [1925] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1925), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5022), - [sym__type_query_call_expression_in_type_annotation] = STATE(5300), - [sym_asserts] = STATE(7572), - [sym__type] = STATE(5015), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_predicate] = STATE(7708), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4590), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(4070), + [1803] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1803), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), @@ -238913,6 +227457,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(4145), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -238925,7 +227470,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2277), [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(4072), + [sym_this] = ACTIONS(2281), [sym_true] = ACTIONS(2279), [sym_false] = ACTIONS(2279), [sym_null] = ACTIONS(2279), @@ -238939,7 +227484,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(122), [anon_sym_object] = ACTIONS(122), [anon_sym_abstract] = ACTIONS(114), - [anon_sym_asserts] = ACTIONS(4074), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), [anon_sym_unique] = ACTIONS(120), @@ -238948,53 +227492,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1926] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1926), - [sym_formal_parameters] = STATE(8370), - [sym_rest_pattern] = STATE(8160), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5591), - [sym_tuple_parameter] = STATE(8027), - [sym_optional_tuple_parameter] = STATE(8027), - [sym_optional_type] = STATE(8027), - [sym_rest_type] = STATE(8027), - [sym__tuple_type_member] = STATE(7607), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(3760), + [1804] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1804), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), + [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_GT] = ACTIONS(4147), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), [anon_sym_AMP] = ACTIONS(76), [anon_sym_PIPE] = ACTIONS(78), [anon_sym_PLUS] = ACTIONS(2273), @@ -239026,39 +227568,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1927] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1927), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1805] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1805), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239067,7 +227609,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4076), + [anon_sym_GT] = ACTIONS(4149), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239102,39 +227644,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1928] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1928), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1806] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1806), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239143,7 +227685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4078), + [anon_sym_GT] = ACTIONS(4151), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239178,39 +227720,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1929] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1929), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1807] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1807), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239219,7 +227761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4080), + [anon_sym_GT] = ACTIONS(4153), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239254,39 +227796,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1930] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1930), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1808] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1808), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239295,7 +227837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4082), + [anon_sym_GT] = ACTIONS(4155), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239330,39 +227872,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1931] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1931), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1809] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1809), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239371,7 +227913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4084), + [anon_sym_GT] = ACTIONS(4157), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239406,39 +227948,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1932] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1932), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1810] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1810), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239447,7 +227989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4086), + [anon_sym_GT] = ACTIONS(4159), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239482,39 +228024,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1933] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1933), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1811] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1811), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239523,7 +228065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4088), + [anon_sym_GT] = ACTIONS(4161), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239558,39 +228100,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1934] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1934), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1812] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1812), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239599,7 +228141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4090), + [anon_sym_GT] = ACTIONS(4163), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239634,39 +228176,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1935] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1935), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1813] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1813), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239675,7 +228217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4092), + [anon_sym_GT] = ACTIONS(4165), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239710,39 +228252,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1936] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1936), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1814] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1814), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239751,7 +228293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4094), + [anon_sym_GT] = ACTIONS(4167), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239786,39 +228328,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1937] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1937), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1815] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1815), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239827,7 +228369,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4096), + [anon_sym_GT] = ACTIONS(4169), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -239862,115 +228404,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1938] = { - [sym_export_statement] = STATE(5645), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(7883), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(7729), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1938), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(7883), - [sym_method_definition] = STATE(7729), - [sym_pair] = STATE(7729), - [sym_pair_pattern] = STATE(7883), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5645), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5645), - [sym_property_signature] = STATE(5645), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5645), - [sym_index_signature] = STATE(5645), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4098), - [anon_sym_export] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(4098), - [anon_sym_namespace] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(4102), - [anon_sym_RBRACE] = ACTIONS(4102), - [anon_sym_from] = ACTIONS(4098), - [anon_sym_let] = ACTIONS(4098), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4098), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4105), - [anon_sym_new] = ACTIONS(4107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4109), - [anon_sym_readonly] = ACTIONS(4111), - [anon_sym_get] = ACTIONS(4113), - [anon_sym_set] = ACTIONS(4113), - [anon_sym_declare] = ACTIONS(4098), - [anon_sym_public] = ACTIONS(4115), - [anon_sym_private] = ACTIONS(4115), - [anon_sym_protected] = ACTIONS(4115), - [anon_sym_override] = ACTIONS(4117), - [anon_sym_module] = ACTIONS(4098), - [anon_sym_any] = ACTIONS(4098), - [anon_sym_number] = ACTIONS(4098), - [anon_sym_boolean] = ACTIONS(4098), - [anon_sym_string] = ACTIONS(4098), - [anon_sym_symbol] = ACTIONS(4098), - [anon_sym_object] = ACTIONS(4098), - [anon_sym_property] = ACTIONS(4098), - [anon_sym_signal] = ACTIONS(4098), - [anon_sym_on] = ACTIONS(4098), - [anon_sym_required] = ACTIONS(4098), - [anon_sym_component] = ACTIONS(4098), - [anon_sym_abstract] = ACTIONS(3804), - [sym_html_comment] = ACTIONS(5), - }, - [1939] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1939), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1816] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1816), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -239979,7 +228445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4119), + [anon_sym_GT] = ACTIONS(4171), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240014,39 +228480,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1940] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1940), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1817] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1817), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240055,7 +228521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4121), + [anon_sym_GT] = ACTIONS(4173), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240090,39 +228556,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1941] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1941), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1818] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1818), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240131,7 +228597,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(4175), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240166,39 +228632,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1942] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1942), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1819] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1819), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240207,7 +228673,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4125), + [anon_sym_GT] = ACTIONS(4177), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240242,39 +228708,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1943] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1943), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1820] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1820), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240283,7 +228749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4127), + [anon_sym_GT] = ACTIONS(4179), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240318,39 +228784,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1944] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1944), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1821] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1821), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240359,7 +228825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4129), + [anon_sym_GT] = ACTIONS(4181), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240394,39 +228860,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1945] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1945), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1822] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1822), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240435,7 +228901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4131), + [anon_sym_GT] = ACTIONS(4183), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240470,39 +228936,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1946] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1946), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1823] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1823), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240511,7 +228977,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4133), + [anon_sym_GT] = ACTIONS(4185), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240546,39 +229012,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1947] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1947), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1824] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1824), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5305), + [sym__type_query_call_expression_in_type_annotation] = STATE(6173), + [sym__type] = STATE(5304), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240587,7 +229053,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4135), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240622,115 +229087,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1948] = { - [sym_export_statement] = STATE(5689), - [sym_object_pattern] = STATE(5164), - [sym_object_assignment_pattern] = STATE(7883), - [sym_array_pattern] = STATE(5164), - [sym__call_signature] = STATE(6248), - [sym__destructuring_pattern] = STATE(8206), - [sym_spread_element] = STATE(7729), - [sym_string] = STATE(4879), - [sym_comment] = STATE(1948), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym_rest_pattern] = STATE(7883), - [sym_method_definition] = STATE(7729), - [sym_pair] = STATE(7729), - [sym_pair_pattern] = STATE(7883), - [sym__property_name] = STATE(4779), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5689), - [sym_accessibility_modifier] = STATE(3766), - [sym_override_modifier] = STATE(3907), - [sym_call_signature] = STATE(5689), - [sym_property_signature] = STATE(5689), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5689), - [sym_index_signature] = STATE(5689), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4098), - [anon_sym_export] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_type] = ACTIONS(4098), - [anon_sym_namespace] = ACTIONS(4098), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(4102), - [anon_sym_RBRACE] = ACTIONS(4102), - [anon_sym_from] = ACTIONS(4098), - [anon_sym_let] = ACTIONS(4098), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4098), - [anon_sym_LBRACK] = ACTIONS(3784), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4105), - [anon_sym_new] = ACTIONS(4107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(211), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4109), - [anon_sym_readonly] = ACTIONS(4111), - [anon_sym_get] = ACTIONS(4113), - [anon_sym_set] = ACTIONS(4113), - [anon_sym_declare] = ACTIONS(4098), - [anon_sym_public] = ACTIONS(4115), - [anon_sym_private] = ACTIONS(4115), - [anon_sym_protected] = ACTIONS(4115), - [anon_sym_override] = ACTIONS(4117), - [anon_sym_module] = ACTIONS(4098), - [anon_sym_any] = ACTIONS(4098), - [anon_sym_number] = ACTIONS(4098), - [anon_sym_boolean] = ACTIONS(4098), - [anon_sym_string] = ACTIONS(4098), - [anon_sym_symbol] = ACTIONS(4098), - [anon_sym_object] = ACTIONS(4098), - [anon_sym_property] = ACTIONS(4098), - [anon_sym_signal] = ACTIONS(4098), - [anon_sym_on] = ACTIONS(4098), - [anon_sym_required] = ACTIONS(4098), - [anon_sym_component] = ACTIONS(4098), - [anon_sym_abstract] = ACTIONS(3804), - [sym_html_comment] = ACTIONS(5), - }, - [1949] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1949), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1825] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1825), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5463), + [sym__type_query_call_expression_in_type_annotation] = STATE(6262), + [sym__type] = STATE(5464), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240739,7 +229128,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4137), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240774,39 +229162,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1950] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1950), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1826] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1826), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5421), + [sym__type_query_call_expression_in_type_annotation] = STATE(6295), + [sym__type] = STATE(5422), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240815,7 +229203,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4139), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240850,39 +229237,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1951] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1951), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1827] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1827), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5338), + [sym__type_query_call_expression_in_type_annotation] = STATE(6368), + [sym__type] = STATE(5339), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240891,7 +229278,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4141), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -240926,39 +229312,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1952] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1952), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1828] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1828), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5383), + [sym__type_query_call_expression_in_type_annotation] = STATE(6332), + [sym__type] = STATE(5384), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -240967,7 +229353,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4143), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241002,39 +229387,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1953] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1953), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1829] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1829), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(4800), + [sym__type_query_call_expression_in_type_annotation] = STATE(5111), + [sym__type] = STATE(4810), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -241043,7 +229428,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4145), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241078,39 +229462,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1954] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1954), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1830] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1830), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5517), + [sym__type_query_call_expression_in_type_annotation] = STATE(6212), + [sym__type] = STATE(5520), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -241119,7 +229503,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4147), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241154,115 +229537,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1955] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1955), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), + [1831] = { + [sym_import] = STATE(6990), + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1831), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type_query_member_expression_in_type_annotation] = STATE(4731), + [sym__type_query_call_expression_in_type_annotation] = STATE(4967), + [sym__type] = STATE(4732), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), [anon_sym_import] = ACTIONS(39), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4149), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [1956] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1956), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1832] = { + [sym_import] = STATE(6807), + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1832), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type_query_member_expression_in_type_annotation] = STATE(5833), + [sym__type_query_call_expression_in_type_annotation] = STATE(6693), + [sym__type] = STATE(5836), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -241271,7 +229653,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4151), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241306,124 +229687,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1957] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1957), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4153), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [1833] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1833), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym_asserts] = STATE(3197), + [sym__type] = STATE(3196), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_predicate] = STATE(3197), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3097), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4215), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_asserts] = ACTIONS(4223), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), [sym_html_comment] = ACTIONS(5), }, - [1958] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1958), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), + [1834] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1834), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym_asserts] = STATE(4378), + [sym__type] = STATE(4386), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_predicate] = STATE(4378), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4368), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(4018), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4155), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241436,7 +229812,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2277), [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), + [sym_this] = ACTIONS(4020), [sym_true] = ACTIONS(2279), [sym_false] = ACTIONS(2279), [sym_null] = ACTIONS(2279), @@ -241450,6 +229826,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(122), [anon_sym_object] = ACTIONS(122), [anon_sym_abstract] = ACTIONS(114), + [anon_sym_asserts] = ACTIONS(4022), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), [anon_sym_unique] = ACTIONS(120), @@ -241458,48 +229835,489 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1959] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1959), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), + [1835] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1835), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym_asserts] = STATE(4706), + [sym__type] = STATE(4705), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_predicate] = STATE(4706), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4601), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(4026), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_asserts] = ACTIONS(4028), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1836] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1836), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym_asserts] = STATE(4838), + [sym__type] = STATE(4837), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_predicate] = STATE(4838), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4743), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4062), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_asserts] = ACTIONS(4070), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), + [sym_html_comment] = ACTIONS(5), + }, + [1837] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1837), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym_asserts] = STATE(2793), + [sym__type] = STATE(2792), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_predicate] = STATE(2793), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2616), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4231), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4259), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_asserts] = ACTIONS(4267), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1838] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1838), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym_asserts] = STATE(3239), + [sym__type] = STATE(3238), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_predicate] = STATE(3239), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3097), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4187), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4215), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_asserts] = ACTIONS(4223), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1839] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1839), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym_asserts] = STATE(4803), + [sym__type] = STATE(4802), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_predicate] = STATE(4803), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4743), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4030), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4062), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_asserts] = ACTIONS(4070), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), + [sym_html_comment] = ACTIONS(5), + }, + [1840] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1840), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym_asserts] = STATE(2687), + [sym__type] = STATE(2681), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_predicate] = STATE(2687), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2616), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4231), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4259), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_asserts] = ACTIONS(4267), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1841] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1841), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym_asserts] = STATE(4425), + [sym__type] = STATE(4408), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_predicate] = STATE(4425), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4368), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(4018), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4157), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241512,7 +230330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2277), [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), + [sym_this] = ACTIONS(4020), [sym_true] = ACTIONS(2279), [sym_false] = ACTIONS(2279), [sym_null] = ACTIONS(2279), @@ -241526,6 +230344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(122), [anon_sym_object] = ACTIONS(122), [anon_sym_abstract] = ACTIONS(114), + [anon_sym_asserts] = ACTIONS(4022), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), [anon_sym_unique] = ACTIONS(120), @@ -241534,48 +230353,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1960] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1960), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1842] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1842), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym_asserts] = STATE(4652), + [sym__type] = STATE(4654), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_predicate] = STATE(4652), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4601), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(4024), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(4026), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_asserts] = ACTIONS(4028), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1843] = { + [sym_variable_declarator] = STATE(6164), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(1843), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1844] = { + [sym_nested_identifier] = STATE(469), + [sym_string] = STATE(468), + [sym_comment] = STATE(1844), + [sym__module] = STATE(489), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4285), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1845] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1845), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6349), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4159), + [anon_sym_RBRACK] = ACTIONS(4287), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241610,48 +230643,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1961] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1961), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1846] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1846), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6314), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4161), + [anon_sym_RBRACK] = ACTIONS(4289), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241686,48 +230715,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1962] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1962), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1847] = { + [sym_variable_declarator] = STATE(6164), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(1847), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1848] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1848), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6304), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4163), + [anon_sym_RBRACK] = ACTIONS(4291), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241762,48 +230859,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1963] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1963), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1849] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1849), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6192), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4165), + [anon_sym_RBRACK] = ACTIONS(4293), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241838,48 +230931,116 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1964] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1964), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5714), - [sym__type_query_call_expression_in_type_annotation] = STATE(6558), - [sym__type] = STATE(5713), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_type_parameter] = STATE(7116), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(4167), + [1850] = { + [sym_nested_identifier] = STATE(1389), + [sym_string] = STATE(1508), + [sym_comment] = STATE(1850), + [sym__module] = STATE(1649), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4299), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1851] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1851), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6345), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), - [anon_sym_const] = ACTIONS(4169), + [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_RBRACK] = ACTIONS(4301), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241914,48 +231075,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1965] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1965), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1852] = { + [sym_nested_identifier] = STATE(469), + [sym_string] = STATE(468), + [sym_comment] = STATE(1852), + [sym__module] = STATE(489), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4285), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1853] = { + [sym_nested_identifier] = STATE(1389), + [sym_string] = STATE(1508), + [sym_comment] = STATE(1853), + [sym__module] = STATE(1649), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4299), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1854] = { + [sym_nested_identifier] = STATE(1389), + [sym_string] = STATE(1508), + [sym_comment] = STATE(1854), + [sym__module] = STATE(1649), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4299), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1855] = { + [sym_nested_identifier] = STATE(469), + [sym_string] = STATE(468), + [sym_comment] = STATE(1855), + [sym__module] = STATE(489), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4285), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1856] = { + [sym_variable_declarator] = STATE(6164), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(1856), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1857] = { + [sym_variable_declarator] = STATE(6164), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(1857), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(4279), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1858] = { + [sym_nested_identifier] = STATE(469), + [sym_string] = STATE(468), + [sym_comment] = STATE(1858), + [sym__module] = STATE(489), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4285), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1859] = { + [sym_nested_identifier] = STATE(1389), + [sym_string] = STATE(1508), + [sym_comment] = STATE(1859), + [sym__module] = STATE(1649), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1220), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4299), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [1860] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1860), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3231), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1861] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1861), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6100), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4171), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -241990,48 +231793,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1966] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1966), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1862] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1862), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4430), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4173), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -242066,48 +231864,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1967] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1967), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1863] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1863), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6344), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4175), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -242142,48 +231935,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1968] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1968), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1864] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1864), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6266), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4177), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -242218,48 +232006,611 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1969] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1969), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1865] = { + [sym_comment] = STATE(1865), + [sym_arguments] = STATE(2007), + [sym_identifier] = ACTIONS(4307), + [anon_sym_export] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4307), + [anon_sym_namespace] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_typeof] = ACTIONS(4307), + [anon_sym_import] = ACTIONS(4307), + [anon_sym_from] = ACTIONS(4307), + [anon_sym_let] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(4309), + [anon_sym_await] = ACTIONS(4307), + [anon_sym_of] = ACTIONS(4307), + [anon_sym_yield] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_LTtemplate_GT] = ACTIONS(4307), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_DQUOTE] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4307), + [anon_sym_class] = ACTIONS(4307), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_function] = ACTIONS(4307), + [anon_sym_new] = ACTIONS(4307), + [anon_sym_using] = ACTIONS(4307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4307), + [anon_sym_void] = ACTIONS(4307), + [anon_sym_delete] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4307), + [sym_number] = ACTIONS(4307), + [sym_private_property_identifier] = ACTIONS(4307), + [sym_this] = ACTIONS(4307), + [sym_super] = ACTIONS(4307), + [sym_true] = ACTIONS(4307), + [sym_false] = ACTIONS(4307), + [sym_null] = ACTIONS(4307), + [sym_undefined] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_static] = ACTIONS(4307), + [anon_sym_readonly] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_declare] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_module] = ACTIONS(4307), + [anon_sym_any] = ACTIONS(4307), + [anon_sym_number] = ACTIONS(4307), + [anon_sym_boolean] = ACTIONS(4307), + [anon_sym_string] = ACTIONS(4307), + [anon_sym_symbol] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_property] = ACTIONS(4307), + [anon_sym_signal] = ACTIONS(4307), + [anon_sym_on] = ACTIONS(4307), + [anon_sym_required] = ACTIONS(4307), + [anon_sym_component] = ACTIONS(4307), + [sym_html_comment] = ACTIONS(5), + }, + [1866] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1866), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5851), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1867] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1867), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5612), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1868] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1868), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5764), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1869] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1869), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5864), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1870] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1870), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5625), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1871] = { + [sym_comment] = STATE(1871), + [sym_decorator] = STATE(2010), + [aux_sym_export_statement_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(4313), + [anon_sym_export] = ACTIONS(4313), + [anon_sym_type] = ACTIONS(4313), + [anon_sym_namespace] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_typeof] = ACTIONS(4313), + [anon_sym_import] = ACTIONS(4313), + [anon_sym_from] = ACTIONS(4313), + [anon_sym_let] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_await] = ACTIONS(4313), + [anon_sym_of] = ACTIONS(4313), + [anon_sym_yield] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_LTtemplate_GT] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_async] = ACTIONS(4313), + [anon_sym_function] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4313), + [anon_sym_using] = ACTIONS(4313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_TILDE] = ACTIONS(4313), + [anon_sym_void] = ACTIONS(4313), + [anon_sym_delete] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4313), + [sym_number] = ACTIONS(4313), + [sym_private_property_identifier] = ACTIONS(4313), + [sym_this] = ACTIONS(4313), + [sym_super] = ACTIONS(4313), + [sym_true] = ACTIONS(4313), + [sym_false] = ACTIONS(4313), + [sym_null] = ACTIONS(4313), + [sym_undefined] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_static] = ACTIONS(4313), + [anon_sym_readonly] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_declare] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_module] = ACTIONS(4313), + [anon_sym_any] = ACTIONS(4313), + [anon_sym_number] = ACTIONS(4313), + [anon_sym_boolean] = ACTIONS(4313), + [anon_sym_string] = ACTIONS(4313), + [anon_sym_symbol] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_property] = ACTIONS(4313), + [anon_sym_signal] = ACTIONS(4313), + [anon_sym_on] = ACTIONS(4313), + [anon_sym_required] = ACTIONS(4313), + [anon_sym_component] = ACTIONS(4313), + [sym_html_comment] = ACTIONS(5), + }, + [1872] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1872), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5818), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1873] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1873), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4434), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4179), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -242294,48 +232645,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1970] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1970), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1874] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1874), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6987), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4435), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4181), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -242370,48 +232716,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1971] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1971), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1875] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1875), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4383), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_GT] = ACTIONS(4183), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -242446,194 +232787,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1972] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1972), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5022), - [sym__type_query_call_expression_in_type_annotation] = STATE(5300), - [sym__type] = STATE(5015), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), + [1876] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1876), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4690), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1877] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1877), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(7098), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4701), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), [anon_sym_abstract] = ACTIONS(114), [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [1973] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1973), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5836), - [sym__type_query_call_expression_in_type_annotation] = STATE(7072), - [sym__type] = STATE(5811), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), + [1878] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1878), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(7098), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4691), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), [anon_sym_abstract] = ACTIONS(114), [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [1974] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1974), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5565), - [sym__type_query_call_expression_in_type_annotation] = STATE(6417), - [sym__type] = STATE(5566), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1879] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1879), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4687), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1880] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1880), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4382), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), @@ -242671,44 +233142,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1975] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1975), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5638), - [sym__type_query_call_expression_in_type_annotation] = STATE(6389), - [sym__type] = STATE(5640), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1881] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1881), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3222), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1882] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1882), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6333), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), @@ -242746,44 +233284,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1976] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1976), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5598), - [sym__type_query_call_expression_in_type_annotation] = STATE(6318), - [sym__type] = STATE(5597), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1883] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1883), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4676), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1884] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1884), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6987), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4437), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), @@ -242821,44 +233426,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1977] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1977), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5618), - [sym__type_query_call_expression_in_type_annotation] = STATE(6331), - [sym__type] = STATE(5619), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1885] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1885), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4649), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1886] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1886), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4428), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), @@ -242896,44 +233568,466 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1978] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1978), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5732), - [sym__type_query_call_expression_in_type_annotation] = STATE(6578), - [sym__type] = STATE(5731), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1887] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1887), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3351), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4318), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1888] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1888), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2659), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4322), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1889] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1889), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4772), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), + [sym_html_comment] = ACTIONS(5), + }, + [1890] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1890), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2651), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1891] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1891), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4773), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), + [sym_html_comment] = ACTIONS(5), + }, + [1892] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1892), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3354), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1893] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1893), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6264), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), @@ -242971,119 +234065,963 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1979] = { - [sym_import] = STATE(6975), - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(1979), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type_query_member_expression_in_type_annotation] = STATE(4970), - [sym__type_query_call_expression_in_type_annotation] = STATE(5215), - [sym__type] = STATE(4934), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_import] = ACTIONS(39), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1894] = { + [sym_comment] = STATE(1894), + [sym_decorator] = STATE(2010), + [aux_sym_export_statement_repeat1] = STATE(1871), + [sym_identifier] = ACTIONS(4313), + [anon_sym_export] = ACTIONS(4313), + [anon_sym_type] = ACTIONS(4313), + [anon_sym_namespace] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4313), + [anon_sym_typeof] = ACTIONS(4313), + [anon_sym_import] = ACTIONS(4313), + [anon_sym_from] = ACTIONS(4313), + [anon_sym_let] = ACTIONS(4313), + [anon_sym_BANG] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4313), + [anon_sym_await] = ACTIONS(4313), + [anon_sym_of] = ACTIONS(4313), + [anon_sym_yield] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_LTtemplate_GT] = ACTIONS(4313), + [anon_sym_DQUOTE] = ACTIONS(4313), + [anon_sym_SQUOTE] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4330), + [anon_sym_async] = ACTIONS(4313), + [anon_sym_function] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4313), + [anon_sym_using] = ACTIONS(4313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_TILDE] = ACTIONS(4313), + [anon_sym_void] = ACTIONS(4313), + [anon_sym_delete] = ACTIONS(4313), + [anon_sym_PLUS_PLUS] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4313), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4313), + [sym_number] = ACTIONS(4313), + [sym_private_property_identifier] = ACTIONS(4313), + [sym_this] = ACTIONS(4313), + [sym_super] = ACTIONS(4313), + [sym_true] = ACTIONS(4313), + [sym_false] = ACTIONS(4313), + [sym_null] = ACTIONS(4313), + [sym_undefined] = ACTIONS(4313), + [anon_sym_AT] = ACTIONS(4315), + [anon_sym_static] = ACTIONS(4313), + [anon_sym_readonly] = ACTIONS(4313), + [anon_sym_get] = ACTIONS(4313), + [anon_sym_set] = ACTIONS(4313), + [anon_sym_declare] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_override] = ACTIONS(4313), + [anon_sym_module] = ACTIONS(4313), + [anon_sym_any] = ACTIONS(4313), + [anon_sym_number] = ACTIONS(4313), + [anon_sym_boolean] = ACTIONS(4313), + [anon_sym_string] = ACTIONS(4313), + [anon_sym_symbol] = ACTIONS(4313), + [anon_sym_object] = ACTIONS(4313), + [anon_sym_property] = ACTIONS(4313), + [anon_sym_signal] = ACTIONS(4313), + [anon_sym_on] = ACTIONS(4313), + [anon_sym_required] = ACTIONS(4313), + [anon_sym_component] = ACTIONS(4313), + [sym_html_comment] = ACTIONS(5), + }, + [1895] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1895), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4835), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), [sym_html_comment] = ACTIONS(5), }, - [1980] = { - [sym_import] = STATE(7098), - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1980), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type_query_member_expression_in_type_annotation] = STATE(5521), - [sym__type_query_call_expression_in_type_annotation] = STATE(6551), - [sym__type] = STATE(5523), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1896] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1896), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3173), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1897] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1897), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4763), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), + [sym_html_comment] = ACTIONS(5), + }, + [1898] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1898), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2716), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1899] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1899), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3172), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1900] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1900), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4836), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), + [sym_html_comment] = ACTIONS(5), + }, + [1901] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1901), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2710), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1902] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1902), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3224), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1903] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1903), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(6031), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1904] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1904), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4971), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1905] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1905), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4972), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1906] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1906), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4959), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1907] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1907), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4399), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_import] = ACTIONS(39), [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), @@ -243121,335 +235059,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1981] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(1981), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym_asserts] = STATE(3447), - [sym__type] = STATE(3448), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_predicate] = STATE(3447), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3182), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4185), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4213), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_asserts] = ACTIONS(4221), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [1982] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(1982), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym_asserts] = STATE(5012), - [sym__type] = STATE(5010), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_predicate] = STATE(5012), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(4939), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_asserts] = ACTIONS(4062), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [1983] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(1983), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym_asserts] = STATE(4871), - [sym__type] = STATE(4873), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_predicate] = STATE(4871), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4818), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(4018), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_asserts] = ACTIONS(4020), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [1984] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(1984), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym_asserts] = STATE(4908), - [sym__type] = STATE(4907), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_predicate] = STATE(4908), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4818), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1908] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1908), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5561), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(4018), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_asserts] = ACTIONS(4020), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [1985] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1985), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym_asserts] = STATE(4681), - [sym__type] = STATE(4682), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_predicate] = STATE(4681), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4590), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(4070), + [1909] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1909), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5498), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), @@ -243468,7 +235179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2277), [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(4072), + [sym_this] = ACTIONS(2281), [sym_true] = ACTIONS(2279), [sym_false] = ACTIONS(2279), [sym_null] = ACTIONS(2279), @@ -243482,7 +235193,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(122), [anon_sym_object] = ACTIONS(122), [anon_sym_abstract] = ACTIONS(114), - [anon_sym_asserts] = ACTIONS(4074), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), [anon_sym_unique] = ACTIONS(120), @@ -243491,187 +235201,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1986] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(1986), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym_asserts] = STATE(3469), - [sym__type] = STATE(3465), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_predicate] = STATE(3469), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3182), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4185), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4213), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_asserts] = ACTIONS(4221), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [1987] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(1987), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym_asserts] = STATE(2870), - [sym__type] = STATE(2871), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_predicate] = STATE(2870), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2760), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4229), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4257), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_asserts] = ACTIONS(4265), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [1988] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1988), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym_asserts] = STATE(4595), - [sym__type] = STATE(4634), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_predicate] = STATE(4595), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4590), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(4070), + [1910] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1910), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4421), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(2261), @@ -243690,7 +235250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(2277), [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(4072), + [sym_this] = ACTIONS(2281), [sym_true] = ACTIONS(2279), [sym_false] = ACTIONS(2279), [sym_null] = ACTIONS(2279), @@ -243704,7 +235264,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(122), [anon_sym_object] = ACTIONS(122), [anon_sym_abstract] = ACTIONS(114), - [anon_sym_asserts] = ACTIONS(4074), [anon_sym_infer] = ACTIONS(116), [anon_sym_keyof] = ACTIONS(118), [anon_sym_unique] = ACTIONS(120), @@ -243713,256 +235272,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1989] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(1989), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym_asserts] = STATE(2834), - [sym__type] = STATE(2835), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_predicate] = STATE(2834), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2760), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4229), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4257), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_asserts] = ACTIONS(4265), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [1990] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(1990), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym_asserts] = STATE(5074), - [sym__type] = STATE(5073), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_predicate] = STATE(5074), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(4939), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), + [1911] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1911), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5548), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4054), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_asserts] = ACTIONS(4062), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [1991] = { - [sym_variable_declarator] = STATE(6462), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(1991), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4273), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [1992] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1992), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6337), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1912] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1912), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5387), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -243970,7 +235380,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(4279), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -244005,396 +235414,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1993] = { - [sym_variable_declarator] = STATE(6462), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(1993), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4273), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [1994] = { - [sym_nested_identifier] = STATE(428), - [sym_string] = STATE(463), - [sym_comment] = STATE(1994), - [sym__module] = STATE(508), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4285), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [1995] = { - [sym_nested_identifier] = STATE(1325), - [sym_string] = STATE(1610), - [sym_comment] = STATE(1995), - [sym__module] = STATE(1668), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [1996] = { - [sym_nested_identifier] = STATE(428), - [sym_string] = STATE(463), - [sym_comment] = STATE(1996), - [sym__module] = STATE(508), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4285), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [1997] = { - [sym_nested_identifier] = STATE(1325), - [sym_string] = STATE(1610), - [sym_comment] = STATE(1997), - [sym__module] = STATE(1668), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [1998] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(1998), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6449), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1913] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1913), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5998), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -244402,7 +235451,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(4293), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -244437,252 +235485,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [1999] = { - [sym_nested_identifier] = STATE(428), - [sym_string] = STATE(463), - [sym_comment] = STATE(1999), - [sym__module] = STATE(508), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4285), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [2000] = { - [sym_nested_identifier] = STATE(1325), - [sym_string] = STATE(1610), - [sym_comment] = STATE(2000), - [sym__module] = STATE(1668), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [2001] = { - [sym_variable_declarator] = STATE(6462), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(2001), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4273), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [2002] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2002), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6464), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1914] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1914), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4402), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -244690,7 +235522,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(4295), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -244725,36 +235556,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2003] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2003), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6576), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1915] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1915), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6306), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -244762,7 +235593,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(4297), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -244797,252 +235627,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2004] = { - [sym_nested_identifier] = STATE(428), - [sym_string] = STATE(463), - [sym_comment] = STATE(2004), - [sym__module] = STATE(508), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4281), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4285), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [2005] = { - [sym_nested_identifier] = STATE(1325), - [sym_string] = STATE(1610), - [sym_comment] = STATE(2005), - [sym__module] = STATE(1668), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4287), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [2006] = { - [sym_variable_declarator] = STATE(6462), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(2006), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4273), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), + [1916] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1916), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2671), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), [sym_html_comment] = ACTIONS(5), }, - [2007] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2007), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6485), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1917] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1917), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6018), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -245050,7 +235735,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(41), [anon_sym_LPAREN] = ACTIONS(2263), [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_RBRACK] = ACTIONS(4299), [anon_sym_DQUOTE] = ACTIONS(2267), [anon_sym_SQUOTE] = ACTIONS(2269), [anon_sym_new] = ACTIONS(2271), @@ -245085,746 +235769,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2008] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2008), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(7018), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(3332), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2009] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2009), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6047), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2010] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2010), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2842), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2011] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2011), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3319), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4309), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2012] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2012), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6086), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2013] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2013), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6087), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2014] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2014), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6099), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2015] = { - [sym_comment] = STATE(2015), - [sym_decorator] = STATE(2157), - [aux_sym_export_statement_repeat1] = STATE(2015), - [sym_identifier] = ACTIONS(4311), - [anon_sym_export] = ACTIONS(4311), - [anon_sym_type] = ACTIONS(4311), - [anon_sym_namespace] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_typeof] = ACTIONS(4311), - [anon_sym_import] = ACTIONS(4311), - [anon_sym_from] = ACTIONS(4311), - [anon_sym_let] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_await] = ACTIONS(4311), - [anon_sym_of] = ACTIONS(4311), - [anon_sym_yield] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_LTtemplate_GT] = ACTIONS(4311), - [anon_sym_DQUOTE] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_class] = ACTIONS(4311), - [anon_sym_async] = ACTIONS(4311), - [anon_sym_function] = ACTIONS(4311), - [anon_sym_new] = ACTIONS(4311), - [anon_sym_using] = ACTIONS(4311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_TILDE] = ACTIONS(4311), - [anon_sym_void] = ACTIONS(4311), - [anon_sym_delete] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4311), - [sym_number] = ACTIONS(4311), - [sym_private_property_identifier] = ACTIONS(4311), - [sym_this] = ACTIONS(4311), - [sym_super] = ACTIONS(4311), - [sym_true] = ACTIONS(4311), - [sym_false] = ACTIONS(4311), - [sym_null] = ACTIONS(4311), - [sym_undefined] = ACTIONS(4311), - [anon_sym_AT] = ACTIONS(4313), - [anon_sym_static] = ACTIONS(4311), - [anon_sym_readonly] = ACTIONS(4311), - [anon_sym_get] = ACTIONS(4311), - [anon_sym_set] = ACTIONS(4311), - [anon_sym_declare] = ACTIONS(4311), - [anon_sym_public] = ACTIONS(4311), - [anon_sym_private] = ACTIONS(4311), - [anon_sym_protected] = ACTIONS(4311), - [anon_sym_override] = ACTIONS(4311), - [anon_sym_module] = ACTIONS(4311), - [anon_sym_any] = ACTIONS(4311), - [anon_sym_number] = ACTIONS(4311), - [anon_sym_boolean] = ACTIONS(4311), - [anon_sym_string] = ACTIONS(4311), - [anon_sym_symbol] = ACTIONS(4311), - [anon_sym_object] = ACTIONS(4311), - [anon_sym_property] = ACTIONS(4311), - [anon_sym_signal] = ACTIONS(4311), - [anon_sym_on] = ACTIONS(4311), - [anon_sym_required] = ACTIONS(4311), - [anon_sym_component] = ACTIONS(4311), - [sym_html_comment] = ACTIONS(5), - }, - [2016] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2016), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2841), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2017] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2017), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3395), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), + [1918] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1918), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5545), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [2018] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2018), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4597), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1919] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1919), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6307), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -245866,107 +235911,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2019] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2019), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3451), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), + [1920] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1920), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4686), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [2020] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2020), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5775), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1921] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1921), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2670), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1922] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1922), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5752), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1923] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1923), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6101), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -246008,533 +236195,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2021] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2021), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3452), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2022] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2022), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6185), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2023] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2023), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6186), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2024] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2024), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6202), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1924] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1924), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4679), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [2025] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2025), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6299), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1925] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1925), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2714), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), [sym_html_comment] = ACTIONS(5), }, - [2026] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2026), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(5998), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1926] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1926), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2697), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), [sym_html_comment] = ACTIONS(5), }, - [2027] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2027), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3316), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), + [1927] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1927), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(6760), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4882), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), [sym_html_comment] = ACTIONS(5), }, - [2028] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2028), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6385), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1928] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1928), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(5823), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -246576,36 +236550,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2029] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2029), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6353), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1929] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1929), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6267), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -246647,178 +236621,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2030] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2030), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6288), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2031] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2031), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2887), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2032] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2032), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6322), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1930] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1930), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6987), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(5819), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(6326), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -246860,107 +236692,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2033] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2033), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6074), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1931] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1931), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5817), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [2034] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2034), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4609), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1932] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1932), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4767), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), + [sym_html_comment] = ACTIONS(5), + }, + [1933] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1933), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(6037), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1934] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1934), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4650), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1935] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1935), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3232), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1936] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1936), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4410), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -247002,107 +237118,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2035] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2035), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3479), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2036] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2036), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4687), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1937] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1937), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6105), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -247144,36 +237189,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2037] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2037), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6384), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1938] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1938), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(6049), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1939] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1939), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6353), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -247215,36 +237331,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2038] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2038), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6386), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1940] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1940), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(6702), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(3266), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1941] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1941), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4446), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -247286,36 +237473,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2039] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2039), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6411), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1942] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1942), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -247357,249 +237544,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2040] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2040), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6292), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2041] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2041), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6308), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2042] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2042), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5008), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), + [1943] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1943), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(6702), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(3268), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), [sym_html_comment] = ACTIONS(5), }, - [2043] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2043), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(7004), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4699), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1944] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1944), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4447), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -247641,107 +237686,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2044] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2044), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3480), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), + [1945] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1945), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4680), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1946] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1946), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3269), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), [sym_html_comment] = ACTIONS(5), }, - [2045] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2045), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4642), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1947] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1947), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2728), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1948] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1948), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2729), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1949] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1949), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6309), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -247783,36 +238041,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2046] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2046), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6497), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1950] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1950), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4681), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1951] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1951), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5852), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1952] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1952), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5849), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1953] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1953), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(4416), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -247854,107 +238325,391 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2047] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2047), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6109), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1954] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1954), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4898), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), [sym_html_comment] = ACTIONS(5), }, - [2048] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2048), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4656), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1955] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1955), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4894), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), + [sym_html_comment] = ACTIONS(5), + }, + [1956] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1956), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2742), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1957] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1957), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5670), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1958] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1958), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5673), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1959] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1959), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6343), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -247996,178 +238751,746 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2049] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2049), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(5209), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1960] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1960), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2786), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), [sym_html_comment] = ACTIONS(5), }, - [2050] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2050), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(5206), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1961] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1961), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5885), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [2051] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2051), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6505), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1962] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1962), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3273), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), + [sym_html_comment] = ACTIONS(5), + }, + [1963] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1963), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5682), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1964] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1964), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2735), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1965] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1965), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5788), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1966] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1966), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(6474), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(2791), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1967] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1967), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(6474), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(2799), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_new] = ACTIONS(2271), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(2283), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(114), + [anon_sym_infer] = ACTIONS(116), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), + [sym_html_comment] = ACTIONS(5), + }, + [1968] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1968), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4700), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1969] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1969), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4702), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), + [anon_sym_LT] = ACTIONS(2275), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), + [sym_html_comment] = ACTIONS(5), + }, + [1970] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1970), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6133), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -248209,4296 +239532,1030 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2052] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2052), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6507), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym_html_comment] = ACTIONS(5), - }, - [2053] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2053), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(5204), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2054] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2054), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2901), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2055] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2055), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4620), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym_html_comment] = ACTIONS(5), - }, - [2056] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2056), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4905), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2057] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2057), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4903), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2058] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2058), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5014), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), + [1971] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1971), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5770), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [2059] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2059), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3373), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), + [1972] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1972), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3191), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2060] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2060), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6124), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2061] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2061), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5016), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), [sym_html_comment] = ACTIONS(5), }, - [2062] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2062), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6592), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym_html_comment] = ACTIONS(5), - }, - [2063] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2063), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4622), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym_html_comment] = ACTIONS(5), - }, - [2064] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2064), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(4985), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2065] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2065), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4623), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [1973] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1973), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3274), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), [sym_html_comment] = ACTIONS(5), }, - [2066] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2066), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5747), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [1974] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1974), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4886), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), [sym_html_comment] = ACTIONS(5), }, - [2067] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2067), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4931), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1975] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1975), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4655), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [2068] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2068), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6057), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), + [1976] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1976), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5608), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [2069] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2069), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(4984), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2070] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2070), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6051), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2071] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2071), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2937), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), + [1977] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1977), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2781), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2072] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2072), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6555), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym_html_comment] = ACTIONS(5), - }, - [2073] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2073), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4923), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2074] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2074), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6428), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), [sym_html_comment] = ACTIONS(5), }, - [2075] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2075), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3459), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2076] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2076), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3458), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2077] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2077), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3438), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2078] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2078), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6465), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), + [1978] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1978), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(6760), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4885), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4471), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), [anon_sym_abstract] = ACTIONS(114), [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), [sym_html_comment] = ACTIONS(5), }, - [2079] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2079), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3372), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2080] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2080), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4921), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2081] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2081), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5069), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2082] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2082), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2873), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2083] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2083), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5070), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2084] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2084), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3320), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), + [1979] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1979), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3192), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2085] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2085), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6326), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), - [sym_html_comment] = ACTIONS(5), - }, - [2086] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2086), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6008), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2087] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2087), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6002), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2088] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2088), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5125), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2089] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2089), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(7004), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(5881), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(6553), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), [sym_html_comment] = ACTIONS(5), }, - [2090] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2090), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5863), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [1980] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1980), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(4656), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [2091] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2091), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5719), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [1981] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1981), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4812), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), [sym_html_comment] = ACTIONS(5), }, - [2092] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2092), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5147), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2093] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2093), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5168), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2094] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2094), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(5973), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2095] = { - [sym_comment] = STATE(2095), - [sym_decorator] = STATE(2157), - [aux_sym_export_statement_repeat1] = STATE(2015), - [sym_identifier] = ACTIONS(4311), - [anon_sym_export] = ACTIONS(4311), - [anon_sym_type] = ACTIONS(4311), - [anon_sym_namespace] = ACTIONS(4311), - [anon_sym_LBRACE] = ACTIONS(4311), - [anon_sym_typeof] = ACTIONS(4311), - [anon_sym_import] = ACTIONS(4311), - [anon_sym_from] = ACTIONS(4311), - [anon_sym_let] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_LPAREN] = ACTIONS(4311), - [anon_sym_await] = ACTIONS(4311), - [anon_sym_of] = ACTIONS(4311), - [anon_sym_yield] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(4311), - [anon_sym_LTtemplate_GT] = ACTIONS(4311), - [anon_sym_DQUOTE] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_class] = ACTIONS(4322), - [anon_sym_async] = ACTIONS(4311), - [anon_sym_function] = ACTIONS(4311), - [anon_sym_new] = ACTIONS(4311), - [anon_sym_using] = ACTIONS(4311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4311), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_TILDE] = ACTIONS(4311), - [anon_sym_void] = ACTIONS(4311), - [anon_sym_delete] = ACTIONS(4311), - [anon_sym_PLUS_PLUS] = ACTIONS(4311), - [anon_sym_DASH_DASH] = ACTIONS(4311), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4311), - [sym_number] = ACTIONS(4311), - [sym_private_property_identifier] = ACTIONS(4311), - [sym_this] = ACTIONS(4311), - [sym_super] = ACTIONS(4311), - [sym_true] = ACTIONS(4311), - [sym_false] = ACTIONS(4311), - [sym_null] = ACTIONS(4311), - [sym_undefined] = ACTIONS(4311), - [anon_sym_AT] = ACTIONS(4313), - [anon_sym_static] = ACTIONS(4311), - [anon_sym_readonly] = ACTIONS(4311), - [anon_sym_get] = ACTIONS(4311), - [anon_sym_set] = ACTIONS(4311), - [anon_sym_declare] = ACTIONS(4311), - [anon_sym_public] = ACTIONS(4311), - [anon_sym_private] = ACTIONS(4311), - [anon_sym_protected] = ACTIONS(4311), - [anon_sym_override] = ACTIONS(4311), - [anon_sym_module] = ACTIONS(4311), - [anon_sym_any] = ACTIONS(4311), - [anon_sym_number] = ACTIONS(4311), - [anon_sym_boolean] = ACTIONS(4311), - [anon_sym_string] = ACTIONS(4311), - [anon_sym_symbol] = ACTIONS(4311), - [anon_sym_object] = ACTIONS(4311), - [anon_sym_property] = ACTIONS(4311), - [anon_sym_signal] = ACTIONS(4311), - [anon_sym_on] = ACTIONS(4311), - [anon_sym_required] = ACTIONS(4311), - [anon_sym_component] = ACTIONS(4311), - [sym_html_comment] = ACTIONS(5), - }, - [2096] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2096), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(7004), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4631), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [1982] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1982), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4797), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), [sym_html_comment] = ACTIONS(5), }, - [2097] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2097), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(7017), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(5175), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2098] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2098), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5067), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2099] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2099), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(7017), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(5177), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2100] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2100), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2865), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2101] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2101), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4906), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2102] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2102), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2935), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2103] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2103), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(5627), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [1983] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1983), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4798), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), [sym_html_comment] = ACTIONS(5), }, - [2104] = { - [sym_comment] = STATE(2104), - [sym_arguments] = STATE(2155), - [sym_identifier] = ACTIONS(4325), - [anon_sym_export] = ACTIONS(4325), - [anon_sym_type] = ACTIONS(4325), - [anon_sym_namespace] = ACTIONS(4325), - [anon_sym_LBRACE] = ACTIONS(4325), - [anon_sym_typeof] = ACTIONS(4325), - [anon_sym_import] = ACTIONS(4325), - [anon_sym_from] = ACTIONS(4325), - [anon_sym_let] = ACTIONS(4325), - [anon_sym_BANG] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym_await] = ACTIONS(4325), - [anon_sym_of] = ACTIONS(4325), - [anon_sym_yield] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_LTtemplate_GT] = ACTIONS(4325), - [anon_sym_DOT] = ACTIONS(4329), - [anon_sym_DQUOTE] = ACTIONS(4325), - [anon_sym_SQUOTE] = ACTIONS(4325), - [anon_sym_class] = ACTIONS(4325), - [anon_sym_async] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_new] = ACTIONS(4325), - [anon_sym_using] = ACTIONS(4325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_SLASH] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4325), - [anon_sym_TILDE] = ACTIONS(4325), - [anon_sym_void] = ACTIONS(4325), - [anon_sym_delete] = ACTIONS(4325), - [anon_sym_PLUS_PLUS] = ACTIONS(4325), - [anon_sym_DASH_DASH] = ACTIONS(4325), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4325), - [sym_number] = ACTIONS(4325), - [sym_private_property_identifier] = ACTIONS(4325), - [sym_this] = ACTIONS(4325), - [sym_super] = ACTIONS(4325), - [sym_true] = ACTIONS(4325), - [sym_false] = ACTIONS(4325), - [sym_null] = ACTIONS(4325), - [sym_undefined] = ACTIONS(4325), - [anon_sym_AT] = ACTIONS(4325), - [anon_sym_static] = ACTIONS(4325), - [anon_sym_readonly] = ACTIONS(4325), - [anon_sym_get] = ACTIONS(4325), - [anon_sym_set] = ACTIONS(4325), - [anon_sym_declare] = ACTIONS(4325), - [anon_sym_public] = ACTIONS(4325), - [anon_sym_private] = ACTIONS(4325), - [anon_sym_protected] = ACTIONS(4325), - [anon_sym_override] = ACTIONS(4325), - [anon_sym_module] = ACTIONS(4325), - [anon_sym_any] = ACTIONS(4325), - [anon_sym_number] = ACTIONS(4325), - [anon_sym_boolean] = ACTIONS(4325), - [anon_sym_string] = ACTIONS(4325), - [anon_sym_symbol] = ACTIONS(4325), - [anon_sym_object] = ACTIONS(4325), - [anon_sym_property] = ACTIONS(4325), - [anon_sym_signal] = ACTIONS(4325), - [anon_sym_on] = ACTIONS(4325), - [anon_sym_required] = ACTIONS(4325), - [anon_sym_component] = ACTIONS(4325), - [sym_html_comment] = ACTIONS(5), - }, - [2105] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2105), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2903), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2106] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2106), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2886), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), + [1984] = { + [sym_nested_identifier] = STATE(8121), + [sym_string] = STATE(2662), + [sym_comment] = STATE(1984), + [sym_formal_parameters] = STATE(8436), + [sym_nested_type_identifier] = STATE(2624), + [sym__type] = STATE(2780), + [sym_constructor_type] = STATE(2667), + [sym__primary_type] = STATE(2668), + [sym_template_literal_type] = STATE(2669), + [sym_infer_type] = STATE(2667), + [sym_conditional_type] = STATE(2669), + [sym_generic_type] = STATE(2669), + [sym_type_query] = STATE(2669), + [sym_index_type_query] = STATE(2669), + [sym_lookup_type] = STATE(2669), + [sym_literal_type] = STATE(2669), + [sym__number] = STATE(2672), + [sym_existential_type] = STATE(2669), + [sym_flow_maybe_type] = STATE(2669), + [sym_parenthesized_type] = STATE(2669), + [sym_predefined_type] = STATE(2669), + [sym_object_type] = STATE(2669), + [sym_type_parameters] = STATE(7870), + [sym_array_type] = STATE(2669), + [sym_tuple_type] = STATE(2669), + [sym_readonly_type] = STATE(2667), + [sym_union_type] = STATE(2669), + [sym_intersection_type] = STATE(2669), + [sym_function_type] = STATE(2667), + [sym_identifier] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_LBRACE] = ACTIONS(4235), + [anon_sym_typeof] = ACTIONS(4237), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_LBRACK] = ACTIONS(4243), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2107] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2107), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(5743), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2108] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2108), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4870), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2109] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2109), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(6013), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2110] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2110), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(5953), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2111] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2111), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4611), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(4245), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_PIPE] = ACTIONS(4249), + [anon_sym_PLUS] = ACTIONS(4251), + [anon_sym_DASH] = ACTIONS(4251), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4253), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4255), + [sym_number] = ACTIONS(4257), + [sym_this] = ACTIONS(4324), + [sym_true] = ACTIONS(4257), + [sym_false] = ACTIONS(4257), + [sym_null] = ACTIONS(4257), + [sym_undefined] = ACTIONS(4257), + [anon_sym_readonly] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4263), + [anon_sym_any] = ACTIONS(4253), + [anon_sym_number] = ACTIONS(4253), + [anon_sym_boolean] = ACTIONS(4253), + [anon_sym_string] = ACTIONS(4253), + [anon_sym_symbol] = ACTIONS(4253), + [anon_sym_object] = ACTIONS(4253), + [anon_sym_abstract] = ACTIONS(4265), + [anon_sym_infer] = ACTIONS(4269), + [anon_sym_keyof] = ACTIONS(4271), + [anon_sym_unique] = ACTIONS(4273), + [anon_sym_unknown] = ACTIONS(4253), + [anon_sym_never] = ACTIONS(4253), + [anon_sym_LBRACE_PIPE] = ACTIONS(4235), [sym_html_comment] = ACTIONS(5), }, - [2112] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2112), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4599), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1985] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1985), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6132), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -252540,36 +240597,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2113] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2113), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6571), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1986] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1986), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6099), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -252611,249 +240668,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2114] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2114), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4912), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2115] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2115), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(7123), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4928), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2116] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2116), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(6731), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(2814), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2117] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2117), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4694), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), + [1987] = { + [sym_nested_identifier] = STATE(8171), + [sym_string] = STATE(4456), + [sym_comment] = STATE(1987), + [sym_formal_parameters] = STATE(8046), + [sym_nested_type_identifier] = STATE(4364), + [sym__type] = STATE(6142), + [sym_constructor_type] = STATE(4471), + [sym__primary_type] = STATE(4472), + [sym_template_literal_type] = STATE(4479), + [sym_infer_type] = STATE(4471), + [sym_conditional_type] = STATE(4479), + [sym_generic_type] = STATE(4479), + [sym_type_query] = STATE(4479), + [sym_index_type_query] = STATE(4479), + [sym_lookup_type] = STATE(4479), + [sym_literal_type] = STATE(4479), + [sym__number] = STATE(4478), + [sym_existential_type] = STATE(4479), + [sym_flow_maybe_type] = STATE(4479), + [sym_parenthesized_type] = STATE(4479), + [sym_predefined_type] = STATE(4479), + [sym_object_type] = STATE(4479), + [sym_type_parameters] = STATE(7795), + [sym_array_type] = STATE(4479), + [sym_tuple_type] = STATE(4479), + [sym_readonly_type] = STATE(4471), + [sym_union_type] = STATE(4479), + [sym_intersection_type] = STATE(4479), + [sym_function_type] = STATE(4471), [sym_identifier] = ACTIONS(2259), [anon_sym_STAR] = ACTIONS(23), [anon_sym_LBRACE] = ACTIONS(124), @@ -252895,1643 +240739,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(124), [sym_html_comment] = ACTIONS(5), }, - [2118] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2118), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2872), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2119] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2119), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(7123), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4930), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2120] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2120), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6524), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [1988] = { + [sym_nested_identifier] = STATE(8035), + [sym_string] = STATE(4693), + [sym_comment] = STATE(1988), + [sym_formal_parameters] = STATE(8297), + [sym_nested_type_identifier] = STATE(4583), + [sym__type] = STATE(5773), + [sym_constructor_type] = STATE(4694), + [sym__primary_type] = STATE(4689), + [sym_template_literal_type] = STATE(4674), + [sym_infer_type] = STATE(4694), + [sym_conditional_type] = STATE(4674), + [sym_generic_type] = STATE(4674), + [sym_type_query] = STATE(4674), + [sym_index_type_query] = STATE(4674), + [sym_lookup_type] = STATE(4674), + [sym_literal_type] = STATE(4674), + [sym__number] = STATE(4672), + [sym_existential_type] = STATE(4674), + [sym_flow_maybe_type] = STATE(4674), + [sym_parenthesized_type] = STATE(4674), + [sym_predefined_type] = STATE(4674), + [sym_object_type] = STATE(4674), + [sym_type_parameters] = STATE(7624), + [sym_array_type] = STATE(4674), + [sym_tuple_type] = STATE(4674), + [sym_readonly_type] = STATE(4694), + [sym_union_type] = STATE(4674), + [sym_intersection_type] = STATE(4674), + [sym_function_type] = STATE(4694), + [sym_identifier] = ACTIONS(2504), + [anon_sym_STAR] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_typeof] = ACTIONS(2506), + [anon_sym_const] = ACTIONS(1535), + [anon_sym_LPAREN] = ACTIONS(2508), + [anon_sym_LBRACK] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_new] = ACTIONS(2516), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_PIPE] = ACTIONS(1545), + [anon_sym_PLUS] = ACTIONS(2518), + [anon_sym_DASH] = ACTIONS(2518), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(1573), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2520), + [sym_number] = ACTIONS(2522), + [sym_this] = ACTIONS(2524), + [sym_true] = ACTIONS(2522), + [sym_false] = ACTIONS(2522), + [sym_null] = ACTIONS(2522), + [sym_undefined] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2526), + [anon_sym_QMARK] = ACTIONS(1561), + [anon_sym_any] = ACTIONS(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), + [anon_sym_abstract] = ACTIONS(1565), + [anon_sym_infer] = ACTIONS(1567), + [anon_sym_keyof] = ACTIONS(1569), + [anon_sym_unique] = ACTIONS(1571), + [anon_sym_unknown] = ACTIONS(1573), + [anon_sym_never] = ACTIONS(1573), + [anon_sym_LBRACE_PIPE] = ACTIONS(1575), [sym_html_comment] = ACTIONS(5), }, - [2121] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2121), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(5933), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2122] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2122), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4888), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2123] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2123), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4890), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2124] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2124), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5166), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2125] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2125), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(6731), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(2812), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2126] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2126), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2866), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2127] = { - [sym_nested_identifier] = STATE(8476), - [sym_string] = STATE(5140), - [sym_comment] = STATE(2127), - [sym_formal_parameters] = STATE(8243), - [sym_nested_type_identifier] = STATE(4881), - [sym__type] = STATE(5005), - [sym_constructor_type] = STATE(5146), - [sym__primary_type] = STATE(5150), - [sym_template_literal_type] = STATE(5151), - [sym_infer_type] = STATE(5146), - [sym_conditional_type] = STATE(5151), - [sym_generic_type] = STATE(5151), - [sym_type_query] = STATE(5151), - [sym_index_type_query] = STATE(5151), - [sym_lookup_type] = STATE(5151), - [sym_literal_type] = STATE(5151), - [sym__number] = STATE(4991), - [sym_existential_type] = STATE(5151), - [sym_flow_maybe_type] = STATE(5151), - [sym_parenthesized_type] = STATE(5151), - [sym_predefined_type] = STATE(5151), - [sym_object_type] = STATE(5151), - [sym_type_parameters] = STATE(8059), - [sym_array_type] = STATE(5151), - [sym_tuple_type] = STATE(5151), - [sym_readonly_type] = STATE(5146), - [sym_union_type] = STATE(5151), - [sym_intersection_type] = STATE(5151), - [sym_function_type] = STATE(5146), - [sym_identifier] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_typeof] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4036), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_AMP] = ACTIONS(4042), - [anon_sym_PIPE] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4046), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4048), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4050), - [sym_number] = ACTIONS(4052), - [sym_this] = ACTIONS(4318), - [sym_true] = ACTIONS(4052), - [sym_false] = ACTIONS(4052), - [sym_null] = ACTIONS(4052), - [sym_undefined] = ACTIONS(4052), - [anon_sym_readonly] = ACTIONS(4056), - [anon_sym_QMARK] = ACTIONS(4058), - [anon_sym_any] = ACTIONS(4048), - [anon_sym_number] = ACTIONS(4048), - [anon_sym_boolean] = ACTIONS(4048), - [anon_sym_string] = ACTIONS(4048), - [anon_sym_symbol] = ACTIONS(4048), - [anon_sym_object] = ACTIONS(4048), - [anon_sym_abstract] = ACTIONS(4060), - [anon_sym_infer] = ACTIONS(4064), - [anon_sym_keyof] = ACTIONS(4066), - [anon_sym_unique] = ACTIONS(4068), - [anon_sym_unknown] = ACTIONS(4048), - [anon_sym_never] = ACTIONS(4048), - [anon_sym_LBRACE_PIPE] = ACTIONS(4026), - [sym_html_comment] = ACTIONS(5), - }, - [2128] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2128), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4901), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2129] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2129), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4896), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2130] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2130), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(7018), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(3334), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2131] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2131), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2811), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2132] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2132), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2806), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2133] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2133), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3394), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), + [1989] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1989), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3203), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2134] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2134), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(6515), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), [sym_html_comment] = ACTIONS(5), }, - [2135] = { - [sym_nested_identifier] = STATE(8297), - [sym_string] = STATE(3357), - [sym_comment] = STATE(2135), - [sym_formal_parameters] = STATE(8375), - [sym_nested_type_identifier] = STATE(3225), - [sym__type] = STATE(3327), - [sym_constructor_type] = STATE(3351), - [sym__primary_type] = STATE(3350), - [sym_template_literal_type] = STATE(3341), - [sym_infer_type] = STATE(3351), - [sym_conditional_type] = STATE(3341), - [sym_generic_type] = STATE(3341), - [sym_type_query] = STATE(3341), - [sym_index_type_query] = STATE(3341), - [sym_lookup_type] = STATE(3341), - [sym_literal_type] = STATE(3341), - [sym__number] = STATE(3340), - [sym_existential_type] = STATE(3341), - [sym_flow_maybe_type] = STATE(3341), - [sym_parenthesized_type] = STATE(3341), - [sym_predefined_type] = STATE(3341), - [sym_object_type] = STATE(3341), - [sym_type_parameters] = STATE(8097), - [sym_array_type] = STATE(3341), - [sym_tuple_type] = STATE(3341), - [sym_readonly_type] = STATE(3351), - [sym_union_type] = STATE(3341), - [sym_intersection_type] = STATE(3341), - [sym_function_type] = STATE(3351), - [sym_identifier] = ACTIONS(4301), - [anon_sym_STAR] = ACTIONS(4187), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_typeof] = ACTIONS(4191), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4195), - [anon_sym_LBRACK] = ACTIONS(4197), + [1990] = { + [sym_nested_identifier] = STATE(8040), + [sym_string] = STATE(3300), + [sym_comment] = STATE(1990), + [sym_formal_parameters] = STATE(8220), + [sym_nested_type_identifier] = STATE(3119), + [sym__type] = STATE(3202), + [sym_constructor_type] = STATE(3294), + [sym__primary_type] = STATE(3293), + [sym_template_literal_type] = STATE(3291), + [sym_infer_type] = STATE(3294), + [sym_conditional_type] = STATE(3291), + [sym_generic_type] = STATE(3291), + [sym_type_query] = STATE(3291), + [sym_index_type_query] = STATE(3291), + [sym_lookup_type] = STATE(3291), + [sym_literal_type] = STATE(3291), + [sym__number] = STATE(3289), + [sym_existential_type] = STATE(3291), + [sym_flow_maybe_type] = STATE(3291), + [sym_parenthesized_type] = STATE(3291), + [sym_predefined_type] = STATE(3291), + [sym_object_type] = STATE(3291), + [sym_type_parameters] = STATE(7840), + [sym_array_type] = STATE(3291), + [sym_tuple_type] = STATE(3291), + [sym_readonly_type] = STATE(3294), + [sym_union_type] = STATE(3291), + [sym_intersection_type] = STATE(3291), + [sym_function_type] = STATE(3294), + [sym_identifier] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4189), + [anon_sym_LBRACE] = ACTIONS(4191), + [anon_sym_typeof] = ACTIONS(4193), + [anon_sym_const] = ACTIONS(4195), + [anon_sym_LPAREN] = ACTIONS(4197), + [anon_sym_LBRACK] = ACTIONS(4199), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_new] = ACTIONS(4199), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4203), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4209), - [sym_number] = ACTIONS(4211), - [sym_this] = ACTIONS(4303), - [sym_true] = ACTIONS(4211), - [sym_false] = ACTIONS(4211), - [sym_null] = ACTIONS(4211), - [sym_undefined] = ACTIONS(4211), - [anon_sym_readonly] = ACTIONS(4215), - [anon_sym_QMARK] = ACTIONS(4217), - [anon_sym_any] = ACTIONS(4207), - [anon_sym_number] = ACTIONS(4207), - [anon_sym_boolean] = ACTIONS(4207), - [anon_sym_string] = ACTIONS(4207), - [anon_sym_symbol] = ACTIONS(4207), - [anon_sym_object] = ACTIONS(4207), - [anon_sym_abstract] = ACTIONS(4219), - [anon_sym_infer] = ACTIONS(4223), - [anon_sym_keyof] = ACTIONS(4225), - [anon_sym_unique] = ACTIONS(4227), - [anon_sym_unknown] = ACTIONS(4207), - [anon_sym_never] = ACTIONS(4207), - [anon_sym_LBRACE_PIPE] = ACTIONS(4189), - [sym_html_comment] = ACTIONS(5), - }, - [2136] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2136), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4610), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_new] = ACTIONS(4201), + [anon_sym_AMP] = ACTIONS(4203), + [anon_sym_PIPE] = ACTIONS(4205), + [anon_sym_PLUS] = ACTIONS(4207), + [anon_sym_DASH] = ACTIONS(4207), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4209), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4211), + [sym_number] = ACTIONS(4213), + [sym_this] = ACTIONS(4305), + [sym_true] = ACTIONS(4213), + [sym_false] = ACTIONS(4213), + [sym_null] = ACTIONS(4213), + [sym_undefined] = ACTIONS(4213), + [anon_sym_readonly] = ACTIONS(4217), + [anon_sym_QMARK] = ACTIONS(4219), + [anon_sym_any] = ACTIONS(4209), + [anon_sym_number] = ACTIONS(4209), + [anon_sym_boolean] = ACTIONS(4209), + [anon_sym_string] = ACTIONS(4209), + [anon_sym_symbol] = ACTIONS(4209), + [anon_sym_object] = ACTIONS(4209), + [anon_sym_abstract] = ACTIONS(4221), + [anon_sym_infer] = ACTIONS(4225), + [anon_sym_keyof] = ACTIONS(4227), + [anon_sym_unique] = ACTIONS(4229), + [anon_sym_unknown] = ACTIONS(4209), + [anon_sym_never] = ACTIONS(4209), + [anon_sym_LBRACE_PIPE] = ACTIONS(4191), [sym_html_comment] = ACTIONS(5), }, - [2137] = { - [sym_nested_identifier] = STATE(8284), - [sym_string] = STATE(4887), - [sym_comment] = STATE(2137), - [sym_formal_parameters] = STATE(8340), - [sym_nested_type_identifier] = STATE(4770), - [sym__type] = STATE(4874), - [sym_constructor_type] = STATE(4895), - [sym__primary_type] = STATE(4899), - [sym_template_literal_type] = STATE(4900), - [sym_infer_type] = STATE(4895), - [sym_conditional_type] = STATE(4900), - [sym_generic_type] = STATE(4900), - [sym_type_query] = STATE(4900), - [sym_index_type_query] = STATE(4900), - [sym_lookup_type] = STATE(4900), - [sym_literal_type] = STATE(4900), - [sym__number] = STATE(4902), - [sym_existential_type] = STATE(4900), - [sym_flow_maybe_type] = STATE(4900), - [sym_parenthesized_type] = STATE(4900), - [sym_predefined_type] = STATE(4900), - [sym_object_type] = STATE(4900), - [sym_type_parameters] = STATE(7881), - [sym_array_type] = STATE(4900), - [sym_tuple_type] = STATE(4900), - [sym_readonly_type] = STATE(4895), - [sym_union_type] = STATE(4900), - [sym_intersection_type] = STATE(4900), - [sym_function_type] = STATE(4895), - [sym_identifier] = ACTIONS(2516), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_typeof] = ACTIONS(2518), - [anon_sym_const] = ACTIONS(1529), - [anon_sym_LPAREN] = ACTIONS(2520), - [anon_sym_LBRACK] = ACTIONS(2522), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_new] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(1537), - [anon_sym_PIPE] = ACTIONS(1539), - [anon_sym_PLUS] = ACTIONS(2530), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(1567), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2532), - [sym_number] = ACTIONS(2534), - [sym_this] = ACTIONS(2536), - [sym_true] = ACTIONS(2534), - [sym_false] = ACTIONS(2534), - [sym_null] = ACTIONS(2534), - [sym_undefined] = ACTIONS(2534), - [anon_sym_readonly] = ACTIONS(2538), - [anon_sym_QMARK] = ACTIONS(1555), - [anon_sym_any] = ACTIONS(1567), - [anon_sym_number] = ACTIONS(1567), - [anon_sym_boolean] = ACTIONS(1567), - [anon_sym_string] = ACTIONS(1567), - [anon_sym_symbol] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(1567), - [anon_sym_abstract] = ACTIONS(1559), - [anon_sym_infer] = ACTIONS(1561), - [anon_sym_keyof] = ACTIONS(1563), - [anon_sym_unique] = ACTIONS(1565), - [anon_sym_unknown] = ACTIONS(1567), - [anon_sym_never] = ACTIONS(1567), - [anon_sym_LBRACE_PIPE] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [2138] = { - [sym_nested_identifier] = STATE(8378), - [sym_string] = STATE(2795), - [sym_comment] = STATE(2138), - [sym_formal_parameters] = STATE(8613), - [sym_nested_type_identifier] = STATE(2776), - [sym__type] = STATE(2807), - [sym_constructor_type] = STATE(2797), - [sym__primary_type] = STATE(2798), - [sym_template_literal_type] = STATE(2799), - [sym_infer_type] = STATE(2797), - [sym_conditional_type] = STATE(2799), - [sym_generic_type] = STATE(2799), - [sym_type_query] = STATE(2799), - [sym_index_type_query] = STATE(2799), - [sym_lookup_type] = STATE(2799), - [sym_literal_type] = STATE(2799), - [sym__number] = STATE(2800), - [sym_existential_type] = STATE(2799), - [sym_flow_maybe_type] = STATE(2799), - [sym_parenthesized_type] = STATE(2799), - [sym_predefined_type] = STATE(2799), - [sym_object_type] = STATE(2799), - [sym_type_parameters] = STATE(8175), - [sym_array_type] = STATE(2799), - [sym_tuple_type] = STATE(2799), - [sym_readonly_type] = STATE(2797), - [sym_union_type] = STATE(2799), - [sym_intersection_type] = STATE(2799), - [sym_function_type] = STATE(2797), - [sym_identifier] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4231), - [anon_sym_LBRACE] = ACTIONS(4233), - [anon_sym_typeof] = ACTIONS(4235), - [anon_sym_const] = ACTIONS(4237), - [anon_sym_LPAREN] = ACTIONS(4239), - [anon_sym_LBRACK] = ACTIONS(4241), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_new] = ACTIONS(4243), - [anon_sym_AMP] = ACTIONS(4245), - [anon_sym_PIPE] = ACTIONS(4247), - [anon_sym_PLUS] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(4251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4253), - [sym_number] = ACTIONS(4255), - [sym_this] = ACTIONS(4307), - [sym_true] = ACTIONS(4255), - [sym_false] = ACTIONS(4255), - [sym_null] = ACTIONS(4255), - [sym_undefined] = ACTIONS(4255), - [anon_sym_readonly] = ACTIONS(4259), - [anon_sym_QMARK] = ACTIONS(4261), - [anon_sym_any] = ACTIONS(4251), - [anon_sym_number] = ACTIONS(4251), - [anon_sym_boolean] = ACTIONS(4251), - [anon_sym_string] = ACTIONS(4251), - [anon_sym_symbol] = ACTIONS(4251), - [anon_sym_object] = ACTIONS(4251), - [anon_sym_abstract] = ACTIONS(4263), - [anon_sym_infer] = ACTIONS(4267), - [anon_sym_keyof] = ACTIONS(4269), - [anon_sym_unique] = ACTIONS(4271), - [anon_sym_unknown] = ACTIONS(4251), - [anon_sym_never] = ACTIONS(4251), - [anon_sym_LBRACE_PIPE] = ACTIONS(4233), - [sym_html_comment] = ACTIONS(5), - }, - [2139] = { - [sym_nested_identifier] = STATE(8457), - [sym_string] = STATE(4618), - [sym_comment] = STATE(2139), - [sym_formal_parameters] = STATE(8370), - [sym_nested_type_identifier] = STATE(4578), - [sym__type] = STATE(4624), - [sym_constructor_type] = STATE(4638), - [sym__primary_type] = STATE(4615), - [sym_template_literal_type] = STATE(4659), - [sym_infer_type] = STATE(4638), - [sym_conditional_type] = STATE(4659), - [sym_generic_type] = STATE(4659), - [sym_type_query] = STATE(4659), - [sym_index_type_query] = STATE(4659), - [sym_lookup_type] = STATE(4659), - [sym_literal_type] = STATE(4659), - [sym__number] = STATE(4676), - [sym_existential_type] = STATE(4659), - [sym_flow_maybe_type] = STATE(4659), - [sym_parenthesized_type] = STATE(4659), - [sym_predefined_type] = STATE(4659), - [sym_object_type] = STATE(4659), - [sym_type_parameters] = STATE(7940), - [sym_array_type] = STATE(4659), - [sym_tuple_type] = STATE(4659), - [sym_readonly_type] = STATE(4638), - [sym_union_type] = STATE(4659), - [sym_intersection_type] = STATE(4659), - [sym_function_type] = STATE(4638), - [sym_identifier] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(41), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(76), - [anon_sym_PIPE] = ACTIONS(78), - [anon_sym_PLUS] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2273), + [1991] = { + [sym_nested_identifier] = STATE(8219), + [sym_string] = STATE(4926), + [sym_comment] = STATE(1991), + [sym_formal_parameters] = STATE(8003), + [sym_nested_type_identifier] = STATE(4696), + [sym__type] = STATE(4808), + [sym_constructor_type] = STATE(4924), + [sym__primary_type] = STATE(4923), + [sym_template_literal_type] = STATE(4922), + [sym_infer_type] = STATE(4924), + [sym_conditional_type] = STATE(4922), + [sym_generic_type] = STATE(4922), + [sym_type_query] = STATE(4922), + [sym_index_type_query] = STATE(4922), + [sym_lookup_type] = STATE(4922), + [sym_literal_type] = STATE(4922), + [sym__number] = STATE(4921), + [sym_existential_type] = STATE(4922), + [sym_flow_maybe_type] = STATE(4922), + [sym_parenthesized_type] = STATE(4922), + [sym_predefined_type] = STATE(4922), + [sym_object_type] = STATE(4922), + [sym_type_parameters] = STATE(7798), + [sym_array_type] = STATE(4922), + [sym_tuple_type] = STATE(4922), + [sym_readonly_type] = STATE(4924), + [sym_union_type] = STATE(4922), + [sym_intersection_type] = STATE(4922), + [sym_function_type] = STATE(4924), + [sym_identifier] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4032), + [anon_sym_LBRACE] = ACTIONS(4034), + [anon_sym_typeof] = ACTIONS(4036), + [anon_sym_const] = ACTIONS(4038), + [anon_sym_LPAREN] = ACTIONS(4040), + [anon_sym_LBRACK] = ACTIONS(4042), + [anon_sym_DQUOTE] = ACTIONS(4044), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_AMP] = ACTIONS(4050), + [anon_sym_PIPE] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4054), [anon_sym_LT] = ACTIONS(2275), - [anon_sym_void] = ACTIONS(122), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2277), - [sym_number] = ACTIONS(2279), - [sym_this] = ACTIONS(2281), - [sym_true] = ACTIONS(2279), - [sym_false] = ACTIONS(2279), - [sym_null] = ACTIONS(2279), - [sym_undefined] = ACTIONS(2279), - [anon_sym_readonly] = ACTIONS(2283), - [anon_sym_QMARK] = ACTIONS(110), - [anon_sym_any] = ACTIONS(122), - [anon_sym_number] = ACTIONS(122), - [anon_sym_boolean] = ACTIONS(122), - [anon_sym_string] = ACTIONS(122), - [anon_sym_symbol] = ACTIONS(122), - [anon_sym_object] = ACTIONS(122), - [anon_sym_abstract] = ACTIONS(114), - [anon_sym_infer] = ACTIONS(116), - [anon_sym_keyof] = ACTIONS(118), - [anon_sym_unique] = ACTIONS(120), - [anon_sym_unknown] = ACTIONS(122), - [anon_sym_never] = ACTIONS(122), - [anon_sym_LBRACE_PIPE] = ACTIONS(124), + [anon_sym_void] = ACTIONS(4056), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4058), + [sym_number] = ACTIONS(4060), + [sym_this] = ACTIONS(4328), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), + [sym_undefined] = ACTIONS(4060), + [anon_sym_readonly] = ACTIONS(4064), + [anon_sym_QMARK] = ACTIONS(4066), + [anon_sym_any] = ACTIONS(4056), + [anon_sym_number] = ACTIONS(4056), + [anon_sym_boolean] = ACTIONS(4056), + [anon_sym_string] = ACTIONS(4056), + [anon_sym_symbol] = ACTIONS(4056), + [anon_sym_object] = ACTIONS(4056), + [anon_sym_abstract] = ACTIONS(4068), + [anon_sym_infer] = ACTIONS(4072), + [anon_sym_keyof] = ACTIONS(4074), + [anon_sym_unique] = ACTIONS(4076), + [anon_sym_unknown] = ACTIONS(4056), + [anon_sym_never] = ACTIONS(4056), + [anon_sym_LBRACE_PIPE] = ACTIONS(4034), [sym_html_comment] = ACTIONS(5), }, - [2140] = { - [sym_comment] = STATE(2140), - [sym_identifier] = ACTIONS(4331), - [anon_sym_export] = ACTIONS(4331), - [anon_sym_type] = ACTIONS(4331), - [anon_sym_namespace] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_typeof] = ACTIONS(4331), - [anon_sym_import] = ACTIONS(4331), - [anon_sym_from] = ACTIONS(4331), - [anon_sym_let] = ACTIONS(4331), - [anon_sym_BANG] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym_await] = ACTIONS(4331), - [anon_sym_of] = ACTIONS(4331), - [anon_sym_yield] = ACTIONS(4331), - [anon_sym_LBRACK] = ACTIONS(4331), - [anon_sym_LTtemplate_GT] = ACTIONS(4331), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_DQUOTE] = ACTIONS(4331), - [anon_sym_SQUOTE] = ACTIONS(4331), - [anon_sym_class] = ACTIONS(4331), - [anon_sym_async] = ACTIONS(4331), - [anon_sym_function] = ACTIONS(4331), - [anon_sym_new] = ACTIONS(4331), - [anon_sym_using] = ACTIONS(4331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4331), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_SLASH] = ACTIONS(4331), - [anon_sym_LT] = ACTIONS(4331), - [anon_sym_TILDE] = ACTIONS(4331), - [anon_sym_void] = ACTIONS(4331), - [anon_sym_delete] = ACTIONS(4331), - [anon_sym_PLUS_PLUS] = ACTIONS(4331), - [anon_sym_DASH_DASH] = ACTIONS(4331), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4331), - [sym_number] = ACTIONS(4331), - [sym_private_property_identifier] = ACTIONS(4331), - [sym_this] = ACTIONS(4331), - [sym_super] = ACTIONS(4331), - [sym_true] = ACTIONS(4331), - [sym_false] = ACTIONS(4331), - [sym_null] = ACTIONS(4331), - [sym_undefined] = ACTIONS(4331), - [anon_sym_AT] = ACTIONS(4331), - [anon_sym_static] = ACTIONS(4331), - [anon_sym_readonly] = ACTIONS(4331), - [anon_sym_get] = ACTIONS(4331), - [anon_sym_set] = ACTIONS(4331), - [anon_sym_declare] = ACTIONS(4331), - [anon_sym_public] = ACTIONS(4331), - [anon_sym_private] = ACTIONS(4331), - [anon_sym_protected] = ACTIONS(4331), - [anon_sym_override] = ACTIONS(4331), - [anon_sym_module] = ACTIONS(4331), - [anon_sym_any] = ACTIONS(4331), - [anon_sym_number] = ACTIONS(4331), - [anon_sym_boolean] = ACTIONS(4331), - [anon_sym_string] = ACTIONS(4331), - [anon_sym_symbol] = ACTIONS(4331), - [anon_sym_object] = ACTIONS(4331), - [anon_sym_property] = ACTIONS(4331), - [anon_sym_signal] = ACTIONS(4331), - [anon_sym_on] = ACTIONS(4331), - [anon_sym_required] = ACTIONS(4331), - [anon_sym_component] = ACTIONS(4331), - [sym_html_comment] = ACTIONS(5), - }, - [2141] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2141), - [sym__module] = STATE(3134), + [1992] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(1992), + [sym__module] = STATE(2918), [sym_identifier] = ACTIONS(4333), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(25), @@ -254597,94 +241093,234 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2142] = { - [sym_comment] = STATE(2142), - [sym_identifier] = ACTIONS(3518), - [anon_sym_export] = ACTIONS(3518), - [anon_sym_type] = ACTIONS(3518), - [anon_sym_namespace] = ACTIONS(3518), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_typeof] = ACTIONS(3518), - [anon_sym_import] = ACTIONS(3518), - [anon_sym_from] = ACTIONS(3518), - [anon_sym_let] = ACTIONS(3518), - [anon_sym_BANG] = ACTIONS(3518), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_RPAREN] = ACTIONS(3518), - [anon_sym_await] = ACTIONS(3518), - [anon_sym_of] = ACTIONS(3518), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_yield] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LTtemplate_GT] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [anon_sym_SQUOTE] = ACTIONS(3518), - [anon_sym_class] = ACTIONS(3518), - [anon_sym_async] = ACTIONS(3518), - [anon_sym_function] = ACTIONS(3518), - [anon_sym_new] = ACTIONS(3518), - [anon_sym_using] = ACTIONS(3518), - [anon_sym_PLUS] = ACTIONS(3518), - [anon_sym_DASH] = ACTIONS(3518), - [anon_sym_SLASH] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_TILDE] = ACTIONS(3518), - [anon_sym_void] = ACTIONS(3518), - [anon_sym_delete] = ACTIONS(3518), - [anon_sym_PLUS_PLUS] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), + [1993] = { + [sym_comment] = STATE(1993), + [sym_identifier] = ACTIONS(4335), + [anon_sym_export] = ACTIONS(4335), + [anon_sym_type] = ACTIONS(4335), + [anon_sym_namespace] = ACTIONS(4335), + [anon_sym_LBRACE] = ACTIONS(4335), + [anon_sym_typeof] = ACTIONS(4335), + [anon_sym_import] = ACTIONS(4335), + [anon_sym_from] = ACTIONS(4335), + [anon_sym_let] = ACTIONS(4335), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_LPAREN] = ACTIONS(4335), + [anon_sym_await] = ACTIONS(4335), + [anon_sym_of] = ACTIONS(4335), + [anon_sym_yield] = ACTIONS(4335), + [anon_sym_LBRACK] = ACTIONS(4335), + [anon_sym_LTtemplate_GT] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4335), + [anon_sym_DQUOTE] = ACTIONS(4335), + [anon_sym_SQUOTE] = ACTIONS(4335), + [anon_sym_class] = ACTIONS(4335), + [anon_sym_async] = ACTIONS(4335), + [anon_sym_function] = ACTIONS(4335), + [anon_sym_new] = ACTIONS(4335), + [anon_sym_using] = ACTIONS(4335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_SLASH] = ACTIONS(4335), + [anon_sym_LT] = ACTIONS(4335), + [anon_sym_TILDE] = ACTIONS(4335), + [anon_sym_void] = ACTIONS(4335), + [anon_sym_delete] = ACTIONS(4335), + [anon_sym_PLUS_PLUS] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4335), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4335), + [sym_number] = ACTIONS(4335), + [sym_private_property_identifier] = ACTIONS(4335), + [sym_this] = ACTIONS(4335), + [sym_super] = ACTIONS(4335), + [sym_true] = ACTIONS(4335), + [sym_false] = ACTIONS(4335), + [sym_null] = ACTIONS(4335), + [sym_undefined] = ACTIONS(4335), + [anon_sym_AT] = ACTIONS(4335), + [anon_sym_static] = ACTIONS(4335), + [anon_sym_readonly] = ACTIONS(4335), + [anon_sym_get] = ACTIONS(4335), + [anon_sym_set] = ACTIONS(4335), + [anon_sym_declare] = ACTIONS(4335), + [anon_sym_public] = ACTIONS(4335), + [anon_sym_private] = ACTIONS(4335), + [anon_sym_protected] = ACTIONS(4335), + [anon_sym_override] = ACTIONS(4335), + [anon_sym_module] = ACTIONS(4335), + [anon_sym_any] = ACTIONS(4335), + [anon_sym_number] = ACTIONS(4335), + [anon_sym_boolean] = ACTIONS(4335), + [anon_sym_string] = ACTIONS(4335), + [anon_sym_symbol] = ACTIONS(4335), + [anon_sym_object] = ACTIONS(4335), + [anon_sym_property] = ACTIONS(4335), + [anon_sym_signal] = ACTIONS(4335), + [anon_sym_on] = ACTIONS(4335), + [anon_sym_required] = ACTIONS(4335), + [anon_sym_component] = ACTIONS(4335), + [sym_html_comment] = ACTIONS(5), + }, + [1994] = { + [sym_comment] = STATE(1994), + [sym_identifier] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_type] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3660), + [anon_sym_typeof] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_from] = ACTIONS(3660), + [anon_sym_let] = ACTIONS(3660), + [anon_sym_BANG] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_RPAREN] = ACTIONS(3660), + [anon_sym_await] = ACTIONS(3660), + [anon_sym_of] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3660), + [anon_sym_yield] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_LTtemplate_GT] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3660), + [anon_sym_SQUOTE] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_async] = ACTIONS(3660), + [anon_sym_function] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_SLASH] = ACTIONS(3660), + [anon_sym_LT] = ACTIONS(3660), + [anon_sym_TILDE] = ACTIONS(3660), + [anon_sym_void] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_PLUS_PLUS] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3660), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3518), - [sym_number] = ACTIONS(3518), - [sym_private_property_identifier] = ACTIONS(3518), - [sym_this] = ACTIONS(3518), - [sym_super] = ACTIONS(3518), - [sym_true] = ACTIONS(3518), - [sym_false] = ACTIONS(3518), - [sym_null] = ACTIONS(3518), - [sym_undefined] = ACTIONS(3518), - [anon_sym_AT] = ACTIONS(3518), - [anon_sym_static] = ACTIONS(3518), - [anon_sym_readonly] = ACTIONS(3518), - [anon_sym_get] = ACTIONS(3518), - [anon_sym_set] = ACTIONS(3518), - [anon_sym_declare] = ACTIONS(3518), - [anon_sym_public] = ACTIONS(3518), - [anon_sym_private] = ACTIONS(3518), - [anon_sym_protected] = ACTIONS(3518), - [anon_sym_override] = ACTIONS(3518), - [anon_sym_module] = ACTIONS(3518), - [anon_sym_any] = ACTIONS(3518), - [anon_sym_number] = ACTIONS(3518), - [anon_sym_boolean] = ACTIONS(3518), - [anon_sym_string] = ACTIONS(3518), - [anon_sym_symbol] = ACTIONS(3518), - [anon_sym_object] = ACTIONS(3518), - [anon_sym_property] = ACTIONS(3518), - [anon_sym_signal] = ACTIONS(3518), - [anon_sym_on] = ACTIONS(3518), - [anon_sym_required] = ACTIONS(3518), - [anon_sym_component] = ACTIONS(3518), + [anon_sym_BQUOTE] = ACTIONS(3660), + [sym_number] = ACTIONS(3660), + [sym_private_property_identifier] = ACTIONS(3660), + [sym_this] = ACTIONS(3660), + [sym_super] = ACTIONS(3660), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [sym_null] = ACTIONS(3660), + [sym_undefined] = ACTIONS(3660), + [anon_sym_AT] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_readonly] = ACTIONS(3660), + [anon_sym_get] = ACTIONS(3660), + [anon_sym_set] = ACTIONS(3660), + [anon_sym_declare] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_override] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_any] = ACTIONS(3660), + [anon_sym_number] = ACTIONS(3660), + [anon_sym_boolean] = ACTIONS(3660), + [anon_sym_string] = ACTIONS(3660), + [anon_sym_symbol] = ACTIONS(3660), + [anon_sym_object] = ACTIONS(3660), + [anon_sym_property] = ACTIONS(3660), + [anon_sym_signal] = ACTIONS(3660), + [anon_sym_on] = ACTIONS(3660), + [anon_sym_required] = ACTIONS(3660), + [anon_sym_component] = ACTIONS(3660), + [sym_html_comment] = ACTIONS(5), + }, + [1995] = { + [sym_comment] = STATE(1995), + [sym_identifier] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_type] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3656), + [anon_sym_typeof] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_from] = ACTIONS(3656), + [anon_sym_let] = ACTIONS(3656), + [anon_sym_BANG] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3656), + [anon_sym_RPAREN] = ACTIONS(3656), + [anon_sym_await] = ACTIONS(3656), + [anon_sym_of] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3656), + [anon_sym_yield] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_LTtemplate_GT] = ACTIONS(3656), + [anon_sym_DQUOTE] = ACTIONS(3656), + [anon_sym_SQUOTE] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_async] = ACTIONS(3656), + [anon_sym_function] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_SLASH] = ACTIONS(3656), + [anon_sym_LT] = ACTIONS(3656), + [anon_sym_TILDE] = ACTIONS(3656), + [anon_sym_void] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_PLUS_PLUS] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3656), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3656), + [sym_number] = ACTIONS(3656), + [sym_private_property_identifier] = ACTIONS(3656), + [sym_this] = ACTIONS(3656), + [sym_super] = ACTIONS(3656), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [sym_null] = ACTIONS(3656), + [sym_undefined] = ACTIONS(3656), + [anon_sym_AT] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_readonly] = ACTIONS(3656), + [anon_sym_get] = ACTIONS(3656), + [anon_sym_set] = ACTIONS(3656), + [anon_sym_declare] = ACTIONS(3656), + [anon_sym_public] = ACTIONS(3656), + [anon_sym_private] = ACTIONS(3656), + [anon_sym_protected] = ACTIONS(3656), + [anon_sym_override] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_any] = ACTIONS(3656), + [anon_sym_number] = ACTIONS(3656), + [anon_sym_boolean] = ACTIONS(3656), + [anon_sym_string] = ACTIONS(3656), + [anon_sym_symbol] = ACTIONS(3656), + [anon_sym_object] = ACTIONS(3656), + [anon_sym_property] = ACTIONS(3656), + [anon_sym_signal] = ACTIONS(3656), + [anon_sym_on] = ACTIONS(3656), + [anon_sym_required] = ACTIONS(3656), + [anon_sym_component] = ACTIONS(3656), [sym_html_comment] = ACTIONS(5), }, - [2143] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2143), - [sym__module] = STATE(3134), + [1996] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(1996), + [sym__module] = STATE(2918), [sym_identifier] = ACTIONS(4333), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(1335), - [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_RBRACE] = ACTIONS(1321), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_RPAREN] = ACTIONS(1335), + [anon_sym_RPAREN] = ACTIONS(1321), [anon_sym_in] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1335), + [anon_sym_COLON] = ACTIONS(1321), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(1335), + [anon_sym_RBRACK] = ACTIONS(1321), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(56), @@ -254732,16 +241368,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1335), + [anon_sym_QMARK] = ACTIONS(1321), [anon_sym_satisfies] = ACTIONS(28), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2144] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2144), - [sym__module] = STATE(3134), + [1997] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(1997), + [sym__module] = STATE(2918), [sym_identifier] = ACTIONS(4333), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(128), @@ -254807,429 +241443,221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2145] = { - [sym_comment] = STATE(2145), - [sym_identifier] = ACTIONS(3522), - [anon_sym_export] = ACTIONS(3522), - [anon_sym_type] = ACTIONS(3522), - [anon_sym_namespace] = ACTIONS(3522), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_typeof] = ACTIONS(3522), - [anon_sym_import] = ACTIONS(3522), - [anon_sym_from] = ACTIONS(3522), - [anon_sym_let] = ACTIONS(3522), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_LPAREN] = ACTIONS(3522), - [anon_sym_RPAREN] = ACTIONS(3522), - [anon_sym_await] = ACTIONS(3522), - [anon_sym_of] = ACTIONS(3522), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_yield] = ACTIONS(3522), - [anon_sym_LBRACK] = ACTIONS(3522), - [anon_sym_LTtemplate_GT] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [anon_sym_SQUOTE] = ACTIONS(3522), - [anon_sym_class] = ACTIONS(3522), - [anon_sym_async] = ACTIONS(3522), - [anon_sym_function] = ACTIONS(3522), - [anon_sym_new] = ACTIONS(3522), - [anon_sym_using] = ACTIONS(3522), - [anon_sym_PLUS] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3522), - [anon_sym_SLASH] = ACTIONS(3522), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_void] = ACTIONS(3522), - [anon_sym_delete] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3522), - [sym_number] = ACTIONS(3522), - [sym_private_property_identifier] = ACTIONS(3522), - [sym_this] = ACTIONS(3522), - [sym_super] = ACTIONS(3522), - [sym_true] = ACTIONS(3522), - [sym_false] = ACTIONS(3522), - [sym_null] = ACTIONS(3522), - [sym_undefined] = ACTIONS(3522), - [anon_sym_AT] = ACTIONS(3522), - [anon_sym_static] = ACTIONS(3522), - [anon_sym_readonly] = ACTIONS(3522), - [anon_sym_get] = ACTIONS(3522), - [anon_sym_set] = ACTIONS(3522), - [anon_sym_declare] = ACTIONS(3522), - [anon_sym_public] = ACTIONS(3522), - [anon_sym_private] = ACTIONS(3522), - [anon_sym_protected] = ACTIONS(3522), - [anon_sym_override] = ACTIONS(3522), - [anon_sym_module] = ACTIONS(3522), - [anon_sym_any] = ACTIONS(3522), - [anon_sym_number] = ACTIONS(3522), - [anon_sym_boolean] = ACTIONS(3522), - [anon_sym_string] = ACTIONS(3522), - [anon_sym_symbol] = ACTIONS(3522), - [anon_sym_object] = ACTIONS(3522), - [anon_sym_property] = ACTIONS(3522), - [anon_sym_signal] = ACTIONS(3522), - [anon_sym_on] = ACTIONS(3522), - [anon_sym_required] = ACTIONS(3522), - [anon_sym_component] = ACTIONS(3522), - [sym_html_comment] = ACTIONS(5), - }, - [2146] = { - [sym_nested_identifier] = STATE(2785), - [sym_string] = STATE(2757), - [sym_comment] = STATE(2146), - [sym__module] = STATE(3018), - [sym_ui_object_initializer] = STATE(7553), - [sym_identifier] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(28), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), + [1998] = { + [sym_comment] = STATE(1998), + [sym_identifier] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_type] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3534), + [anon_sym_typeof] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_from] = ACTIONS(3534), + [anon_sym_let] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3534), + [anon_sym_await] = ACTIONS(3534), + [anon_sym_of] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3534), + [anon_sym_yield] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_LTtemplate_GT] = ACTIONS(3534), + [anon_sym_DQUOTE] = ACTIONS(3534), + [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_async] = ACTIONS(3534), + [anon_sym_function] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_SLASH] = ACTIONS(3534), + [anon_sym_LT] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_void] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3534), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), + [anon_sym_BQUOTE] = ACTIONS(3534), + [sym_number] = ACTIONS(3534), + [sym_private_property_identifier] = ACTIONS(3534), + [sym_this] = ACTIONS(3534), + [sym_super] = ACTIONS(3534), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [sym_null] = ACTIONS(3534), + [sym_undefined] = ACTIONS(3534), + [anon_sym_AT] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_readonly] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3534), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_declare] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_override] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_any] = ACTIONS(3534), + [anon_sym_number] = ACTIONS(3534), + [anon_sym_boolean] = ACTIONS(3534), + [anon_sym_string] = ACTIONS(3534), + [anon_sym_symbol] = ACTIONS(3534), + [anon_sym_object] = ACTIONS(3534), + [anon_sym_property] = ACTIONS(3534), + [anon_sym_signal] = ACTIONS(3534), + [anon_sym_on] = ACTIONS(3534), + [anon_sym_required] = ACTIONS(3534), + [anon_sym_component] = ACTIONS(3534), [sym_html_comment] = ACTIONS(5), }, - [2147] = { - [sym_comment] = STATE(2147), - [sym_identifier] = ACTIONS(3632), - [anon_sym_export] = ACTIONS(3632), - [anon_sym_type] = ACTIONS(3632), - [anon_sym_namespace] = ACTIONS(3632), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_typeof] = ACTIONS(3632), - [anon_sym_import] = ACTIONS(3632), - [anon_sym_from] = ACTIONS(3632), - [anon_sym_let] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym_await] = ACTIONS(3632), - [anon_sym_of] = ACTIONS(3632), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym_yield] = ACTIONS(3632), - [anon_sym_LBRACK] = ACTIONS(3632), - [anon_sym_LTtemplate_GT] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_class] = ACTIONS(3632), - [anon_sym_async] = ACTIONS(3632), - [anon_sym_function] = ACTIONS(3632), - [anon_sym_new] = ACTIONS(3632), - [anon_sym_using] = ACTIONS(3632), - [anon_sym_PLUS] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3632), - [anon_sym_SLASH] = ACTIONS(3632), - [anon_sym_LT] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_void] = ACTIONS(3632), - [anon_sym_delete] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3632), - [sym_number] = ACTIONS(3632), - [sym_private_property_identifier] = ACTIONS(3632), - [sym_this] = ACTIONS(3632), - [sym_super] = ACTIONS(3632), - [sym_true] = ACTIONS(3632), - [sym_false] = ACTIONS(3632), - [sym_null] = ACTIONS(3632), - [sym_undefined] = ACTIONS(3632), - [anon_sym_AT] = ACTIONS(3632), - [anon_sym_static] = ACTIONS(3632), - [anon_sym_readonly] = ACTIONS(3632), - [anon_sym_get] = ACTIONS(3632), - [anon_sym_set] = ACTIONS(3632), - [anon_sym_declare] = ACTIONS(3632), - [anon_sym_public] = ACTIONS(3632), - [anon_sym_private] = ACTIONS(3632), - [anon_sym_protected] = ACTIONS(3632), - [anon_sym_override] = ACTIONS(3632), - [anon_sym_module] = ACTIONS(3632), - [anon_sym_any] = ACTIONS(3632), - [anon_sym_number] = ACTIONS(3632), - [anon_sym_boolean] = ACTIONS(3632), - [anon_sym_string] = ACTIONS(3632), - [anon_sym_symbol] = ACTIONS(3632), - [anon_sym_object] = ACTIONS(3632), - [anon_sym_property] = ACTIONS(3632), - [anon_sym_signal] = ACTIONS(3632), - [anon_sym_on] = ACTIONS(3632), - [anon_sym_required] = ACTIONS(3632), - [anon_sym_component] = ACTIONS(3632), + [1999] = { + [sym_comment] = STATE(1999), + [sym_identifier] = ACTIONS(4307), + [anon_sym_export] = ACTIONS(4307), + [anon_sym_type] = ACTIONS(4307), + [anon_sym_namespace] = ACTIONS(4307), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_typeof] = ACTIONS(4307), + [anon_sym_import] = ACTIONS(4307), + [anon_sym_from] = ACTIONS(4307), + [anon_sym_let] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_LPAREN] = ACTIONS(4307), + [anon_sym_await] = ACTIONS(4307), + [anon_sym_of] = ACTIONS(4307), + [anon_sym_yield] = ACTIONS(4307), + [anon_sym_LBRACK] = ACTIONS(4307), + [anon_sym_LTtemplate_GT] = ACTIONS(4307), + [anon_sym_DQUOTE] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4307), + [anon_sym_class] = ACTIONS(4307), + [anon_sym_async] = ACTIONS(4307), + [anon_sym_function] = ACTIONS(4307), + [anon_sym_new] = ACTIONS(4307), + [anon_sym_using] = ACTIONS(4307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4307), + [anon_sym_PLUS] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4307), + [anon_sym_SLASH] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4307), + [anon_sym_void] = ACTIONS(4307), + [anon_sym_delete] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4307), + [sym_number] = ACTIONS(4307), + [sym_private_property_identifier] = ACTIONS(4307), + [sym_this] = ACTIONS(4307), + [sym_super] = ACTIONS(4307), + [sym_true] = ACTIONS(4307), + [sym_false] = ACTIONS(4307), + [sym_null] = ACTIONS(4307), + [sym_undefined] = ACTIONS(4307), + [anon_sym_AT] = ACTIONS(4307), + [anon_sym_static] = ACTIONS(4307), + [anon_sym_readonly] = ACTIONS(4307), + [anon_sym_get] = ACTIONS(4307), + [anon_sym_set] = ACTIONS(4307), + [anon_sym_declare] = ACTIONS(4307), + [anon_sym_public] = ACTIONS(4307), + [anon_sym_private] = ACTIONS(4307), + [anon_sym_protected] = ACTIONS(4307), + [anon_sym_override] = ACTIONS(4307), + [anon_sym_module] = ACTIONS(4307), + [anon_sym_any] = ACTIONS(4307), + [anon_sym_number] = ACTIONS(4307), + [anon_sym_boolean] = ACTIONS(4307), + [anon_sym_string] = ACTIONS(4307), + [anon_sym_symbol] = ACTIONS(4307), + [anon_sym_object] = ACTIONS(4307), + [anon_sym_property] = ACTIONS(4307), + [anon_sym_signal] = ACTIONS(4307), + [anon_sym_on] = ACTIONS(4307), + [anon_sym_required] = ACTIONS(4307), + [anon_sym_component] = ACTIONS(4307), [sym_html_comment] = ACTIONS(5), }, - [2148] = { - [sym_comment] = STATE(2148), - [sym_identifier] = ACTIONS(4325), - [anon_sym_export] = ACTIONS(4325), - [anon_sym_type] = ACTIONS(4325), - [anon_sym_namespace] = ACTIONS(4325), - [anon_sym_LBRACE] = ACTIONS(4325), - [anon_sym_typeof] = ACTIONS(4325), - [anon_sym_import] = ACTIONS(4325), - [anon_sym_from] = ACTIONS(4325), - [anon_sym_let] = ACTIONS(4325), - [anon_sym_BANG] = ACTIONS(4325), - [anon_sym_LPAREN] = ACTIONS(4325), - [anon_sym_await] = ACTIONS(4325), - [anon_sym_of] = ACTIONS(4325), - [anon_sym_yield] = ACTIONS(4325), - [anon_sym_LBRACK] = ACTIONS(4325), - [anon_sym_LTtemplate_GT] = ACTIONS(4325), - [anon_sym_DQUOTE] = ACTIONS(4325), - [anon_sym_SQUOTE] = ACTIONS(4325), - [anon_sym_class] = ACTIONS(4325), - [anon_sym_async] = ACTIONS(4325), - [anon_sym_function] = ACTIONS(4325), - [anon_sym_new] = ACTIONS(4325), - [anon_sym_using] = ACTIONS(4325), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4325), - [anon_sym_PLUS] = ACTIONS(4325), - [anon_sym_DASH] = ACTIONS(4325), - [anon_sym_SLASH] = ACTIONS(4325), - [anon_sym_LT] = ACTIONS(4325), - [anon_sym_TILDE] = ACTIONS(4325), - [anon_sym_void] = ACTIONS(4325), - [anon_sym_delete] = ACTIONS(4325), - [anon_sym_PLUS_PLUS] = ACTIONS(4325), - [anon_sym_DASH_DASH] = ACTIONS(4325), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4325), - [sym_number] = ACTIONS(4325), - [sym_private_property_identifier] = ACTIONS(4325), - [sym_this] = ACTIONS(4325), - [sym_super] = ACTIONS(4325), - [sym_true] = ACTIONS(4325), - [sym_false] = ACTIONS(4325), - [sym_null] = ACTIONS(4325), - [sym_undefined] = ACTIONS(4325), - [anon_sym_AT] = ACTIONS(4325), - [anon_sym_static] = ACTIONS(4325), - [anon_sym_readonly] = ACTIONS(4325), - [anon_sym_get] = ACTIONS(4325), - [anon_sym_set] = ACTIONS(4325), - [anon_sym_declare] = ACTIONS(4325), - [anon_sym_public] = ACTIONS(4325), - [anon_sym_private] = ACTIONS(4325), - [anon_sym_protected] = ACTIONS(4325), - [anon_sym_override] = ACTIONS(4325), - [anon_sym_module] = ACTIONS(4325), - [anon_sym_any] = ACTIONS(4325), - [anon_sym_number] = ACTIONS(4325), - [anon_sym_boolean] = ACTIONS(4325), - [anon_sym_string] = ACTIONS(4325), - [anon_sym_symbol] = ACTIONS(4325), - [anon_sym_object] = ACTIONS(4325), - [anon_sym_property] = ACTIONS(4325), - [anon_sym_signal] = ACTIONS(4325), - [anon_sym_on] = ACTIONS(4325), - [anon_sym_required] = ACTIONS(4325), - [anon_sym_component] = ACTIONS(4325), - [sym_html_comment] = ACTIONS(5), - }, - [2149] = { - [sym_comment] = STATE(2149), - [sym_identifier] = ACTIONS(4337), - [anon_sym_export] = ACTIONS(4337), - [anon_sym_type] = ACTIONS(4337), - [anon_sym_namespace] = ACTIONS(4337), - [anon_sym_LBRACE] = ACTIONS(4337), - [anon_sym_typeof] = ACTIONS(4337), - [anon_sym_import] = ACTIONS(4337), - [anon_sym_from] = ACTIONS(4337), - [anon_sym_let] = ACTIONS(4337), - [anon_sym_BANG] = ACTIONS(4337), - [anon_sym_LPAREN] = ACTIONS(4337), - [anon_sym_await] = ACTIONS(4337), - [anon_sym_of] = ACTIONS(4337), - [anon_sym_yield] = ACTIONS(4337), - [anon_sym_LBRACK] = ACTIONS(4337), - [anon_sym_LTtemplate_GT] = ACTIONS(4337), - [anon_sym_DQUOTE] = ACTIONS(4337), - [anon_sym_SQUOTE] = ACTIONS(4337), - [anon_sym_class] = ACTIONS(4337), - [anon_sym_async] = ACTIONS(4337), - [anon_sym_function] = ACTIONS(4337), - [anon_sym_new] = ACTIONS(4337), - [anon_sym_using] = ACTIONS(4337), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4337), - [anon_sym_PLUS] = ACTIONS(4337), - [anon_sym_DASH] = ACTIONS(4337), - [anon_sym_SLASH] = ACTIONS(4337), - [anon_sym_LT] = ACTIONS(4337), - [anon_sym_TILDE] = ACTIONS(4337), - [anon_sym_void] = ACTIONS(4337), - [anon_sym_delete] = ACTIONS(4337), - [anon_sym_PLUS_PLUS] = ACTIONS(4337), - [anon_sym_DASH_DASH] = ACTIONS(4337), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4337), - [sym_number] = ACTIONS(4337), - [sym_private_property_identifier] = ACTIONS(4337), - [sym_this] = ACTIONS(4337), - [sym_super] = ACTIONS(4337), - [sym_true] = ACTIONS(4337), - [sym_false] = ACTIONS(4337), - [sym_null] = ACTIONS(4337), - [sym_undefined] = ACTIONS(4337), - [anon_sym_AT] = ACTIONS(4337), - [anon_sym_static] = ACTIONS(4337), - [anon_sym_readonly] = ACTIONS(4337), - [anon_sym_get] = ACTIONS(4337), - [anon_sym_set] = ACTIONS(4337), - [anon_sym_declare] = ACTIONS(4337), - [anon_sym_public] = ACTIONS(4337), - [anon_sym_private] = ACTIONS(4337), - [anon_sym_protected] = ACTIONS(4337), - [anon_sym_override] = ACTIONS(4337), - [anon_sym_module] = ACTIONS(4337), - [anon_sym_any] = ACTIONS(4337), - [anon_sym_number] = ACTIONS(4337), - [anon_sym_boolean] = ACTIONS(4337), - [anon_sym_string] = ACTIONS(4337), - [anon_sym_symbol] = ACTIONS(4337), - [anon_sym_object] = ACTIONS(4337), - [anon_sym_property] = ACTIONS(4337), - [anon_sym_signal] = ACTIONS(4337), - [anon_sym_on] = ACTIONS(4337), - [anon_sym_required] = ACTIONS(4337), - [anon_sym_component] = ACTIONS(4337), - [sym_html_comment] = ACTIONS(5), - }, - [2150] = { - [sym_comment] = STATE(2150), - [sym_identifier] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_type] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3630), - [anon_sym_typeof] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_from] = ACTIONS(3630), - [anon_sym_let] = ACTIONS(3630), - [anon_sym_BANG] = ACTIONS(3630), - [anon_sym_LPAREN] = ACTIONS(3630), - [anon_sym_await] = ACTIONS(3630), - [anon_sym_of] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3630), - [anon_sym_yield] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_LTtemplate_GT] = ACTIONS(3630), - [anon_sym_DQUOTE] = ACTIONS(3630), - [anon_sym_SQUOTE] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_async] = ACTIONS(3630), - [anon_sym_function] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_SLASH] = ACTIONS(3630), - [anon_sym_LT] = ACTIONS(3630), - [anon_sym_TILDE] = ACTIONS(3630), - [anon_sym_void] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_PLUS_PLUS] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3630), + [2000] = { + [sym_comment] = STATE(2000), + [sym_identifier] = ACTIONS(3532), + [anon_sym_export] = ACTIONS(3532), + [anon_sym_type] = ACTIONS(3532), + [anon_sym_namespace] = ACTIONS(3532), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3532), + [anon_sym_import] = ACTIONS(3532), + [anon_sym_from] = ACTIONS(3532), + [anon_sym_let] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3532), + [anon_sym_of] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_yield] = ACTIONS(3532), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LTtemplate_GT] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_class] = ACTIONS(3532), + [anon_sym_async] = ACTIONS(3532), + [anon_sym_function] = ACTIONS(3532), + [anon_sym_new] = ACTIONS(3532), + [anon_sym_using] = ACTIONS(3532), + [anon_sym_PLUS] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3532), + [anon_sym_SLASH] = ACTIONS(3532), + [anon_sym_LT] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_void] = ACTIONS(3532), + [anon_sym_delete] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3532), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3630), - [sym_number] = ACTIONS(3630), - [sym_private_property_identifier] = ACTIONS(3630), - [sym_this] = ACTIONS(3630), - [sym_super] = ACTIONS(3630), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [sym_null] = ACTIONS(3630), - [sym_undefined] = ACTIONS(3630), - [anon_sym_AT] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_readonly] = ACTIONS(3630), - [anon_sym_get] = ACTIONS(3630), - [anon_sym_set] = ACTIONS(3630), - [anon_sym_declare] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_override] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_any] = ACTIONS(3630), - [anon_sym_number] = ACTIONS(3630), - [anon_sym_boolean] = ACTIONS(3630), - [anon_sym_string] = ACTIONS(3630), - [anon_sym_symbol] = ACTIONS(3630), - [anon_sym_object] = ACTIONS(3630), - [anon_sym_property] = ACTIONS(3630), - [anon_sym_signal] = ACTIONS(3630), - [anon_sym_on] = ACTIONS(3630), - [anon_sym_required] = ACTIONS(3630), - [anon_sym_component] = ACTIONS(3630), + [anon_sym_BQUOTE] = ACTIONS(3532), + [sym_number] = ACTIONS(3532), + [sym_private_property_identifier] = ACTIONS(3532), + [sym_this] = ACTIONS(3532), + [sym_super] = ACTIONS(3532), + [sym_true] = ACTIONS(3532), + [sym_false] = ACTIONS(3532), + [sym_null] = ACTIONS(3532), + [sym_undefined] = ACTIONS(3532), + [anon_sym_AT] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3532), + [anon_sym_readonly] = ACTIONS(3532), + [anon_sym_get] = ACTIONS(3532), + [anon_sym_set] = ACTIONS(3532), + [anon_sym_declare] = ACTIONS(3532), + [anon_sym_public] = ACTIONS(3532), + [anon_sym_private] = ACTIONS(3532), + [anon_sym_protected] = ACTIONS(3532), + [anon_sym_override] = ACTIONS(3532), + [anon_sym_module] = ACTIONS(3532), + [anon_sym_any] = ACTIONS(3532), + [anon_sym_number] = ACTIONS(3532), + [anon_sym_boolean] = ACTIONS(3532), + [anon_sym_string] = ACTIONS(3532), + [anon_sym_symbol] = ACTIONS(3532), + [anon_sym_object] = ACTIONS(3532), + [anon_sym_property] = ACTIONS(3532), + [anon_sym_signal] = ACTIONS(3532), + [anon_sym_on] = ACTIONS(3532), + [anon_sym_required] = ACTIONS(3532), + [anon_sym_component] = ACTIONS(3532), [sym_html_comment] = ACTIONS(5), }, - [2151] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2151), - [sym__module] = STATE(3134), + [2001] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(2001), + [sym__module] = STATE(2918), [sym_identifier] = ACTIONS(4333), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1337), [anon_sym_as] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_RBRACE] = ACTIONS(28), @@ -255291,13 +241719,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2152] = { - [sym_nested_identifier] = STATE(2785), - [sym_string] = STATE(2757), - [sym_comment] = STATE(2152), - [sym__module] = STATE(3018), - [sym_ui_object_initializer] = STATE(4262), - [sym_identifier] = ACTIONS(4335), + [2002] = { + [sym_nested_identifier] = STATE(2619), + [sym_string] = STATE(2617), + [sym_comment] = STATE(2002), + [sym__module] = STATE(2951), + [sym_ui_object_initializer] = STATE(7676), + [sym_identifier] = ACTIONS(4337), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), @@ -255312,7 +241740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(3267), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -255360,77 +241788,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2153] = { - [sym_comment] = STATE(2153), - [sym_identifier] = ACTIONS(3636), - [anon_sym_export] = ACTIONS(3636), - [anon_sym_type] = ACTIONS(3636), - [anon_sym_namespace] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_typeof] = ACTIONS(3636), - [anon_sym_import] = ACTIONS(3636), - [anon_sym_from] = ACTIONS(3636), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3636), - [anon_sym_await] = ACTIONS(3636), - [anon_sym_of] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_yield] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_LTtemplate_GT] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_async] = ACTIONS(3636), - [anon_sym_function] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_using] = ACTIONS(3636), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_SLASH] = ACTIONS(3636), - [anon_sym_LT] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_void] = ACTIONS(3636), - [anon_sym_delete] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3636), - [sym_number] = ACTIONS(3636), - [sym_private_property_identifier] = ACTIONS(3636), - [sym_this] = ACTIONS(3636), - [sym_super] = ACTIONS(3636), - [sym_true] = ACTIONS(3636), - [sym_false] = ACTIONS(3636), - [sym_null] = ACTIONS(3636), - [sym_undefined] = ACTIONS(3636), - [anon_sym_AT] = ACTIONS(3636), - [anon_sym_static] = ACTIONS(3636), - [anon_sym_readonly] = ACTIONS(3636), - [anon_sym_get] = ACTIONS(3636), - [anon_sym_set] = ACTIONS(3636), - [anon_sym_declare] = ACTIONS(3636), - [anon_sym_public] = ACTIONS(3636), - [anon_sym_private] = ACTIONS(3636), - [anon_sym_protected] = ACTIONS(3636), - [anon_sym_override] = ACTIONS(3636), - [anon_sym_module] = ACTIONS(3636), - [anon_sym_any] = ACTIONS(3636), - [anon_sym_number] = ACTIONS(3636), - [anon_sym_boolean] = ACTIONS(3636), - [anon_sym_string] = ACTIONS(3636), - [anon_sym_symbol] = ACTIONS(3636), - [anon_sym_object] = ACTIONS(3636), - [anon_sym_property] = ACTIONS(3636), - [anon_sym_signal] = ACTIONS(3636), - [anon_sym_on] = ACTIONS(3636), - [anon_sym_required] = ACTIONS(3636), - [anon_sym_component] = ACTIONS(3636), - [sym_html_comment] = ACTIONS(5), - }, - [2154] = { - [sym_comment] = STATE(2154), + [2003] = { + [sym_comment] = STATE(2003), [sym_identifier] = ACTIONS(4339), [anon_sym_export] = ACTIONS(4339), [anon_sym_type] = ACTIONS(4339), @@ -255498,8 +241857,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(4339), [sym_html_comment] = ACTIONS(5), }, - [2155] = { - [sym_comment] = STATE(2155), + [2004] = { + [sym_comment] = STATE(2004), + [sym_identifier] = ACTIONS(3524), + [anon_sym_export] = ACTIONS(3524), + [anon_sym_type] = ACTIONS(3524), + [anon_sym_namespace] = ACTIONS(3524), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3524), + [anon_sym_import] = ACTIONS(3524), + [anon_sym_from] = ACTIONS(3524), + [anon_sym_let] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3524), + [anon_sym_of] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_yield] = ACTIONS(3524), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_LTtemplate_GT] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_class] = ACTIONS(3524), + [anon_sym_async] = ACTIONS(3524), + [anon_sym_function] = ACTIONS(3524), + [anon_sym_new] = ACTIONS(3524), + [anon_sym_using] = ACTIONS(3524), + [anon_sym_PLUS] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_void] = ACTIONS(3524), + [anon_sym_delete] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3524), + [sym_number] = ACTIONS(3524), + [sym_private_property_identifier] = ACTIONS(3524), + [sym_this] = ACTIONS(3524), + [sym_super] = ACTIONS(3524), + [sym_true] = ACTIONS(3524), + [sym_false] = ACTIONS(3524), + [sym_null] = ACTIONS(3524), + [sym_undefined] = ACTIONS(3524), + [anon_sym_AT] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3524), + [anon_sym_readonly] = ACTIONS(3524), + [anon_sym_get] = ACTIONS(3524), + [anon_sym_set] = ACTIONS(3524), + [anon_sym_declare] = ACTIONS(3524), + [anon_sym_public] = ACTIONS(3524), + [anon_sym_private] = ACTIONS(3524), + [anon_sym_protected] = ACTIONS(3524), + [anon_sym_override] = ACTIONS(3524), + [anon_sym_module] = ACTIONS(3524), + [anon_sym_any] = ACTIONS(3524), + [anon_sym_number] = ACTIONS(3524), + [anon_sym_boolean] = ACTIONS(3524), + [anon_sym_string] = ACTIONS(3524), + [anon_sym_symbol] = ACTIONS(3524), + [anon_sym_object] = ACTIONS(3524), + [anon_sym_property] = ACTIONS(3524), + [anon_sym_signal] = ACTIONS(3524), + [anon_sym_on] = ACTIONS(3524), + [anon_sym_required] = ACTIONS(3524), + [anon_sym_component] = ACTIONS(3524), + [sym_html_comment] = ACTIONS(5), + }, + [2005] = { + [sym_comment] = STATE(2005), [sym_identifier] = ACTIONS(4341), [anon_sym_export] = ACTIONS(4341), [anon_sym_type] = ACTIONS(4341), @@ -255567,8 +241995,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(4341), [sym_html_comment] = ACTIONS(5), }, - [2156] = { - [sym_comment] = STATE(2156), + [2006] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(2006), + [sym__module] = STATE(2918), + [sym_identifier] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_RPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2007] = { + [sym_comment] = STATE(2007), [sym_identifier] = ACTIONS(4343), [anon_sym_export] = ACTIONS(4343), [anon_sym_type] = ACTIONS(4343), @@ -255636,8 +242133,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(4343), [sym_html_comment] = ACTIONS(5), }, - [2157] = { - [sym_comment] = STATE(2157), + [2008] = { + [sym_comment] = STATE(2008), + [sym_identifier] = ACTIONS(3520), + [anon_sym_export] = ACTIONS(3520), + [anon_sym_type] = ACTIONS(3520), + [anon_sym_namespace] = ACTIONS(3520), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3520), + [anon_sym_import] = ACTIONS(3520), + [anon_sym_from] = ACTIONS(3520), + [anon_sym_let] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3520), + [anon_sym_of] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_yield] = ACTIONS(3520), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_LTtemplate_GT] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_class] = ACTIONS(3520), + [anon_sym_async] = ACTIONS(3520), + [anon_sym_function] = ACTIONS(3520), + [anon_sym_new] = ACTIONS(3520), + [anon_sym_using] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3520), + [anon_sym_LT] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_void] = ACTIONS(3520), + [anon_sym_delete] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_number] = ACTIONS(3520), + [sym_private_property_identifier] = ACTIONS(3520), + [sym_this] = ACTIONS(3520), + [sym_super] = ACTIONS(3520), + [sym_true] = ACTIONS(3520), + [sym_false] = ACTIONS(3520), + [sym_null] = ACTIONS(3520), + [sym_undefined] = ACTIONS(3520), + [anon_sym_AT] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3520), + [anon_sym_readonly] = ACTIONS(3520), + [anon_sym_get] = ACTIONS(3520), + [anon_sym_set] = ACTIONS(3520), + [anon_sym_declare] = ACTIONS(3520), + [anon_sym_public] = ACTIONS(3520), + [anon_sym_private] = ACTIONS(3520), + [anon_sym_protected] = ACTIONS(3520), + [anon_sym_override] = ACTIONS(3520), + [anon_sym_module] = ACTIONS(3520), + [anon_sym_any] = ACTIONS(3520), + [anon_sym_number] = ACTIONS(3520), + [anon_sym_boolean] = ACTIONS(3520), + [anon_sym_string] = ACTIONS(3520), + [anon_sym_symbol] = ACTIONS(3520), + [anon_sym_object] = ACTIONS(3520), + [anon_sym_property] = ACTIONS(3520), + [anon_sym_signal] = ACTIONS(3520), + [anon_sym_on] = ACTIONS(3520), + [anon_sym_required] = ACTIONS(3520), + [anon_sym_component] = ACTIONS(3520), + [sym_html_comment] = ACTIONS(5), + }, + [2009] = { + [sym_nested_identifier] = STATE(2619), + [sym_string] = STATE(2617), + [sym_comment] = STATE(2009), + [sym__module] = STATE(2951), + [sym_ui_object_initializer] = STATE(4160), + [sym_identifier] = ACTIONS(4337), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2010] = { + [sym_comment] = STATE(2010), [sym_identifier] = ACTIONS(4345), [anon_sym_export] = ACTIONS(4345), [anon_sym_type] = ACTIONS(4345), @@ -255705,29 +242340,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(4345), [sym_html_comment] = ACTIONS(5), }, - [2158] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2158), - [sym__module] = STATE(3134), - [sym_identifier] = ACTIONS(4333), + [2011] = { + [sym_comment] = STATE(2011), + [sym_identifier] = ACTIONS(4347), + [anon_sym_export] = ACTIONS(4347), + [anon_sym_type] = ACTIONS(4347), + [anon_sym_namespace] = ACTIONS(4347), + [anon_sym_LBRACE] = ACTIONS(4347), + [anon_sym_typeof] = ACTIONS(4347), + [anon_sym_import] = ACTIONS(4347), + [anon_sym_from] = ACTIONS(4347), + [anon_sym_let] = ACTIONS(4347), + [anon_sym_BANG] = ACTIONS(4347), + [anon_sym_LPAREN] = ACTIONS(4347), + [anon_sym_await] = ACTIONS(4347), + [anon_sym_of] = ACTIONS(4347), + [anon_sym_yield] = ACTIONS(4347), + [anon_sym_LBRACK] = ACTIONS(4347), + [anon_sym_LTtemplate_GT] = ACTIONS(4347), + [anon_sym_DQUOTE] = ACTIONS(4347), + [anon_sym_SQUOTE] = ACTIONS(4347), + [anon_sym_class] = ACTIONS(4347), + [anon_sym_async] = ACTIONS(4347), + [anon_sym_function] = ACTIONS(4347), + [anon_sym_new] = ACTIONS(4347), + [anon_sym_using] = ACTIONS(4347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4347), + [anon_sym_PLUS] = ACTIONS(4347), + [anon_sym_DASH] = ACTIONS(4347), + [anon_sym_SLASH] = ACTIONS(4347), + [anon_sym_LT] = ACTIONS(4347), + [anon_sym_TILDE] = ACTIONS(4347), + [anon_sym_void] = ACTIONS(4347), + [anon_sym_delete] = ACTIONS(4347), + [anon_sym_PLUS_PLUS] = ACTIONS(4347), + [anon_sym_DASH_DASH] = ACTIONS(4347), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4347), + [sym_number] = ACTIONS(4347), + [sym_private_property_identifier] = ACTIONS(4347), + [sym_this] = ACTIONS(4347), + [sym_super] = ACTIONS(4347), + [sym_true] = ACTIONS(4347), + [sym_false] = ACTIONS(4347), + [sym_null] = ACTIONS(4347), + [sym_undefined] = ACTIONS(4347), + [anon_sym_AT] = ACTIONS(4347), + [anon_sym_static] = ACTIONS(4347), + [anon_sym_readonly] = ACTIONS(4347), + [anon_sym_get] = ACTIONS(4347), + [anon_sym_set] = ACTIONS(4347), + [anon_sym_declare] = ACTIONS(4347), + [anon_sym_public] = ACTIONS(4347), + [anon_sym_private] = ACTIONS(4347), + [anon_sym_protected] = ACTIONS(4347), + [anon_sym_override] = ACTIONS(4347), + [anon_sym_module] = ACTIONS(4347), + [anon_sym_any] = ACTIONS(4347), + [anon_sym_number] = ACTIONS(4347), + [anon_sym_boolean] = ACTIONS(4347), + [anon_sym_string] = ACTIONS(4347), + [anon_sym_symbol] = ACTIONS(4347), + [anon_sym_object] = ACTIONS(4347), + [anon_sym_property] = ACTIONS(4347), + [anon_sym_signal] = ACTIONS(4347), + [anon_sym_on] = ACTIONS(4347), + [anon_sym_required] = ACTIONS(4347), + [anon_sym_component] = ACTIONS(4347), + [sym_html_comment] = ACTIONS(5), + }, + [2012] = { + [sym_variable_declarator] = STATE(6233), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(2012), + [sym_identifier] = ACTIONS(4275), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_RPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1383), + [anon_sym_LBRACK] = ACTIONS(4279), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -255771,152 +242473,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2159] = { - [sym_comment] = STATE(2159), - [sym_identifier] = ACTIONS(3638), - [anon_sym_export] = ACTIONS(3638), - [anon_sym_type] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3638), - [anon_sym_typeof] = ACTIONS(3638), - [anon_sym_import] = ACTIONS(3638), - [anon_sym_from] = ACTIONS(3638), - [anon_sym_let] = ACTIONS(3638), - [anon_sym_BANG] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3638), - [anon_sym_await] = ACTIONS(3638), - [anon_sym_of] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_yield] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_LTtemplate_GT] = ACTIONS(3638), - [anon_sym_DQUOTE] = ACTIONS(3638), - [anon_sym_SQUOTE] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_async] = ACTIONS(3638), - [anon_sym_function] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_SLASH] = ACTIONS(3638), - [anon_sym_LT] = ACTIONS(3638), - [anon_sym_TILDE] = ACTIONS(3638), - [anon_sym_void] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_PLUS_PLUS] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3638), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3638), - [sym_number] = ACTIONS(3638), - [sym_private_property_identifier] = ACTIONS(3638), - [sym_this] = ACTIONS(3638), - [sym_super] = ACTIONS(3638), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [sym_null] = ACTIONS(3638), - [sym_undefined] = ACTIONS(3638), - [anon_sym_AT] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_readonly] = ACTIONS(3638), - [anon_sym_get] = ACTIONS(3638), - [anon_sym_set] = ACTIONS(3638), - [anon_sym_declare] = ACTIONS(3638), - [anon_sym_public] = ACTIONS(3638), - [anon_sym_private] = ACTIONS(3638), - [anon_sym_protected] = ACTIONS(3638), - [anon_sym_override] = ACTIONS(3638), - [anon_sym_module] = ACTIONS(3638), - [anon_sym_any] = ACTIONS(3638), - [anon_sym_number] = ACTIONS(3638), - [anon_sym_boolean] = ACTIONS(3638), - [anon_sym_string] = ACTIONS(3638), - [anon_sym_symbol] = ACTIONS(3638), - [anon_sym_object] = ACTIONS(3638), - [anon_sym_property] = ACTIONS(3638), - [anon_sym_signal] = ACTIONS(3638), - [anon_sym_on] = ACTIONS(3638), - [anon_sym_required] = ACTIONS(3638), - [anon_sym_component] = ACTIONS(3638), - [sym_html_comment] = ACTIONS(5), - }, - [2160] = { - [sym_nested_identifier] = STATE(1839), - [sym_string] = STATE(1837), - [sym_comment] = STATE(2160), - [sym__module] = STATE(1856), - [sym_identifier] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4349), - [anon_sym_SQUOTE] = ACTIONS(4351), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(28), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [2161] = { - [sym_nested_identifier] = STATE(356), - [sym_string] = STATE(375), - [sym_comment] = STATE(2161), - [sym__module] = STATE(405), - [sym_identifier] = ACTIONS(4353), + [2013] = { + [sym_nested_identifier] = STATE(469), + [sym_string] = STATE(468), + [sym_comment] = STATE(2013), + [sym__module] = STATE(489), + [sym_identifier] = ACTIONS(4281), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), @@ -255929,9 +242495,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4355), - [anon_sym_SQUOTE] = ACTIONS(4357), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4283), + [anon_sym_SQUOTE] = ACTIONS(4285), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -255979,80 +242545,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2162] = { - [sym_comment] = STATE(2162), - [sym_identifier] = ACTIONS(4359), - [anon_sym_export] = ACTIONS(4359), - [anon_sym_type] = ACTIONS(4359), - [anon_sym_namespace] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_typeof] = ACTIONS(4359), - [anon_sym_import] = ACTIONS(4359), - [anon_sym_from] = ACTIONS(4359), - [anon_sym_let] = ACTIONS(4359), - [anon_sym_BANG] = ACTIONS(4359), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym_await] = ACTIONS(4359), - [anon_sym_of] = ACTIONS(4359), - [anon_sym_yield] = ACTIONS(4359), - [anon_sym_LBRACK] = ACTIONS(4359), - [anon_sym_LTtemplate_GT] = ACTIONS(4359), - [anon_sym_DQUOTE] = ACTIONS(4359), - [anon_sym_SQUOTE] = ACTIONS(4359), - [anon_sym_class] = ACTIONS(4359), - [anon_sym_async] = ACTIONS(4359), - [anon_sym_function] = ACTIONS(4359), - [anon_sym_new] = ACTIONS(4359), - [anon_sym_using] = ACTIONS(4359), - [anon_sym_PLUS] = ACTIONS(4359), - [anon_sym_DASH] = ACTIONS(4359), - [anon_sym_SLASH] = ACTIONS(4359), - [anon_sym_LT] = ACTIONS(4359), - [anon_sym_TILDE] = ACTIONS(4359), - [anon_sym_void] = ACTIONS(4359), - [anon_sym_delete] = ACTIONS(4359), - [anon_sym_PLUS_PLUS] = ACTIONS(4359), - [anon_sym_DASH_DASH] = ACTIONS(4359), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4359), - [sym_number] = ACTIONS(4359), - [sym_private_property_identifier] = ACTIONS(4359), - [sym_this] = ACTIONS(4359), - [sym_super] = ACTIONS(4359), - [sym_true] = ACTIONS(4359), - [sym_false] = ACTIONS(4359), - [sym_null] = ACTIONS(4359), - [sym_undefined] = ACTIONS(4359), - [anon_sym_AT] = ACTIONS(4359), - [anon_sym_static] = ACTIONS(4359), - [anon_sym_readonly] = ACTIONS(4359), - [anon_sym_get] = ACTIONS(4359), - [anon_sym_set] = ACTIONS(4359), - [anon_sym_declare] = ACTIONS(4359), - [anon_sym_public] = ACTIONS(4359), - [anon_sym_private] = ACTIONS(4359), - [anon_sym_protected] = ACTIONS(4359), - [anon_sym_override] = ACTIONS(4359), - [anon_sym_module] = ACTIONS(4359), - [anon_sym_any] = ACTIONS(4359), - [anon_sym_number] = ACTIONS(4359), - [anon_sym_boolean] = ACTIONS(4359), - [anon_sym_string] = ACTIONS(4359), - [anon_sym_symbol] = ACTIONS(4359), - [anon_sym_object] = ACTIONS(4359), - [anon_sym_property] = ACTIONS(4359), - [anon_sym_signal] = ACTIONS(4359), - [anon_sym_on] = ACTIONS(4359), - [anon_sym_required] = ACTIONS(4359), - [anon_sym_component] = ACTIONS(4359), - [sym_html_comment] = ACTIONS(5), - }, - [2163] = { - [sym_nested_identifier] = STATE(414), - [sym_string] = STATE(416), - [sym_comment] = STATE(2163), - [sym__module] = STATE(427), - [sym_identifier] = ACTIONS(4361), + [2014] = { + [sym_nested_identifier] = STATE(5665), + [sym_string] = STATE(6162), + [sym_comment] = STATE(2014), + [sym__module] = STATE(7250), + [sym_identifier] = ACTIONS(4349), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), @@ -256061,81 +242559,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1394), + [anon_sym_COLON] = ACTIONS(1383), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4363), - [anon_sym_SQUOTE] = ACTIONS(4365), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(28), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [2164] = { - [sym_variable_declarator] = STATE(6535), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(2164), - [sym_identifier] = ACTIONS(4273), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -256183,93 +242613,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2165] = { - [sym_comment] = STATE(2165), - [sym_identifier] = ACTIONS(4367), - [anon_sym_export] = ACTIONS(4367), - [anon_sym_type] = ACTIONS(4367), - [anon_sym_namespace] = ACTIONS(4367), - [anon_sym_LBRACE] = ACTIONS(4367), - [anon_sym_typeof] = ACTIONS(4367), - [anon_sym_import] = ACTIONS(4367), - [anon_sym_from] = ACTIONS(4367), - [anon_sym_let] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_await] = ACTIONS(4367), - [anon_sym_of] = ACTIONS(4367), - [anon_sym_yield] = ACTIONS(4367), - [anon_sym_LBRACK] = ACTIONS(4367), - [anon_sym_LTtemplate_GT] = ACTIONS(4367), - [anon_sym_DQUOTE] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_class] = ACTIONS(4367), - [anon_sym_async] = ACTIONS(4367), - [anon_sym_function] = ACTIONS(4367), - [anon_sym_new] = ACTIONS(4367), - [anon_sym_using] = ACTIONS(4367), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_TILDE] = ACTIONS(4367), - [anon_sym_void] = ACTIONS(4367), - [anon_sym_delete] = ACTIONS(4367), - [anon_sym_PLUS_PLUS] = ACTIONS(4367), - [anon_sym_DASH_DASH] = ACTIONS(4367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4367), - [sym_number] = ACTIONS(4367), - [sym_private_property_identifier] = ACTIONS(4367), - [sym_this] = ACTIONS(4367), - [sym_super] = ACTIONS(4367), - [sym_true] = ACTIONS(4367), - [sym_false] = ACTIONS(4367), - [sym_null] = ACTIONS(4367), - [sym_undefined] = ACTIONS(4367), - [anon_sym_AT] = ACTIONS(4367), - [anon_sym_static] = ACTIONS(4367), - [anon_sym_readonly] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4367), - [anon_sym_set] = ACTIONS(4367), - [anon_sym_declare] = ACTIONS(4367), - [anon_sym_public] = ACTIONS(4367), - [anon_sym_private] = ACTIONS(4367), - [anon_sym_protected] = ACTIONS(4367), - [anon_sym_override] = ACTIONS(4367), - [anon_sym_module] = ACTIONS(4367), - [anon_sym_any] = ACTIONS(4367), - [anon_sym_number] = ACTIONS(4367), - [anon_sym_boolean] = ACTIONS(4367), - [anon_sym_string] = ACTIONS(4367), - [anon_sym_symbol] = ACTIONS(4367), - [anon_sym_object] = ACTIONS(4367), - [anon_sym_property] = ACTIONS(4367), - [anon_sym_signal] = ACTIONS(4367), - [anon_sym_on] = ACTIONS(4367), - [anon_sym_required] = ACTIONS(4367), - [anon_sym_component] = ACTIONS(4367), - [sym_html_comment] = ACTIONS(5), - }, - [2166] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2166), - [sym__module] = STATE(3134), + [2015] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(2015), + [sym__module] = STATE(2918), + [sym_ui_object_initializer] = STATE(6404), [sym_identifier] = ACTIONS(4333), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_EQ] = ACTIONS(25), [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_COMMA] = ACTIONS(34), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1335), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(3267), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), [anon_sym_EQ_GT] = ACTIONS(66), @@ -256319,80 +242681,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2167] = { - [sym_variable_declarator] = STATE(6345), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(4987), - [sym_comment] = STATE(2167), - [sym_identifier] = ACTIONS(4369), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_of] = ACTIONS(4371), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(4277), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(28), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), - [sym_html_comment] = ACTIONS(5), - }, - [2168] = { - [sym_nested_identifier] = STATE(1325), - [sym_string] = STATE(1610), - [sym_comment] = STATE(2168), - [sym__module] = STATE(1668), - [sym_identifier] = ACTIONS(4287), + [2016] = { + [sym_nested_identifier] = STATE(2619), + [sym_string] = STATE(2617), + [sym_comment] = STATE(2016), + [sym__module] = STATE(2951), + [sym_identifier] = ACTIONS(4337), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), @@ -256401,13 +242695,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1392), + [anon_sym_COLON] = ACTIONS(1383), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4289), - [anon_sym_SQUOTE] = ACTIONS(4291), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -256455,27 +242749,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2169] = { - [sym_nested_identifier] = STATE(2785), - [sym_string] = STATE(2757), - [sym_comment] = STATE(2169), - [sym__module] = STATE(3018), - [sym_identifier] = ACTIONS(4335), + [2017] = { + [sym_nested_identifier] = STATE(379), + [sym_string] = STATE(385), + [sym_comment] = STATE(2017), + [sym__module] = STATE(464), + [sym_identifier] = ACTIONS(4351), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_in] = ACTIONS(1419), - [anon_sym_of] = ACTIONS(4371), + [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1371), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4353), + [anon_sym_SQUOTE] = ACTIONS(4355), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -256523,27 +242817,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2170] = { - [sym_variable_declarator] = STATE(6425), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(2170), - [sym_identifier] = ACTIONS(4273), + [2018] = { + [sym_nested_identifier] = STATE(358), + [sym_string] = STATE(359), + [sym_comment] = STATE(2018), + [sym__module] = STATE(409), + [sym_identifier] = ACTIONS(4357), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4359), + [anon_sym_SQUOTE] = ACTIONS(4361), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -256591,27 +242885,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2171] = { - [sym_nested_identifier] = STATE(2785), - [sym_string] = STATE(2757), - [sym_comment] = STATE(2171), - [sym__module] = STATE(3018), - [sym_identifier] = ACTIONS(4335), + [2019] = { + [sym_nested_identifier] = STATE(2619), + [sym_string] = STATE(2617), + [sym_comment] = STATE(2019), + [sym__module] = STATE(2951), + [sym_identifier] = ACTIONS(4337), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1443), [anon_sym_as] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(197), [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1449), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -256659,27 +242953,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2172] = { - [sym_nested_identifier] = STATE(2785), - [sym_string] = STATE(2757), - [sym_comment] = STATE(2172), - [sym__module] = STATE(3018), - [sym_identifier] = ACTIONS(4335), + [2020] = { + [sym_variable_declarator] = STATE(6361), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(2020), + [sym_identifier] = ACTIONS(4275), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_LBRACK] = ACTIONS(4279), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(1417), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -256727,12 +243021,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2173] = { - [sym_nested_identifier] = STATE(428), - [sym_string] = STATE(463), - [sym_comment] = STATE(2173), - [sym__module] = STATE(508), - [sym_identifier] = ACTIONS(4281), + [2021] = { + [sym_nested_identifier] = STATE(1689), + [sym_string] = STATE(1690), + [sym_comment] = STATE(2021), + [sym__module] = STATE(1702), + [sym_identifier] = ACTIONS(4363), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), @@ -256741,13 +243035,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1392), + [anon_sym_COLON] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4283), - [anon_sym_SQUOTE] = ACTIONS(4285), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4365), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -256795,27 +243089,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2174] = { - [sym_variable_declarator] = STATE(6340), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(2174), - [sym_identifier] = ACTIONS(4273), + [2022] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(2022), + [sym__module] = STATE(2918), + [sym_identifier] = ACTIONS(4333), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), + [anon_sym_of] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(1449), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -256863,12 +243157,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2175] = { - [sym_nested_identifier] = STATE(335), - [sym_string] = STATE(338), - [sym_comment] = STATE(2175), - [sym__module] = STATE(366), - [sym_identifier] = ACTIONS(4373), + [2023] = { + [sym_nested_identifier] = STATE(1389), + [sym_string] = STATE(1508), + [sym_comment] = STATE(2023), + [sym__module] = STATE(1649), + [sym_identifier] = ACTIONS(4295), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), @@ -256877,13 +243171,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_COLON] = ACTIONS(1412), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4375), - [anon_sym_SQUOTE] = ACTIONS(4377), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4297), + [anon_sym_SQUOTE] = ACTIONS(4299), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -256931,435 +243225,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2176] = { - [sym_comment] = STATE(2176), - [sym_identifier] = ACTIONS(4379), - [anon_sym_export] = ACTIONS(4379), - [anon_sym_type] = ACTIONS(4379), - [anon_sym_namespace] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_typeof] = ACTIONS(4379), - [anon_sym_import] = ACTIONS(4379), - [anon_sym_from] = ACTIONS(4379), - [anon_sym_let] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym_await] = ACTIONS(4379), - [anon_sym_of] = ACTIONS(4379), - [anon_sym_yield] = ACTIONS(4379), - [anon_sym_LBRACK] = ACTIONS(4379), - [anon_sym_LTtemplate_GT] = ACTIONS(4379), - [anon_sym_DQUOTE] = ACTIONS(4379), - [anon_sym_SQUOTE] = ACTIONS(4379), - [anon_sym_class] = ACTIONS(4379), - [anon_sym_async] = ACTIONS(4379), - [anon_sym_function] = ACTIONS(4379), - [anon_sym_new] = ACTIONS(4379), - [anon_sym_using] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4379), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_SLASH] = ACTIONS(4379), - [anon_sym_LT] = ACTIONS(4379), - [anon_sym_TILDE] = ACTIONS(4379), - [anon_sym_void] = ACTIONS(4379), - [anon_sym_delete] = ACTIONS(4379), - [anon_sym_PLUS_PLUS] = ACTIONS(4379), - [anon_sym_DASH_DASH] = ACTIONS(4379), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4379), - [sym_number] = ACTIONS(4379), - [sym_private_property_identifier] = ACTIONS(4379), - [sym_this] = ACTIONS(4379), - [sym_super] = ACTIONS(4379), - [sym_true] = ACTIONS(4379), - [sym_false] = ACTIONS(4379), - [sym_null] = ACTIONS(4379), - [sym_undefined] = ACTIONS(4379), - [anon_sym_AT] = ACTIONS(4379), - [anon_sym_static] = ACTIONS(4379), - [anon_sym_readonly] = ACTIONS(4379), - [anon_sym_get] = ACTIONS(4379), - [anon_sym_set] = ACTIONS(4379), - [anon_sym_declare] = ACTIONS(4379), - [anon_sym_public] = ACTIONS(4379), - [anon_sym_private] = ACTIONS(4379), - [anon_sym_protected] = ACTIONS(4379), - [anon_sym_override] = ACTIONS(4379), - [anon_sym_module] = ACTIONS(4379), - [anon_sym_any] = ACTIONS(4379), - [anon_sym_number] = ACTIONS(4379), - [anon_sym_boolean] = ACTIONS(4379), - [anon_sym_string] = ACTIONS(4379), - [anon_sym_symbol] = ACTIONS(4379), - [anon_sym_object] = ACTIONS(4379), - [anon_sym_property] = ACTIONS(4379), - [anon_sym_signal] = ACTIONS(4379), - [anon_sym_on] = ACTIONS(4379), - [anon_sym_required] = ACTIONS(4379), - [anon_sym_component] = ACTIONS(4379), - [sym_html_comment] = ACTIONS(5), - }, - [2177] = { - [sym_comment] = STATE(2177), - [sym_identifier] = ACTIONS(4381), - [anon_sym_export] = ACTIONS(4381), - [anon_sym_type] = ACTIONS(4381), - [anon_sym_namespace] = ACTIONS(4381), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_typeof] = ACTIONS(4381), - [anon_sym_import] = ACTIONS(4381), - [anon_sym_from] = ACTIONS(4381), - [anon_sym_let] = ACTIONS(4381), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_LPAREN] = ACTIONS(4381), - [anon_sym_await] = ACTIONS(4381), - [anon_sym_of] = ACTIONS(4381), - [anon_sym_yield] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4381), - [anon_sym_LTtemplate_GT] = ACTIONS(4381), - [anon_sym_DQUOTE] = ACTIONS(4381), - [anon_sym_SQUOTE] = ACTIONS(4381), - [anon_sym_class] = ACTIONS(4381), - [anon_sym_async] = ACTIONS(4381), - [anon_sym_function] = ACTIONS(4381), - [anon_sym_new] = ACTIONS(4381), - [anon_sym_using] = ACTIONS(4381), - [anon_sym_PLUS] = ACTIONS(4381), - [anon_sym_DASH] = ACTIONS(4381), - [anon_sym_SLASH] = ACTIONS(4381), - [anon_sym_LT] = ACTIONS(4381), - [anon_sym_TILDE] = ACTIONS(4381), - [anon_sym_void] = ACTIONS(4381), - [anon_sym_delete] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4381), - [sym_number] = ACTIONS(4381), - [sym_private_property_identifier] = ACTIONS(4381), - [sym_this] = ACTIONS(4381), - [sym_super] = ACTIONS(4381), - [sym_true] = ACTIONS(4381), - [sym_false] = ACTIONS(4381), - [sym_null] = ACTIONS(4381), - [sym_undefined] = ACTIONS(4381), - [anon_sym_AT] = ACTIONS(4381), - [anon_sym_static] = ACTIONS(4381), - [anon_sym_readonly] = ACTIONS(4381), - [anon_sym_get] = ACTIONS(4381), - [anon_sym_set] = ACTIONS(4381), - [anon_sym_declare] = ACTIONS(4381), - [anon_sym_public] = ACTIONS(4381), - [anon_sym_private] = ACTIONS(4381), - [anon_sym_protected] = ACTIONS(4381), - [anon_sym_override] = ACTIONS(4381), - [anon_sym_module] = ACTIONS(4381), - [anon_sym_any] = ACTIONS(4381), - [anon_sym_number] = ACTIONS(4381), - [anon_sym_boolean] = ACTIONS(4381), - [anon_sym_string] = ACTIONS(4381), - [anon_sym_symbol] = ACTIONS(4381), - [anon_sym_object] = ACTIONS(4381), - [anon_sym_property] = ACTIONS(4381), - [anon_sym_signal] = ACTIONS(4381), - [anon_sym_on] = ACTIONS(4381), - [anon_sym_required] = ACTIONS(4381), - [anon_sym_component] = ACTIONS(4381), - [sym_html_comment] = ACTIONS(5), - }, - [2178] = { - [sym_comment] = STATE(2178), - [sym_identifier] = ACTIONS(4383), - [anon_sym_export] = ACTIONS(4383), - [anon_sym_type] = ACTIONS(4383), - [anon_sym_namespace] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_typeof] = ACTIONS(4383), - [anon_sym_import] = ACTIONS(4383), - [anon_sym_from] = ACTIONS(4383), - [anon_sym_let] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym_await] = ACTIONS(4383), - [anon_sym_of] = ACTIONS(4383), - [anon_sym_yield] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_LTtemplate_GT] = ACTIONS(4383), - [anon_sym_DQUOTE] = ACTIONS(4383), - [anon_sym_SQUOTE] = ACTIONS(4383), - [anon_sym_class] = ACTIONS(4383), - [anon_sym_async] = ACTIONS(4383), - [anon_sym_function] = ACTIONS(4383), - [anon_sym_new] = ACTIONS(4383), - [anon_sym_using] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_SLASH] = ACTIONS(4383), - [anon_sym_LT] = ACTIONS(4383), - [anon_sym_TILDE] = ACTIONS(4383), - [anon_sym_void] = ACTIONS(4383), - [anon_sym_delete] = ACTIONS(4383), - [anon_sym_PLUS_PLUS] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4383), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4383), - [sym_number] = ACTIONS(4383), - [sym_private_property_identifier] = ACTIONS(4383), - [sym_this] = ACTIONS(4383), - [sym_super] = ACTIONS(4383), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [sym_null] = ACTIONS(4383), - [sym_undefined] = ACTIONS(4383), - [anon_sym_AT] = ACTIONS(4383), - [anon_sym_static] = ACTIONS(4383), - [anon_sym_readonly] = ACTIONS(4383), - [anon_sym_get] = ACTIONS(4383), - [anon_sym_set] = ACTIONS(4383), - [anon_sym_declare] = ACTIONS(4383), - [anon_sym_public] = ACTIONS(4383), - [anon_sym_private] = ACTIONS(4383), - [anon_sym_protected] = ACTIONS(4383), - [anon_sym_override] = ACTIONS(4383), - [anon_sym_module] = ACTIONS(4383), - [anon_sym_any] = ACTIONS(4383), - [anon_sym_number] = ACTIONS(4383), - [anon_sym_boolean] = ACTIONS(4383), - [anon_sym_string] = ACTIONS(4383), - [anon_sym_symbol] = ACTIONS(4383), - [anon_sym_object] = ACTIONS(4383), - [anon_sym_property] = ACTIONS(4383), - [anon_sym_signal] = ACTIONS(4383), - [anon_sym_on] = ACTIONS(4383), - [anon_sym_required] = ACTIONS(4383), - [anon_sym_component] = ACTIONS(4383), - [sym_html_comment] = ACTIONS(5), - }, - [2179] = { - [sym_nested_identifier] = STATE(3968), - [sym_string] = STATE(4015), - [sym_comment] = STATE(2179), - [sym__module] = STATE(4336), - [sym_identifier] = ACTIONS(4385), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4387), - [anon_sym_SQUOTE] = ACTIONS(4389), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(28), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), + [2024] = { + [sym_comment] = STATE(2024), + [sym_identifier] = ACTIONS(4369), + [anon_sym_export] = ACTIONS(4369), + [anon_sym_type] = ACTIONS(4369), + [anon_sym_namespace] = ACTIONS(4369), + [anon_sym_LBRACE] = ACTIONS(4369), + [anon_sym_typeof] = ACTIONS(4369), + [anon_sym_import] = ACTIONS(4369), + [anon_sym_from] = ACTIONS(4369), + [anon_sym_let] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4369), + [anon_sym_LPAREN] = ACTIONS(4369), + [anon_sym_await] = ACTIONS(4369), + [anon_sym_of] = ACTIONS(4369), + [anon_sym_yield] = ACTIONS(4369), + [anon_sym_LBRACK] = ACTIONS(4369), + [anon_sym_LTtemplate_GT] = ACTIONS(4369), + [anon_sym_DQUOTE] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4369), + [anon_sym_class] = ACTIONS(4369), + [anon_sym_async] = ACTIONS(4369), + [anon_sym_function] = ACTIONS(4369), + [anon_sym_new] = ACTIONS(4369), + [anon_sym_using] = ACTIONS(4369), + [anon_sym_PLUS] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4369), + [anon_sym_SLASH] = ACTIONS(4369), + [anon_sym_LT] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_void] = ACTIONS(4369), + [anon_sym_delete] = ACTIONS(4369), + [anon_sym_PLUS_PLUS] = ACTIONS(4369), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4369), + [sym_number] = ACTIONS(4369), + [sym_private_property_identifier] = ACTIONS(4369), + [sym_this] = ACTIONS(4369), + [sym_super] = ACTIONS(4369), + [sym_true] = ACTIONS(4369), + [sym_false] = ACTIONS(4369), + [sym_null] = ACTIONS(4369), + [sym_undefined] = ACTIONS(4369), + [anon_sym_AT] = ACTIONS(4369), + [anon_sym_static] = ACTIONS(4369), + [anon_sym_readonly] = ACTIONS(4369), + [anon_sym_get] = ACTIONS(4369), + [anon_sym_set] = ACTIONS(4369), + [anon_sym_declare] = ACTIONS(4369), + [anon_sym_public] = ACTIONS(4369), + [anon_sym_private] = ACTIONS(4369), + [anon_sym_protected] = ACTIONS(4369), + [anon_sym_override] = ACTIONS(4369), + [anon_sym_module] = ACTIONS(4369), + [anon_sym_any] = ACTIONS(4369), + [anon_sym_number] = ACTIONS(4369), + [anon_sym_boolean] = ACTIONS(4369), + [anon_sym_string] = ACTIONS(4369), + [anon_sym_symbol] = ACTIONS(4369), + [anon_sym_object] = ACTIONS(4369), + [anon_sym_property] = ACTIONS(4369), + [anon_sym_signal] = ACTIONS(4369), + [anon_sym_on] = ACTIONS(4369), + [anon_sym_required] = ACTIONS(4369), + [anon_sym_component] = ACTIONS(4369), [sym_html_comment] = ACTIONS(5), }, - [2180] = { - [sym_nested_identifier] = STATE(2785), - [sym_string] = STATE(2757), - [sym_comment] = STATE(2180), - [sym__module] = STATE(3018), - [sym_identifier] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1369), - [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_in] = ACTIONS(28), - [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(197), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_EQ_GT] = ACTIONS(1239), - [anon_sym_QMARK_DOT] = ACTIONS(28), - [anon_sym_PLUS_EQ] = ACTIONS(72), - [anon_sym_DASH_EQ] = ACTIONS(72), - [anon_sym_STAR_EQ] = ACTIONS(72), - [anon_sym_SLASH_EQ] = ACTIONS(72), - [anon_sym_PERCENT_EQ] = ACTIONS(72), - [anon_sym_CARET_EQ] = ACTIONS(72), - [anon_sym_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_EQ] = ACTIONS(72), - [anon_sym_GT_GT_EQ] = ACTIONS(72), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), - [anon_sym_LT_LT_EQ] = ACTIONS(72), - [anon_sym_STAR_STAR_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP_EQ] = ACTIONS(72), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), - [anon_sym_AMP_AMP] = ACTIONS(28), - [anon_sym_PIPE_PIPE] = ACTIONS(28), - [anon_sym_GT_GT] = ACTIONS(28), - [anon_sym_GT_GT_GT] = ACTIONS(28), - [anon_sym_LT_LT] = ACTIONS(28), - [anon_sym_AMP] = ACTIONS(28), - [anon_sym_CARET] = ACTIONS(28), - [anon_sym_PIPE] = ACTIONS(28), - [anon_sym_PLUS] = ACTIONS(28), - [anon_sym_DASH] = ACTIONS(28), - [anon_sym_SLASH] = ACTIONS(28), - [anon_sym_PERCENT] = ACTIONS(28), - [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(28), - [anon_sym_LT_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ] = ACTIONS(28), - [anon_sym_EQ_EQ_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ] = ACTIONS(28), - [anon_sym_BANG_EQ_EQ] = ACTIONS(28), - [anon_sym_GT_EQ] = ACTIONS(28), - [anon_sym_QMARK_QMARK] = ACTIONS(28), - [anon_sym_instanceof] = ACTIONS(28), - [anon_sym_PLUS_PLUS] = ACTIONS(28), - [anon_sym_DASH_DASH] = ACTIONS(28), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_satisfies] = ACTIONS(28), - [sym__automatic_semicolon] = ACTIONS(126), - [sym__ternary_qmark] = ACTIONS(126), + [2025] = { + [sym_comment] = STATE(2025), + [sym_identifier] = ACTIONS(4371), + [anon_sym_export] = ACTIONS(4371), + [anon_sym_type] = ACTIONS(4371), + [anon_sym_namespace] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4371), + [anon_sym_typeof] = ACTIONS(4371), + [anon_sym_import] = ACTIONS(4371), + [anon_sym_from] = ACTIONS(4371), + [anon_sym_let] = ACTIONS(4371), + [anon_sym_BANG] = ACTIONS(4371), + [anon_sym_LPAREN] = ACTIONS(4371), + [anon_sym_await] = ACTIONS(4371), + [anon_sym_of] = ACTIONS(4371), + [anon_sym_yield] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_LTtemplate_GT] = ACTIONS(4371), + [anon_sym_DQUOTE] = ACTIONS(4371), + [anon_sym_SQUOTE] = ACTIONS(4371), + [anon_sym_class] = ACTIONS(4371), + [anon_sym_async] = ACTIONS(4371), + [anon_sym_function] = ACTIONS(4371), + [anon_sym_new] = ACTIONS(4371), + [anon_sym_using] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_SLASH] = ACTIONS(4371), + [anon_sym_LT] = ACTIONS(4371), + [anon_sym_TILDE] = ACTIONS(4371), + [anon_sym_void] = ACTIONS(4371), + [anon_sym_delete] = ACTIONS(4371), + [anon_sym_PLUS_PLUS] = ACTIONS(4371), + [anon_sym_DASH_DASH] = ACTIONS(4371), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4371), + [sym_number] = ACTIONS(4371), + [sym_private_property_identifier] = ACTIONS(4371), + [sym_this] = ACTIONS(4371), + [sym_super] = ACTIONS(4371), + [sym_true] = ACTIONS(4371), + [sym_false] = ACTIONS(4371), + [sym_null] = ACTIONS(4371), + [sym_undefined] = ACTIONS(4371), + [anon_sym_AT] = ACTIONS(4371), + [anon_sym_static] = ACTIONS(4371), + [anon_sym_readonly] = ACTIONS(4371), + [anon_sym_get] = ACTIONS(4371), + [anon_sym_set] = ACTIONS(4371), + [anon_sym_declare] = ACTIONS(4371), + [anon_sym_public] = ACTIONS(4371), + [anon_sym_private] = ACTIONS(4371), + [anon_sym_protected] = ACTIONS(4371), + [anon_sym_override] = ACTIONS(4371), + [anon_sym_module] = ACTIONS(4371), + [anon_sym_any] = ACTIONS(4371), + [anon_sym_number] = ACTIONS(4371), + [anon_sym_boolean] = ACTIONS(4371), + [anon_sym_string] = ACTIONS(4371), + [anon_sym_symbol] = ACTIONS(4371), + [anon_sym_object] = ACTIONS(4371), + [anon_sym_property] = ACTIONS(4371), + [anon_sym_signal] = ACTIONS(4371), + [anon_sym_on] = ACTIONS(4371), + [anon_sym_required] = ACTIONS(4371), + [anon_sym_component] = ACTIONS(4371), [sym_html_comment] = ACTIONS(5), }, - [2181] = { - [sym_comment] = STATE(2181), - [sym_identifier] = ACTIONS(4391), - [anon_sym_export] = ACTIONS(4391), - [anon_sym_type] = ACTIONS(4391), - [anon_sym_namespace] = ACTIONS(4391), - [anon_sym_LBRACE] = ACTIONS(4391), - [anon_sym_typeof] = ACTIONS(4391), - [anon_sym_import] = ACTIONS(4391), - [anon_sym_from] = ACTIONS(4391), - [anon_sym_let] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym_await] = ACTIONS(4391), - [anon_sym_of] = ACTIONS(4391), - [anon_sym_yield] = ACTIONS(4391), - [anon_sym_LBRACK] = ACTIONS(4391), - [anon_sym_LTtemplate_GT] = ACTIONS(4391), - [anon_sym_DQUOTE] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_class] = ACTIONS(4391), - [anon_sym_async] = ACTIONS(4391), - [anon_sym_function] = ACTIONS(4391), - [anon_sym_new] = ACTIONS(4391), - [anon_sym_using] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_TILDE] = ACTIONS(4391), - [anon_sym_void] = ACTIONS(4391), - [anon_sym_delete] = ACTIONS(4391), - [anon_sym_PLUS_PLUS] = ACTIONS(4391), - [anon_sym_DASH_DASH] = ACTIONS(4391), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4391), - [sym_number] = ACTIONS(4391), - [sym_private_property_identifier] = ACTIONS(4391), - [sym_this] = ACTIONS(4391), - [sym_super] = ACTIONS(4391), - [sym_true] = ACTIONS(4391), - [sym_false] = ACTIONS(4391), - [sym_null] = ACTIONS(4391), - [sym_undefined] = ACTIONS(4391), - [anon_sym_AT] = ACTIONS(4391), - [anon_sym_static] = ACTIONS(4391), - [anon_sym_readonly] = ACTIONS(4391), - [anon_sym_get] = ACTIONS(4391), - [anon_sym_set] = ACTIONS(4391), - [anon_sym_declare] = ACTIONS(4391), - [anon_sym_public] = ACTIONS(4391), - [anon_sym_private] = ACTIONS(4391), - [anon_sym_protected] = ACTIONS(4391), - [anon_sym_override] = ACTIONS(4391), - [anon_sym_module] = ACTIONS(4391), - [anon_sym_any] = ACTIONS(4391), - [anon_sym_number] = ACTIONS(4391), - [anon_sym_boolean] = ACTIONS(4391), - [anon_sym_string] = ACTIONS(4391), - [anon_sym_symbol] = ACTIONS(4391), - [anon_sym_object] = ACTIONS(4391), - [anon_sym_property] = ACTIONS(4391), - [anon_sym_signal] = ACTIONS(4391), - [anon_sym_on] = ACTIONS(4391), - [anon_sym_required] = ACTIONS(4391), - [anon_sym_component] = ACTIONS(4391), + [2026] = { + [sym_comment] = STATE(2026), + [sym_identifier] = ACTIONS(4373), + [anon_sym_export] = ACTIONS(4373), + [anon_sym_type] = ACTIONS(4373), + [anon_sym_namespace] = ACTIONS(4373), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_typeof] = ACTIONS(4373), + [anon_sym_import] = ACTIONS(4373), + [anon_sym_from] = ACTIONS(4373), + [anon_sym_let] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_LPAREN] = ACTIONS(4373), + [anon_sym_await] = ACTIONS(4373), + [anon_sym_of] = ACTIONS(4373), + [anon_sym_yield] = ACTIONS(4373), + [anon_sym_LBRACK] = ACTIONS(4373), + [anon_sym_LTtemplate_GT] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_class] = ACTIONS(4373), + [anon_sym_async] = ACTIONS(4373), + [anon_sym_function] = ACTIONS(4373), + [anon_sym_new] = ACTIONS(4373), + [anon_sym_using] = ACTIONS(4373), + [anon_sym_PLUS] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4373), + [anon_sym_SLASH] = ACTIONS(4373), + [anon_sym_LT] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_void] = ACTIONS(4373), + [anon_sym_delete] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4373), + [anon_sym_DASH_DASH] = ACTIONS(4373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4373), + [sym_number] = ACTIONS(4373), + [sym_private_property_identifier] = ACTIONS(4373), + [sym_this] = ACTIONS(4373), + [sym_super] = ACTIONS(4373), + [sym_true] = ACTIONS(4373), + [sym_false] = ACTIONS(4373), + [sym_null] = ACTIONS(4373), + [sym_undefined] = ACTIONS(4373), + [anon_sym_AT] = ACTIONS(4373), + [anon_sym_static] = ACTIONS(4373), + [anon_sym_readonly] = ACTIONS(4373), + [anon_sym_get] = ACTIONS(4373), + [anon_sym_set] = ACTIONS(4373), + [anon_sym_declare] = ACTIONS(4373), + [anon_sym_public] = ACTIONS(4373), + [anon_sym_private] = ACTIONS(4373), + [anon_sym_protected] = ACTIONS(4373), + [anon_sym_override] = ACTIONS(4373), + [anon_sym_module] = ACTIONS(4373), + [anon_sym_any] = ACTIONS(4373), + [anon_sym_number] = ACTIONS(4373), + [anon_sym_boolean] = ACTIONS(4373), + [anon_sym_string] = ACTIONS(4373), + [anon_sym_symbol] = ACTIONS(4373), + [anon_sym_object] = ACTIONS(4373), + [anon_sym_property] = ACTIONS(4373), + [anon_sym_signal] = ACTIONS(4373), + [anon_sym_on] = ACTIONS(4373), + [anon_sym_required] = ACTIONS(4373), + [anon_sym_component] = ACTIONS(4373), [sym_html_comment] = ACTIONS(5), }, - [2182] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2182), - [sym__module] = STATE(3134), - [sym_identifier] = ACTIONS(4333), + [2027] = { + [sym_nested_identifier] = STATE(2619), + [sym_string] = STATE(2617), + [sym_comment] = STATE(2027), + [sym__module] = STATE(2951), + [sym_identifier] = ACTIONS(4337), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_in] = ACTIONS(28), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_of] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(28), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -257407,27 +243497,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2183] = { - [sym_variable_declarator] = STATE(6562), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(2183), - [sym_identifier] = ACTIONS(4273), + [2028] = { + [sym_variable_declarator] = STATE(6290), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(4866), + [sym_comment] = STATE(2028), + [sym_identifier] = ACTIONS(4377), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), - [anon_sym_in] = ACTIONS(28), + [anon_sym_in] = ACTIONS(1431), + [anon_sym_of] = ACTIONS(4375), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_LBRACK] = ACTIONS(4279), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -257475,12 +243565,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2184] = { - [sym_nested_identifier] = STATE(1005), - [sym_string] = STATE(1024), - [sym_comment] = STATE(2184), - [sym__module] = STATE(1072), - [sym_identifier] = ACTIONS(4393), + [2029] = { + [sym_nested_identifier] = STATE(1010), + [sym_string] = STATE(1014), + [sym_comment] = STATE(2029), + [sym__module] = STATE(1174), + [sym_identifier] = ACTIONS(4379), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), @@ -257489,13 +243579,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1406), + [anon_sym_COLON] = ACTIONS(1385), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4397), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4381), + [anon_sym_SQUOTE] = ACTIONS(4383), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -257543,27 +243633,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2185] = { - [sym_nested_identifier] = STATE(3889), - [sym_string] = STATE(3922), - [sym_comment] = STATE(2185), - [sym__module] = STATE(4141), - [sym_identifier] = ACTIONS(4399), + [2030] = { + [sym_variable_declarator] = STATE(6220), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(2030), + [sym_identifier] = ACTIONS(4275), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1385), + [anon_sym_LBRACK] = ACTIONS(4279), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4401), - [anon_sym_SQUOTE] = ACTIONS(4403), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -257611,12 +243701,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2186] = { - [sym_nested_identifier] = STATE(5943), - [sym_string] = STATE(6516), - [sym_comment] = STATE(2186), - [sym__module] = STATE(8006), - [sym_identifier] = ACTIONS(4405), + [2031] = { + [sym_nested_identifier] = STATE(3740), + [sym_string] = STATE(3807), + [sym_comment] = STATE(2031), + [sym__module] = STATE(4033), + [sym_identifier] = ACTIONS(4385), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), @@ -257625,13 +243715,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_COLON] = ACTIONS(1408), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4387), + [anon_sym_SQUOTE] = ACTIONS(4389), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -257679,8 +243769,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2187] = { - [sym_comment] = STATE(2187), + [2032] = { + [sym_comment] = STATE(2032), [sym_identifier] = ACTIONS(4391), [anon_sym_export] = ACTIONS(4391), [anon_sym_type] = ACTIONS(4391), @@ -257747,12 +243837,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_component] = ACTIONS(4391), [sym_html_comment] = ACTIONS(5), }, - [2188] = { - [sym_nested_identifier] = STATE(1129), - [sym_string] = STATE(1364), - [sym_comment] = STATE(2188), - [sym__module] = STATE(1568), - [sym_identifier] = ACTIONS(4407), + [2033] = { + [sym_nested_identifier] = STATE(3833), + [sym_string] = STATE(3890), + [sym_comment] = STATE(2033), + [sym__module] = STATE(4056), + [sym_identifier] = ACTIONS(4393), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), @@ -257761,13 +243851,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1394), + [anon_sym_COLON] = ACTIONS(1410), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4409), - [anon_sym_SQUOTE] = ACTIONS(4411), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4395), + [anon_sym_SQUOTE] = ACTIONS(4397), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -257815,27 +243905,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2189] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2189), - [sym__module] = STATE(3134), - [sym_identifier] = ACTIONS(4333), + [2034] = { + [sym_comment] = STATE(2034), + [sym_identifier] = ACTIONS(4399), + [anon_sym_export] = ACTIONS(4399), + [anon_sym_type] = ACTIONS(4399), + [anon_sym_namespace] = ACTIONS(4399), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_typeof] = ACTIONS(4399), + [anon_sym_import] = ACTIONS(4399), + [anon_sym_from] = ACTIONS(4399), + [anon_sym_let] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_await] = ACTIONS(4399), + [anon_sym_of] = ACTIONS(4399), + [anon_sym_yield] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_LTtemplate_GT] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4399), + [anon_sym_class] = ACTIONS(4399), + [anon_sym_async] = ACTIONS(4399), + [anon_sym_function] = ACTIONS(4399), + [anon_sym_new] = ACTIONS(4399), + [anon_sym_using] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_void] = ACTIONS(4399), + [anon_sym_delete] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4399), + [sym_number] = ACTIONS(4399), + [sym_private_property_identifier] = ACTIONS(4399), + [sym_this] = ACTIONS(4399), + [sym_super] = ACTIONS(4399), + [sym_true] = ACTIONS(4399), + [sym_false] = ACTIONS(4399), + [sym_null] = ACTIONS(4399), + [sym_undefined] = ACTIONS(4399), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_static] = ACTIONS(4399), + [anon_sym_readonly] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4399), + [anon_sym_declare] = ACTIONS(4399), + [anon_sym_public] = ACTIONS(4399), + [anon_sym_private] = ACTIONS(4399), + [anon_sym_protected] = ACTIONS(4399), + [anon_sym_override] = ACTIONS(4399), + [anon_sym_module] = ACTIONS(4399), + [anon_sym_any] = ACTIONS(4399), + [anon_sym_number] = ACTIONS(4399), + [anon_sym_boolean] = ACTIONS(4399), + [anon_sym_string] = ACTIONS(4399), + [anon_sym_symbol] = ACTIONS(4399), + [anon_sym_object] = ACTIONS(4399), + [anon_sym_property] = ACTIONS(4399), + [anon_sym_signal] = ACTIONS(4399), + [anon_sym_on] = ACTIONS(4399), + [anon_sym_required] = ACTIONS(4399), + [anon_sym_component] = ACTIONS(4399), + [sym_html_comment] = ACTIONS(5), + }, + [2035] = { + [sym_variable_declarator] = STATE(6097), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(2035), + [sym_identifier] = ACTIONS(4275), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), - [anon_sym_of] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(4279), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_EQ_GT] = ACTIONS(1417), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -257883,27 +244041,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2190] = { - [sym_variable_declarator] = STATE(6462), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(2190), - [sym_identifier] = ACTIONS(4273), + [2036] = { + [sym_variable_declarator] = STATE(6164), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(2036), + [sym_identifier] = ACTIONS(4275), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1392), - [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(4279), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -257951,95 +244109,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2191] = { - [sym_comment] = STATE(2191), - [sym_identifier] = ACTIONS(4413), - [anon_sym_export] = ACTIONS(4413), - [anon_sym_type] = ACTIONS(4413), - [anon_sym_namespace] = ACTIONS(4413), - [anon_sym_LBRACE] = ACTIONS(4413), - [anon_sym_typeof] = ACTIONS(4413), - [anon_sym_import] = ACTIONS(4413), - [anon_sym_from] = ACTIONS(4413), - [anon_sym_let] = ACTIONS(4413), - [anon_sym_BANG] = ACTIONS(4413), - [anon_sym_LPAREN] = ACTIONS(4413), - [anon_sym_await] = ACTIONS(4413), - [anon_sym_of] = ACTIONS(4413), - [anon_sym_yield] = ACTIONS(4413), - [anon_sym_LBRACK] = ACTIONS(4413), - [anon_sym_LTtemplate_GT] = ACTIONS(4413), - [anon_sym_DQUOTE] = ACTIONS(4413), - [anon_sym_SQUOTE] = ACTIONS(4413), - [anon_sym_class] = ACTIONS(4413), - [anon_sym_async] = ACTIONS(4413), - [anon_sym_function] = ACTIONS(4413), - [anon_sym_new] = ACTIONS(4413), - [anon_sym_using] = ACTIONS(4413), - [anon_sym_PLUS] = ACTIONS(4413), - [anon_sym_DASH] = ACTIONS(4413), - [anon_sym_SLASH] = ACTIONS(4413), - [anon_sym_LT] = ACTIONS(4413), - [anon_sym_TILDE] = ACTIONS(4413), - [anon_sym_void] = ACTIONS(4413), - [anon_sym_delete] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4413), - [sym_number] = ACTIONS(4413), - [sym_private_property_identifier] = ACTIONS(4413), - [sym_this] = ACTIONS(4413), - [sym_super] = ACTIONS(4413), - [sym_true] = ACTIONS(4413), - [sym_false] = ACTIONS(4413), - [sym_null] = ACTIONS(4413), - [sym_undefined] = ACTIONS(4413), - [anon_sym_AT] = ACTIONS(4413), - [anon_sym_static] = ACTIONS(4413), - [anon_sym_readonly] = ACTIONS(4413), - [anon_sym_get] = ACTIONS(4413), - [anon_sym_set] = ACTIONS(4413), - [anon_sym_declare] = ACTIONS(4413), - [anon_sym_public] = ACTIONS(4413), - [anon_sym_private] = ACTIONS(4413), - [anon_sym_protected] = ACTIONS(4413), - [anon_sym_override] = ACTIONS(4413), - [anon_sym_module] = ACTIONS(4413), - [anon_sym_any] = ACTIONS(4413), - [anon_sym_number] = ACTIONS(4413), - [anon_sym_boolean] = ACTIONS(4413), - [anon_sym_string] = ACTIONS(4413), - [anon_sym_symbol] = ACTIONS(4413), - [anon_sym_object] = ACTIONS(4413), - [anon_sym_property] = ACTIONS(4413), - [anon_sym_signal] = ACTIONS(4413), - [anon_sym_on] = ACTIONS(4413), - [anon_sym_required] = ACTIONS(4413), - [anon_sym_component] = ACTIONS(4413), - [sym_html_comment] = ACTIONS(5), - }, - [2192] = { - [sym_nested_identifier] = STATE(1017), - [sym_string] = STATE(1112), - [sym_comment] = STATE(2192), - [sym__module] = STATE(1290), - [sym_identifier] = ACTIONS(4415), + [2037] = { + [sym_nested_identifier] = STATE(2619), + [sym_string] = STATE(2617), + [sym_comment] = STATE(2037), + [sym__module] = STATE(2951), + [sym_identifier] = ACTIONS(4337), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1412), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4417), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE] = ACTIONS(199), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -258087,27 +244177,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2193] = { - [sym_variable_declarator] = STATE(6394), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(2193), - [sym_identifier] = ACTIONS(4273), + [2038] = { + [sym_nested_identifier] = STATE(1078), + [sym_string] = STATE(1306), + [sym_comment] = STATE(2038), + [sym__module] = STATE(1516), + [sym_identifier] = ACTIONS(4401), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4403), + [anon_sym_SQUOTE] = ACTIONS(4405), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -258155,27 +244245,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2194] = { - [sym_variable_declarator] = STATE(6448), - [sym_object_pattern] = STATE(5358), - [sym_array_pattern] = STATE(5358), - [sym__destructuring_pattern] = STATE(5354), - [sym_comment] = STATE(2194), - [sym_identifier] = ACTIONS(4273), + [2039] = { + [sym_comment] = STATE(2039), + [sym_identifier] = ACTIONS(4399), + [anon_sym_export] = ACTIONS(4399), + [anon_sym_type] = ACTIONS(4399), + [anon_sym_namespace] = ACTIONS(4399), + [anon_sym_LBRACE] = ACTIONS(4399), + [anon_sym_typeof] = ACTIONS(4399), + [anon_sym_import] = ACTIONS(4399), + [anon_sym_from] = ACTIONS(4399), + [anon_sym_let] = ACTIONS(4399), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_LPAREN] = ACTIONS(4399), + [anon_sym_await] = ACTIONS(4399), + [anon_sym_of] = ACTIONS(4399), + [anon_sym_yield] = ACTIONS(4399), + [anon_sym_LBRACK] = ACTIONS(4399), + [anon_sym_LTtemplate_GT] = ACTIONS(4399), + [anon_sym_DQUOTE] = ACTIONS(4399), + [anon_sym_SQUOTE] = ACTIONS(4399), + [anon_sym_class] = ACTIONS(4399), + [anon_sym_async] = ACTIONS(4399), + [anon_sym_function] = ACTIONS(4399), + [anon_sym_new] = ACTIONS(4399), + [anon_sym_using] = ACTIONS(4399), + [anon_sym_PLUS] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4399), + [anon_sym_SLASH] = ACTIONS(4399), + [anon_sym_LT] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_void] = ACTIONS(4399), + [anon_sym_delete] = ACTIONS(4399), + [anon_sym_PLUS_PLUS] = ACTIONS(4399), + [anon_sym_DASH_DASH] = ACTIONS(4399), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4399), + [sym_number] = ACTIONS(4399), + [sym_private_property_identifier] = ACTIONS(4399), + [sym_this] = ACTIONS(4399), + [sym_super] = ACTIONS(4399), + [sym_true] = ACTIONS(4399), + [sym_false] = ACTIONS(4399), + [sym_null] = ACTIONS(4399), + [sym_undefined] = ACTIONS(4399), + [anon_sym_AT] = ACTIONS(4399), + [anon_sym_static] = ACTIONS(4399), + [anon_sym_readonly] = ACTIONS(4399), + [anon_sym_get] = ACTIONS(4399), + [anon_sym_set] = ACTIONS(4399), + [anon_sym_declare] = ACTIONS(4399), + [anon_sym_public] = ACTIONS(4399), + [anon_sym_private] = ACTIONS(4399), + [anon_sym_protected] = ACTIONS(4399), + [anon_sym_override] = ACTIONS(4399), + [anon_sym_module] = ACTIONS(4399), + [anon_sym_any] = ACTIONS(4399), + [anon_sym_number] = ACTIONS(4399), + [anon_sym_boolean] = ACTIONS(4399), + [anon_sym_string] = ACTIONS(4399), + [anon_sym_symbol] = ACTIONS(4399), + [anon_sym_object] = ACTIONS(4399), + [anon_sym_property] = ACTIONS(4399), + [anon_sym_signal] = ACTIONS(4399), + [anon_sym_on] = ACTIONS(4399), + [anon_sym_required] = ACTIONS(4399), + [anon_sym_component] = ACTIONS(4399), + [sym_html_comment] = ACTIONS(5), + }, + [2040] = { + [sym_comment] = STATE(2040), + [sym_identifier] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4407), + [anon_sym_type] = ACTIONS(4407), + [anon_sym_namespace] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_typeof] = ACTIONS(4407), + [anon_sym_import] = ACTIONS(4407), + [anon_sym_from] = ACTIONS(4407), + [anon_sym_let] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_await] = ACTIONS(4407), + [anon_sym_of] = ACTIONS(4407), + [anon_sym_yield] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4407), + [anon_sym_LTtemplate_GT] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_class] = ACTIONS(4407), + [anon_sym_async] = ACTIONS(4407), + [anon_sym_function] = ACTIONS(4407), + [anon_sym_new] = ACTIONS(4407), + [anon_sym_using] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_void] = ACTIONS(4407), + [anon_sym_delete] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4407), + [sym_number] = ACTIONS(4407), + [sym_private_property_identifier] = ACTIONS(4407), + [sym_this] = ACTIONS(4407), + [sym_super] = ACTIONS(4407), + [sym_true] = ACTIONS(4407), + [sym_false] = ACTIONS(4407), + [sym_null] = ACTIONS(4407), + [sym_undefined] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4407), + [anon_sym_static] = ACTIONS(4407), + [anon_sym_readonly] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_declare] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_module] = ACTIONS(4407), + [anon_sym_any] = ACTIONS(4407), + [anon_sym_number] = ACTIONS(4407), + [anon_sym_boolean] = ACTIONS(4407), + [anon_sym_string] = ACTIONS(4407), + [anon_sym_symbol] = ACTIONS(4407), + [anon_sym_object] = ACTIONS(4407), + [anon_sym_property] = ACTIONS(4407), + [anon_sym_signal] = ACTIONS(4407), + [anon_sym_on] = ACTIONS(4407), + [anon_sym_required] = ACTIONS(4407), + [anon_sym_component] = ACTIONS(4407), + [sym_html_comment] = ACTIONS(5), + }, + [2041] = { + [sym_nested_identifier] = STATE(1699), + [sym_string] = STATE(1697), + [sym_comment] = STATE(2041), + [sym__module] = STATE(1763), + [sym_identifier] = ACTIONS(4409), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(4275), [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(4277), + [anon_sym_COLON] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4411), + [anon_sym_SQUOTE] = ACTIONS(4413), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -258223,164 +244449,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2195] = { - [sym_comment] = STATE(2195), - [sym_identifier] = ACTIONS(4367), - [anon_sym_export] = ACTIONS(4367), - [anon_sym_type] = ACTIONS(4367), - [anon_sym_namespace] = ACTIONS(4367), - [anon_sym_LBRACE] = ACTIONS(4367), - [anon_sym_typeof] = ACTIONS(4367), - [anon_sym_import] = ACTIONS(4367), - [anon_sym_from] = ACTIONS(4367), - [anon_sym_let] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym_await] = ACTIONS(4367), - [anon_sym_of] = ACTIONS(4367), - [anon_sym_yield] = ACTIONS(4367), - [anon_sym_LBRACK] = ACTIONS(4367), - [anon_sym_LTtemplate_GT] = ACTIONS(4367), - [anon_sym_DQUOTE] = ACTIONS(4367), - [anon_sym_SQUOTE] = ACTIONS(4367), - [anon_sym_class] = ACTIONS(4367), - [anon_sym_async] = ACTIONS(4367), - [anon_sym_function] = ACTIONS(4367), - [anon_sym_new] = ACTIONS(4367), - [anon_sym_using] = ACTIONS(4367), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_SLASH] = ACTIONS(4367), - [anon_sym_LT] = ACTIONS(4367), - [anon_sym_TILDE] = ACTIONS(4367), - [anon_sym_void] = ACTIONS(4367), - [anon_sym_delete] = ACTIONS(4367), - [anon_sym_PLUS_PLUS] = ACTIONS(4367), - [anon_sym_DASH_DASH] = ACTIONS(4367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4367), - [sym_number] = ACTIONS(4367), - [sym_private_property_identifier] = ACTIONS(4367), - [sym_this] = ACTIONS(4367), - [sym_super] = ACTIONS(4367), - [sym_true] = ACTIONS(4367), - [sym_false] = ACTIONS(4367), - [sym_null] = ACTIONS(4367), - [sym_undefined] = ACTIONS(4367), - [anon_sym_AT] = ACTIONS(4367), - [anon_sym_static] = ACTIONS(4367), - [anon_sym_readonly] = ACTIONS(4367), - [anon_sym_get] = ACTIONS(4367), - [anon_sym_set] = ACTIONS(4367), - [anon_sym_declare] = ACTIONS(4367), - [anon_sym_public] = ACTIONS(4367), - [anon_sym_private] = ACTIONS(4367), - [anon_sym_protected] = ACTIONS(4367), - [anon_sym_override] = ACTIONS(4367), - [anon_sym_module] = ACTIONS(4367), - [anon_sym_any] = ACTIONS(4367), - [anon_sym_number] = ACTIONS(4367), - [anon_sym_boolean] = ACTIONS(4367), - [anon_sym_string] = ACTIONS(4367), - [anon_sym_symbol] = ACTIONS(4367), - [anon_sym_object] = ACTIONS(4367), - [anon_sym_property] = ACTIONS(4367), - [anon_sym_signal] = ACTIONS(4367), - [anon_sym_on] = ACTIONS(4367), - [anon_sym_required] = ACTIONS(4367), - [anon_sym_component] = ACTIONS(4367), - [sym_html_comment] = ACTIONS(5), - }, - [2196] = { - [sym_comment] = STATE(2196), - [sym_identifier] = ACTIONS(4421), - [anon_sym_export] = ACTIONS(4421), - [anon_sym_type] = ACTIONS(4421), - [anon_sym_namespace] = ACTIONS(4421), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_typeof] = ACTIONS(4421), - [anon_sym_import] = ACTIONS(4421), - [anon_sym_from] = ACTIONS(4421), - [anon_sym_let] = ACTIONS(4421), - [anon_sym_BANG] = ACTIONS(4421), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_await] = ACTIONS(4421), - [anon_sym_of] = ACTIONS(4421), - [anon_sym_yield] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_LTtemplate_GT] = ACTIONS(4421), - [anon_sym_DQUOTE] = ACTIONS(4421), - [anon_sym_SQUOTE] = ACTIONS(4421), - [anon_sym_class] = ACTIONS(4421), - [anon_sym_async] = ACTIONS(4421), - [anon_sym_function] = ACTIONS(4421), - [anon_sym_new] = ACTIONS(4421), - [anon_sym_using] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4421), - [anon_sym_DASH] = ACTIONS(4421), - [anon_sym_SLASH] = ACTIONS(4421), - [anon_sym_LT] = ACTIONS(4421), - [anon_sym_TILDE] = ACTIONS(4421), - [anon_sym_void] = ACTIONS(4421), - [anon_sym_delete] = ACTIONS(4421), - [anon_sym_PLUS_PLUS] = ACTIONS(4421), - [anon_sym_DASH_DASH] = ACTIONS(4421), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4421), - [sym_number] = ACTIONS(4421), - [sym_private_property_identifier] = ACTIONS(4421), - [sym_this] = ACTIONS(4421), - [sym_super] = ACTIONS(4421), - [sym_true] = ACTIONS(4421), - [sym_false] = ACTIONS(4421), - [sym_null] = ACTIONS(4421), - [sym_undefined] = ACTIONS(4421), - [anon_sym_AT] = ACTIONS(4421), - [anon_sym_static] = ACTIONS(4421), - [anon_sym_readonly] = ACTIONS(4421), - [anon_sym_get] = ACTIONS(4421), - [anon_sym_set] = ACTIONS(4421), - [anon_sym_declare] = ACTIONS(4421), - [anon_sym_public] = ACTIONS(4421), - [anon_sym_private] = ACTIONS(4421), - [anon_sym_protected] = ACTIONS(4421), - [anon_sym_override] = ACTIONS(4421), - [anon_sym_module] = ACTIONS(4421), - [anon_sym_any] = ACTIONS(4421), - [anon_sym_number] = ACTIONS(4421), - [anon_sym_boolean] = ACTIONS(4421), - [anon_sym_string] = ACTIONS(4421), - [anon_sym_symbol] = ACTIONS(4421), - [anon_sym_object] = ACTIONS(4421), - [anon_sym_property] = ACTIONS(4421), - [anon_sym_signal] = ACTIONS(4421), - [anon_sym_on] = ACTIONS(4421), - [anon_sym_required] = ACTIONS(4421), - [anon_sym_component] = ACTIONS(4421), - [sym_html_comment] = ACTIONS(5), - }, - [2197] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2197), - [sym__module] = STATE(3134), - [sym_ui_object_initializer] = STATE(6642), - [sym_identifier] = ACTIONS(4333), + [2042] = { + [sym_comment] = STATE(2042), + [sym_identifier] = ACTIONS(4407), + [anon_sym_export] = ACTIONS(4407), + [anon_sym_type] = ACTIONS(4407), + [anon_sym_namespace] = ACTIONS(4407), + [anon_sym_LBRACE] = ACTIONS(4407), + [anon_sym_typeof] = ACTIONS(4407), + [anon_sym_import] = ACTIONS(4407), + [anon_sym_from] = ACTIONS(4407), + [anon_sym_let] = ACTIONS(4407), + [anon_sym_BANG] = ACTIONS(4407), + [anon_sym_LPAREN] = ACTIONS(4407), + [anon_sym_await] = ACTIONS(4407), + [anon_sym_of] = ACTIONS(4407), + [anon_sym_yield] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(4407), + [anon_sym_LTtemplate_GT] = ACTIONS(4407), + [anon_sym_DQUOTE] = ACTIONS(4407), + [anon_sym_SQUOTE] = ACTIONS(4407), + [anon_sym_class] = ACTIONS(4407), + [anon_sym_async] = ACTIONS(4407), + [anon_sym_function] = ACTIONS(4407), + [anon_sym_new] = ACTIONS(4407), + [anon_sym_using] = ACTIONS(4407), + [anon_sym_PLUS] = ACTIONS(4407), + [anon_sym_DASH] = ACTIONS(4407), + [anon_sym_SLASH] = ACTIONS(4407), + [anon_sym_LT] = ACTIONS(4407), + [anon_sym_TILDE] = ACTIONS(4407), + [anon_sym_void] = ACTIONS(4407), + [anon_sym_delete] = ACTIONS(4407), + [anon_sym_PLUS_PLUS] = ACTIONS(4407), + [anon_sym_DASH_DASH] = ACTIONS(4407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4407), + [sym_number] = ACTIONS(4407), + [sym_private_property_identifier] = ACTIONS(4407), + [sym_this] = ACTIONS(4407), + [sym_super] = ACTIONS(4407), + [sym_true] = ACTIONS(4407), + [sym_false] = ACTIONS(4407), + [sym_null] = ACTIONS(4407), + [sym_undefined] = ACTIONS(4407), + [anon_sym_AT] = ACTIONS(4407), + [anon_sym_static] = ACTIONS(4407), + [anon_sym_readonly] = ACTIONS(4407), + [anon_sym_get] = ACTIONS(4407), + [anon_sym_set] = ACTIONS(4407), + [anon_sym_declare] = ACTIONS(4407), + [anon_sym_public] = ACTIONS(4407), + [anon_sym_private] = ACTIONS(4407), + [anon_sym_protected] = ACTIONS(4407), + [anon_sym_override] = ACTIONS(4407), + [anon_sym_module] = ACTIONS(4407), + [anon_sym_any] = ACTIONS(4407), + [anon_sym_number] = ACTIONS(4407), + [anon_sym_boolean] = ACTIONS(4407), + [anon_sym_string] = ACTIONS(4407), + [anon_sym_symbol] = ACTIONS(4407), + [anon_sym_object] = ACTIONS(4407), + [anon_sym_property] = ACTIONS(4407), + [anon_sym_signal] = ACTIONS(4407), + [anon_sym_on] = ACTIONS(4407), + [anon_sym_required] = ACTIONS(4407), + [anon_sym_component] = ACTIONS(4407), + [sym_html_comment] = ACTIONS(5), + }, + [2043] = { + [sym_nested_identifier] = STATE(337), + [sym_string] = STATE(338), + [sym_comment] = STATE(2043), + [sym__module] = STATE(369), + [sym_identifier] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(25), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_LBRACE] = ACTIONS(3280), - [anon_sym_COMMA] = ACTIONS(34), + [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1385), [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(34), [anon_sym_GT] = ACTIONS(28), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(4417), + [anon_sym_SQUOTE] = ACTIONS(4419), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -258424,83 +244581,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2198] = { - [sym_comment] = STATE(2198), - [sym_identifier] = ACTIONS(4423), - [anon_sym_export] = ACTIONS(4423), - [anon_sym_type] = ACTIONS(4423), - [anon_sym_namespace] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4423), - [anon_sym_typeof] = ACTIONS(4423), - [anon_sym_import] = ACTIONS(4423), - [anon_sym_from] = ACTIONS(4423), - [anon_sym_let] = ACTIONS(4423), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_LPAREN] = ACTIONS(4423), - [anon_sym_await] = ACTIONS(4423), - [anon_sym_of] = ACTIONS(4423), - [anon_sym_yield] = ACTIONS(4423), - [anon_sym_LBRACK] = ACTIONS(4423), - [anon_sym_LTtemplate_GT] = ACTIONS(4423), - [anon_sym_DQUOTE] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4423), - [anon_sym_class] = ACTIONS(4423), - [anon_sym_async] = ACTIONS(4423), - [anon_sym_function] = ACTIONS(4423), - [anon_sym_new] = ACTIONS(4423), - [anon_sym_using] = ACTIONS(4423), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_TILDE] = ACTIONS(4423), - [anon_sym_void] = ACTIONS(4423), - [anon_sym_delete] = ACTIONS(4423), - [anon_sym_PLUS_PLUS] = ACTIONS(4423), - [anon_sym_DASH_DASH] = ACTIONS(4423), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(4423), - [sym_number] = ACTIONS(4423), - [sym_private_property_identifier] = ACTIONS(4423), - [sym_this] = ACTIONS(4423), - [sym_super] = ACTIONS(4423), - [sym_true] = ACTIONS(4423), - [sym_false] = ACTIONS(4423), - [sym_null] = ACTIONS(4423), - [sym_undefined] = ACTIONS(4423), - [anon_sym_AT] = ACTIONS(4423), - [anon_sym_static] = ACTIONS(4423), - [anon_sym_readonly] = ACTIONS(4423), - [anon_sym_get] = ACTIONS(4423), - [anon_sym_set] = ACTIONS(4423), - [anon_sym_declare] = ACTIONS(4423), - [anon_sym_public] = ACTIONS(4423), - [anon_sym_private] = ACTIONS(4423), - [anon_sym_protected] = ACTIONS(4423), - [anon_sym_override] = ACTIONS(4423), - [anon_sym_module] = ACTIONS(4423), - [anon_sym_any] = ACTIONS(4423), - [anon_sym_number] = ACTIONS(4423), - [anon_sym_boolean] = ACTIONS(4423), - [anon_sym_string] = ACTIONS(4423), - [anon_sym_symbol] = ACTIONS(4423), - [anon_sym_object] = ACTIONS(4423), - [anon_sym_property] = ACTIONS(4423), - [anon_sym_signal] = ACTIONS(4423), - [anon_sym_on] = ACTIONS(4423), - [anon_sym_required] = ACTIONS(4423), - [anon_sym_component] = ACTIONS(4423), - [sym_html_comment] = ACTIONS(5), - }, - [2199] = { - [sym_nested_identifier] = STATE(1847), - [sym_string] = STATE(1842), - [sym_comment] = STATE(2199), - [sym__module] = STATE(1896), - [sym_identifier] = ACTIONS(4425), + [2044] = { + [sym_nested_identifier] = STATE(1040), + [sym_string] = STATE(1061), + [sym_comment] = STATE(2044), + [sym__module] = STATE(1302), + [sym_identifier] = ACTIONS(4421), [anon_sym_STAR] = ACTIONS(28), [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), @@ -258509,13 +244599,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1404), + [anon_sym_COLON] = ACTIONS(1381), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(4427), - [anon_sym_SQUOTE] = ACTIONS(4429), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(4423), + [anon_sym_SQUOTE] = ACTIONS(4425), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -258563,159 +244653,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2200] = { - [sym_export_statement] = STATE(5537), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2200), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5537), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5537), - [sym_property_signature] = STATE(5537), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5537), - [sym_index_signature] = STATE(5537), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4437), - [anon_sym_RBRACE] = ACTIONS(4439), - [anon_sym_from] = ACTIONS(4431), - [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4437), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), - [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4431), - [anon_sym_any] = ACTIONS(4431), - [anon_sym_number] = ACTIONS(4431), - [anon_sym_boolean] = ACTIONS(4431), - [anon_sym_string] = ACTIONS(4431), - [anon_sym_symbol] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_property] = ACTIONS(4431), - [anon_sym_signal] = ACTIONS(4431), - [anon_sym_on] = ACTIONS(4431), - [anon_sym_required] = ACTIONS(4431), - [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(4439), - [sym_html_comment] = ACTIONS(5), - }, - [2201] = { - [sym_export_statement] = STATE(5629), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2201), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5629), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5629), - [sym_property_signature] = STATE(5629), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5629), - [sym_index_signature] = STATE(5629), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4457), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_from] = ACTIONS(4431), - [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4457), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), + [2045] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(2045), + [sym__module] = STATE(2918), + [sym_identifier] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1337), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1321), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(66), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), - [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4431), - [anon_sym_any] = ACTIONS(4431), - [anon_sym_number] = ACTIONS(4431), - [anon_sym_boolean] = ACTIONS(4431), - [anon_sym_string] = ACTIONS(4431), - [anon_sym_symbol] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_property] = ACTIONS(4431), - [anon_sym_signal] = ACTIONS(4431), - [anon_sym_on] = ACTIONS(4431), - [anon_sym_required] = ACTIONS(4431), - [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(4459), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2202] = { - [sym_comment] = STATE(2202), - [aux_sym_object_repeat1] = STATE(7210), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4461), + [2046] = { + [sym_variable_declarator] = STATE(6236), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(2046), + [sym_identifier] = ACTIONS(4275), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), + [anon_sym_LBRACE] = ACTIONS(4277), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1226), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), - [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(4279), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -258745,7 +244771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(28), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -258758,98 +244784,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2203] = { - [sym_export_statement] = STATE(5575), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2203), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5575), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5575), - [sym_property_signature] = STATE(5575), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5575), - [sym_index_signature] = STATE(5575), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_RBRACE] = ACTIONS(4465), - [anon_sym_from] = ACTIONS(4431), - [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), - [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4431), - [anon_sym_any] = ACTIONS(4431), - [anon_sym_number] = ACTIONS(4431), - [anon_sym_boolean] = ACTIONS(4431), - [anon_sym_string] = ACTIONS(4431), - [anon_sym_symbol] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_property] = ACTIONS(4431), - [anon_sym_signal] = ACTIONS(4431), - [anon_sym_on] = ACTIONS(4431), - [anon_sym_required] = ACTIONS(4431), - [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(4465), + [2047] = { + [sym_comment] = STATE(2047), + [sym_identifier] = ACTIONS(4427), + [anon_sym_export] = ACTIONS(4427), + [anon_sym_type] = ACTIONS(4427), + [anon_sym_namespace] = ACTIONS(4427), + [anon_sym_LBRACE] = ACTIONS(4427), + [anon_sym_typeof] = ACTIONS(4427), + [anon_sym_import] = ACTIONS(4427), + [anon_sym_from] = ACTIONS(4427), + [anon_sym_let] = ACTIONS(4427), + [anon_sym_BANG] = ACTIONS(4427), + [anon_sym_LPAREN] = ACTIONS(4427), + [anon_sym_await] = ACTIONS(4427), + [anon_sym_of] = ACTIONS(4427), + [anon_sym_yield] = ACTIONS(4427), + [anon_sym_LBRACK] = ACTIONS(4427), + [anon_sym_LTtemplate_GT] = ACTIONS(4427), + [anon_sym_DQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_class] = ACTIONS(4427), + [anon_sym_async] = ACTIONS(4427), + [anon_sym_function] = ACTIONS(4427), + [anon_sym_new] = ACTIONS(4427), + [anon_sym_using] = ACTIONS(4427), + [anon_sym_PLUS] = ACTIONS(4427), + [anon_sym_DASH] = ACTIONS(4427), + [anon_sym_SLASH] = ACTIONS(4427), + [anon_sym_LT] = ACTIONS(4427), + [anon_sym_TILDE] = ACTIONS(4427), + [anon_sym_void] = ACTIONS(4427), + [anon_sym_delete] = ACTIONS(4427), + [anon_sym_PLUS_PLUS] = ACTIONS(4427), + [anon_sym_DASH_DASH] = ACTIONS(4427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4427), + [sym_number] = ACTIONS(4427), + [sym_private_property_identifier] = ACTIONS(4427), + [sym_this] = ACTIONS(4427), + [sym_super] = ACTIONS(4427), + [sym_true] = ACTIONS(4427), + [sym_false] = ACTIONS(4427), + [sym_null] = ACTIONS(4427), + [sym_undefined] = ACTIONS(4427), + [anon_sym_AT] = ACTIONS(4427), + [anon_sym_static] = ACTIONS(4427), + [anon_sym_readonly] = ACTIONS(4427), + [anon_sym_get] = ACTIONS(4427), + [anon_sym_set] = ACTIONS(4427), + [anon_sym_declare] = ACTIONS(4427), + [anon_sym_public] = ACTIONS(4427), + [anon_sym_private] = ACTIONS(4427), + [anon_sym_protected] = ACTIONS(4427), + [anon_sym_override] = ACTIONS(4427), + [anon_sym_module] = ACTIONS(4427), + [anon_sym_any] = ACTIONS(4427), + [anon_sym_number] = ACTIONS(4427), + [anon_sym_boolean] = ACTIONS(4427), + [anon_sym_string] = ACTIONS(4427), + [anon_sym_symbol] = ACTIONS(4427), + [anon_sym_object] = ACTIONS(4427), + [anon_sym_property] = ACTIONS(4427), + [anon_sym_signal] = ACTIONS(4427), + [anon_sym_on] = ACTIONS(4427), + [anon_sym_required] = ACTIONS(4427), + [anon_sym_component] = ACTIONS(4427), [sym_html_comment] = ACTIONS(5), }, - [2204] = { - [sym_comment] = STATE(2204), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4461), + [2048] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(2048), + [sym__module] = STATE(2918), + [sym_identifier] = ACTIONS(4333), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), - [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -258879,7 +244907,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(28), [anon_sym_PERCENT] = ACTIONS(28), [anon_sym_STAR_STAR] = ACTIONS(28), - [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(28), [anon_sym_LT_EQ] = ACTIONS(28), [anon_sym_EQ_EQ] = ACTIONS(28), [anon_sym_EQ_EQ_EQ] = ACTIONS(28), @@ -258892,167 +244920,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2205] = { - [sym_export_statement] = STATE(5681), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2205), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5681), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5681), - [sym_property_signature] = STATE(5681), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5681), - [sym_index_signature] = STATE(5681), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_RBRACE] = ACTIONS(4469), - [anon_sym_from] = ACTIONS(4431), - [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), - [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4431), - [anon_sym_any] = ACTIONS(4431), - [anon_sym_number] = ACTIONS(4431), - [anon_sym_boolean] = ACTIONS(4431), - [anon_sym_string] = ACTIONS(4431), - [anon_sym_symbol] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_property] = ACTIONS(4431), - [anon_sym_signal] = ACTIONS(4431), - [anon_sym_on] = ACTIONS(4431), - [anon_sym_required] = ACTIONS(4431), - [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(4469), - [sym_html_comment] = ACTIONS(5), - }, - [2206] = { - [sym_export_statement] = STATE(5710), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2206), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5710), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5710), - [sym_property_signature] = STATE(5710), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5710), - [sym_index_signature] = STATE(5710), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(3912), - [anon_sym_RBRACE] = ACTIONS(3914), - [anon_sym_from] = ACTIONS(4431), - [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(3912), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), - [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4431), - [anon_sym_any] = ACTIONS(4431), - [anon_sym_number] = ACTIONS(4431), - [anon_sym_boolean] = ACTIONS(4431), - [anon_sym_string] = ACTIONS(4431), - [anon_sym_symbol] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_property] = ACTIONS(4431), - [anon_sym_signal] = ACTIONS(4431), - [anon_sym_on] = ACTIONS(4431), - [anon_sym_required] = ACTIONS(4431), - [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3914), - [sym_html_comment] = ACTIONS(5), - }, - [2207] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2207), - [sym__module] = STATE(3134), - [sym_identifier] = ACTIONS(4333), + [2049] = { + [sym_variable_declarator] = STATE(6327), + [sym_object_pattern] = STATE(5126), + [sym_array_pattern] = STATE(5126), + [sym__destructuring_pattern] = STATE(5128), + [sym_comment] = STATE(2049), + [sym_identifier] = ACTIONS(4275), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1369), [anon_sym_as] = ACTIONS(28), - [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(4277), + [anon_sym_COMMA] = ACTIONS(28), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(28), [anon_sym_in] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(4279), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_DQUOTE] = ACTIONS(56), - [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -259096,60 +244989,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2208] = { - [sym_export_statement] = STATE(5652), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2208), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5652), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5652), - [sym_property_signature] = STATE(5652), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5652), - [sym_index_signature] = STATE(5652), - [aux_sym_export_statement_repeat1] = STATE(6323), + [2050] = { + [sym_comment] = STATE(2050), + [sym_identifier] = ACTIONS(4429), + [anon_sym_export] = ACTIONS(4429), + [anon_sym_type] = ACTIONS(4429), + [anon_sym_namespace] = ACTIONS(4429), + [anon_sym_LBRACE] = ACTIONS(4429), + [anon_sym_typeof] = ACTIONS(4429), + [anon_sym_import] = ACTIONS(4429), + [anon_sym_from] = ACTIONS(4429), + [anon_sym_let] = ACTIONS(4429), + [anon_sym_BANG] = ACTIONS(4429), + [anon_sym_LPAREN] = ACTIONS(4429), + [anon_sym_await] = ACTIONS(4429), + [anon_sym_of] = ACTIONS(4429), + [anon_sym_yield] = ACTIONS(4429), + [anon_sym_LBRACK] = ACTIONS(4429), + [anon_sym_LTtemplate_GT] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [anon_sym_SQUOTE] = ACTIONS(4429), + [anon_sym_class] = ACTIONS(4429), + [anon_sym_async] = ACTIONS(4429), + [anon_sym_function] = ACTIONS(4429), + [anon_sym_new] = ACTIONS(4429), + [anon_sym_using] = ACTIONS(4429), + [anon_sym_PLUS] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_SLASH] = ACTIONS(4429), + [anon_sym_LT] = ACTIONS(4429), + [anon_sym_TILDE] = ACTIONS(4429), + [anon_sym_void] = ACTIONS(4429), + [anon_sym_delete] = ACTIONS(4429), + [anon_sym_PLUS_PLUS] = ACTIONS(4429), + [anon_sym_DASH_DASH] = ACTIONS(4429), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4429), + [sym_number] = ACTIONS(4429), + [sym_private_property_identifier] = ACTIONS(4429), + [sym_this] = ACTIONS(4429), + [sym_super] = ACTIONS(4429), + [sym_true] = ACTIONS(4429), + [sym_false] = ACTIONS(4429), + [sym_null] = ACTIONS(4429), + [sym_undefined] = ACTIONS(4429), + [anon_sym_AT] = ACTIONS(4429), + [anon_sym_static] = ACTIONS(4429), + [anon_sym_readonly] = ACTIONS(4429), + [anon_sym_get] = ACTIONS(4429), + [anon_sym_set] = ACTIONS(4429), + [anon_sym_declare] = ACTIONS(4429), + [anon_sym_public] = ACTIONS(4429), + [anon_sym_private] = ACTIONS(4429), + [anon_sym_protected] = ACTIONS(4429), + [anon_sym_override] = ACTIONS(4429), + [anon_sym_module] = ACTIONS(4429), + [anon_sym_any] = ACTIONS(4429), + [anon_sym_number] = ACTIONS(4429), + [anon_sym_boolean] = ACTIONS(4429), + [anon_sym_string] = ACTIONS(4429), + [anon_sym_symbol] = ACTIONS(4429), + [anon_sym_object] = ACTIONS(4429), + [anon_sym_property] = ACTIONS(4429), + [anon_sym_signal] = ACTIONS(4429), + [anon_sym_on] = ACTIONS(4429), + [anon_sym_required] = ACTIONS(4429), + [anon_sym_component] = ACTIONS(4429), + [sym_html_comment] = ACTIONS(5), + }, + [2051] = { + [sym_comment] = STATE(2051), [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), + [anon_sym_export] = ACTIONS(4431), [anon_sym_type] = ACTIONS(4431), [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4471), - [anon_sym_RBRACE] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4431), + [anon_sym_typeof] = ACTIONS(4431), + [anon_sym_import] = ACTIONS(4431), [anon_sym_from] = ACTIONS(4431), [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(4431), + [anon_sym_LPAREN] = ACTIONS(4431), + [anon_sym_await] = ACTIONS(4431), [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4471), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), + [anon_sym_yield] = ACTIONS(4431), + [anon_sym_LBRACK] = ACTIONS(4431), + [anon_sym_LTtemplate_GT] = ACTIONS(4431), + [anon_sym_DQUOTE] = ACTIONS(4431), + [anon_sym_SQUOTE] = ACTIONS(4431), + [anon_sym_class] = ACTIONS(4431), + [anon_sym_async] = ACTIONS(4431), + [anon_sym_function] = ACTIONS(4431), + [anon_sym_new] = ACTIONS(4431), + [anon_sym_using] = ACTIONS(4431), + [anon_sym_PLUS] = ACTIONS(4431), + [anon_sym_DASH] = ACTIONS(4431), + [anon_sym_SLASH] = ACTIONS(4431), + [anon_sym_LT] = ACTIONS(4431), + [anon_sym_TILDE] = ACTIONS(4431), + [anon_sym_void] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4431), + [anon_sym_PLUS_PLUS] = ACTIONS(4431), + [anon_sym_DASH_DASH] = ACTIONS(4431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(4431), + [sym_number] = ACTIONS(4431), + [sym_private_property_identifier] = ACTIONS(4431), + [sym_this] = ACTIONS(4431), + [sym_super] = ACTIONS(4431), + [sym_true] = ACTIONS(4431), + [sym_false] = ACTIONS(4431), + [sym_null] = ACTIONS(4431), + [sym_undefined] = ACTIONS(4431), + [anon_sym_AT] = ACTIONS(4431), + [anon_sym_static] = ACTIONS(4431), + [anon_sym_readonly] = ACTIONS(4431), + [anon_sym_get] = ACTIONS(4431), + [anon_sym_set] = ACTIONS(4431), [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), + [anon_sym_public] = ACTIONS(4431), + [anon_sym_private] = ACTIONS(4431), + [anon_sym_protected] = ACTIONS(4431), + [anon_sym_override] = ACTIONS(4431), [anon_sym_module] = ACTIONS(4431), [anon_sym_any] = ACTIONS(4431), [anon_sym_number] = ACTIONS(4431), @@ -259162,29 +245127,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_on] = ACTIONS(4431), [anon_sym_required] = ACTIONS(4431), [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(4473), [sym_html_comment] = ACTIONS(5), }, - [2209] = { - [sym_comment] = STATE(2209), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4461), + [2052] = { + [sym_export_statement] = STATE(5511), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2052), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5511), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5511), + [sym_property_signature] = STATE(5511), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5511), + [sym_index_signature] = STATE(5511), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(4439), + [anon_sym_RBRACE] = ACTIONS(4441), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4439), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(4441), + [sym_html_comment] = ACTIONS(5), + }, + [2053] = { + [sym_comment] = STATE(2053), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4459), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1261), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2936), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -259227,154 +245257,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2210] = { - [sym_export_statement] = STATE(5664), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2210), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5664), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5664), - [sym_property_signature] = STATE(5664), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5664), - [sym_index_signature] = STATE(5664), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4475), - [anon_sym_RBRACE] = ACTIONS(4477), - [anon_sym_from] = ACTIONS(4431), - [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4475), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), - [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4431), - [anon_sym_any] = ACTIONS(4431), - [anon_sym_number] = ACTIONS(4431), - [anon_sym_boolean] = ACTIONS(4431), - [anon_sym_string] = ACTIONS(4431), - [anon_sym_symbol] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_property] = ACTIONS(4431), - [anon_sym_signal] = ACTIONS(4431), - [anon_sym_on] = ACTIONS(4431), - [anon_sym_required] = ACTIONS(4431), - [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(4477), - [sym_html_comment] = ACTIONS(5), - }, - [2211] = { - [sym_export_statement] = STATE(5581), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2211), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5581), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5581), - [sym_property_signature] = STATE(5581), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5581), - [sym_index_signature] = STATE(5581), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4479), - [anon_sym_RBRACE] = ACTIONS(4481), - [anon_sym_from] = ACTIONS(4431), - [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4479), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), - [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4431), - [anon_sym_any] = ACTIONS(4431), - [anon_sym_number] = ACTIONS(4431), - [anon_sym_boolean] = ACTIONS(4431), - [anon_sym_string] = ACTIONS(4431), - [anon_sym_symbol] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_property] = ACTIONS(4431), - [anon_sym_signal] = ACTIONS(4431), - [anon_sym_on] = ACTIONS(4431), - [anon_sym_required] = ACTIONS(4431), - [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(4481), - [sym_html_comment] = ACTIONS(5), - }, - [2212] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2212), - [sym__module] = STATE(3134), + [2054] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(2054), + [sym__module] = STATE(2918), [sym_identifier] = ACTIONS(4333), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1475), [anon_sym_as] = ACTIONS(28), [anon_sym_LBRACE] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), @@ -259386,7 +245282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_EQ_GT] = ACTIONS(1471), + [anon_sym_EQ_GT] = ACTIONS(1455), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -259434,92 +245330,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2213] = { - [sym_export_statement] = STATE(5671), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2213), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5671), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5671), - [sym_property_signature] = STATE(5671), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5671), - [sym_index_signature] = STATE(5671), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4483), - [anon_sym_RBRACE] = ACTIONS(4485), - [anon_sym_from] = ACTIONS(4431), - [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4483), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), - [anon_sym_LT] = ACTIONS(2275), + [2055] = { + [sym_comment] = STATE(2055), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4459), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), - [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), - [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4431), - [anon_sym_any] = ACTIONS(4431), - [anon_sym_number] = ACTIONS(4431), - [anon_sym_boolean] = ACTIONS(4431), - [anon_sym_string] = ACTIONS(4431), - [anon_sym_symbol] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_property] = ACTIONS(4431), - [anon_sym_signal] = ACTIONS(4431), - [anon_sym_on] = ACTIONS(4431), - [anon_sym_required] = ACTIONS(4431), - [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(4485), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2214] = { - [sym_comment] = STATE(2214), - [aux_sym_object_repeat1] = STATE(7064), - [aux_sym_object_pattern_repeat1] = STATE(6997), - [sym_identifier] = ACTIONS(4461), + [2056] = { + [sym_comment] = STATE(2056), + [aux_sym_object_repeat1] = STATE(7047), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4459), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1214), [anon_sym_as] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), - [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_RBRACE] = ACTIONS(1220), [anon_sym_BANG] = ACTIONS(28), [anon_sym_LPAREN] = ACTIONS(2936), [anon_sym_in] = ACTIONS(28), [anon_sym_SEMI] = ACTIONS(28), - [anon_sym_COLON] = ACTIONS(1228), + [anon_sym_COLON] = ACTIONS(1222), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_GT] = ACTIONS(28), [anon_sym_DOT] = ACTIONS(28), - [anon_sym_EQ_GT] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1233), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -259562,154 +245458,355 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(28), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(28), - [anon_sym_QMARK] = ACTIONS(1247), + [anon_sym_QMARK] = ACTIONS(1241), [anon_sym_satisfies] = ACTIONS(28), [sym__automatic_semicolon] = ACTIONS(126), [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, - [2215] = { - [sym_export_statement] = STATE(5675), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2215), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5675), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5675), - [sym_property_signature] = STATE(5675), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5675), - [sym_index_signature] = STATE(5675), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_RBRACE] = ACTIONS(4489), - [anon_sym_from] = ACTIONS(4431), - [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), + [2057] = { + [sym_export_statement] = STATE(5392), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2057), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5392), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5392), + [sym_property_signature] = STATE(5392), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5392), + [sym_index_signature] = STATE(5392), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(4461), + [anon_sym_RBRACE] = ACTIONS(4463), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4461), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), - [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4431), - [anon_sym_any] = ACTIONS(4431), - [anon_sym_number] = ACTIONS(4431), - [anon_sym_boolean] = ACTIONS(4431), - [anon_sym_string] = ACTIONS(4431), - [anon_sym_symbol] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_property] = ACTIONS(4431), - [anon_sym_signal] = ACTIONS(4431), - [anon_sym_on] = ACTIONS(4431), - [anon_sym_required] = ACTIONS(4431), - [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(4489), - [sym_html_comment] = ACTIONS(5), - }, - [2216] = { - [sym_export_statement] = STATE(5615), - [sym__call_signature] = STATE(6248), - [sym_string] = STATE(4879), - [sym_comment] = STATE(2216), - [sym_decorator] = STATE(6589), - [sym_formal_parameters] = STATE(4942), - [sym__property_name] = STATE(4755), - [sym_computed_property_name] = STATE(4879), - [sym_method_signature] = STATE(5615), - [sym_accessibility_modifier] = STATE(3832), - [sym_override_modifier] = STATE(3897), - [sym_call_signature] = STATE(5615), - [sym_property_signature] = STATE(5615), - [sym_type_parameters] = STATE(8017), - [sym_construct_signature] = STATE(5615), - [sym_index_signature] = STATE(5615), - [aux_sym_export_statement_repeat1] = STATE(6323), - [sym_identifier] = ACTIONS(4431), - [anon_sym_export] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_namespace] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(3782), - [anon_sym_RBRACE] = ACTIONS(3806), - [anon_sym_from] = ACTIONS(4431), - [anon_sym_let] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(3780), - [anon_sym_of] = ACTIONS(4431), - [anon_sym_SEMI] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(4441), - [anon_sym_DQUOTE] = ACTIONS(2524), - [anon_sym_SQUOTE] = ACTIONS(2526), - [anon_sym_async] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4445), - [anon_sym_PLUS] = ACTIONS(3790), - [anon_sym_DASH] = ACTIONS(3790), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(4463), + [sym_html_comment] = ACTIONS(5), + }, + [2058] = { + [sym_export_statement] = STATE(5487), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2058), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5487), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5487), + [sym_property_signature] = STATE(5487), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5487), + [sym_index_signature] = STATE(5487), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(4465), + [anon_sym_RBRACE] = ACTIONS(4467), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4465), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), [anon_sym_LT] = ACTIONS(2275), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3792), - [sym_private_property_identifier] = ACTIONS(3792), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), [anon_sym_AT] = ACTIONS(106), - [anon_sym_static] = ACTIONS(4447), - [anon_sym_readonly] = ACTIONS(4449), - [anon_sym_get] = ACTIONS(4451), - [anon_sym_set] = ACTIONS(4451), - [anon_sym_declare] = ACTIONS(4431), - [anon_sym_public] = ACTIONS(4453), - [anon_sym_private] = ACTIONS(4453), - [anon_sym_protected] = ACTIONS(4453), - [anon_sym_override] = ACTIONS(4455), - [anon_sym_module] = ACTIONS(4431), - [anon_sym_any] = ACTIONS(4431), - [anon_sym_number] = ACTIONS(4431), - [anon_sym_boolean] = ACTIONS(4431), - [anon_sym_string] = ACTIONS(4431), - [anon_sym_symbol] = ACTIONS(4431), - [anon_sym_object] = ACTIONS(4431), - [anon_sym_property] = ACTIONS(4431), - [anon_sym_signal] = ACTIONS(4431), - [anon_sym_on] = ACTIONS(4431), - [anon_sym_required] = ACTIONS(4431), - [anon_sym_component] = ACTIONS(4431), - [anon_sym_abstract] = ACTIONS(3804), - [anon_sym_PIPE_RBRACE] = ACTIONS(3806), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(4467), [sym_html_comment] = ACTIONS(5), }, - [2217] = { - [sym_nested_identifier] = STATE(2951), - [sym_string] = STATE(2952), - [sym_comment] = STATE(2217), - [sym__module] = STATE(3134), + [2059] = { + [sym_export_statement] = STATE(5505), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2059), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5505), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5505), + [sym_property_signature] = STATE(5505), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5505), + [sym_index_signature] = STATE(5505), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_RBRACE] = ACTIONS(3800), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3800), + [sym_html_comment] = ACTIONS(5), + }, + [2060] = { + [sym_export_statement] = STATE(5442), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2060), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5442), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5442), + [sym_property_signature] = STATE(5442), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5442), + [sym_index_signature] = STATE(5442), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4471), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(4471), + [sym_html_comment] = ACTIONS(5), + }, + [2061] = { + [sym_export_statement] = STATE(5480), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2061), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5480), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5480), + [sym_property_signature] = STATE(5480), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5480), + [sym_index_signature] = STATE(5480), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(3850), + [anon_sym_RBRACE] = ACTIONS(3866), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(3850), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(3866), + [sym_html_comment] = ACTIONS(5), + }, + [2062] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(2062), + [sym__module] = STATE(2918), [sym_identifier] = ACTIONS(4333), [anon_sym_STAR] = ACTIONS(28), - [anon_sym_EQ] = ACTIONS(1333), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(28), [anon_sym_LBRACE] = ACTIONS(28), [anon_sym_COMMA] = ACTIONS(28), @@ -259721,7 +245818,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(28), [anon_sym_DQUOTE] = ACTIONS(56), [anon_sym_SQUOTE] = ACTIONS(58), - [anon_sym_EQ_GT] = ACTIONS(1471), + [anon_sym_EQ_GT] = ACTIONS(1455), [anon_sym_QMARK_DOT] = ACTIONS(28), [anon_sym_PLUS_EQ] = ACTIONS(72), [anon_sym_DASH_EQ] = ACTIONS(72), @@ -259769,3387 +245866,504 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(126), [sym_html_comment] = ACTIONS(5), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(197), 1, - anon_sym_DQUOTE, - ACTIONS(199), 1, - anon_sym_SQUOTE, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4335), 1, - sym_identifier, - STATE(2218), 1, - sym_comment, - STATE(2757), 1, - sym_string, - STATE(2785), 1, - sym_nested_identifier, - STATE(3018), 1, - sym__module, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - STATE(2219), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6400), 1, - sym_variable_declarator, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [186] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - STATE(2220), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6425), 1, - sym_variable_declarator, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [279] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4361), 1, - sym_identifier, - ACTIONS(4363), 1, - anon_sym_DQUOTE, - ACTIONS(4365), 1, - anon_sym_SQUOTE, - STATE(414), 1, - sym_nested_identifier, - STATE(416), 1, - sym_string, - STATE(427), 1, - sym__module, - STATE(2221), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [372] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - STATE(2222), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6462), 1, - sym_variable_declarator, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [465] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4491), 1, - sym_identifier, - STATE(2223), 1, - sym_comment, - STATE(5207), 1, - sym_nested_identifier, - STATE(5502), 1, - sym_string, - STATE(6244), 1, - sym__module, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [558] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4287), 1, - sym_identifier, - ACTIONS(4289), 1, - anon_sym_DQUOTE, - ACTIONS(4291), 1, - anon_sym_SQUOTE, - STATE(1325), 1, - sym_nested_identifier, - STATE(1610), 1, - sym_string, - STATE(1668), 1, - sym__module, - STATE(2224), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [651] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4373), 1, - sym_identifier, - ACTIONS(4375), 1, - anon_sym_DQUOTE, - ACTIONS(4377), 1, - anon_sym_SQUOTE, - STATE(335), 1, - sym_nested_identifier, - STATE(338), 1, - sym_string, - STATE(366), 1, - sym__module, - STATE(2225), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [744] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4385), 1, - sym_identifier, - ACTIONS(4387), 1, - anon_sym_DQUOTE, - ACTIONS(4389), 1, - anon_sym_SQUOTE, - STATE(2226), 1, - sym_comment, - STATE(3968), 1, - sym_nested_identifier, - STATE(4015), 1, - sym_string, - STATE(4336), 1, - sym__module, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [837] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(4405), 1, - sym_identifier, - STATE(2227), 1, - sym_comment, - STATE(5943), 1, - sym_nested_identifier, - STATE(6516), 1, - sym_string, - STATE(8006), 1, - sym__module, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [930] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1247), 1, - anon_sym_QMARK, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3001), 1, - anon_sym_RBRACE, - ACTIONS(4495), 1, - anon_sym_EQ, - ACTIONS(4499), 1, - anon_sym_LPAREN, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4506), 1, - anon_sym_LT, - STATE(2228), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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(4493), 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, - [1025] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4415), 1, - sym_identifier, - ACTIONS(4417), 1, - anon_sym_DQUOTE, - ACTIONS(4419), 1, - anon_sym_SQUOTE, - STATE(1017), 1, - sym_nested_identifier, - STATE(1112), 1, - sym_string, - STATE(1290), 1, - sym__module, - STATE(2229), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [1118] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - STATE(2230), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6448), 1, - sym_variable_declarator, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [1211] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2231), 1, - sym_comment, - ACTIONS(4509), 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(4511), 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, - [1286] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4347), 1, - sym_identifier, - ACTIONS(4349), 1, - anon_sym_DQUOTE, - ACTIONS(4351), 1, - anon_sym_SQUOTE, - STATE(1837), 1, - sym_string, - STATE(1839), 1, - sym_nested_identifier, - STATE(1856), 1, - sym__module, - STATE(2232), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [1379] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(56), 1, - anon_sym_DQUOTE, - ACTIONS(58), 1, - anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(1447), 1, - anon_sym_COLON, - ACTIONS(1451), 1, - anon_sym_EQ_GT, - ACTIONS(1469), 1, - anon_sym_EQ, - ACTIONS(4333), 1, - sym_identifier, - STATE(2233), 1, - sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, - sym_string, - STATE(3134), 1, - sym__module, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [1474] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1220), 1, - anon_sym_EQ, - ACTIONS(1247), 1, - anon_sym_QMARK, - ACTIONS(2936), 1, - anon_sym_LT, - ACTIONS(2971), 1, - anon_sym_LPAREN, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(2983), 1, - anon_sym_EQ_GT, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3001), 1, - anon_sym_RBRACE, - STATE(2234), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 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(28), 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, - [1569] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - STATE(2235), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6340), 1, - sym_variable_declarator, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [1662] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(56), 1, - anon_sym_DQUOTE, - ACTIONS(58), 1, - anon_sym_SQUOTE, - ACTIONS(1333), 1, - anon_sym_EQ, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(4333), 1, - sym_identifier, - STATE(2236), 1, - sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, - sym_string, - STATE(3134), 1, - sym__module, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [1755] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4281), 1, - sym_identifier, - ACTIONS(4283), 1, - anon_sym_DQUOTE, - ACTIONS(4285), 1, - anon_sym_SQUOTE, - STATE(428), 1, - sym_nested_identifier, - STATE(463), 1, - sym_string, - STATE(508), 1, - sym__module, - STATE(2237), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [1848] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2238), 1, - sym_comment, - ACTIONS(4513), 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(4515), 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, - [1923] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(56), 1, - anon_sym_DQUOTE, - ACTIONS(58), 1, - anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(1451), 1, - anon_sym_EQ_GT, - ACTIONS(1469), 1, - anon_sym_EQ, - ACTIONS(1487), 1, - anon_sym_COLON, - ACTIONS(4333), 1, - sym_identifier, - STATE(2239), 1, - sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, - sym_string, - STATE(3134), 1, - sym__module, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [2018] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2240), 1, - sym_comment, - ACTIONS(4517), 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(4519), 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, - [2093] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1247), 1, - anon_sym_QMARK, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3003), 1, - anon_sym_RBRACE, - ACTIONS(4495), 1, - anon_sym_EQ, - ACTIONS(4499), 1, - anon_sym_LPAREN, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4506), 1, - anon_sym_LT, - STATE(2241), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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(4493), 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, - [2188] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2242), 1, - sym_comment, - ACTIONS(4521), 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(4523), 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, - [2263] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1220), 1, - anon_sym_EQ, - ACTIONS(1247), 1, - anon_sym_QMARK, - ACTIONS(2936), 1, - anon_sym_LT, - ACTIONS(2971), 1, - anon_sym_LPAREN, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(2983), 1, - anon_sym_EQ_GT, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3003), 1, - anon_sym_RBRACE, - STATE(2243), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 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(28), 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, - [2358] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4393), 1, - sym_identifier, - ACTIONS(4395), 1, - anon_sym_DQUOTE, - ACTIONS(4397), 1, - anon_sym_SQUOTE, - STATE(1005), 1, - sym_nested_identifier, - STATE(1024), 1, - sym_string, - STATE(1072), 1, - sym__module, - STATE(2244), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [2451] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1220), 1, - anon_sym_EQ, - ACTIONS(1247), 1, - anon_sym_QMARK, - ACTIONS(2936), 1, - anon_sym_LT, - ACTIONS(2971), 1, - anon_sym_LPAREN, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(2983), 1, - anon_sym_EQ_GT, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3005), 1, - anon_sym_RBRACE, - STATE(2245), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 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(28), 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, - [2546] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4353), 1, - sym_identifier, - ACTIONS(4355), 1, - anon_sym_DQUOTE, - ACTIONS(4357), 1, - anon_sym_SQUOTE, - STATE(356), 1, - sym_nested_identifier, - STATE(375), 1, - sym_string, - STATE(405), 1, - sym__module, - STATE(2246), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [2639] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1220), 1, - anon_sym_EQ, - ACTIONS(1247), 1, - anon_sym_QMARK, - ACTIONS(2936), 1, - anon_sym_LT, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(2971), 1, - anon_sym_LPAREN, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(2983), 1, - anon_sym_EQ_GT, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2247), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 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(28), 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, - [2734] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1247), 1, - anon_sym_QMARK, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3005), 1, - anon_sym_RBRACE, - ACTIONS(4495), 1, - anon_sym_EQ, - ACTIONS(4499), 1, - anon_sym_LPAREN, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4506), 1, - anon_sym_LT, - STATE(2248), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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(4493), 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, - [2829] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2249), 1, - sym_comment, - ACTIONS(4525), 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(4527), 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, - [2904] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_DOT, - ACTIONS(4539), 1, - anon_sym_EQ_GT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - ACTIONS(4543), 1, - anon_sym_LT, - STATE(2250), 1, - sym_comment, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, - sym_type_arguments, - ACTIONS(4531), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4535), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4497), 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(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 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, - [3001] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1247), 1, - anon_sym_QMARK, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(2974), 1, - anon_sym_COLON, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4495), 1, - anon_sym_EQ, - ACTIONS(4499), 1, - anon_sym_LPAREN, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4506), 1, - anon_sym_LT, - STATE(2251), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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(4493), 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, - [3096] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2252), 1, - sym_comment, - ACTIONS(4545), 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(4547), 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, - [3171] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - STATE(2253), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6562), 1, - sym_variable_declarator, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3264] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2254), 1, - sym_comment, - ACTIONS(4549), 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(4551), 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, - [3339] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4407), 1, - sym_identifier, - ACTIONS(4409), 1, - anon_sym_DQUOTE, - ACTIONS(4411), 1, - anon_sym_SQUOTE, - STATE(1129), 1, - sym_nested_identifier, - STATE(1364), 1, - sym_string, - STATE(1568), 1, - sym__module, - STATE(2255), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3432] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - STATE(2256), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6535), 1, - sym_variable_declarator, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3525] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - ACTIONS(4539), 1, - anon_sym_EQ_GT, - ACTIONS(4553), 1, - anon_sym_LPAREN, - ACTIONS(4555), 1, - anon_sym_DOT, - ACTIONS(4557), 1, - anon_sym_QMARK_DOT, - ACTIONS(4559), 1, - anon_sym_LT, - STATE(2257), 1, - sym_comment, - STATE(4797), 1, - sym_arguments, - STATE(4915), 1, - sym_type_arguments, - ACTIONS(4535), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4531), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4497), 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(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 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, - [3622] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [2063] = { + [sym_export_statement] = STATE(5295), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2063), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5295), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5295), + [sym_property_signature] = STATE(5295), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5295), + [sym_index_signature] = STATE(5295), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4475), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(4475), + [sym_html_comment] = ACTIONS(5), + }, + [2064] = { + [sym_export_statement] = STATE(5519), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2064), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5519), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5519), + [sym_property_signature] = STATE(5519), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5519), + [sym_index_signature] = STATE(5519), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_RBRACE] = ACTIONS(4479), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(4479), + [sym_html_comment] = ACTIONS(5), + }, + [2065] = { + [sym_export_statement] = STATE(5358), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2065), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5358), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5358), + [sym_property_signature] = STATE(5358), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5358), + [sym_index_signature] = STATE(5358), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_RBRACE] = ACTIONS(4483), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(4483), + [sym_html_comment] = ACTIONS(5), + }, + [2066] = { + [sym_export_statement] = STATE(5508), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2066), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5508), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5508), + [sym_property_signature] = STATE(5508), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5508), + [sym_index_signature] = STATE(5508), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_RBRACE] = ACTIONS(4487), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(4487), + [sym_html_comment] = ACTIONS(5), + }, + [2067] = { + [sym_comment] = STATE(2067), + [aux_sym_object_repeat1] = STATE(6902), + [aux_sym_object_pattern_repeat1] = STATE(7026), + [sym_identifier] = ACTIONS(4459), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(28), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(2936), + [anon_sym_in] = ACTIONS(28), + [anon_sym_SEMI] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1222), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(2936), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_QMARK] = ACTIONS(1241), + [anon_sym_satisfies] = ACTIONS(28), + [sym__automatic_semicolon] = ACTIONS(126), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2068] = { + [sym_nested_identifier] = STATE(2812), + [sym_string] = STATE(2811), + [sym_comment] = STATE(2068), + [sym__module] = STATE(2918), + [sym_identifier] = ACTIONS(4333), + [anon_sym_STAR] = ACTIONS(28), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_as] = ACTIONS(28), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(28), + [anon_sym_LPAREN] = ACTIONS(28), + [anon_sym_in] = ACTIONS(28), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_RBRACK] = ACTIONS(34), + [anon_sym_GT] = ACTIONS(28), + [anon_sym_DOT] = ACTIONS(28), + [anon_sym_DQUOTE] = ACTIONS(56), + [anon_sym_SQUOTE] = ACTIONS(58), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_QMARK_DOT] = ACTIONS(28), + [anon_sym_PLUS_EQ] = ACTIONS(72), + [anon_sym_DASH_EQ] = ACTIONS(72), + [anon_sym_STAR_EQ] = ACTIONS(72), + [anon_sym_SLASH_EQ] = ACTIONS(72), + [anon_sym_PERCENT_EQ] = ACTIONS(72), + [anon_sym_CARET_EQ] = ACTIONS(72), + [anon_sym_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_EQ] = ACTIONS(72), + [anon_sym_GT_GT_EQ] = ACTIONS(72), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(72), + [anon_sym_LT_LT_EQ] = ACTIONS(72), + [anon_sym_STAR_STAR_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP_EQ] = ACTIONS(72), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(72), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(72), + [anon_sym_AMP_AMP] = ACTIONS(28), + [anon_sym_PIPE_PIPE] = ACTIONS(28), + [anon_sym_GT_GT] = ACTIONS(28), + [anon_sym_GT_GT_GT] = ACTIONS(28), + [anon_sym_LT_LT] = ACTIONS(28), + [anon_sym_AMP] = ACTIONS(28), + [anon_sym_CARET] = ACTIONS(28), + [anon_sym_PIPE] = ACTIONS(28), + [anon_sym_PLUS] = ACTIONS(28), + [anon_sym_DASH] = ACTIONS(28), + [anon_sym_SLASH] = ACTIONS(28), + [anon_sym_PERCENT] = ACTIONS(28), + [anon_sym_STAR_STAR] = ACTIONS(28), + [anon_sym_LT] = ACTIONS(28), + [anon_sym_LT_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ] = ACTIONS(28), + [anon_sym_EQ_EQ_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ] = ACTIONS(28), + [anon_sym_BANG_EQ_EQ] = ACTIONS(28), + [anon_sym_GT_EQ] = ACTIONS(28), + [anon_sym_QMARK_QMARK] = ACTIONS(28), + [anon_sym_instanceof] = ACTIONS(28), + [anon_sym_PLUS_PLUS] = ACTIONS(28), + [anon_sym_DASH_DASH] = ACTIONS(28), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(28), + [anon_sym_satisfies] = ACTIONS(28), + [sym__ternary_qmark] = ACTIONS(126), + [sym_html_comment] = ACTIONS(5), + }, + [2069] = { + [sym_export_statement] = STATE(5471), + [sym__call_signature] = STATE(5525), + [sym_string] = STATE(4711), + [sym_comment] = STATE(2069), + [sym_decorator] = STATE(6120), + [sym_formal_parameters] = STATE(4747), + [sym__property_name] = STATE(4586), + [sym_computed_property_name] = STATE(4711), + [sym_method_signature] = STATE(5471), + [sym_accessibility_modifier] = STATE(3664), + [sym_override_modifier] = STATE(3757), + [sym_call_signature] = STATE(5471), + [sym_property_signature] = STATE(5471), + [sym_type_parameters] = STATE(7660), + [sym_construct_signature] = STATE(5471), + [sym_index_signature] = STATE(5471), + [aux_sym_export_statement_repeat1] = STATE(6179), + [sym_identifier] = ACTIONS(4433), + [anon_sym_export] = ACTIONS(4435), + [anon_sym_STAR] = ACTIONS(4437), + [anon_sym_type] = ACTIONS(4433), + [anon_sym_namespace] = ACTIONS(4433), + [anon_sym_COMMA] = ACTIONS(4489), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_from] = ACTIONS(4433), + [anon_sym_let] = ACTIONS(4433), + [anon_sym_LPAREN] = ACTIONS(3774), + [anon_sym_of] = ACTIONS(4433), + [anon_sym_SEMI] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4443), + [anon_sym_DQUOTE] = ACTIONS(2512), + [anon_sym_SQUOTE] = ACTIONS(2514), + [anon_sym_async] = ACTIONS(4445), + [anon_sym_new] = ACTIONS(4447), + [anon_sym_PLUS] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3784), + [anon_sym_LT] = ACTIONS(2275), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3786), + [sym_private_property_identifier] = ACTIONS(3786), + [anon_sym_AT] = ACTIONS(106), + [anon_sym_static] = ACTIONS(4449), + [anon_sym_readonly] = ACTIONS(4451), + [anon_sym_get] = ACTIONS(4453), + [anon_sym_set] = ACTIONS(4453), + [anon_sym_declare] = ACTIONS(4433), + [anon_sym_public] = ACTIONS(4455), + [anon_sym_private] = ACTIONS(4455), + [anon_sym_protected] = ACTIONS(4455), + [anon_sym_override] = ACTIONS(4457), + [anon_sym_module] = ACTIONS(4433), + [anon_sym_any] = ACTIONS(4433), + [anon_sym_number] = ACTIONS(4433), + [anon_sym_boolean] = ACTIONS(4433), + [anon_sym_string] = ACTIONS(4433), + [anon_sym_symbol] = ACTIONS(4433), + [anon_sym_object] = ACTIONS(4433), + [anon_sym_property] = ACTIONS(4433), + [anon_sym_signal] = ACTIONS(4433), + [anon_sym_on] = ACTIONS(4433), + [anon_sym_required] = ACTIONS(4433), + [anon_sym_component] = ACTIONS(4433), + [anon_sym_abstract] = ACTIONS(3798), + [anon_sym_PIPE_RBRACE] = ACTIONS(4491), + [sym_html_comment] = ACTIONS(5), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, + ACTIONS(1214), 1, anon_sym_EQ, - ACTIONS(4399), 1, - sym_identifier, - ACTIONS(4401), 1, - anon_sym_DQUOTE, - ACTIONS(4403), 1, - anon_sym_SQUOTE, - STATE(2258), 1, - sym_comment, - STATE(3889), 1, - sym_nested_identifier, - STATE(3922), 1, - sym_string, - STATE(4141), 1, - sym__module, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(1241), 1, + anon_sym_QMARK, + ACTIONS(2936), 1, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3715] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4425), 1, - sym_identifier, - ACTIONS(4427), 1, - anon_sym_DQUOTE, - ACTIONS(4429), 1, - anon_sym_SQUOTE, - STATE(1842), 1, - sym_string, - STATE(1847), 1, - sym_nested_identifier, - STATE(1896), 1, - sym__module, - STATE(2259), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + ACTIONS(2961), 1, + anon_sym_RBRACE, + ACTIONS(2971), 1, anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3808] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2983), 1, anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - STATE(2260), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6394), 1, - sym_variable_declarator, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3901] = 16, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(34), 1, - anon_sym_RBRACK, - ACTIONS(56), 1, - anon_sym_DQUOTE, - ACTIONS(58), 1, - anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(131), 1, - anon_sym_COMMA, - ACTIONS(1442), 1, - anon_sym_EQ, - ACTIONS(1451), 1, - anon_sym_EQ_GT, - ACTIONS(4333), 1, - sym_identifier, - STATE(2261), 1, + STATE(2070), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, - sym_string, - STATE(3134), 1, - sym__module, - ACTIONS(72), 15, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -263165,340 +246379,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(28), 35, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [3998] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(56), 1, - anon_sym_DQUOTE, - ACTIONS(58), 1, - anon_sym_SQUOTE, - ACTIONS(126), 1, + ACTIONS(126), 17, + sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(1333), 1, - anon_sym_EQ, - ACTIONS(1489), 1, - anon_sym_EQ_GT, - ACTIONS(4333), 1, - sym_identifier, - STATE(2262), 1, - sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, - sym_string, - STATE(3134), 1, - sym__module, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_LT_EQ, - anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4090] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2263), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4561), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [4220] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2264), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4563), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [4350] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - STATE(2265), 1, - sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(28), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263516,70 +246415,47 @@ 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(4497), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [4428] = 16, + [95] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, + ACTIONS(4495), 1, anon_sym_EQ, - ACTIONS(4533), 1, + ACTIONS(4501), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4505), 1, anon_sym_DOT, - ACTIONS(4539), 1, + ACTIONS(4507), 1, anon_sym_EQ_GT, - ACTIONS(4541), 1, + ACTIONS(4509), 1, anon_sym_QMARK_DOT, - ACTIONS(4543), 1, + ACTIONS(4513), 1, anon_sym_LT, - STATE(2266), 1, + STATE(2071), 1, sym_comment, - STATE(4572), 1, + STATE(4358), 1, sym_arguments, - STATE(4675), 1, + STATE(4465), 1, sym_type_arguments, - ACTIONS(4535), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4531), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(4499), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4497), 13, + ACTIONS(4503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -263589,551 +246465,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 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, - [4524] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2267), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4567), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [4654] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2268), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4569), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [4784] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2269), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4571), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [4914] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2270), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4573), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [5044] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2271), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4575), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [5174] = 14, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [192] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(56), 1, - anon_sym_DQUOTE, - ACTIONS(58), 1, - anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(1489), 1, - anon_sym_EQ_GT, - ACTIONS(1495), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(4333), 1, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4363), 1, sym_identifier, - STATE(2272), 1, - sym_comment, - STATE(2951), 1, + ACTIONS(4365), 1, + anon_sym_DQUOTE, + ACTIONS(4367), 1, + anon_sym_SQUOTE, + STATE(1689), 1, sym_nested_identifier, - STATE(2952), 1, + STATE(1690), 1, sym_string, - STATE(3134), 1, + STATE(1702), 1, sym__module, + STATE(2072), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -264156,7 +246547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -264187,322 +246578,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5266] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2273), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4577), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [5396] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2274), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4579), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [5526] = 33, + [285] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2275), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4581), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [5656] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(56), 1, - anon_sym_DQUOTE, - ACTIONS(58), 1, - anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(1333), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(1451), 1, + ACTIONS(1467), 1, anon_sym_EQ_GT, - ACTIONS(4333), 1, + ACTIONS(4275), 1, sym_identifier, - STATE(2276), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + STATE(2073), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, - sym_string, - STATE(3134), 1, - sym__module, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6361), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -264519,14 +246621,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(28), 36, + ACTIONS(28), 35, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -264556,33 +246657,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5748] = 14, + [378] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4529), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(4539), 1, + ACTIONS(1467), 1, anon_sym_EQ_GT, - ACTIONS(4589), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_extends, - STATE(2277), 1, + ACTIONS(4385), 1, + sym_identifier, + ACTIONS(4387), 1, + anon_sym_DQUOTE, + ACTIONS(4389), 1, + anon_sym_SQUOTE, + STATE(2074), 1, sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4583), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4586), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4504), 15, + STATE(3740), 1, + sym_nested_identifier, + STATE(3807), 1, + sym_string, + STATE(4033), 1, + sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -264598,184 +246699,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(4493), 17, + ACTIONS(28), 36, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(4497), 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, anon_sym_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5840] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2278), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4597), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [5970] = 15, + [471] = 15, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1241), 1, + anon_sym_QMARK, + ACTIONS(2974), 1, + anon_sym_COLON, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4539), 1, - anon_sym_EQ_GT, - ACTIONS(4583), 1, - anon_sym_LBRACK, - ACTIONS(4599), 1, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(4515), 1, anon_sym_EQ, - ACTIONS(4606), 1, - anon_sym_DOT, - ACTIONS(4609), 1, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4522), 1, anon_sym_LT, - STATE(2279), 1, + STATE(2075), 1, sym_comment, - STATE(4932), 1, - sym_type_arguments, - ACTIONS(4586), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4602), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4595), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4497), 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(4504), 15, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -264791,7 +246777,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(4493), 18, + ACTIONS(4497), 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(4493), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264801,7 +246805,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, @@ -264810,528 +246816,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6064] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2280), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4612), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [6194] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2281), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4614), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [6324] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2282), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4616), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [6454] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2283), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4618), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [6584] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [566] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, + ACTIONS(1214), 1, + anon_sym_EQ, + ACTIONS(1241), 1, + anon_sym_QMARK, + ACTIONS(2936), 1, anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, + ACTIONS(2971), 1, anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2284), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4620), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [6714] = 18, - ACTIONS(5), 1, - sym_html_comment, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2983), 1, + anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4539), 1, - anon_sym_EQ_GT, - ACTIONS(4583), 1, - anon_sym_LBRACK, - ACTIONS(4589), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_extends, - ACTIONS(4599), 1, - anon_sym_EQ, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(4624), 1, - anon_sym_QMARK, - STATE(2285), 1, + ACTIONS(3001), 1, + anon_sym_RBRACE, + STATE(2076), 1, sym_comment, - STATE(4593), 1, - sym_type_arguments, - STATE(7925), 1, - sym_type_annotation, - ACTIONS(4586), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4602), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4497), 13, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 17, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -265342,7 +246875,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(28), 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, + [661] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(1427), 1, + anon_sym_EQ_GT, + ACTIONS(1485), 1, + anon_sym_EQ, + ACTIONS(1487), 1, + anon_sym_COLON, + ACTIONS(4333), 1, + sym_identifier, + STATE(2077), 1, + sym_comment, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -265358,1020 +246939,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 18, + ACTIONS(28), 36, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [6814] = 33, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [756] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2286), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4627), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4415), 1, 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [6944] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(4417), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(4419), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2287), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4629), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, + STATE(337), 1, + sym_nested_identifier, + STATE(338), 1, sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7074] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2288), 1, + STATE(369), 1, + sym__module, + STATE(2078), 1, sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4631), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7204] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2289), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4633), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7334] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, + anon_sym_as, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2290), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + 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(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4635), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7464] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2291), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4637), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7594] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [849] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2292), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4639), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7724] = 33, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2293), 1, + STATE(2079), 1, sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4641), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7854] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, + ACTIONS(4525), 23, anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2294), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4643), 2, + 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(4527), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [7984] = 33, + 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, + [924] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4357), 1, + sym_identifier, + ACTIONS(4359), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(4361), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, + STATE(358), 1, + sym_nested_identifier, + STATE(359), 1, + sym_string, + STATE(409), 1, + sym__module, + STATE(2080), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, anon_sym_STAR, - ACTIONS(4441), 1, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2295), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + 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(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4645), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [8114] = 14, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1017] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(56), 1, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(58), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(1451), 1, - anon_sym_EQ_GT, - ACTIONS(1469), 1, - anon_sym_EQ, - ACTIONS(4333), 1, + ACTIONS(4529), 1, sym_identifier, - STATE(2296), 1, + STATE(2081), 1, sym_comment, - STATE(2951), 1, + STATE(4976), 1, sym_nested_identifier, - STATE(2952), 1, + STATE(5254), 1, sym_string, - STATE(3134), 1, + STATE(5842), 1, sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -266394,8 +247252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -266425,14 +247283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8206] = 5, + [1110] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2297), 1, + STATE(2082), 1, sym_comment, - ACTIONS(3464), 22, + ACTIONS(4531), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -266455,7 +247313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3466), 38, + anon_sym_QMARK, + ACTIONS(4533), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -266494,225 +247353,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [8280] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [1185] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2298), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2083), 1, sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + ACTIONS(4535), 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4647), 2, + 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(4537), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [8410] = 33, + 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, + [1260] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4281), 1, + sym_identifier, + ACTIONS(4283), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(4285), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, + STATE(468), 1, + sym_string, + STATE(469), 1, + sym_nested_identifier, + STATE(489), 1, + sym__module, + STATE(2084), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, anon_sym_STAR, - ACTIONS(4441), 1, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2299), 1, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1353] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2085), 1, sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + ACTIONS(4539), 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4649), 2, + 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(4541), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [8540] = 14, + 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, + [1428] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(56), 1, + ACTIONS(197), 1, anon_sym_DQUOTE, - ACTIONS(58), 1, + ACTIONS(199), 1, anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(1333), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(1571), 1, + ACTIONS(1467), 1, anon_sym_EQ_GT, - ACTIONS(4333), 1, + ACTIONS(4337), 1, sym_identifier, - STATE(2300), 1, + STATE(2086), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, + STATE(2617), 1, sym_string, - STATE(3134), 1, + STATE(2619), 1, + sym_nested_identifier, + STATE(2951), 1, sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -266735,7 +247620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -266766,326 +247651,499 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8632] = 33, + [1521] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4495), 1, + anon_sym_EQ, + ACTIONS(4507), 1, + anon_sym_EQ_GT, + ACTIONS(4543), 1, + anon_sym_LPAREN, + ACTIONS(4545), 1, + anon_sym_DOT, + ACTIONS(4547), 1, + anon_sym_QMARK_DOT, + ACTIONS(4549), 1, + anon_sym_LT, + STATE(2087), 1, + sym_comment, + STATE(4565), 1, + sym_arguments, + STATE(4668), 1, + sym_type_arguments, + ACTIONS(4503), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4499), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, + [1618] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4379), 1, + sym_identifier, + ACTIONS(4381), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(4383), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, + STATE(1010), 1, + sym_nested_identifier, + STATE(1014), 1, + sym_string, + STATE(1174), 1, + sym__module, + STATE(2088), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, anon_sym_STAR, - ACTIONS(4441), 1, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2301), 1, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1711] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2089), 1, sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + ACTIONS(4551), 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4651), 2, + 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(4553), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [8762] = 33, + 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, + [1786] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4421), 1, + sym_identifier, + ACTIONS(4423), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(4425), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, + STATE(1040), 1, + sym_nested_identifier, + STATE(1061), 1, + sym_string, + STATE(1302), 1, + sym__module, + STATE(2090), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, anon_sym_STAR, - ACTIONS(4441), 1, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2302), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + 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(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4653), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [8892] = 33, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1879] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4351), 1, + sym_identifier, + ACTIONS(4353), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(4355), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, + STATE(379), 1, + sym_nested_identifier, + STATE(385), 1, + sym_string, + STATE(464), 1, + sym__module, + STATE(2091), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, anon_sym_STAR, - ACTIONS(4441), 1, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2303), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + 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(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4655), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [9022] = 16, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1972] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(56), 1, - anon_sym_DQUOTE, - ACTIONS(58), 1, - anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(133), 1, - anon_sym_EQ_GT, - ACTIONS(1333), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(1419), 1, - anon_sym_in, - ACTIONS(4333), 1, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4275), 1, sym_identifier, - ACTIONS(4371), 1, - anon_sym_of, - STATE(2304), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + STATE(2092), 1, sym_comment, - STATE(2951), 1, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6164), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2065] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4295), 1, + sym_identifier, + ACTIONS(4297), 1, + anon_sym_DQUOTE, + ACTIONS(4299), 1, + anon_sym_SQUOTE, + STATE(1389), 1, sym_nested_identifier, - STATE(2952), 1, + STATE(1508), 1, sym_string, - STATE(3134), 1, + STATE(1649), 1, sym__module, + STATE(2093), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -267102,11 +248160,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(28), 34, + ACTIONS(28), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -267137,43 +248197,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9118] = 16, + [2158] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4657), 1, - anon_sym_EQ, - STATE(2305), 1, + STATE(2094), 1, sym_comment, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, - sym_type_arguments, - ACTIONS(4531), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4535), 3, + ACTIONS(4555), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4497), 14, - sym__automatic_semicolon, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(4557), 38, 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, @@ -267183,7 +248266,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + anon_sym_implements, + [2233] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4409), 1, + sym_identifier, + ACTIONS(4411), 1, + anon_sym_DQUOTE, + ACTIONS(4413), 1, + anon_sym_SQUOTE, + STATE(1697), 1, + sym_string, + STATE(1699), 1, + sym_nested_identifier, + STATE(1763), 1, + sym__module, + STATE(2095), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -267199,71 +248309,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 17, + ACTIONS(28), 36, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [9214] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2326] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4659), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(4661), 1, + ACTIONS(1467), 1, anon_sym_EQ_GT, - STATE(2306), 1, + ACTIONS(4401), 1, + sym_identifier, + ACTIONS(4403), 1, + anon_sym_DQUOTE, + ACTIONS(4405), 1, + anon_sym_SQUOTE, + STATE(1078), 1, + sym_nested_identifier, + STATE(1306), 1, + sym_string, + STATE(1516), 1, + sym__module, + STATE(2096), 1, sym_comment, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, - sym_type_arguments, - ACTIONS(4531), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4535), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4497), 14, + ACTIONS(126), 2, sym__automatic_semicolon, sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, + anon_sym_STAR, anon_sym_as, - anon_sym_of, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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(4504), 15, + [2419] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + STATE(2097), 1, + sym_comment, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6327), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -267279,231 +248468,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 17, + ACTIONS(28), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [9310] = 33, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2512] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, + ACTIONS(4349), 1, + sym_identifier, + STATE(2098), 1, + sym_comment, + STATE(5665), 1, + sym_nested_identifier, + STATE(6162), 1, + sym_string, + STATE(7250), 1, + sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, anon_sym_STAR, - ACTIONS(4441), 1, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2307), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + 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(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4663), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [9440] = 33, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2605] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4393), 1, + sym_identifier, + ACTIONS(4395), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(4397), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, + STATE(2099), 1, + sym_comment, + STATE(3833), 1, + sym_nested_identifier, + STATE(3890), 1, + sym_string, + STATE(4056), 1, + sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 36, anon_sym_STAR, - ACTIONS(4441), 1, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2308), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + 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(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4665), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [9570] = 5, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2698] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2309), 1, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + STATE(2100), 1, sym_comment, - ACTIONS(3428), 22, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6097), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -267518,23 +248729,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3430), 38, - sym__ternary_qmark, - anon_sym_as, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [2791] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4279), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + STATE(2101), 1, + sym_comment, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6257), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -267550,17 +248784,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [9644] = 14, + [2884] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -267569,22 +248829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(58), 1, anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(1571), 1, - anon_sym_EQ_GT, - ACTIONS(1583), 1, + ACTIONS(1319), 1, anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, ACTIONS(4333), 1, sym_identifier, - STATE(2310), 1, + STATE(2102), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, + STATE(2811), 1, sym_string, - STATE(3134), 1, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, sym__module, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -267607,7 +248868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -267638,52 +248899,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9736] = 16, + [2977] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4667), 1, + ACTIONS(1214), 1, anon_sym_EQ, - ACTIONS(4669), 1, + ACTIONS(1241), 1, + anon_sym_QMARK, + ACTIONS(2936), 1, + anon_sym_LT, + ACTIONS(2971), 1, + anon_sym_LPAREN, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2983), 1, anon_sym_EQ_GT, - STATE(2311), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3005), 1, + anon_sym_RBRACE, + STATE(2103), 1, sym_comment, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, - sym_type_arguments, - ACTIONS(4531), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4535), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4497), 13, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4504), 15, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -267699,16 +248940,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(4493), 17, + ACTIONS(126), 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(28), 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, @@ -267717,30 +248979,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9831] = 14, + [3072] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(34), 1, + anon_sym_RBRACK, ACTIONS(56), 1, anon_sym_DQUOTE, ACTIONS(58), 1, anon_sym_SQUOTE, ACTIONS(126), 1, sym__ternary_qmark, - ACTIONS(133), 1, - anon_sym_EQ_GT, - ACTIONS(1333), 1, + ACTIONS(131), 1, + anon_sym_COMMA, + ACTIONS(1418), 1, anon_sym_EQ, + ACTIONS(1427), 1, + anon_sym_EQ_GT, ACTIONS(4333), 1, sym_identifier, - STATE(2312), 1, + STATE(2104), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, + STATE(2811), 1, sym_string, - STATE(3134), 1, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, @@ -267794,31 +249060,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9922] = 14, + [3169] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(56), 1, - anon_sym_DQUOTE, - ACTIONS(58), 1, - anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(133), 1, - anon_sym_EQ_GT, - ACTIONS(1573), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(4333), 1, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4275), 1, sym_identifier, - STATE(2313), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + STATE(2105), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, - sym_string, - STATE(3134), 1, - sym__module, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6220), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -267841,7 +249109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -267871,16 +249139,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10013] = 5, + [3262] = 15, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1241), 1, + anon_sym_QMARK, + ACTIONS(2974), 1, + anon_sym_COLON, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2314), 1, + ACTIONS(3005), 1, + anon_sym_RBRACE, + ACTIONS(4515), 1, + anon_sym_EQ, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4522), 1, + anon_sym_LT, + STATE(2106), 1, sym_comment, - ACTIONS(4517), 22, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 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(4493), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -267897,23 +249216,196 @@ 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(4519), 37, + [3357] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1241), 1, + anon_sym_QMARK, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3003), 1, + anon_sym_RBRACE, + ACTIONS(4515), 1, + anon_sym_EQ, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4522), 1, + anon_sym_LT, + STATE(2107), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 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_COLON, + 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(4493), 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, + [3452] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + STATE(2108), 1, + sym_comment, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6233), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3545] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1461), 1, + anon_sym_EQ, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + STATE(2109), 1, + sym_comment, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6236), 1, + sym_variable_declarator, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -267929,17 +249421,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [10086] = 14, + [3638] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -267950,19 +249468,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(126), 1, sym__ternary_qmark, - ACTIONS(133), 1, + ACTIONS(1423), 1, + anon_sym_COLON, + ACTIONS(1427), 1, anon_sym_EQ_GT, - ACTIONS(1511), 1, + ACTIONS(1485), 1, anon_sym_EQ, ACTIONS(4333), 1, sym_identifier, - STATE(2315), 1, + STATE(2110), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, + STATE(2811), 1, sym_string, - STATE(3134), 1, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, @@ -267980,13 +249500,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(28), 35, + ACTIONS(28), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -268016,32 +249537,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10177] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [3733] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(56), 1, - anon_sym_DQUOTE, - ACTIONS(58), 1, - anon_sym_SQUOTE, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(133), 1, - anon_sym_EQ_GT, - ACTIONS(1575), 1, + ACTIONS(1241), 1, + anon_sym_QMARK, + ACTIONS(2961), 1, + anon_sym_RBRACE, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4515), 1, anon_sym_EQ, - ACTIONS(4333), 1, - sym_identifier, - STATE(2316), 1, + ACTIONS(4517), 1, + anon_sym_LPAREN, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4522), 1, + anon_sym_LT, + STATE(2111), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, - sym_string, - STATE(3134), 1, - sym__module, - ACTIONS(72), 15, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -268057,16 +249578,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(28), 35, - anon_sym_STAR, + ACTIONS(4497), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4493), 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, @@ -268080,45 +249614,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [10268] = 10, + [3828] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1333), 1, - anon_sym_EQ, - ACTIONS(1335), 1, - anon_sym_QMARK, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4673), 1, - anon_sym_EQ_GT, - STATE(2317), 1, + STATE(2112), 1, sym_comment, - ACTIONS(4671), 5, + ACTIONS(4559), 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(4561), 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_RBRACK, - ACTIONS(126), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -268128,6 +249686,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_implements, + [3903] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1214), 1, + anon_sym_EQ, + ACTIONS(1241), 1, + anon_sym_QMARK, + ACTIONS(2936), 1, + anon_sym_LT, + ACTIONS(2971), 1, + anon_sym_LPAREN, + ACTIONS(2974), 1, + anon_sym_COLON, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3003), 1, + anon_sym_RBRACE, + STATE(2113), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -268144,7 +249728,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(28), 21, + ACTIONS(126), 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(28), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268162,36 +249764,337 @@ 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, - [10351] = 10, + [3998] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(25), 1, - anon_sym_EQ, - ACTIONS(131), 1, - anon_sym_QMARK, - ACTIONS(2987), 1, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2114), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4563), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [4128] = 33, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4678), 1, - anon_sym_EQ_GT, - STATE(2318), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2115), 1, sym_comment, - ACTIONS(4675), 5, - anon_sym_COMMA, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4565), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(126), 15, - sym__ternary_qmark, - anon_sym_as, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [4258] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2116), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4567), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [4388] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(4505), 1, anon_sym_DOT, + ACTIONS(4509), 1, anon_sym_QMARK_DOT, + ACTIONS(4513), 1, + anon_sym_LT, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4569), 1, + anon_sym_EQ, + STATE(2117), 1, + sym_comment, + STATE(4358), 1, + sym_arguments, + STATE(4465), 1, + sym_type_arguments, + ACTIONS(4499), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -268201,7 +250104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -268217,57 +250120,460 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 21, + ACTIONS(4493), 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, - [10434] = 15, + [4484] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(126), 1, - sym__ternary_qmark, - ACTIONS(133), 1, - anon_sym_EQ_GT, - ACTIONS(1333), 1, - anon_sym_EQ, - ACTIONS(1419), 1, - anon_sym_in, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(4371), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2118), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4571), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - ACTIONS(4680), 1, sym_identifier, - ACTIONS(4682), 1, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [4614] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, anon_sym_LBRACK, - STATE(2319), 1, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2119), 1, sym_comment, - STATE(7838), 1, - sym__destructuring_pattern, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(72), 15, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4573), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [4744] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2120), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4575), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [4874] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2121), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4577), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5004] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4507), 1, + anon_sym_EQ_GT, + ACTIONS(4579), 1, + anon_sym_EQ, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(4588), 1, + anon_sym_LBRACK, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4600), 1, + anon_sym_QMARK, + ACTIONS(4603), 1, + anon_sym_extends, + STATE(2122), 1, + sym_comment, + STATE(4433), 1, + sym_type_arguments, + STATE(7921), 1, + sym_type_annotation, + ACTIONS(4582), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4594), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 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(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -268283,41 +250589,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(28), 33, + ACTIONS(4493), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_in, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [10527] = 14, + [5104] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -268328,19 +250619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(126), 1, sym__ternary_qmark, - ACTIONS(133), 1, - anon_sym_EQ_GT, - ACTIONS(1519), 1, + ACTIONS(1319), 1, anon_sym_EQ, + ACTIONS(1427), 1, + anon_sym_EQ_GT, ACTIONS(4333), 1, sym_identifier, - STATE(2320), 1, + STATE(2123), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, + STATE(2811), 1, sym_string, - STATE(3134), 1, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, @@ -268358,13 +250649,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(28), 35, + ACTIONS(28), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -268394,31 +250686,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10618] = 10, + [5196] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4539), 1, + ACTIONS(4507), 1, anon_sym_EQ_GT, - ACTIONS(4599), 1, + ACTIONS(4579), 1, anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_QMARK, - STATE(2321), 1, + ACTIONS(4588), 1, + anon_sym_LBRACK, + ACTIONS(4605), 1, + anon_sym_DOT, + ACTIONS(4608), 1, + anon_sym_LT, + STATE(2124), 1, sym_comment, - ACTIONS(4685), 5, + STATE(4682), 1, + sym_type_arguments, + ACTIONS(4582), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4497), 15, + ACTIONS(4594), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4603), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4497), 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, @@ -268429,7 +250730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -268445,7 +250746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(4493), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268455,26 +250756,23 @@ 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, - [10701] = 5, + [5290] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2322), 1, + STATE(2125), 1, sym_comment, - ACTIONS(4521), 22, + ACTIONS(3464), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -268497,7 +250795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4523), 37, + ACTIONS(3466), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268505,6 +250803,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, @@ -268535,41 +250834,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [10774] = 16, + [5364] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2126), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4611), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5494] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2127), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4613), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5624] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - ACTIONS(4533), 1, + ACTIONS(4501), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4505), 1, anon_sym_DOT, - ACTIONS(4539), 1, - anon_sym_EQ_GT, - ACTIONS(4541), 1, + ACTIONS(4509), 1, anon_sym_QMARK_DOT, - ACTIONS(4543), 1, + ACTIONS(4513), 1, anon_sym_LT, - STATE(2323), 1, + ACTIONS(4615), 1, + anon_sym_EQ, + ACTIONS(4617), 1, + anon_sym_EQ_GT, + STATE(2128), 1, sym_comment, - STATE(4572), 1, + STATE(4358), 1, sym_arguments, - STATE(4675), 1, + STATE(4465), 1, sym_type_arguments, - ACTIONS(4535), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4531), 4, + ACTIONS(4499), 3, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4497), 11, + ACTIONS(4503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 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, @@ -268579,7 +251074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -268595,11 +251090,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(4493), 18, + ACTIONS(4493), 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, @@ -268614,52 +251108,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10869] = 11, + [5720] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1337), 1, - anon_sym_EQ, - ACTIONS(2257), 1, - anon_sym_extends, - ACTIONS(2987), 1, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2129), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4619), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5850] = 33, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4678), 1, - anon_sym_EQ_GT, - STATE(2324), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2130), 1, sym_comment, - ACTIONS(4690), 2, - anon_sym_COMMA, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4621), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [5980] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(4693), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 18, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2131), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4623), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [6110] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2132), 1, + sym_comment, + ACTIONS(3454), 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, @@ -268669,71 +251429,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(126), 18, + ACTIONS(3456), 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_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, - [10954] = 17, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4583), 1, anon_sym_LBRACK, - ACTIONS(4589), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_extends, - ACTIONS(4688), 1, - anon_sym_QMARK, - ACTIONS(4696), 1, - anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_RPAREN, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - STATE(2325), 1, - sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4586), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4699), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4497), 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(4504), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -268749,26 +251458,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 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, + anon_sym_implements, + [6184] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2133), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, 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, - [11051] = 14, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4625), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [6314] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2134), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4627), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [6444] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2135), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4629), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [6574] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -268779,19 +251770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(126), 1, sym__ternary_qmark, - ACTIONS(133), 1, + ACTIONS(1427), 1, anon_sym_EQ_GT, - ACTIONS(1577), 1, + ACTIONS(1485), 1, anon_sym_EQ, ACTIONS(4333), 1, sym_identifier, - STATE(2326), 1, + STATE(2136), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, + STATE(2811), 1, sym_string, - STATE(3134), 1, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, @@ -268809,13 +251800,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(28), 35, + ACTIONS(28), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -268845,42 +251837,424 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11142] = 10, + [6666] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2137), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4631), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [6796] = 33, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - ACTIONS(4708), 1, - anon_sym_QMARK, - STATE(2327), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2138), 1, sym_comment, - ACTIONS(4706), 5, - anon_sym_COMMA, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4633), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4497), 15, - sym__ternary_qmark, - anon_sym_as, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [6926] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2139), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4635), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7056] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2140), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4637), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7186] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(1431), 1, + anon_sym_in, + ACTIONS(4333), 1, + sym_identifier, + ACTIONS(4375), 1, + anon_sym_of, + STATE(2141), 1, + sym_comment, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -268896,11 +252270,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(4493), 21, + ACTIONS(28), 34, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -268915,10 +252293,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [11225] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7282] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2142), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4639), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7412] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2143), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4641), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7542] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2144), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4643), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7672] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2145), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4645), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [7802] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -268929,19 +252704,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(126), 1, sym__ternary_qmark, - ACTIONS(133), 1, - anon_sym_EQ_GT, - ACTIONS(1517), 1, + ACTIONS(1319), 1, anon_sym_EQ, + ACTIONS(1503), 1, + anon_sym_EQ_GT, ACTIONS(4333), 1, sym_identifier, - STATE(2328), 1, + STATE(2146), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, + STATE(2811), 1, sym_string, - STATE(3134), 1, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, @@ -268959,12 +252734,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(28), 35, + ACTIONS(28), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -268995,7 +252771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11316] = 14, + [7894] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -269006,19 +252782,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(126), 1, sym__ternary_qmark, - ACTIONS(133), 1, - anon_sym_EQ_GT, - ACTIONS(1509), 1, + ACTIONS(1319), 1, anon_sym_EQ, + ACTIONS(1519), 1, + anon_sym_EQ_GT, ACTIONS(4333), 1, sym_identifier, - STATE(2329), 1, + STATE(2147), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, + STATE(2811), 1, sym_string, - STATE(3134), 1, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, @@ -269036,12 +252812,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(28), 35, + ACTIONS(28), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_of, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -269072,7 +252849,395 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11407] = 14, + [7986] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2148), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4647), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8116] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2149), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4649), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8246] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2150), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4651), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8376] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2151), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4653), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8506] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -269083,19 +253248,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(126), 1, sym__ternary_qmark, - ACTIONS(133), 1, - anon_sym_EQ_GT, - ACTIONS(1515), 1, + ACTIONS(1513), 1, anon_sym_EQ, + ACTIONS(1519), 1, + anon_sym_EQ_GT, ACTIONS(4333), 1, sym_identifier, - STATE(2330), 1, + STATE(2152), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, + STATE(2811), 1, sym_string, - STATE(3134), 1, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, @@ -269113,12 +253278,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(28), 35, + ACTIONS(28), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_of, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -269149,33 +253315,404 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11498] = 14, + [8598] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2153), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4655), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8728] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2154), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4657), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8858] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2155), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4659), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [8988] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2156), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4661), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [9118] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4589), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_extends, - ACTIONS(4659), 1, + ACTIONS(4663), 1, anon_sym_EQ, - ACTIONS(4661), 1, - anon_sym_EQ_GT, - STATE(2331), 1, + STATE(2157), 1, sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4583), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4586), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -269191,76 +253728,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(4497), 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(4493), 17, + ACTIONS(4493), 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, - [11589] = 17, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4539), 1, - anon_sym_EQ_GT, - ACTIONS(4583), 1, - anon_sym_LBRACK, - ACTIONS(4589), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_extends, - ACTIONS(4599), 1, - anon_sym_EQ, - ACTIONS(4602), 1, - anon_sym_RPAREN, - ACTIONS(4688), 1, - anon_sym_QMARK, - STATE(2332), 1, - sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4586), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4685), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4497), 13, + ACTIONS(4497), 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -269271,76 +253773,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 18, + anon_sym_implements, + [9196] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2158), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, 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, - [11686] = 16, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4665), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [9326] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, + ACTIONS(4495), 1, + anon_sym_EQ, + ACTIONS(4501), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4505), 1, anon_sym_DOT, - ACTIONS(4541), 1, + ACTIONS(4507), 1, + anon_sym_EQ_GT, + ACTIONS(4509), 1, anon_sym_QMARK_DOT, - ACTIONS(4543), 1, + ACTIONS(4513), 1, anon_sym_LT, - ACTIONS(4710), 1, - anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_EQ_GT, - STATE(2333), 1, + STATE(2159), 1, sym_comment, - STATE(4572), 1, + STATE(4358), 1, sym_arguments, - STATE(4675), 1, + STATE(4465), 1, sym_type_arguments, - ACTIONS(4531), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4535), 3, - anon_sym_GT, + ACTIONS(4503), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4499), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, ACTIONS(4497), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -269350,8 +253916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -269367,10 +253932,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(4493), 17, + ACTIONS(4493), 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, @@ -269385,84 +253951,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11781] = 14, + [9422] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4589), 1, - anon_sym_DOT, - ACTIONS(4592), 1, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_extends, - ACTIONS(4657), 1, - anon_sym_EQ, - STATE(2334), 1, - sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4583), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4586), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, 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(4493), 17, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, 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, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2160), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, 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, - [11872] = 14, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4667), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [9552] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -269473,19 +254059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(126), 1, sym__ternary_qmark, - ACTIONS(133), 1, - anon_sym_EQ_GT, - ACTIONS(1513), 1, + ACTIONS(1493), 1, anon_sym_EQ, + ACTIONS(1503), 1, + anon_sym_EQ_GT, ACTIONS(4333), 1, sym_identifier, - STATE(2335), 1, + STATE(2161), 1, sym_comment, - STATE(2951), 1, - sym_nested_identifier, - STATE(2952), 1, + STATE(2811), 1, sym_string, - STATE(3134), 1, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, @@ -269503,12 +254089,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(28), 35, + ACTIONS(28), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -269539,42 +254126,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11963] = 10, + [9644] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4688), 1, - anon_sym_QMARK, - ACTIONS(4696), 1, + ACTIONS(4495), 1, anon_sym_EQ, - ACTIONS(4704), 1, + ACTIONS(4507), 1, anon_sym_EQ_GT, - STATE(2336), 1, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4603), 1, + anon_sym_extends, + STATE(2162), 1, sym_comment, - ACTIONS(4699), 5, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4588), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4497), 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(4504), 15, + ACTIONS(4594), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -269590,53 +254168,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(4493), 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, - [12046] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(128), 1, - anon_sym_EQ, - ACTIONS(131), 1, - anon_sym_QMARK, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4673), 1, - anon_sym_EQ_GT, - STATE(2337), 1, - sym_comment, - ACTIONS(4714), 5, - anon_sym_COMMA, + ACTIONS(4497), 17, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(126), 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, @@ -269647,7 +254204,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2985), 15, + [9736] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1577), 1, + anon_sym_EQ, + ACTIONS(4333), 1, + sym_identifier, + STATE(2163), 1, + sym_comment, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -269663,11 +254245,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(28), 21, + ACTIONS(28), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -269682,48 +254269,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12129] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(25), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4678), 1, - anon_sym_EQ_GT, - ACTIONS(4690), 1, - anon_sym_LBRACK, - STATE(2338), 1, - sym_comment, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2257), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(126), 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, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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(2985), 15, + [9827] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(4333), 1, + sym_identifier, + STATE(2164), 1, + sym_comment, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -269739,259 +254322,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 19, + ACTIONS(28), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [12214] = 32, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [9918] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(56), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(58), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2339), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5665), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, + anon_sym_EQ_GT, + ACTIONS(1525), 1, + anon_sym_EQ, + ACTIONS(4333), 1, 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [12340] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2340), 1, + STATE(2165), 1, sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, + STATE(2811), 1, sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5645), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [12466] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4716), 1, - anon_sym_EQ, - ACTIONS(4718), 1, - anon_sym_EQ_GT, - STATE(2341), 1, - sym_comment, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, - sym_type_arguments, - ACTIONS(4531), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4535), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4497), 12, - sym__ternary_qmark, - anon_sym_as, - 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(4504), 15, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -270007,61 +254399,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(4493), 17, + ACTIONS(28), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [12560] = 8, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10009] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1337), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4678), 1, + ACTIONS(4507), 1, anon_sym_EQ_GT, - STATE(2342), 1, + ACTIONS(4579), 1, + anon_sym_EQ, + ACTIONS(4672), 1, + anon_sym_QMARK, + STATE(2166), 1, sym_comment, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 20, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4669), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -270073,47 +254470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 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, - [12638] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, - anon_sym_EQ_GT, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(1404), 1, - anon_sym_COLON, - ACTIONS(4720), 1, - sym_identifier, - STATE(2343), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -270129,18 +254486,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(28), 37, + ACTIONS(4493), 21, anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -270155,238 +254505,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [12720] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2344), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5631), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [12846] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2345), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5657), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [12972] = 14, + [10092] = 17, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4583), 1, + ACTIONS(4507), 1, + anon_sym_EQ_GT, + ACTIONS(4579), 1, + anon_sym_EQ, + ACTIONS(4582), 1, + anon_sym_RPAREN, + ACTIONS(4588), 1, anon_sym_LBRACK, - ACTIONS(4589), 1, + ACTIONS(4591), 1, anon_sym_DOT, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_LT, - ACTIONS(4667), 1, - anon_sym_EQ, - ACTIONS(4669), 1, - anon_sym_EQ_GT, - STATE(2346), 1, + ACTIONS(4603), 1, + anon_sym_extends, + ACTIONS(4672), 1, + anon_sym_QMARK, + STATE(2167), 1, sym_comment, - STATE(4593), 1, + STATE(4433), 1, sym_type_arguments, - ACTIONS(4595), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4586), 3, - anon_sym_GT, + ACTIONS(4594), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4497), 15, - sym__automatic_semicolon, + ACTIONS(4669), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4497), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -270397,7 +254553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -270413,10 +254569,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(4493), 17, + ACTIONS(4493), 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, @@ -270431,27 +254588,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13062] = 11, + [10189] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(2257), 1, - anon_sym_extends, - ACTIONS(2983), 1, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, anon_sym_EQ_GT, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2347), 1, + ACTIONS(1585), 1, + anon_sym_EQ, + ACTIONS(4333), 1, + sym_identifier, + STATE(2168), 1, sym_comment, - ACTIONS(4690), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4693), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2985), 15, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -270467,159 +254629,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(126), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(28), 35, + anon_sym_STAR, anon_sym_as, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(28), 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_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [13146] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2348), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5689), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [13272] = 9, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [10280] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(25), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4688), 1, - anon_sym_QMARK, - ACTIONS(4696), 1, - anon_sym_EQ, - STATE(2349), 1, + ACTIONS(4674), 1, + anon_sym_LBRACK, + ACTIONS(4677), 1, + anon_sym_EQ_GT, + STATE(2169), 1, sym_comment, - ACTIONS(4699), 5, + ACTIONS(4679), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2257), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4497), 15, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(126), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -270631,7 +254703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -270647,7 +254719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(28), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270657,9 +254729,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, @@ -270669,36 +254739,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13352] = 14, + [10365] = 17, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4589), 1, + ACTIONS(4588), 1, + anon_sym_LBRACK, + ACTIONS(4591), 1, anon_sym_DOT, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(4603), 1, anon_sym_extends, - ACTIONS(4710), 1, + ACTIONS(4672), 1, + anon_sym_QMARK, + ACTIONS(4682), 1, anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(4687), 1, + anon_sym_RPAREN, + ACTIONS(4690), 1, anon_sym_EQ_GT, - STATE(2350), 1, + STATE(2170), 1, sym_comment, - STATE(4593), 1, + STATE(4433), 1, sym_type_arguments, - ACTIONS(4583), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4586), 3, - anon_sym_GT, + ACTIONS(4594), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4497), 15, + ACTIONS(4685), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4497), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -270710,8 +254784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -270727,10 +254800,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(4493), 17, + ACTIONS(4493), 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, @@ -270745,23 +254819,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13442] = 11, + [10462] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1428), 1, + ACTIONS(1337), 1, anon_sym_EQ, ACTIONS(2257), 1, anon_sym_extends, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4722), 1, + ACTIONS(4677), 1, anon_sym_EQ_GT, - STATE(2351), 1, + STATE(2171), 1, sym_comment, - ACTIONS(4690), 2, + ACTIONS(4674), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4693), 3, + ACTIONS(4679), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -270781,13 +254855,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(126), 17, - sym__automatic_semicolon, + ACTIONS(28), 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(126), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -270799,16 +254893,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 18, + [10547] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2172), 1, + sym_comment, + ACTIONS(4535), 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, @@ -270818,118 +254923,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13526] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(4537), 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, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_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, + [10620] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4569), 1, + anon_sym_EQ, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, + ACTIONS(4603), 1, + anon_sym_extends, + STATE(2173), 1, + sym_comment, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4588), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4594), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, + 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(4493), 17, anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2352), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5558), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [13652] = 10, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10711] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, anon_sym_EQ_GT, - ACTIONS(1369), 1, + ACTIONS(1587), 1, anon_sym_EQ, - ACTIONS(1408), 1, - anon_sym_COLON, - ACTIONS(4724), 1, + ACTIONS(4333), 1, sym_identifier, - STATE(2353), 1, + STATE(2174), 1, sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -270946,14 +255079,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(28), 37, + ACTIONS(28), 35, anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -270984,400 +255115,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13734] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [10802] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2354), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2175), 1, sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + ACTIONS(4539), 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5672), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [13860] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(4541), 37, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2355), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5586), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [13986] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + 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, + [10875] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2356), 1, + ACTIONS(4505), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_QMARK_DOT, + ACTIONS(4513), 1, + anon_sym_LT, + ACTIONS(4692), 1, + anon_sym_EQ, + ACTIONS(4694), 1, + anon_sym_EQ_GT, + STATE(2176), 1, sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, + STATE(4358), 1, + sym_arguments, + STATE(4465), 1, + sym_type_arguments, + ACTIONS(4499), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 13, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5677), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [14112] = 32, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [10970] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(56), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(58), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2357), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5684), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [14238] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, anon_sym_EQ_GT, - ACTIONS(1369), 1, + ACTIONS(1579), 1, anon_sym_EQ, - ACTIONS(1394), 1, - anon_sym_COLON, - ACTIONS(4726), 1, + ACTIONS(4333), 1, sym_identifier, - STATE(2358), 1, + STATE(2177), 1, sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -271394,14 +255303,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(28), 37, + ACTIONS(28), 35, anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -271432,25 +255339,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14320] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [11061] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, - anon_sym_EQ_GT, - ACTIONS(1369), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4672), 1, + anon_sym_QMARK, + ACTIONS(4682), 1, anon_sym_EQ, - ACTIONS(1406), 1, - anon_sym_COLON, - ACTIONS(4728), 1, - sym_identifier, - STATE(2359), 1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2178), 1, sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, + ACTIONS(4685), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4497), 15, sym__ternary_qmark, - ACTIONS(72), 15, + 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(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -271466,18 +255390,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(28), 37, + ACTIONS(4493), 21, anon_sym_STAR, - anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -271492,36 +255409,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11144] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(4505), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_QMARK_DOT, + ACTIONS(4513), 1, + anon_sym_LT, + ACTIONS(4696), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_EQ_GT, + STATE(2179), 1, + sym_comment, + STATE(4358), 1, + sym_arguments, + STATE(4465), 1, + sym_type_arguments, + ACTIONS(4499), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14402] = 10, + anon_sym_implements, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, + [11239] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, anon_sym_EQ_GT, - ACTIONS(1369), 1, + ACTIONS(1319), 1, anon_sym_EQ, - ACTIONS(1392), 1, - anon_sym_COLON, - ACTIONS(4461), 1, + ACTIONS(1431), 1, + anon_sym_in, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(4375), 1, + anon_sym_of, + ACTIONS(4700), 1, sym_identifier, - STATE(2360), 1, + ACTIONS(4702), 1, + anon_sym_LBRACK, + STATE(2180), 1, sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, + STATE(7547), 1, + sym__destructuring_pattern, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -271538,15 +255535,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(28), 37, + ACTIONS(28), 33, anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -271576,24 +255569,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14484] = 9, + [11332] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4565), 1, + ACTIONS(128), 1, anon_sym_EQ, - ACTIONS(4708), 1, + ACTIONS(131), 1, anon_sym_QMARK, - STATE(2361), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2181), 1, sym_comment, - ACTIONS(4706), 5, + ACTIONS(4705), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4497), 15, + ACTIONS(126), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -271609,7 +255604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -271625,7 +255620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271647,24 +255642,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14564] = 11, + [11415] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(2983), 1, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, anon_sym_EQ_GT, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(4732), 1, - anon_sym_DOT, - STATE(2362), 1, + ACTIONS(1581), 1, + anon_sym_EQ, + ACTIONS(4333), 1, + sym_identifier, + STATE(2182), 1, sym_comment, - STATE(4262), 1, - sym_ui_object_initializer, - ACTIONS(2985), 15, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -271680,29 +255683,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(126), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(28), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -271717,27 +255707,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [14648] = 10, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11506] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, anon_sym_EQ_GT, - ACTIONS(1369), 1, + ACTIONS(1591), 1, anon_sym_EQ, - ACTIONS(1410), 1, - anon_sym_COLON, - ACTIONS(4735), 1, + ACTIONS(4333), 1, sym_identifier, - STATE(2363), 1, + STATE(2183), 1, sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -271754,14 +255760,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(28), 37, + ACTIONS(28), 35, anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -271792,18 +255796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14730] = 9, + [11597] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4599), 1, + ACTIONS(4663), 1, anon_sym_EQ, - ACTIONS(4688), 1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(4711), 1, anon_sym_QMARK, - STATE(2364), 1, + STATE(2184), 1, sym_comment, - ACTIONS(4685), 5, + ACTIONS(4709), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -271825,7 +255831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -271863,51 +255869,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14810] = 16, + [11680] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4737), 1, - anon_sym_EQ, - ACTIONS(4739), 1, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, anon_sym_EQ_GT, - STATE(2365), 1, + ACTIONS(1589), 1, + anon_sym_EQ, + ACTIONS(4333), 1, + sym_identifier, + STATE(2185), 1, sym_comment, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, - sym_type_arguments, - ACTIONS(4531), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4535), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4497), 12, - sym__ternary_qmark, - anon_sym_as, - 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(4504), 15, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -271923,111 +255910,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(4493), 17, + ACTIONS(28), 35, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, 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, - [14904] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(25), 1, - anon_sym_EQ, - ACTIONS(131), 1, - anon_sym_QMARK, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4678), 1, - anon_sym_EQ_GT, - ACTIONS(4690), 1, - anon_sym_LBRACK, - STATE(2366), 1, - sym_comment, - ACTIONS(2257), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4675), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(126), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 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, - [14992] = 8, + [11771] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1333), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4678), 1, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4603), 1, + anon_sym_extends, + ACTIONS(4615), 1, + anon_sym_EQ, + ACTIONS(4617), 1, anon_sym_EQ_GT, - STATE(2367), 1, + STATE(2186), 1, sym_comment, - ACTIONS(2985), 15, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4588), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4594), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -272043,17 +255988,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(126), 20, + ACTIONS(4497), 16, + 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_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_of, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -272064,46 +256005,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(4493), 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, - [15070] = 11, + [11862] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4732), 1, + ACTIONS(4495), 1, + anon_sym_EQ, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(4505), 1, anon_sym_DOT, - ACTIONS(4741), 1, - anon_sym_LBRACE, - STATE(2368), 1, + ACTIONS(4507), 1, + anon_sym_EQ_GT, + ACTIONS(4509), 1, + anon_sym_QMARK_DOT, + ACTIONS(4513), 1, + anon_sym_LT, + STATE(2187), 1, sym_comment, - STATE(7553), 1, - sym_ui_object_initializer, - ACTIONS(2985), 15, + STATE(4358), 1, + sym_arguments, + STATE(4465), 1, + sym_type_arguments, + ACTIONS(4503), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4499), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4497), 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(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -272119,25 +256083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(4493), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272147,36 +256093,40 @@ 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, - [15154] = 10, + [11957] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1239), 1, + ACTIONS(56), 1, + anon_sym_DQUOTE, + ACTIONS(58), 1, + anon_sym_SQUOTE, + ACTIONS(126), 1, + sym__ternary_qmark, + ACTIONS(133), 1, anon_sym_EQ_GT, - ACTIONS(1369), 1, + ACTIONS(1507), 1, anon_sym_EQ, - ACTIONS(1412), 1, - anon_sym_COLON, - ACTIONS(4743), 1, + ACTIONS(4333), 1, sym_identifier, - STATE(2369), 1, + STATE(2188), 1, sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, + STATE(2811), 1, + sym_string, + STATE(2812), 1, + sym_nested_identifier, + STATE(2918), 1, + sym__module, ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -272193,14 +256143,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(28), 37, + ACTIONS(28), 35, anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -272231,34 +256179,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15236] = 13, + [12048] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(128), 1, + ACTIONS(25), 1, anon_sym_EQ, ACTIONS(131), 1, anon_sym_QMARK, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4673), 1, + ACTIONS(4677), 1, anon_sym_EQ_GT, - ACTIONS(4690), 1, - anon_sym_LBRACK, - STATE(2370), 1, + STATE(2189), 1, sym_comment, - ACTIONS(2257), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4714), 2, + ACTIONS(4713), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(126), 14, + anon_sym_RBRACK, + ACTIONS(126), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -272286,7 +256230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 19, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272296,7 +256240,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, @@ -272306,43 +256252,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15324] = 8, + [12131] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(1321), 1, + anon_sym_QMARK, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - ACTIONS(4539), 1, + ACTIONS(4707), 1, anon_sym_EQ_GT, - STATE(2371), 1, + STATE(2190), 1, sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 20, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4716), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + ACTIONS(126), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -272354,7 +256287,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272376,133 +256325,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15402] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(106), 1, - anon_sym_AT, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(3780), 1, - anon_sym_LPAREN, - ACTIONS(3804), 1, - anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, - ACTIONS(4435), 1, - anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4443), 1, - anon_sym_async, - ACTIONS(4445), 1, - anon_sym_new, - ACTIONS(4447), 1, - anon_sym_static, - ACTIONS(4449), 1, - anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_override, - STATE(2372), 1, - sym_comment, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(3897), 1, - sym_override_modifier, - STATE(4755), 1, - sym__property_name, - STATE(4942), 1, - sym_formal_parameters, - STATE(6248), 1, - sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4451), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4453), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5962), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4431), 19, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [15528] = 15, + [12214] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4583), 1, - anon_sym_LBRACK, - ACTIONS(4589), 1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(4505), 1, anon_sym_DOT, - ACTIONS(4592), 1, + ACTIONS(4509), 1, + anon_sym_QMARK_DOT, + ACTIONS(4513), 1, anon_sym_LT, - ACTIONS(4704), 1, + ACTIONS(4718), 1, + anon_sym_EQ, + ACTIONS(4720), 1, anon_sym_EQ_GT, - ACTIONS(4706), 1, - anon_sym_COLON, - STATE(2373), 1, + STATE(2191), 1, sym_comment, - STATE(4593), 1, + STATE(4358), 1, + sym_arguments, + STATE(4465), 1, sym_type_arguments, - ACTIONS(4586), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4595), 3, + ACTIONS(4499), 3, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4497), 13, + ACTIONS(4503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -272512,7 +256369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -272528,11 +256385,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(4493), 18, + ACTIONS(4493), 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, @@ -272547,24 +256403,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15620] = 11, + [12308] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1443), 1, + anon_sym_EQ, + ACTIONS(2257), 1, + anon_sym_extends, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4502), 1, + ACTIONS(4722), 1, anon_sym_EQ_GT, - ACTIONS(4657), 1, - anon_sym_EQ, - ACTIONS(4741), 1, - anon_sym_LBRACE, - ACTIONS(4745), 1, - anon_sym_DOT, - STATE(2374), 1, + STATE(2192), 1, sym_comment, - STATE(7597), 1, - sym_ui_object_initializer, - ACTIONS(4504), 15, + ACTIONS(4674), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4679), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -272580,80 +256439,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(4497), 17, + ACTIONS(126), 17, 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_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4493), 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, - [15704] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, anon_sym_DOT, - ACTIONS(4541), 1, anon_sym_QMARK_DOT, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - STATE(2375), 1, - sym_comment, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, - sym_type_arguments, - ACTIONS(4535), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4531), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4497), 11, - sym__ternary_qmark, - anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -272663,27 +256457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 18, + ACTIONS(28), 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, @@ -272695,10 +256472,11 @@ 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, - [15798] = 32, + [12392] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -272707,72 +256485,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(3780), 1, + ACTIONS(3774), 1, anon_sym_LPAREN, - ACTIONS(3804), 1, + ACTIONS(3798), 1, anon_sym_abstract, - ACTIONS(4433), 1, - anon_sym_export, ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, anon_sym_STAR, - ACTIONS(4441), 1, - anon_sym_LBRACK, ACTIONS(4443), 1, - anon_sym_async, + anon_sym_LBRACK, ACTIONS(4445), 1, - anon_sym_new, + anon_sym_async, ACTIONS(4447), 1, - anon_sym_static, + anon_sym_new, ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, anon_sym_readonly, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - STATE(2376), 1, + STATE(2193), 1, sym_comment, - STATE(3832), 1, + STATE(3664), 1, sym_accessibility_modifier, - STATE(3897), 1, + STATE(3757), 1, sym_override_modifier, - STATE(4755), 1, + STATE(4586), 1, sym__property_name, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(6248), 1, + STATE(5525), 1, sym__call_signature, - STATE(6323), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(8017), 1, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, sym_type_parameters, - ACTIONS(3790), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(4451), 2, + ACTIONS(4453), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4453), 3, + ACTIONS(4455), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5540), 6, + STATE(5363), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4431), 19, + ACTIONS(4433), 19, anon_sym_type, anon_sym_namespace, anon_sym_from, @@ -272792,40 +256570,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [15924] = 16, + [12518] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - ACTIONS(4539), 1, - anon_sym_EQ_GT, - ACTIONS(4583), 1, - anon_sym_LBRACK, - ACTIONS(4589), 1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(4505), 1, anon_sym_DOT, - ACTIONS(4592), 1, + ACTIONS(4509), 1, + anon_sym_QMARK_DOT, + ACTIONS(4513), 1, anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_extends, - ACTIONS(4706), 1, - anon_sym_COLON, - STATE(2377), 1, + ACTIONS(4724), 1, + anon_sym_EQ, + ACTIONS(4726), 1, + anon_sym_EQ_GT, + STATE(2194), 1, sym_comment, - STATE(4593), 1, + STATE(4358), 1, + sym_arguments, + STATE(4465), 1, sym_type_arguments, - ACTIONS(4586), 2, + ACTIONS(4499), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4503), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4748), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4497), 13, + ACTIONS(4497), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -272835,7 +256614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -272851,11 +256630,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(4493), 18, + ACTIONS(4493), 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, @@ -272870,111 +256648,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16018] = 8, + [12612] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4539), 1, - anon_sym_EQ_GT, - ACTIONS(4565), 1, + ACTIONS(4672), 1, + anon_sym_QMARK, + ACTIONS(4682), 1, anon_sym_EQ, - STATE(2378), 1, + STATE(2195), 1, sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 20, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4685), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4493), 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, - [16096] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4533), 1, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4537), 1, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(4541), 1, anon_sym_QMARK_DOT, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4752), 1, - anon_sym_EQ, - ACTIONS(4754), 1, - anon_sym_EQ_GT, - STATE(2379), 1, - sym_comment, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, - sym_type_arguments, - ACTIONS(4531), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4535), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4497), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -272984,7 +256681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273000,42 +256697,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(4493), 17, + ACTIONS(4493), 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, - [16190] = 11, + [12692] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4502), 1, + ACTIONS(4507), 1, anon_sym_EQ_GT, - ACTIONS(4657), 1, + ACTIONS(4663), 1, anon_sym_EQ, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(4745), 1, - anon_sym_DOT, - STATE(2380), 1, + STATE(2196), 1, sym_comment, - STATE(4266), 1, - sym_ui_object_initializer, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273051,14 +256746,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(4497), 17, - sym__automatic_semicolon, + ACTIONS(4497), 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, anon_sym_EQ_EQ_EQ, @@ -273091,27 +256789,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16274] = 11, + [12770] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(2987), 1, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2197), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5303), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [12896] = 32, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(3355), 1, - anon_sym_EQ_GT, - ACTIONS(4690), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, anon_sym_LBRACK, - STATE(2381), 1, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2198), 1, sym_comment, - ACTIONS(2257), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4693), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2985), 15, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5427), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [13022] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1233), 1, + anon_sym_EQ_GT, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1381), 1, + anon_sym_COLON, + ACTIONS(4728), 1, + sym_identifier, + STATE(2199), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273126,56 +257010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR_EQ, anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(28), 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, - [16357] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2382), 1, - sym_comment, - ACTIONS(4525), 22, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 37, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, + anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -273190,36 +257037,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4527), 35, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13104] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4603), 1, + anon_sym_extends, + ACTIONS(4696), 1, + anon_sym_EQ, + ACTIONS(4698), 1, + anon_sym_EQ_GT, + STATE(2200), 1, + sym_comment, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4588), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4594), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 15, 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, @@ -273229,20 +257090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [16428] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3197), 1, - anon_sym_COLON, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4657), 1, - anon_sym_EQ, - STATE(2383), 1, - sym_comment, - ACTIONS(4504), 15, + anon_sym_implements, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273258,78 +257107,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(4497), 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(4493), 21, + ACTIONS(4493), 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, - [16507] = 14, + [13194] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4583), 1, + ACTIONS(4588), 1, anon_sym_LBRACK, - ACTIONS(4589), 1, + ACTIONS(4591), 1, anon_sym_DOT, - ACTIONS(4592), 1, + ACTIONS(4597), 1, anon_sym_LT, - ACTIONS(4752), 1, + ACTIONS(4663), 1, anon_sym_EQ, - ACTIONS(4754), 1, + ACTIONS(4690), 1, anon_sym_EQ_GT, - STATE(2384), 1, + ACTIONS(4709), 1, + anon_sym_COLON, + STATE(2201), 1, sym_comment, - STATE(4593), 1, + STATE(4433), 1, sym_type_arguments, - ACTIONS(4595), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4586), 3, - anon_sym_GT, + ACTIONS(4594), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4497), 14, + ACTIONS(4603), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4497), 13, 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, @@ -273340,7 +257167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273356,10 +257183,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(4493), 17, + ACTIONS(4493), 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, @@ -273374,20 +257202,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16596] = 9, + [13286] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1233), 1, + anon_sym_EQ_GT, ACTIONS(1369), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_EQ_GT, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3197), 1, + ACTIONS(1385), 1, anon_sym_COLON, - STATE(2385), 1, + ACTIONS(4730), 1, + sym_identifier, + STATE(2202), 1, sym_comment, - ACTIONS(2985), 15, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273403,30 +257236,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(126), 18, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(28), 37, + anon_sym_STAR, anon_sym_as, anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(28), 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, @@ -273441,21 +257262,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [16675] = 8, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13368] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4565), 1, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2203), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5503), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [13494] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, anon_sym_EQ, - ACTIONS(4661), 1, + ACTIONS(2983), 1, anon_sym_EQ_GT, - STATE(2386), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(4734), 1, + anon_sym_DOT, + STATE(2204), 1, sym_comment, - ACTIONS(4504), 15, + STATE(4160), 1, + sym_ui_object_initializer, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273471,16 +257401,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(4497), 19, + ACTIONS(126), 17, 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, @@ -273491,7 +257419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273513,20 +257441,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16752] = 9, + [13578] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3071), 1, - anon_sym_COLON, - ACTIONS(4502), 1, + ACTIONS(1233), 1, anon_sym_EQ_GT, - ACTIONS(4657), 1, + ACTIONS(1369), 1, anon_sym_EQ, - STATE(2387), 1, + ACTIONS(1408), 1, + anon_sym_COLON, + ACTIONS(4737), 1, + sym_identifier, + STATE(2205), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273542,30 +257475,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(4497), 18, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(28), 37, + anon_sym_STAR, anon_sym_as, anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4493), 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, @@ -273580,46 +257501,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [16831] = 12, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13660] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(25), 1, + ACTIONS(1337), 1, anon_sym_EQ, - ACTIONS(2209), 1, - anon_sym_QMARK, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4678), 1, + ACTIONS(4677), 1, anon_sym_EQ_GT, - ACTIONS(4690), 1, - anon_sym_LBRACK, - STATE(2388), 1, + STATE(2206), 1, sym_comment, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2257), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(126), 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(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -273636,7 +257540,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(28), 19, + ACTIONS(126), 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(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273646,7 +257571,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, @@ -273656,48 +257583,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16916] = 14, + [13738] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4583), 1, - anon_sym_LBRACK, - ACTIONS(4589), 1, - anon_sym_DOT, - ACTIONS(4592), 1, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(4737), 1, - anon_sym_EQ, - ACTIONS(4739), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2207), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6016), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [13864] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1233), 1, anon_sym_EQ_GT, - STATE(2389), 1, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1412), 1, + anon_sym_COLON, + ACTIONS(4459), 1, + sym_identifier, + STATE(2208), 1, sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4595), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4586), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4497), 14, + ACTIONS(126), 2, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273713,41 +257711,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(4493), 17, + ACTIONS(28), 37, anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, anon_sym_BANG, + anon_sym_LPAREN, 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, - [17005] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2390), 1, - sym_comment, - ACTIONS(4756), 3, - sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4517), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -273762,18 +257737,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4519), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13946] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2209), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5515), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [14072] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4569), 1, + anon_sym_EQ, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(4739), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + STATE(2210), 1, + sym_comment, + STATE(4158), 1, + sym_ui_object_initializer, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273789,6 +257876,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(4497), 17, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -273798,20 +257894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [17078] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2391), 1, - sym_comment, - ACTIONS(4758), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4521), 22, + ACTIONS(4493), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -273832,15 +257916,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4523), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [14156] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2211), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5395), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [14282] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1233), 1, + anon_sym_EQ_GT, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1383), 1, + anon_sym_COLON, + ACTIONS(4742), 1, + sym_identifier, + STATE(2212), 1, + sym_comment, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273856,48 +258044,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 37, + anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_LT_EQ, + anon_sym_EQ_EQ, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [17151] = 16, + [14364] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(4565), 1, + ACTIONS(4495), 1, anon_sym_EQ, - ACTIONS(4704), 1, + ACTIONS(4507), 1, anon_sym_EQ_GT, - STATE(2392), 1, + ACTIONS(4588), 1, + anon_sym_LBRACK, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4603), 1, + anon_sym_extends, + ACTIONS(4709), 1, + anon_sym_COLON, + STATE(2213), 1, sym_comment, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, + STATE(4433), 1, sym_type_arguments, - ACTIONS(4535), 2, + ACTIONS(4594), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4531), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4497), 11, + ACTIONS(4744), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4497), 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, @@ -273907,7 +258125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273942,20 +258160,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17244] = 9, + [14458] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2214), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5493), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [14584] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3235), 1, - anon_sym_COLON, - STATE(2393), 1, + ACTIONS(4495), 1, + anon_sym_EQ, + ACTIONS(4507), 1, + anon_sym_EQ_GT, + STATE(2215), 1, sym_comment, - ACTIONS(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -273971,14 +258281,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(126), 18, - sym__automatic_semicolon, + ACTIONS(4497), 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, @@ -273990,7 +258302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274012,16 +258324,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17323] = 5, + [14662] = 13, ACTIONS(5), 1, sym_html_comment, + ACTIONS(128), 1, + anon_sym_EQ, + ACTIONS(131), 1, + anon_sym_QMARK, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2394), 1, + ACTIONS(4674), 1, + anon_sym_LBRACK, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2216), 1, sym_comment, - ACTIONS(4545), 22, + ACTIONS(2257), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4679), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4705), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -274030,9 +258389,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, @@ -274042,18 +258399,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4547), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [14750] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4505), 1, anon_sym_DOT, + ACTIONS(4509), 1, anon_sym_QMARK_DOT, + ACTIONS(4513), 1, + anon_sym_LT, + ACTIONS(4663), 1, + anon_sym_EQ, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2217), 1, + sym_comment, + STATE(4358), 1, + sym_arguments, + STATE(4465), 1, + sym_type_arguments, + ACTIONS(4503), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4499), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4497), 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(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274069,25 +258458,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, - [17394] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2395), 1, - sym_comment, - ACTIONS(4509), 22, + ACTIONS(4493), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -274096,30 +258468,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, - ACTIONS(4511), 35, - sym__automatic_semicolon, + [14844] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(25), 1, + anon_sym_EQ, + ACTIONS(131), 1, + anon_sym_QMARK, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4674), 1, + anon_sym_LBRACK, + ACTIONS(4677), 1, + anon_sym_EQ_GT, + STATE(2218), 1, + sym_comment, + ACTIONS(2257), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4679), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4713), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(126), 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(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274135,25 +258532,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, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [17465] = 7, + ACTIONS(28), 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, + [14932] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2257), 1, + anon_sym_extends, + ACTIONS(2983), 1, + anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - STATE(2396), 1, + STATE(2219), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(4674), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4679), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274169,16 +258588,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(4497), 20, + ACTIONS(126), 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_LT_EQ, @@ -274190,19 +258606,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(28), 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, @@ -274212,40 +258625,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17540] = 16, + [15016] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, + ACTIONS(4501), 1, anon_sym_LPAREN, - ACTIONS(4537), 1, + ACTIONS(4505), 1, anon_sym_DOT, - ACTIONS(4541), 1, + ACTIONS(4509), 1, anon_sym_QMARK_DOT, - ACTIONS(4543), 1, + ACTIONS(4513), 1, anon_sym_LT, - ACTIONS(4565), 1, + ACTIONS(4748), 1, anon_sym_EQ, - ACTIONS(4704), 1, + ACTIONS(4750), 1, anon_sym_EQ_GT, - STATE(2397), 1, + STATE(2220), 1, sym_comment, - STATE(4572), 1, + STATE(4358), 1, sym_arguments, - STATE(4675), 1, + STATE(4465), 1, sym_type_arguments, - ACTIONS(4531), 3, + ACTIONS(4499), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4535), 3, + ACTIONS(4503), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4497), 11, + ACTIONS(4497), 12, sym__ternary_qmark, anon_sym_as, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -274255,7 +258669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274289,63 +258703,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17633] = 5, + [15110] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2398), 1, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2221), 1, sym_comment, - ACTIONS(4513), 22, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5477), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [15236] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, 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(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2222), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5449), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [15362] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(4515), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, + anon_sym_STAR, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2223), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5406), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [15488] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4663), 1, + anon_sym_EQ, + ACTIONS(4711), 1, + anon_sym_QMARK, + STATE(2224), 1, + sym_comment, + ACTIONS(4709), 5, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4497), 15, + 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, @@ -274355,48 +259018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [17704] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2399), 1, - sym_comment, - ACTIONS(4517), 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(4519), 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(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274412,25 +259034,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, - [17775] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2400), 1, - sym_comment, - ACTIONS(4521), 22, + ACTIONS(4493), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -274451,33 +259056,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4523), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + [15568] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4579), 1, + anon_sym_EQ, + ACTIONS(4672), 1, + anon_sym_QMARK, + STATE(2225), 1, + sym_comment, + ACTIONS(4669), 5, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4497), 15, + 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, @@ -274487,22 +259089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [17846] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(1419), 1, - anon_sym_in, - ACTIONS(2983), 1, - anon_sym_EQ_GT, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4760), 1, - anon_sym_of, - STATE(2401), 1, - sym_comment, - ACTIONS(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274518,28 +259105,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(126), 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(28), 20, + ACTIONS(4493), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -274558,18 +259127,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17927] = 8, + [15648] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1333), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4722), 1, + ACTIONS(1233), 1, anon_sym_EQ_GT, - STATE(2402), 1, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(1410), 1, + anon_sym_COLON, + ACTIONS(4752), 1, + sym_identifier, + STATE(2226), 1, sym_comment, - ACTIONS(2985), 15, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274585,31 +259161,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(126), 19, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(28), 37, + anon_sym_STAR, anon_sym_as, anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, + anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(28), 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, @@ -274624,23 +259187,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [18004] = 9, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [15730] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3235), 1, - anon_sym_COLON, - ACTIONS(4502), 1, + ACTIONS(4677), 1, anon_sym_EQ_GT, - ACTIONS(4657), 1, - anon_sym_EQ, - STATE(2403), 1, + STATE(2227), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274656,14 +259226,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(4497), 18, - sym__automatic_semicolon, + ACTIONS(126), 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, @@ -274675,7 +259247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274697,20 +259269,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18083] = 9, + [15808] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3159), 1, - anon_sym_COLON, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4657), 1, - anon_sym_EQ, - STATE(2404), 1, + ACTIONS(4734), 1, + anon_sym_DOT, + ACTIONS(4754), 1, + anon_sym_LBRACE, + STATE(2228), 1, sym_comment, - ACTIONS(4504), 15, + STATE(7676), 1, + sym_ui_object_initializer, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274726,7 +259302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 18, + ACTIONS(126), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -274734,7 +259310,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -274745,7 +259320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274767,129 +259342,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18162] = 5, + [15892] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2405), 1, - sym_comment, - ACTIONS(4521), 22, + ACTIONS(106), 1, + anon_sym_AT, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(3774), 1, + anon_sym_LPAREN, + ACTIONS(3798), 1, + anon_sym_abstract, + ACTIONS(4435), 1, + anon_sym_export, + ACTIONS(4437), 1, 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(4443), 1, + anon_sym_LBRACK, + ACTIONS(4445), 1, + anon_sym_async, + ACTIONS(4447), 1, + anon_sym_new, + ACTIONS(4449), 1, + anon_sym_static, + ACTIONS(4451), 1, + anon_sym_readonly, + ACTIONS(4457), 1, + anon_sym_override, + STATE(2229), 1, + sym_comment, + STATE(3664), 1, + sym_accessibility_modifier, + STATE(3757), 1, + sym_override_modifier, + STATE(4586), 1, + sym__property_name, + STATE(4747), 1, + sym_formal_parameters, + STATE(5525), 1, + sym__call_signature, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, + aux_sym_export_statement_repeat1, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(3784), 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(4523), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4453), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4455), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5510), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4433), 19, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [18233] = 5, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [16018] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2406), 1, - sym_comment, - ACTIONS(4517), 22, - anon_sym_STAR, + ACTIONS(4588), 1, + anon_sym_LBRACK, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4692), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4694), 1, + anon_sym_EQ_GT, + STATE(2230), 1, + sym_comment, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4603), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4594), 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(4519), 35, + ACTIONS(4497), 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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, @@ -274899,18 +259478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [18304] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4565), 1, - anon_sym_EQ, - STATE(2407), 1, - sym_comment, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274926,62 +259494,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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(4493), 21, + ACTIONS(4493), 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, - [18381] = 9, + [16108] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1233), 1, + anon_sym_EQ_GT, ACTIONS(1369), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_EQ_GT, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3159), 1, + ACTIONS(1371), 1, anon_sym_COLON, - STATE(2408), 1, + ACTIONS(4756), 1, + sym_identifier, + STATE(2231), 1, sym_comment, - ACTIONS(2985), 15, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -274997,30 +259546,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(126), 18, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(28), 37, + anon_sym_STAR, anon_sym_as, anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(28), 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, @@ -275035,21 +259572,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [18460] = 8, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [16190] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1333), 1, - anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2409), 1, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4569), 1, + anon_sym_EQ, + ACTIONS(4739), 1, + anon_sym_DOT, + ACTIONS(4754), 1, + anon_sym_LBRACE, + STATE(2232), 1, sym_comment, - ACTIONS(2985), 15, + STATE(7656), 1, + sym_ui_object_initializer, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -275065,16 +259617,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(126), 19, + ACTIONS(4497), 17, 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, @@ -275085,7 +259635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275107,16 +259657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18537] = 8, + [16274] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1428), 1, + ACTIONS(1369), 1, anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4722), 1, - anon_sym_EQ_GT, - STATE(2410), 1, + ACTIONS(3239), 1, + anon_sym_COLON, + STATE(2233), 1, sym_comment, ACTIONS(2985), 15, anon_sym_PLUS_EQ, @@ -275134,13 +259686,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(126), 19, + ACTIONS(126), 18, 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, @@ -275176,14 +259727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18614] = 5, + [16353] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2411), 1, + STATE(2234), 1, sym_comment, - ACTIONS(4549), 22, + ACTIONS(4539), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -275206,7 +259757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4551), 35, + ACTIONS(4541), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275242,20 +259793,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [18685] = 9, + [16424] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3071), 1, + ACTIONS(3239), 1, anon_sym_COLON, - STATE(2412), 1, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4569), 1, + anon_sym_EQ, + STATE(2235), 1, sym_comment, - ACTIONS(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -275271,7 +259822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 18, + ACTIONS(4497), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -275290,7 +259841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275312,48 +259863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18764] = 14, + [16503] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4583), 1, - anon_sym_LBRACK, - ACTIONS(4589), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_LT, - ACTIONS(4716), 1, + ACTIONS(4663), 1, anon_sym_EQ, - ACTIONS(4718), 1, - anon_sym_EQ_GT, - STATE(2413), 1, + STATE(2236), 1, sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4595), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4586), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4497), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -275369,40 +259888,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 17, + ACTIONS(4497), 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(4493), 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, - [18853] = 10, + [16578] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4502), 1, + ACTIONS(3087), 1, + anon_sym_COLON, + ACTIONS(4520), 1, anon_sym_EQ_GT, - ACTIONS(4657), 1, + ACTIONS(4569), 1, anon_sym_EQ, - ACTIONS(4762), 1, - anon_sym_in, - ACTIONS(4765), 1, - anon_sym_of, - STATE(2414), 1, + STATE(2237), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -275437,9 +259979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 20, + ACTIONS(4493), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -275458,44 +260001,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18934] = 13, + [16657] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1337), 1, + ACTIONS(1369), 1, anon_sym_EQ, - ACTIONS(2257), 1, - anon_sym_extends, + ACTIONS(2983), 1, + anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4671), 1, + ACTIONS(3201), 1, anon_sym_COLON, - ACTIONS(4678), 1, - anon_sym_EQ_GT, - ACTIONS(4690), 1, - anon_sym_LBRACK, - STATE(2415), 1, + STATE(2238), 1, sym_comment, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4767), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(126), 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(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -275512,7 +260030,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(28), 19, + ACTIONS(126), 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(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275522,7 +260059,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, @@ -275532,19 +260071,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19021] = 9, + [16736] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1369), 1, + ACTIONS(25), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3033), 1, - anon_sym_COLON, - STATE(2416), 1, + ACTIONS(4677), 1, + anon_sym_EQ_GT, + ACTIONS(4734), 1, + anon_sym_DOT, + ACTIONS(4758), 1, + anon_sym_LBRACE, + STATE(2239), 1, sym_comment, + STATE(6404), 1, + sym_ui_object_initializer, + ACTIONS(4713), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(126), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -275561,25 +260122,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(126), 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(28), 21, anon_sym_STAR, anon_sym_BANG, @@ -275602,12 +260144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19100] = 5, + [16821] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2417), 1, + STATE(2240), 1, sym_comment, ACTIONS(3464), 22, anon_sym_STAR, @@ -275668,17 +260210,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [19171] = 8, + [16892] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1369), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2418), 1, + ACTIONS(3363), 1, + anon_sym_EQ_GT, + ACTIONS(4674), 1, + anon_sym_LBRACK, + STATE(2241), 1, sym_comment, + ACTIONS(2257), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4679), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -275695,15 +260246,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(126), 19, + ACTIONS(126), 16, 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, @@ -275715,19 +260263,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(28), 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, @@ -275737,27 +260282,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19248] = 11, + [16975] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1477), 1, - anon_sym_EQ, - ACTIONS(2257), 1, - anon_sym_extends, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4771), 1, - anon_sym_EQ_GT, - STATE(2419), 1, + STATE(2242), 1, sym_comment, - ACTIONS(4690), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4693), 3, + ACTIONS(4760), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4535), 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(2985), 15, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(4537), 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, @@ -275773,13 +260340,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(126), 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, @@ -275789,17 +260349,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(28), 18, + [17048] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2243), 1, + sym_comment, + ACTIONS(4539), 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, @@ -275809,20 +260379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19331] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3033), 1, - anon_sym_COLON, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4657), 1, - anon_sym_EQ, - STATE(2420), 1, - sym_comment, - ACTIONS(4504), 15, + ACTIONS(4541), 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, @@ -275838,16 +260406,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(4497), 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, @@ -275857,40 +260415,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 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, - [19410] = 8, + [17119] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4657), 1, - anon_sym_EQ, - STATE(2421), 1, + ACTIONS(3053), 1, + anon_sym_COLON, + STATE(2244), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -275906,12 +260444,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(4497), 19, + ACTIONS(126), 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, @@ -275926,7 +260463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275948,20 +260485,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19487] = 9, + [17198] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1369), 1, - anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3259), 1, - anon_sym_COLON, - STATE(2422), 1, + STATE(2245), 1, sym_comment, - ACTIONS(2985), 15, + ACTIONS(4762), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4539), 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(4541), 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, @@ -275977,16 +260543,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [17271] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(4505), 1, anon_sym_DOT, + ACTIONS(4509), 1, anon_sym_QMARK_DOT, + ACTIONS(4513), 1, + anon_sym_LT, + ACTIONS(4663), 1, + anon_sym_EQ, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2246), 1, + sym_comment, + STATE(4358), 1, + sym_arguments, + STATE(4465), 1, + sym_type_arguments, + ACTIONS(4503), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4499), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4497), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -275996,7 +260594,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276006,59 +260620,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19566] = 14, + [17364] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - ACTIONS(4539), 1, + ACTIONS(3033), 1, + anon_sym_COLON, + ACTIONS(4520), 1, anon_sym_EQ_GT, - ACTIONS(4589), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_extends, - STATE(2423), 1, + ACTIONS(4569), 1, + anon_sym_EQ, + STATE(2247), 1, sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4583), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4586), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4497), 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(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -276074,7 +260658,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(4493), 18, + ACTIONS(4497), 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(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276084,23 +260687,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, - [19655] = 5, + [17443] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2424), 1, + STATE(2248), 1, sym_comment, - ACTIONS(3428), 22, + ACTIONS(4535), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -276123,7 +260729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3430), 35, + ACTIONS(4537), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -276159,20 +260765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [19726] = 9, + [17514] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3259), 1, - anon_sym_COLON, - ACTIONS(4502), 1, + ACTIONS(4520), 1, anon_sym_EQ_GT, - ACTIONS(4657), 1, + ACTIONS(4663), 1, anon_sym_EQ, - STATE(2425), 1, + STATE(2249), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -276188,11 +260792,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(4497), 18, + ACTIONS(4497), 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, @@ -276229,42 +260834,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19805] = 12, + [17591] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4539), 1, + ACTIONS(3125), 1, + anon_sym_COLON, + ACTIONS(4520), 1, anon_sym_EQ_GT, - ACTIONS(4599), 1, + ACTIONS(4569), 1, anon_sym_EQ, - ACTIONS(4745), 1, - anon_sym_DOT, - ACTIONS(4773), 1, - anon_sym_LBRACE, - STATE(2426), 1, + STATE(2250), 1, sym_comment, - STATE(6664), 1, - sym_ui_object_initializer, - ACTIONS(4685), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4497), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -276280,6 +260863,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(4497), 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(4493), 21, anon_sym_STAR, anon_sym_BANG, @@ -276302,16 +260904,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19890] = 7, + [17670] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1443), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - STATE(2427), 1, + ACTIONS(4722), 1, + anon_sym_EQ_GT, + STATE(2251), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -276327,16 +260931,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(4497), 20, + ACTIONS(126), 19, + 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_LT_EQ, @@ -276348,7 +260951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276370,20 +260973,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19965] = 9, + [17747] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3121), 1, + ACTIONS(3087), 1, anon_sym_COLON, - ACTIONS(4502), 1, - anon_sym_EQ_GT, - ACTIONS(4657), 1, - anon_sym_EQ, - STATE(2428), 1, + STATE(2252), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -276399,7 +261002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 18, + ACTIONS(126), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -276418,7 +261021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276440,18 +261043,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20044] = 8, + [17826] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1475), 1, + anon_sym_EQ, + ACTIONS(2257), 1, + anon_sym_extends, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4659), 1, - anon_sym_EQ, - ACTIONS(4661), 1, + ACTIONS(4764), 1, anon_sym_EQ_GT, - STATE(2429), 1, + STATE(2253), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(4674), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4679), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -276467,15 +261079,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(4497), 19, - sym__automatic_semicolon, + ACTIONS(126), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -276487,19 +261095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + anon_sym_implements, + ACTIONS(28), 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, @@ -276509,18 +261115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20121] = 9, + [17909] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1369), 1, + ACTIONS(1319), 1, anon_sym_EQ, - ACTIONS(2983), 1, - anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3121), 1, - anon_sym_COLON, - STATE(2430), 1, + ACTIONS(4722), 1, + anon_sym_EQ_GT, + STATE(2254), 1, sym_comment, ACTIONS(2985), 15, anon_sym_PLUS_EQ, @@ -276538,12 +261142,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(126), 18, + ACTIONS(126), 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, @@ -276579,59 +261184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20200] = 12, + [17986] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(25), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4678), 1, - anon_sym_EQ_GT, - ACTIONS(4732), 1, - anon_sym_DOT, - ACTIONS(4773), 1, - anon_sym_LBRACE, - STATE(2431), 1, + STATE(2255), 1, sym_comment, - STATE(6642), 1, - sym_ui_object_initializer, - ACTIONS(4675), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(126), 14, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 21, + ACTIONS(4559), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -276652,44 +261214,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20285] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1333), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4671), 1, - anon_sym_COLON, - ACTIONS(4673), 1, - anon_sym_EQ_GT, - ACTIONS(4690), 1, - anon_sym_LBRACK, - STATE(2432), 1, - sym_comment, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2257), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(126), 14, + ACTIONS(4561), 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(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -276705,50 +261241,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(28), 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, - [20370] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1337), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4671), 1, - anon_sym_COLON, - ACTIONS(4678), 1, - anon_sym_EQ_GT, - STATE(2433), 1, - sym_comment, - ACTIONS(4775), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(126), 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, @@ -276758,7 +261250,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2985), 15, + [18057] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4617), 1, + anon_sym_EQ_GT, + ACTIONS(4663), 1, + anon_sym_EQ, + STATE(2256), 1, + sym_comment, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -276774,7 +261277,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(28), 21, + ACTIONS(4497), 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(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276796,488 +261319,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20451] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4780), 1, - anon_sym_RBRACE, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - STATE(2434), 1, - sym_comment, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [20575] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4800), 1, - anon_sym_RBRACE, - STATE(2435), 1, - sym_comment, - STATE(2484), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [20699] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4802), 1, - anon_sym_RBRACE, - STATE(2436), 1, - sym_comment, - STATE(2438), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [20823] = 29, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(139), 1, - anon_sym_STAR, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(211), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(4806), 1, - anon_sym_RBRACE, - ACTIONS(4808), 1, - anon_sym_LBRACK, - ACTIONS(4810), 1, - anon_sym_async, - ACTIONS(4812), 1, - anon_sym_static, - ACTIONS(4814), 1, - anon_sym_readonly, - ACTIONS(4820), 1, - anon_sym_override, - STATE(2437), 1, - sym_comment, - STATE(3855), 1, - sym_accessibility_modifier, - STATE(3872), 1, - sym_override_modifier, - STATE(5301), 1, - sym__property_name, - STATE(6845), 1, - aux_sym_object_pattern_repeat1, - STATE(6911), 1, - aux_sym_object_repeat1, - STATE(8206), 1, - sym__destructuring_pattern, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4816), 2, - anon_sym_get, - anon_sym_set, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4818), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6843), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6910), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4804), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [20941] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4822), 1, - anon_sym_RBRACE, - STATE(2438), 1, - sym_comment, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [21065] = 12, + [18134] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4685), 1, - anon_sym_RBRACK, - ACTIONS(4699), 1, - anon_sym_COMMA, - ACTIONS(4754), 1, - anon_sym_EQ_GT, - ACTIONS(4824), 1, + ACTIONS(4588), 1, + anon_sym_LBRACK, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4718), 1, anon_sym_EQ, - ACTIONS(4827), 1, - anon_sym_in, - ACTIONS(4829), 1, - anon_sym_COLON, - STATE(2439), 1, + ACTIONS(4720), 1, + anon_sym_EQ_GT, + STATE(2257), 1, sym_comment, - ACTIONS(4497), 15, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4603), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4594), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -277288,7 +261360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -277304,416 +261376,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 20, + ACTIONS(4493), 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, - [21149] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [18223] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4831), 1, - anon_sym_RBRACE, - STATE(2440), 1, - sym_comment, - STATE(2441), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [21273] = 32, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4833), 1, - anon_sym_RBRACE, - STATE(2441), 1, + ACTIONS(4495), 1, + anon_sym_EQ, + ACTIONS(4507), 1, + anon_sym_EQ_GT, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4603), 1, + anon_sym_extends, + STATE(2258), 1, sym_comment, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [21397] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4835), 1, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4588), 2, anon_sym_RBRACE, - STATE(2442), 1, - sym_comment, - STATE(2443), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [21521] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4594), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 18, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4837), 1, - anon_sym_RBRACE, - STATE(2443), 1, - sym_comment, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, + 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [21645] = 11, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18312] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1442), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4675), 1, - anon_sym_RBRACK, - ACTIONS(4714), 1, - anon_sym_COMMA, - ACTIONS(4839), 1, - anon_sym_COLON, - ACTIONS(4841), 1, + ACTIONS(4615), 1, + anon_sym_EQ, + ACTIONS(4617), 1, anon_sym_EQ_GT, - STATE(2444), 1, + STATE(2259), 1, sym_comment, - ACTIONS(126), 15, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 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, @@ -277726,6 +261516,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + ACTIONS(4493), 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, + [18389] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3163), 1, + anon_sym_COLON, + STATE(2260), 1, + sym_comment, ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -277742,6 +261567,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(126), 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(28), 21, anon_sym_STAR, anon_sym_BANG, @@ -277764,116 +261608,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21727] = 29, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(139), 1, - anon_sym_STAR, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(211), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(4808), 1, - anon_sym_LBRACK, - ACTIONS(4845), 1, - anon_sym_RBRACE, - ACTIONS(4847), 1, - anon_sym_async, - ACTIONS(4849), 1, - anon_sym_static, - ACTIONS(4851), 1, - anon_sym_readonly, - ACTIONS(4857), 1, - anon_sym_override, - STATE(2445), 1, - sym_comment, - STATE(3855), 1, - sym_accessibility_modifier, - STATE(3872), 1, - sym_override_modifier, - STATE(5301), 1, - sym__property_name, - STATE(6845), 1, - aux_sym_object_pattern_repeat1, - STATE(6911), 1, - aux_sym_object_repeat1, - STATE(8206), 1, - sym__destructuring_pattern, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4853), 2, - anon_sym_get, - anon_sym_set, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4855), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6843), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6910), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4843), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [21845] = 9, + [18468] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, + ACTIONS(4588), 1, + anon_sym_LBRACK, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4748), 1, anon_sym_EQ, - ACTIONS(4539), 1, + ACTIONS(4750), 1, anon_sym_EQ_GT, - STATE(2446), 1, + STATE(2261), 1, sym_comment, - ACTIONS(4859), 3, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4603), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4497), 15, + anon_sym_extends, + ACTIONS(4594), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -277884,7 +261649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -277900,7 +261665,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(4493), 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, + [18557] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3033), 1, + anon_sym_COLON, + STATE(2262), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277922,22 +261753,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21923] = 9, + [18636] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, + STATE(2263), 1, + sym_comment, + ACTIONS(4525), 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(4527), 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, + [18707] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1337), 1, anon_sym_EQ, - ACTIONS(4706), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4677), 1, + anon_sym_EQ_GT, + ACTIONS(4716), 1, anon_sym_COLON, - STATE(2447), 1, + STATE(2264), 1, sym_comment, - ACTIONS(4859), 3, + ACTIONS(4766), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(4497), 15, + ACTIONS(126), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -277953,7 +261852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -277969,7 +261868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277991,659 +261890,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22001] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4862), 1, - anon_sym_RBRACE, - STATE(2448), 1, - sym_comment, - STATE(2449), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [22125] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4864), 1, - anon_sym_RBRACE, - STATE(2449), 1, - sym_comment, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [22249] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [18788] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4866), 1, - anon_sym_RBRACE, - STATE(2450), 1, - sym_comment, - STATE(2504), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [22373] = 32, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4868), 1, - anon_sym_RBRACE, - STATE(2451), 1, + ACTIONS(3053), 1, + anon_sym_COLON, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4569), 1, + anon_sym_EQ, + STATE(2265), 1, sym_comment, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [22497] = 31, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4873), 1, - anon_sym_STAR, - ACTIONS(4876), 1, - anon_sym_RBRACE, - ACTIONS(4878), 1, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(4881), 1, anon_sym_LBRACK, - ACTIONS(4884), 1, - anon_sym_DQUOTE, - ACTIONS(4887), 1, - anon_sym_SQUOTE, - ACTIONS(4890), 1, - anon_sym_async, - ACTIONS(4899), 1, - anon_sym_AT, - ACTIONS(4902), 1, - anon_sym_static, - ACTIONS(4905), 1, - anon_sym_readonly, - ACTIONS(4911), 1, - anon_sym_declare, - ACTIONS(4917), 1, - anon_sym_override, - ACTIONS(4920), 1, - anon_sym_abstract, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(4893), 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(4493), 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(4896), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4908), 2, - anon_sym_get, - anon_sym_set, - STATE(2452), 2, - sym_comment, - aux_sym_class_body_repeat1, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4914), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4870), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [22619] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + 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, + [18867] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4588), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4923), 1, - anon_sym_RBRACE, - STATE(2451), 1, - aux_sym_class_body_repeat1, - STATE(2453), 1, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4724), 1, + anon_sym_EQ, + ACTIONS(4726), 1, + anon_sym_EQ_GT, + STATE(2266), 1, sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4603), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4594), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [22743] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18956] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(1369), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2267), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(28), 21, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4925), 1, - anon_sym_RBRACE, - STATE(2454), 1, - sym_comment, - STATE(2475), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, + 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(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [22867] = 7, + 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, + [19033] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4659), 1, + ACTIONS(3201), 1, + anon_sym_COLON, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4569), 1, anon_sym_EQ, - STATE(2455), 1, + STATE(2268), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -278659,13 +262133,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(4497), 19, + ACTIONS(4497), 18, 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, @@ -278701,18 +262174,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22941] = 8, + [19112] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1333), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4771), 1, - anon_sym_EQ_GT, - STATE(2456), 1, + ACTIONS(4495), 1, + anon_sym_EQ, + STATE(2269), 1, sym_comment, - ACTIONS(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -278728,13 +262199,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(126), 18, + ACTIONS(4497), 20, 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_LT_EQ, @@ -278746,8 +262220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(28), 21, + ACTIONS(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278769,307 +262242,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23017] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [19187] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4674), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4927), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2457), 1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + ACTIONS(4716), 1, + anon_sym_COLON, + STATE(2270), 1, sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(4679), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2257), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [23141] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + 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, + [19272] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(4505), 1, + anon_sym_DOT, + ACTIONS(4509), 1, + anon_sym_QMARK_DOT, + ACTIONS(4513), 1, + anon_sym_LT, + ACTIONS(4663), 1, + anon_sym_EQ, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2271), 1, + sym_comment, + STATE(4358), 1, + sym_arguments, + STATE(4465), 1, + sym_type_arguments, + ACTIONS(4499), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, + anon_sym_extends, + ACTIONS(4503), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 17, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4929), 1, - anon_sym_RBRACE, - STATE(2457), 1, - aux_sym_class_body_repeat1, - STATE(2458), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, + anon_sym_BANG, + anon_sym_in, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [23265] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [19365] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2272), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(28), 21, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4931), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2459), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, + 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(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [23389] = 11, + 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, + [19442] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1469), 1, + ACTIONS(1337), 1, anon_sym_EQ, + ACTIONS(2257), 1, + anon_sym_extends, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4690), 1, + ACTIONS(4674), 1, anon_sym_LBRACK, - ACTIONS(4841), 1, + ACTIONS(4677), 1, anon_sym_EQ_GT, - STATE(2460), 1, + ACTIONS(4716), 1, + anon_sym_COLON, + STATE(2273), 1, sym_comment, - ACTIONS(2257), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4693), 3, - anon_sym_GT, + ACTIONS(4679), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(126), 15, + ACTIONS(4769), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(126), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -279097,10 +262515,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(28), 18, + ACTIONS(28), 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, @@ -279116,214 +262535,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23471] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [19529] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4933), 1, - anon_sym_RBRACE, - STATE(2461), 1, - sym_comment, - STATE(2474), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [23595] = 32, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(3163), 1, + anon_sym_COLON, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4569), 1, + anon_sym_EQ, + STATE(2274), 1, + sym_comment, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4493), 21, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4935), 1, - anon_sym_RBRACE, - STATE(2462), 1, - sym_comment, - STATE(2464), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, + 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(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [23719] = 11, + 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, + [19608] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1337), 1, + ACTIONS(1369), 1, anon_sym_EQ, - ACTIONS(2257), 1, - anon_sym_extends, + ACTIONS(1431), 1, + anon_sym_in, + ACTIONS(2983), 1, + anon_sym_EQ_GT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4678), 1, - anon_sym_EQ_GT, - STATE(2463), 1, + ACTIONS(4773), 1, + anon_sym_of, + STATE(2275), 1, sym_comment, - ACTIONS(4690), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4693), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(126), 15, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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, @@ -279335,7 +262655,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2985), 15, + ACTIONS(28), 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, + [19689] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4520), 1, + anon_sym_EQ_GT, + ACTIONS(4569), 1, + anon_sym_EQ, + STATE(2276), 1, + sym_comment, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -279351,7 +262703,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(28), 19, + ACTIONS(4497), 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(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279361,7 +262733,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, @@ -279371,475 +262745,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23801] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4937), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2464), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [23925] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4939), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2465), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [24049] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4941), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2466), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [24173] = 29, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(139), 1, - anon_sym_STAR, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(211), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(4808), 1, - anon_sym_LBRACK, - ACTIONS(4945), 1, - anon_sym_RBRACE, - ACTIONS(4947), 1, - anon_sym_async, - ACTIONS(4949), 1, - anon_sym_static, - ACTIONS(4951), 1, - anon_sym_readonly, - ACTIONS(4957), 1, - anon_sym_override, - STATE(2467), 1, - sym_comment, - STATE(3855), 1, - sym_accessibility_modifier, - STATE(3872), 1, - sym_override_modifier, - STATE(5301), 1, - sym__property_name, - STATE(6845), 1, - aux_sym_object_pattern_repeat1, - STATE(6911), 1, - aux_sym_object_repeat1, - STATE(8206), 1, - sym__destructuring_pattern, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4955), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6843), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6910), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4943), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [24291] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4959), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2468), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [24415] = 8, + [19766] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1477), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4771), 1, + ACTIONS(4520), 1, anon_sym_EQ_GT, - STATE(2469), 1, + ACTIONS(4569), 1, + anon_sym_EQ, + ACTIONS(4775), 1, + anon_sym_in, + ACTIONS(4778), 1, + anon_sym_of, + STATE(2277), 1, sym_comment, - ACTIONS(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -279855,12 +262776,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(126), 18, + ACTIONS(4497), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -279873,11 +262795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(28), 21, + ACTIONS(4493), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -279896,115 +262816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24491] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4961), 1, - anon_sym_RBRACE, - STATE(2459), 1, - aux_sym_class_body_repeat1, - STATE(2470), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [24615] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [19847] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, + ACTIONS(1369), 1, anon_sym_EQ, - ACTIONS(4461), 1, - sym_identifier, - STATE(2471), 1, + ACTIONS(2983), 1, + anon_sym_EQ_GT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3125), 1, + anon_sym_COLON, + STATE(2278), 1, sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -280020,17 +262845,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, + ACTIONS(126), 18, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(28), 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, @@ -280045,417 +262883,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [24693] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4963), 1, - anon_sym_RBRACE, - STATE(2472), 1, - sym_comment, - STATE(2485), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [24817] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [19926] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4965), 1, - anon_sym_RBRACE, - STATE(2434), 1, - aux_sym_class_body_repeat1, - STATE(2473), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [24941] = 32, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4967), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2474), 1, + STATE(2279), 1, sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [25065] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4535), 22, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4969), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2475), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [25189] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4565), 1, anon_sym_EQ, - ACTIONS(4583), 1, - anon_sym_LBRACK, - ACTIONS(4589), 1, - anon_sym_DOT, - ACTIONS(4592), 1, - anon_sym_LT, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - STATE(2476), 1, - sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4595), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4586), 3, + 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(4497), 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(4537), 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, @@ -280465,7 +262952,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + [19997] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2280), 1, + sym_comment, + ACTIONS(4531), 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(4533), 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, @@ -280481,41 +263009,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(4493), 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, + [20068] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2281), 1, + sym_comment, + ACTIONS(4555), 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, - [25277] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4728), 1, - sym_identifier, - STATE(2477), 1, - sym_comment, - ACTIONS(126), 2, + ACTIONS(4557), 35, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(72), 15, + 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, @@ -280531,17 +263075,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(28), 36, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [20139] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2282), 1, + sym_comment, + ACTIONS(3454), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -280556,133 +263111,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3456), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [25355] = 29, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(139), 1, - anon_sym_STAR, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(211), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(4808), 1, - anon_sym_LBRACK, - ACTIONS(4973), 1, - anon_sym_RBRACE, - ACTIONS(4975), 1, - anon_sym_async, - ACTIONS(4977), 1, - anon_sym_static, - ACTIONS(4979), 1, - anon_sym_readonly, - ACTIONS(4985), 1, - anon_sym_override, - STATE(2478), 1, - sym_comment, - STATE(3855), 1, - sym_accessibility_modifier, - STATE(3872), 1, - sym_override_modifier, - STATE(5301), 1, - sym__property_name, - STATE(6845), 1, - aux_sym_object_pattern_repeat1, - STATE(7039), 1, - aux_sym_object_repeat1, - STATE(8206), 1, - sym__destructuring_pattern, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4981), 2, - anon_sym_get, - anon_sym_set, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4983), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6843), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(7033), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4971), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [25473] = 11, + [20210] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1583), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4690), 1, - anon_sym_LBRACK, - ACTIONS(4987), 1, + ACTIONS(4507), 1, anon_sym_EQ_GT, - STATE(2479), 1, + ACTIONS(4579), 1, + anon_sym_EQ, + ACTIONS(4739), 1, + anon_sym_DOT, + ACTIONS(4758), 1, + anon_sym_LBRACE, + STATE(2283), 1, sym_comment, - ACTIONS(2257), 2, + STATE(6454), 1, + sym_ui_object_initializer, + ACTIONS(4669), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4693), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(126), 15, + anon_sym_RBRACK, + ACTIONS(4497), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -280693,7 +263185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -280709,16 +263201,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(28), 18, + ACTIONS(4493), 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, @@ -280728,115 +263223,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25555] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [20295] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4989), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2480), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2284), 1, sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(4551), 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, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + 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(4553), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [25679] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + 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, + [20366] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, + ACTIONS(25), 1, anon_sym_EQ, - ACTIONS(4743), 1, - sym_identifier, - STATE(2481), 1, + ACTIONS(2211), 1, + anon_sym_QMARK, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4674), 1, + anon_sym_LBRACK, + ACTIONS(4677), 1, + anon_sym_EQ_GT, + STATE(2285), 1, sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, + ACTIONS(4679), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2257), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(126), 14, sym__ternary_qmark, - ACTIONS(72), 15, + 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(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -280852,667 +263342,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, + ACTIONS(28), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [25757] = 32, + [20451] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4780), 1, anon_sym_STAR, ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4991), 1, anon_sym_RBRACE, - STATE(2482), 1, - sym_comment, - STATE(2494), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [25881] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4993), 1, - anon_sym_RBRACE, - STATE(2466), 1, - aux_sym_class_body_repeat1, - STATE(2483), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [26005] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4995), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2484), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [26129] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4997), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2485), 1, - sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [26253] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(4999), 1, - anon_sym_RBRACE, - STATE(2486), 1, - sym_comment, - STATE(2487), 1, - aux_sym_class_body_repeat1, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [26377] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, anon_sym_static, - ACTIONS(4790), 1, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(4794), 1, + ACTIONS(4796), 1, anon_sym_declare, - ACTIONS(4798), 1, + ACTIONS(4800), 1, anon_sym_abstract, - ACTIONS(5001), 1, - anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2487), 1, + STATE(2286), 1, sym_comment, - STATE(2777), 1, - aux_sym_export_statement_repeat1, - STATE(3232), 1, - sym_method_definition, - STATE(3472), 1, - sym_class_static_block, - STATE(3572), 1, - sym_accessibility_modifier, - STATE(3877), 1, - sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4709), 1, - sym__property_name, - STATE(6356), 1, - sym_method_signature, - ACTIONS(3790), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4792), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7293), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4431), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [26501] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4441), 1, - anon_sym_LBRACK, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(4778), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, - ACTIONS(4784), 1, - anon_sym_async, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(4788), 1, - anon_sym_static, - ACTIONS(4790), 1, - anon_sym_readonly, - ACTIONS(4794), 1, - anon_sym_declare, - ACTIONS(4798), 1, - anon_sym_abstract, - ACTIONS(5003), 1, - anon_sym_RBRACE, - STATE(2468), 1, + STATE(2341), 1, aux_sym_class_body_repeat1, - STATE(2488), 1, - sym_comment, - STATE(2777), 1, + STATE(2602), 1, aux_sym_export_statement_repeat1, - STATE(3232), 1, + STATE(3016), 1, sym_method_definition, - STATE(3472), 1, + STATE(3319), 1, sym_class_static_block, - STATE(3572), 1, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3877), 1, + STATE(3743), 1, sym_override_modifier, - STATE(3992), 1, + STATE(3811), 1, sym_decorator, - STATE(4709), 1, + STATE(4511), 1, sym__property_name, - STATE(6356), 1, + STATE(6172), 1, sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(4792), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4796), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(7293), 3, + STATE(6951), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4431), 20, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -281520,223 +263441,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_of, 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [26625] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4657), 1, - anon_sym_EQ, - STATE(2489), 1, - sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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(4493), 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, - [26699] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4657), 1, - anon_sym_EQ, - ACTIONS(4762), 1, - anon_sym_in, - ACTIONS(4765), 1, - anon_sym_of, - STATE(2490), 1, - sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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(4493), 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, - [26777] = 29, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [20575] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(139), 1, - anon_sym_STAR, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(211), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(4808), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(5007), 1, - anon_sym_RBRACE, - ACTIONS(5009), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, anon_sym_async, - ACTIONS(5011), 1, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, anon_sym_static, - ACTIONS(5013), 1, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(5019), 1, - anon_sym_override, - STATE(2491), 1, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4802), 1, + anon_sym_RBRACE, + STATE(2287), 1, sym_comment, - STATE(3855), 1, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3872), 1, + STATE(3743), 1, sym_override_modifier, - STATE(5301), 1, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, sym__property_name, - STATE(6845), 1, - aux_sym_object_pattern_repeat1, - STATE(6911), 1, - aux_sym_object_repeat1, - STATE(8206), 1, - sym__destructuring_pattern, - ACTIONS(2930), 2, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5015), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(5017), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6843), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6910), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5005), 21, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -281745,7 +263534,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -281758,147 +263546,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [26895] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, - anon_sym_EQ, - ACTIONS(4735), 1, - sym_identifier, - STATE(2492), 1, - sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [26973] = 32, + [20699] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4780), 1, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, ACTIONS(4784), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4786), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4788), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(4794), 1, + ACTIONS(4796), 1, anon_sym_declare, - ACTIONS(4798), 1, + ACTIONS(4800), 1, anon_sym_abstract, - ACTIONS(5021), 1, + ACTIONS(4804), 1, anon_sym_RBRACE, - STATE(2465), 1, - aux_sym_class_body_repeat1, - STATE(2493), 1, + STATE(2288), 1, sym_comment, - STATE(2777), 1, + STATE(2326), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, aux_sym_export_statement_repeat1, - STATE(3232), 1, + STATE(3016), 1, sym_method_definition, - STATE(3472), 1, + STATE(3319), 1, sym_class_static_block, - STATE(3572), 1, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3877), 1, + STATE(3743), 1, sym_override_modifier, - STATE(3992), 1, + STATE(3811), 1, sym_decorator, - STATE(4709), 1, + STATE(4511), 1, sym__property_name, - STATE(6356), 1, + STATE(6172), 1, sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(4792), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4796), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(7293), 3, + STATE(6951), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4431), 20, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -281919,78 +263638,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [27097] = 32, + [20823] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4780), 1, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, ACTIONS(4784), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4786), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4788), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(4794), 1, + ACTIONS(4796), 1, anon_sym_declare, - ACTIONS(4798), 1, + ACTIONS(4800), 1, anon_sym_abstract, - ACTIONS(5023), 1, + ACTIONS(4806), 1, anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2494), 1, + STATE(2289), 1, sym_comment, - STATE(2777), 1, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, aux_sym_export_statement_repeat1, - STATE(3232), 1, + STATE(3016), 1, sym_method_definition, - STATE(3472), 1, + STATE(3319), 1, sym_class_static_block, - STATE(3572), 1, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3877), 1, + STATE(3743), 1, sym_override_modifier, - STATE(3992), 1, + STATE(3811), 1, sym_decorator, - STATE(4709), 1, + STATE(4511), 1, sym__property_name, - STATE(6356), 1, + STATE(6172), 1, sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(4792), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4796), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(7293), 3, + STATE(6951), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4431), 20, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -282011,43 +263730,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [27221] = 11, + [20947] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1495), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4690), 1, - anon_sym_LBRACK, - ACTIONS(5025), 1, + ACTIONS(1467), 1, anon_sym_EQ_GT, - STATE(2495), 1, + ACTIONS(4756), 1, + sym_identifier, + STATE(2290), 1, sym_comment, - ACTIONS(2257), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4693), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(126), 15, + ACTIONS(126), 2, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - 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(2985), 15, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -282063,97 +263762,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 18, + ACTIONS(28), 36, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [27303] = 32, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [21025] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4780), 1, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, ACTIONS(4784), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4786), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4788), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(4794), 1, + ACTIONS(4796), 1, anon_sym_declare, - ACTIONS(4798), 1, + ACTIONS(4800), 1, anon_sym_abstract, - ACTIONS(5027), 1, + ACTIONS(4808), 1, anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2496), 1, + STATE(2291), 1, sym_comment, - STATE(2777), 1, + STATE(2317), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, aux_sym_export_statement_repeat1, - STATE(3232), 1, + STATE(3016), 1, sym_method_definition, - STATE(3472), 1, + STATE(3319), 1, sym_class_static_block, - STATE(3572), 1, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3877), 1, + STATE(3743), 1, sym_override_modifier, - STATE(3992), 1, + STATE(3811), 1, sym_decorator, - STATE(4709), 1, + STATE(4511), 1, sym__property_name, - STATE(6356), 1, + STATE(6172), 1, sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(4792), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4796), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(7293), 3, + STATE(6951), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4431), 20, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -282174,23 +263891,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [27427] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [21149] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, + ACTIONS(1337), 1, anon_sym_EQ, - ACTIONS(4720), 1, - sym_identifier, - STATE(2497), 1, + ACTIONS(2257), 1, + anon_sym_extends, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4677), 1, + anon_sym_EQ_GT, + STATE(2292), 1, sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, + ACTIONS(4674), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4679), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(126), 15, sym__ternary_qmark, - ACTIONS(72), 15, + 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(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -282206,55 +263942,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 36, + ACTIONS(28), 19, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [27505] = 9, + [21231] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4810), 1, sym_identifier, - STATE(2498), 1, + STATE(2293), 1, sym_comment, ACTIONS(126), 2, sym__automatic_semicolon, @@ -282312,23 +264031,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [27583] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [21309] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, - ACTIONS(1461), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4569), 1, anon_sym_EQ, - ACTIONS(5029), 1, - sym_identifier, - STATE(2499), 1, + ACTIONS(4775), 1, + anon_sym_in, + ACTIONS(4778), 1, + anon_sym_of, + STATE(2294), 1, sym_comment, - ACTIONS(126), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(72), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -282344,17 +264060,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(28), 36, - anon_sym_STAR, + ACTIONS(4497), 18, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_in, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4493), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -282369,30 +264097,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_EQ_EQ, - anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21387] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1485), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4674), 1, + anon_sym_LBRACK, + ACTIONS(4812), 1, + anon_sym_EQ_GT, + STATE(2295), 1, + sym_comment, + ACTIONS(2257), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4679), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(126), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [27661] = 9, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [21469] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1455), 1, - anon_sym_EQ_GT, ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(4726), 1, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4737), 1, sym_identifier, - STATE(2500), 1, + STATE(2296), 1, sym_comment, ACTIONS(126), 2, sym__automatic_semicolon, @@ -282450,74 +264240,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [27739] = 29, + [21547] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(139), 1, - anon_sym_STAR, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(211), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(4808), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(5033), 1, - anon_sym_RBRACE, - ACTIONS(5035), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, anon_sym_async, - ACTIONS(5037), 1, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, anon_sym_static, - ACTIONS(5039), 1, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(5045), 1, - anon_sym_override, - STATE(2501), 1, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4814), 1, + anon_sym_RBRACE, + STATE(2297), 1, sym_comment, - STATE(3855), 1, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3872), 1, + STATE(3743), 1, sym_override_modifier, - STATE(5301), 1, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, sym__property_name, - STATE(6845), 1, - aux_sym_object_pattern_repeat1, - STATE(6911), 1, - aux_sym_object_repeat1, - STATE(8206), 1, - sym__destructuring_pattern, - ACTIONS(2930), 2, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5041), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(5043), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6843), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6910), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5031), 21, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -282526,7 +264320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -282539,74 +264332,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [27857] = 29, + [21671] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(139), 1, - anon_sym_STAR, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(211), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(4808), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(5049), 1, - anon_sym_RBRACE, - ACTIONS(5051), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, anon_sym_async, - ACTIONS(5053), 1, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, anon_sym_static, - ACTIONS(5055), 1, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(5061), 1, - anon_sym_override, - STATE(2502), 1, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4816), 1, + anon_sym_RBRACE, + STATE(2298), 1, sym_comment, - STATE(3855), 1, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3872), 1, + STATE(3743), 1, sym_override_modifier, - STATE(5301), 1, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, sym__property_name, - STATE(6845), 1, - aux_sym_object_pattern_repeat1, - STATE(7039), 1, - aux_sym_object_repeat1, - STATE(8206), 1, - sym__destructuring_pattern, - ACTIONS(2930), 2, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5057), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(5059), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6843), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(7033), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5047), 21, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -282615,7 +264412,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -282628,18 +264424,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [27975] = 8, + [21795] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4710), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(4712), 1, + ACTIONS(1467), 1, anon_sym_EQ_GT, - STATE(2503), 1, + ACTIONS(4728), 1, + sym_identifier, + STATE(2299), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -282655,30 +264456,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(4497), 18, - sym__ternary_qmark, + ACTIONS(28), 36, + anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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(4493), 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, @@ -282693,81 +264481,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [28051] = 32, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [21873] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4780), 1, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, ACTIONS(4784), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4786), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4788), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(4794), 1, + ACTIONS(4796), 1, anon_sym_declare, - ACTIONS(4798), 1, + ACTIONS(4800), 1, anon_sym_abstract, - ACTIONS(5063), 1, + ACTIONS(4818), 1, anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2504), 1, + STATE(2300), 1, sym_comment, - STATE(2777), 1, + STATE(2355), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, aux_sym_export_statement_repeat1, - STATE(3232), 1, + STATE(3016), 1, sym_method_definition, - STATE(3472), 1, + STATE(3319), 1, sym_class_static_block, - STATE(3572), 1, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3877), 1, + STATE(3743), 1, sym_override_modifier, - STATE(3992), 1, + STATE(3811), 1, sym_decorator, - STATE(4709), 1, + STATE(4511), 1, sym__property_name, - STATE(6356), 1, + STATE(6172), 1, sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(4792), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4796), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(7293), 3, + STATE(6951), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4431), 20, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -282788,146 +264585,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [28175] = 8, + [21997] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4712), 1, - anon_sym_EQ_GT, - STATE(2505), 1, - sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(4822), 1, + anon_sym_RBRACE, + ACTIONS(4824), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4493), 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, - [28251] = 32, + ACTIONS(4826), 1, + anon_sym_async, + ACTIONS(4828), 1, + anon_sym_static, + ACTIONS(4830), 1, + anon_sym_readonly, + ACTIONS(4836), 1, + anon_sym_override, + STATE(2301), 1, + sym_comment, + STATE(3674), 1, + sym_accessibility_modifier, + STATE(3732), 1, + sym_override_modifier, + STATE(5267), 1, + sym__property_name, + STATE(6895), 1, + aux_sym_object_pattern_repeat1, + STATE(6930), 1, + aux_sym_object_repeat1, + STATE(8033), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4832), 2, + anon_sym_get, + anon_sym_set, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4834), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6894), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6927), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4820), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [22115] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4780), 1, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, ACTIONS(4784), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4786), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4788), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(4794), 1, + ACTIONS(4796), 1, anon_sym_declare, - ACTIONS(4798), 1, + ACTIONS(4800), 1, anon_sym_abstract, - ACTIONS(5065), 1, + ACTIONS(4838), 1, anon_sym_RBRACE, - STATE(2496), 1, - aux_sym_class_body_repeat1, - STATE(2506), 1, + STATE(2302), 1, sym_comment, - STATE(2777), 1, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, aux_sym_export_statement_repeat1, - STATE(3232), 1, + STATE(3016), 1, sym_method_definition, - STATE(3472), 1, + STATE(3319), 1, sym_class_static_block, - STATE(3572), 1, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3877), 1, + STATE(3743), 1, sym_override_modifier, - STATE(3992), 1, + STATE(3811), 1, sym_decorator, - STATE(4709), 1, + STATE(4511), 1, sym__property_name, - STATE(6356), 1, + STATE(6172), 1, sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(4792), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4796), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(7293), 3, + STATE(6951), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4431), 20, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -282948,210 +264766,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [28375] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4758), 1, - anon_sym_COMMA, - STATE(2507), 1, - sym_comment, - ACTIONS(4521), 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(4523), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - [28447] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4756), 1, - anon_sym_COMMA, - STATE(2508), 1, - sym_comment, - ACTIONS(4517), 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(4519), 33, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - 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, - [28519] = 32, + [22239] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4780), 1, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, ACTIONS(4784), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4786), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4788), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(4794), 1, + ACTIONS(4796), 1, anon_sym_declare, - ACTIONS(4798), 1, + ACTIONS(4800), 1, anon_sym_abstract, - ACTIONS(5067), 1, + ACTIONS(4840), 1, anon_sym_RBRACE, - STATE(2509), 1, + STATE(2303), 1, sym_comment, - STATE(2510), 1, + STATE(2349), 1, aux_sym_class_body_repeat1, - STATE(2777), 1, + STATE(2602), 1, aux_sym_export_statement_repeat1, - STATE(3232), 1, + STATE(3016), 1, sym_method_definition, - STATE(3472), 1, + STATE(3319), 1, sym_class_static_block, - STATE(3572), 1, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3877), 1, + STATE(3743), 1, sym_override_modifier, - STATE(3992), 1, + STATE(3811), 1, sym_decorator, - STATE(4709), 1, + STATE(4511), 1, sym__property_name, - STATE(6356), 1, + STATE(6172), 1, sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(4792), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4796), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(7293), 3, + STATE(6951), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4431), 20, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283172,78 +264858,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [28643] = 32, + [22363] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4780), 1, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, ACTIONS(4784), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4786), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4788), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(4794), 1, + ACTIONS(4796), 1, anon_sym_declare, - ACTIONS(4798), 1, + ACTIONS(4800), 1, anon_sym_abstract, - ACTIONS(5069), 1, + ACTIONS(4842), 1, anon_sym_RBRACE, - STATE(2452), 1, - aux_sym_class_body_repeat1, - STATE(2510), 1, + STATE(2304), 1, sym_comment, - STATE(2777), 1, + STATE(2310), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, aux_sym_export_statement_repeat1, - STATE(3232), 1, + STATE(3016), 1, sym_method_definition, - STATE(3472), 1, + STATE(3319), 1, sym_class_static_block, - STATE(3572), 1, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3877), 1, + STATE(3743), 1, sym_override_modifier, - STATE(3992), 1, + STATE(3811), 1, sym_decorator, - STATE(4709), 1, + STATE(4511), 1, sym__property_name, - STATE(6356), 1, + STATE(6172), 1, sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(4792), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4796), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(7293), 3, + STATE(6951), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4431), 20, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283264,78 +264950,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [28767] = 32, + [22487] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4441), 1, + ACTIONS(4443), 1, anon_sym_LBRACK, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(4778), 1, + ACTIONS(4780), 1, anon_sym_STAR, - ACTIONS(4782), 1, - anon_sym_SEMI, ACTIONS(4784), 1, - anon_sym_async, + anon_sym_SEMI, ACTIONS(4786), 1, - anon_sym_AT, + anon_sym_async, ACTIONS(4788), 1, - anon_sym_static, + anon_sym_AT, ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(4794), 1, + ACTIONS(4796), 1, anon_sym_declare, - ACTIONS(4798), 1, + ACTIONS(4800), 1, anon_sym_abstract, - ACTIONS(5071), 1, + ACTIONS(4844), 1, anon_sym_RBRACE, - STATE(2480), 1, - aux_sym_class_body_repeat1, - STATE(2511), 1, + STATE(2305), 1, sym_comment, - STATE(2777), 1, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, aux_sym_export_statement_repeat1, - STATE(3232), 1, + STATE(3016), 1, sym_method_definition, - STATE(3472), 1, + STATE(3319), 1, sym_class_static_block, - STATE(3572), 1, + STATE(3536), 1, sym_accessibility_modifier, - STATE(3877), 1, + STATE(3743), 1, sym_override_modifier, - STATE(3992), 1, + STATE(3811), 1, sym_decorator, - STATE(4709), 1, + STATE(4511), 1, sym__property_name, - STATE(6356), 1, + STATE(6172), 1, sym_method_signature, - ACTIONS(3790), 2, + ACTIONS(3784), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(4792), 2, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4796), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(7293), 3, + STATE(6951), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4431), 20, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283356,30 +265042,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [28891] = 11, + [22611] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1333), 1, + ACTIONS(1513), 1, anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4673), 1, - anon_sym_EQ_GT, - ACTIONS(4690), 1, + ACTIONS(4674), 1, anon_sym_LBRACK, - STATE(2512), 1, + ACTIONS(4846), 1, + anon_sym_EQ_GT, + STATE(2306), 1, sym_comment, ACTIONS(2257), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4693), 3, + ACTIONS(4679), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(126), 14, + ACTIONS(126), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -283426,103 +265113,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [28972] = 6, + [22693] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1493), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4758), 1, - anon_sym_COMMA, - STATE(2513), 1, + ACTIONS(4674), 1, + anon_sym_LBRACK, + ACTIONS(4848), 1, + anon_sym_EQ_GT, + STATE(2307), 1, sym_comment, - ACTIONS(4521), 22, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2257), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4679), 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(4523), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [29043] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4710), 1, - anon_sym_EQ, - STATE(2514), 1, - sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 18, + ACTIONS(126), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -283534,40 +265149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4493), 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, - [29116] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1333), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3355), 1, - anon_sym_EQ_GT, - STATE(2515), 1, - sym_comment, ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -283584,37 +265165,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(126), 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(28), 21, + ACTIONS(28), 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, @@ -283624,562 +265184,473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [29191] = 10, + [22775] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4752), 1, - anon_sym_EQ, - ACTIONS(4754), 1, - anon_sym_EQ_GT, - ACTIONS(4827), 1, - anon_sym_in, - ACTIONS(4829), 1, - anon_sym_COLON, - STATE(2516), 1, - sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 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(4493), 20, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 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(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4850), 1, + anon_sym_RBRACE, + STATE(2302), 1, + aux_sym_class_body_repeat1, + STATE(2308), 1, + sym_comment, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [29270] = 9, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [22899] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1469), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4839), 1, - anon_sym_COLON, - ACTIONS(4841), 1, - anon_sym_EQ_GT, - STATE(2517), 1, - sym_comment, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 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(28), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4852), 1, + anon_sym_RBRACE, + STATE(2309), 1, + sym_comment, + STATE(2322), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [29347] = 10, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23023] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1442), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4675), 1, - anon_sym_RBRACK, - ACTIONS(4714), 1, - anon_sym_COMMA, - ACTIONS(4841), 1, - anon_sym_EQ_GT, - STATE(2518), 1, - sym_comment, - ACTIONS(126), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_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, - [29426] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4756), 1, - anon_sym_COMMA, - STATE(2519), 1, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4854), 1, + anon_sym_RBRACE, + STATE(2310), 1, sym_comment, - ACTIONS(4517), 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, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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(4519), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [29497] = 10, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23147] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4685), 1, - anon_sym_RBRACK, - ACTIONS(4699), 1, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, anon_sym_COMMA, - ACTIONS(4754), 1, - anon_sym_EQ_GT, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3768), 1, + anon_sym_LBRACE, ACTIONS(4824), 1, - anon_sym_EQ, - STATE(2520), 1, - sym_comment, - ACTIONS(4497), 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(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 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, - [29576] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4669), 1, - anon_sym_EQ_GT, - STATE(2521), 1, + ACTIONS(4858), 1, + anon_sym_RBRACE, + ACTIONS(4860), 1, + anon_sym_async, + ACTIONS(4862), 1, + anon_sym_static, + ACTIONS(4864), 1, + anon_sym_readonly, + ACTIONS(4870), 1, + anon_sym_override, + STATE(2311), 1, sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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(4493), 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, - [29651] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + STATE(3674), 1, + sym_accessibility_modifier, + STATE(3732), 1, + sym_override_modifier, + STATE(5267), 1, + sym__property_name, + STATE(6895), 1, + aux_sym_object_pattern_repeat1, + STATE(6930), 1, + aux_sym_object_repeat1, + STATE(8033), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4866), 2, + anon_sym_get, + anon_sym_set, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4868), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6894), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6927), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4856), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23265] = 32, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4752), 1, - anon_sym_EQ, - ACTIONS(4754), 1, - anon_sym_EQ_GT, - ACTIONS(4827), 1, - anon_sym_in, - ACTIONS(5073), 1, - anon_sym_COLON, - STATE(2522), 1, - sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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(4493), 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, - [29730] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1469), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4841), 1, - anon_sym_EQ_GT, - ACTIONS(5075), 1, - anon_sym_COLON, - STATE(2523), 1, - sym_comment, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 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(28), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4872), 1, + anon_sym_RBRACE, + STATE(2289), 1, + aux_sym_class_body_repeat1, + STATE(2312), 1, + sym_comment, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [29807] = 8, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23389] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1461), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3355), 1, - anon_sym_EQ_GT, - STATE(2524), 1, + ACTIONS(4615), 1, + anon_sym_EQ, + STATE(2313), 1, sym_comment, - ACTIONS(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -284195,11 +265666,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(126), 17, + ACTIONS(4497), 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, @@ -284213,7 +265686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284235,53 +265708,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [29882] = 8, + [23463] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4874), 1, + anon_sym_RBRACE, + STATE(2314), 1, + sym_comment, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23587] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4667), 1, - anon_sym_EQ, - ACTIONS(4669), 1, - anon_sym_EQ_GT, - STATE(2525), 1, + ACTIONS(4760), 1, + anon_sym_COMMA, + STATE(2315), 1, sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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(4493), 21, + ACTIONS(4535), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -284302,18 +265832,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [29957] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1333), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5025), 1, - anon_sym_EQ_GT, - STATE(2526), 1, - sym_comment, - ACTIONS(2985), 15, + ACTIONS(4537), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, @@ -284329,14 +265857,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(126), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -284346,8 +265866,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 21, + [23659] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4762), 1, + anon_sym_COMMA, + STATE(2316), 1, + sym_comment, + ACTIONS(4539), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -284368,18 +265898,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30031] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1333), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4841), 1, - anon_sym_EQ_GT, - STATE(2527), 1, - sym_comment, - ACTIONS(2985), 15, + ACTIONS(4541), 33, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + 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, @@ -284395,14 +265923,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(126), 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, @@ -284412,106 +265932,570 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 21, + [23731] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4876), 1, + anon_sym_RBRACE, + STATE(2317), 1, + sym_comment, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [30105] = 8, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23855] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1495), 1, - anon_sym_EQ, - ACTIONS(2987), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4878), 1, + anon_sym_RBRACE, + STATE(2318), 1, + sym_comment, + STATE(2320), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [23979] = 32, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5025), 1, - anon_sym_EQ_GT, - STATE(2528), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4880), 1, + anon_sym_RBRACE, + STATE(2319), 1, sym_comment, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, + STATE(2343), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24103] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4882), 1, + anon_sym_RBRACE, + STATE(2320), 1, + sym_comment, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [30179] = 8, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24227] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4884), 1, + anon_sym_RBRACE, + STATE(2287), 1, + aux_sym_class_body_repeat1, + STATE(2321), 1, + sym_comment, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24351] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4886), 1, + anon_sym_RBRACE, + STATE(2322), 1, + sym_comment, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24475] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1333), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, + ACTIONS(4696), 1, + anon_sym_EQ, + ACTIONS(4698), 1, anon_sym_EQ_GT, - STATE(2529), 1, + STATE(2323), 1, sym_comment, - ACTIONS(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -284527,11 +266511,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(126), 16, + ACTIONS(4497), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -284544,7 +266529,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(28), 21, + anon_sym_implements, + ACTIONS(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284566,38 +266552,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30253] = 10, + [24551] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1333), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(1419), 1, - anon_sym_in, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4673), 1, + ACTIONS(1467), 1, anon_sym_EQ_GT, - ACTIONS(4760), 1, - anon_sym_of, - STATE(2530), 1, + ACTIONS(4752), 1, + sym_identifier, + STATE(2324), 1, sym_comment, - ACTIONS(126), 15, + ACTIONS(126), 2, + sym__automatic_semicolon, 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(2985), 15, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -284613,10 +266584,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(28), 20, + ACTIONS(28), 36, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -284631,72 +266609,271 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [30331] = 26, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [24629] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(139), 1, anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, ACTIONS(211), 1, anon_sym_DOT_DOT_DOT, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(3774), 1, + ACTIONS(3768), 1, anon_sym_LBRACE, - ACTIONS(4808), 1, + ACTIONS(4824), 1, anon_sym_LBRACK, - ACTIONS(5079), 1, + ACTIONS(4890), 1, + anon_sym_RBRACE, + ACTIONS(4892), 1, anon_sym_async, - ACTIONS(5081), 1, + ACTIONS(4894), 1, anon_sym_static, - ACTIONS(5083), 1, + ACTIONS(4896), 1, anon_sym_readonly, - ACTIONS(5089), 1, + ACTIONS(4902), 1, anon_sym_override, - STATE(2531), 1, + STATE(2325), 1, sym_comment, - STATE(3855), 1, + STATE(3674), 1, sym_accessibility_modifier, - STATE(3872), 1, + STATE(3732), 1, sym_override_modifier, - STATE(5301), 1, + STATE(5267), 1, sym__property_name, - STATE(8206), 1, + STATE(6756), 1, + aux_sym_object_repeat1, + STATE(6895), 1, + aux_sym_object_pattern_repeat1, + STATE(8033), 1, sym__destructuring_pattern, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(4102), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5085), 2, + ACTIONS(4898), 2, + anon_sym_get, + anon_sym_set, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4900), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6753), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(6894), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(4888), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24747] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4904), 1, + anon_sym_RBRACE, + STATE(2326), 1, + sym_comment, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [24871] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4906), 1, + anon_sym_RBRACE, + STATE(2327), 1, + sym_comment, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(5087), 3, + ACTIONS(4798), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(7729), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(7883), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(5077), 21, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284705,7 +266882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -284718,22 +266894,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [30441] = 10, + [24995] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1418), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4704), 1, + ACTIONS(4705), 1, + anon_sym_COMMA, + ACTIONS(4713), 1, + anon_sym_RBRACK, + ACTIONS(4812), 1, anon_sym_EQ_GT, - ACTIONS(4762), 1, - anon_sym_in, - ACTIONS(4765), 1, - anon_sym_of, - STATE(2532), 1, + ACTIONS(4908), 1, + anon_sym_COLON, + STATE(2328), 1, sym_comment, - ACTIONS(4497), 15, + ACTIONS(126), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -284749,55 +266927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 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, - [30519] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4716), 1, - anon_sym_EQ, - ACTIONS(4718), 1, - anon_sym_EQ_GT, - STATE(2533), 1, - sym_comment, - ACTIONS(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -284813,24 +266943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284852,84 +266965,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30593] = 8, + [25077] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4752), 1, - anon_sym_EQ, - ACTIONS(4754), 1, - anon_sym_EQ_GT, - STATE(2534), 1, - sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 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(4493), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4910), 1, + anon_sym_RBRACE, + STATE(2329), 1, + sym_comment, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [30667] = 9, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25201] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4685), 1, + ACTIONS(4669), 1, anon_sym_RBRACK, - ACTIONS(4699), 1, + ACTIONS(4685), 1, anon_sym_COMMA, - ACTIONS(4824), 1, + ACTIONS(4720), 1, + anon_sym_EQ_GT, + ACTIONS(4912), 1, anon_sym_EQ, - STATE(2535), 1, + ACTIONS(4915), 1, + anon_sym_in, + ACTIONS(4917), 1, + anon_sym_COLON, + STATE(2330), 1, sym_comment, ACTIONS(4497), 15, sym__ternary_qmark, @@ -284947,7 +267092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -284963,10 +267108,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(4493), 21, + ACTIONS(4493), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -284985,281 +267129,848 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30743] = 7, + [25285] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4667), 1, - anon_sym_EQ, - STATE(2536), 1, - sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4919), 1, + anon_sym_RBRACE, + STATE(2327), 1, + aux_sym_class_body_repeat1, + STATE(2331), 1, + sym_comment, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [30815] = 8, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25409] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1469), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4841), 1, - anon_sym_EQ_GT, - STATE(2537), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4921), 1, + anon_sym_RBRACE, + STATE(2332), 1, sym_comment, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + STATE(2333), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25533] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 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(28), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4923), 1, + anon_sym_RBRACE, + STATE(2333), 1, + sym_comment, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [30889] = 8, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25657] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1583), 1, - anon_sym_EQ, - ACTIONS(2987), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4925), 1, + anon_sym_RBRACE, + STATE(2334), 1, + sym_comment, + STATE(2338), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25781] = 29, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4987), 1, - anon_sym_EQ_GT, - STATE(2538), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(4824), 1, + anon_sym_LBRACK, + ACTIONS(4929), 1, + anon_sym_RBRACE, + ACTIONS(4931), 1, + anon_sym_async, + ACTIONS(4933), 1, + anon_sym_static, + ACTIONS(4935), 1, + anon_sym_readonly, + ACTIONS(4941), 1, + anon_sym_override, + STATE(2335), 1, sym_comment, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(126), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + STATE(3674), 1, + sym_accessibility_modifier, + STATE(3732), 1, + sym_override_modifier, + STATE(5267), 1, + sym__property_name, + STATE(6895), 1, + aux_sym_object_pattern_repeat1, + STATE(6930), 1, + aux_sym_object_repeat1, + STATE(8033), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4937), 2, + anon_sym_get, + anon_sym_set, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4939), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6894), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6927), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4927), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [25899] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(28), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4943), 1, + anon_sym_RBRACE, + STATE(2286), 1, + aux_sym_class_body_repeat1, + STATE(2336), 1, + sym_comment, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [30963] = 8, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26023] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4945), 1, + anon_sym_RBRACE, + STATE(2337), 1, + sym_comment, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26147] = 32, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4754), 1, - anon_sym_EQ_GT, - STATE(2539), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4947), 1, + anon_sym_RBRACE, + STATE(2338), 1, sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26271] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 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(4493), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(4949), 1, + anon_sym_RBRACE, + STATE(2314), 1, + aux_sym_class_body_repeat1, + STATE(2339), 1, + sym_comment, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [31037] = 8, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26395] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4565), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(4718), 1, + ACTIONS(1467), 1, anon_sym_EQ_GT, - STATE(2540), 1, + ACTIONS(4742), 1, + sym_identifier, + STATE(2340), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(126), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -285275,28 +267986,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(4497), 16, - sym__ternary_qmark, + ACTIONS(28), 36, + anon_sym_STAR, anon_sym_as, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4493), 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, @@ -285311,87 +268011,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [31111] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4737), 1, - anon_sym_EQ, - ACTIONS(4739), 1, - anon_sym_EQ_GT, - STATE(2541), 1, - sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 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, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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(4493), 21, + [26473] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4954), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4957), 1, + anon_sym_RBRACE, + ACTIONS(4959), 1, + anon_sym_SEMI, + ACTIONS(4962), 1, + anon_sym_LBRACK, + ACTIONS(4965), 1, + anon_sym_DQUOTE, + ACTIONS(4968), 1, + anon_sym_SQUOTE, + ACTIONS(4971), 1, + anon_sym_async, + ACTIONS(4980), 1, + anon_sym_AT, + ACTIONS(4983), 1, + anon_sym_static, + ACTIONS(4986), 1, + anon_sym_readonly, + ACTIONS(4992), 1, + anon_sym_declare, + ACTIONS(4998), 1, + anon_sym_override, + ACTIONS(5001), 1, + anon_sym_abstract, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(4974), 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, - [31185] = 8, + ACTIONS(4977), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4989), 2, + anon_sym_get, + anon_sym_set, + STATE(2341), 2, + sym_comment, + aux_sym_class_body_repeat1, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4995), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4951), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [26595] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4739), 1, + ACTIONS(4764), 1, anon_sym_EQ_GT, - STATE(2542), 1, + STATE(2342), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -285407,11 +268141,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(4497), 16, + ACTIONS(126), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -285424,7 +268159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + anon_sym_implements, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285446,79 +268182,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [31259] = 24, + [26671] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5091), 1, - sym_identifier, - ACTIONS(5097), 1, - anon_sym_default, - ACTIONS(5100), 1, - anon_sym_RBRACE, - ACTIONS(5102), 1, - anon_sym_var, - ACTIONS(5105), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, anon_sym_async, - ACTIONS(5108), 1, - anon_sym_function, - ACTIONS(5111), 1, + ACTIONS(4788), 1, anon_sym_AT, - ACTIONS(5114), 1, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(5117), 1, - anon_sym_property, - ACTIONS(5120), 1, - anon_sym_signal, - ACTIONS(5123), 1, - anon_sym_required, - ACTIONS(5126), 1, - anon_sym_component, - ACTIONS(5129), 1, - anon_sym_enum, - STATE(2609), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4400), 1, - sym__qml_enum_declaration, - STATE(4456), 1, - sym_ui_annotation, - STATE(5616), 1, - aux_sym_ui_property_repeat1, - STATE(6304), 1, - sym_ui_nested_identifier, - STATE(6330), 1, - sym_ui_property_modifier, - STATE(2543), 2, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(5004), 1, + anon_sym_RBRACE, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2343), 1, sym_comment, - aux_sym_ui_object_initializer_repeat1, - STATE(4401), 11, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - ACTIONS(5094), 22, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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_new, + sym_identifier, anon_sym_module, anon_sym_any, anon_sym_number, @@ -285526,35 +268269,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, + anon_sym_property, + anon_sym_signal, anon_sym_on, - [31364] = 8, + anon_sym_required, + anon_sym_component, + [26795] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - ACTIONS(5132), 1, + ACTIONS(1461), 1, anon_sym_EQ, - STATE(2544), 1, + ACTIONS(1467), 1, + anon_sym_EQ_GT, + ACTIONS(4730), 1, + sym_identifier, + STATE(2344), 1, sym_comment, - ACTIONS(4497), 15, + ACTIONS(126), 2, + sym__automatic_semicolon, 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(4504), 15, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -285570,76 +268306,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(4493), 21, + ACTIONS(28), 36, 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, - [31437] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - ACTIONS(5134), 1, - anon_sym_EQ, - STATE(2545), 1, - sym_comment, - ACTIONS(4497), 15, - sym__ternary_qmark, anon_sym_as, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 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, @@ -285654,149 +268331,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [31510] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4762), 1, - anon_sym_in, - ACTIONS(4765), 1, - anon_sym_of, - STATE(2546), 1, - sym_comment, - ACTIONS(4497), 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, anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_BANG_EQ_EQ, anon_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(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 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, - [31585] = 25, + [26873] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1046), 1, - anon_sym_var, - ACTIONS(5136), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_default, - ACTIONS(5142), 1, - anon_sym_RBRACE, - ACTIONS(5144), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, anon_sym_async, - ACTIONS(5146), 1, - anon_sym_function, - ACTIONS(5148), 1, + ACTIONS(4788), 1, anon_sym_AT, - ACTIONS(5150), 1, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(5152), 1, - anon_sym_property, - ACTIONS(5154), 1, - anon_sym_signal, - ACTIONS(5156), 1, - anon_sym_required, - ACTIONS(5158), 1, - anon_sym_component, - ACTIONS(5160), 1, - anon_sym_enum, - STATE(2543), 1, - aux_sym_ui_object_initializer_repeat1, - STATE(2547), 1, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(5006), 1, + anon_sym_RBRACE, + STATE(2305), 1, + aux_sym_class_body_repeat1, + STATE(2345), 1, sym_comment, - STATE(2609), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4400), 1, - sym__qml_enum_declaration, - STATE(4456), 1, - sym_ui_annotation, - STATE(5616), 1, - aux_sym_ui_property_repeat1, - STATE(6304), 1, - sym_ui_nested_identifier, - STATE(6330), 1, - sym_ui_property_modifier, - STATE(4401), 11, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - ACTIONS(5138), 22, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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_new, + sym_identifier, anon_sym_module, anon_sym_any, anon_sym_number, @@ -285804,81 +268430,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, + anon_sym_property, + anon_sym_signal, anon_sym_on, - [31692] = 25, + anon_sym_required, + anon_sym_component, + [26997] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1046), 1, - anon_sym_var, - ACTIONS(5136), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_default, - ACTIONS(5144), 1, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(4824), 1, + anon_sym_LBRACK, + ACTIONS(5010), 1, + anon_sym_RBRACE, + ACTIONS(5012), 1, anon_sym_async, - ACTIONS(5146), 1, - anon_sym_function, - ACTIONS(5148), 1, - anon_sym_AT, - ACTIONS(5150), 1, + ACTIONS(5014), 1, + anon_sym_static, + ACTIONS(5016), 1, anon_sym_readonly, - ACTIONS(5152), 1, - anon_sym_property, - ACTIONS(5154), 1, - anon_sym_signal, - ACTIONS(5156), 1, - anon_sym_required, - ACTIONS(5158), 1, - anon_sym_component, - ACTIONS(5160), 1, - anon_sym_enum, - ACTIONS(5162), 1, - anon_sym_RBRACE, - STATE(2543), 1, - aux_sym_ui_object_initializer_repeat1, - STATE(2548), 1, + ACTIONS(5022), 1, + anon_sym_override, + STATE(2346), 1, sym_comment, - STATE(2609), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4400), 1, - sym__qml_enum_declaration, - STATE(4456), 1, - sym_ui_annotation, - STATE(5616), 1, - aux_sym_ui_property_repeat1, - STATE(6304), 1, - sym_ui_nested_identifier, - STATE(6330), 1, - sym_ui_property_modifier, - STATE(4401), 11, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - ACTIONS(5138), 22, + STATE(3674), 1, + sym_accessibility_modifier, + STATE(3732), 1, + sym_override_modifier, + STATE(5267), 1, + sym__property_name, + STATE(6895), 1, + aux_sym_object_pattern_repeat1, + STATE(6930), 1, + aux_sym_object_repeat1, + STATE(8033), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5018), 2, + anon_sym_get, + anon_sym_set, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(5020), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6894), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6927), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5008), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_static, - anon_sym_get, - anon_sym_set, + anon_sym_new, + sym_identifier, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -285886,81 +268519,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, + anon_sym_property, + anon_sym_signal, anon_sym_on, - [31799] = 25, + anon_sym_required, + anon_sym_component, + [27115] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1046), 1, - anon_sym_var, - ACTIONS(5136), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_default, - ACTIONS(5144), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, anon_sym_async, - ACTIONS(5146), 1, - anon_sym_function, - ACTIONS(5148), 1, + ACTIONS(4788), 1, anon_sym_AT, - ACTIONS(5150), 1, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(5152), 1, - anon_sym_property, - ACTIONS(5154), 1, - anon_sym_signal, - ACTIONS(5156), 1, - anon_sym_required, - ACTIONS(5158), 1, - anon_sym_component, - ACTIONS(5160), 1, - anon_sym_enum, - ACTIONS(5164), 1, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(5024), 1, anon_sym_RBRACE, - STATE(2549), 1, + STATE(2337), 1, + aux_sym_class_body_repeat1, + STATE(2347), 1, sym_comment, - STATE(2558), 1, - aux_sym_ui_object_initializer_repeat1, - STATE(2609), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4400), 1, - sym__qml_enum_declaration, - STATE(4456), 1, - sym_ui_annotation, - STATE(5616), 1, - aux_sym_ui_property_repeat1, - STATE(6304), 1, - sym_ui_nested_identifier, - STATE(6330), 1, - sym_ui_property_modifier, - STATE(4401), 11, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - ACTIONS(5138), 22, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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_new, + sym_identifier, anon_sym_module, anon_sym_any, anon_sym_number, @@ -285968,230 +268611,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, + anon_sym_property, + anon_sym_signal, anon_sym_on, - [31906] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1511), 1, - anon_sym_EQ, - ACTIONS(2987), 1, + anon_sym_required, + anon_sym_component, + [27239] = 29, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4673), 1, - anon_sym_EQ_GT, - STATE(2550), 1, - sym_comment, - ACTIONS(126), 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(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 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, - [31979] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1515), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4673), 1, - anon_sym_EQ_GT, - STATE(2551), 1, - sym_comment, - ACTIONS(126), 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(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 21, + ACTIONS(139), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_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, - [32052] = 8, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(4824), 1, + anon_sym_LBRACK, + ACTIONS(5028), 1, + anon_sym_RBRACE, + ACTIONS(5030), 1, + anon_sym_async, + ACTIONS(5032), 1, + anon_sym_static, + ACTIONS(5034), 1, + anon_sym_readonly, + ACTIONS(5040), 1, + anon_sym_override, + STATE(2348), 1, + sym_comment, + STATE(3674), 1, + sym_accessibility_modifier, + STATE(3732), 1, + sym_override_modifier, + STATE(5267), 1, + sym__property_name, + STATE(6895), 1, + aux_sym_object_pattern_repeat1, + STATE(6930), 1, + aux_sym_object_repeat1, + STATE(8033), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5036), 2, + anon_sym_get, + anon_sym_set, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(5038), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6894), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6927), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5026), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [27357] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - ACTIONS(5166), 1, - anon_sym_EQ, - STATE(2552), 1, - sym_comment, - ACTIONS(4497), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(5042), 1, + anon_sym_RBRACE, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2349), 1, + sym_comment, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [32125] = 8, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [27481] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1475), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4704), 1, + ACTIONS(4764), 1, anon_sym_EQ_GT, - STATE(2553), 1, + STATE(2350), 1, sym_comment, - ACTIONS(4497), 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(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -286207,42 +268824,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(4493), 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, - [32198] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - ACTIONS(5168), 1, - anon_sym_EQ, - STATE(2554), 1, - sym_comment, - ACTIONS(4497), 15, + ACTIONS(126), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -286256,23 +268842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + anon_sym_implements, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286294,16 +268865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [32271] = 7, + [27557] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4752), 1, + ACTIONS(4663), 1, anon_sym_EQ, - STATE(2555), 1, + ACTIONS(4698), 1, + anon_sym_EQ_GT, + STATE(2351), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -286319,12 +268892,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(4497), 16, + ACTIONS(4497), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -286336,6 +268910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_implements, ACTIONS(4493), 21, anon_sym_STAR, anon_sym_BANG, @@ -286358,210 +268933,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [32342] = 8, + [27633] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - ACTIONS(5170), 1, - anon_sym_EQ, - STATE(2556), 1, - sym_comment, - ACTIONS(4497), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(5044), 1, + anon_sym_RBRACE, + STATE(2329), 1, + aux_sym_class_body_repeat1, + STATE(2352), 1, + sym_comment, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [32415] = 8, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [27757] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1575), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4673), 1, - anon_sym_EQ_GT, - STATE(2557), 1, - sym_comment, - ACTIONS(126), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2985), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 21, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(5046), 1, + anon_sym_RBRACE, + STATE(2298), 1, + aux_sym_class_body_repeat1, + STATE(2353), 1, + sym_comment, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 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, - [32488] = 25, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [27881] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1046), 1, - anon_sym_var, - ACTIONS(5136), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_default, - ACTIONS(5144), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, anon_sym_async, - ACTIONS(5146), 1, - anon_sym_function, - ACTIONS(5148), 1, + ACTIONS(4788), 1, anon_sym_AT, - ACTIONS(5150), 1, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(5152), 1, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(5048), 1, + anon_sym_RBRACE, + STATE(2297), 1, + aux_sym_class_body_repeat1, + STATE(2354), 1, + sym_comment, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, anon_sym_property, - ACTIONS(5154), 1, anon_sym_signal, - ACTIONS(5156), 1, + anon_sym_on, anon_sym_required, - ACTIONS(5158), 1, anon_sym_component, - ACTIONS(5160), 1, - anon_sym_enum, - ACTIONS(5172), 1, + [28005] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, + anon_sym_async, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, + anon_sym_readonly, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(5050), 1, anon_sym_RBRACE, - STATE(2543), 1, - aux_sym_ui_object_initializer_repeat1, - STATE(2558), 1, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2355), 1, sym_comment, - STATE(2609), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4400), 1, - sym__qml_enum_declaration, - STATE(4456), 1, - sym_ui_annotation, - STATE(5616), 1, - aux_sym_ui_property_repeat1, - STATE(6304), 1, - sym_ui_nested_identifier, - STATE(6330), 1, - sym_ui_property_modifier, - STATE(4401), 11, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - ACTIONS(5138), 22, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [28129] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(4824), 1, + anon_sym_LBRACK, + ACTIONS(5054), 1, + anon_sym_RBRACE, + ACTIONS(5056), 1, + anon_sym_async, + ACTIONS(5058), 1, anon_sym_static, + ACTIONS(5060), 1, + anon_sym_readonly, + ACTIONS(5066), 1, + anon_sym_override, + STATE(2356), 1, + sym_comment, + STATE(3674), 1, + sym_accessibility_modifier, + STATE(3732), 1, + sym_override_modifier, + STATE(5267), 1, + sym__property_name, + STATE(6756), 1, + aux_sym_object_repeat1, + STATE(6895), 1, + aux_sym_object_pattern_repeat1, + STATE(8033), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5062), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(5064), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, + STATE(6753), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(6894), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(5052), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_new, + sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -286569,35 +269385,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, + anon_sym_property, + anon_sym_signal, anon_sym_on, - [32595] = 8, + anon_sym_required, + anon_sym_component, + [28247] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1517), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4673), 1, - anon_sym_EQ_GT, - STATE(2559), 1, + ACTIONS(4569), 1, + anon_sym_EQ, + STATE(2357), 1, sym_comment, - ACTIONS(126), 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(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -286613,7 +269415,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(28), 21, + ACTIONS(4497), 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(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286635,80 +269457,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [32668] = 25, + [28321] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1046), 1, - anon_sym_var, - ACTIONS(5136), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_default, - ACTIONS(5144), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, anon_sym_async, - ACTIONS(5146), 1, - anon_sym_function, - ACTIONS(5148), 1, + ACTIONS(4788), 1, anon_sym_AT, - ACTIONS(5150), 1, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(5152), 1, - anon_sym_property, - ACTIONS(5154), 1, - anon_sym_signal, - ACTIONS(5156), 1, - anon_sym_required, - ACTIONS(5158), 1, - anon_sym_component, - ACTIONS(5160), 1, - anon_sym_enum, - ACTIONS(5174), 1, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(5068), 1, anon_sym_RBRACE, - STATE(2548), 1, - aux_sym_ui_object_initializer_repeat1, - STATE(2560), 1, + STATE(2358), 1, sym_comment, - STATE(2609), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4400), 1, - sym__qml_enum_declaration, - STATE(4456), 1, - sym_ui_annotation, - STATE(5616), 1, - aux_sym_ui_property_repeat1, - STATE(6304), 1, - sym_ui_nested_identifier, - STATE(6330), 1, - sym_ui_property_modifier, - STATE(4401), 11, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - ACTIONS(5138), 22, + STATE(2361), 1, + aux_sym_class_body_repeat1, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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_new, + sym_identifier, anon_sym_module, anon_sym_any, anon_sym_number, @@ -286716,35 +269544,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, + anon_sym_property, + anon_sym_signal, anon_sym_on, - [32775] = 8, + anon_sym_required, + anon_sym_component, + [28445] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1577), 1, + ACTIONS(1461), 1, anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4673), 1, + ACTIONS(1467), 1, anon_sym_EQ_GT, - STATE(2561), 1, + ACTIONS(4459), 1, + sym_identifier, + STATE(2359), 1, sym_comment, - ACTIONS(126), 15, + ACTIONS(126), 2, + sym__automatic_semicolon, 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(2985), 15, + ACTIONS(72), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -286760,11 +269581,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(28), 21, + ACTIONS(28), 36, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, + anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -286779,123 +269606,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_EQ_EQ, + anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [32848] = 25, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1046), 1, - anon_sym_var, - ACTIONS(5136), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_default, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5146), 1, - anon_sym_function, - ACTIONS(5148), 1, - anon_sym_AT, - ACTIONS(5150), 1, - anon_sym_readonly, - ACTIONS(5152), 1, - anon_sym_property, - ACTIONS(5154), 1, - anon_sym_signal, - ACTIONS(5156), 1, - anon_sym_required, - ACTIONS(5158), 1, - anon_sym_component, - ACTIONS(5160), 1, - anon_sym_enum, - ACTIONS(5176), 1, - anon_sym_RBRACE, - STATE(2562), 1, - sym_comment, - STATE(2564), 1, - aux_sym_ui_object_initializer_repeat1, - STATE(2609), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4400), 1, - sym__qml_enum_declaration, - STATE(4456), 1, - sym_ui_annotation, - STATE(5616), 1, - aux_sym_ui_property_repeat1, - STATE(6304), 1, - sym_ui_nested_identifier, - STATE(6330), 1, - sym_ui_property_modifier, - STATE(4401), 11, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - ACTIONS(5138), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_on, - [32955] = 7, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [28523] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4716), 1, + ACTIONS(4588), 1, + anon_sym_LBRACK, + ACTIONS(4591), 1, + anon_sym_DOT, + ACTIONS(4597), 1, + anon_sym_LT, + ACTIONS(4663), 1, anon_sym_EQ, - STATE(2563), 1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2360), 1, sym_comment, - ACTIONS(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4497), 16, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4603), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4594), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4497), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -286906,184 +269658,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, - [33026] = 25, + [28611] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1046), 1, - anon_sym_var, - ACTIONS(5136), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_default, - ACTIONS(5144), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4443), 1, + anon_sym_LBRACK, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4780), 1, + anon_sym_STAR, + ACTIONS(4784), 1, + anon_sym_SEMI, + ACTIONS(4786), 1, anon_sym_async, - ACTIONS(5146), 1, - anon_sym_function, - ACTIONS(5148), 1, + ACTIONS(4788), 1, anon_sym_AT, - ACTIONS(5150), 1, + ACTIONS(4790), 1, + anon_sym_static, + ACTIONS(4792), 1, anon_sym_readonly, - ACTIONS(5152), 1, - anon_sym_property, - ACTIONS(5154), 1, - anon_sym_signal, - ACTIONS(5156), 1, - anon_sym_required, - ACTIONS(5158), 1, - anon_sym_component, - ACTIONS(5160), 1, - anon_sym_enum, - ACTIONS(5178), 1, + ACTIONS(4796), 1, + anon_sym_declare, + ACTIONS(4800), 1, + anon_sym_abstract, + ACTIONS(5070), 1, anon_sym_RBRACE, - STATE(2543), 1, - aux_sym_ui_object_initializer_repeat1, - STATE(2564), 1, + STATE(2341), 1, + aux_sym_class_body_repeat1, + STATE(2361), 1, sym_comment, - STATE(2609), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4400), 1, - sym__qml_enum_declaration, - STATE(4456), 1, - sym_ui_annotation, - STATE(5616), 1, - aux_sym_ui_property_repeat1, - STATE(6304), 1, - sym_ui_nested_identifier, - STATE(6330), 1, - sym_ui_property_modifier, - STATE(4401), 11, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - ACTIONS(5138), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_static, + STATE(2602), 1, + aux_sym_export_statement_repeat1, + STATE(3016), 1, + sym_method_definition, + STATE(3319), 1, + sym_class_static_block, + STATE(3536), 1, + sym_accessibility_modifier, + STATE(3743), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4511), 1, + sym__property_name, + STATE(6172), 1, + sym_method_signature, + ACTIONS(3784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4794), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 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, - anon_sym_on, - [33133] = 25, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1046), 1, - anon_sym_var, - ACTIONS(5136), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_default, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5146), 1, - anon_sym_function, - ACTIONS(5148), 1, - anon_sym_AT, - ACTIONS(5150), 1, - anon_sym_readonly, - ACTIONS(5152), 1, - anon_sym_property, - ACTIONS(5154), 1, - anon_sym_signal, - ACTIONS(5156), 1, - anon_sym_required, - ACTIONS(5158), 1, - anon_sym_component, - ACTIONS(5160), 1, - anon_sym_enum, - ACTIONS(5180), 1, - anon_sym_RBRACE, - STATE(2547), 1, - aux_sym_ui_object_initializer_repeat1, - STATE(2565), 1, - sym_comment, - STATE(2609), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4400), 1, - sym__qml_enum_declaration, - STATE(4456), 1, - sym_ui_annotation, - STATE(5616), 1, - aux_sym_ui_property_repeat1, - STATE(6304), 1, - sym_ui_nested_identifier, - STATE(6330), 1, - sym_ui_property_modifier, - STATE(4401), 11, - sym_variable_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_ui_object_definition, - sym_ui_annotated_object_member, - sym_ui_object_definition_binding, - sym_ui_binding, - sym_ui_property, - sym_ui_required, - sym_ui_signal, - sym_ui_inline_component, - ACTIONS(5138), 22, + STATE(6951), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4433), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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_new, + sym_identifier, anon_sym_module, anon_sym_any, anon_sym_number, @@ -287091,19 +269779,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, + anon_sym_property, + anon_sym_signal, anon_sym_on, - [33240] = 8, + anon_sym_required, + anon_sym_component, + [28735] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1513), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4673), 1, - anon_sym_EQ_GT, - STATE(2566), 1, + ACTIONS(4495), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_COLON, + STATE(2362), 1, sym_comment, - ACTIONS(126), 15, + ACTIONS(5072), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4497), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -287119,7 +269815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -287135,7 +269831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(28), 21, + ACTIONS(4493), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287157,17 +269853,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33313] = 8, + [28813] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - ACTIONS(5182), 1, + ACTIONS(4495), 1, anon_sym_EQ, - STATE(2567), 1, + ACTIONS(4507), 1, + anon_sym_EQ_GT, + STATE(2363), 1, sym_comment, + ACTIONS(5072), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(4497), 15, sym__ternary_qmark, anon_sym_as, @@ -287184,7 +269884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -287222,22 +269922,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33386] = 8, + [28891] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1519), 1, + ACTIONS(1319), 1, anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4673), 1, + ACTIONS(4674), 1, + anon_sym_LBRACK, + ACTIONS(4707), 1, anon_sym_EQ_GT, - STATE(2568), 1, + STATE(2364), 1, sym_comment, - ACTIONS(126), 15, + ACTIONS(2257), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4679), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(126), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -287265,19 +269973,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(28), 21, + ACTIONS(28), 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, @@ -287287,16 +269992,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33459] = 7, + [28972] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1485), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4737), 1, - anon_sym_EQ, - STATE(2569), 1, + ACTIONS(4812), 1, + anon_sym_EQ_GT, + ACTIONS(5075), 1, + anon_sym_COLON, + STATE(2365), 1, sym_comment, - ACTIONS(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -287312,12 +270021,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(4497), 16, + ACTIONS(126), 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, @@ -287329,7 +270038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4493), 21, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287351,34 +270060,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33530] = 8, + [29049] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1573), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4673), 1, + ACTIONS(4718), 1, + anon_sym_EQ, + ACTIONS(4720), 1, anon_sym_EQ_GT, - STATE(2570), 1, + ACTIONS(4915), 1, + anon_sym_in, + ACTIONS(4917), 1, + anon_sym_COLON, + STATE(2366), 1, sym_comment, - ACTIONS(126), 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(2985), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -287394,10 +270091,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(28), 21, + ACTIONS(4497), 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(4493), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -287416,16 +270129,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33603] = 8, + [29128] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1333), 1, + ACTIONS(1418), 1, anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4673), 1, + ACTIONS(4705), 1, + anon_sym_COMMA, + ACTIONS(4713), 1, + anon_sym_RBRACK, + ACTIONS(4812), 1, anon_sym_EQ_GT, - STATE(2571), 1, + STATE(2367), 1, sym_comment, ACTIONS(126), 15, sym__ternary_qmark, @@ -287481,34 +270198,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33676] = 8, + [29207] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - ACTIONS(5184), 1, + ACTIONS(4696), 1, anon_sym_EQ, - STATE(2572), 1, + STATE(2368), 1, sym_comment, - ACTIONS(4497), 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(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -287524,6 +270223,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(4497), 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(4493), 21, anon_sym_STAR, anon_sym_BANG, @@ -287546,51 +270264,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33749] = 8, + [29280] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - ACTIONS(5186), 1, - anon_sym_EQ, - STATE(2573), 1, + ACTIONS(4760), 1, + anon_sym_COMMA, + STATE(2369), 1, sym_comment, - ACTIONS(4497), 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(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(4535), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -287611,24 +270296,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33822] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1509), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4673), 1, - anon_sym_EQ_GT, - STATE(2574), 1, - sym_comment, - ACTIONS(126), 15, + ACTIONS(4537), 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, @@ -287638,6 +270329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [29351] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1485), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4812), 1, + anon_sym_EQ_GT, + ACTIONS(4908), 1, + anon_sym_COLON, + STATE(2370), 1, + sym_comment, ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -287654,6 +270358,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 21, anon_sym_STAR, anon_sym_BANG, @@ -287676,34 +270397,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33895] = 8, + [29428] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4704), 1, - anon_sym_EQ_GT, - ACTIONS(5188), 1, + ACTIONS(4663), 1, anon_sym_EQ, - STATE(2575), 1, + ACTIONS(4694), 1, + anon_sym_EQ_GT, + STATE(2371), 1, sym_comment, - ACTIONS(4497), 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(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -287719,6 +270424,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(4497), 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(4493), 21, anon_sym_STAR, anon_sym_BANG, @@ -287741,32 +270464,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33968] = 7, + [29503] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5168), 1, + ACTIONS(4692), 1, anon_sym_EQ, - STATE(2576), 1, + ACTIONS(4694), 1, + anon_sym_EQ_GT, + STATE(2372), 1, sym_comment, - ACTIONS(4497), 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(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -287782,6 +270491,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(4497), 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(4493), 21, anon_sym_STAR, anon_sym_BANG, @@ -287804,93 +270531,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [34038] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5197), 1, - anon_sym_RBRACE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5204), 1, - anon_sym_readonly, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2577), 1, - sym_comment, - STATE(3888), 1, - sym_override_modifier, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [34140] = 7, + [29578] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5132), 1, + ACTIONS(4669), 1, + anon_sym_RBRACK, + ACTIONS(4685), 1, + anon_sym_COMMA, + ACTIONS(4720), 1, + anon_sym_EQ_GT, + ACTIONS(4912), 1, anon_sym_EQ, - STATE(2578), 1, + STATE(2373), 1, sym_comment, ACTIONS(4497), 15, sym__ternary_qmark, @@ -287908,7 +270562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -287946,32 +270600,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [34210] = 7, + [29657] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5186), 1, + ACTIONS(4718), 1, anon_sym_EQ, - STATE(2579), 1, + ACTIONS(4720), 1, + anon_sym_EQ_GT, + ACTIONS(4915), 1, + anon_sym_in, + ACTIONS(5077), 1, + anon_sym_COLON, + STATE(2374), 1, sym_comment, - ACTIONS(4497), 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(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -287987,10 +270631,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(4493), 21, + ACTIONS(4497), 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(4493), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -288009,32 +270669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [34280] = 7, + [29736] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1461), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5188), 1, - anon_sym_EQ, - STATE(2580), 1, + ACTIONS(3363), 1, + anon_sym_EQ_GT, + STATE(2375), 1, sym_comment, - ACTIONS(4497), 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(4504), 15, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -288050,7 +270696,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(4493), 21, + ACTIONS(126), 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(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288072,49 +270736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [34350] = 7, + [29811] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5166), 1, - anon_sym_EQ, - STATE(2581), 1, + ACTIONS(4762), 1, + anon_sym_COMMA, + STATE(2376), 1, sym_comment, - ACTIONS(4497), 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(4504), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4493), 21, + ACTIONS(4539), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -288135,22 +270768,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [34420] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5134), 1, - anon_sym_EQ, - STATE(2582), 1, - sym_comment, - ACTIONS(4497), 15, + ACTIONS(4541), 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, @@ -288160,7 +270801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + [29882] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(3363), 1, + anon_sym_EQ_GT, + STATE(2377), 1, + sym_comment, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -288176,7 +270828,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(4493), 21, + ACTIONS(126), 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(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288198,190 +270868,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [34490] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5204), 1, - anon_sym_readonly, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5210), 1, - anon_sym_RBRACE, - STATE(2583), 1, - sym_comment, - STATE(3888), 1, - sym_override_modifier, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [34592] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5204), 1, - anon_sym_readonly, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5213), 1, - anon_sym_RBRACE, - STATE(2584), 1, - sym_comment, - STATE(3888), 1, - sym_override_modifier, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [34694] = 7, + [29957] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5170), 1, + ACTIONS(4748), 1, anon_sym_EQ, - STATE(2585), 1, + ACTIONS(4750), 1, + anon_sym_EQ_GT, + STATE(2378), 1, sym_comment, - ACTIONS(4497), 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(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -288397,6 +270895,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 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(4493), 21, anon_sym_STAR, anon_sym_BANG, @@ -288419,93 +270934,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [34764] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, + [30031] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4718), 1, anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5204), 1, - anon_sym_readonly, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5216), 1, - anon_sym_RBRACE, - STATE(2586), 1, + ACTIONS(4720), 1, + anon_sym_EQ_GT, + STATE(2379), 1, sym_comment, - STATE(3888), 1, - sym_override_modifier, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [34866] = 7, + 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(4493), 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, + [30105] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5182), 1, + ACTIONS(4669), 1, + anon_sym_RBRACK, + ACTIONS(4685), 1, + anon_sym_COMMA, + ACTIONS(4912), 1, anon_sym_EQ, - STATE(2587), 1, + STATE(2380), 1, sym_comment, ACTIONS(4497), 15, sym__ternary_qmark, @@ -288523,7 +271029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(4511), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -288561,98 +271067,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [34936] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, + [30181] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, + ACTIONS(1319), 1, anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5204), 1, - anon_sym_readonly, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5219), 1, - anon_sym_RBRACE, - STATE(2588), 1, - sym_comment, - STATE(3888), 1, - sym_override_modifier, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [35038] = 7, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5184), 1, - anon_sym_EQ, - STATE(2589), 1, + ACTIONS(4848), 1, + anon_sym_EQ_GT, + STATE(2381), 1, sym_comment, - ACTIONS(4497), 15, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -288665,7 +271111,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4504), 15, + ACTIONS(28), 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, + [30255] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1493), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4848), 1, + anon_sym_EQ_GT, + STATE(2382), 1, + sym_comment, + ACTIONS(2985), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -288681,7 +271160,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(4493), 21, + ACTIONS(126), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(28), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288703,1042 +271199,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [35108] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5204), 1, - anon_sym_readonly, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5222), 1, - anon_sym_RBRACE, - STATE(2590), 1, - sym_comment, - STATE(3888), 1, - sym_override_modifier, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [35210] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5197), 1, - anon_sym_RBRACE, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5225), 1, - anon_sym_LBRACK, - STATE(2591), 1, - sym_comment, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [35305] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5213), 1, - anon_sym_RBRACE, - ACTIONS(5225), 1, - anon_sym_LBRACK, - STATE(2592), 1, - sym_comment, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [35400] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5210), 1, - anon_sym_RBRACE, - ACTIONS(5225), 1, - anon_sym_LBRACK, - STATE(2593), 1, - sym_comment, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [35495] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [30329] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, + ACTIONS(1319), 1, anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5222), 1, - anon_sym_RBRACE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2594), 1, - sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5229), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [35588] = 19, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5197), 1, - anon_sym_RBRACE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2595), 1, + ACTIONS(4812), 1, + anon_sym_EQ_GT, + STATE(2383), 1, sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5229), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [35681] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5231), 1, + 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(28), 21, anon_sym_STAR, - ACTIONS(5233), 1, - anon_sym_LBRACE, - ACTIONS(5235), 1, - anon_sym_async, - ACTIONS(5237), 1, - anon_sym_readonly, - STATE(2596), 1, - sym_comment, - STATE(3363), 1, - sym_statement_block, - STATE(3906), 1, - sym_override_modifier, - STATE(4722), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5239), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 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, - ACTIONS(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [35776] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5219), 1, - anon_sym_RBRACE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2597), 1, - sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5229), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [35869] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5216), 1, - anon_sym_RBRACE, - ACTIONS(5225), 1, - anon_sym_LBRACK, - STATE(2598), 1, - sym_comment, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [35964] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5222), 1, - anon_sym_RBRACE, - ACTIONS(5225), 1, - anon_sym_LBRACK, - STATE(2599), 1, - sym_comment, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [36059] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5219), 1, - anon_sym_RBRACE, - ACTIONS(5225), 1, - anon_sym_LBRACK, - STATE(2600), 1, - sym_comment, - STATE(4790), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [36154] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5216), 1, - anon_sym_RBRACE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2601), 1, - sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5229), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [36247] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5210), 1, - anon_sym_RBRACE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2602), 1, - sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5229), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [36340] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [30403] = 26, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(211), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5213), 1, - anon_sym_RBRACE, - ACTIONS(5227), 1, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(4824), 1, anon_sym_LBRACK, - STATE(2603), 1, + ACTIONS(5081), 1, + anon_sym_async, + ACTIONS(5083), 1, + anon_sym_static, + ACTIONS(5085), 1, + anon_sym_readonly, + ACTIONS(5091), 1, + anon_sym_override, + STATE(2384), 1, sym_comment, - STATE(5693), 1, + STATE(3674), 1, + sym_accessibility_modifier, + STATE(3732), 1, + sym_override_modifier, + STATE(5267), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, + STATE(8033), 1, + sym__destructuring_pattern, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5229), 2, + ACTIONS(4086), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5087), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, + ACTIONS(5089), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(7638), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(7770), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(5079), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -289751,1180 +271349,1189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [36433] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + [30513] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5219), 1, - anon_sym_RBRACE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2604), 1, + ACTIONS(4726), 1, + anon_sym_EQ_GT, + STATE(2385), 1, sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, 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(4493), 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [36521] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [30587] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4663), 1, anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5213), 1, - anon_sym_RBRACE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2605), 1, + ACTIONS(4726), 1, + anon_sym_EQ_GT, + STATE(2386), 1, sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, 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(4493), 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [36609] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [30661] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(1513), 1, anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5210), 1, - anon_sym_RBRACE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2606), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4846), 1, + anon_sym_EQ_GT, + STATE(2387), 1, sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [36697] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + 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(28), 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, + [30735] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(1319), 1, anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5222), 1, - anon_sym_RBRACE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2607), 1, + ACTIONS(1431), 1, + anon_sym_in, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + ACTIONS(4773), 1, + anon_sym_of, + STATE(2388), 1, sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(126), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [36785] = 35, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [30813] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2959), 1, - anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(3359), 1, - anon_sym_namespace, - ACTIONS(3361), 1, - anon_sym_import, - ACTIONS(3363), 1, - anon_sym_var, - ACTIONS(3365), 1, - anon_sym_let, - ACTIONS(3367), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_class, - ACTIONS(3371), 1, - anon_sym_async, - ACTIONS(3373), 1, - anon_sym_function, - ACTIONS(3375), 1, - anon_sym_declare, - ACTIONS(3379), 1, - anon_sym_abstract, - ACTIONS(3383), 1, - anon_sym_interface, - ACTIONS(3385), 1, - anon_sym_enum, - ACTIONS(5241), 1, + ACTIONS(4846), 1, + anon_sym_EQ_GT, + STATE(2389), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 21, anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_default, - ACTIONS(5245), 1, - anon_sym_type, - ACTIONS(5247), 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, + [30887] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4663), 1, anon_sym_EQ, - ACTIONS(5249), 1, - anon_sym_as, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5254), 1, - anon_sym_RBRACE, - ACTIONS(5257), 1, - anon_sym_module, - STATE(2608), 1, + ACTIONS(4720), 1, + anon_sym_EQ_GT, + STATE(2390), 1, sym_comment, - STATE(5916), 1, - sym_internal_module, - STATE(5924), 1, - sym_declaration, - STATE(6130), 1, - aux_sym_export_statement_repeat1, - STATE(6406), 1, - sym_export_clause, - STATE(6589), 1, - sym_decorator, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - STATE(8036), 1, - sym_namespace_export, - ACTIONS(5208), 7, - sym__automatic_semicolon, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4493), 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_QMARK, - anon_sym_PIPE_RBRACE, - STATE(6274), 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, - [36909] = 32, - ACTIONS(3), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [30961] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1485), 1, + anon_sym_EQ, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(4812), 1, + anon_sym_EQ_GT, + STATE(2391), 1, + sym_comment, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(126), 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(28), 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, + [31035] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1046), 1, - anon_sym_var, - ACTIONS(5136), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_default, - ACTIONS(5144), 1, - anon_sym_async, - ACTIONS(5146), 1, - anon_sym_function, - ACTIONS(5148), 1, - anon_sym_AT, - ACTIONS(5150), 1, - anon_sym_readonly, - ACTIONS(5152), 1, - anon_sym_property, - ACTIONS(5154), 1, - anon_sym_signal, - ACTIONS(5156), 1, - anon_sym_required, - ACTIONS(5158), 1, - anon_sym_component, - ACTIONS(5160), 1, - anon_sym_enum, - STATE(2609), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4663), 1, + anon_sym_EQ, + ACTIONS(4750), 1, + anon_sym_EQ_GT, + STATE(2392), 1, sym_comment, - STATE(4190), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4239), 1, - sym_ui_required, - STATE(4240), 1, - sym_ui_signal, - STATE(4243), 1, - sym__qml_enum_declaration, - STATE(4253), 1, - sym_ui_inline_component, - STATE(4288), 1, - sym_ui_property, - STATE(4289), 1, - sym_ui_binding, - STATE(4303), 1, - sym_ui_object_definition_binding, - STATE(4304), 1, - sym_ui_object_definition, - STATE(4305), 1, - sym_generator_function_declaration, - STATE(4314), 1, - sym_function_declaration, - STATE(4323), 1, - sym_variable_declaration, - STATE(4456), 1, - sym_ui_annotation, - STATE(5616), 1, - aux_sym_ui_property_repeat1, - STATE(6304), 1, - sym_ui_nested_identifier, - STATE(6330), 1, - sym_ui_property_modifier, - ACTIONS(5138), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_of, - 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, - anon_sym_on, - [37027] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, + 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(4493), 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, + [31109] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5190), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4692), 1, + anon_sym_EQ, + STATE(2393), 1, + sym_comment, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 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(4493), 21, anon_sym_STAR, - ACTIONS(5192), 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, + [31181] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4663), 1, anon_sym_EQ, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5204), 1, - anon_sym_readonly, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2610), 1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(4775), 1, + anon_sym_in, + ACTIONS(4778), 1, + anon_sym_of, + STATE(2394), 1, sym_comment, - STATE(3888), 1, - sym_override_modifier, - STATE(4790), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5259), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [37121] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [31259] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5263), 1, - anon_sym_static, - ACTIONS(5265), 1, - anon_sym_readonly, - ACTIONS(5267), 1, - anon_sym_abstract, - STATE(2611), 1, - sym_comment, - STATE(3837), 1, - sym_accessibility_modifier, - STATE(3969), 1, - sym_override_modifier, - STATE(5033), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(1247), 8, + ACTIONS(1581), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2395), 1, + sym_comment, + ACTIONS(126), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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_QMARK, - ACTIONS(4431), 24, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [37213] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [31332] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(1589), 1, anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5197), 1, - anon_sym_RBRACE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2612), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2396), 1, sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(126), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [37301] = 35, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [31405] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2959), 1, - anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(3359), 1, - anon_sym_namespace, - ACTIONS(3361), 1, - anon_sym_import, - ACTIONS(3363), 1, - anon_sym_var, - ACTIONS(3365), 1, - anon_sym_let, - ACTIONS(3367), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_class, - ACTIONS(3371), 1, - anon_sym_async, - ACTIONS(3373), 1, - anon_sym_function, - ACTIONS(3375), 1, - anon_sym_declare, - ACTIONS(3379), 1, - anon_sym_abstract, - ACTIONS(3383), 1, - anon_sym_interface, - ACTIONS(3385), 1, - anon_sym_enum, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_default, - ACTIONS(5245), 1, - anon_sym_type, - ACTIONS(5247), 1, + ACTIONS(4748), 1, anon_sym_EQ, - ACTIONS(5249), 1, - anon_sym_as, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5257), 1, - anon_sym_module, - ACTIONS(5269), 1, - anon_sym_RBRACE, - STATE(2613), 1, + STATE(2397), 1, sym_comment, - STATE(5916), 1, - sym_internal_module, - STATE(5924), 1, - sym_declaration, - STATE(6130), 1, - aux_sym_export_statement_repeat1, - STATE(6406), 1, - sym_export_clause, - STATE(6589), 1, - sym_decorator, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - STATE(8036), 1, - sym_namespace_export, - ACTIONS(5208), 7, - sym__automatic_semicolon, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + 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(4493), 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_QMARK, - anon_sym_PIPE_RBRACE, - STATE(6274), 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, - [37425] = 35, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [31476] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2959), 1, - anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(3359), 1, - anon_sym_namespace, - ACTIONS(3361), 1, - anon_sym_import, - ACTIONS(3363), 1, - anon_sym_var, - ACTIONS(3365), 1, - anon_sym_let, - ACTIONS(3367), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_class, - ACTIONS(3371), 1, - anon_sym_async, - ACTIONS(3373), 1, - anon_sym_function, - ACTIONS(3375), 1, - anon_sym_declare, - ACTIONS(3379), 1, - anon_sym_abstract, - ACTIONS(3383), 1, - anon_sym_interface, - ACTIONS(3385), 1, - anon_sym_enum, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_default, - ACTIONS(5245), 1, - anon_sym_type, - ACTIONS(5247), 1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(5093), 1, anon_sym_EQ, - ACTIONS(5249), 1, - anon_sym_as, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5257), 1, - anon_sym_module, - ACTIONS(5272), 1, - anon_sym_RBRACE, - STATE(2614), 1, + STATE(2398), 1, sym_comment, - STATE(5916), 1, - sym_internal_module, - STATE(5924), 1, - sym_declaration, - STATE(6130), 1, - aux_sym_export_statement_repeat1, - STATE(6406), 1, - sym_export_clause, - STATE(6589), 1, - sym_decorator, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - STATE(8036), 1, - sym_namespace_export, - ACTIONS(5208), 7, - sym__automatic_semicolon, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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_QMARK, - anon_sym_PIPE_RBRACE, - STATE(6274), 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, - [37549] = 35, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [31549] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2959), 1, - anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(3359), 1, - anon_sym_namespace, - ACTIONS(3361), 1, - anon_sym_import, - ACTIONS(3363), 1, - anon_sym_var, - ACTIONS(3365), 1, - anon_sym_let, - ACTIONS(3367), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_class, - ACTIONS(3371), 1, - anon_sym_async, - ACTIONS(3373), 1, - anon_sym_function, - ACTIONS(3375), 1, - anon_sym_declare, - ACTIONS(3379), 1, - anon_sym_abstract, - ACTIONS(3383), 1, - anon_sym_interface, - ACTIONS(3385), 1, - anon_sym_enum, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_default, - ACTIONS(5245), 1, - anon_sym_type, - ACTIONS(5247), 1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(5095), 1, anon_sym_EQ, - ACTIONS(5249), 1, - anon_sym_as, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5257), 1, - anon_sym_module, - ACTIONS(5275), 1, - anon_sym_RBRACE, - STATE(2615), 1, + STATE(2399), 1, sym_comment, - STATE(5916), 1, - sym_internal_module, - STATE(5924), 1, - sym_declaration, - STATE(6130), 1, - aux_sym_export_statement_repeat1, - STATE(6406), 1, - sym_export_clause, - STATE(6589), 1, - sym_decorator, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - STATE(8036), 1, - sym_namespace_export, - ACTIONS(5208), 7, - sym__automatic_semicolon, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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_QMARK, - anon_sym_PIPE_RBRACE, - STATE(6274), 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, - [37673] = 35, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [31622] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2959), 1, - anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(3359), 1, - anon_sym_namespace, - ACTIONS(3361), 1, - anon_sym_import, - ACTIONS(3363), 1, - anon_sym_var, - ACTIONS(3365), 1, - anon_sym_let, - ACTIONS(3367), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_class, - ACTIONS(3371), 1, - anon_sym_async, - ACTIONS(3373), 1, - anon_sym_function, - ACTIONS(3375), 1, - anon_sym_declare, - ACTIONS(3379), 1, - anon_sym_abstract, - ACTIONS(3383), 1, - anon_sym_interface, - ACTIONS(3385), 1, - anon_sym_enum, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_default, - ACTIONS(5245), 1, - anon_sym_type, - ACTIONS(5247), 1, + ACTIONS(4718), 1, anon_sym_EQ, - ACTIONS(5249), 1, - anon_sym_as, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5257), 1, - anon_sym_module, - ACTIONS(5278), 1, - anon_sym_RBRACE, - STATE(2616), 1, + STATE(2400), 1, sym_comment, - STATE(5916), 1, - sym_internal_module, - STATE(5924), 1, - sym_declaration, - STATE(6130), 1, - aux_sym_export_statement_repeat1, - STATE(6406), 1, - sym_export_clause, - STATE(6589), 1, - sym_decorator, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - STATE(8036), 1, - sym_namespace_export, - ACTIONS(5208), 7, - sym__automatic_semicolon, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4493), 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_QMARK, - anon_sym_PIPE_RBRACE, - STATE(6274), 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, - [37797] = 35, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [31693] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2959), 1, - anon_sym_LBRACE, + ACTIONS(1587), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(3359), 1, - anon_sym_namespace, - ACTIONS(3361), 1, - anon_sym_import, - ACTIONS(3363), 1, - anon_sym_var, - ACTIONS(3365), 1, - anon_sym_let, - ACTIONS(3367), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_class, - ACTIONS(3371), 1, - anon_sym_async, - ACTIONS(3373), 1, - anon_sym_function, - ACTIONS(3375), 1, - anon_sym_declare, - ACTIONS(3379), 1, - anon_sym_abstract, - ACTIONS(3383), 1, - anon_sym_interface, - ACTIONS(3385), 1, - anon_sym_enum, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_default, - ACTIONS(5245), 1, - anon_sym_type, - ACTIONS(5247), 1, - anon_sym_EQ, - ACTIONS(5249), 1, - anon_sym_as, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5257), 1, - anon_sym_module, - ACTIONS(5281), 1, - anon_sym_RBRACE, - STATE(2617), 1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2401), 1, sym_comment, - STATE(5916), 1, - sym_internal_module, - STATE(5924), 1, - sym_declaration, - STATE(6130), 1, - aux_sym_export_statement_repeat1, - STATE(6406), 1, - sym_export_clause, - STATE(6589), 1, - sym_decorator, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - STATE(8036), 1, - sym_namespace_export, - ACTIONS(5208), 7, - sym__automatic_semicolon, + ACTIONS(126), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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_QMARK, - anon_sym_PIPE_RBRACE, - STATE(6274), 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, - [37921] = 17, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [31766] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5216), 1, + ACTIONS(918), 1, + anon_sym_var, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5101), 1, + anon_sym_default, + ACTIONS(5103), 1, anon_sym_RBRACE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2618), 1, + ACTIONS(5105), 1, + anon_sym_async, + ACTIONS(5107), 1, + anon_sym_function, + ACTIONS(5109), 1, + anon_sym_AT, + ACTIONS(5111), 1, + anon_sym_readonly, + ACTIONS(5113), 1, + anon_sym_property, + ACTIONS(5115), 1, + anon_sym_signal, + ACTIONS(5117), 1, + anon_sym_required, + ACTIONS(5119), 1, + anon_sym_component, + ACTIONS(5121), 1, + anon_sym_enum, + STATE(2402), 1, sym_comment, - STATE(5693), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, + STATE(2403), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2457), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4184), 1, + sym__qml_enum_declaration, + STATE(4238), 1, + sym_ui_annotation, + STATE(5455), 1, + aux_sym_ui_property_repeat1, + STATE(5708), 1, + sym_ui_nested_identifier, + STATE(6103), 1, + sym_ui_property_modifier, + STATE(4185), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5099), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -290939,142 +272546,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_property, - anon_sym_signal, anon_sym_on, - anon_sym_required, - anon_sym_component, - [38009] = 19, + [31873] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5284), 1, - anon_sym_static, - ACTIONS(5286), 1, - anon_sym_readonly, - ACTIONS(5288), 1, - anon_sym_abstract, - STATE(2619), 1, - sym_comment, - STATE(3815), 1, - sym_accessibility_modifier, - STATE(3933), 1, - sym_override_modifier, - STATE(5085), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(1247), 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, - ACTIONS(4431), 24, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, + ACTIONS(918), 1, + anon_sym_var, + ACTIONS(5097), 1, 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, + ACTIONS(5101), 1, + anon_sym_default, + ACTIONS(5105), 1, + anon_sym_async, + ACTIONS(5107), 1, + anon_sym_function, + ACTIONS(5109), 1, + anon_sym_AT, + ACTIONS(5111), 1, + anon_sym_readonly, + ACTIONS(5113), 1, anon_sym_property, + ACTIONS(5115), 1, anon_sym_signal, - anon_sym_on, + ACTIONS(5117), 1, anon_sym_required, + ACTIONS(5119), 1, anon_sym_component, - [38101] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5290), 1, - anon_sym_static, - ACTIONS(5292), 1, - anon_sym_readonly, - ACTIONS(5294), 1, - anon_sym_abstract, - STATE(2620), 1, + ACTIONS(5121), 1, + anon_sym_enum, + ACTIONS(5123), 1, + anon_sym_RBRACE, + STATE(2403), 1, sym_comment, - STATE(3979), 1, - sym_override_modifier, - STATE(5176), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 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, - ACTIONS(4431), 27, + STATE(2423), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2457), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4184), 1, + sym__qml_enum_declaration, + STATE(4238), 1, + sym_ui_annotation, + STATE(5455), 1, + aux_sym_ui_property_repeat1, + STATE(5708), 1, + sym_ui_nested_identifier, + STATE(6103), 1, + sym_ui_property_modifier, + STATE(4185), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5099), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -291082,63 +272628,531 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_property, - anon_sym_signal, anon_sym_on, - anon_sym_required, - anon_sym_component, - [38188] = 16, - ACTIONS(3), 1, + [31980] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1577), 1, + anon_sym_EQ, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2404), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [32053] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(1507), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2405), 1, + sym_comment, + ACTIONS(126), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5296), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 21, anon_sym_STAR, - ACTIONS(5298), 1, - anon_sym_async, - ACTIONS(5302), 1, - anon_sym_abstract, - STATE(2621), 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, + [32126] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(5125), 1, + anon_sym_EQ, + STATE(2406), 1, sym_comment, - STATE(4721), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5300), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, + [32199] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4663), 1, anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4775), 1, + anon_sym_in, + ACTIONS(4778), 1, + anon_sym_of, + STATE(2407), 1, + sym_comment, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, + [32274] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2408), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [32347] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_EQ, + STATE(2409), 1, + sym_comment, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4497), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, 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(4493), 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_QMARK, - ACTIONS(4431), 27, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [32418] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1525), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2410), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [32491] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(918), 1, + anon_sym_var, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5101), 1, + anon_sym_default, + ACTIONS(5105), 1, + anon_sym_async, + ACTIONS(5107), 1, + anon_sym_function, + ACTIONS(5109), 1, + anon_sym_AT, + ACTIONS(5111), 1, + anon_sym_readonly, + ACTIONS(5113), 1, + anon_sym_property, + ACTIONS(5115), 1, + anon_sym_signal, + ACTIONS(5117), 1, + anon_sym_required, + ACTIONS(5119), 1, + anon_sym_component, + ACTIONS(5121), 1, + anon_sym_enum, + ACTIONS(5127), 1, + anon_sym_RBRACE, + STATE(2411), 1, + sym_comment, + STATE(2423), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2457), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4184), 1, + sym__qml_enum_declaration, + STATE(4238), 1, + sym_ui_annotation, + STATE(5455), 1, + aux_sym_ui_property_repeat1, + STATE(5708), 1, + sym_ui_nested_identifier, + STATE(6103), 1, + sym_ui_property_modifier, + STATE(4185), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5099), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_new, - sym_identifier, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -291151,273 +273165,529 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_property, - anon_sym_signal, anon_sym_on, - anon_sym_required, - anon_sym_component, - [38273] = 16, - ACTIONS(3), 1, + [32598] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1585), 1, + anon_sym_EQ, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2412), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [32671] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5225), 1, + ACTIONS(1591), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2413), 1, + sym_comment, + ACTIONS(126), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(5231), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 21, anon_sym_STAR, - ACTIONS(5235), 1, - anon_sym_async, - ACTIONS(5304), 1, - anon_sym_abstract, - STATE(2622), 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, + [32744] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(5129), 1, + anon_sym_EQ, + STATE(2414), 1, sym_comment, - STATE(4722), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5239), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, + [32817] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(5131), 1, anon_sym_EQ, - anon_sym_COMMA, + STATE(2415), 1, + sym_comment, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, + [32890] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(5133), 1, + anon_sym_EQ, + STATE(2416), 1, + sym_comment, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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_QMARK, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [38358] = 17, - ACTIONS(3), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [32963] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1579), 1, + anon_sym_EQ, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(4707), 1, + anon_sym_EQ_GT, + STATE(2417), 1, + sym_comment, + ACTIONS(126), 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(2985), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(28), 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, + [33036] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(5135), 1, anon_sym_EQ, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5225), 1, - anon_sym_LBRACK, - STATE(2623), 1, + STATE(2418), 1, sym_comment, - STATE(4790), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5259), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [38445] = 18, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [33109] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(74), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(4808), 1, - anon_sym_LBRACK, - ACTIONS(5308), 1, - anon_sym_COMMA, - ACTIONS(5310), 1, - anon_sym_RBRACE, - STATE(2624), 1, - sym_comment, - STATE(6932), 1, - aux_sym_object_pattern_repeat1, - STATE(8206), 1, - sym__destructuring_pattern, - STATE(8207), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - STATE(6929), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(5306), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, + ACTIONS(918), 1, + anon_sym_var, + ACTIONS(5097), 1, sym_identifier, - anon_sym_static, + ACTIONS(5101), 1, + anon_sym_default, + ACTIONS(5105), 1, + anon_sym_async, + ACTIONS(5107), 1, + anon_sym_function, + ACTIONS(5109), 1, + anon_sym_AT, + ACTIONS(5111), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, + ACTIONS(5113), 1, anon_sym_property, + ACTIONS(5115), 1, anon_sym_signal, - anon_sym_on, + ACTIONS(5117), 1, anon_sym_required, + ACTIONS(5119), 1, anon_sym_component, - [38534] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(74), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(4808), 1, - anon_sym_LBRACK, - ACTIONS(5308), 1, - anon_sym_COMMA, - ACTIONS(5314), 1, + ACTIONS(5121), 1, + anon_sym_enum, + ACTIONS(5137), 1, anon_sym_RBRACE, - STATE(2625), 1, + STATE(2411), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2419), 1, sym_comment, - STATE(6845), 1, - aux_sym_object_pattern_repeat1, - STATE(8206), 1, - sym__destructuring_pattern, - STATE(8207), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - STATE(6843), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(5312), 30, + STATE(2457), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4184), 1, + sym__qml_enum_declaration, + STATE(4238), 1, + sym_ui_annotation, + STATE(5455), 1, + aux_sym_ui_property_repeat1, + STATE(5708), 1, + sym_ui_nested_identifier, + STATE(6103), 1, + sym_ui_property_modifier, + STATE(4185), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5099), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -291432,291 +273702,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_property, - anon_sym_signal, anon_sym_on, - anon_sym_required, - anon_sym_component, - [38623] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, + [33216] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(2941), 1, - anon_sym_readonly, - ACTIONS(2945), 1, - anon_sym_override, - ACTIONS(5192), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4663), 1, anon_sym_EQ, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(2626), 1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + STATE(2420), 1, sym_comment, - STATE(3870), 1, - sym_override_modifier, - STATE(5690), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2943), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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_QMARK, - ACTIONS(2934), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [38720] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [33289] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(5139), 1, + anon_sym_EQ, + STATE(2421), 1, + sym_comment, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5320), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 21, anon_sym_STAR, - ACTIONS(5322), 1, - anon_sym_async, - ACTIONS(5324), 1, - anon_sym_readonly, - STATE(2627), 1, - sym_comment, - STATE(3895), 1, - sym_override_modifier, - STATE(4715), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5326), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + 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_QMARK, - ACTIONS(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [38809] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [33362] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5328), 1, - anon_sym_STAR, - ACTIONS(5330), 1, - anon_sym_async, - ACTIONS(5332), 1, - anon_sym_readonly, - STATE(2628), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4690), 1, + anon_sym_EQ_GT, + ACTIONS(5141), 1, + anon_sym_EQ, + STATE(2422), 1, sym_comment, - STATE(3904), 1, - sym_override_modifier, - STATE(4763), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5334), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [38898] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [33435] = 24, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1259), 1, + ACTIONS(5143), 1, + sym_identifier, + ACTIONS(5149), 1, + anon_sym_default, + ACTIONS(5152), 1, anon_sym_RBRACE, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(2939), 1, + ACTIONS(5154), 1, + anon_sym_var, + ACTIONS(5157), 1, anon_sym_async, - ACTIONS(2941), 1, + ACTIONS(5160), 1, + anon_sym_function, + ACTIONS(5163), 1, + anon_sym_AT, + ACTIONS(5166), 1, anon_sym_readonly, - ACTIONS(2945), 1, - anon_sym_override, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2629), 1, + ACTIONS(5169), 1, + anon_sym_property, + ACTIONS(5172), 1, + anon_sym_signal, + ACTIONS(5175), 1, + anon_sym_required, + ACTIONS(5178), 1, + anon_sym_component, + ACTIONS(5181), 1, + anon_sym_enum, + STATE(2457), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4184), 1, + sym__qml_enum_declaration, + STATE(4238), 1, + sym_ui_annotation, + STATE(5455), 1, + aux_sym_ui_property_repeat1, + STATE(5708), 1, + sym_ui_nested_identifier, + STATE(6103), 1, + sym_ui_property_modifier, + STATE(2423), 2, sym_comment, - STATE(3870), 1, - sym_override_modifier, - STATE(5690), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2943), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 25, + aux_sym_ui_object_initializer_repeat1, + STATE(4185), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5146), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -291724,74 +273978,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_property, - anon_sym_signal, anon_sym_on, - anon_sym_required, - anon_sym_component, - [38995] = 22, + [33540] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(2939), 1, + ACTIONS(918), 1, + anon_sym_var, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5101), 1, + anon_sym_default, + ACTIONS(5105), 1, anon_sym_async, - ACTIONS(2941), 1, + ACTIONS(5107), 1, + anon_sym_function, + ACTIONS(5109), 1, + anon_sym_AT, + ACTIONS(5111), 1, anon_sym_readonly, - ACTIONS(2945), 1, - anon_sym_override, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - ACTIONS(5336), 1, + ACTIONS(5113), 1, + anon_sym_property, + ACTIONS(5115), 1, + anon_sym_signal, + ACTIONS(5117), 1, + anon_sym_required, + ACTIONS(5119), 1, + anon_sym_component, + ACTIONS(5121), 1, + anon_sym_enum, + ACTIONS(5184), 1, anon_sym_RBRACE, - STATE(2630), 1, + STATE(2424), 1, sym_comment, - STATE(3870), 1, - sym_override_modifier, - STATE(5690), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2943), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 25, + STATE(2425), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2457), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4184), 1, + sym__qml_enum_declaration, + STATE(4238), 1, + sym_ui_annotation, + STATE(5455), 1, + aux_sym_ui_property_repeat1, + STATE(5708), 1, + sym_ui_nested_identifier, + STATE(6103), 1, + sym_ui_property_modifier, + STATE(4185), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5099), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -291799,145 +274060,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_property, - anon_sym_signal, anon_sym_on, - anon_sym_required, - anon_sym_component, - [39092] = 18, + [33647] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5338), 1, - anon_sym_STAR, - ACTIONS(5340), 1, + ACTIONS(918), 1, + anon_sym_var, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5101), 1, + anon_sym_default, + ACTIONS(5105), 1, anon_sym_async, - ACTIONS(5342), 1, + ACTIONS(5107), 1, + anon_sym_function, + ACTIONS(5109), 1, + anon_sym_AT, + ACTIONS(5111), 1, anon_sym_readonly, - STATE(2631), 1, - sym_comment, - STATE(3869), 1, - sym_override_modifier, - STATE(4747), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5344), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, - 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(4431), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, + ACTIONS(5113), 1, anon_sym_property, + ACTIONS(5115), 1, anon_sym_signal, - anon_sym_on, + ACTIONS(5117), 1, anon_sym_required, + ACTIONS(5119), 1, anon_sym_component, - [39181] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(2941), 1, - anon_sym_readonly, - ACTIONS(2945), 1, - anon_sym_override, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - ACTIONS(5346), 1, + ACTIONS(5121), 1, + anon_sym_enum, + ACTIONS(5186), 1, anon_sym_RBRACE, - STATE(2632), 1, + STATE(2423), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2425), 1, sym_comment, - STATE(3870), 1, - sym_override_modifier, - STATE(5690), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2943), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 25, + STATE(2457), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4184), 1, + sym__qml_enum_declaration, + STATE(4238), 1, + sym_ui_annotation, + STATE(5455), 1, + aux_sym_ui_property_repeat1, + STATE(5708), 1, + sym_ui_nested_identifier, + STATE(6103), 1, + sym_ui_property_modifier, + STATE(4185), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5099), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -291945,139 +274142,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_property, - anon_sym_signal, anon_sym_on, - anon_sym_required, - anon_sym_component, - [39278] = 16, + [33754] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2633), 1, - sym_comment, - STATE(5693), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5229), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5259), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, + ACTIONS(918), 1, + anon_sym_var, + ACTIONS(5097), 1, sym_identifier, - anon_sym_static, + ACTIONS(5101), 1, + anon_sym_default, + ACTIONS(5105), 1, + anon_sym_async, + ACTIONS(5107), 1, + anon_sym_function, + ACTIONS(5109), 1, + anon_sym_AT, + ACTIONS(5111), 1, anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, + ACTIONS(5113), 1, anon_sym_property, + ACTIONS(5115), 1, anon_sym_signal, - anon_sym_on, + ACTIONS(5117), 1, anon_sym_required, + ACTIONS(5119), 1, anon_sym_component, - [39363] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5296), 1, - anon_sym_STAR, - ACTIONS(5298), 1, - anon_sym_async, - ACTIONS(5348), 1, - anon_sym_readonly, - STATE(2634), 1, + ACTIONS(5121), 1, + anon_sym_enum, + ACTIONS(5188), 1, + anon_sym_RBRACE, + STATE(2426), 1, sym_comment, - STATE(3909), 1, - sym_override_modifier, - STATE(4736), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5300), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 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, - ACTIONS(4431), 25, + STATE(2427), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2457), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4184), 1, + sym__qml_enum_declaration, + STATE(4238), 1, + sym_ui_annotation, + STATE(5455), 1, + aux_sym_ui_property_repeat1, + STATE(5708), 1, + sym_ui_nested_identifier, + STATE(6103), 1, + sym_ui_property_modifier, + STATE(4185), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5099), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -292085,63 +274224,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_property, - anon_sym_signal, anon_sym_on, - anon_sym_required, - anon_sym_component, - [39452] = 16, + [33861] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5320), 1, - anon_sym_STAR, - ACTIONS(5322), 1, + ACTIONS(918), 1, + anon_sym_var, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5101), 1, + anon_sym_default, + ACTIONS(5105), 1, anon_sym_async, - ACTIONS(5350), 1, - anon_sym_abstract, - STATE(2635), 1, + ACTIONS(5107), 1, + anon_sym_function, + ACTIONS(5109), 1, + anon_sym_AT, + ACTIONS(5111), 1, + anon_sym_readonly, + ACTIONS(5113), 1, + anon_sym_property, + ACTIONS(5115), 1, + anon_sym_signal, + ACTIONS(5117), 1, + anon_sym_required, + ACTIONS(5119), 1, + anon_sym_component, + ACTIONS(5121), 1, + anon_sym_enum, + ACTIONS(5190), 1, + anon_sym_RBRACE, + STATE(2423), 1, + aux_sym_ui_object_initializer_repeat1, + STATE(2427), 1, sym_comment, - STATE(4715), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5326), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 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, - ACTIONS(4431), 27, + STATE(2457), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4184), 1, + sym__qml_enum_declaration, + STATE(4238), 1, + sym_ui_annotation, + STATE(5455), 1, + aux_sym_ui_property_repeat1, + STATE(5708), 1, + sym_ui_nested_identifier, + STATE(6103), 1, + sym_ui_property_modifier, + STATE(4185), 11, + sym_variable_declaration, + sym_function_declaration, + sym_generator_function_declaration, + sym_ui_object_definition, + sym_ui_annotated_object_member, + sym_ui_object_definition_binding, + sym_ui_binding, + sym_ui_property, + sym_ui_required, + sym_ui_signal, + sym_ui_inline_component, + ACTIONS(5099), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_new, - sym_identifier, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292154,61 +274306,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_property, - anon_sym_signal, anon_sym_on, - anon_sym_required, - anon_sym_component, - [39537] = 22, + [33968] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1253), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(2941), 1, - anon_sym_readonly, - ACTIONS(2945), 1, + ACTIONS(4457), 1, anon_sym_override, ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5199), 1, + anon_sym_RBRACE, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2636), 1, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5206), 1, + anon_sym_readonly, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2428), 1, sym_comment, - STATE(3870), 1, + STATE(3728), 1, sym_override_modifier, - STATE(5690), 1, + STATE(4588), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 25, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292234,52 +274386,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [39634] = 18, + [34070] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5125), 1, + anon_sym_EQ, + STATE(2429), 1, + sym_comment, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, + [34140] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5133), 1, + anon_sym_EQ, + STATE(2430), 1, + sym_comment, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, + [34210] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5352), 1, + ACTIONS(5192), 1, anon_sym_STAR, - ACTIONS(5354), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5204), 1, anon_sym_async, - ACTIONS(5356), 1, + ACTIONS(5206), 1, anon_sym_readonly, - STATE(2637), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5212), 1, + anon_sym_RBRACE, + STATE(2431), 1, sym_comment, - STATE(3890), 1, + STATE(3728), 1, sym_override_modifier, - STATE(4754), 1, + STATE(4588), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5358), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4431), 25, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292305,56 +274591,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [39723] = 22, + [34312] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1255), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(2941), 1, - anon_sym_readonly, - ACTIONS(2945), 1, + ACTIONS(4457), 1, anon_sym_override, ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2638), 1, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5206), 1, + anon_sym_readonly, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5215), 1, + anon_sym_RBRACE, + STATE(2432), 1, sym_comment, - STATE(3870), 1, + STATE(3728), 1, sym_override_modifier, - STATE(5690), 1, + STATE(4588), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 25, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292380,121 +274670,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [39820] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [34414] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5139), 1, + anon_sym_EQ, + STATE(2433), 1, + sym_comment, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5360), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 21, anon_sym_STAR, - ACTIONS(5362), 1, - anon_sym_async, - ACTIONS(5366), 1, - anon_sym_abstract, - STATE(2639), 1, - sym_comment, - STATE(4706), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5364), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + 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, + [34484] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5131), 1, anon_sym_EQ, - anon_sym_COMMA, + STATE(2434), 1, + sym_comment, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, + [34554] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5135), 1, + anon_sym_EQ, + STATE(2435), 1, + sym_comment, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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_QMARK, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [39905] = 18, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [34624] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5360), 1, + ACTIONS(5192), 1, anon_sym_STAR, - ACTIONS(5362), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5204), 1, anon_sym_async, - ACTIONS(5368), 1, + ACTIONS(5206), 1, anon_sym_readonly, - STATE(2640), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5218), 1, + anon_sym_RBRACE, + STATE(2436), 1, sym_comment, - STATE(3903), 1, + STATE(3728), 1, sym_override_modifier, - STATE(4711), 1, + STATE(4588), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5364), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 25, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292520,126 +274938,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [39994] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + [34726] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5370), 1, - anon_sym_static, - ACTIONS(5372), 1, - anon_sym_readonly, - ACTIONS(5374), 1, - anon_sym_abstract, - STATE(2641), 1, - sym_comment, - STATE(3927), 1, - sym_override_modifier, - STATE(5040), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5093), 1, anon_sym_EQ, - anon_sym_COMMA, + STATE(2437), 1, + sym_comment, + ACTIONS(4497), 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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, + [34796] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5141), 1, + anon_sym_EQ, + STATE(2438), 1, + sym_comment, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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_QMARK, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [40081] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [34866] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1226), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(2941), 1, - anon_sym_readonly, - ACTIONS(2945), 1, + ACTIONS(4457), 1, anon_sym_override, ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2642), 1, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5206), 1, + anon_sym_readonly, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5221), 1, + anon_sym_RBRACE, + STATE(2439), 1, sym_comment, - STATE(3870), 1, + STATE(3728), 1, sym_override_modifier, - STATE(5690), 1, + STATE(4588), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7210), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 25, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292665,127 +275143,199 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [40178] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [34968] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5129), 1, + anon_sym_EQ, + STATE(2440), 1, + sym_comment, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5376), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 21, anon_sym_STAR, - ACTIONS(5378), 1, - anon_sym_async, - STATE(2643), 1, - sym_comment, - STATE(4723), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5380), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, 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, + [35038] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5095), 1, + anon_sym_EQ, + STATE(2441), 1, + sym_comment, + ACTIONS(4497), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - 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(4511), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4493), 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_QMARK, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [40260] = 14, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [35108] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5192), 1, anon_sym_STAR, - STATE(2644), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5206), 1, + anon_sym_readonly, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5224), 1, + anon_sym_RBRACE, + STATE(2442), 1, sym_comment, - STATE(5644), 1, + STATE(3728), 1, + sym_override_modifier, + STATE(4588), 1, sym__property_name, - ACTIONS(2930), 2, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5382), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -292798,52 +275348,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [40340] = 11, + [35210] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, ACTIONS(5192), 1, - anon_sym_EQ, + anon_sym_STAR, ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5213), 1, + ACTIONS(5199), 1, anon_sym_RBRACE, - STATE(2645), 1, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5227), 1, + anon_sym_LBRACK, + STATE(2443), 1, sym_comment, - STATE(6997), 1, + STATE(4588), 1, + sym__property_name, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(1247), 6, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5208), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2588), 36, + ACTIONS(4433), 27, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292861,7 +275423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [40414] = 14, + [35305] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -292870,28 +275432,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5215), 1, + anon_sym_RBRACE, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5352), 1, - anon_sym_STAR, - STATE(2646), 1, + STATE(2444), 1, sym_comment, - STATE(5533), 1, + STATE(5433), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5384), 2, + ACTIONS(5231), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -292927,7 +275497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [40494] = 14, + [35398] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -292936,34 +275506,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5199), 1, + anon_sym_RBRACE, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5386), 1, - anon_sym_STAR, - STATE(2647), 1, + STATE(2445), 1, sym_comment, - STATE(5717), 1, + STATE(5433), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5388), 2, + ACTIONS(5231), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2934), 28, anon_sym_export, anon_sym_type, @@ -292993,52 +275571,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [40574] = 15, + [35491] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5390), 1, + ACTIONS(5192), 1, anon_sym_STAR, - ACTIONS(5392), 1, - anon_sym_async, - STATE(2648), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5212), 1, + anon_sym_RBRACE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2446), 1, sym_comment, - STATE(4759), 1, + STATE(5433), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5394), 2, + ACTIONS(5231), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -293060,47 +275645,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [40656] = 18, + [35584] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1226), 1, - anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5221), 1, + anon_sym_RBRACE, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2649), 1, + STATE(2447), 1, sym_comment, - STATE(5690), 1, + STATE(5433), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7210), 1, + STATE(7047), 1, aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5231), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2934), 28, anon_sym_export, anon_sym_type, @@ -293130,47 +275719,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [40744] = 18, + [35677] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1253), 1, - anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5224), 1, + anon_sym_RBRACE, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2650), 1, + STATE(2448), 1, sym_comment, - STATE(5690), 1, + STATE(5433), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5231), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2934), 28, anon_sym_export, anon_sym_type, @@ -293200,46 +275793,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [40832] = 15, + [35770] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5352), 1, + ACTIONS(5192), 1, anon_sym_STAR, - ACTIONS(5354), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5204), 1, anon_sym_async, - STATE(2651), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5215), 1, + anon_sym_RBRACE, + ACTIONS(5227), 1, + anon_sym_LBRACK, + STATE(2449), 1, sym_comment, - STATE(4754), 1, + STATE(4588), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5358), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293267,52 +275868,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [40914] = 11, + [35865] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, ACTIONS(5192), 1, - anon_sym_EQ, + anon_sym_STAR, ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, - ACTIONS(5208), 1, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5216), 1, + ACTIONS(5212), 1, anon_sym_RBRACE, - STATE(2652), 1, + ACTIONS(5227), 1, + anon_sym_LBRACK, + STATE(2450), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(4588), 1, + sym__property_name, + STATE(6902), 1, aux_sym_object_repeat1, - ACTIONS(1247), 6, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5208), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2586), 36, + ACTIONS(4433), 27, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -293330,46 +275943,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [40988] = 15, + [35960] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5360), 1, + ACTIONS(5192), 1, anon_sym_STAR, - ACTIONS(5362), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5204), 1, anon_sym_async, - STATE(2653), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5224), 1, + anon_sym_RBRACE, + ACTIONS(5227), 1, + anon_sym_LBRACK, + STATE(2451), 1, sym_comment, - STATE(4732), 1, + STATE(4588), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5364), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 27, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293397,50 +276018,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [41070] = 19, + [36055] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1253), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5221), 1, + anon_sym_RBRACE, ACTIONS(5227), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2654), 1, + STATE(2452), 1, sym_comment, - STATE(5690), 1, + STATE(4588), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 27, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293468,47 +276093,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [41160] = 18, + [36150] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1255), 1, - anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5218), 1, + anon_sym_RBRACE, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2655), 1, + STATE(2453), 1, sym_comment, - STATE(5690), 1, + STATE(5433), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5231), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2934), 28, anon_sym_export, anon_sym_type, @@ -293538,50 +276167,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [41248] = 19, + [36243] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1226), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5233), 1, anon_sym_STAR, - STATE(2656), 1, + ACTIONS(5235), 1, + anon_sym_LBRACE, + ACTIONS(5237), 1, + anon_sym_async, + ACTIONS(5239), 1, + anon_sym_readonly, + ACTIONS(5243), 1, + sym__automatic_semicolon, + STATE(2454), 1, sym_comment, - STATE(5690), 1, + STATE(3338), 1, + sym_statement_block, + STATE(3741), 1, + sym_override_modifier, + STATE(4509), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5241), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 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, - ACTIONS(2934), 27, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293591,12 +276226,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, @@ -293609,51 +276242,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [41338] = 14, + [36338] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5210), 1, sym__automatic_semicolon, + ACTIONS(5218), 1, + anon_sym_RBRACE, ACTIONS(5227), 1, anon_sym_LBRACK, - ACTIONS(5296), 1, - anon_sym_STAR, - STATE(2657), 1, + STATE(2455), 1, sym_comment, - STATE(5703), 1, + STATE(4588), 1, sym__property_name, - ACTIONS(2930), 2, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5396), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + sym_computed_property_name, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -293675,60 +276317,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [41418] = 19, + [36433] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1255), 1, - anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(5192), 1, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5221), 1, + anon_sym_RBRACE, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2658), 1, + STATE(2456), 1, sym_comment, - STATE(5690), 1, + STATE(5433), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 27, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -293746,35 +276388,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [41508] = 14, + [36521] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(918), 1, + anon_sym_var, + ACTIONS(5097), 1, + sym_identifier, + ACTIONS(5101), 1, + anon_sym_default, + ACTIONS(5105), 1, + anon_sym_async, + ACTIONS(5107), 1, + anon_sym_function, + ACTIONS(5109), 1, + anon_sym_AT, + ACTIONS(5111), 1, + anon_sym_readonly, + ACTIONS(5113), 1, + anon_sym_property, + ACTIONS(5115), 1, + anon_sym_signal, + ACTIONS(5117), 1, + anon_sym_required, + ACTIONS(5119), 1, + anon_sym_component, + ACTIONS(5121), 1, + anon_sym_enum, + STATE(2457), 1, + sym_comment, + STATE(3901), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4052), 1, + sym_ui_inline_component, + STATE(4053), 1, + sym__qml_enum_declaration, + STATE(4101), 1, + sym_ui_required, + STATE(4102), 1, + sym_ui_property, + STATE(4105), 1, + sym_ui_binding, + STATE(4108), 1, + sym_ui_object_definition_binding, + STATE(4109), 1, + sym_ui_object_definition, + STATE(4112), 1, + sym_generator_function_declaration, + STATE(4119), 1, + sym_function_declaration, + STATE(4128), 1, + sym_variable_declaration, + STATE(4153), 1, + sym_ui_signal, + STATE(4238), 1, + sym_ui_annotation, + STATE(5455), 1, + aux_sym_ui_property_repeat1, + STATE(5708), 1, + sym_ui_nested_identifier, + STATE(6103), 1, + sym_ui_property_modifier, + ACTIONS(5099), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_on, + [36639] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_STAR, - STATE(2659), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5246), 1, + anon_sym_static, + ACTIONS(5248), 1, + anon_sym_readonly, + ACTIONS(5250), 1, + anon_sym_abstract, + STATE(2458), 1, sym_comment, - STATE(5716), 1, + STATE(3643), 1, + sym_accessibility_modifier, + STATE(3799), 1, + sym_override_modifier, + STATE(4927), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5398), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(1241), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -293783,7 +276522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + ACTIONS(4433), 24, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293793,13 +276532,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -293812,50 +276547,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [41588] = 19, + [36731] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1259), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, + ACTIONS(4457), 1, + anon_sym_override, ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2660), 1, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5206), 1, + anon_sym_readonly, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2459), 1, sym_comment, - STATE(5690), 1, + STATE(3728), 1, + sym_override_modifier, + STATE(4588), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + ACTIONS(5252), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 27, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293865,12 +276605,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, @@ -293883,7 +276621,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [41678] = 14, + [36825] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3369), 1, + anon_sym_namespace, + ACTIONS(3371), 1, + anon_sym_import, + ACTIONS(3373), 1, + anon_sym_var, + ACTIONS(3375), 1, + anon_sym_let, + ACTIONS(3377), 1, + anon_sym_const, + ACTIONS(3379), 1, + anon_sym_class, + ACTIONS(3381), 1, + anon_sym_async, + ACTIONS(3383), 1, + anon_sym_function, + ACTIONS(3385), 1, + anon_sym_declare, + ACTIONS(3389), 1, + anon_sym_abstract, + ACTIONS(3393), 1, + anon_sym_interface, + ACTIONS(3395), 1, + anon_sym_enum, + ACTIONS(5256), 1, + anon_sym_STAR, + ACTIONS(5258), 1, + anon_sym_default, + ACTIONS(5260), 1, + anon_sym_type, + ACTIONS(5262), 1, + anon_sym_EQ, + ACTIONS(5264), 1, + anon_sym_as, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5269), 1, + anon_sym_RBRACE, + ACTIONS(5272), 1, + anon_sym_module, + STATE(2460), 1, + sym_comment, + STATE(5526), 1, + sym_declaration, + STATE(5528), 1, + sym_internal_module, + STATE(5856), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(6330), 1, + sym_export_clause, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + STATE(7784), 1, + sym_namespace_export, + ACTIONS(5210), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5802), 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, + [36949] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -293892,35 +276719,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5199), 1, + anon_sym_RBRACE, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_STAR, - STATE(2661), 1, + STATE(2461), 1, sym_comment, - STATE(5739), 1, + STATE(5433), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5402), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293932,6 +276762,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, @@ -293949,7 +276781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [41758] = 32, + [37037] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2959), 1, @@ -293958,60 +276790,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3359), 1, + ACTIONS(3369), 1, anon_sym_namespace, - ACTIONS(3361), 1, + ACTIONS(3371), 1, anon_sym_import, - ACTIONS(3363), 1, + ACTIONS(3373), 1, anon_sym_var, - ACTIONS(3365), 1, + ACTIONS(3375), 1, anon_sym_let, - ACTIONS(3367), 1, + ACTIONS(3377), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(3379), 1, anon_sym_class, - ACTIONS(3371), 1, + ACTIONS(3381), 1, anon_sym_async, - ACTIONS(3373), 1, + ACTIONS(3383), 1, anon_sym_function, - ACTIONS(3375), 1, + ACTIONS(3385), 1, anon_sym_declare, - ACTIONS(3379), 1, + ACTIONS(3389), 1, anon_sym_abstract, - ACTIONS(3383), 1, + ACTIONS(3393), 1, anon_sym_interface, - ACTIONS(3385), 1, + ACTIONS(3395), 1, anon_sym_enum, - ACTIONS(5241), 1, + ACTIONS(5256), 1, anon_sym_STAR, - ACTIONS(5243), 1, + ACTIONS(5258), 1, anon_sym_default, - ACTIONS(5245), 1, + ACTIONS(5260), 1, anon_sym_type, - ACTIONS(5247), 1, + ACTIONS(5262), 1, anon_sym_EQ, - ACTIONS(5249), 1, + ACTIONS(5264), 1, anon_sym_as, - ACTIONS(5257), 1, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5272), 1, anon_sym_module, - STATE(2662), 1, + ACTIONS(5274), 1, + anon_sym_RBRACE, + STATE(2462), 1, sym_comment, - STATE(5916), 1, - sym_internal_module, - STATE(5924), 1, + STATE(5526), 1, sym_declaration, - STATE(6130), 1, + STATE(5528), 1, + sym_internal_module, + STATE(5856), 1, aux_sym_export_statement_repeat1, - STATE(6406), 1, - sym_export_clause, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(8036), 1, + STATE(6330), 1, + sym_export_clause, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + STATE(7784), 1, sym_namespace_export, - ACTIONS(5404), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5208), 7, + ACTIONS(5210), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -294019,7 +276856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(6274), 13, + STATE(5802), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -294033,7 +276870,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [41874] = 14, + [37161] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -294042,35 +276879,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5215), 1, + anon_sym_RBRACE, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5408), 1, - anon_sym_STAR, - STATE(2663), 1, + STATE(2463), 1, sym_comment, - STATE(5573), 1, + STATE(5433), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5410), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -294082,6 +276922,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, @@ -294099,7 +276941,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [41954] = 14, + [37249] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3369), 1, + anon_sym_namespace, + ACTIONS(3371), 1, + anon_sym_import, + ACTIONS(3373), 1, + anon_sym_var, + ACTIONS(3375), 1, + anon_sym_let, + ACTIONS(3377), 1, + anon_sym_const, + ACTIONS(3379), 1, + anon_sym_class, + ACTIONS(3381), 1, + anon_sym_async, + ACTIONS(3383), 1, + anon_sym_function, + ACTIONS(3385), 1, + anon_sym_declare, + ACTIONS(3389), 1, + anon_sym_abstract, + ACTIONS(3393), 1, + anon_sym_interface, + ACTIONS(3395), 1, + anon_sym_enum, + ACTIONS(5256), 1, + anon_sym_STAR, + ACTIONS(5258), 1, + anon_sym_default, + ACTIONS(5260), 1, + anon_sym_type, + ACTIONS(5262), 1, + anon_sym_EQ, + ACTIONS(5264), 1, + anon_sym_as, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5272), 1, + anon_sym_module, + ACTIONS(5277), 1, + anon_sym_RBRACE, + STATE(2464), 1, + sym_comment, + STATE(5526), 1, + sym_declaration, + STATE(5528), 1, + sym_internal_module, + STATE(5856), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(6330), 1, + sym_export_clause, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + STATE(7784), 1, + sym_namespace_export, + ACTIONS(5210), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5802), 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, + [37373] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -294108,35 +277039,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5218), 1, + anon_sym_RBRACE, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5412), 1, - anon_sym_STAR, - STATE(2664), 1, + STATE(2465), 1, sym_comment, - STATE(5525), 1, + STATE(5433), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5414), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -294148,6 +277082,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, @@ -294165,56 +277101,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42034] = 15, + [37461] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5400), 1, - anon_sym_STAR, - ACTIONS(5416), 1, - anon_sym_async, - STATE(2665), 1, + ACTIONS(5212), 1, + anon_sym_RBRACE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2466), 1, sym_comment, - STATE(4745), 1, + STATE(5433), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5418), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 27, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -294232,61 +277172,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42116] = 15, + [37549] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3369), 1, + anon_sym_namespace, + ACTIONS(3371), 1, + anon_sym_import, + ACTIONS(3373), 1, + anon_sym_var, + ACTIONS(3375), 1, + anon_sym_let, + ACTIONS(3377), 1, + anon_sym_const, + ACTIONS(3379), 1, + anon_sym_class, + ACTIONS(3381), 1, + anon_sym_async, + ACTIONS(3383), 1, + anon_sym_function, + ACTIONS(3385), 1, + anon_sym_declare, + ACTIONS(3389), 1, + anon_sym_abstract, + ACTIONS(3393), 1, + anon_sym_interface, + ACTIONS(3395), 1, + anon_sym_enum, + ACTIONS(5256), 1, + anon_sym_STAR, + ACTIONS(5258), 1, + anon_sym_default, + ACTIONS(5260), 1, + anon_sym_type, + ACTIONS(5262), 1, + anon_sym_EQ, + ACTIONS(5264), 1, + anon_sym_as, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5272), 1, + anon_sym_module, + ACTIONS(5280), 1, + anon_sym_RBRACE, + STATE(2467), 1, + sym_comment, + STATE(5526), 1, + sym_declaration, + STATE(5528), 1, + sym_internal_module, + STATE(5856), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(6330), 1, + sym_export_clause, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + STATE(7784), 1, + sym_namespace_export, + ACTIONS(5210), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5802), 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, + [37673] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3369), 1, + anon_sym_namespace, + ACTIONS(3371), 1, + anon_sym_import, + ACTIONS(3373), 1, + anon_sym_var, + ACTIONS(3375), 1, + anon_sym_let, + ACTIONS(3377), 1, + anon_sym_const, + ACTIONS(3379), 1, + anon_sym_class, + ACTIONS(3381), 1, + anon_sym_async, + ACTIONS(3383), 1, + anon_sym_function, + ACTIONS(3385), 1, + anon_sym_declare, + ACTIONS(3389), 1, + anon_sym_abstract, + ACTIONS(3393), 1, + anon_sym_interface, + ACTIONS(3395), 1, + anon_sym_enum, + ACTIONS(5256), 1, + anon_sym_STAR, + ACTIONS(5258), 1, + anon_sym_default, + ACTIONS(5260), 1, + anon_sym_type, + ACTIONS(5262), 1, + anon_sym_EQ, + ACTIONS(5264), 1, + anon_sym_as, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5272), 1, + anon_sym_module, + ACTIONS(5283), 1, + anon_sym_RBRACE, + STATE(2468), 1, + sym_comment, + STATE(5526), 1, + sym_declaration, + STATE(5528), 1, + sym_internal_module, + STATE(5856), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(6330), 1, + sym_export_clause, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7784), 1, + sym_namespace_export, + ACTIONS(5210), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5802), 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, + [37797] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3369), 1, + anon_sym_namespace, + ACTIONS(3371), 1, + anon_sym_import, + ACTIONS(3373), 1, + anon_sym_var, + ACTIONS(3375), 1, + anon_sym_let, + ACTIONS(3377), 1, + anon_sym_const, + ACTIONS(3379), 1, + anon_sym_class, + ACTIONS(3381), 1, + anon_sym_async, + ACTIONS(3383), 1, + anon_sym_function, + ACTIONS(3385), 1, + anon_sym_declare, + ACTIONS(3389), 1, + anon_sym_abstract, + ACTIONS(3393), 1, + anon_sym_interface, + ACTIONS(3395), 1, + anon_sym_enum, + ACTIONS(5256), 1, + anon_sym_STAR, + ACTIONS(5258), 1, + anon_sym_default, + ACTIONS(5260), 1, + anon_sym_type, + ACTIONS(5262), 1, + anon_sym_EQ, + ACTIONS(5264), 1, + anon_sym_as, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5272), 1, + anon_sym_module, + ACTIONS(5286), 1, + anon_sym_RBRACE, + STATE(2469), 1, + sym_comment, + STATE(5526), 1, + sym_declaration, + STATE(5528), 1, + sym_internal_module, + STATE(5856), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(6330), 1, + sym_export_clause, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + STATE(7784), 1, + sym_namespace_export, + ACTIONS(5210), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5802), 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, + [37921] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5420), 1, - anon_sym_STAR, - ACTIONS(5422), 1, - anon_sym_async, - STATE(2666), 1, + ACTIONS(5289), 1, + anon_sym_static, + ACTIONS(5291), 1, + anon_sym_readonly, + ACTIONS(5293), 1, + anon_sym_abstract, + STATE(2470), 1, sym_comment, - STATE(4792), 1, + STATE(3663), 1, + sym_accessibility_modifier, + STATE(3826), 1, + sym_override_modifier, + STATE(4768), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5424), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(1241), 8, + 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(4431), 27, + ACTIONS(4433), 24, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -294299,48 +277512,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42198] = 11, + [38013] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, - ACTIONS(5197), 1, - anon_sym_RBRACE, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - STATE(2667), 1, + ACTIONS(5224), 1, + anon_sym_RBRACE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2471), 1, sym_comment, - STATE(6997), 1, + STATE(5433), 1, + sym__property_name, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(1247), 6, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2588), 36, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -294362,48 +277583,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42272] = 11, + [38101] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, + ACTIONS(74), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(4824), 1, + anon_sym_LBRACK, + ACTIONS(5297), 1, anon_sym_COMMA, - ACTIONS(5197), 1, + ACTIONS(5299), 1, anon_sym_RBRACE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2668), 1, + STATE(2472), 1, sym_comment, - STATE(6997), 1, + STATE(6895), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2586), 36, + STATE(8032), 1, + sym__property_name, + STATE(8033), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + STATE(6894), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(5295), 30, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -294425,51 +277654,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42346] = 14, + [38190] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5420), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5301), 1, anon_sym_STAR, - STATE(2669), 1, + ACTIONS(5303), 1, + anon_sym_async, + ACTIONS(5307), 1, + anon_sym_abstract, + STATE(2473), 1, sym_comment, - STATE(5659), 1, + STATE(4491), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5426), 2, + ACTIONS(5305), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, + 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(2934), 28, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -294491,117 +277723,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42426] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2670), 1, - sym_comment, - ACTIONS(2474), 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(2476), 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, - [42488] = 14, + [38275] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1245), 1, + anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5428), 1, + ACTIONS(5309), 1, anon_sym_STAR, - STATE(2671), 1, + STATE(2474), 1, sym_comment, - STATE(5700), 1, + STATE(3748), 1, + sym_override_modifier, + STATE(5461), 1, sym__property_name, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5430), 2, + ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, + ACTIONS(2934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -294614,34 +277798,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42568] = 19, + [38372] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, + ACTIONS(1261), 1, + anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, ACTIONS(2939), 1, anon_sym_async, - ACTIONS(5192), 1, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5309), 1, anon_sym_STAR, - ACTIONS(5346), 1, - anon_sym_RBRACE, - STATE(2672), 1, + STATE(2475), 1, sym_comment, - STATE(5690), 1, + STATE(3748), 1, + sym_override_modifier, + STATE(5461), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, @@ -294649,15 +277839,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 27, + ACTIONS(2934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -294667,12 +277857,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, @@ -294685,46 +277873,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42658] = 15, + [38469] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5432), 1, + ACTIONS(5311), 1, anon_sym_STAR, - ACTIONS(5434), 1, + ACTIONS(5313), 1, anon_sym_async, - STATE(2673), 1, + ACTIONS(5317), 1, + anon_sym_abstract, + STATE(2476), 1, sym_comment, - STATE(4798), 1, + STATE(4498), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5436), 2, + ACTIONS(5315), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, + 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(4431), 27, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -294752,37 +277942,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42740] = 15, + [38554] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5225), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5338), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5319), 1, anon_sym_STAR, - ACTIONS(5340), 1, + ACTIONS(5321), 1, anon_sym_async, - STATE(2674), 1, + ACTIONS(5323), 1, + anon_sym_readonly, + STATE(2477), 1, sym_comment, - STATE(4747), 1, + STATE(3729), 1, + sym_override_modifier, + STATE(4554), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5344), 2, + ACTIONS(5325), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -294791,7 +277987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -294801,12 +277997,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, @@ -294819,57 +278013,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42822] = 11, + [38643] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, + ACTIONS(147), 1, anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5216), 1, + ACTIONS(1243), 1, anon_sym_RBRACE, - STATE(2675), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2478), 1, sym_comment, - STATE(6997), 1, + STATE(3748), 1, + sym_override_modifier, + STATE(5461), 1, + sym__property_name, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(1247), 6, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2588), 36, + ACTIONS(2934), 25, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -294882,57 +278088,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42896] = 11, + [38740] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5213), 1, - anon_sym_RBRACE, - STATE(2676), 1, + ACTIONS(5301), 1, + anon_sym_STAR, + ACTIONS(5303), 1, + anon_sym_async, + ACTIONS(5327), 1, + anon_sym_readonly, + STATE(2479), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 6, + STATE(3744), 1, + sym_override_modifier, + STATE(4491), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5305), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 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(2586), 36, + ACTIONS(4433), 25, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -294945,117 +278159,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [42970] = 31, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2959), 1, - anon_sym_LBRACE, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(3359), 1, - anon_sym_namespace, - ACTIONS(3361), 1, - anon_sym_import, - ACTIONS(3363), 1, - anon_sym_var, - ACTIONS(3365), 1, - anon_sym_let, - ACTIONS(3367), 1, - anon_sym_const, - ACTIONS(3369), 1, - anon_sym_class, - ACTIONS(3371), 1, - anon_sym_async, - ACTIONS(3373), 1, - anon_sym_function, - ACTIONS(3375), 1, - anon_sym_declare, - ACTIONS(3379), 1, - anon_sym_abstract, - ACTIONS(3383), 1, - anon_sym_interface, - ACTIONS(3385), 1, - anon_sym_enum, - ACTIONS(5241), 1, - anon_sym_STAR, - ACTIONS(5243), 1, - anon_sym_default, - ACTIONS(5245), 1, - anon_sym_type, - ACTIONS(5249), 1, - anon_sym_as, - ACTIONS(5257), 1, - anon_sym_module, - ACTIONS(5438), 1, - anon_sym_EQ, - STATE(2677), 1, - sym_comment, - STATE(5916), 1, - sym_internal_module, - STATE(5924), 1, - sym_declaration, - STATE(6130), 1, - aux_sym_export_statement_repeat1, - STATE(6406), 1, - sym_export_clause, - STATE(6589), 1, - sym_decorator, - STATE(8036), 1, - sym_namespace_export, - ACTIONS(5208), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(6274), 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, - [43084] = 19, + [38829] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, + ACTIONS(1220), 1, + anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, ACTIONS(2939), 1, anon_sym_async, - ACTIONS(5192), 1, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5309), 1, anon_sym_STAR, - ACTIONS(5336), 1, - anon_sym_RBRACE, - STATE(2678), 1, + STATE(2480), 1, sym_comment, - STATE(5690), 1, + STATE(3748), 1, + sym_override_modifier, + STATE(5461), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, @@ -295063,15 +278200,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 27, + ACTIONS(2934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295081,12 +278218,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, @@ -295099,60 +278234,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [43174] = 14, + [38926] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5390), 1, + ACTIONS(5309), 1, anon_sym_STAR, - STATE(2679), 1, + ACTIONS(5329), 1, + anon_sym_RBRACE, + STATE(2481), 1, sym_comment, - STATE(5571), 1, + STATE(3748), 1, + sym_override_modifier, + STATE(5461), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5440), 2, + ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, + ACTIONS(2934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -295165,46 +278309,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [43254] = 15, + [39023] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5360), 1, + ACTIONS(5331), 1, anon_sym_STAR, - ACTIONS(5362), 1, + ACTIONS(5333), 1, anon_sym_async, - STATE(2680), 1, + ACTIONS(5335), 1, + anon_sym_readonly, + STATE(2482), 1, sym_comment, - STATE(4726), 1, + STATE(3759), 1, + sym_override_modifier, + STATE(4561), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5364), 2, + ACTIONS(5337), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, + ACTIONS(1241), 8, 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(4431), 27, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295214,12 +278364,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, @@ -295232,55 +278380,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [43336] = 18, + [39112] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, - anon_sym_EQ, + ACTIONS(5210), 1, + sym__automatic_semicolon, ACTIONS(5227), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5233), 1, anon_sym_STAR, - ACTIONS(5346), 1, - anon_sym_RBRACE, - STATE(2681), 1, + ACTIONS(5237), 1, + anon_sym_async, + ACTIONS(5339), 1, + anon_sym_abstract, + STATE(2483), 1, sym_comment, - STATE(5690), 1, + STATE(4509), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5241), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 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, - ACTIONS(2934), 28, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -295302,7 +278449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [43424] = 18, + [39197] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -295313,53 +278460,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5309), 1, anon_sym_STAR, - ACTIONS(5336), 1, + ACTIONS(5341), 1, anon_sym_RBRACE, - STATE(2682), 1, + STATE(2484), 1, sym_comment, - STATE(5690), 1, + STATE(3748), 1, + sym_override_modifier, + STATE(5461), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(6902), 1, aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + ACTIONS(2934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -295372,37 +278524,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [43512] = 15, + [39294] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5376), 1, - anon_sym_STAR, - ACTIONS(5378), 1, - anon_sym_async, - STATE(2683), 1, + ACTIONS(5343), 1, + anon_sym_static, + ACTIONS(5345), 1, + anon_sym_readonly, + ACTIONS(5347), 1, + anon_sym_abstract, + STATE(2485), 1, sym_comment, - STATE(4746), 1, + STATE(3820), 1, + sym_override_modifier, + STATE(4936), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5380), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -295411,22 +278566,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 27, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -295439,109 +278594,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [43594] = 11, + [39381] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, + ACTIONS(147), 1, anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5219), 1, - anon_sym_RBRACE, - STATE(2684), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2586), 36, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, + ACTIONS(2269), 1, anon_sym_SQUOTE, + ACTIONS(2939), 1, anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, + ACTIONS(2941), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(2945), 1, 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [43668] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5376), 1, + ACTIONS(5309), 1, anon_sym_STAR, - ACTIONS(5378), 1, - anon_sym_async, - STATE(2685), 1, + ACTIONS(5349), 1, + anon_sym_RBRACE, + STATE(2486), 1, sym_comment, - STATE(4710), 1, + STATE(3748), 1, + sym_override_modifier, + STATE(5461), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5380), 2, + ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 27, + ACTIONS(2934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295551,12 +278653,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, @@ -295569,7 +278669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [43750] = 16, + [39478] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -295580,33 +278680,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(3774), 1, + ACTIONS(3768), 1, anon_sym_LBRACE, - ACTIONS(4808), 1, + ACTIONS(4824), 1, anon_sym_LBRACK, - STATE(2686), 1, + ACTIONS(5297), 1, + anon_sym_COMMA, + ACTIONS(5353), 1, + anon_sym_RBRACE, + STATE(2487), 1, sym_comment, - STATE(8206), 1, - sym__destructuring_pattern, - STATE(8207), 1, + STATE(6676), 1, + aux_sym_object_pattern_repeat1, + STATE(8032), 1, sym__property_name, + STATE(8033), 1, + sym__destructuring_pattern, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5444), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5164), 2, + STATE(4776), 2, sym_object_pattern, sym_array_pattern, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - STATE(7883), 3, + STATE(6675), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - ACTIONS(5442), 30, + ACTIONS(5351), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295637,35 +278740,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [43834] = 14, + [39567] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5446), 1, - anon_sym_STAR, - STATE(2687), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5355), 1, + anon_sym_static, + ACTIONS(5357), 1, + anon_sym_readonly, + ACTIONS(5359), 1, + anon_sym_abstract, + STATE(2488), 1, sym_comment, - STATE(5643), 1, + STATE(3779), 1, + sym_override_modifier, + STATE(4831), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5448), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -295674,7 +278782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295684,13 +278792,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, @@ -295703,52 +278810,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [43914] = 11, + [39654] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5222), 1, - anon_sym_RBRACE, - STATE(2688), 1, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_async, + ACTIONS(5367), 1, + anon_sym_abstract, + STATE(2489), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 6, + STATE(4486), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5365), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 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(2588), 36, + ACTIONS(4433), 27, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -295766,64 +278879,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [43988] = 18, + [39739] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5369), 1, anon_sym_STAR, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(2689), 1, + ACTIONS(5371), 1, + anon_sym_async, + ACTIONS(5373), 1, + anon_sym_readonly, + STATE(2490), 1, sym_comment, - STATE(5690), 1, + STATE(3758), 1, + sym_override_modifier, + STATE(4536), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5375), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -295836,52 +278950,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44076] = 11, + [39828] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, ACTIONS(5192), 1, - anon_sym_EQ, + anon_sym_STAR, ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, + anon_sym_EQ, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5222), 1, - anon_sym_RBRACE, - STATE(2690), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2491), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 6, + STATE(5433), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5231), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5252), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2586), 36, + ACTIONS(2934), 28, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -295899,35 +279019,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44150] = 14, + [39913] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5450), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5361), 1, anon_sym_STAR, - STATE(2691), 1, + ACTIONS(5363), 1, + anon_sym_async, + ACTIONS(5377), 1, + anon_sym_readonly, + STATE(2492), 1, sym_comment, - STATE(5718), 1, + STATE(3722), 1, + sym_override_modifier, + STATE(4487), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5452), 2, + ACTIONS(5365), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -295936,23 +279064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -295965,50 +279090,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44230] = 19, + [40002] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5311), 1, anon_sym_STAR, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(2692), 1, + ACTIONS(5313), 1, + anon_sym_async, + ACTIONS(5379), 1, + anon_sym_readonly, + STATE(2493), 1, sym_comment, - STATE(5690), 1, + STATE(3747), 1, + sym_override_modifier, + STATE(4497), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5315), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 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, - ACTIONS(2934), 27, + ACTIONS(4433), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296018,12 +279145,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, @@ -296036,51 +279161,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44320] = 14, + [40091] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5210), 1, sym__automatic_semicolon, ACTIONS(5227), 1, anon_sym_LBRACK, - ACTIONS(5328), 1, - anon_sym_STAR, - STATE(2693), 1, + STATE(2494), 1, sym_comment, - STATE(5669), 1, + STATE(4588), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5454), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(5252), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -296102,108 +279231,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44400] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2694), 1, - sym_comment, - ACTIONS(2438), 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(2440), 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, - [44462] = 14, + [40178] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5231), 1, + ACTIONS(5309), 1, anon_sym_STAR, - STATE(2695), 1, + ACTIONS(5349), 1, + anon_sym_RBRACE, + STATE(2495), 1, sym_comment, - STATE(5626), 1, + STATE(5461), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5456), 2, + ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + ACTIONS(2934), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -296225,51 +279302,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44542] = 14, + [40268] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5432), 1, + ACTIONS(5309), 1, anon_sym_STAR, - STATE(2696), 1, + ACTIONS(5329), 1, + anon_sym_RBRACE, + STATE(2496), 1, sym_comment, - STATE(5655), 1, + STATE(5461), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5458), 2, + ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2934), 28, + ACTIONS(2934), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -296291,7 +279373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44622] = 14, + [40358] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -296300,26 +279382,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5360), 1, + ACTIONS(5381), 1, anon_sym_STAR, - STATE(2697), 1, + STATE(2497), 1, sym_comment, - STATE(5712), 1, + STATE(5419), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5460), 2, + ACTIONS(5383), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -296357,7 +279439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44702] = 14, + [40438] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -296366,26 +279448,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5462), 1, + ACTIONS(5385), 1, anon_sym_STAR, - STATE(2698), 1, + STATE(2498), 1, sym_comment, - STATE(5654), 1, + STATE(5369), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5464), 2, + ACTIONS(5387), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -296423,52 +279505,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44782] = 15, + [40518] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5320), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5389), 1, anon_sym_STAR, - ACTIONS(5322), 1, - anon_sym_async, - STATE(2699), 1, + STATE(2499), 1, sym_comment, - STATE(4715), 1, + STATE(5380), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5326), 2, + ACTIONS(5391), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, + ACTIONS(1241), 8, 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(4431), 27, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -296490,56 +279571,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44864] = 15, + [40598] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5428), 1, - anon_sym_STAR, - ACTIONS(5466), 1, - anon_sym_async, - STATE(2700), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2500), 1, sym_comment, - STATE(4753), 1, + STATE(5433), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5468), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(5252), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -296557,52 +279637,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [44946] = 11, + [40678] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, ACTIONS(5210), 1, - anon_sym_RBRACE, - STATE(2701), 1, + sym__automatic_semicolon, + ACTIONS(5369), 1, + anon_sym_STAR, + ACTIONS(5371), 1, + anon_sym_async, + STATE(2501), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 6, + STATE(4536), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5375), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, + 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(2588), 36, + ACTIONS(4433), 27, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -296620,52 +279704,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45020] = 11, + [40760] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5194), 1, - anon_sym_COMMA, - ACTIONS(5208), 1, - sym__automatic_semicolon, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, ACTIONS(5210), 1, - anon_sym_RBRACE, - STATE(2702), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5393), 1, + anon_sym_STAR, + STATE(2502), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 6, + STATE(5412), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5395), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 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(2586), 36, + ACTIONS(2934), 28, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -296683,52 +279770,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45094] = 15, + [40840] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1245), 1, + anon_sym_RBRACE, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5446), 1, + ACTIONS(5309), 1, anon_sym_STAR, - ACTIONS(5470), 1, - anon_sym_async, - STATE(2703), 1, + STATE(2503), 1, sym_comment, - STATE(4719), 1, + STATE(5461), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5472), 2, + ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 27, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -296750,37 +279840,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45176] = 15, + [40928] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5328), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5397), 1, anon_sym_STAR, - ACTIONS(5330), 1, - anon_sym_async, - STATE(2704), 1, + STATE(2504), 1, sym_comment, - STATE(4763), 1, + STATE(5371), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5334), 2, + ACTIONS(5399), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -296789,13 +279877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4431), 27, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -296817,46 +279906,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45258] = 15, + [41008] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5386), 1, + ACTIONS(5401), 1, anon_sym_STAR, - ACTIONS(5474), 1, + ACTIONS(5403), 1, anon_sym_async, - STATE(2705), 1, + STATE(2505), 1, sym_comment, - STATE(4718), 1, + STATE(4582), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5476), 2, + ACTIONS(5405), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, + ACTIONS(1241), 8, 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(4431), 27, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296884,7 +279973,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45340] = 14, + [41090] = 31, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3369), 1, + anon_sym_namespace, + ACTIONS(3371), 1, + anon_sym_import, + ACTIONS(3373), 1, + anon_sym_var, + ACTIONS(3375), 1, + anon_sym_let, + ACTIONS(3377), 1, + anon_sym_const, + ACTIONS(3379), 1, + anon_sym_class, + ACTIONS(3381), 1, + anon_sym_async, + ACTIONS(3383), 1, + anon_sym_function, + ACTIONS(3385), 1, + anon_sym_declare, + ACTIONS(3389), 1, + anon_sym_abstract, + ACTIONS(3393), 1, + anon_sym_interface, + ACTIONS(3395), 1, + anon_sym_enum, + ACTIONS(5256), 1, + anon_sym_STAR, + ACTIONS(5258), 1, + anon_sym_default, + ACTIONS(5260), 1, + anon_sym_type, + ACTIONS(5264), 1, + anon_sym_as, + ACTIONS(5272), 1, + anon_sym_module, + ACTIONS(5407), 1, + anon_sym_EQ, + STATE(2506), 1, + sym_comment, + STATE(5526), 1, + sym_declaration, + STATE(5528), 1, + sym_internal_module, + STATE(5856), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(6330), 1, + sym_export_clause, + STATE(7784), 1, + sym_namespace_export, + ACTIONS(5210), 9, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5802), 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, + [41204] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2507), 1, + sym_comment, + ACTIONS(2366), 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(2368), 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, + [41266] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -296893,33 +280122,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2706), 1, + ACTIONS(5361), 1, + anon_sym_STAR, + STATE(2508), 1, sym_comment, - STATE(5693), 1, + STATE(5430), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5259), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5255), 2, + ACTIONS(5409), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 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(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296931,8 +280162,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, @@ -296950,33 +280179,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45420] = 11, + [41346] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5219), 1, + ACTIONS(5224), 1, anon_sym_RBRACE, - STATE(2707), 1, + STATE(2509), 1, sym_comment, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(1247), 6, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2588), 36, + ACTIONS(2592), 36, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -297013,55 +280242,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45494] = 18, + [41420] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, - ACTIONS(1259), 1, - anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5309), 1, anon_sym_STAR, - STATE(2708), 1, + ACTIONS(5341), 1, + anon_sym_RBRACE, + STATE(2510), 1, sym_comment, - STATE(5690), 1, + STATE(5461), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(6902), 1, aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + ACTIONS(2934), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -297083,70 +280313,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45582] = 24, + [41510] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(139), 1, - anon_sym_STAR, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2508), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5227), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5480), 1, - anon_sym_COMMA, - ACTIONS(5482), 1, - anon_sym_RBRACE, - ACTIONS(5484), 1, - anon_sym_async, - ACTIONS(5486), 1, - anon_sym_static, - ACTIONS(5488), 1, - anon_sym_readonly, - ACTIONS(5494), 1, - anon_sym_override, - STATE(2709), 1, + ACTIONS(5401), 1, + anon_sym_STAR, + STATE(2511), 1, sym_comment, - STATE(3855), 1, - sym_accessibility_modifier, - STATE(3872), 1, - sym_override_modifier, - STATE(5406), 1, + STATE(5393), 1, sym__property_name, - STATE(7201), 1, - aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5490), 2, + ACTIONS(5411), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(5492), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7097), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5478), 21, + ACTIONS(1241), 8, + 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(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + 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, @@ -297159,7 +280379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45682] = 14, + [41590] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -297168,26 +280388,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5320), 1, + ACTIONS(5413), 1, anon_sym_STAR, - STATE(2710), 1, + STATE(2512), 1, sym_comment, - STATE(5561), 1, + STATE(5320), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5496), 2, + ACTIONS(5415), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -297225,52 +280445,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45762] = 20, + [41670] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(2941), 1, - anon_sym_readonly, - ACTIONS(2945), 1, - anon_sym_override, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5413), 1, anon_sym_STAR, - ACTIONS(5480), 1, - anon_sym_COMMA, - ACTIONS(5498), 1, - anon_sym_RBRACE, - STATE(2711), 1, + ACTIONS(5417), 1, + anon_sym_async, + STATE(2513), 1, sym_comment, - STATE(3870), 1, - sym_override_modifier, - STATE(5690), 1, + STATE(4484), 1, sym__property_name, - STATE(7093), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5419), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 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, - ACTIONS(2934), 25, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297280,10 +280494,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, @@ -297296,39 +280512,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45853] = 12, + [41752] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2712), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + ACTIONS(5341), 1, + anon_sym_RBRACE, + STATE(2514), 1, sym_comment, - STATE(5561), 1, + STATE(5461), 1, sym__property_name, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297340,8 +280565,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, @@ -297359,39 +280582,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [45928] = 12, + [41840] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2713), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + ACTIONS(5349), 1, + anon_sym_RBRACE, + STATE(2515), 1, sym_comment, - STATE(5525), 1, + STATE(5461), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297403,8 +280635,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, @@ -297422,7 +280652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46003] = 12, + [41928] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -297431,30 +280661,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2714), 1, + ACTIONS(5331), 1, + anon_sym_STAR, + STATE(2516), 1, sym_comment, - STATE(5626), 1, + STATE(5407), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5421), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, + ACTIONS(1241), 8, 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(2934), 30, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297466,8 +280701,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, @@ -297485,48 +280718,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46078] = 12, + [42008] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2715), 1, - sym_comment, - STATE(5571), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5221), 1, anon_sym_RBRACE, + STATE(2517), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, + ACTIONS(2592), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -297548,30 +280781,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46153] = 12, + [42082] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(2716), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5381), 1, + anon_sym_STAR, + ACTIONS(5423), 1, + anon_sym_async, + STATE(2518), 1, sym_comment, - STATE(5643), 1, + STATE(4516), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5425), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -297580,20 +280820,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297611,52 +280848,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46228] = 12, + [42164] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(2717), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5381), 1, + anon_sym_STAR, + ACTIONS(5423), 1, + anon_sym_async, + STATE(2519), 1, sym_comment, - STATE(5573), 1, + STATE(4483), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5425), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, + 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(2934), 30, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297674,43 +280915,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46303] = 16, + [42246] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, - ACTIONS(1259), 1, - anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2718), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + ACTIONS(5329), 1, + anon_sym_RBRACE, + STATE(2520), 1, sym_comment, - STATE(5690), 1, + STATE(5461), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297722,8 +280968,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, @@ -297741,52 +280985,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46386] = 12, + [42334] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, ACTIONS(5227), 1, anon_sym_LBRACK, - STATE(2719), 1, + ACTIONS(5331), 1, + anon_sym_STAR, + ACTIONS(5333), 1, + anon_sym_async, + STATE(2521), 1, sym_comment, - STATE(5718), 1, + STATE(4561), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5337), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, + ACTIONS(1241), 8, 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(2934), 30, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297804,7 +281052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46461] = 12, + [42416] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -297813,21 +281061,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2720), 1, + ACTIONS(5319), 1, + anon_sym_STAR, + STATE(2522), 1, sym_comment, - STATE(5700), 1, + STATE(5318), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5427), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -297836,7 +281089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297848,8 +281101,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, @@ -297867,52 +281118,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46536] = 12, + [42496] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1220), 1, + anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2721), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2523), 1, sym_comment, - STATE(5727), 1, + STATE(5461), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297930,52 +281189,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46611] = 12, + [42586] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1245), 1, + anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2722), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2524), 1, sym_comment, - STATE(5739), 1, + STATE(5461), 1, sym__property_name, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297993,39 +281260,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46686] = 12, + [42676] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1220), 1, + anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2723), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2525), 1, sym_comment, - STATE(5717), 1, + STATE(5461), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298037,8 +281313,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, @@ -298056,7 +281330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46761] = 12, + [42764] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -298065,21 +281339,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2724), 1, + ACTIONS(5429), 1, + anon_sym_STAR, + STATE(2526), 1, sym_comment, - STATE(5703), 1, + STATE(5347), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5431), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -298088,7 +281367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298100,8 +281379,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, @@ -298119,39 +281396,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46836] = 12, + [42844] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1243), 1, + anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2725), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2527), 1, sym_comment, - STATE(5712), 1, + STATE(5461), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298163,8 +281449,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, @@ -298182,46 +281466,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46911] = 6, + [42932] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5208), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, sym__automatic_semicolon, - STATE(2726), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5369), 1, + anon_sym_STAR, + STATE(2528), 1, sym_comment, - ACTIONS(1247), 10, - anon_sym_EQ, + STATE(5398), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5433), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, 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(2586), 36, + ACTIONS(2934), 28, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -298239,30 +281532,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [46974] = 12, + [43012] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - STATE(2727), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5435), 1, + anon_sym_STAR, + STATE(2529), 1, sym_comment, - STATE(5040), 1, + STATE(5414), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + ACTIONS(5437), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -298271,7 +281569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298283,8 +281581,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, @@ -298302,52 +281598,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [47049] = 12, + [43092] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1243), 1, + anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2728), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2530), 1, sym_comment, - STATE(5552), 1, + STATE(5461), 1, sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -298365,30 +281669,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [47124] = 12, + [43182] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(2729), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5397), 1, + anon_sym_STAR, + ACTIONS(5439), 1, + anon_sym_async, + STATE(2531), 1, sym_comment, - STATE(5533), 1, + STATE(4533), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5441), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -298397,20 +281708,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -298428,22 +281736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [47199] = 9, + [43264] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5502), 1, - anon_sym_DOT, - ACTIONS(5504), 1, - anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_is, - STATE(2730), 1, + STATE(2532), 1, sym_comment, - STATE(2810), 1, - sym_type_arguments, - ACTIONS(5500), 12, + ACTIONS(2482), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298454,81 +281754,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4595), 31, + anon_sym_QMARK, + ACTIONS(2484), 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_RPAREN, anon_sym_of, + anon_sym_while, + anon_sym_SEMI, 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, - [47268] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5504), 1, - anon_sym_LT, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5510), 1, anon_sym_DOT, - STATE(2731), 1, - sym_comment, - STATE(2823), 1, - sym_arguments, - STATE(2824), 1, - sym_type_arguments, - ACTIONS(4535), 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(4531), 30, - 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -298548,57 +281792,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_implements, - [47339] = 16, + anon_sym_PIPE_RBRACE, + [43326] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1226), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(2732), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5389), 1, + anon_sym_STAR, + ACTIONS(5443), 1, + anon_sym_async, + STATE(2533), 1, sym_comment, - STATE(5690), 1, + STATE(4538), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5445), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -298616,7 +281860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [47422] = 19, + [43408] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -298625,55 +281869,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(2941), 1, - anon_sym_readonly, - ACTIONS(2945), 1, - anon_sym_override, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5447), 1, anon_sym_STAR, - STATE(2733), 1, + STATE(2534), 1, sym_comment, - STATE(3870), 1, - sym_override_modifier, - STATE(5690), 1, + STATE(5472), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5449), 2, anon_sym_get, anon_sym_set, - ACTIONS(5512), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 25, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + 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, @@ -298686,48 +281926,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [47511] = 12, + [43488] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2734), 1, - sym_comment, - STATE(5659), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5215), 1, anon_sym_RBRACE, + STATE(2535), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, + ACTIONS(2592), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -298749,43 +281989,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [47586] = 16, + [43562] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1255), 1, - anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2735), 1, + ACTIONS(5451), 1, + anon_sym_STAR, + STATE(2536), 1, sym_comment, - STATE(5690), 1, + STATE(5437), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5453), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 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, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298797,8 +282038,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, @@ -298816,7 +282055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [47669] = 12, + [43642] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -298825,21 +282064,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2736), 1, + ACTIONS(5301), 1, + anon_sym_STAR, + STATE(2537), 1, sym_comment, - STATE(5716), 1, + STATE(5326), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5455), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -298848,7 +282092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298860,8 +282104,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, @@ -298879,178 +282121,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [47744] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5504), 1, - anon_sym_LT, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5519), 1, - anon_sym_DOT, - STATE(2737), 1, - sym_comment, - STATE(2825), 1, - sym_arguments, - STATE(2826), 1, - sym_type_arguments, - ACTIONS(5515), 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(5517), 30, - 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_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, - [47815] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5504), 1, - anon_sym_LT, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5525), 1, - anon_sym_DOT, - STATE(2738), 1, - sym_comment, - STATE(2827), 1, - sym_arguments, - STATE(2828), 1, - sym_type_arguments, - ACTIONS(5521), 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(5523), 30, - 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_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, - [47886] = 16, + [43722] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1253), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(2739), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5301), 1, + anon_sym_STAR, + ACTIONS(5303), 1, + anon_sym_async, + STATE(2538), 1, sym_comment, - STATE(5690), 1, + STATE(4491), 1, sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5305), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 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, - ACTIONS(2934), 30, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -299068,43 +282188,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [47969] = 16, + [43804] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, + ACTIONS(1261), 1, + anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(2740), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2539), 1, sym_comment, - STATE(5690), 1, + STATE(5461), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7210), 1, + STATE(7047), 1, aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -299116,8 +282241,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, @@ -299135,48 +282258,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [48052] = 12, + [43892] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2741), 1, - sym_comment, - STATE(5669), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5212), 1, anon_sym_RBRACE, + STATE(2540), 1, + sym_comment, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, + ACTIONS(2596), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -299198,48 +282321,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [48127] = 12, + [43966] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2742), 1, - sym_comment, - STATE(5644), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, + ACTIONS(5199), 1, anon_sym_RBRACE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2541), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, + ACTIONS(2592), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -299261,52 +282384,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [48202] = 12, + [44040] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(2743), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5451), 1, + anon_sym_STAR, + ACTIONS(5457), 1, + anon_sym_async, + STATE(2542), 1, sym_comment, - STATE(5654), 1, + STATE(4524), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5459), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(1241), 8, + 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(2934), 30, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -299324,48 +282451,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [48277] = 12, + [44122] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2744), 1, - sym_comment, - STATE(5131), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + ACTIONS(5194), 1, anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(5199), 1, + anon_sym_RBRACE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2543), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 30, + anon_sym_PIPE_RBRACE, + ACTIONS(2596), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -299387,56 +282514,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [48352] = 16, + [44196] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, + ACTIONS(1261), 1, + anon_sym_RBRACE, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5346), 1, - anon_sym_RBRACE, - STATE(2745), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2544), 1, sym_comment, - STATE(5690), 1, + STATE(5461), 1, sym__property_name, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -299454,48 +282585,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [48435] = 12, + [44286] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5208), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2746), 1, + ACTIONS(5218), 1, + anon_sym_RBRACE, + STATE(2545), 1, sym_comment, - STATE(5655), 1, - sym__property_name, - ACTIONS(2930), 2, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2596), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 8, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44360] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5218), 1, anon_sym_RBRACE, + STATE(2546), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2934), 30, + ACTIONS(2592), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -299517,58 +282711,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [48510] = 22, + [44434] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(139), 1, - anon_sym_STAR, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2508), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5531), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5319), 1, + anon_sym_STAR, + ACTIONS(5321), 1, anon_sym_async, - ACTIONS(5533), 1, - anon_sym_static, - ACTIONS(5535), 1, - anon_sym_readonly, - ACTIONS(5541), 1, - anon_sym_override, - STATE(2747), 1, + STATE(2547), 1, sym_comment, - STATE(3855), 1, - sym_accessibility_modifier, - STATE(3872), 1, - sym_override_modifier, - STATE(5406), 1, + STATE(4554), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5529), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5537), 2, + ACTIONS(5325), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(5539), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(7729), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(5527), 21, + ACTIONS(1241), 8, + 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(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -299577,7 +282759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -299590,116 +282778,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [48605] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5504), 1, - anon_sym_LT, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5551), 1, - anon_sym_QMARK_DOT, - STATE(2748), 1, - sym_comment, - STATE(2963), 1, - sym_type_arguments, - STATE(3108), 1, - sym_arguments, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5543), 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(5545), 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, - [48682] = 16, + [44516] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5192), 1, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(5336), 1, + ACTIONS(5196), 1, + anon_sym_COMMA, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5212), 1, anon_sym_RBRACE, - STATE(2749), 1, + STATE(2548), 1, sym_comment, - STATE(5690), 1, - sym__property_name, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(6902), 1, aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 4, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + anon_sym_PIPE_RBRACE, + ACTIONS(2592), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -299721,107 +282841,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [48765] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - STATE(2750), 1, - sym_comment, - STATE(3148), 2, - sym_template_string, - sym_arguments, - ACTIONS(5553), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5555), 29, - 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_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, - [48831] = 18, + [44590] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(2941), 1, - anon_sym_readonly, - ACTIONS(2945), 1, - anon_sym_override, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5381), 1, anon_sym_STAR, - STATE(2751), 1, + ACTIONS(5423), 1, + anon_sym_async, + STATE(2549), 1, sym_comment, - STATE(3870), 1, - sym_override_modifier, - STATE(5690), 1, + STATE(4525), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5425), 2, anon_sym_get, anon_sym_set, - ACTIONS(5559), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 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, - ACTIONS(2934), 25, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -299831,10 +282890,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, @@ -299847,191 +282908,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [48917] = 6, + [44672] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5506), 1, - anon_sym_is, - STATE(2752), 1, - sym_comment, - ACTIONS(5561), 13, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5461), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5563), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5463), 1, + anon_sym_async, + STATE(2550), 1, + sym_comment, + STATE(4535), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5465), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, 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, - anon_sym_extends, - anon_sym_implements, - [48979] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2753), 1, - sym_comment, - ACTIONS(4337), 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(5565), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_PIPE_RBRACE, + ACTIONS(4433), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [49039] = 5, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44754] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2754), 1, - sym_comment, - ACTIONS(2474), 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(2476), 32, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(74), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3768), 1, anon_sym_LBRACE, + ACTIONS(4824), 1, + anon_sym_LBRACK, + STATE(2551), 1, + sym_comment, + STATE(8032), 1, + sym__property_name, + STATE(8033), 1, + sym__destructuring_pattern, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5469), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + STATE(7770), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(5467), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [49099] = 6, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [44838] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2755), 1, - sym_comment, - ACTIONS(1247), 8, + ACTIONS(5194), 1, anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5221), 1, + anon_sym_RBRACE, + STATE(2552), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2588), 37, + anon_sym_PIPE_RBRACE, + ACTIONS(2596), 36, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -300068,159 +283106,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [49161] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2756), 1, - sym_comment, - ACTIONS(2438), 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(2440), 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, - [49221] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - STATE(2757), 1, - sym_comment, - STATE(2996), 1, - sym_statement_block, - ACTIONS(2297), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2303), 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, - [49285] = 17, + [44912] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5435), 1, anon_sym_STAR, - ACTIONS(5480), 1, - anon_sym_COMMA, - ACTIONS(5498), 1, - anon_sym_RBRACE, - STATE(2758), 1, + ACTIONS(5471), 1, + anon_sym_async, + STATE(2553), 1, sym_comment, - STATE(5690), 1, + STATE(4492), 1, sym__property_name, - STATE(7093), 1, - aux_sym_object_repeat1, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5473), 2, anon_sym_get, anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 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, - ACTIONS(2934), 27, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -300248,55 +283173,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [49369] = 16, + [44994] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - ACTIONS(5480), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, - ACTIONS(5498), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5224), 1, anon_sym_RBRACE, - STATE(2759), 1, + STATE(2554), 1, sym_comment, - STATE(5690), 1, - sym__property_name, - STATE(7093), 1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2943), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 28, + anon_sym_PIPE_RBRACE, + ACTIONS(2596), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -300314,99 +283236,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [49451] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5573), 1, - anon_sym_is, - STATE(2760), 1, - sym_comment, - ACTIONS(5569), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5571), 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, - [49513] = 15, + [45068] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5575), 1, - anon_sym_readonly, - STATE(2761), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5233), 1, + anon_sym_STAR, + STATE(2555), 1, sym_comment, - STATE(3923), 1, - sym_override_modifier, - STATE(5055), 1, + STATE(5413), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + ACTIONS(5475), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 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, - ACTIONS(4431), 28, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -300417,12 +283284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -300435,151 +283302,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [49593] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2762), 1, - sym_comment, - ACTIONS(5577), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5579), 33, - 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, - anon_sym_is, - [49653] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5581), 1, - sym__automatic_semicolon, - STATE(2763), 1, - sym_comment, - ACTIONS(2287), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2448), 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, - [49717] = 13, + [45148] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5583), 1, - anon_sym_abstract, - STATE(2764), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5461), 1, + anon_sym_STAR, + STATE(2556), 1, sym_comment, - STATE(5089), 1, + STATE(5356), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + ACTIONS(5477), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, + ACTIONS(1241), 8, 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(4431), 30, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -300591,8 +283351,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, @@ -300610,43 +283368,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [49793] = 15, + [45228] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5585), 1, - anon_sym_readonly, - STATE(2765), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5311), 1, + anon_sym_STAR, + STATE(2557), 1, sym_comment, - STATE(3935), 1, - sym_override_modifier, - STATE(5086), 1, + STATE(5451), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + ACTIONS(5479), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 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, - ACTIONS(4431), 28, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -300657,12 +283416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -300675,45 +283434,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [49873] = 16, + [45308] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5361), 1, anon_sym_STAR, - STATE(2766), 1, + ACTIONS(5363), 1, + anon_sym_async, + STATE(2558), 1, sym_comment, - STATE(5690), 1, + STATE(4519), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5365), 2, anon_sym_get, anon_sym_set, - ACTIONS(5512), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 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, - ACTIONS(2934), 27, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -300741,59 +283501,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [49955] = 15, + [45390] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5587), 1, - anon_sym_readonly, - STATE(2767), 1, - sym_comment, - STATE(3989), 1, - sym_override_modifier, - STATE(5131), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(5194), 1, anon_sym_EQ, + ACTIONS(5196), 1, anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5215), 1, + anon_sym_RBRACE, + STATE(2559), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 6, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 28, + anon_sym_PIPE_RBRACE, + ACTIONS(2596), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -300806,105 +283564,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [50035] = 5, + [45464] = 32, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2959), 1, + anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2768), 1, - sym_comment, - ACTIONS(2209), 13, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3369), 1, + anon_sym_namespace, + ACTIONS(3371), 1, + anon_sym_import, + ACTIONS(3373), 1, + anon_sym_var, + ACTIONS(3375), 1, + anon_sym_let, + ACTIONS(3377), 1, + anon_sym_const, + ACTIONS(3379), 1, + anon_sym_class, + ACTIONS(3381), 1, + anon_sym_async, + ACTIONS(3383), 1, + anon_sym_function, + ACTIONS(3385), 1, + anon_sym_declare, + ACTIONS(3389), 1, + anon_sym_abstract, + ACTIONS(3393), 1, + anon_sym_interface, + ACTIONS(3395), 1, + anon_sym_enum, + ACTIONS(5256), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2257), 33, - sym__ternary_qmark, + ACTIONS(5258), 1, + anon_sym_default, + ACTIONS(5260), 1, + anon_sym_type, + ACTIONS(5262), 1, + anon_sym_EQ, + ACTIONS(5264), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5272), 1, + anon_sym_module, + STATE(2560), 1, + sym_comment, + STATE(5526), 1, + sym_declaration, + STATE(5528), 1, + sym_internal_module, + STATE(5856), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(6330), 1, + sym_export_clause, + STATE(7784), 1, + sym_namespace_export, + ACTIONS(5481), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(5210), 7, + sym__automatic_semicolon, 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_extends, - anon_sym_implements, - anon_sym_is, - [50095] = 15, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5802), 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, + [45580] = 24, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(139), 1, + anon_sym_STAR, ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, + ACTIONS(2502), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2769), 1, + ACTIONS(5487), 1, + anon_sym_COMMA, + ACTIONS(5489), 1, + anon_sym_RBRACE, + ACTIONS(5491), 1, + anon_sym_async, + ACTIONS(5493), 1, + anon_sym_static, + ACTIONS(5495), 1, + anon_sym_readonly, + ACTIONS(5501), 1, + anon_sym_override, + STATE(2561), 1, sym_comment, - STATE(5690), 1, + STATE(3674), 1, + sym_accessibility_modifier, + STATE(3732), 1, + sym_override_modifier, + STATE(5089), 1, sym__property_name, + STATE(7089), 1, + aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, + ACTIONS(5497), 2, anon_sym_get, anon_sym_set, - ACTIONS(5512), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5255), 2, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(5499), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(7079), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5485), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [45680] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_async, + STATE(2562), 1, + sym_comment, + STATE(4520), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5365), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 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, - ACTIONS(2934), 28, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -300926,43 +283791,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [50175] = 8, + [45762] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5208), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, sym__automatic_semicolon, - STATE(2770), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2563), 1, sym_comment, - ACTIONS(5259), 2, + STATE(5369), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1247), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2588), 36, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -300984,95 +283854,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [50241] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5506), 1, - anon_sym_is, - STATE(2771), 1, - sym_comment, - ACTIONS(5589), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5591), 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, - [50303] = 13, + [45837] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5593), 1, - anon_sym_abstract, - STATE(2772), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2564), 1, sym_comment, - STATE(5131), 1, + STATE(5323), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 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, - ACTIONS(4431), 30, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301103,98 +283917,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [50379] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2773), 1, - sym_comment, - ACTIONS(4343), 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(5595), 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, - [50439] = 15, + [45912] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5597), 1, - anon_sym_readonly, - STATE(2774), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2565), 1, sym_comment, - STATE(3985), 1, - sym_override_modifier, - STATE(5038), 1, + STATE(5329), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 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, - ACTIONS(4431), 28, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301205,12 +283960,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, @@ -301223,39 +283980,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [50519] = 13, + [45987] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1261), 1, + anon_sym_RBRACE, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5599), 1, - anon_sym_abstract, - STATE(2775), 1, + STATE(2566), 1, sym_comment, - STATE(5064), 1, + STATE(5461), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1241), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301286,118 +284047,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [50595] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5504), 1, - anon_sym_LT, - STATE(2776), 1, - sym_comment, - STATE(2816), 1, - sym_type_arguments, - ACTIONS(5569), 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(5571), 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, - [50659] = 25, + [46070] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4455), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, anon_sym_override, - ACTIONS(4786), 1, - anon_sym_AT, - ACTIONS(5200), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5601), 1, + ACTIONS(5309), 1, anon_sym_STAR, - ACTIONS(5603), 1, - anon_sym_async, - ACTIONS(5605), 1, - anon_sym_static, - ACTIONS(5607), 1, - anon_sym_readonly, - ACTIONS(5611), 1, - anon_sym_declare, - ACTIONS(5613), 1, - anon_sym_abstract, - STATE(2777), 1, + STATE(2567), 1, sym_comment, - STATE(3157), 1, - sym_method_definition, - STATE(3631), 1, - sym_accessibility_modifier, - STATE(3812), 1, - aux_sym_export_statement_repeat1, - STATE(3894), 1, + STATE(3748), 1, sym_override_modifier, - STATE(3992), 1, - sym_decorator, - STATE(4729), 1, + STATE(5461), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5609), 2, + ACTIONS(2943), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + ACTIONS(5503), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4796), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(4431), 20, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301406,6 +284100,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, 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, @@ -301418,39 +284117,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [50759] = 13, + [46159] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - ACTIONS(5350), 1, - anon_sym_abstract, - STATE(2778), 1, + ACTIONS(5329), 1, + anon_sym_RBRACE, + STATE(2568), 1, sym_comment, - STATE(5040), 1, + STATE(5461), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1241), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301481,43 +284184,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [50835] = 15, + [46242] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5615), 1, - anon_sym_readonly, - STATE(2779), 1, + STATE(2569), 1, sym_comment, - STATE(3927), 1, - sym_override_modifier, - STATE(5040), 1, + STATE(4816), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 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, - ACTIONS(4431), 28, + ACTIONS(4433), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301528,12 +284227,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, @@ -301546,214 +284247,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [50915] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2780), 1, - sym_comment, - ACTIONS(4339), 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(5617), 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, - [50975] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5502), 1, - anon_sym_DOT, - ACTIONS(5504), 1, - anon_sym_LT, - STATE(2781), 1, - sym_comment, - STATE(2810), 1, - sym_type_arguments, - ACTIONS(5500), 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(4595), 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, - [51041] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2782), 1, - sym_comment, - STATE(2996), 1, - sym_statement_block, - ACTIONS(2297), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2303), 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, - [51107] = 8, + [46317] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5208), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, sym__automatic_semicolon, - STATE(2783), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2570), 1, sym_comment, - ACTIONS(5259), 2, + STATE(5320), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1247), 6, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2586), 36, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -301775,39 +284310,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [51173] = 13, + [46392] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - ACTIONS(5621), 1, - anon_sym_abstract, - STATE(2784), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2571), 1, sym_comment, - STATE(5148), 1, + STATE(5412), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 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, - ACTIONS(4431), 30, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301838,243 +284373,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [51249] = 8, + [46467] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - ACTIONS(5623), 1, - anon_sym_DOT, - STATE(2785), 1, - sym_comment, - STATE(2996), 1, - sym_statement_block, - ACTIONS(2297), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2303), 30, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, 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, + ACTIONS(5229), 1, 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, - [51315] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2786), 1, + STATE(2572), 1, sym_comment, - ACTIONS(5625), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5627), 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, - [51374] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, + STATE(5437), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(5635), 1, anon_sym_BANG, - ACTIONS(5637), 1, - anon_sym_RPAREN, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(2787), 1, - sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - STATE(8741), 1, - sym_type_annotation, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51499] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1255), 1, - anon_sym_RBRACE, - ACTIONS(5192), 1, - anon_sym_EQ, - STATE(2788), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 4, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2586), 36, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -302096,44 +284436,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [51568] = 10, + [46542] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2573), 1, + sym_comment, + STATE(5407), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, anon_sym_COMMA, - ACTIONS(1255), 1, anon_sym_RBRACE, - ACTIONS(5192), 1, - anon_sym_EQ, - STATE(2789), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 4, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2588), 36, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -302155,254 +284499,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [51637] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5683), 1, - anon_sym_QMARK, - ACTIONS(5685), 1, - anon_sym_extends, - STATE(2790), 1, - sym_comment, - ACTIONS(5679), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5681), 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, - anon_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, - [51700] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(5687), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(2791), 1, - sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - STATE(8278), 1, - sym_type_annotation, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51825] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2792), 1, - sym_comment, - ACTIONS(5689), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5691), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 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(4497), 29, - 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_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [51888] = 12, + [46617] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(139), 1, + anon_sym_STAR, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(2502), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2793), 1, + ACTIONS(5510), 1, + anon_sym_async, + ACTIONS(5512), 1, + anon_sym_static, + ACTIONS(5514), 1, + anon_sym_readonly, + ACTIONS(5520), 1, + anon_sym_override, + STATE(2574), 1, sym_comment, - STATE(5145), 1, + STATE(3674), 1, + sym_accessibility_modifier, + STATE(3732), 1, + sym_override_modifier, + STATE(5089), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + ACTIONS(5508), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5516), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(5518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(7638), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(5506), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -302415,416 +284572,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [51961] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2794), 1, - sym_comment, - ACTIONS(5693), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5695), 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, - [52020] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2795), 1, - sym_comment, - ACTIONS(5697), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5699), 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, - [52079] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [46712] = 16, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(2796), 1, - sym_comment, - ACTIONS(5561), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5563), 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, - [52138] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2797), 1, - sym_comment, - ACTIONS(5701), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5703), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(147), 1, 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, - [52197] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5705), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2798), 1, - sym_comment, - ACTIONS(5701), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5703), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5341), 1, 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, - anon_sym_extends, - anon_sym_implements, - [52258] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2799), 1, + STATE(2575), 1, sym_comment, - ACTIONS(5569), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5571), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(5461), 1, + sym__property_name, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, 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, - [52317] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2800), 1, - sym_comment, - ACTIONS(5707), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5709), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [52376] = 12, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46795] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - STATE(2801), 1, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2576), 1, sym_comment, - STATE(4983), 1, + STATE(5393), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, + ACTIONS(1241), 8, 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(4431), 30, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -302855,1059 +284702,430 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [52449] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2802), 1, - sym_comment, - ACTIONS(3558), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5711), 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, - [52508] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [46870] = 16, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5717), 1, - anon_sym_DOT, - STATE(2803), 1, - sym_comment, - ACTIONS(5713), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5715), 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, - [52569] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2804), 1, - sym_comment, - ACTIONS(5719), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5721), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(147), 1, anon_sym_COMMA, + ACTIONS(1220), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [52628] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2805), 1, + STATE(2577), 1, sym_comment, - ACTIONS(5723), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5725), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(5461), 1, + sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, 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, - [52687] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2806), 1, - sym_comment, - ACTIONS(5727), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5729), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [52746] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [46953] = 12, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5735), 1, - anon_sym_AMP, - STATE(2807), 1, - sym_comment, - ACTIONS(5731), 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(5733), 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, - [52807] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2808), 1, - sym_comment, - ACTIONS(5691), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5689), 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, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [52866] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2809), 1, + STATE(2578), 1, sym_comment, - ACTIONS(5737), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5739), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + STATE(5356), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, 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, - anon_sym_extends, - anon_sym_implements, - [52925] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2810), 1, - sym_comment, - ACTIONS(5741), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5743), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [52984] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47028] = 12, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5735), 1, - anon_sym_AMP, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_extends, - STATE(2811), 1, - sym_comment, - ACTIONS(5745), 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(5747), 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, - [53049] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5703), 1, - anon_sym_extends, - ACTIONS(5705), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(2812), 1, + STATE(2579), 1, sym_comment, - ACTIONS(5701), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5753), 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(5755), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + STATE(5347), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, + anon_sym_EQ, 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, - anon_sym_implements, - [53114] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5761), 1, - anon_sym_extends, - STATE(2813), 1, - sym_comment, - ACTIONS(5757), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5759), 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, - anon_sym_implements, - [53175] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5705), 1, - anon_sym_LBRACK, - STATE(2814), 1, - sym_comment, - ACTIONS(5763), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5765), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [53236] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47103] = 12, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(5767), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(2815), 1, - sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - STATE(8708), 1, - sym_type_annotation, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [53361] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2816), 1, - sym_comment, - ACTIONS(5769), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5771), 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, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [53420] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2817), 1, + STATE(2580), 1, sym_comment, - ACTIONS(4423), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5773), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + STATE(5472), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, 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, - anon_sym_extends, - anon_sym_implements, - [53479] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2818), 1, - sym_comment, - ACTIONS(4421), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5775), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47178] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2581), 1, + sym_comment, + STATE(5318), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, 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, - anon_sym_extends, - anon_sym_implements, - [53538] = 5, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47253] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2819), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2582), 1, sym_comment, - ACTIONS(4413), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5777), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + STATE(4936), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, + 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_extends, - anon_sym_implements, - [53597] = 10, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47328] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5318), 1, - anon_sym_RBRACE, - STATE(2820), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2583), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 4, + STATE(5451), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 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, - ACTIONS(2588), 36, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -303929,29 +285147,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [53666] = 10, + [47403] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(5192), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2584), 1, + sym_comment, + ACTIONS(1241), 10, anon_sym_EQ, - ACTIONS(5318), 1, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2821), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 4, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2586), 36, + anon_sym_PIPE_RBRACE, + ACTIONS(2596), 36, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -303988,122 +285204,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [53735] = 5, + [47466] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2822), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2585), 1, sym_comment, - ACTIONS(3550), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5779), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + STATE(5430), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, + 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_extends, - anon_sym_implements, - [53794] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2823), 1, - sym_comment, - ACTIONS(5683), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5685), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [53853] = 5, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47541] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2824), 1, + ACTIONS(5524), 1, + anon_sym_DOT, + ACTIONS(5526), 1, + anon_sym_LT, + ACTIONS(5528), 1, + anon_sym_is, + STATE(2586), 1, sym_comment, - ACTIONS(5781), 13, + STATE(2784), 1, + sym_type_arguments, + ACTIONS(5522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304114,10 +285293,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(5783), 32, + ACTIONS(4603), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -304129,7 +285307,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, @@ -304150,454 +285327,365 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [53912] = 5, + [47610] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2825), 1, - sym_comment, - ACTIONS(5785), 13, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5309), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5787), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5487), 1, anon_sym_COMMA, + ACTIONS(5530), 1, anon_sym_RBRACE, + STATE(2587), 1, + sym_comment, + STATE(3748), 1, + sym_override_modifier, + STATE(5461), 1, + sym__property_name, + STATE(6517), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, 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, - [53971] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2826), 1, - sym_comment, - ACTIONS(5789), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5791), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [54030] = 5, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47701] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2827), 1, - sym_comment, - ACTIONS(5793), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5795), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(147), 1, anon_sym_COMMA, + ACTIONS(1245), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [54089] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2828), 1, + STATE(2588), 1, sym_comment, - 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(5799), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(5461), 1, + sym__property_name, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, 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, - [54148] = 9, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47784] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5711), 1, - anon_sym_extends, - STATE(2829), 1, - sym_comment, - ACTIONS(5801), 2, + ACTIONS(147), 1, anon_sym_COMMA, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5804), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2289), 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(2295), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5349), 1, anon_sym_RBRACE, + STATE(2589), 1, + sym_comment, + STATE(5461), 1, + sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [54215] = 9, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47867] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5725), 1, - anon_sym_extends, - ACTIONS(5809), 1, - anon_sym_EQ, - STATE(2830), 1, - sym_comment, - ACTIONS(5813), 2, + ACTIONS(147), 1, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5816), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5807), 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(5811), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1243), 1, anon_sym_RBRACE, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2590), 1, + sym_comment, + STATE(5461), 1, + sym__property_name, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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, - [54282] = 5, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [47950] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2831), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2591), 1, sym_comment, - 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(5821), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + STATE(5326), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, + 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_extends, - anon_sym_implements, - [54341] = 5, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48025] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2832), 1, - sym_comment, - ACTIONS(5823), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5526), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5825), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5538), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5542), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [54400] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2833), 1, + STATE(2592), 1, sym_comment, - ACTIONS(5827), 13, + STATE(2676), 1, + sym_type_arguments, + STATE(2925), 1, + sym_arguments, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5532), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304608,23 +285696,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(5829), 32, + ACTIONS(5534), 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, @@ -304642,16 +285725,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [54459] = 5, + [48102] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2834), 1, + ACTIONS(5526), 1, + anon_sym_LT, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5544), 1, + anon_sym_DOT, + STATE(2593), 1, sym_comment, - ACTIONS(5831), 13, + STATE(2818), 1, + sym_type_arguments, + STATE(2819), 1, + sym_arguments, + ACTIONS(4503), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304662,22 +285754,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(5833), 32, + ACTIONS(4499), 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, @@ -304698,44 +285787,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [54518] = 8, + [48173] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5735), 1, - anon_sym_AMP, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_extends, - STATE(2835), 1, + ACTIONS(5526), 1, + anon_sym_LT, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5550), 1, + anon_sym_DOT, + STATE(2594), 1, sym_comment, - ACTIONS(5831), 11, + STATE(2809), 1, + sym_type_arguments, + STATE(2810), 1, + sym_arguments, + ACTIONS(5546), 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(5833), 31, + ACTIONS(5548), 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, @@ -304754,15 +285846,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, - [54583] = 5, + [48244] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2836), 1, + ACTIONS(5526), 1, + anon_sym_LT, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5556), 1, + anon_sym_DOT, + STATE(2595), 1, sym_comment, - ACTIONS(4367), 13, + STATE(2773), 1, + sym_arguments, + STATE(2805), 1, + sym_type_arguments, + ACTIONS(5552), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304773,22 +285876,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(5835), 32, + ACTIONS(5554), 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, @@ -304809,68 +285909,655 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [54642] = 5, + [48315] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2596), 1, + sym_comment, + STATE(5413), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 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, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48390] = 12, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(2837), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2597), 1, sym_comment, - ACTIONS(4367), 13, - anon_sym_STAR, + STATE(5398), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, + 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48465] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2598), 1, + sym_comment, + STATE(5371), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, + 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(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48540] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2599), 1, + sym_comment, + STATE(5414), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, + 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(5835), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48615] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2600), 1, + sym_comment, + STATE(5380), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48690] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2601), 1, + sym_comment, + STATE(5419), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 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, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48765] = 25, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(4788), 1, + anon_sym_AT, + ACTIONS(5202), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [54701] = 5, + ACTIONS(5558), 1, + anon_sym_STAR, + ACTIONS(5560), 1, + anon_sym_async, + ACTIONS(5562), 1, + anon_sym_static, + ACTIONS(5564), 1, + anon_sym_readonly, + ACTIONS(5568), 1, + anon_sym_declare, + ACTIONS(5570), 1, + anon_sym_abstract, + STATE(2602), 1, + sym_comment, + STATE(3142), 1, + sym_method_definition, + STATE(3516), 1, + sym_accessibility_modifier, + STATE(3622), 1, + aux_sym_export_statement_repeat1, + STATE(3742), 1, + sym_override_modifier, + STATE(3811), 1, + sym_decorator, + STATE(4506), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5566), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4798), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(4433), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48865] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5572), 1, + anon_sym_readonly, + STATE(2603), 1, + sym_comment, + STATE(3816), 1, + sym_override_modifier, + STATE(4899), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [48945] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2604), 1, + sym_comment, + ACTIONS(1241), 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, + ACTIONS(2592), 37, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [49007] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5574), 1, + anon_sym_abstract, + STATE(2605), 1, + sym_comment, + STATE(4900), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49083] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2838), 1, + ACTIONS(5576), 1, + sym__automatic_semicolon, + STATE(2606), 1, sym_comment, - ACTIONS(4391), 13, + ACTIONS(2296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304884,7 +286571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5837), 32, + ACTIONS(2456), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -304915,16 +286602,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, - [54760] = 5, + [49147] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2839), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + STATE(2607), 1, sym_comment, - ACTIONS(4391), 13, + STATE(2887), 2, + sym_template_string, + sym_arguments, + ACTIONS(5578), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304938,13 +286631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5837), 32, + ACTIONS(5580), 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, @@ -304967,72 +286659,202 @@ 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, - [54819] = 5, + [49213] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5584), 1, + anon_sym_readonly, + STATE(2608), 1, + sym_comment, + STATE(3823), 1, + sym_override_modifier, + STATE(4910), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49293] = 13, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(2840), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5586), 1, + anon_sym_abstract, + STATE(2609), 1, sym_comment, - ACTIONS(4359), 13, - anon_sym_STAR, + STATE(4911), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + 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(5839), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49369] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2610), 1, + sym_comment, + ACTIONS(5252), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(1241), 6, 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(2592), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, 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, - [54878] = 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49435] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2841), 1, + STATE(2611), 1, sym_comment, - ACTIONS(5841), 13, + ACTIONS(5588), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305046,7 +286868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5843), 32, + ACTIONS(5590), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305079,21 +286901,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [54937] = 6, + anon_sym_is, + [49495] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2612), 1, + sym_comment, + ACTIONS(5252), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1241), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2596), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49561] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5309), 1, + anon_sym_STAR, + ACTIONS(5487), 1, + anon_sym_COMMA, + ACTIONS(5530), 1, + anon_sym_RBRACE, + STATE(2613), 1, + sym_comment, + STATE(5461), 1, + sym__property_name, + STATE(6517), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49645] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5309), 1, + anon_sym_STAR, + ACTIONS(5487), 1, + anon_sym_COMMA, + ACTIONS(5530), 1, + anon_sym_RBRACE, + STATE(2614), 1, + sym_comment, + STATE(5461), 1, + sym__property_name, + STATE(6517), 1, + aux_sym_object_repeat1, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49727] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5735), 1, - anon_sym_AMP, - STATE(2842), 1, + ACTIONS(5528), 1, + anon_sym_is, + STATE(2615), 1, sym_comment, - ACTIONS(5845), 12, + ACTIONS(5592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -305101,7 +287116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5847), 32, + ACTIONS(5594), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305134,14 +287149,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [54998] = 5, + [49789] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2843), 1, + ACTIONS(5600), 1, + anon_sym_is, + STATE(2616), 1, sym_comment, - ACTIONS(5849), 13, + ACTIONS(5596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305155,7 +287172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5851), 32, + ACTIONS(5598), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305188,14 +287205,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55057] = 5, + [49851] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2844), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + STATE(2617), 1, sym_comment, - ACTIONS(5589), 13, + STATE(2960), 1, + sym_statement_block, + ACTIONS(2288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305209,18 +287230,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5591), 32, + ACTIONS(2294), 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, @@ -305240,16 +287261,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [55116] = 5, + anon_sym_PIPE_RBRACE, + [49915] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2618), 1, + sym_comment, + STATE(5461), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5503), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [49995] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2845), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + ACTIONS(5604), 1, + anon_sym_DOT, + STATE(2619), 1, sym_comment, - ACTIONS(3548), 13, + STATE(2960), 1, + sym_statement_block, + ACTIONS(2288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305263,19 +287354,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5853), 32, + ACTIONS(2294), 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, @@ -305294,16 +287384,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [55175] = 5, + anon_sym_PIPE_RBRACE, + [50061] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5307), 1, + anon_sym_abstract, + STATE(2620), 1, + sym_comment, + STATE(4936), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50137] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5606), 1, + anon_sym_readonly, + STATE(2621), 1, + sym_comment, + STATE(3820), 1, + sym_override_modifier, + STATE(4936), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50217] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2846), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_DOT, + STATE(2622), 1, sym_comment, - ACTIONS(5855), 13, + STATE(2960), 1, + sym_statement_block, + ACTIONS(2288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305317,19 +287540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5857), 32, + ACTIONS(2294), 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, @@ -305348,16 +287570,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, - [55234] = 5, + anon_sym_PIPE_RBRACE, + [50283] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2847), 1, + ACTIONS(5524), 1, + anon_sym_DOT, + ACTIONS(5526), 1, + anon_sym_LT, + STATE(2623), 1, sym_comment, - ACTIONS(5859), 13, + STATE(2784), 1, + sym_type_arguments, + ACTIONS(5522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305368,10 +287595,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(5861), 32, + ACTIONS(4603), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305383,7 +287609,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, @@ -305404,14 +287629,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55293] = 5, + [50349] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2848), 1, + ACTIONS(5526), 1, + anon_sym_LT, + STATE(2624), 1, sym_comment, - ACTIONS(5863), 13, + STATE(2806), 1, + sym_type_arguments, + ACTIONS(5596), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305422,10 +287651,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(5865), 32, + ACTIONS(5598), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305458,14 +287686,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55352] = 5, + [50413] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2849), 1, + ACTIONS(5528), 1, + anon_sym_is, + STATE(2625), 1, sym_comment, - ACTIONS(5867), 13, + ACTIONS(5610), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305479,7 +287709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5869), 32, + ACTIONS(5612), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305512,14 +287742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55411] = 5, + [50475] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2850), 1, + STATE(2626), 1, sym_comment, - ACTIONS(5863), 13, + ACTIONS(4341), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305533,7 +287763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5865), 32, + anon_sym_QMARK, + ACTIONS(5614), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305566,14 +287797,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55470] = 5, + [50535] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2627), 1, + sym_comment, + STATE(3748), 1, + sym_override_modifier, + STATE(5461), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5616), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50621] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5618), 1, + anon_sym_abstract, + STATE(2628), 1, + sym_comment, + STATE(4824), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50697] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5620), 1, + anon_sym_readonly, + STATE(2629), 1, + sym_comment, + STATE(3771), 1, + sym_override_modifier, + STATE(4822), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50777] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2851), 1, + STATE(2630), 1, sym_comment, - ACTIONS(5867), 13, + ACTIONS(2211), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305587,7 +288014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5869), 32, + ACTIONS(2257), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305620,14 +288047,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55529] = 5, + anon_sym_is, + [50837] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5622), 1, + anon_sym_abstract, + STATE(2631), 1, + sym_comment, + STATE(4816), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50913] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + ACTIONS(5624), 1, + anon_sym_readonly, + STATE(2632), 1, + sym_comment, + STATE(3765), 1, + sym_override_modifier, + STATE(4816), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [50993] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2852), 1, + STATE(2633), 1, sym_comment, - ACTIONS(5871), 13, + ACTIONS(4347), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305641,7 +288197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5873), 32, + anon_sym_QMARK, + ACTIONS(5626), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305674,14 +288231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55588] = 5, + [51053] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2853), 1, + STATE(2634), 1, sym_comment, - ACTIONS(5875), 13, + ACTIONS(2366), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305695,7 +288252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 32, + anon_sym_QMARK, + ACTIONS(2368), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305728,14 +288286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55647] = 5, + [51113] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2854), 1, + STATE(2635), 1, sym_comment, - ACTIONS(5871), 13, + ACTIONS(4339), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305749,7 +288307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5873), 32, + anon_sym_QMARK, + ACTIONS(5628), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305782,14 +288341,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55706] = 5, + [51173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2855), 1, + STATE(2636), 1, sym_comment, - ACTIONS(5875), 13, + ACTIONS(2482), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305803,7 +288362,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 32, + anon_sym_QMARK, + ACTIONS(2484), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305836,7 +288396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55765] = 14, + [51233] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -305845,43 +288405,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5480), 1, - anon_sym_COMMA, - ACTIONS(5498), 1, - anon_sym_RBRACE, - STATE(2856), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2637), 1, sym_comment, - STATE(5690), 1, + STATE(5461), 1, sym__property_name, - STATE(7093), 1, - aux_sym_object_repeat1, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5503), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -305899,14 +288462,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [55842] = 5, + [51315] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2857), 1, + STATE(2638), 1, sym_comment, - ACTIONS(5879), 13, + ACTIONS(5630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305920,7 +288483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5881), 32, + ACTIONS(5632), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -305953,278 +288516,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [55901] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [51374] = 12, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(5883), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(2858), 1, - sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - STATE(8742), 1, - sym_type_annotation, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [56026] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2859), 1, - sym_comment, - ACTIONS(5885), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5887), 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, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [56085] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2860), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2639), 1, sym_comment, - ACTIONS(5879), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5881), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + STATE(4843), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, 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, - [56144] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2861), 1, - sym_comment, - ACTIONS(5885), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5887), 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_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_extends, - anon_sym_implements, - [56203] = 10, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [51447] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5346), 1, + ACTIONS(1261), 1, anon_sym_RBRACE, - STATE(2862), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + STATE(2640), 1, sym_comment, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2588), 36, + ACTIONS(2596), 36, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -306261,29 +288636,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [56272] = 10, + [51516] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5346), 1, + ACTIONS(1261), 1, anon_sym_RBRACE, - STATE(2863), 1, + ACTIONS(5194), 1, + anon_sym_EQ, + STATE(2641), 1, sym_comment, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2586), 36, + ACTIONS(2592), 36, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -306320,14 +288695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [56341] = 5, + [51585] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2864), 1, + STATE(2642), 1, sym_comment, - ACTIONS(5889), 13, + ACTIONS(5634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306341,7 +288716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5891), 32, + ACTIONS(5636), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -306374,14 +288749,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [56400] = 5, + [51644] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2865), 1, + STATE(2643), 1, sym_comment, - ACTIONS(5893), 13, + ACTIONS(5638), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306395,7 +288770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5895), 32, + ACTIONS(5640), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -306428,71 +288803,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [56459] = 8, + [51703] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5735), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5650), 1, + anon_sym_RPAREN, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5749), 1, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_extends, - STATE(2866), 1, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(2644), 1, sym_comment, - ACTIONS(5897), 11, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + STATE(8391), 1, + sym_type_annotation, + ACTIONS(5642), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5899), 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(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [56524] = 5, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51828] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2867), 1, + STATE(2645), 1, sym_comment, - ACTIONS(4379), 13, + ACTIONS(5638), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306506,7 +288911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 32, + ACTIONS(5640), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -306539,14 +288944,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [56583] = 5, + [51887] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2868), 1, + ACTIONS(5696), 1, + anon_sym_QMARK, + ACTIONS(5698), 1, + anon_sym_extends, + STATE(2646), 1, sym_comment, - ACTIONS(4381), 13, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306560,7 +288969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 32, + ACTIONS(5694), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -306568,7 +288977,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, @@ -306591,70 +288999,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [56642] = 5, + [51950] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2869), 1, - sym_comment, - ACTIONS(4383), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5905), 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, + ACTIONS(4586), 1, anon_sym_COLON, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(5700), 1, + anon_sym_RPAREN, + STATE(2607), 1, + sym_type_arguments, + STATE(2647), 1, + sym_comment, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + STATE(8272), 1, + sym_type_annotation, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [56701] = 5, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52075] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2870), 1, + STATE(2648), 1, sym_comment, - ACTIONS(5907), 13, + ACTIONS(5638), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306668,7 +289108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5909), 32, + ACTIONS(5640), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -306701,32 +289141,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [56760] = 8, + [52134] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5735), 1, - anon_sym_AMP, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_extends, - STATE(2871), 1, + STATE(2649), 1, sym_comment, - ACTIONS(5907), 11, + ACTIONS(5634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5909), 31, + ACTIONS(5636), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -306757,33 +289193,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, - [56825] = 8, + [52193] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5735), 1, - anon_sym_AMP, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_extends, - STATE(2872), 1, + STATE(2650), 1, sym_comment, - ACTIONS(5911), 11, + ACTIONS(5702), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5913), 31, + ACTIONS(5704), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -306814,21 +289247,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, - [56890] = 8, + [52252] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5735), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5749), 1, + ACTIONS(5712), 1, anon_sym_PIPE, - ACTIONS(5751), 1, + ACTIONS(5714), 1, anon_sym_extends, - STATE(2873), 1, + STATE(2651), 1, sym_comment, - ACTIONS(5915), 11, + ACTIONS(5706), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306840,7 +289274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5917), 31, + ACTIONS(5708), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -306872,14 +289306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56955] = 5, + [52317] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2874), 1, + STATE(2652), 1, sym_comment, - ACTIONS(3546), 13, + ACTIONS(5634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306893,7 +289327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5919), 32, + ACTIONS(5636), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -306926,68 +289360,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57014] = 5, + [52376] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2875), 1, - sym_comment, - ACTIONS(5921), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5923), 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, + ACTIONS(4586), 1, anon_sym_COLON, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(5716), 1, + anon_sym_RPAREN, + STATE(2607), 1, + sym_type_arguments, + STATE(2653), 1, + sym_comment, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + STATE(8300), 1, + sym_type_annotation, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [57073] = 5, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52501] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2876), 1, + STATE(2654), 1, sym_comment, - ACTIONS(5925), 13, + ACTIONS(5718), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307001,7 +289468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5927), 32, + ACTIONS(5720), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307034,14 +289501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57132] = 5, + [52560] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2877), 1, + STATE(2655), 1, sym_comment, - ACTIONS(5925), 13, + ACTIONS(5722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307055,7 +289522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5927), 32, + ACTIONS(5724), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307088,14 +289555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57191] = 5, + [52619] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2878), 1, + STATE(2656), 1, sym_comment, - ACTIONS(5925), 13, + ACTIONS(3490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307109,7 +289576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5927), 32, + ACTIONS(5726), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307142,14 +289609,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57250] = 5, + [52678] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2879), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(2657), 1, sym_comment, - ACTIONS(5929), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5728), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [52795] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2658), 1, + sym_comment, + ACTIONS(5730), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307163,7 +289713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5931), 32, + ACTIONS(5732), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307196,28 +289746,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57309] = 5, + [52854] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2880), 1, + ACTIONS(5710), 1, + anon_sym_AMP, + ACTIONS(5712), 1, + anon_sym_PIPE, + ACTIONS(5714), 1, + anon_sym_extends, + STATE(2659), 1, sym_comment, - ACTIONS(5929), 13, + ACTIONS(5734), 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(5931), 32, + ACTIONS(5736), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307248,16 +289802,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [57368] = 5, + [52919] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2881), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(5738), 1, + anon_sym_RPAREN, + STATE(2607), 1, + sym_type_arguments, + STATE(2660), 1, sym_comment, - ACTIONS(5929), 13, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + STATE(8362), 1, + sym_type_annotation, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [53044] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5598), 1, + anon_sym_extends, + STATE(2661), 1, + sym_comment, + ACTIONS(5734), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307271,7 +289913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5931), 32, + ACTIONS(5736), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307302,16 +289944,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, - [57427] = 5, + [53105] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2882), 1, + STATE(2662), 1, sym_comment, - ACTIONS(5933), 13, + ACTIONS(5740), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307325,7 +289966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5935), 32, + ACTIONS(5742), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307358,14 +289999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57486] = 5, + [53164] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2883), 1, + STATE(2663), 1, sym_comment, - ACTIONS(5933), 13, + ACTIONS(5744), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307379,7 +290020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5935), 32, + ACTIONS(5746), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307412,14 +290053,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57545] = 5, + [53223] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2664), 1, + sym_comment, + STATE(4929), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [53296] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2884), 1, + STATE(2665), 1, sym_comment, - ACTIONS(5933), 13, + ACTIONS(5702), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307433,7 +290135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5935), 32, + ACTIONS(5704), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307466,14 +290168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57604] = 5, + [53355] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2885), 1, + STATE(2666), 1, sym_comment, - ACTIONS(5937), 13, + ACTIONS(5592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307487,7 +290189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5939), 32, + ACTIONS(5594), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307520,14 +290222,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57663] = 5, + [53414] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2886), 1, + STATE(2667), 1, sym_comment, - ACTIONS(5941), 13, + ACTIONS(5748), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307541,7 +290243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5943), 32, + ACTIONS(5750), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307574,14 +290276,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57722] = 5, + [53473] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2887), 1, + ACTIONS(5752), 1, + anon_sym_LBRACK, + STATE(2668), 1, sym_comment, - ACTIONS(5945), 13, + ACTIONS(5748), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307595,7 +290299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5947), 32, + ACTIONS(5750), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307605,7 +290309,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, @@ -307628,14 +290331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57781] = 5, + [53534] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2888), 1, + STATE(2669), 1, sym_comment, - ACTIONS(3544), 13, + ACTIONS(5596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307649,7 +290352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5949), 32, + ACTIONS(5598), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307682,28 +290385,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [57840] = 5, + [53593] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2889), 1, + ACTIONS(5710), 1, + anon_sym_AMP, + ACTIONS(5712), 1, + anon_sym_PIPE, + ACTIONS(5714), 1, + anon_sym_extends, + STATE(2670), 1, sym_comment, - ACTIONS(5951), 13, + ACTIONS(5754), 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(5953), 32, + ACTIONS(5756), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307734,117 +290441,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [57899] = 38, + [53658] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5712), 1, anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(5955), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(2890), 1, - sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - STATE(8369), 1, - sym_type_annotation, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58024] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(2891), 1, + ACTIONS(5714), 1, + anon_sym_extends, + STATE(2671), 1, sym_comment, - ACTIONS(5957), 13, + ACTIONS(5758), 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(5959), 32, + ACTIONS(5760), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307875,16 +290498,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, - [58083] = 5, + [53723] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2892), 1, + STATE(2672), 1, sym_comment, - ACTIONS(5957), 13, + ACTIONS(5762), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307898,7 +290520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5959), 32, + ACTIONS(5764), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -307931,38 +290553,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [58142] = 5, + [53782] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2893), 1, + STATE(2673), 1, sym_comment, - ACTIONS(5957), 13, + ACTIONS(5766), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5768), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(5959), 32, + ACTIONS(4497), 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, @@ -307983,16 +290608,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [58201] = 5, + [53845] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2674), 1, + sym_comment, + STATE(5461), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5503), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [53920] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2894), 1, + STATE(2675), 1, sym_comment, - ACTIONS(5961), 13, + ACTIONS(5770), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308006,7 +290692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5963), 32, + ACTIONS(5772), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -308039,14 +290725,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [58260] = 5, + [53979] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2895), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + STATE(2676), 1, sym_comment, - ACTIONS(5961), 13, + STATE(2916), 1, + sym_arguments, + ACTIONS(5774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308060,13 +290750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5963), 32, + ACTIONS(5776), 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, @@ -308091,16 +290780,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, - [58319] = 5, + [54042] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2896), 1, + STATE(2677), 1, sym_comment, - ACTIONS(5961), 13, + ACTIONS(5744), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308114,7 +290802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5963), 32, + ACTIONS(5746), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -308147,37 +290835,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [58378] = 12, + [54101] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2678), 1, + sym_comment, + ACTIONS(1241), 8, + 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(2592), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [54162] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - STATE(2897), 1, + STATE(2679), 1, sym_comment, - STATE(4992), 1, + STATE(4828), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(4433), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -308208,14 +290951,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [58451] = 5, + [54235] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2898), 1, + STATE(2680), 1, sym_comment, - ACTIONS(5965), 13, + ACTIONS(5770), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308229,7 +290972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5967), 32, + ACTIONS(5772), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -308262,28 +291005,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [58510] = 5, + [54294] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2899), 1, + ACTIONS(5710), 1, + anon_sym_AMP, + ACTIONS(5712), 1, + anon_sym_PIPE, + ACTIONS(5714), 1, + anon_sym_extends, + STATE(2681), 1, sym_comment, - ACTIONS(5965), 13, + ACTIONS(5778), 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(5967), 32, + ACTIONS(5780), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -308314,16 +291061,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [58569] = 5, + [54359] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2900), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(5782), 1, + anon_sym_RPAREN, + STATE(2607), 1, + sym_type_arguments, + STATE(2682), 1, + sym_comment, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + STATE(7945), 1, + sym_type_annotation, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [54484] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2683), 1, sym_comment, - ACTIONS(5965), 13, + ACTIONS(2466), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308337,18 +291170,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5967), 32, + ACTIONS(2468), 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, @@ -308368,16 +291202,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, - [58628] = 5, + anon_sym_PIPE_RBRACE, + [54543] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2901), 1, + STATE(2684), 1, sym_comment, - ACTIONS(5969), 13, + ACTIONS(2470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308391,18 +291224,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 32, + ACTIONS(2472), 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, @@ -308422,31 +291256,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, - [58687] = 10, + anon_sym_PIPE_RBRACE, + [54602] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, - ACTIONS(1226), 1, - anon_sym_RBRACE, - ACTIONS(5192), 1, + ACTIONS(5194), 1, anon_sym_EQ, - STATE(2902), 1, + ACTIONS(5349), 1, + anon_sym_RBRACE, + STATE(2685), 1, sym_comment, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7210), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2588), 36, + ACTIONS(2596), 36, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -308483,103 +291316,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [58756] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5735), 1, - anon_sym_AMP, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_extends, - STATE(2903), 1, - sym_comment, - ACTIONS(5973), 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(5975), 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, - [58821] = 12, + [54671] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2904), 1, - sym_comment, - STATE(4994), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, + ACTIONS(147), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5329), 1, + anon_sym_RBRACE, + STATE(2686), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(2596), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -308601,116 +291375,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [58894] = 38, + [54740] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, + STATE(2687), 1, + sym_comment, + ACTIONS(5778), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5651), 1, anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5780), 32, sym__ternary_qmark, - ACTIONS(5977), 1, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(2905), 1, - sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - STATE(8670), 1, - sym_type_annotation, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, + 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(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 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(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59019] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [54799] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, - ACTIONS(1253), 1, - anon_sym_RBRACE, - ACTIONS(5192), 1, + ACTIONS(5194), 1, anon_sym_EQ, - STATE(2906), 1, + ACTIONS(5329), 1, + anon_sym_RBRACE, + STATE(2688), 1, sym_comment, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2586), 36, + ACTIONS(2592), 36, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -308747,29 +291488,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [59088] = 10, + [54868] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(147), 1, anon_sym_COMMA, - ACTIONS(1226), 1, - anon_sym_RBRACE, - ACTIONS(5192), 1, + ACTIONS(5194), 1, anon_sym_EQ, - STATE(2907), 1, + ACTIONS(5349), 1, + anon_sym_RBRACE, + STATE(2689), 1, sym_comment, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7210), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(1247), 4, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2586), 36, + ACTIONS(2592), 36, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -308806,44 +291547,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [59157] = 10, + [54937] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2690), 1, + sym_comment, + ACTIONS(5744), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5746), 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, + [54996] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2691), 1, + sym_comment, + ACTIONS(5784), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5786), 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, + [55055] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2692), 1, + sym_comment, + ACTIONS(5770), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5772), 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, + [55114] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5487), 1, anon_sym_COMMA, - ACTIONS(1253), 1, + ACTIONS(5530), 1, anon_sym_RBRACE, - ACTIONS(5192), 1, - anon_sym_EQ, - STATE(2908), 1, + STATE(2693), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(5461), 1, + sym__property_name, + STATE(6517), 1, aux_sym_object_repeat1, - ACTIONS(1247), 4, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2588), 36, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -308865,101 +291772,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [59226] = 38, + [55191] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2694), 1, + sym_comment, + ACTIONS(3488), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5788), 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, + [55250] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, + ACTIONS(4586), 1, anon_sym_COLON, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(5979), 1, + ACTIONS(5790), 1, anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2909), 1, + STATE(2695), 1, sym_comment, - STATE(5730), 1, + STATE(5453), 1, aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - STATE(8548), 1, + STATE(8275), 1, sym_type_annotation, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59351] = 5, + [55375] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2910), 1, + STATE(2696), 1, sym_comment, - ACTIONS(2410), 13, + ACTIONS(5792), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308973,19 +291934,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2412), 32, - sym__automatic_semicolon, + ACTIONS(5794), 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, @@ -309005,108 +291965,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [59410] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_extends, + anon_sym_implements, + [55434] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2911), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2697), 1, sym_comment, - STATE(5027), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5796), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4431), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5798), 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_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [59483] = 12, + 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, + [55493] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2912), 1, - sym_comment, - STATE(4973), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, + ACTIONS(147), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1243), 1, + anon_sym_RBRACE, + ACTIONS(5194), 1, + anon_sym_EQ, + STATE(2698), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(2592), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -309128,46 +292080,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [59556] = 12, + [55562] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2913), 1, - sym_comment, - STATE(5154), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, + ACTIONS(147), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1243), 1, + anon_sym_RBRACE, + ACTIONS(5194), 1, + anon_sym_EQ, + STATE(2699), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(2596), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -309189,14 +292139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [59629] = 5, + [55631] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2914), 1, + STATE(2700), 1, sym_comment, - ACTIONS(2370), 13, + ACTIONS(5702), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309210,19 +292160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2372), 32, - sym__automatic_semicolon, + ACTIONS(5704), 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, @@ -309242,212 +292191,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [59688] = 38, + anon_sym_extends, + anon_sym_implements, + [55690] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(5508), 1, + STATE(2701), 1, + sym_comment, + ACTIONS(4373), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5800), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(5981), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(2915), 1, + anon_sym_extends, + anon_sym_implements, + [55749] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2702), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - STATE(8595), 1, - sym_type_annotation, - ACTIONS(5629), 2, + ACTIONS(3500), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5802), 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, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [59813] = 38, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [55808] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, + ACTIONS(4586), 1, anon_sym_COLON, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(5983), 1, + ACTIONS(5804), 1, anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2916), 1, + STATE(2703), 1, sym_comment, - STATE(5730), 1, + STATE(5453), 1, aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - STATE(8578), 1, + STATE(8428), 1, sym_type_annotation, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59938] = 12, + [55933] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - STATE(2917), 1, + STATE(2704), 1, sym_comment, - STATE(4977), 1, + STATE(4881), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(4433), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309478,549 +292449,255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [60011] = 38, + [56006] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5810), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, + STATE(2705), 1, + sym_comment, + ACTIONS(5806), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5808), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5633), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + 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, - ACTIONS(5643), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(5985), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(2918), 1, + anon_sym_extends, + anon_sym_implements, + [56067] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2706), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - STATE(8559), 1, - sym_type_annotation, - ACTIONS(5629), 2, + ACTIONS(4371), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5812), 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, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [60136] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [56126] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(2919), 1, - sym_comment, - STATE(5690), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5512), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [60211] = 14, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(2920), 1, + ACTIONS(5814), 1, + sym__automatic_semicolon, + STATE(2707), 1, sym_comment, - STATE(5690), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2943), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5559), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [60288] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(5316), 1, + ACTIONS(2370), 13, anon_sym_STAR, - STATE(2921), 1, - sym_comment, - STATE(5690), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2943), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5559), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 4, - anon_sym_LPAREN, - 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, - ACTIONS(2934), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [60367] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(147), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2374), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5336), 1, anon_sym_RBRACE, - STATE(2922), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 4, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2586), 36, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + anon_sym_RPAREN, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [60436] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(1259), 1, - anon_sym_RBRACE, - ACTIONS(5192), 1, - anon_sym_EQ, - STATE(2923), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 4, - anon_sym_LPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2586), 36, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [60505] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + 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, + [56187] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(147), 1, - anon_sym_COMMA, - ACTIONS(5192), 1, - anon_sym_EQ, - ACTIONS(5336), 1, - anon_sym_RBRACE, - STATE(2924), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2708), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2588), 36, - anon_sym_export, + ACTIONS(4369), 13, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [60574] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(147), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5816), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(1259), 1, anon_sym_RBRACE, - ACTIONS(5192), 1, - anon_sym_EQ, - STATE(2925), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 4, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2588), 36, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [60643] = 12, + 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, + [56246] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - STATE(2926), 1, + STATE(2709), 1, sym_comment, - STATE(4986), 1, + STATE(4814), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(4433), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -310051,138 +292728,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [60716] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [56319] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2927), 1, - sym_comment, - STATE(4988), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4431), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [60789] = 12, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2928), 1, + ACTIONS(5710), 1, + anon_sym_AMP, + ACTIONS(5712), 1, + anon_sym_PIPE, + ACTIONS(5714), 1, + anon_sym_extends, + STATE(2710), 1, sym_comment, - STATE(5104), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5818), 11, + anon_sym_STAR, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4431), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + 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(5820), 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_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [60862] = 6, + 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, + [56384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - STATE(2929), 1, + ACTIONS(5576), 1, + sym__automatic_semicolon, + STATE(2711), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(2296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310196,7 +292808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 31, + ACTIONS(2456), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -310228,123 +292840,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60923] = 38, + [56445] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, + ACTIONS(4586), 1, anon_sym_COLON, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(5987), 1, + ACTIONS(5822), 1, anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2930), 1, + STATE(2712), 1, sym_comment, - STATE(5730), 1, + STATE(5453), 1, aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - STATE(8324), 1, + STATE(8321), 1, sym_type_annotation, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61048] = 9, + [56570] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5547), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5551), 1, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - STATE(2931), 1, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(2713), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(2468), 13, + ACTIONS(5642), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5824), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [56687] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5710), 1, anon_sym_AMP, + ACTIONS(5712), 1, anon_sym_PIPE, + ACTIONS(5714), 1, + anon_sym_extends, + STATE(2714), 1, + sym_comment, + ACTIONS(5826), 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(2470), 28, + ACTIONS(5828), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -310354,7 +293045,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, @@ -310373,16 +293067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61115] = 6, + [56752] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5993), 1, - anon_sym_DOT, - STATE(2932), 1, + STATE(2715), 1, sym_comment, - ACTIONS(5989), 13, + ACTIONS(5830), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310396,7 +293088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5991), 31, + ACTIONS(5832), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -310408,6 +293100,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, @@ -310428,16 +293121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [61176] = 6, + [56811] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(2933), 1, + STATE(2716), 1, sym_comment, - ACTIONS(5989), 13, + ACTIONS(5834), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310451,7 +293142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5991), 31, + ACTIONS(5836), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -310463,6 +293154,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, @@ -310483,93 +293175,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [61237] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2934), 1, - sym_comment, - STATE(5087), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4431), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [61310] = 8, + [56870] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5735), 1, - anon_sym_AMP, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_extends, - STATE(2935), 1, + STATE(2717), 1, sym_comment, - ACTIONS(5999), 11, + ACTIONS(5838), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6001), 31, + ACTIONS(5840), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -310600,116 +293227,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [61375] = 34, + [56929] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2936), 1, + STATE(2718), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6003), 5, + ACTIONS(5842), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [61492] = 8, + [57046] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5735), 1, - anon_sym_AMP, - ACTIONS(5749), 1, - anon_sym_PIPE, - ACTIONS(5751), 1, - anon_sym_extends, - STATE(2937), 1, + STATE(2719), 1, sym_comment, - ACTIONS(6005), 11, + ACTIONS(5844), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6007), 31, + ACTIONS(5846), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -310740,17 +293364,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, - [61557] = 6, + [57105] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5571), 1, - anon_sym_extends, - STATE(2938), 1, + STATE(2720), 1, sym_comment, - ACTIONS(6005), 13, + ACTIONS(5848), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310764,7 +293387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6007), 31, + ACTIONS(5850), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -310795,139 +293418,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [61618] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [57164] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2939), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(2721), 1, sym_comment, - STATE(5025), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5852), 5, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4431), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [61691] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_RBRACK, + [57281] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2940), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2722), 1, sym_comment, - STATE(5143), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5854), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4431), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [61764] = 6, + 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, + [57340] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6009), 1, - sym__automatic_semicolon, - STATE(2941), 1, + STATE(2723), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(5848), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310941,7 +293578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2336), 31, + ACTIONS(5850), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -310972,38 +293609,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [61825] = 12, + [57399] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5210), 1, sym__automatic_semicolon, - STATE(2942), 1, + STATE(2724), 1, sym_comment, - STATE(5169), 1, + STATE(4890), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, + ACTIONS(1241), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(4433), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -311034,16 +293672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [61898] = 6, + [57472] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5581), 1, - sym__automatic_semicolon, - STATE(2943), 1, + STATE(2725), 1, sym_comment, - ACTIONS(2287), 13, + ACTIONS(5854), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311057,7 +293693,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2448), 31, + ACTIONS(5856), 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, + [57531] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2726), 1, + sym_comment, + ACTIONS(5858), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5860), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -311088,519 +293778,744 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [61959] = 34, + [57590] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2944), 1, + STATE(2727), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6011), 5, + ACTIONS(5862), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [62076] = 34, + [57707] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(2728), 1, + sym_comment, + ACTIONS(5864), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5866), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(2945), 1, + anon_sym_extends, + anon_sym_implements, + [57766] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5710), 1, + anon_sym_AMP, + STATE(2729), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5868), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6013), 5, + ACTIONS(5870), 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, - [62193] = 34, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [57827] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2946), 1, + STATE(2730), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6015), 5, + ACTIONS(5872), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [62310] = 34, + [57944] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2731), 1, + sym_comment, + STATE(4895), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [58017] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2947), 1, + STATE(2732), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6017), 5, + ACTIONS(5874), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [62427] = 34, + [58134] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(2733), 1, + sym_comment, + ACTIONS(5858), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5860), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(2948), 1, + anon_sym_extends, + anon_sym_implements, + [58193] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5341), 1, + anon_sym_RBRACE, + STATE(2734), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2596), 36, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [58262] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2735), 1, + sym_comment, + ACTIONS(5876), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5878), 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, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(6019), 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [58321] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, anon_sym_COMMA, + ACTIONS(5194), 1, + anon_sym_EQ, + ACTIONS(5341), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(2736), 1, + sym_comment, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1241), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [62544] = 34, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2592), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [58390] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2949), 1, + STATE(2737), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6021), 5, + ACTIONS(5880), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [62661] = 8, + [58507] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_LBRACE, - ACTIONS(6025), 1, - anon_sym_DOT, - STATE(2950), 1, + STATE(2738), 1, sym_comment, - STATE(3052), 1, - sym_statement_block, - ACTIONS(2297), 13, + ACTIONS(5730), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311614,9 +294529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2303), 29, + ACTIONS(5732), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -311625,6 +294541,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, @@ -311643,21 +294560,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, - [62726] = 8, + [58566] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_LBRACE, - ACTIONS(6027), 1, - anon_sym_DOT, - STATE(2951), 1, + STATE(2739), 1, sym_comment, - STATE(3052), 1, - sym_statement_block, - ACTIONS(2297), 13, + ACTIONS(5882), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311671,9 +294583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2303), 29, + ACTIONS(5884), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -311682,6 +294595,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, @@ -311700,19 +294614,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, - [62791] = 7, + [58625] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_LBRACE, - STATE(2952), 1, + STATE(2740), 1, sym_comment, - STATE(3052), 1, - sym_statement_block, - ACTIONS(2297), 13, + ACTIONS(5886), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311726,9 +294637,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2303), 30, + ACTIONS(5888), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -311756,363 +294668,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [62854] = 34, + [58684] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2953), 1, + STATE(2741), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6029), 5, + ACTIONS(5890), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [62971] = 34, + [58801] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(2954), 1, + STATE(2742), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5892), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6031), 5, + ACTIONS(5894), 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, - [63088] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(6035), 1, - anon_sym_BANG, - STATE(2750), 1, - sym_type_arguments, - STATE(2955), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 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, - [63197] = 23, + anon_sym_extends, + anon_sym_implements, + [58860] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(2956), 1, + STATE(2743), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5882), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6035), 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(6033), 14, + ACTIONS(5884), 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, - [63292] = 19, + anon_sym_extends, + anon_sym_implements, + [58919] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6037), 1, + ACTIONS(5900), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2957), 1, + STATE(2744), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 11, + ACTIONS(5896), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -312123,8 +294903,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 18, + ACTIONS(5898), 21, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -312136,50 +294917,51 @@ 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, - [63379] = 18, + anon_sym_satisfies, + [58998] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(6037), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5907), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2958), 1, + STATE(2745), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 10, - anon_sym_BANG, + ACTIONS(5903), 11, + anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -312187,11 +294969,11 @@ 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(6033), 19, + ACTIONS(5905), 19, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -312202,226 +294984,284 @@ 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_satisfies, - [63464] = 27, + [59083] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5647), 1, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5659), 1, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(2959), 1, + STATE(2746), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5910), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [63567] = 26, + [59200] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5916), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2960), 1, + STATE(2747), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5912), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5914), 23, + 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, - ACTIONS(5673), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, + anon_sym_satisfies, + [59277] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2748), 1, + sym_comment, + ACTIONS(5919), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5921), 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, - [63668] = 25, + anon_sym_extends, + anon_sym_implements, + [59336] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5647), 1, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5659), 1, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(5925), 1, + anon_sym_BANG, + STATE(2607), 1, sym_type_arguments, - STATE(2961), 1, + STATE(2749), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6035), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6033), 12, + ACTIONS(5923), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -312429,91 +295269,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [63767] = 19, + [59445] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(6037), 1, - anon_sym_LT, STATE(2750), 1, - sym_type_arguments, - STATE(2962), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5886), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 19, + ACTIONS(5888), 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, - [63854] = 7, + anon_sym_extends, + anon_sym_implements, + [59504] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - STATE(2963), 1, + STATE(2751), 1, sym_comment, - STATE(3008), 1, - sym_arguments, - ACTIONS(6040), 13, + ACTIONS(5768), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -312527,12 +295346,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6042), 30, + ACTIONS(5766), 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, @@ -312557,151 +295377,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [63917] = 29, + [59563] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5647), 1, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6035), 1, - anon_sym_BANG, - STATE(2750), 1, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(5927), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(2964), 1, + STATE(2752), 1, sym_comment, - STATE(6993), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + STATE(8178), 1, + sym_type_annotation, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 10, + [59688] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2753), 1, + sym_comment, + ACTIONS(5929), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5931), 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, - [64024] = 28, + anon_sym_extends, + anon_sym_implements, + [59747] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2754), 1, + sym_comment, + STATE(4903), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [59820] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6035), 1, - anon_sym_BANG, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2965), 1, + STATE(2755), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 11, + ACTIONS(5925), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5923), 14, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -312711,27 +295648,34 @@ static const uint16_t ts_small_parse_table[] = { 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, - [64129] = 6, + [59915] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2966), 1, - sym_comment, - ACTIONS(1247), 8, + ACTIONS(147), 1, anon_sym_COMMA, + ACTIONS(1220), 1, anon_sym_RBRACE, + ACTIONS(5194), 1, + anon_sym_EQ, + STATE(2756), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2588), 36, + ACTIONS(2596), 36, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -312768,38 +295712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [64190] = 16, + [59984] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(6037), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(2967), 1, + STATE(2757), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 12, + ACTIONS(5933), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -312810,84 +295730,93 @@ 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(6033), 20, + ACTIONS(5935), 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, - [64271] = 21, + anon_sym_extends, + anon_sym_implements, + [60043] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5937), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2968), 1, + STATE(2758), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 7, - anon_sym_BANG, + ACTIONS(5925), 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(6033), 17, + ACTIONS(5923), 18, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -312895,224 +295824,382 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_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, - [64362] = 34, + [60130] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(2759), 1, + sym_comment, + ACTIONS(5940), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5942), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, + anon_sym_extends, + anon_sym_implements, + [60189] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2760), 1, + sym_comment, + STATE(5461), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5616), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [60266] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5937), 1, + anon_sym_LT, + STATE(2607), 1, sym_type_arguments, - STATE(2969), 1, + STATE(2761), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5923), 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(6044), 5, + anon_sym_satisfies, + [60351] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, anon_sym_COMMA, + ACTIONS(1220), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(5194), 1, + anon_sym_EQ, + STATE(2762), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, - [64479] = 34, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2592), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [60420] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2970), 1, + STATE(2763), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6046), 5, + ACTIONS(5923), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [64596] = 12, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [60523] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, - sym__automatic_semicolon, - STATE(2971), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(2764), 1, sym_comment, - STATE(5066), 1, + STATE(5461), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5616), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1241), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4431), 30, + ACTIONS(2934), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -313130,119 +296217,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [64669] = 34, + [60602] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2972), 1, + STATE(2765), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6048), 5, + ACTIONS(5923), 12, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [64786] = 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [60703] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(2766), 1, + sym_comment, + ACTIONS(3492), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5944), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(6054), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(2973), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + 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(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6050), 12, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [60762] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2767), 1, + sym_comment, + ACTIONS(5610), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313253,16 +296364,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(6052), 21, + ACTIONS(5612), 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, @@ -313276,56 +296394,137 @@ 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, - [64865] = 18, + anon_sym_extends, + anon_sym_implements, + [60821] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6061), 1, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2974), 1, + STATE(2768), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6057), 11, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5925), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5923), 12, + 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_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [60920] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5937), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(2769), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(6059), 19, + ACTIONS(5923), 19, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -313336,124 +296535,153 @@ 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, - [64950] = 34, + anon_sym_satisfies, + [61007] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(5925), 1, + anon_sym_BANG, + STATE(2607), 1, sym_type_arguments, - STATE(2975), 1, + STATE(2770), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6064), 5, + ACTIONS(5923), 10, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [65067] = 14, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [61114] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(2771), 1, + sym_comment, + ACTIONS(5830), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5832), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(6070), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(2976), 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, + anon_sym_extends, + anon_sym_implements, + [61173] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2772), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6066), 12, + ACTIONS(5830), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313464,16 +296692,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(6068), 23, + ACTIONS(5832), 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, @@ -313489,194 +296724,321 @@ 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, - [65144] = 34, + anon_sym_extends, + anon_sym_implements, + [61232] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(2773), 1, + sym_comment, + ACTIONS(5946), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5948), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [61291] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(5925), 1, + anon_sym_BANG, + STATE(2607), 1, sym_type_arguments, - STATE(2977), 1, + STATE(2774), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6073), 5, + ACTIONS(5923), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [65261] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [61396] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2775), 1, + sym_comment, + STATE(4915), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [61469] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(5950), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(2978), 1, + STATE(2776), 1, sym_comment, - STATE(6993), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + STATE(8339), 1, + sym_type_annotation, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6075), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [65378] = 11, + [61594] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5663), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5937), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(2979), 1, + STATE(2777), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - STATE(2997), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6077), 12, + ACTIONS(5925), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313689,125 +297051,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6079), 26, + ACTIONS(5923), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [65449] = 36, + [61675] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(2980), 1, - sym_comment, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(2778), 1, + sym_comment, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6093), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6105), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(5925), 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(5923), 17, + 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_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, - [65569] = 5, + anon_sym_satisfies, + [61766] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2981), 1, + STATE(2779), 1, sym_comment, - ACTIONS(6137), 13, + ACTIONS(5952), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313821,7 +297163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6139), 31, + ACTIONS(5954), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -313852,163 +297194,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [65627] = 34, + [61825] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, - anon_sym_AMP_AMP, - ACTIONS(6147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, - anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(6155), 1, - anon_sym_CARET, - ACTIONS(6157), 1, - anon_sym_PIPE, - ACTIONS(6161), 1, - anon_sym_PERCENT, - ACTIONS(6163), 1, - anon_sym_STAR_STAR, - ACTIONS(6165), 1, - anon_sym_LT, - ACTIONS(6173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, - sym__ternary_qmark, - STATE(2982), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6143), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6151), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6171), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6167), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6048), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [65743] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6177), 1, - anon_sym_LT, - STATE(2983), 1, + STATE(2780), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 12, + ACTIONS(5956), 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(6033), 19, - sym__automatic_semicolon, + ACTIONS(5958), 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [65823] = 6, + anon_sym_extends, + anon_sym_implements, + [61886] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6180), 1, - sym__automatic_semicolon, - STATE(2984), 1, + STATE(2781), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(5960), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314022,17 +297272,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2336), 30, + ACTIONS(5962), 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, @@ -314052,163 +297303,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [65883] = 34, + anon_sym_extends, + anon_sym_implements, + [61945] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6147), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6157), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6173), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2985), 1, - sym_comment, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(7132), 1, + STATE(2782), 1, + sym_comment, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6073), 4, - sym__automatic_semicolon, + ACTIONS(5964), 5, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [65999] = 18, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [62062] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6115), 1, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6177), 1, + ACTIONS(5676), 1, anon_sym_LT, - STATE(2986), 1, - sym_comment, - STATE(3206), 1, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(7132), 1, + STATE(2783), 1, + sym_comment, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 10, - anon_sym_BANG, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 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, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [66083] = 5, + ACTIONS(5966), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [62179] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2987), 1, + STATE(2784), 1, sym_comment, - ACTIONS(2344), 13, + ACTIONS(5968), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314222,7 +297492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2348), 31, + ACTIONS(5970), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -314253,46 +297523,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, - [66141] = 19, + [62238] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6177), 1, - anon_sym_LT, - STATE(2988), 1, + STATE(2785), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 11, + ACTIONS(4391), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -314301,48 +297543,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(6033), 17, - sym__automatic_semicolon, + ACTIONS(5972), 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66227] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [62297] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2989), 1, + ACTIONS(5710), 1, + anon_sym_AMP, + ACTIONS(5712), 1, + anon_sym_PIPE, + ACTIONS(5714), 1, + anon_sym_extends, + STATE(2786), 1, sym_comment, - ACTIONS(2384), 13, + ACTIONS(5974), 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(2388), 31, + ACTIONS(5976), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -314374,96 +297636,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [66285] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, - anon_sym_AMP_AMP, - ACTIONS(6147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, - anon_sym_GT_GT, - ACTIONS(6153), 1, - anon_sym_AMP, - ACTIONS(6155), 1, - anon_sym_CARET, - ACTIONS(6157), 1, - anon_sym_PIPE, - ACTIONS(6161), 1, - anon_sym_PERCENT, - ACTIONS(6163), 1, - anon_sym_STAR_STAR, - ACTIONS(6165), 1, - anon_sym_LT, - ACTIONS(6173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, - sym__ternary_qmark, - STATE(2990), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6143), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6151), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6171), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6167), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6075), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [66401] = 5, + [62362] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2991), 1, + STATE(2787), 1, sym_comment, - ACTIONS(6182), 13, + ACTIONS(4399), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314477,7 +297657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6184), 31, + ACTIONS(5978), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -314508,17 +297688,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, - [66459] = 6, + [62421] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6186), 1, - sym__automatic_semicolon, - STATE(2992), 1, + STATE(2788), 1, sym_comment, - ACTIONS(2287), 13, + ACTIONS(4399), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314532,17 +297711,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2448), 30, + ACTIONS(5978), 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, @@ -314562,28 +297742,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [66519] = 11, + anon_sym_extends, + anon_sym_implements, + [62480] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6165), 1, - anon_sym_LT, - STATE(2993), 1, + STATE(2789), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6077), 12, + ACTIONS(4407), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314594,16 +297762,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(6079), 25, - sym__automatic_semicolon, + ACTIONS(5980), 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_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -314621,174 +297794,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [66589] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - ACTIONS(6188), 1, - anon_sym_COMMA, - ACTIONS(6191), 1, - anon_sym_RBRACE, - STATE(2994), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6075), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [66709] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6131), 1, anon_sym_BQUOTE, - STATE(2995), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 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, - [66811] = 5, + anon_sym_extends, + anon_sym_implements, + [62539] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2996), 1, + STATE(2790), 1, sym_comment, - ACTIONS(2338), 13, + ACTIONS(4407), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314802,18 +297819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2340), 31, - sym__automatic_semicolon, + ACTIONS(5980), 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, @@ -314833,29 +297850,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [66869] = 5, + anon_sym_extends, + anon_sym_implements, + [62598] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(2997), 1, + ACTIONS(5750), 1, + anon_sym_extends, + ACTIONS(5752), 1, + anon_sym_LBRACK, + STATE(2791), 1, sym_comment, - ACTIONS(5679), 13, + ACTIONS(5748), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5982), 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(5681), 31, + ACTIONS(5984), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -314865,7 +297888,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, @@ -314887,272 +297909,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [66927] = 34, + [62663] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(5710), 1, anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(5712), 1, anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(2998), 1, + ACTIONS(5714), 1, + anon_sym_extends, + STATE(2792), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5986), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6073), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [67043] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(5988), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(6085), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(6097), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(6099), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6101), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(6133), 1, anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(2999), 1, + anon_sym_implements, + [62728] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2793), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5986), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6193), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67163] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(5988), 32, + sym__ternary_qmark, anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(6097), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(6099), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6101), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3000), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(6075), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [67279] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [62787] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6195), 1, - anon_sym_DOT, - ACTIONS(6197), 1, - anon_sym_LT, - STATE(3001), 1, + STATE(2794), 1, sym_comment, - STATE(3431), 1, - sym_arguments, - STATE(3433), 1, - sym_type_arguments, - ACTIONS(4535), 12, + ACTIONS(5990), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315163,17 +298038,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(4531), 27, - sym__automatic_semicolon, + ACTIONS(5992), 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_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, @@ -315193,106 +298073,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67347] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3002), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6048), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [67463] = 10, + anon_sym_implements, + [62846] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6197), 1, - anon_sym_LT, - ACTIONS(6199), 1, - anon_sym_DOT, - STATE(3003), 1, + STATE(2795), 1, sym_comment, - STATE(3435), 1, - sym_arguments, - STATE(3436), 1, - sym_type_arguments, - ACTIONS(5515), 12, + ACTIONS(5994), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315303,17 +298092,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(5517), 27, - sym__automatic_semicolon, + ACTIONS(5996), 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_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, @@ -315333,24 +298127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67531] = 10, + anon_sym_implements, + [62905] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6197), 1, - anon_sym_LT, - ACTIONS(6201), 1, - anon_sym_DOT, - STATE(3004), 1, + STATE(2796), 1, sym_comment, - STATE(3437), 1, - sym_arguments, - STATE(3439), 1, - sym_type_arguments, - ACTIONS(5521), 12, + ACTIONS(5998), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315361,17 +298146,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(5523), 27, - sym__automatic_semicolon, + ACTIONS(6000), 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_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, @@ -315391,180 +298181,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [67599] = 34, + anon_sym_implements, + [62964] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3005), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6011), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [67715] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(6087), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(6188), 1, - anon_sym_COMMA, - ACTIONS(6191), 1, - anon_sym_RBRACE, - STATE(3006), 1, - sym_comment, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(7132), 1, + STATE(2797), 1, + sym_comment, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67835] = 5, + ACTIONS(6002), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [63081] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3007), 1, + ACTIONS(6008), 1, + anon_sym_extends, + STATE(2798), 1, sym_comment, - ACTIONS(6205), 13, + ACTIONS(6004), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315578,7 +298288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6207), 31, + ACTIONS(6006), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -315610,14 +298320,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [67893] = 5, + [63142] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3008), 1, + ACTIONS(5752), 1, + anon_sym_LBRACK, + STATE(2799), 1, sym_comment, - ACTIONS(6209), 13, + ACTIONS(6010), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315631,7 +298343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6211), 31, + ACTIONS(6012), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -315641,7 +298353,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, @@ -315662,39 +298373,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [67951] = 5, + [63203] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3009), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(2800), 1, sym_comment, - ACTIONS(2418), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(6014), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [63320] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5840), 1, + anon_sym_extends, + ACTIONS(6018), 1, + anon_sym_EQ, + STATE(2801), 1, + sym_comment, + ACTIONS(6022), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6025), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(6016), 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(2422), 31, + ACTIONS(6020), 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, @@ -315716,98 +298516,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [68009] = 36, + [63387] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3010), 1, - sym_comment, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(2802), 1, + sym_comment, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6213), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68129] = 5, + ACTIONS(6028), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [63504] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3011), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5676), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(2803), 1, sym_comment, - ACTIONS(6215), 13, + STATE(7018), 1, + sym_optional_chain, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6030), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315818,18 +298630,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(6217), 31, + ACTIONS(6032), 26, 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, @@ -315850,41 +298658,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [68187] = 5, + [63575] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3012), 1, + ACTIONS(5802), 1, + anon_sym_extends, + STATE(2804), 1, sym_comment, - ACTIONS(6219), 13, + ACTIONS(6034), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6037), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2298), 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(6017), 31, + ACTIONS(2304), 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, @@ -315906,14 +298717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [68245] = 5, + [63642] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3013), 1, + STATE(2805), 1, sym_comment, - ACTIONS(6221), 13, + ACTIONS(6040), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315927,7 +298738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6223), 31, + ACTIONS(6042), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -315958,15 +298769,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, - [68303] = 5, + [63701] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3014), 1, + STATE(2806), 1, sym_comment, - ACTIONS(2442), 13, + ACTIONS(6044), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315980,18 +298792,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2444), 31, - sym__automatic_semicolon, + ACTIONS(6046), 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, @@ -316011,89 +298823,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [68361] = 26, + anon_sym_extends, + anon_sym_implements, + [63760] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - STATE(3015), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 11, + ACTIONS(5210), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + STATE(2807), 1, + sym_comment, + STATE(4943), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [68461] = 5, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [63833] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3016), 1, + STATE(2808), 1, sym_comment, - ACTIONS(6225), 13, + ACTIONS(4427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316107,7 +298907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6227), 31, + ACTIONS(6048), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -316138,15 +298938,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, - [68519] = 5, + [63892] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3017), 1, + STATE(2809), 1, sym_comment, - ACTIONS(6229), 13, + ACTIONS(6050), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316160,7 +298961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6231), 31, + ACTIONS(6052), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -316191,15 +298992,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, - [68577] = 5, + [63951] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3018), 1, + STATE(2810), 1, sym_comment, - ACTIONS(2434), 13, + ACTIONS(6054), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316213,18 +299015,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2436), 31, - sym__automatic_semicolon, + ACTIONS(6056), 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, @@ -316244,15 +299046,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [68635] = 5, + anon_sym_extends, + anon_sym_implements, + [64010] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3019), 1, + ACTIONS(6058), 1, + anon_sym_LBRACE, + STATE(2811), 1, sym_comment, - ACTIONS(6233), 13, + STATE(2917), 1, + sym_statement_block, + ACTIONS(2288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316266,10 +299073,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6019), 31, + ACTIONS(2294), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -316298,14 +299104,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [68693] = 5, + [64073] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3020), 1, + ACTIONS(6058), 1, + anon_sym_LBRACE, + ACTIONS(6060), 1, + anon_sym_DOT, + STATE(2812), 1, sym_comment, - ACTIONS(6235), 13, + STATE(2917), 1, + sym_statement_block, + ACTIONS(2288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316319,10 +299131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6237), 31, + ACTIONS(2294), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -316331,7 +299142,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, @@ -316351,14 +299161,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [68751] = 5, + [64138] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3021), 1, + ACTIONS(6058), 1, + anon_sym_LBRACE, + ACTIONS(6062), 1, + anon_sym_DOT, + STATE(2813), 1, sym_comment, - ACTIONS(6239), 13, + STATE(2917), 1, + sym_statement_block, + ACTIONS(2288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316372,10 +299188,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6021), 31, + ACTIONS(2294), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -316384,7 +299199,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, @@ -316404,14 +299218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [68809] = 5, + [64203] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3022), 1, + STATE(2814), 1, sym_comment, - ACTIONS(6241), 13, + ACTIONS(4429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316425,7 +299239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6243), 31, + ACTIONS(6064), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -316456,15 +299270,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, - [68867] = 5, + [64262] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3023), 1, + STATE(2815), 1, sym_comment, - ACTIONS(2428), 13, + ACTIONS(4431), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316478,7 +299293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2432), 31, + ACTIONS(6066), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -316509,183 +299324,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [68925] = 36, + [64321] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3024), 1, + ACTIONS(5542), 1, + anon_sym_QMARK_DOT, + STATE(2816), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(2406), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6245), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69045] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(2408), 28, + sym__ternary_qmark, anon_sym_as, - ACTIONS(6085), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(6101), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3025), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6247), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69165] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [64388] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3026), 1, + ACTIONS(6072), 1, + anon_sym_DOT, + STATE(2817), 1, sym_comment, - ACTIONS(2480), 13, + ACTIONS(6068), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316699,7 +299407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2484), 31, + ACTIONS(6070), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -316711,7 +299419,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, @@ -316730,15 +299437,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, - [69223] = 5, + [64449] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3027), 1, + STATE(2818), 1, sym_comment, - ACTIONS(2328), 13, + ACTIONS(6075), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316752,7 +299460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2330), 31, + ACTIONS(6077), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -316783,42 +299491,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, - [69281] = 8, + [64508] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5739), 1, - anon_sym_extends, - STATE(3028), 1, + STATE(2819), 1, sym_comment, - ACTIONS(6249), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(6252), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6182), 10, + ACTIONS(5696), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6184), 28, + ACTIONS(5698), 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, @@ -316839,99 +299545,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [69345] = 36, + [64567] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + STATE(2820), 1, + sym_comment, + ACTIONS(3494), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6079), 32, + sym__ternary_qmark, anon_sym_as, - ACTIONS(6085), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(6097), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(6099), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6101), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3029), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6255), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69465] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [64626] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3030), 1, + ACTIONS(6081), 1, + anon_sym_DOT, + STATE(2821), 1, sym_comment, - ACTIONS(6257), 13, + ACTIONS(6068), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -316945,7 +299624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6259), 31, + ACTIONS(6070), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -316957,7 +299636,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, @@ -316976,172 +299654,502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [69523] = 36, + [64687] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1245), 1, + anon_sym_RBRACE, + ACTIONS(5194), 1, + anon_sym_EQ, + STATE(2822), 1, + sym_comment, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2592), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [64756] = 12, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2823), 1, + sym_comment, + STATE(4840), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [64829] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - ACTIONS(6191), 1, - anon_sym_RBRACE, - ACTIONS(6261), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2824), 1, + sym_comment, + STATE(4955), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, anon_sym_COMMA, - STATE(3031), 1, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [64902] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(147), 1, + anon_sym_COMMA, + ACTIONS(1245), 1, + anon_sym_RBRACE, + ACTIONS(5194), 1, + anon_sym_EQ, + STATE(2825), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6046), 2, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2596), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [64971] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, sym__automatic_semicolon, + STATE(2826), 1, + sym_comment, + STATE(4864), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_SEMI, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69643] = 25, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [65044] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2827), 1, + sym_comment, + STATE(4947), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [65117] = 12, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - STATE(3032), 1, + ACTIONS(5210), 1, + sym__automatic_semicolon, + STATE(2828), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 3, + STATE(4954), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 11, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [65190] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5210), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + STATE(2829), 1, + sym_comment, + STATE(4942), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [69741] = 5, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4433), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [65263] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3033), 1, + ACTIONS(4663), 1, + anon_sym_EQ, + STATE(2830), 1, sym_comment, - ACTIONS(6264), 13, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317155,7 +300163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6266), 31, + ACTIONS(4497), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -317187,206 +300195,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [69799] = 34, + [65324] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6147), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6157), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6173), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3034), 1, - sym_comment, - STATE(3206), 1, + ACTIONS(6084), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(7132), 1, + STATE(2831), 1, + sym_comment, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + STATE(8389), 1, + sym_type_annotation, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6167), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6011), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [69915] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6143), 1, - anon_sym_GT, - ACTIONS(6145), 1, - anon_sym_AMP_AMP, - ACTIONS(6147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, - anon_sym_GT_GT, - ACTIONS(6153), 1, - anon_sym_AMP, - ACTIONS(6155), 1, - anon_sym_CARET, - ACTIONS(6157), 1, - anon_sym_PIPE, - ACTIONS(6161), 1, - anon_sym_PERCENT, - ACTIONS(6163), 1, - anon_sym_STAR_STAR, - ACTIONS(6165), 1, - anon_sym_LT, - ACTIONS(6173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, - sym__ternary_qmark, - ACTIONS(6270), 1, - anon_sym_in, - STATE(3035), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6141), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6151), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6171), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6268), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [70033] = 8, + [65449] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5699), 1, - anon_sym_extends, - STATE(3036), 1, + STATE(2832), 1, sym_comment, - ACTIONS(6273), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(6276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(2406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 28, + ACTIONS(2408), 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, @@ -317408,561 +300335,468 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [70097] = 23, + [65507] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6103), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6115), 1, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - STATE(3037), 1, + STATE(2833), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6129), 2, + ACTIONS(6118), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6120), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6035), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6033), 13, + ACTIONS(5923), 9, 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_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [70191] = 34, + [65613] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(6162), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6166), 1, sym__ternary_qmark, - STATE(3038), 1, + STATE(2834), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6013), 4, + ACTIONS(5842), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [70307] = 34, + [65729] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3039), 1, + STATE(2835), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + ACTIONS(6170), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6015), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [70423] = 36, + [65849] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, + STATE(2836), 1, + sym_comment, + ACTIONS(6178), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6107), 1, anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5872), 31, sym__ternary_qmark, - ACTIONS(6279), 1, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6282), 1, anon_sym_RBRACE, - STATE(3040), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6046), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 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(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 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(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70543] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [65907] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(6162), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6166), 1, sym__ternary_qmark, - STATE(3041), 1, + STATE(2837), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6284), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70663] = 36, + ACTIONS(5852), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [66023] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, + ACTIONS(5925), 1, anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3042), 1, + STATE(2838), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6286), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70783] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3043), 1, - sym_comment, - STATE(5690), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5559), 2, + ACTIONS(5923), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [70855] = 5, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [66127] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3044), 1, + STATE(2839), 1, sym_comment, - ACTIONS(6288), 13, + ACTIONS(6180), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317976,7 +300810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6290), 31, + ACTIONS(6182), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -318008,344 +300842,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [70913] = 36, + [66185] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3045), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6292), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71033] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(6087), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6147), 1, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6157), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6173), 1, + ACTIONS(6162), 1, anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6166), 1, sym__ternary_qmark, - STATE(3046), 1, + STATE(2840), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6013), 4, + ACTIONS(5862), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [71149] = 34, + [66301] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6157), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6173), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3047), 1, + STATE(2841), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6015), 4, + ACTIONS(6002), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [71265] = 34, + [66417] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3048), 1, + STATE(2842), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + ACTIONS(6184), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6017), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [71381] = 5, + [66537] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3049), 1, + STATE(2843), 1, sym_comment, - ACTIONS(6294), 13, + ACTIONS(6186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318359,7 +301111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6296), 31, + ACTIONS(5874), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -318391,67 +301143,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [71439] = 5, + [66595] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3050), 1, - sym_comment, - ACTIONS(6298), 13, - anon_sym_STAR, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(6134), 1, + anon_sym_AMP_AMP, + ACTIONS(6136), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6138), 1, anon_sym_GT_GT, + ACTIONS(6142), 1, anon_sym_AMP, + ACTIONS(6144), 1, + anon_sym_CARET, + ACTIONS(6146), 1, anon_sym_PIPE, + ACTIONS(6150), 1, + anon_sym_PERCENT, + ACTIONS(6152), 1, + anon_sym_STAR_STAR, + ACTIONS(6154), 1, + anon_sym_LT, + ACTIONS(6162), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6166), 1, + sym__ternary_qmark, + STATE(2844), 1, + sym_comment, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6132), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6140), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6073), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(6160), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6156), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5872), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, + [66711] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, anon_sym_AMP_AMP, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6138), 1, + anon_sym_GT_GT, + ACTIONS(6142), 1, + anon_sym_AMP, + ACTIONS(6144), 1, anon_sym_CARET, + ACTIONS(6146), 1, + anon_sym_PIPE, + ACTIONS(6150), 1, anon_sym_PERCENT, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6154), 1, + anon_sym_LT, + ACTIONS(6162), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6166), 1, + sym__ternary_qmark, + STATE(2845), 1, + sym_comment, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6132), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6140), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6148), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6158), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6156), 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, - [71497] = 5, + ACTIONS(5874), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [66827] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3051), 1, + STATE(2846), 1, sym_comment, - ACTIONS(2404), 13, + ACTIONS(6188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318465,7 +301328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2408), 31, + ACTIONS(6190), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -318497,14 +301360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [71555] = 5, + [66885] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3052), 1, + STATE(2847), 1, sym_comment, - ACTIONS(2338), 13, + ACTIONS(2420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318518,7 +301381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2340), 31, + ACTIONS(2424), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -318550,14 +301413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [71613] = 5, + [66943] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3053), 1, + STATE(2848), 1, sym_comment, - ACTIONS(2452), 13, + ACTIONS(2470), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318571,7 +301434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2456), 31, + ACTIONS(2472), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -318603,23 +301466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [71671] = 7, + [67001] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3054), 1, + STATE(2849), 1, sym_comment, - ACTIONS(6302), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6306), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(6300), 13, + ACTIONS(2466), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318633,12 +301487,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6304), 24, + ACTIONS(2468), 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, @@ -318658,36 +301518,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71733] = 15, + anon_sym_implements, + [67059] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6308), 1, + ACTIONS(6192), 1, anon_sym_LT, - STATE(3055), 1, + STATE(2850), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6050), 12, + ACTIONS(5896), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318700,12 +301561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 20, + ACTIONS(5898), 20, 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, @@ -318721,14 +301582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [71811] = 5, + [67137] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3056), 1, + STATE(2851), 1, sym_comment, - ACTIONS(2350), 13, + ACTIONS(2428), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318742,18 +301603,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 31, - sym__automatic_semicolon, + ACTIONS(2432), 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, @@ -318773,99 +301634,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [71869] = 34, + anon_sym_implements, + [67195] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6145), 1, - anon_sym_AMP_AMP, - ACTIONS(6147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, - anon_sym_GT_GT, - ACTIONS(6153), 1, - anon_sym_AMP, - ACTIONS(6155), 1, - anon_sym_CARET, - ACTIONS(6157), 1, - anon_sym_PIPE, - ACTIONS(6161), 1, - anon_sym_PERCENT, - ACTIONS(6163), 1, - anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, - sym__ternary_qmark, - STATE(3057), 1, + STATE(2852), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6141), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6143), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6151), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6171), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6017), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [71985] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3058), 1, - sym_comment, - ACTIONS(2364), 13, + ACTIONS(5903), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -318874,23 +301680,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(2368), 31, + ACTIONS(5905), 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, @@ -318904,249 +301701,178 @@ 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, - [72043] = 34, + [67279] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6147), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6157), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6173), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3059), 1, - sym_comment, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(7132), 1, + STATE(2853), 1, + sym_comment, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6019), 4, - sym__automatic_semicolon, + ACTIONS(6198), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [72159] = 34, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + [67395] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6147), 1, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6157), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6173), 1, + ACTIONS(6162), 1, anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6166), 1, sym__ternary_qmark, - STATE(3060), 1, + STATE(2854), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6021), 4, + ACTIONS(5910), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [72275] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6311), 1, - anon_sym_LT, - STATE(3061), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6057), 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(6059), 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [72359] = 5, + [67511] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3062), 1, + STATE(2855), 1, sym_comment, - ACTIONS(6314), 13, + ACTIONS(2458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -319160,18 +301886,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6316), 31, + ACTIONS(2460), 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, @@ -319191,179 +301917,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [72417] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3063), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6064), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [72533] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3064), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6019), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [72649] = 5, + anon_sym_PIPE_RBRACE, + [67569] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3065), 1, + STATE(2856), 1, sym_comment, - ACTIONS(6318), 13, + ACTIONS(6200), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -319377,7 +301939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6320), 31, + ACTIONS(6202), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -319409,23 +301971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [72707] = 7, + [67627] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3066), 1, - sym_comment, - ACTIONS(2291), 2, + ACTIONS(6018), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6322), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2289), 13, + STATE(2857), 1, + sym_comment, + ACTIONS(6016), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -319439,12 +301994,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 24, + ACTIONS(6020), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -319464,426 +302024,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72769] = 36, + anon_sym_implements, + [67687] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3067), 1, + STATE(2858), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6324), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72889] = 36, + ACTIONS(5890), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [67803] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(6162), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6166), 1, sym__ternary_qmark, - STATE(3068), 1, + STATE(2859), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6326), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73009] = 19, + ACTIONS(5880), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [67919] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6177), 1, + ACTIONS(6204), 1, anon_sym_LT, - STATE(3069), 1, + STATE(2860), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 8, + ACTIONS(5912), 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(6033), 18, + ACTIONS(5914), 22, 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, anon_sym_EQ_EQ_EQ, anon_sym_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, - [73095] = 29, + [67995] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - STATE(3070), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2861), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 9, + ACTIONS(5880), 4, 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, - [73201] = 36, + [68111] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3071), 1, + STATE(2862), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6540), 1, + STATE(6140), 1, aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6328), 2, + ACTIONS(6207), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73321] = 13, + [68231] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6197), 1, - anon_sym_LT, - ACTIONS(6330), 1, - anon_sym_QMARK_DOT, - STATE(3072), 1, + STATE(2863), 1, sym_comment, - STATE(3368), 1, - sym_type_arguments, - STATE(3614), 1, - sym_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(5543), 12, + ACTIONS(6209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -319894,16 +302435,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(5545), 24, - sym__automatic_semicolon, + ACTIONS(6211), 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, @@ -319921,14 +302469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [73395] = 5, + anon_sym_implements, + [68289] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3073), 1, + STATE(2864), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(6213), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -319942,7 +302491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 31, + ACTIONS(5890), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -319974,254 +302523,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [73453] = 28, + [68347] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6103), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, + anon_sym_AMP_AMP, + ACTIONS(6136), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - STATE(3074), 1, + ACTIONS(6162), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6166), 1, + sym__ternary_qmark, + STATE(2865), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 10, + ACTIONS(5890), 4, 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_QMARK_QMARK, - anon_sym_satisfies, - [73557] = 34, + [68463] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, + ACTIONS(5925), 1, anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3075), 1, + STATE(2866), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6046), 4, + ACTIONS(5923), 8, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [73673] = 34, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [68571] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3076), 1, + STATE(2867), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6332), 4, + ACTIONS(5925), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5923), 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, + [68665] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2868), 1, + sym_comment, + ACTIONS(2434), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2436), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [73789] = 5, + 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, + [68723] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3077), 1, + STATE(2869), 1, sym_comment, - ACTIONS(2468), 13, + ACTIONS(6215), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -320235,7 +302828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2470), 31, + ACTIONS(6217), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -320267,27 +302860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [73847] = 11, + [68781] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - STATE(3078), 1, + STATE(2870), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6077), 12, + ACTIONS(6219), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -320298,16 +302878,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(6079), 25, - sym__automatic_semicolon, + ACTIONS(6221), 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, @@ -320325,352 +302910,384 @@ 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, - [73917] = 34, + anon_sym_implements, + [68839] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6157), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6173), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3079), 1, + STATE(2871), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6223), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6029), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [74033] = 34, + [68959] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3080), 1, + STATE(2872), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + ACTIONS(6225), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6021), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [74149] = 5, + [69079] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3081), 1, - sym_comment, - ACTIONS(6334), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6336), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(6092), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_PERCENT, + ACTIONS(6112), 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, + ACTIONS(6114), 1, + anon_sym_LT, + ACTIONS(6124), 1, anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - anon_sym_implements, - [74207] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3082), 1, - sym_comment, - ACTIONS(5809), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6338), 5, + ACTIONS(6168), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5807), 13, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2873), 1, + sym_comment, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6086), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 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(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [74269] = 15, + ACTIONS(6227), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69199] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6340), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, anon_sym_LT, - STATE(3083), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2874), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6050), 12, + ACTIONS(6086), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 20, + ACTIONS(6120), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6229), 2, 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, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 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, - [74347] = 5, + [69319] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3084), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6152), 1, + anon_sym_STAR_STAR, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6231), 1, + anon_sym_LT, + STATE(2875), 1, sym_comment, - ACTIONS(6343), 13, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -320679,50 +303296,63 @@ 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(6345), 31, + ACTIONS(5923), 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, - [74405] = 5, + [69405] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3085), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6150), 1, + anon_sym_PERCENT, + ACTIONS(6152), 1, + anon_sym_STAR_STAR, + ACTIONS(6231), 1, + anon_sym_LT, + STATE(2876), 1, sym_comment, - ACTIONS(6347), 13, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -320731,334 +303361,301 @@ 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(6349), 31, + ACTIONS(5923), 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, - [74463] = 34, + [69489] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3086), 1, + STATE(2877), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6044), 4, + ACTIONS(5923), 10, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [74579] = 30, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [69591] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - STATE(3087), 1, + STATE(2878), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 8, + ACTIONS(5923), 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, - [74687] = 34, + [69691] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, - anon_sym_AMP_AMP, - ACTIONS(6147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, - anon_sym_AMP, - ACTIONS(6155), 1, - anon_sym_CARET, - ACTIONS(6157), 1, - anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, - sym__ternary_qmark, - STATE(3088), 1, + STATE(2879), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(5925), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6031), 4, + ACTIONS(5923), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [74803] = 18, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [69789] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6351), 1, + ACTIONS(6150), 1, + anon_sym_PERCENT, + ACTIONS(6152), 1, + anon_sym_STAR_STAR, + ACTIONS(6231), 1, anon_sym_LT, - STATE(3089), 1, + STATE(2880), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + ACTIONS(6126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6148), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6057), 11, - anon_sym_STAR, + ACTIONS(5925), 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(6059), 18, + ACTIONS(5923), 18, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, @@ -321067,315 +303664,366 @@ 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, - [74887] = 30, + anon_sym_satisfies, + [69875] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6035), 1, + ACTIONS(5925), 1, anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6145), 1, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6157), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6154), 1, anon_sym_LT, - STATE(3090), 1, + STATE(2881), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 8, + ACTIONS(5923), 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, - [74995] = 34, + [69981] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6157), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6173), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3091), 1, + STATE(2882), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6234), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6064), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [75111] = 5, + [70101] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3092), 1, - sym_comment, - ACTIONS(2370), 13, - anon_sym_STAR, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6138), 1, anon_sym_GT_GT, + ACTIONS(6142), 1, anon_sym_AMP, + ACTIONS(6144), 1, + anon_sym_CARET, + ACTIONS(6146), 1, anon_sym_PIPE, + ACTIONS(6150), 1, + anon_sym_PERCENT, + ACTIONS(6152), 1, + anon_sym_STAR_STAR, + ACTIONS(6154), 1, + anon_sym_LT, + STATE(2883), 1, + sym_comment, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6132), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6140), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2372), 31, + ACTIONS(6160), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6156), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 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_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, - [75169] = 5, + [70205] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3093), 1, - sym_comment, - ACTIONS(2410), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, anon_sym_GT_GT, + ACTIONS(6102), 1, anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2412), 31, - sym__ternary_qmark, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6168), 1, 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, + ACTIONS(6172), 1, anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2884), 1, + sym_comment, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6086), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6090), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6100), 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(6108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6118), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [75227] = 8, + ACTIONS(6236), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70325] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5563), 1, - anon_sym_extends, - STATE(3094), 1, + STATE(2885), 1, sym_comment, - ACTIONS(6354), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(6357), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(2360), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 28, + ACTIONS(2364), 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, @@ -321397,33 +304045,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [75291] = 14, + [70383] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6360), 1, + ACTIONS(6152), 1, + anon_sym_STAR_STAR, + ACTIONS(6231), 1, anon_sym_LT, - STATE(3095), 1, + STATE(2886), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - STATE(3722), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6066), 12, + ACTIONS(5925), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321436,7 +304089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 22, + ACTIONS(5923), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -321449,24 +304102,21 @@ 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [75367] = 5, + [70463] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3096), 1, + STATE(2887), 1, sym_comment, - ACTIONS(6363), 13, + ACTIONS(6238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321480,7 +304130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6365), 31, + ACTIONS(6240), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -321512,98 +304162,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [75425] = 36, + [70521] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3097), 1, + STATE(2888), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6367), 2, + ACTIONS(5923), 16, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75545] = 5, + anon_sym_satisfies, + [70611] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3098), 1, + STATE(2889), 1, sym_comment, - ACTIONS(2442), 13, + ACTIONS(2342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321617,7 +304252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2444), 31, + ACTIONS(2346), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -321649,85 +304284,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [75603] = 23, + [70669] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6149), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, + anon_sym_AMP_AMP, + ACTIONS(6136), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6161), 1, + ACTIONS(6142), 1, + anon_sym_AMP, + ACTIONS(6144), 1, + anon_sym_CARET, + ACTIONS(6146), 1, + anon_sym_PIPE, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6154), 1, anon_sym_LT, - STATE(3099), 1, + ACTIONS(6162), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6166), 1, + sym__ternary_qmark, + STATE(2890), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3722), 2, + ACTIONS(6158), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6160), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6035), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6033), 13, + ACTIONS(5964), 4, 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, - [75697] = 5, + [70785] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3100), 1, + STATE(2891), 1, sym_comment, - ACTIONS(2460), 13, + ACTIONS(2378), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321741,7 +304387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2464), 31, + ACTIONS(2382), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -321773,14 +304419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [75755] = 5, + [70843] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3101), 1, + STATE(2892), 1, sym_comment, - ACTIONS(6369), 13, + ACTIONS(2434), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321794,7 +304440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6371), 31, + ACTIONS(2436), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -321826,67 +304472,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [75813] = 5, + [70901] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3102), 1, - sym_comment, - ACTIONS(6373), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6375), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(6092), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, anon_sym_AMP_AMP, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6138), 1, + anon_sym_GT_GT, + ACTIONS(6142), 1, + anon_sym_AMP, + ACTIONS(6144), 1, anon_sym_CARET, + ACTIONS(6146), 1, + anon_sym_PIPE, + ACTIONS(6150), 1, anon_sym_PERCENT, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6154), 1, + anon_sym_LT, + ACTIONS(6162), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6166), 1, + sym__ternary_qmark, + STATE(2893), 1, + sym_comment, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6132), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6140), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6148), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6158), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6156), 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, - [75871] = 5, + ACTIONS(5966), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [71017] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3103), 1, + STATE(2894), 1, sym_comment, - ACTIONS(6377), 13, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321900,7 +304575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6379), 31, + ACTIONS(4497), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -321932,71 +304607,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [75929] = 9, + [71075] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6197), 1, - anon_sym_LT, - ACTIONS(6381), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6383), 1, - anon_sym_is, - STATE(3104), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, + anon_sym_LT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2895), 1, sym_comment, - STATE(3308), 1, + STATE(3066), 1, sym_type_arguments, - ACTIONS(5500), 12, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6086), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4595), 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(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [75995] = 5, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5872), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [71191] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3105), 1, + STATE(2896), 1, sym_comment, - ACTIONS(6385), 13, + ACTIONS(6242), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322010,7 +304710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6031), 31, + ACTIONS(6244), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -322042,67 +304742,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [76053] = 5, + [71249] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3106), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, + anon_sym_LT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + STATE(2897), 1, sym_comment, - ACTIONS(6387), 13, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6086), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5925), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6389), 31, + ACTIONS(5923), 13, + 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, - [76111] = 5, + [71343] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3107), 1, + STATE(2898), 1, sym_comment, - ACTIONS(6391), 13, + ACTIONS(2350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322116,7 +304834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6393), 31, + ACTIONS(2354), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -322148,14 +304866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [76169] = 5, + [71401] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3108), 1, + STATE(2899), 1, sym_comment, - ACTIONS(6395), 13, + ACTIONS(6246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322169,7 +304887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6397), 31, + ACTIONS(6248), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -322201,67 +304919,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [76227] = 5, + [71459] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3109), 1, - sym_comment, - ACTIONS(6399), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, anon_sym_GT_GT, + ACTIONS(6102), 1, anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6401), 31, - sym__ternary_qmark, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, 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, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2900), 1, + sym_comment, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6086), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6090), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6100), 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(6108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6118), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [76285] = 5, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5862), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [71575] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3110), 1, + STATE(2901), 1, sym_comment, - ACTIONS(6403), 13, + ACTIONS(6250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322275,7 +305022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6405), 31, + ACTIONS(5964), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -322307,83 +305054,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [76343] = 21, + [71633] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6103), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6115), 1, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - STATE(3111), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2902), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6105), 2, + ACTIONS(6090), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 16, + ACTIONS(6120), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6252), 2, 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, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 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, - [76433] = 5, + [71753] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3112), 1, + STATE(2903), 1, sym_comment, - ACTIONS(2350), 13, + ACTIONS(6254), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322397,7 +305159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2352), 31, + ACTIONS(6256), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -322429,380 +305191,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [76491] = 36, + [71811] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3113), 1, + STATE(2904), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6407), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76611] = 36, + ACTIONS(5852), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [71927] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3114), 1, + STATE(2905), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(2370), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6409), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76731] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(2374), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(6097), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(6099), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6101), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(6133), 1, anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3115), 1, + anon_sym_implements, + [71985] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2906), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(2300), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6258), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2298), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6411), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76849] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(2304), 24, + sym__ternary_qmark, anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(6097), 1, anon_sym_DOT, - ACTIONS(6099), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6101), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3116), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6413), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76969] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72047] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6163), 1, - anon_sym_STAR_STAR, - ACTIONS(6415), 1, + ACTIONS(6260), 1, + anon_sym_QMARK_DOT, + ACTIONS(6262), 1, anon_sym_LT, - STATE(3117), 1, + STATE(2907), 1, sym_comment, - STATE(3206), 1, + STATE(3336), 1, sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, + STATE(3504), 1, sym_arguments, - ACTIONS(6035), 11, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5532), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -322813,10 +305417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 17, + ACTIONS(5534), 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, @@ -322825,86 +305431,120 @@ 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, - [77055] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [72121] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6161), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6415), 1, + ACTIONS(6114), 1, anon_sym_LT, - STATE(3118), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2908), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 10, - anon_sym_BANG, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 18, - 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_LT_EQ, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [77139] = 5, + ACTIONS(5842), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [72237] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3119), 1, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6154), 1, + anon_sym_LT, + STATE(2909), 1, sym_comment, - ACTIONS(2328), 13, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6030), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322915,19 +305555,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(2330), 31, + ACTIONS(6032), 25, 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, @@ -322947,41 +305582,97 @@ 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, - [77197] = 16, + [72307] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6163), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6415), 1, + ACTIONS(6114), 1, anon_sym_LT, - STATE(3120), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2910), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6086), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6090), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6118), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6120), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 12, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5874), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [72423] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2911), 1, + sym_comment, + ACTIONS(6264), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322992,202 +305683,215 @@ 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(6033), 19, - sym__automatic_semicolon, + ACTIONS(6266), 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, - [77277] = 36, + anon_sym_implements, + [72481] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(6162), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6166), 1, sym__ternary_qmark, - STATE(3121), 1, + STATE(2912), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6418), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77397] = 34, + ACTIONS(6028), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [72597] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(6162), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6166), 1, sym__ternary_qmark, - STATE(3122), 1, + STATE(2913), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6031), 4, + ACTIONS(6014), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [77513] = 5, + [72713] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3123), 1, + ACTIONS(6268), 1, + sym__automatic_semicolon, + STATE(2914), 1, sym_comment, - ACTIONS(6420), 13, + ACTIONS(2370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -323201,18 +305905,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 31, + ACTIONS(2374), 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, @@ -323232,15 +305935,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [77571] = 5, + anon_sym_PIPE_RBRACE, + [72773] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3124), 1, + STATE(2915), 1, sym_comment, - ACTIONS(2376), 13, + ACTIONS(2412), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -323254,7 +305957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2380), 31, + ACTIONS(2416), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -323286,14 +305989,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [77629] = 5, + [72831] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3125), 1, + STATE(2916), 1, sym_comment, - ACTIONS(2356), 13, + ACTIONS(6270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -323307,7 +306010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2360), 31, + ACTIONS(6272), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -323339,14 +306042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [77687] = 5, + [72889] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3126), 1, + STATE(2917), 1, sym_comment, - ACTIONS(6422), 13, + ACTIONS(2462), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -323360,7 +306063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6424), 31, + ACTIONS(2464), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -323392,14 +306095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [77745] = 5, + [72947] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3127), 1, + STATE(2918), 1, sym_comment, - ACTIONS(2396), 13, + ACTIONS(2450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -323413,7 +306116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2400), 31, + ACTIONS(2452), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -323445,182 +306148,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [77803] = 36, + [73005] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3128), 1, + ACTIONS(6274), 1, + anon_sym_LT, + STATE(2919), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5912), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6426), 2, + ACTIONS(5914), 22, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 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, - [77923] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [73081] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(6162), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6166), 1, sym__ternary_qmark, - STATE(3129), 1, + STATE(2920), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6029), 4, + ACTIONS(6002), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [78039] = 6, + [73197] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5809), 1, - anon_sym_EQ, - STATE(3130), 1, + ACTIONS(6262), 1, + anon_sym_LT, + ACTIONS(6277), 1, + anon_sym_DOT, + ACTIONS(6279), 1, + anon_sym_is, + STATE(2921), 1, sym_comment, - ACTIONS(5807), 13, + STATE(3270), 1, + sym_type_arguments, + ACTIONS(5522), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -323631,21 +306318,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(5811), 30, + ACTIONS(4603), 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_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -323664,40 +306348,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [78099] = 6, + anon_sym_extends, + [73263] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3131), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, + anon_sym_LT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2922), 1, sym_comment, - ACTIONS(2289), 13, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6086), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6118), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6120), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6281), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6283), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [73381] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5594), 1, + anon_sym_extends, + STATE(2923), 1, + sym_comment, + ACTIONS(6285), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6288), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4493), 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(2295), 30, + ACTIONS(4497), 28, 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, @@ -323719,16 +306488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [78159] = 6, + [73445] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6302), 1, - anon_sym_EQ, - STATE(3132), 1, + STATE(2924), 1, sym_comment, - ACTIONS(6300), 13, + ACTIONS(2458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -323742,7 +306509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6304), 30, + ACTIONS(2460), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -323750,6 +306517,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, @@ -323773,83 +306541,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [78219] = 21, + [73503] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6149), 1, - anon_sym_GT_GT, - ACTIONS(6161), 1, - anon_sym_PERCENT, - ACTIONS(6163), 1, - anon_sym_STAR_STAR, - ACTIONS(6165), 1, - anon_sym_LT, - STATE(3133), 1, + STATE(2925), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6291), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6151), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6159), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 16, - sym__automatic_semicolon, + ACTIONS(6293), 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, - [78309] = 5, + anon_sym_implements, + [73561] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3134), 1, + STATE(2926), 1, sym_comment, - ACTIONS(2434), 13, + ACTIONS(6295), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -323863,7 +306615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2436), 31, + ACTIONS(6297), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -323895,165 +306647,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [78367] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3135), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6428), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78487] = 19, + [73619] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6161), 1, - anon_sym_PERCENT, - ACTIONS(6163), 1, - anon_sym_STAR_STAR, - ACTIONS(6415), 1, - anon_sym_LT, - STATE(3136), 1, + STATE(2927), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6299), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6159), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 18, - sym__automatic_semicolon, + ACTIONS(6301), 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, - [78573] = 5, + anon_sym_implements, + [73677] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3137), 1, + STATE(2928), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(6303), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -324067,18 +306721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2336), 31, - sym__automatic_semicolon, + ACTIONS(6305), 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, @@ -324098,567 +306752,370 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [78631] = 27, + anon_sym_implements, + [73735] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6149), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6161), 1, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6114), 1, anon_sym_LT, - STATE(3138), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6143), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6151), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6171), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6167), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 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, - [78733] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(6087), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6145), 1, - anon_sym_AMP_AMP, - ACTIONS(6147), 1, + ACTIONS(6172), 1, anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, - anon_sym_GT_GT, - ACTIONS(6153), 1, - anon_sym_AMP, - ACTIONS(6155), 1, - anon_sym_CARET, - ACTIONS(6157), 1, - anon_sym_PIPE, - ACTIONS(6161), 1, - anon_sym_PERCENT, - ACTIONS(6163), 1, - anon_sym_STAR_STAR, - ACTIONS(6165), 1, - anon_sym_LT, - ACTIONS(6173), 1, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3139), 1, + STATE(2929), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6167), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6044), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [78849] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6149), 1, - anon_sym_GT_GT, - ACTIONS(6153), 1, - anon_sym_AMP, - ACTIONS(6161), 1, - anon_sym_PERCENT, - ACTIONS(6163), 1, - anon_sym_STAR_STAR, - ACTIONS(6165), 1, - anon_sym_LT, - STATE(3140), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6141), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6143), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6151), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6171), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 11, + ACTIONS(5824), 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_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [78949] = 36, + [73851] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3141), 1, + STATE(2930), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6540), 1, + STATE(6140), 1, aux_sym_sequence_expression_repeat1, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6430), 2, + ACTIONS(6307), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79069] = 29, + [73971] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6145), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6132), 1, + anon_sym_GT, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6149), 1, + ACTIONS(6136), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6155), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6157), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6154), 1, anon_sym_LT, - STATE(3142), 1, + ACTIONS(6162), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6166), 1, + sym__ternary_qmark, + ACTIONS(6311), 1, + anon_sym_in, + STATE(2931), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6167), 3, + ACTIONS(6156), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 9, + ACTIONS(6309), 4, 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, - [79175] = 36, + [74089] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + STATE(2932), 1, + sym_comment, + ACTIONS(6314), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6316), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(6085), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(6097), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(6099), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6101), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3143), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6432), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [79295] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [74147] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6149), 1, - anon_sym_GT_GT, - ACTIONS(6153), 1, - anon_sym_AMP, - ACTIONS(6155), 1, - anon_sym_CARET, - ACTIONS(6157), 1, - anon_sym_PIPE, - ACTIONS(6161), 1, - anon_sym_PERCENT, - ACTIONS(6163), 1, - anon_sym_STAR_STAR, - ACTIONS(6165), 1, - anon_sym_LT, - STATE(3144), 1, + STATE(2933), 1, sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6318), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6143), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6159), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6167), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 10, - sym__automatic_semicolon, + ACTIONS(6320), 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, - [79399] = 5, + anon_sym_implements, + [74205] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3145), 1, + STATE(2934), 1, sym_comment, - ACTIONS(2332), 13, + ACTIONS(6322), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -324672,7 +307129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2336), 31, + ACTIONS(6324), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -324704,46 +307161,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [79457] = 14, + [74263] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6434), 1, + ACTIONS(6326), 1, anon_sym_LT, - STATE(3146), 1, + STATE(2935), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - STATE(3722), 2, + ACTIONS(6086), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6066), 12, - anon_sym_STAR, + ACTIONS(5925), 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(6068), 22, + ACTIONS(5923), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -324755,98 +307221,94 @@ 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, - [79533] = 25, + [74349] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6149), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6161), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6114), 1, anon_sym_LT, - STATE(3147), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + STATE(2936), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6143), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6151), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6159), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6169), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6171), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 3, + ACTIONS(5925), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6167), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 11, + ACTIONS(5923), 11, 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_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [79631] = 5, + [74447] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3148), 1, + STATE(2937), 1, sym_comment, - ACTIONS(6437), 13, + ACTIONS(6329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -324860,7 +307322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 31, + ACTIONS(6331), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -324892,644 +307354,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [79689] = 34, + [74505] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6145), 1, - anon_sym_AMP_AMP, - ACTIONS(6147), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6149), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6153), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6155), 1, - anon_sym_CARET, - ACTIONS(6157), 1, - anon_sym_PIPE, - ACTIONS(6161), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6163), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6165), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6173), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6175), 1, - sym__ternary_qmark, - STATE(3149), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + STATE(2938), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6141), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6143), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6151), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6159), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6169), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6171), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6167), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6046), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [79805] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6085), 1, - anon_sym_COMMA, - ACTIONS(6087), 1, + ACTIONS(5925), 2, anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3150), 1, - sym_comment, - STATE(3206), 1, - sym_type_arguments, - STATE(6540), 1, - aux_sym_sequence_expression_repeat1, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6441), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79925] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5923), 11, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5633), 1, anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6443), 1, - anon_sym_RBRACK, - STATE(2750), 1, - sym_type_arguments, - STATE(3151), 1, - sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80044] = 36, + [74605] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, + STATE(2939), 1, + sym_comment, + ACTIONS(6018), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6333), 5, anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6445), 1, + anon_sym_RBRACE, anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3152), 1, - sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(6016), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80163] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6020), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6449), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3153), 1, + [74667] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2940), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - STATE(7087), 1, - aux_sym_array_repeat1, - ACTIONS(5629), 2, + ACTIONS(6335), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6337), 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(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80282] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [74725] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6453), 1, - sym__automatic_semicolon, - STATE(3154), 1, - sym_comment, - ACTIONS(6451), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [80339] = 5, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6457), 1, - sym__automatic_semicolon, - STATE(3155), 1, + STATE(2941), 1, sym_comment, - ACTIONS(6455), 42, - anon_sym_export, + ACTIONS(2438), 13, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [80396] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6461), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2440), 31, sym__automatic_semicolon, - STATE(3156), 1, - sym_comment, - ACTIONS(6459), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, + anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [80453] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6465), 1, - anon_sym_SEMI, - ACTIONS(6468), 1, - sym__automatic_semicolon, - STATE(3157), 1, - sym_comment, - ACTIONS(6463), 41, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [80512] = 8, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [74783] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6197), 1, - anon_sym_LT, - ACTIONS(6381), 1, - anon_sym_DOT, - STATE(3158), 1, + STATE(2942), 1, sym_comment, - STATE(3308), 1, - sym_type_arguments, - ACTIONS(5500), 12, + ACTIONS(2444), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -325540,18 +307607,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(4595), 28, - sym__automatic_semicolon, + ACTIONS(2448), 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, @@ -325570,77 +307641,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80575] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_implements, + [74841] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6472), 1, - sym__automatic_semicolon, - STATE(3159), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_extends, + STATE(2943), 1, sym_comment, - ACTIONS(6470), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(6343), 2, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + ACTIONS(6346), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6339), 10, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [80632] = 8, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6341), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [74905] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4599), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_QMARK, - STATE(3160), 1, + STATE(2944), 1, sym_comment, - ACTIONS(4685), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4493), 13, + ACTIONS(2398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -325654,11 +307719,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(2402), 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, @@ -325678,234 +307750,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80695] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_implements, + [74963] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6476), 1, - sym__automatic_semicolon, - STATE(3161), 1, - sym_comment, - ACTIONS(6474), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [80752] = 17, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(2945), 1, - anon_sym_override, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(6478), 1, - anon_sym_STAR, - ACTIONS(6480), 1, - anon_sym_async, - ACTIONS(6482), 1, - anon_sym_readonly, - STATE(3162), 1, - sym_comment, - STATE(3899), 1, - sym_override_modifier, - STATE(5557), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6484), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(6088), 1, anon_sym_LPAREN, + ACTIONS(6114), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 25, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [80833] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6488), 1, - sym__automatic_semicolon, - STATE(3163), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + STATE(2945), 1, sym_comment, - ACTIONS(6486), 42, - anon_sym_export, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6030), 12, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [80890] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6492), 1, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6032), 25, sym__automatic_semicolon, - STATE(3164), 1, - sym_comment, - ACTIONS(6490), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [80947] = 5, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [75033] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3165), 1, + STATE(2946), 1, sym_comment, - ACTIONS(4337), 13, + ACTIONS(2438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -325919,16 +307831,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5565), 30, - sym__automatic_semicolon, + ACTIONS(2440), 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, @@ -325948,860 +307862,815 @@ 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, - [81004] = 34, + anon_sym_implements, + [75091] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, + ACTIONS(6134), 1, anon_sym_AMP_AMP, - ACTIONS(6502), 1, + ACTIONS(6136), 1, anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(6138), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6142), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6144), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6146), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6150), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6152), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6154), 1, anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(6162), 1, anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6166), 1, sym__ternary_qmark, - STATE(3166), 1, + STATE(2947), 1, sym_comment, - STATE(3594), 1, + STATE(3066), 1, sym_type_arguments, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6126), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6132), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6140), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6148), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6158), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6160), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6496), 3, + ACTIONS(6156), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5824), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [75207] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2948), 1, + sym_comment, + ACTIONS(6349), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6351), 31, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + 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, - [81119] = 35, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [75265] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6075), 1, - anon_sym_COMMA, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3167), 1, + STATE(2949), 1, sym_comment, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(7132), 1, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, + ACTIONS(6353), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81236] = 36, + [75385] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - ACTIONS(6532), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3168), 1, + STATE(2950), 1, sym_comment, - STATE(5730), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + ACTIONS(6355), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81355] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [75505] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6536), 1, - sym__automatic_semicolon, - STATE(3169), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2951), 1, sym_comment, - ACTIONS(6534), 42, - anon_sym_export, + ACTIONS(2450), 13, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2452), 31, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, + anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [81412] = 34, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [75563] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3170), 1, + STATE(2952), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + ACTIONS(6357), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6538), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [81527] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6542), 1, - sym__automatic_semicolon, - STATE(3171), 1, - sym_comment, - ACTIONS(6540), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [81584] = 34, + [75683] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3172), 1, + STATE(2953), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6359), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6021), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81699] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6492), 1, - sym__automatic_semicolon, - STATE(3173), 1, - sym_comment, - ACTIONS(6490), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [81756] = 36, + [75803] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6447), 1, + ACTIONS(6168), 1, anon_sym_COMMA, - ACTIONS(6544), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3174), 1, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2954), 1, sym_comment, - STATE(6967), 1, - aux_sym_array_repeat1, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + ACTIONS(6361), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81875] = 36, + [75923] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6447), 1, + ACTIONS(6168), 1, anon_sym_COMMA, - ACTIONS(6546), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3175), 1, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2955), 1, sym_comment, - STATE(6797), 1, - aux_sym_array_repeat1, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + ACTIONS(6363), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81994] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [76043] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6550), 1, - sym__automatic_semicolon, - STATE(3176), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2956), 1, sym_comment, - ACTIONS(6548), 42, - anon_sym_export, + ACTIONS(6365), 13, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [82051] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6542), 1, - sym__automatic_semicolon, - STATE(3177), 1, - sym_comment, - ACTIONS(6540), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6367), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [82108] = 8, + 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, + [76101] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4688), 1, - anon_sym_QMARK, - ACTIONS(4696), 1, - anon_sym_EQ, - STATE(3178), 1, + STATE(2957), 1, sym_comment, - ACTIONS(4699), 5, + ACTIONS(6339), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6341), 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, - ACTIONS(4493), 13, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [76159] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2958), 1, + sym_comment, + ACTIONS(2298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -326815,11 +308684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(2304), 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, @@ -326839,172 +308714,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82171] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_implements, + [76219] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6492), 1, - sym__automatic_semicolon, - STATE(3179), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2959), 1, sym_comment, - ACTIONS(6490), 42, - anon_sym_export, + ACTIONS(6369), 13, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6371), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [82228] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + 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, + [76277] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6552), 1, - sym__automatic_semicolon, - STATE(3180), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2960), 1, sym_comment, - ACTIONS(2287), 42, - anon_sym_export, + ACTIONS(2462), 13, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [82285] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6536), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2464), 31, sym__automatic_semicolon, - STATE(3181), 1, - sym_comment, - ACTIONS(6534), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, + anon_sym_else, + anon_sym_LPAREN, anon_sym_of, + anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [82342] = 6, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [76335] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6554), 1, - anon_sym_is, - STATE(3182), 1, + STATE(2961), 1, sym_comment, - ACTIONS(5569), 13, + ACTIONS(2476), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -327018,16 +308842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5571), 29, - sym__automatic_semicolon, + ACTIONS(2480), 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, @@ -327047,224 +308873,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [82401] = 36, + anon_sym_implements, + [76393] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - ACTIONS(6556), 1, - anon_sym_RBRACK, - STATE(2750), 1, - sym_type_arguments, - STATE(3183), 1, + STATE(2962), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82520] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6558), 1, + ACTIONS(6014), 4, sym__automatic_semicolon, - STATE(3184), 1, - sym_comment, - ACTIONS(2287), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [82577] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [76509] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6562), 1, - sym__automatic_semicolon, - STATE(3185), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2963), 1, sym_comment, - ACTIONS(6560), 42, - anon_sym_export, + ACTIONS(5692), 13, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [82634] = 5, + 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, + [76567] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6564), 1, - sym__automatic_semicolon, - STATE(3186), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(2964), 1, sym_comment, - ACTIONS(2332), 42, + STATE(5461), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5616), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -327286,69 +309069,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [82691] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [76639] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6568), 1, - sym__automatic_semicolon, - STATE(3187), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, + anon_sym_LT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2965), 1, sym_comment, - ACTIONS(6566), 42, - anon_sym_export, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6086), 2, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + anon_sym_SLASH, + ACTIONS(6090), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [82748] = 6, + ACTIONS(6118), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6120), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5910), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [76755] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6383), 1, - anon_sym_is, - STATE(3188), 1, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6262), 1, + anon_sym_LT, + ACTIONS(6373), 1, + anon_sym_DOT, + STATE(2966), 1, sym_comment, - ACTIONS(5561), 13, + STATE(3249), 1, + sym_type_arguments, + STATE(3250), 1, + sym_arguments, + ACTIONS(5552), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -327359,20 +309179,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(5563), 29, + ACTIONS(5554), 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, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -327392,370 +309209,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82807] = 34, + [76823] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, - anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, - anon_sym_GT_GT, - ACTIONS(6508), 1, - anon_sym_AMP, - ACTIONS(6510), 1, - anon_sym_CARET, - ACTIONS(6512), 1, - anon_sym_PIPE, - ACTIONS(6516), 1, - anon_sym_PERCENT, - ACTIONS(6518), 1, - anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6262), 1, anon_sym_LT, - ACTIONS(6528), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3189), 1, + ACTIONS(6375), 1, + anon_sym_DOT, + STATE(2967), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + STATE(3251), 1, + sym_type_arguments, + STATE(3254), 1, + sym_arguments, + ACTIONS(5546), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6498), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6514), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6019), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82922] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6570), 1, + ACTIONS(5548), 27, sym__automatic_semicolon, - STATE(3190), 1, - sym_comment, - ACTIONS(2332), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [82979] = 34, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_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, + [76891] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6500), 1, - anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, - anon_sym_GT_GT, - ACTIONS(6508), 1, - anon_sym_AMP, - ACTIONS(6510), 1, - anon_sym_CARET, - ACTIONS(6512), 1, - anon_sym_PIPE, - ACTIONS(6516), 1, - anon_sym_PERCENT, - ACTIONS(6518), 1, - anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6377), 1, anon_sym_LT, - ACTIONS(6528), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3191), 1, + STATE(2968), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6494), 2, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5903), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6498), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6514), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6029), 3, - anon_sym_LBRACE, + ACTIONS(5905), 18, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83094] = 34, + [76975] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3192), 1, + ACTIONS(6380), 1, + anon_sym_COMMA, + ACTIONS(6383), 1, + anon_sym_RBRACE, + STATE(2969), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(5966), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6031), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83209] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6492), 1, - sym__automatic_semicolon, - STATE(3193), 1, - sym_comment, - ACTIONS(6490), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [83266] = 7, + [77095] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3194), 1, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6262), 1, + anon_sym_LT, + ACTIONS(6385), 1, + anon_sym_DOT, + STATE(2970), 1, sym_comment, - ACTIONS(5809), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6572), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5807), 13, + STATE(3255), 1, + sym_type_arguments, + STATE(3256), 1, + sym_arguments, + ACTIONS(4503), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -327766,15 +309445,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(5811), 23, + ACTIONS(4499), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + 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, @@ -327793,270 +309474,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83327] = 30, + anon_sym_extends, + [77163] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6500), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3195), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2971), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(6028), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [83434] = 34, + anon_sym_RBRACE, + anon_sym_SEMI, + [77279] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3196), 1, + ACTIONS(6281), 1, + anon_sym_RBRACE, + ACTIONS(6387), 1, + anon_sym_COMMA, + STATE(2972), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6390), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6017), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83549] = 23, + [77399] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(6392), 1, + sym__automatic_semicolon, + STATE(2973), 1, + sym_comment, + ACTIONS(2296), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2456), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(6504), 1, - anon_sym_GT_GT, - ACTIONS(6516), 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(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3197), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6494), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [77459] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2974), 1, + sym_comment, + ACTIONS(6396), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6400), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(6394), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6498), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6514), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6522), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6035), 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(6033), 12, + ACTIONS(6398), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + 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, - anon_sym_implements, - [83642] = 9, + [77521] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - ACTIONS(5699), 1, - anon_sym_extends, - STATE(3198), 1, + STATE(2975), 1, sym_comment, - ACTIONS(6273), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(6276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(6402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 26, + ACTIONS(6404), 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, @@ -328077,207 +309802,216 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83707] = 34, + anon_sym_implements, + [77579] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, - anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, - anon_sym_GT_GT, - ACTIONS(6508), 1, - anon_sym_AMP, - ACTIONS(6510), 1, - anon_sym_CARET, - ACTIONS(6512), 1, - anon_sym_PIPE, - ACTIONS(6516), 1, - anon_sym_PERCENT, - ACTIONS(6518), 1, - anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6406), 1, anon_sym_LT, - ACTIONS(6528), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3199), 1, + STATE(2976), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6494), 2, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5896), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6498), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6514), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6015), 3, - anon_sym_LBRACE, + ACTIONS(5898), 20, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [83822] = 34, + anon_sym_satisfies, + [77657] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3200), 1, + STATE(2977), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6013), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83937] = 19, + ACTIONS(5964), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [77773] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(6396), 1, + anon_sym_EQ, + STATE(2978), 1, + sym_comment, + ACTIONS(6394), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6398), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6518), 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(6575), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3201), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 11, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [77833] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2979), 1, + sym_comment, + ACTIONS(6409), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -328286,62 +310020,74 @@ 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(6033), 16, + ACTIONS(6411), 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, - [84022] = 18, + [77891] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6516), 1, - anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6575), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6326), 1, anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3202), 1, + STATE(2980), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6494), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 10, + ACTIONS(5925), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -328350,18 +310096,22 @@ 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(6033), 17, + ACTIONS(5923), 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, @@ -328369,98 +310119,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [84105] = 36, + [77971] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5742), 1, + anon_sym_extends, + STATE(2981), 1, + sym_comment, + ACTIONS(6413), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5641), 1, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4497), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6578), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3203), 1, + anon_sym_implements, + [78035] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2982), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - STATE(7240), 1, - aux_sym_array_repeat1, - ACTIONS(5629), 2, + ACTIONS(6419), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6421), 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(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84224] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [78093] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3204), 1, + STATE(2983), 1, sym_comment, - ACTIONS(4343), 13, + ACTIONS(6423), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -328474,16 +310249,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5595), 30, - sym__automatic_semicolon, + ACTIONS(6425), 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, @@ -328503,75 +310280,15 @@ 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, - [84281] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6472), 1, - sym__automatic_semicolon, - STATE(3205), 1, - sym_comment, - ACTIONS(6470), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [84338] = 8, + anon_sym_implements, + [78151] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - STATE(3206), 1, + STATE(2984), 1, sym_comment, - STATE(3704), 2, - sym_template_string, - sym_arguments, - ACTIONS(5553), 13, + ACTIONS(2334), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -328585,15 +310302,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5555), 26, - sym__automatic_semicolon, + ACTIONS(2338), 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, @@ -328611,641 +310331,783 @@ 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, - [84401] = 27, + anon_sym_implements, + [78209] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6504), 1, - anon_sym_GT_GT, - ACTIONS(6508), 1, - anon_sym_AMP, - ACTIONS(6510), 1, - anon_sym_CARET, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6326), 1, anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3207), 1, + STATE(2985), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6086), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 10, anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6494), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6498), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6514), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(5923), 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, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6522), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(6033), 9, + anon_sym_satisfies, + [78293] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(2986), 1, + sym_comment, + ACTIONS(2388), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2392), 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, - [84502] = 26, + [78351] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6504), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6516), 1, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3208), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + ACTIONS(6281), 1, + anon_sym_RBRACE, + ACTIONS(6427), 1, + anon_sym_COMMA, + STATE(2987), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6494), 2, + ACTIONS(5966), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 10, - sym__ternary_qmark, + [78471] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6326), 1, + anon_sym_LT, + STATE(2988), 1, + sym_comment, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(5923), 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_satisfies, - anon_sym_implements, - [84601] = 36, + anon_sym_instanceof, + [78557] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6447), 1, + ACTIONS(6168), 1, anon_sym_COMMA, - ACTIONS(6580), 1, - anon_sym_RBRACK, - STATE(2750), 1, - sym_type_arguments, - STATE(3209), 1, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2989), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - STATE(7105), 1, - aux_sym_array_repeat1, - ACTIONS(5629), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + ACTIONS(6430), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84720] = 25, + [78677] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6504), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6516), 1, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3210), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2990), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5966), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [84817] = 36, + anon_sym_RBRACE, + anon_sym_SEMI, + [78793] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - ACTIONS(6582), 1, - anon_sym_RBRACK, - STATE(2750), 1, - sym_type_arguments, - STATE(3211), 1, + STATE(2991), 1, sym_comment, - STATE(5730), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + ACTIONS(6432), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84936] = 19, + [78913] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6516), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6575), 1, + ACTIONS(6114), 1, anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3212), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2992), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6514), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 8, - anon_sym_BANG, + ACTIONS(6090), 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(6033), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6118), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6434), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [85021] = 29, + [79033] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6500), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6504), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3213), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + STATE(2993), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 8, + ACTIONS(5923), 8, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_implements, - [85126] = 28, + [79141] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6504), 1, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3214), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(2994), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6436), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 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, - [85229] = 16, + [79261] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6518), 1, - anon_sym_STAR_STAR, - ACTIONS(6575), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3215), 1, + STATE(2995), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 12, + ACTIONS(6438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329256,265 +311118,202 @@ 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(6033), 18, + ACTIONS(5862), 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, - anon_sym_implements, - [85308] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6504), 1, - anon_sym_GT_GT, - ACTIONS(6516), 1, - anon_sym_PERCENT, - ACTIONS(6518), 1, - anon_sym_STAR_STAR, - ACTIONS(6520), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3216), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6494), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6506), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6514), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 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_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [85397] = 34, + [79319] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6168), 1, + anon_sym_COMMA, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3217), 1, + STATE(2996), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6140), 1, + aux_sym_sequence_expression_repeat1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6440), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6044), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85512] = 34, + [79439] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, - anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, - anon_sym_AMP, - ACTIONS(6510), 1, - anon_sym_CARET, - ACTIONS(6512), 1, - anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6528), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3218), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + STATE(2997), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6526), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6046), 3, - anon_sym_LBRACE, + ACTIONS(5925), 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(5923), 16, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85627] = 5, + anon_sym_satisfies, + [79529] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3219), 1, + STATE(2998), 1, sym_comment, - ACTIONS(2209), 13, + ACTIONS(6442), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329528,16 +311327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2257), 30, - sym__automatic_semicolon, + ACTIONS(6014), 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, @@ -329557,265 +311358,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [85684] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6472), 1, - sym__automatic_semicolon, - STATE(3220), 1, - sym_comment, - ACTIONS(6470), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [85741] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6488), 1, - sym__automatic_semicolon, - STATE(3221), 1, - sym_comment, - ACTIONS(6486), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [85798] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6568), 1, - sym__automatic_semicolon, - STATE(3222), 1, - sym_comment, - ACTIONS(6566), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [85855] = 36, + anon_sym_implements, + [79587] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6584), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3223), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + STATE(2999), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85974] = 8, + ACTIONS(5923), 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, + [79689] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4708), 1, - anon_sym_QMARK, - STATE(3224), 1, + STATE(3000), 1, sym_comment, - ACTIONS(4706), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4493), 13, + ACTIONS(2370), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329829,10 +311455,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(2374), 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, @@ -329853,18 +311486,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86037] = 7, + anon_sym_PIPE_RBRACE, + [79747] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6197), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, anon_sym_LT, - STATE(3225), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + ACTIONS(6281), 1, + anon_sym_RBRACE, + ACTIONS(6387), 1, + anon_sym_COMMA, + STATE(3001), 1, sym_comment, - STATE(3344), 1, + STATE(3066), 1, sym_type_arguments, - ACTIONS(5569), 12, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6028), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6086), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6090), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6118), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6120), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [79867] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3002), 1, + sym_comment, + ACTIONS(6444), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329875,18 +311589,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(5571), 29, - sym__automatic_semicolon, + ACTIONS(6446), 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, @@ -329906,182 +311623,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86098] = 36, + anon_sym_implements, + [79925] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(6586), 1, - anon_sym_RBRACK, - STATE(2750), 1, + ACTIONS(6450), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3226), 1, + STATE(3003), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - STATE(7348), 1, + STATE(7081), 1, aux_sym_array_repeat1, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86217] = 35, + [80044] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6454), 1, + sym__automatic_semicolon, + STATE(3004), 1, + sym_comment, + ACTIONS(6452), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [80101] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6075), 1, + ACTIONS(5840), 1, + anon_sym_extends, + ACTIONS(6018), 1, + anon_sym_EQ, + STATE(3005), 1, + sym_comment, + ACTIONS(6022), 2, anon_sym_COMMA, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6025), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3227), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6016), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6588), 2, + ACTIONS(6020), 26, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [86334] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80166] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6542), 1, + ACTIONS(6458), 1, sym__automatic_semicolon, - STATE(3228), 1, + STATE(3006), 1, sym_comment, - ACTIONS(6540), 42, + ACTIONS(6456), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330124,16 +311867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [86391] = 5, + [80223] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6592), 1, + ACTIONS(2374), 1, sym__automatic_semicolon, - STATE(3229), 1, + STATE(3007), 1, sym_comment, - ACTIONS(6590), 42, + ACTIONS(2370), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330176,99 +311919,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [86448] = 36, + [80280] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6594), 1, - anon_sym_RBRACK, - STATE(2750), 1, - sym_type_arguments, - STATE(3230), 1, + STATE(3008), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - STATE(7348), 1, - aux_sym_array_repeat1, - ACTIONS(5629), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86567] = 5, + ACTIONS(6309), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [80395] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6536), 1, + ACTIONS(6458), 1, sym__automatic_semicolon, - STATE(3231), 1, + STATE(3009), 1, sym_comment, - ACTIONS(6534), 42, + ACTIONS(6456), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330311,18 +312052,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [86624] = 6, + [80452] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6598), 1, - anon_sym_SEMI, - ACTIONS(6601), 1, + ACTIONS(6462), 1, sym__automatic_semicolon, - STATE(3232), 1, + STATE(3010), 1, sym_comment, - ACTIONS(6596), 41, + ACTIONS(6460), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330331,6 +312070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -330364,338 +312104,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [86683] = 36, + [80509] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6603), 1, + ACTIONS(6464), 1, anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3233), 1, + STATE(3011), 1, sym_comment, - STATE(6993), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - STATE(7338), 1, - aux_sym_array_repeat1, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86802] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6492), 1, - sym__automatic_semicolon, - STATE(3234), 1, - sym_comment, - ACTIONS(6490), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [86859] = 36, + [80628] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(6605), 1, - anon_sym_RBRACE, - STATE(2750), 1, + ACTIONS(6466), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3235), 1, + STATE(3012), 1, sym_comment, - STATE(5730), 1, + STATE(5453), 1, aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86978] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6488), 1, - sym__automatic_semicolon, - STATE(3236), 1, - sym_comment, - ACTIONS(6486), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [87035] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6472), 1, - sym__automatic_semicolon, - STATE(3237), 1, - sym_comment, - ACTIONS(6470), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [87092] = 5, + [80747] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6592), 1, + ACTIONS(6470), 1, sym__automatic_semicolon, - STATE(3238), 1, + STATE(3013), 1, sym_comment, - ACTIONS(6590), 42, + ACTIONS(6468), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330738,74 +312322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [87149] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(6520), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3239), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6077), 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(6079), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - [87218] = 5, + [80804] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6492), 1, + ACTIONS(6474), 1, sym__automatic_semicolon, - STATE(3240), 1, + STATE(3014), 1, sym_comment, - ACTIONS(6490), 42, + ACTIONS(6472), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330848,286 +312374,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [87275] = 34, + [80861] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6028), 1, + anon_sym_COMMA, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3241), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6268), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [87390] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3242), 1, - sym_comment, - ACTIONS(5577), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, + ACTIONS(6106), 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(5579), 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, + ACTIONS(6110), 1, anon_sym_PERCENT, + ACTIONS(6112), 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_is, - [87447] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4599), 1, - anon_sym_EQ, - ACTIONS(6273), 1, - anon_sym_LBRACK, - STATE(3243), 1, - sym_comment, - ACTIONS(6276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5699), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4493), 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, + ACTIONS(6114), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4497), 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, - [87512] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6500), 1, - anon_sym_AMP_AMP, - ACTIONS(6502), 1, + ACTIONS(6172), 1, anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, - anon_sym_GT_GT, - ACTIONS(6508), 1, - anon_sym_AMP, - ACTIONS(6510), 1, - anon_sym_CARET, - ACTIONS(6512), 1, - anon_sym_PIPE, - ACTIONS(6516), 1, - anon_sym_PERCENT, - ACTIONS(6518), 1, - anon_sym_STAR_STAR, - ACTIONS(6520), 1, - anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3244), 1, + STATE(3015), 1, sym_comment, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6476), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6011), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87627] = 5, + [80978] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6542), 1, + ACTIONS(6480), 1, + anon_sym_SEMI, + ACTIONS(6483), 1, sym__automatic_semicolon, - STATE(3245), 1, + STATE(3016), 1, sym_comment, - ACTIONS(6540), 42, + ACTIONS(6478), 41, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331136,7 +312476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -331170,203 +312509,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [87684] = 5, + [81037] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3246), 1, - sym_comment, - ACTIONS(5679), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5681), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5538), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, + ACTIONS(5658), 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, - [87741] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - STATE(3247), 1, - sym_comment, - ACTIONS(5512), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2586), 36, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [87802] = 34, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(6485), 1, + anon_sym_RPAREN, + STATE(2607), 1, + sym_type_arguments, + STATE(3017), 1, + sym_comment, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [81156] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6487), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3248), 1, + STATE(3018), 1, sym_comment, - STATE(6993), 1, + STATE(6657), 1, + aux_sym_array_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6268), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - [87917] = 5, + [81275] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6472), 1, + ACTIONS(6489), 1, sym__automatic_semicolon, - STATE(3249), 1, + STATE(3019), 1, sym_comment, - ACTIONS(6470), 42, + ACTIONS(2370), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331409,41 +312727,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [87974] = 7, + [81332] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3250), 1, - sym_comment, - ACTIONS(2291), 2, + ACTIONS(4579), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6607), 5, + ACTIONS(6413), 1, + anon_sym_LBRACK, + STATE(3020), 1, + sym_comment, + ACTIONS(6416), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5742), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2289), 13, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4493), 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(2295), 23, + ACTIONS(4497), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -331463,97 +312783,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88035] = 34, + [81397] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3251), 1, + STATE(3021), 1, sym_comment, - STATE(7132), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6003), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(6121), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [88150] = 5, + ACTIONS(6309), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + [81512] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6542), 1, + ACTIONS(6462), 1, sym__automatic_semicolon, - STATE(3252), 1, + STATE(3022), 1, sym_comment, - ACTIONS(6540), 42, + ACTIONS(6460), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331596,16 +312916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [88207] = 6, + [81569] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6383), 1, - anon_sym_is, - STATE(3253), 1, + STATE(3023), 1, sym_comment, - ACTIONS(5589), 13, + ACTIONS(4341), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -331619,7 +312937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5591), 29, + ACTIONS(5614), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -331649,16 +312967,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [88266] = 5, + anon_sym_PIPE_RBRACE, + [81626] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6612), 1, + ACTIONS(6491), 1, sym__automatic_semicolon, - STATE(3254), 1, + STATE(3024), 1, sym_comment, - ACTIONS(6610), 42, + ACTIONS(2296), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331701,16 +313020,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [88323] = 5, + [81683] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6550), 1, + ACTIONS(6493), 1, sym__automatic_semicolon, - STATE(3255), 1, + STATE(3025), 1, sym_comment, - ACTIONS(6548), 42, + ACTIONS(2370), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331753,783 +313072,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [88380] = 36, + [81740] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6614), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3256), 1, + ACTIONS(6497), 1, + sym__automatic_semicolon, + STATE(3026), 1, sym_comment, - STATE(6907), 1, - aux_sym_array_repeat1, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(6495), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88499] = 36, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [81797] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6616), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3257), 1, + ACTIONS(6499), 1, + sym__automatic_semicolon, + STATE(3027), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - STATE(7287), 1, - aux_sym_array_repeat1, - ACTIONS(5629), 2, + ACTIONS(2296), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88618] = 36, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [81854] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6513), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6515), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6521), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6525), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(6535), 1, sym__ternary_qmark, - ACTIONS(6618), 1, - anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3258), 1, + STATE(3028), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88737] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6620), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3259), 1, - sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(6501), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6511), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88856] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6622), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3260), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6066), 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(6068), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6002), 3, 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_implements, + ACTIONS(6527), 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, - anon_sym_implements, - [88931] = 36, + [81969] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6513), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6515), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6521), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6525), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(6535), 1, sym__ternary_qmark, - ACTIONS(6625), 1, - anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3261), 1, + STATE(3029), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6511), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5964), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6527), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89050] = 36, + [82084] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(6627), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6537), 1, anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3262), 1, + STATE(3030), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(6830), 1, + aux_sym_array_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89169] = 34, + [82203] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, - anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, - anon_sym_GT_GT, - ACTIONS(6508), 1, - anon_sym_AMP, - ACTIONS(6510), 1, - anon_sym_CARET, - ACTIONS(6512), 1, - anon_sym_PIPE, - ACTIONS(6516), 1, - anon_sym_PERCENT, - ACTIONS(6518), 1, - anon_sym_STAR_STAR, - ACTIONS(6520), 1, - anon_sym_LT, - ACTIONS(6528), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3263), 1, + ACTIONS(2460), 1, + sym__automatic_semicolon, + STATE(3031), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(2458), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6498), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6506), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6514), 2, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6526), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89284] = 18, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [82260] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6629), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3264), 1, + ACTIONS(6541), 1, + sym__automatic_semicolon, + STATE(3032), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6057), 11, + ACTIONS(6539), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6059), 17, - 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_STAR_STAR, - anon_sym_LT_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, - [89367] = 15, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [82317] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6632), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3265), 1, + ACTIONS(6545), 1, + sym__automatic_semicolon, + STATE(3033), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6050), 12, + ACTIONS(6543), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6052), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_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, - [89444] = 5, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [82374] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6492), 1, + ACTIONS(6541), 1, sym__automatic_semicolon, - STATE(3266), 1, + STATE(3034), 1, sym_comment, - ACTIONS(6490), 42, + ACTIONS(6539), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -332572,16 +313629,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [89501] = 5, + [82431] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6536), 1, + ACTIONS(6462), 1, sym__automatic_semicolon, - STATE(3267), 1, + STATE(3035), 1, sym_comment, - ACTIONS(6534), 42, + ACTIONS(6460), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -332624,284 +313681,353 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [89558] = 36, + [82488] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(6635), 1, + ACTIONS(6547), 1, anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3268), 1, + STATE(3036), 1, sym_comment, - STATE(5730), 1, + STATE(5453), 1, aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89677] = 36, + [82607] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(6637), 1, + ACTIONS(6549), 1, anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3269), 1, + STATE(3037), 1, sym_comment, - STATE(5730), 1, + STATE(5453), 1, aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89796] = 35, + [82726] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(6551), 1, + anon_sym_STAR, + ACTIONS(6553), 1, + anon_sym_async, + ACTIONS(6555), 1, + anon_sym_readonly, + STATE(3038), 1, + sym_comment, + STATE(3735), 1, + sym_override_modifier, + STATE(5432), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6557), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 25, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [82807] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6075), 1, - anon_sym_COMMA, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3206), 1, + ACTIONS(6559), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3270), 1, + STATE(3039), 1, sym_comment, - STATE(7132), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6639), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89913] = 5, + [82926] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6550), 1, - sym__automatic_semicolon, - STATE(3271), 1, + ACTIONS(5487), 1, + anon_sym_COMMA, + ACTIONS(5530), 1, + anon_sym_RBRACE, + STATE(3040), 1, sym_comment, - ACTIONS(6548), 42, + STATE(6517), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2596), 36, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -332923,126 +314049,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [89970] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [82989] = 8, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(5813), 1, - anon_sym_LBRACK, - STATE(3272), 1, - sym_comment, - ACTIONS(5816), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6641), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5725), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5807), 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(5811), 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, - [90037] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3273), 1, - sym_comment, - 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(5617), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5487), 1, anon_sym_COMMA, + ACTIONS(5530), 1, anon_sym_RBRACE, + STATE(3041), 1, + sym_comment, + STATE(6517), 1, + aux_sym_object_repeat1, + ACTIONS(1241), 4, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2592), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [90094] = 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [83052] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6488), 1, + ACTIONS(6458), 1, sym__automatic_semicolon, - STATE(3274), 1, + STATE(3042), 1, sym_comment, - ACTIONS(6486), 42, + ACTIONS(6456), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -333085,16 +314156,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [90151] = 5, + [83109] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6550), 1, + ACTIONS(6541), 1, sym__automatic_semicolon, - STATE(3275), 1, + STATE(3043), 1, sym_comment, - ACTIONS(6548), 42, + ACTIONS(6539), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -333137,16 +314208,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [90208] = 5, + [83166] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6018), 1, + anon_sym_EQ, + ACTIONS(6022), 1, + anon_sym_LBRACK, + STATE(3044), 1, + sym_comment, + ACTIONS(6025), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6561), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5840), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(6016), 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(6020), 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, + [83233] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(6565), 1, + anon_sym_RPAREN, + STATE(2607), 1, + sym_type_arguments, + STATE(3045), 1, + sym_comment, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [83352] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6488), 1, + ACTIONS(6545), 1, sym__automatic_semicolon, - STATE(3276), 1, + STATE(3046), 1, sym_comment, - ACTIONS(6486), 42, + ACTIONS(6543), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -333189,16 +314400,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [90265] = 5, + [83409] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6488), 1, + ACTIONS(6569), 1, sym__automatic_semicolon, - STATE(3277), 1, + STATE(3047), 1, sym_comment, - ACTIONS(6486), 42, + ACTIONS(6567), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -333241,510 +314452,531 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [90322] = 35, + [83466] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6075), 1, + ACTIONS(6034), 1, + anon_sym_LBRACK, + STATE(3048), 1, + sym_comment, + ACTIONS(6037), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6571), 2, anon_sym_COMMA, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, + anon_sym_RBRACE, + ACTIONS(5802), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2298), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6089), 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(2304), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, anon_sym_DOT, - ACTIONS(6099), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6101), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(6133), 1, anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3278), 1, + [83533] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3049), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(6396), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6575), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(6394), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(6398), 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(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6645), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [90439] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83594] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, sym__ternary_qmark, - ACTIONS(6647), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3279), 1, + STATE(3050), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(3066), 1, + sym_type_arguments, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5728), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90558] = 36, + [83709] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(6649), 1, + ACTIONS(6578), 1, anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3280), 1, + STATE(3051), 1, sym_comment, - STATE(5730), 1, + STATE(5453), 1, aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90677] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [83828] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5480), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4663), 1, + anon_sym_EQ, + ACTIONS(4711), 1, + anon_sym_QMARK, + STATE(3052), 1, + sym_comment, + ACTIONS(4709), 5, anon_sym_COMMA, - ACTIONS(5498), 1, anon_sym_RBRACE, - STATE(3281), 1, - sym_comment, - STATE(7093), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2586), 36, - anon_sym_export, + anon_sym_RBRACK, + ACTIONS(4493), 13, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [90740] = 36, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [83891] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6513), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6515), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6521), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6525), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(6535), 1, sym__ternary_qmark, - ACTIONS(6651), 1, - anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3282), 1, + STATE(3053), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6511), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(6014), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6527), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90859] = 34, + [84006] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(6580), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3283), 1, + STATE(3054), 1, sym_comment, - STATE(6993), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6653), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [90974] = 9, + [84125] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5711), 1, - anon_sym_extends, - STATE(3284), 1, + STATE(3055), 1, sym_comment, - ACTIONS(5801), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5804), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2289), 10, + 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, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 26, + ACTIONS(5626), 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, @@ -333764,528 +314996,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91039] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6536), 1, - sym__automatic_semicolon, - STATE(3285), 1, - sym_comment, - ACTIONS(6534), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [91096] = 35, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [84182] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6075), 1, - anon_sym_COMMA, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, - anon_sym_GT_GT, - ACTIONS(6107), 1, - anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, - anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3286), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6123), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91213] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6075), 1, - anon_sym_COMMA, - ACTIONS(6083), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(6087), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6101), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6109), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6111), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6115), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6117), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6127), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6135), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3206), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6582), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3287), 1, + STATE(3056), 1, sym_comment, - STATE(7132), 1, + STATE(6976), 1, + aux_sym_array_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6081), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6091), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6105), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6113), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6657), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91330] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6488), 1, - sym__automatic_semicolon, - STATE(3288), 1, - sym_comment, - ACTIONS(6486), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [91387] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5725), 1, - anon_sym_extends, - ACTIONS(5809), 1, - anon_sym_EQ, - STATE(3289), 1, - sym_comment, - ACTIONS(5813), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5816), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5807), 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(5811), 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, + ACTIONS(5678), 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, - [91452] = 36, + [84301] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, + ACTIONS(5646), 1, anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(6659), 1, + ACTIONS(6584), 1, anon_sym_RBRACK, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3290), 1, + STATE(3057), 1, sym_comment, - STATE(5730), 1, + STATE(5453), 1, aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91571] = 34, + [84420] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6500), 1, + ACTIONS(6505), 1, anon_sym_AMP_AMP, - ACTIONS(6502), 1, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6513), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6515), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6521), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6525), 1, anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, + ACTIONS(6535), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3291), 1, + STATE(3058), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6501), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6511), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6048), 3, + ACTIONS(6028), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(6522), 3, + ACTIONS(6527), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91686] = 8, + [84535] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5480), 1, - anon_sym_COMMA, - ACTIONS(5498), 1, - anon_sym_RBRACE, - STATE(3292), 1, + ACTIONS(6545), 1, + sym__automatic_semicolon, + STATE(3059), 1, sym_comment, - STATE(7093), 1, - aux_sym_object_repeat1, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2588), 36, + ACTIONS(6543), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -334307,370 +315296,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [91749] = 36, + anon_sym_abstract, + [84592] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6661), 1, - anon_sym_RPAREN, - STATE(2750), 1, - sym_type_arguments, - STATE(3293), 1, + STATE(3060), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5588), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91868] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6075), 1, - anon_sym_COMMA, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6099), 1, - anon_sym_AMP_AMP, - ACTIONS(6101), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6103), 1, anon_sym_GT_GT, - ACTIONS(6107), 1, anon_sym_AMP, - ACTIONS(6109), 1, - anon_sym_CARET, - ACTIONS(6111), 1, anon_sym_PIPE, - ACTIONS(6115), 1, - anon_sym_PERCENT, - ACTIONS(6117), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6135), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3294), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6081), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6091), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6105), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6113), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6123), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6125), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(5590), 30, sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6121), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91985] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - ACTIONS(6665), 1, - anon_sym_COLON, - STATE(2750), 1, - sym_type_arguments, - STATE(3295), 1, - sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [92104] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [84649] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5633), 1, - anon_sym_COMMA, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(6513), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(6515), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(6521), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(6525), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(6535), 1, sym__ternary_qmark, - ACTIONS(6667), 1, - anon_sym_RPAREN, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3296), 1, + STATE(3061), 1, sym_comment, - STATE(5730), 1, - aux_sym_sequence_expression_repeat1, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(6511), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5966), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6527), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92223] = 7, + [84764] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5192), 1, - anon_sym_EQ, - STATE(3297), 1, + ACTIONS(6541), 1, + sym__automatic_semicolon, + STATE(3062), 1, sym_comment, - ACTIONS(5512), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2588), 36, + ACTIONS(6539), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -334692,16 +315481,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [92284] = 5, + anon_sym_abstract, + [84821] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5802), 1, + anon_sym_extends, + STATE(3063), 1, + sym_comment, + ACTIONS(6034), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6037), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2298), 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(2304), 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, + [84886] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2352), 1, + ACTIONS(6458), 1, sym__automatic_semicolon, - STATE(3298), 1, + STATE(3064), 1, sym_comment, - ACTIONS(2350), 42, + ACTIONS(6456), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -334744,16 +315590,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [92341] = 5, + [84943] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2336), 1, + ACTIONS(6545), 1, sym__automatic_semicolon, - STATE(3299), 1, + STATE(3065), 1, sym_comment, - ACTIONS(2332), 42, + ACTIONS(6543), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -334796,23 +315642,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [92398] = 7, + [85000] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3300), 1, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + STATE(3066), 1, sym_comment, - ACTIONS(6302), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6669), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(6300), 13, + STATE(3375), 2, + sym_template_string, + sym_arguments, + ACTIONS(5578), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -334826,10 +315670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6304), 23, + ACTIONS(5580), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -334848,18 +315696,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, - [92459] = 5, + [85063] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6550), 1, + ACTIONS(6497), 1, sym__automatic_semicolon, - STATE(3301), 1, + STATE(3067), 1, sym_comment, - ACTIONS(6548), 42, + ACTIONS(6495), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -334902,313 +315749,290 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [92516] = 34, + [85120] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6502), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6586), 1, + anon_sym_RBRACK, + STATE(2607), 1, sym_type_arguments, - STATE(3302), 1, + STATE(3068), 1, sym_comment, - STATE(6993), 1, + STATE(6949), 1, + aux_sym_array_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6073), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92631] = 34, + [85239] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, + anon_sym_COMMA, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6500), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6502), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6504), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6508), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6510), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6512), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6516), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6518), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6520), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6530), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3303), 1, + STATE(3069), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6494), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6498), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6506), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6514), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6524), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6526), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6390), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6075), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6522), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92746] = 10, + [85356] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5801), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - STATE(3304), 1, - sym_comment, - ACTIONS(5804), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6672), 2, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5711), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2289), 11, - anon_sym_STAR, + ACTIONS(5648), 1, 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(2295), 22, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5688), 1, anon_sym_satisfies, - [92813] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6680), 1, - sym_regex_flags, - STATE(3305), 1, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(6588), 1, + anon_sym_RBRACE, + STATE(2607), 1, + sym_type_arguments, + STATE(3070), 1, sym_comment, - ACTIONS(6676), 16, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6678), 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, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [92871] = 8, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85475] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5739), 1, - anon_sym_extends, - STATE(3306), 1, + ACTIONS(6262), 1, + anon_sym_LT, + ACTIONS(6277), 1, + anon_sym_DOT, + STATE(3071), 1, sym_comment, - ACTIONS(6249), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(6252), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6182), 10, + STATE(3270), 1, + sym_type_arguments, + ACTIONS(5522), 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(6184), 26, + ACTIONS(4603), 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_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -335227,71 +316051,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92933] = 11, + anon_sym_extends, + [85538] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5563), 1, - anon_sym_extends, - ACTIONS(6354), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6686), 1, - anon_sym_RPAREN, - STATE(3307), 1, - sym_comment, - ACTIONS(6357), 2, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6682), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6684), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4493), 11, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(6590), 1, + anon_sym_RPAREN, + STATE(2607), 1, + sym_type_arguments, + STATE(3072), 1, + sym_comment, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 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, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 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, - [93001] = 5, + [85657] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3308), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6592), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3073), 1, sym_comment, - ACTIONS(5741), 13, + STATE(7018), 1, + sym_optional_chain, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5912), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -335302,21 +316172,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(5743), 29, - sym__automatic_semicolon, + ACTIONS(5914), 21, 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, @@ -335332,99 +316194,126 @@ 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, - [93057] = 34, + anon_sym_implements, + [85732] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(6505), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6513), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(6515), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(6521), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(6525), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(6535), 1, sym__ternary_qmark, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3309), 1, + STATE(3074), 1, sym_comment, - STATE(7132), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6501), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6693), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6701), 2, + ACTIONS(6511), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(5910), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6527), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93171] = 5, + [85847] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3310), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6595), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3075), 1, sym_comment, - ACTIONS(5691), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5903), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -335433,21 +316322,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(5689), 29, - sym__automatic_semicolon, + ACTIONS(5905), 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, @@ -335461,19 +316341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [93227] = 5, + anon_sym_implements, + [85930] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3311), 1, + STATE(3076), 1, sym_comment, - ACTIONS(3558), 13, + ACTIONS(4339), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -335487,7 +316363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5711), 29, + ACTIONS(5628), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -335517,65 +316393,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [93283] = 5, + anon_sym_PIPE_RBRACE, + [85987] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3312), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6521), 1, + anon_sym_PERCENT, + ACTIONS(6523), 1, + anon_sym_STAR_STAR, + ACTIONS(6525), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3077), 1, sym_comment, - ACTIONS(5723), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(5725), 29, - sym__automatic_semicolon, + ACTIONS(5923), 15, 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_satisfies, + anon_sym_implements, + [86076] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, + anon_sym_COMMA, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, + anon_sym_LT, + ACTIONS(6124), 1, anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - anon_sym_extends, - [93339] = 5, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3078), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6086), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6090), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6118), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6120), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6598), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86193] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3313), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6523), 1, + anon_sym_STAR_STAR, + ACTIONS(6600), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3079), 1, sym_comment, - ACTIONS(5719), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -335586,289 +316586,583 @@ 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(5721), 29, - sym__automatic_semicolon, + ACTIONS(5923), 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_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_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, - [93395] = 35, + anon_sym_implements, + [86272] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, - anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6513), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(6515), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(6521), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(6525), 1, anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - ACTIONS(6727), 1, - anon_sym_SEMI, - ACTIONS(6729), 1, - sym__automatic_semicolon, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3314), 1, + STATE(3080), 1, sym_comment, - STATE(7132), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6501), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(6511), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(6527), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93511] = 6, + ACTIONS(5923), 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, + [86375] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6731), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, - STATE(3315), 1, - sym_comment, - ACTIONS(5713), 13, - anon_sym_STAR, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, anon_sym_GT_GT, + ACTIONS(5664), 1, anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(6603), 1, + anon_sym_RPAREN, + STATE(2607), 1, + sym_type_arguments, + STATE(3081), 1, + sym_comment, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5715), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86494] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6505), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6513), 1, + anon_sym_AMP, + ACTIONS(6515), 1, anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6521), 1, anon_sym_PERCENT, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6525), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3082), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6503), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6529), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6527), 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(5923), 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_extends, - [93569] = 5, + anon_sym_implements, + [86599] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3316), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6521), 1, + anon_sym_PERCENT, + ACTIONS(6523), 1, + anon_sym_STAR_STAR, + ACTIONS(6600), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3083), 1, sym_comment, - ACTIONS(5727), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6519), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(5729), 29, - sym__automatic_semicolon, + ACTIONS(5923), 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, - [93625] = 6, + anon_sym_implements, + [86684] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5571), 1, - anon_sym_extends, - STATE(3317), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6521), 1, + anon_sym_PERCENT, + ACTIONS(6523), 1, + anon_sym_STAR_STAR, + ACTIONS(6525), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3084), 1, sym_comment, - ACTIONS(6005), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6529), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6531), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6527), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 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, + [86781] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6509), 1, anon_sym_GT_GT, + ACTIONS(6513), 1, anon_sym_AMP, + ACTIONS(6521), 1, + anon_sym_PERCENT, + ACTIONS(6523), 1, + anon_sym_STAR_STAR, + ACTIONS(6525), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3085), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5925), 2, + anon_sym_BANG, anon_sym_PIPE, + ACTIONS(6501), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6503), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6007), 28, - sym__automatic_semicolon, + ACTIONS(6531), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6527), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 10, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [86880] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6513), 1, + anon_sym_AMP, + ACTIONS(6515), 1, anon_sym_CARET, + ACTIONS(6521), 1, anon_sym_PERCENT, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6525), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3086), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6501), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6503), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6529), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6527), 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(5923), 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, - [93683] = 6, + anon_sym_implements, + [86981] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3318), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6521), 1, + anon_sym_PERCENT, + ACTIONS(6523), 1, + anon_sym_STAR_STAR, + ACTIONS(6600), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3087), 1, sym_comment, - ACTIONS(5685), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5679), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -335877,124 +317171,139 @@ 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(5681), 25, + ACTIONS(5923), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [93741] = 8, + anon_sym_implements, + [87064] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6733), 1, - anon_sym_AMP, - ACTIONS(6735), 1, - anon_sym_PIPE, - ACTIONS(6737), 1, - anon_sym_extends, - STATE(3319), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6523), 1, + anon_sym_STAR_STAR, + ACTIONS(6600), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3088), 1, sym_comment, - ACTIONS(6005), 11, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(6007), 28, - sym__automatic_semicolon, + ACTIONS(5923), 16, 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, - [93803] = 6, + anon_sym_implements, + [87149] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6733), 1, - anon_sym_AMP, - STATE(3320), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6605), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3089), 1, sym_comment, - ACTIONS(5731), 12, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5896), 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(5733), 29, - sym__automatic_semicolon, + ACTIONS(5898), 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_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -336008,44 +317317,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, - anon_sym_extends, - [93861] = 6, + anon_sym_implements, + [87226] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6302), 1, + ACTIONS(4495), 1, anon_sym_EQ, - STATE(3321), 1, + ACTIONS(5742), 1, + anon_sym_extends, + STATE(3090), 1, sym_comment, - ACTIONS(6300), 13, + ACTIONS(6413), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(6304), 28, - sym__automatic_semicolon, + ACTIONS(4497), 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -336065,637 +317375,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93919] = 5, + [87291] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3322), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6521), 1, + anon_sym_PERCENT, + ACTIONS(6523), 1, + anon_sym_STAR_STAR, + ACTIONS(6525), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3091), 1, sym_comment, - ACTIONS(5737), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6527), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5925), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5739), 29, - sym__automatic_semicolon, + ACTIONS(5923), 12, 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, - [93975] = 35, + anon_sym_implements, + [87384] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6505), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6513), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(6515), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(6521), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(6525), 1, anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - ACTIONS(6739), 1, - anon_sym_SEMI, - ACTIONS(6741), 1, - sym__automatic_semicolon, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3323), 1, + STATE(3092), 1, sym_comment, - STATE(7132), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6501), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(6511), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(6527), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94091] = 34, + ACTIONS(5923), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [87491] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(6505), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6513), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(6515), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(6521), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(6525), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(6535), 1, sym__ternary_qmark, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3324), 1, + STATE(3093), 1, sym_comment, - STATE(7132), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6411), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6689), 2, + ACTIONS(6501), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(6511), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(5890), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6527), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [94205] = 7, + [87606] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3325), 1, - sym_comment, - ACTIONS(5689), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5691), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 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(4497), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, anon_sym_AMP_AMP, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6513), 1, + anon_sym_AMP, + ACTIONS(6515), 1, anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6521), 1, anon_sym_PERCENT, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6525), 1, + anon_sym_LT, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6535), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3094), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94265] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3326), 1, - sym_comment, - ACTIONS(5559), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2588), 36, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [94323] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6733), 1, - anon_sym_AMP, - ACTIONS(6735), 1, - anon_sym_PIPE, - ACTIONS(6737), 1, - anon_sym_extends, - STATE(3327), 1, - sym_comment, - ACTIONS(5745), 11, + ACTIONS(6501), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5747), 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(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5880), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6527), 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, - [94385] = 11, + [87721] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5725), 1, - anon_sym_extends, - ACTIONS(5813), 1, - anon_sym_LBRACK, - ACTIONS(6641), 1, - anon_sym_RPAREN, - STATE(3328), 1, - sym_comment, - ACTIONS(5809), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5816), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6572), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5807), 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(5811), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5536), 1, anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, anon_sym_AMP_AMP, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6513), 1, + anon_sym_AMP, + ACTIONS(6515), 1, anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6521), 1, anon_sym_PERCENT, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6525), 1, + anon_sym_LT, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94453] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5711), 1, - anon_sym_extends, - ACTIONS(5801), 1, - anon_sym_LBRACK, - ACTIONS(6672), 1, - anon_sym_RPAREN, - STATE(3329), 1, + ACTIONS(6535), 1, + sym__ternary_qmark, + STATE(3095), 1, sym_comment, - ACTIONS(2291), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5804), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6607), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2289), 11, + STATE(3522), 1, + sym_type_arguments, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 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(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6527), 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, - [94521] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(6743), 1, - anon_sym_STAR, - STATE(3330), 1, - sym_comment, - STATE(5610), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6745), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [94593] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(6743), 1, - anon_sym_STAR, - ACTIONS(6747), 1, - anon_sym_async, - STATE(3331), 1, - sym_comment, - STATE(5610), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6745), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [94667] = 8, + ACTIONS(6608), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [87836] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5703), 1, - anon_sym_extends, - ACTIONS(6749), 1, - anon_sym_LBRACK, - STATE(3332), 1, + ACTIONS(6279), 1, + anon_sym_is, + STATE(3096), 1, sym_comment, - ACTIONS(5701), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5753), 11, + ACTIONS(5592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5755), 27, + ACTIONS(5594), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -336704,6 +317797,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, @@ -336723,16 +317817,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94729] = 6, + anon_sym_extends, + [87895] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6751), 1, - anon_sym_extends, - STATE(3333), 1, + ACTIONS(6610), 1, + anon_sym_is, + STATE(3097), 1, sym_comment, - ACTIONS(5757), 13, + ACTIONS(5596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -336746,7 +317841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5759), 28, + ACTIONS(5598), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -336775,16 +317870,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94787] = 6, + anon_sym_extends, + [87954] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6749), 1, - anon_sym_LBRACK, - STATE(3334), 1, + STATE(3098), 1, sym_comment, - ACTIONS(5763), 13, + ACTIONS(2300), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6612), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -336798,15 +317901,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5765), 28, - sym__automatic_semicolon, + ACTIONS(2304), 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, anon_sym_AMP_AMP, @@ -336826,15 +317925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [94845] = 4, + [88015] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3335), 1, + ACTIONS(6497), 1, + sym__automatic_semicolon, + STATE(3099), 1, sym_comment, - ACTIONS(6753), 42, + ACTIONS(6495), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -336877,14 +317977,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [94899] = 5, + [88072] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3336), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(6525), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3100), 1, sym_comment, - ACTIONS(5961), 13, + STATE(7018), 1, + sym_optional_chain, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6030), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -336895,18 +318008,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(5963), 29, - sym__automatic_semicolon, + ACTIONS(6032), 24, 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, @@ -336925,40 +318033,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, - anon_sym_extends, - [94955] = 6, + anon_sym_implements, + [88141] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3337), 1, + ACTIONS(6462), 1, + sym__automatic_semicolon, + STATE(3101), 1, sym_comment, - ACTIONS(5559), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1247), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2586), 36, + ACTIONS(6460), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -336980,360 +318086,770 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [95013] = 34, + anon_sym_abstract, + [88198] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3206), 1, + ACTIONS(6615), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3338), 1, + STATE(3102), 1, sym_comment, - STATE(7132), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6046), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95127] = 34, + [88317] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3206), 1, + ACTIONS(6617), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3339), 1, + STATE(3103), 1, sym_comment, - STATE(7132), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6044), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95241] = 5, + [88436] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3340), 1, - sym_comment, - ACTIONS(5707), 13, - anon_sym_STAR, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, + anon_sym_AMP_AMP, + ACTIONS(6507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6509), 1, anon_sym_GT_GT, + ACTIONS(6513), 1, anon_sym_AMP, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, anon_sym_PIPE, + ACTIONS(6521), 1, + anon_sym_PERCENT, + ACTIONS(6523), 1, + anon_sym_STAR_STAR, + ACTIONS(6525), 1, + anon_sym_LT, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3104), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6503), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5709), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6531), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5874), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_implements, + ACTIONS(6527), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88551] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, anon_sym_AMP_AMP, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6513), 1, + anon_sym_AMP, + ACTIONS(6515), 1, anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6521), 1, anon_sym_PERCENT, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6525), 1, + anon_sym_LT, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6535), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3105), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [95297] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3341), 1, - sym_comment, - ACTIONS(5569), 13, + ACTIONS(6501), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5571), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6531), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5872), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_implements, + ACTIONS(6527), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88666] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, anon_sym_AMP_AMP, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6513), 1, + anon_sym_AMP, + ACTIONS(6515), 1, anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6521), 1, anon_sym_PERCENT, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6525), 1, + anon_sym_LT, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3106), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6503), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6529), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5862), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6527), 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, - [95353] = 8, + [88781] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3342), 1, - sym_comment, - ACTIONS(6252), 2, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, + anon_sym_AMP_AMP, + ACTIONS(6507), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6513), 1, anon_sym_AMP, + ACTIONS(6515), 1, + anon_sym_CARET, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6249), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5739), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(6182), 11, + ACTIONS(6521), 1, + anon_sym_PERCENT, + ACTIONS(6523), 1, + anon_sym_STAR_STAR, + ACTIONS(6525), 1, + anon_sym_LT, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3107), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6184), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6531), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5852), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6527), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [88896] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, anon_sym_AMP_AMP, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6509), 1, + anon_sym_GT_GT, + ACTIONS(6513), 1, + anon_sym_AMP, + ACTIONS(6515), 1, anon_sym_CARET, + ACTIONS(6517), 1, + anon_sym_PIPE, + ACTIONS(6521), 1, anon_sym_PERCENT, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6525), 1, + anon_sym_LT, + ACTIONS(6533), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6535), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3108), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6501), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6503), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6511), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6519), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6529), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5842), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6527), 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, - [95415] = 11, + [89011] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(6462), 1, + sym__automatic_semicolon, + STATE(3109), 1, + sym_comment, + ACTIONS(6460), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [89068] = 7, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4688), 1, - anon_sym_QMARK, - ACTIONS(4696), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5194), 1, anon_sym_EQ, - ACTIONS(6273), 1, + STATE(3110), 1, + sym_comment, + ACTIONS(5503), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1241), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2592), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, anon_sym_LBRACK, - STATE(3343), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [89129] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(5194), 1, + anon_sym_EQ, + STATE(3111), 1, sym_comment, - ACTIONS(4699), 2, + ACTIONS(5503), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1241), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(5699), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(6276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 11, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2596), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [89190] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3112), 1, + sym_comment, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 22, + ACTIONS(5694), 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, @@ -337353,14 +318869,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95483] = 5, + anon_sym_implements, + [89247] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3344), 1, + ACTIONS(6279), 1, + anon_sym_is, + STATE(3113), 1, sym_comment, - ACTIONS(5769), 13, + ACTIONS(5610), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -337374,7 +318893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5771), 29, + ACTIONS(5612), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -337404,14 +318923,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [95539] = 5, + [89306] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6470), 1, + sym__automatic_semicolon, + STATE(3114), 1, + sym_comment, + ACTIONS(6468), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [89363] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3345), 1, + ACTIONS(4579), 1, + anon_sym_EQ, + ACTIONS(4672), 1, + anon_sym_QMARK, + STATE(3115), 1, sym_comment, - ACTIONS(4423), 13, + ACTIONS(4669), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -337425,15 +319006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5773), 29, - sym__automatic_semicolon, + ACTIONS(4497), 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, @@ -337454,339 +319030,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [95595] = 34, + [89426] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6621), 1, + sym__automatic_semicolon, + STATE(3116), 1, + sym_comment, + ACTIONS(6619), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [89483] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6028), 1, + anon_sym_COMMA, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3346), 1, + STATE(3117), 1, sym_comment, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6048), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6623), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [95709] = 34, + [89600] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(6625), 1, + anon_sym_RBRACK, + STATE(2607), 1, sym_type_arguments, - STATE(3347), 1, + STATE(3118), 1, sym_comment, - STATE(6993), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6755), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95823] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3348), 1, - sym_comment, - ACTIONS(4421), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5775), 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(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [95879] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6757), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3349), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6050), 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(6052), 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, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [95955] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6749), 1, - anon_sym_LBRACK, - STATE(3350), 1, - sym_comment, - ACTIONS(5701), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5703), 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, - anon_sym_AMP_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(5678), 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, - [96013] = 5, + [89719] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3351), 1, + ACTIONS(6262), 1, + anon_sym_LT, + STATE(3119), 1, sym_comment, - ACTIONS(5701), 13, + STATE(3264), 1, + sym_type_arguments, + ACTIONS(5596), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -337797,10 +319269,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(5703), 29, + ACTIONS(5598), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -337830,110 +319301,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [96069] = 21, + [89780] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6699), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6711), 1, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(5676), 1, anon_sym_LT, - STATE(3206), 1, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6627), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3352), 1, + STATE(3120), 1, sym_comment, - STATE(7132), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + STATE(7090), 1, + aux_sym_array_repeat1, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6701), 2, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 14, - 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_LT_EQ, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [96157] = 12, + [89899] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(2740), 1, - anon_sym_EQ_GT, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3353), 1, + ACTIONS(6462), 1, + sym__automatic_semicolon, + STATE(3121), 1, sym_comment, - STATE(5557), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(6460), 42, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -337955,14 +319435,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [96227] = 5, + anon_sym_abstract, + [89956] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3354), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6028), 1, + anon_sym_COMMA, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6096), 1, + anon_sym_AMP_AMP, + ACTIONS(6098), 1, + anon_sym_GT_GT, + ACTIONS(6102), 1, + anon_sym_AMP, + ACTIONS(6104), 1, + anon_sym_CARET, + ACTIONS(6106), 1, + anon_sym_PIPE, + ACTIONS(6110), 1, + anon_sym_PERCENT, + ACTIONS(6112), 1, + anon_sym_STAR_STAR, + ACTIONS(6114), 1, + anon_sym_LT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6176), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3122), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6086), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6090), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6100), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6118), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6120), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6629), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6116), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90073] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3123), 1, sym_comment, - ACTIONS(5561), 13, + ACTIONS(6018), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6631), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(6016), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -337976,15 +319548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5563), 29, - sym__automatic_semicolon, + ACTIONS(6020), 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, @@ -338005,113 +319572,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [96283] = 18, + [90134] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6760), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, anon_sym_LT, - STATE(3206), 1, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(6634), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3355), 1, + STATE(3124), 1, sym_comment, - STATE(7132), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6057), 11, + ACTIONS(5642), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6059), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [96365] = 13, + [90253] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(6462), 1, + sym__automatic_semicolon, + STATE(3125), 1, + sym_comment, + ACTIONS(6460), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(6478), 1, - anon_sym_STAR, - STATE(3356), 1, - sym_comment, - STATE(5557), 1, - sym__property_name, - ACTIONS(2930), 2, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, + sym_identifier, sym_private_property_identifier, - ACTIONS(6484), 2, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 28, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [90310] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6470), 1, + sym__automatic_semicolon, + STATE(3126), 1, + sym_comment, + ACTIONS(6468), 42, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -338129,14 +319758,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [96437] = 5, + anon_sym_abstract, + [90367] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3357), 1, + STATE(3127), 1, sym_comment, - ACTIONS(5697), 13, + ACTIONS(2211), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -338150,7 +319780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 29, + ACTIONS(2257), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -338180,94 +319810,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [96493] = 34, + anon_sym_is, + [90424] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3206), 1, + ACTIONS(6636), 1, + anon_sym_RBRACK, + STATE(2607), 1, sym_type_arguments, - STATE(3358), 1, + STATE(3128), 1, sym_comment, - STATE(7132), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6064), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90543] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3129), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96607] = 5, + ACTIONS(6638), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [90658] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3359), 1, + ACTIONS(4672), 1, + anon_sym_QMARK, + ACTIONS(4682), 1, + anon_sym_EQ, + STATE(3130), 1, sym_comment, - ACTIONS(4413), 13, + ACTIONS(4685), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -338281,15 +320006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 29, - sym__automatic_semicolon, + ACTIONS(4497), 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, @@ -338310,50 +320030,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [96663] = 14, + [90721] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, + anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, + anon_sym_PERCENT, + ACTIONS(5674), 1, + anon_sym_STAR_STAR, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6640), 1, + anon_sym_RPAREN, + STATE(2607), 1, + sym_type_arguments, + STATE(3131), 1, + sym_comment, + STATE(6936), 1, + aux_sym_array_repeat1, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5680), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90840] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(6541), 1, + sym__automatic_semicolon, + STATE(3132), 1, + sym_comment, + ACTIONS(6539), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(6478), 1, - anon_sym_STAR, - ACTIONS(6480), 1, anon_sym_async, - STATE(3360), 1, - sym_comment, - STATE(5557), 1, - sym__property_name, - ACTIONS(2930), 2, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, sym_number, + sym_identifier, sym_private_property_identifier, - ACTIONS(6484), 2, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 27, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [90897] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6644), 1, + sym__automatic_semicolon, + STATE(3133), 1, + sym_comment, + ACTIONS(6642), 42, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -338371,125 +320216,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [96737] = 5, + anon_sym_abstract, + [90954] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3361), 1, - sym_comment, - ACTIONS(5693), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5695), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5688), 1, anon_sym_satisfies, - anon_sym_extends, - [96793] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6763), 1, - anon_sym_LT, - STATE(3206), 1, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6646), 1, + anon_sym_RBRACK, + STATE(2607), 1, sym_type_arguments, - STATE(3362), 1, + STATE(3134), 1, sym_comment, - STATE(7132), 1, + STATE(6949), 1, + aux_sym_array_repeat1, + STATE(7018), 1, sym_optional_chain, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6066), 12, + ACTIONS(5642), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 20, - 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(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [96867] = 4, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91073] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3363), 1, + ACTIONS(6650), 1, + sym__automatic_semicolon, + STATE(3135), 1, sym_comment, - ACTIONS(6766), 42, + ACTIONS(6648), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -338532,129 +320352,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [96921] = 7, + [91130] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6186), 1, + ACTIONS(6654), 1, sym__automatic_semicolon, - STATE(3364), 1, + STATE(3136), 1, sym_comment, - ACTIONS(2287), 13, + ACTIONS(6652), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2448), 27, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_let, 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, - [96981] = 16, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [91187] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6768), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3365), 1, + ACTIONS(6497), 1, + sym__automatic_semicolon, + STATE(3137), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 12, + ACTIONS(6495), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6033), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_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, - [97059] = 4, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [91244] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3366), 1, + ACTIONS(6458), 1, + sym__automatic_semicolon, + STATE(3138), 1, sym_comment, - ACTIONS(6753), 42, + ACTIONS(6456), 42, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -338697,1066 +320508,1220 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [97113] = 34, + [91301] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6028), 1, + anon_sym_COMMA, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3367), 1, + STATE(3139), 1, sym_comment, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6771), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6656), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97227] = 7, + [91418] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(6660), 1, + sym__automatic_semicolon, + STATE(3140), 1, + sym_comment, + ACTIONS(6658), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [91475] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - STATE(3368), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6474), 1, + sym__automatic_semicolon, + STATE(3141), 1, sym_comment, - STATE(3535), 1, - sym_arguments, - ACTIONS(6040), 13, + ACTIONS(6472), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6042), 27, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [91532] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6664), 1, + anon_sym_SEMI, + ACTIONS(6667), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + STATE(3142), 1, + sym_comment, + ACTIONS(6662), 41, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [91591] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6470), 1, + sym__automatic_semicolon, + STATE(3143), 1, + sym_comment, + ACTIONS(6468), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, 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, - [97287] = 35, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [91648] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, sym__ternary_qmark, - ACTIONS(6773), 1, - anon_sym_SEMI, - ACTIONS(6775), 1, - sym__automatic_semicolon, - STATE(3206), 1, + ACTIONS(6669), 1, + anon_sym_RBRACK, + STATE(2607), 1, sym_type_arguments, - STATE(3369), 1, + STATE(3144), 1, sym_comment, - STATE(7132), 1, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97403] = 34, + [91767] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(6505), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(6507), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(6509), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6513), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(6515), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6517), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(6521), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(6523), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(6525), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(6533), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(6535), 1, sym__ternary_qmark, - STATE(3206), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3370), 1, + STATE(3145), 1, sym_comment, - STATE(7132), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6501), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(6503), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(6511), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(6519), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(6529), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(6531), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6777), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(5824), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6527), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97517] = 8, + [91882] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6779), 1, - sym__automatic_semicolon, - STATE(3371), 1, - sym_comment, - ACTIONS(2448), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2289), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2295), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 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, + ACTIONS(5582), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [97579] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6733), 1, - anon_sym_AMP, - ACTIONS(6735), 1, - anon_sym_PIPE, - ACTIONS(6737), 1, - anon_sym_extends, - STATE(3372), 1, - sym_comment, - ACTIONS(5973), 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(5975), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5644), 1, anon_sym_as, + ACTIONS(5646), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5688), 1, anon_sym_satisfies, - [97641] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3373), 1, + ACTIONS(5690), 1, + sym__ternary_qmark, + ACTIONS(6671), 1, + anon_sym_COLON, + STATE(2607), 1, + sym_type_arguments, + STATE(3146), 1, sym_comment, - ACTIONS(5969), 13, + STATE(5453), 1, + aux_sym_sequence_expression_repeat1, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5971), 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(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [97697] = 5, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92001] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3374), 1, + ACTIONS(6470), 1, + sym__automatic_semicolon, + STATE(3147), 1, sym_comment, - ACTIONS(5965), 13, + ACTIONS(6468), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5967), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_let, 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, - [97753] = 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [92058] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3375), 1, + ACTIONS(6541), 1, + sym__automatic_semicolon, + STATE(3148), 1, sym_comment, - ACTIONS(5965), 13, + ACTIONS(6539), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5967), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_let, 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, - [97809] = 34, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [92115] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3206), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6673), 1, + anon_sym_RPAREN, + STATE(2607), 1, sym_type_arguments, - STATE(3376), 1, + STATE(3149), 1, sym_comment, - STATE(7132), 1, + STATE(6540), 1, + aux_sym_array_repeat1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6073), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97923] = 5, + [92234] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3377), 1, - sym_comment, - ACTIONS(5965), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5967), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 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, + ACTIONS(5582), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [97979] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(6087), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(3206), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6675), 1, + anon_sym_RBRACK, + STATE(2607), 1, sym_type_arguments, - STATE(3378), 1, + STATE(3150), 1, sym_comment, - STATE(7132), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + STATE(7069), 1, + aux_sym_array_repeat1, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6781), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98093] = 5, + [92353] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3379), 1, + ACTIONS(6541), 1, + sym__automatic_semicolon, + STATE(3151), 1, sym_comment, - ACTIONS(5961), 13, + ACTIONS(6539), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5963), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_let, 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, - [98149] = 34, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [92410] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5643), 1, + ACTIONS(5656), 1, anon_sym_AMP_AMP, - ACTIONS(5645), 1, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, + ACTIONS(5660), 1, anon_sym_GT_GT, - ACTIONS(5651), 1, + ACTIONS(5664), 1, anon_sym_AMP, - ACTIONS(5653), 1, + ACTIONS(5666), 1, anon_sym_CARET, - ACTIONS(5655), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5659), 1, + ACTIONS(5672), 1, anon_sym_PERCENT, - ACTIONS(5661), 1, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - ACTIONS(5663), 1, + ACTIONS(5676), 1, anon_sym_LT, - ACTIONS(5671), 1, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(5677), 1, + ACTIONS(5690), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3380), 1, + STATE(3152), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5642), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5639), 2, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, + ACTIONS(5662), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5657), 2, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5667), 2, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5669), 2, + ACTIONS(5682), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6282), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5665), 3, + ACTIONS(5678), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98263] = 5, + ACTIONS(6677), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [92525] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3381), 1, + ACTIONS(6621), 1, + sym__automatic_semicolon, + STATE(3153), 1, sym_comment, - ACTIONS(5961), 13, + ACTIONS(6619), 42, + anon_sym_export, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5963), 29, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [92582] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6497), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + STATE(3154), 1, + sym_comment, + ACTIONS(6495), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_from, + anon_sym_let, 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, - [98319] = 35, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [92639] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6028), 1, + anon_sym_COMMA, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(6096), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(6098), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6102), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(6104), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6106), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(6110), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(6112), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(6114), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6172), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6174), 1, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, + ACTIONS(6176), 1, sym__ternary_qmark, - ACTIONS(6783), 1, - anon_sym_SEMI, - ACTIONS(6785), 1, - sym__automatic_semicolon, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3382), 1, + STATE(3155), 1, sym_comment, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6086), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(6090), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(6100), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(6108), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(6118), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(6120), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6679), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(6116), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98435] = 5, + [92756] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6545), 1, + sym__automatic_semicolon, + STATE(3156), 1, + sym_comment, + ACTIONS(6543), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [92813] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3383), 1, + STATE(3157), 1, sym_comment, - ACTIONS(5957), 13, + ACTIONS(6346), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6343), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5935), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(6339), 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(5959), 29, - sym__automatic_semicolon, + ACTIONS(6341), 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, @@ -339776,324 +321741,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [98491] = 34, + [92875] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5643), 1, - anon_sym_AMP_AMP, - ACTIONS(5645), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5647), 1, - anon_sym_GT_GT, - ACTIONS(5651), 1, - anon_sym_AMP, - ACTIONS(5653), 1, - anon_sym_CARET, - ACTIONS(5655), 1, - anon_sym_PIPE, - ACTIONS(5659), 1, - anon_sym_PERCENT, - ACTIONS(5661), 1, - anon_sym_STAR_STAR, - ACTIONS(5663), 1, - anon_sym_LT, - ACTIONS(5671), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(5677), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3384), 1, + ACTIONS(5598), 1, + anon_sym_extends, + STATE(3158), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5629), 2, + ACTIONS(5734), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5639), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5649), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5657), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5667), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5669), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6191), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(5665), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [98605] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6699), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, anon_sym_AMP, - ACTIONS(6705), 1, - anon_sym_CARET, - ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3385), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 8, + ACTIONS(5736), 28, 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, - [98707] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(6097), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6695), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3386), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 7, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [98811] = 34, + [92933] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, - anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, - anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3387), 1, + STATE(3159), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6075), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(5830), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(5832), 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(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [98925] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [92989] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3388), 1, + STATE(3160), 1, sym_comment, - ACTIONS(5957), 13, + ACTIONS(5638), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340107,7 +321865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5959), 29, + ACTIONS(5640), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340137,14 +321895,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [98981] = 5, + [93045] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3389), 1, + STATE(3161), 1, sym_comment, - ACTIONS(5957), 13, + ACTIONS(5638), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340158,7 +321916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5959), 29, + ACTIONS(5640), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340188,87 +321946,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [99037] = 19, + [93101] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6768), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3390), 1, + STATE(3162), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(5638), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 16, + ACTIONS(5640), 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, - [99121] = 9, + anon_sym_extends, + [93157] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6330), 1, - anon_sym_QMARK_DOT, - STATE(3391), 1, + STATE(3163), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(2468), 13, + ACTIONS(5634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340282,7 +322018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2470), 25, + ACTIONS(5636), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340291,6 +322027,9 @@ 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, @@ -340308,14 +322047,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99185] = 5, + anon_sym_extends, + [93213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3392), 1, + STATE(3164), 1, sym_comment, - ACTIONS(5951), 13, + ACTIONS(5634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340329,7 +322069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5953), 29, + ACTIONS(5636), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340359,14 +322099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [99241] = 5, + [93269] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3393), 1, + STATE(3165), 1, sym_comment, - ACTIONS(3544), 13, + ACTIONS(5634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340380,7 +322120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5949), 29, + ACTIONS(5636), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340410,14 +322150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [99297] = 5, + [93325] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3394), 1, + STATE(3166), 1, sym_comment, - ACTIONS(5945), 13, + ACTIONS(5718), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340431,7 +322171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5947), 29, + ACTIONS(5720), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340461,14 +322201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [99353] = 5, + [93381] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3395), 1, + STATE(3167), 1, sym_comment, - ACTIONS(5941), 13, + ACTIONS(3490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340482,7 +322222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5943), 29, + ACTIONS(5726), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340512,38 +322252,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [99409] = 4, + [93437] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5802), 1, + anon_sym_extends, + ACTIONS(6034), 1, + anon_sym_LBRACK, + ACTIONS(6571), 1, + anon_sym_RPAREN, + STATE(3168), 1, + sym_comment, + ACTIONS(2300), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6037), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6612), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2298), 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(2304), 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, + [93505] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3396), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(6681), 1, + anon_sym_STAR, + STATE(3169), 1, sym_comment, - ACTIONS(6787), 42, + STATE(5308), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6683), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 28, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -340561,86 +322368,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [99463] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3397), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 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, - [99559] = 5, + [93577] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3398), 1, + STATE(3170), 1, sym_comment, - ACTIONS(5937), 13, + ACTIONS(5830), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340654,7 +322389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5939), 29, + ACTIONS(5832), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340684,14 +322419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [99615] = 5, + [93633] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3399), 1, + STATE(3171), 1, sym_comment, - ACTIONS(5933), 13, + ACTIONS(5919), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340705,7 +322440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5935), 29, + ACTIONS(5921), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340735,14 +322470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [99671] = 5, + [93689] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3400), 1, + STATE(3172), 1, sym_comment, - ACTIONS(5933), 13, + ACTIONS(5892), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340756,7 +322491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5935), 29, + ACTIONS(5894), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340786,14 +322521,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [99727] = 5, + [93745] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3401), 1, + STATE(3173), 1, sym_comment, - ACTIONS(5933), 13, + ACTIONS(5876), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -340807,7 +322542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5935), 29, + ACTIONS(5878), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -340837,116 +322572,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [99783] = 27, + [93801] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(6681), 1, + anon_sym_STAR, + ACTIONS(6685), 1, + anon_sym_async, + STATE(3174), 1, + sym_comment, + STATE(5308), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6683), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [93875] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6699), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6691), 1, + anon_sym_SEMI, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(6711), 1, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(6713), 1, anon_sym_LT, - STATE(3206), 1, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6723), 1, + sym__automatic_semicolon, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, sym_type_arguments, - STATE(3402), 1, + STATE(3175), 1, sym_comment, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 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, - [99883] = 18, + [93991] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6768), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3403), 1, + ACTIONS(6731), 1, + sym_regex_flags, + STATE(3176), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6727), 16, anon_sym_STAR, - anon_sym_SLASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 10, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -340955,98 +322733,183 @@ 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(6033), 16, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6729), 25, sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [99965] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [94049] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6713), 1, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6768), 1, + ACTIONS(6713), 1, anon_sym_LT, - STATE(3206), 1, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, sym_type_arguments, - STATE(3404), 1, + STATE(3177), 1, sym_comment, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3722), 2, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6733), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 11, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94163] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5840), 1, + anon_sym_extends, + ACTIONS(6022), 1, + anon_sym_LBRACK, + ACTIONS(6561), 1, + anon_sym_RPAREN, + STATE(3178), 1, + sym_comment, + ACTIONS(6018), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6025), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6631), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(6016), 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(6033), 15, - sym__automatic_semicolon, + ACTIONS(6020), 22, sym__ternary_qmark, - anon_sym_SEMI, + 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, - [100049] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94231] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3405), 1, + STATE(3179), 1, sym_comment, - ACTIONS(5929), 13, + ACTIONS(3488), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -341060,7 +322923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5931), 29, + ACTIONS(5788), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -341090,14 +322953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [100105] = 5, + [94287] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3406), 1, + STATE(3180), 1, sym_comment, - ACTIONS(5929), 13, + ACTIONS(5784), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -341111,7 +322974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5931), 29, + ACTIONS(5786), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -341141,16 +323004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [100161] = 6, + [94343] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5996), 1, - anon_sym_DOT, - STATE(3407), 1, + STATE(3181), 1, sym_comment, - ACTIONS(5989), 13, + ACTIONS(5744), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -341164,7 +323025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5991), 28, + ACTIONS(5746), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -341174,6 +323035,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, @@ -341193,39 +323055,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [100219] = 6, + [94399] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5993), 1, - anon_sym_DOT, - STATE(3408), 1, + ACTIONS(4579), 1, + anon_sym_EQ, + ACTIONS(4672), 1, + anon_sym_QMARK, + ACTIONS(6413), 1, + anon_sym_LBRACK, + STATE(3182), 1, sym_comment, - ACTIONS(5989), 13, + ACTIONS(4669), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5742), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(6416), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(5991), 28, - sym__automatic_semicolon, + ACTIONS(4497), 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, anon_sym_PIPE_PIPE, @@ -341244,261 +323112,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [100277] = 23, + [94467] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5594), 1, + anon_sym_extends, + ACTIONS(6285), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3409), 1, + ACTIONS(6740), 1, + anon_sym_RPAREN, + STATE(3183), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6735), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6737), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4493), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6035), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 11, - sym__automatic_semicolon, + ACTIONS(4497), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [100369] = 35, + [94535] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, - anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, - anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - ACTIONS(6789), 1, - anon_sym_SEMI, - ACTIONS(6791), 1, - sym__automatic_semicolon, - STATE(3206), 1, - sym_type_arguments, - STATE(3410), 1, + STATE(3184), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(5744), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [100485] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(5746), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(6097), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6695), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6697), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3411), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [100591] = 12, + anon_sym_extends, + [94591] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3558), 1, - anon_sym_QMARK, - ACTIONS(5711), 1, + ACTIONS(5742), 1, anon_sym_extends, - ACTIONS(5801), 1, - anon_sym_LBRACK, - ACTIONS(6322), 1, - anon_sym_COLON, - STATE(3412), 1, + STATE(3185), 1, sym_comment, - ACTIONS(5804), 2, + ACTIONS(6413), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6416), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6672), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2289), 11, + ACTIONS(4493), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -341506,10 +323247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 22, + ACTIONS(4497), 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, @@ -341529,94 +323274,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100661] = 34, + [94653] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, + STATE(3186), 1, + sym_comment, + ACTIONS(5744), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6089), 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(5746), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(6097), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6697), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3413), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6031), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [94709] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3187), 1, + sym_comment, + ACTIONS(5702), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(5704), 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(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100775] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [94765] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3414), 1, + STATE(3188), 1, sym_comment, - ACTIONS(5929), 13, + ACTIONS(5702), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -341630,7 +323397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5931), 29, + ACTIONS(5704), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -341660,44 +323427,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [100831] = 11, + [94821] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4599), 1, - anon_sym_EQ, - ACTIONS(4688), 1, - anon_sym_QMARK, - ACTIONS(6273), 1, - anon_sym_LBRACK, - STATE(3415), 1, + STATE(3189), 1, sym_comment, - ACTIONS(4685), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5699), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(6276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 11, + ACTIONS(5702), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 22, + ACTIONS(5704), 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, @@ -341717,44 +323477,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100899] = 11, + anon_sym_extends, + [94877] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5563), 1, - anon_sym_extends, - ACTIONS(6354), 1, - anon_sym_LBRACK, - ACTIONS(6796), 1, - anon_sym_RPAREN, - STATE(3416), 1, + STATE(3190), 1, sym_comment, - ACTIONS(6357), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6682), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6793), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4493), 11, + ACTIONS(5770), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 22, + ACTIONS(5772), 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, @@ -341774,30 +323528,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100967] = 12, + anon_sym_extends, + [94933] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5723), 1, - anon_sym_QMARK, - ACTIONS(5725), 1, - anon_sym_extends, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(5813), 1, - anon_sym_LBRACK, - ACTIONS(6338), 1, - anon_sym_COLON, - STATE(3417), 1, - sym_comment, - ACTIONS(5816), 2, + ACTIONS(6744), 1, anon_sym_AMP, + ACTIONS(6746), 1, anon_sym_PIPE, - ACTIONS(6641), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5807), 11, + ACTIONS(6748), 1, + anon_sym_extends, + STATE(3191), 1, + sym_comment, + ACTIONS(5754), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -341809,10 +323554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 22, + ACTIONS(5756), 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, @@ -341832,26 +323583,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101037] = 8, + [94995] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5699), 1, - anon_sym_extends, - STATE(3418), 1, - sym_comment, - ACTIONS(6273), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(6276), 3, - anon_sym_GT, + ACTIONS(6744), 1, anon_sym_AMP, + ACTIONS(6746), 1, anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(6748), 1, + anon_sym_extends, + STATE(3192), 1, + sym_comment, + ACTIONS(5758), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -341859,14 +323608,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 26, + ACTIONS(5760), 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, @@ -341886,14 +323637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101099] = 5, + [95057] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3419), 1, + STATE(3193), 1, sym_comment, - ACTIONS(5925), 13, + ACTIONS(5698), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -341907,15 +323663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5927), 29, - sym__automatic_semicolon, + ACTIONS(5694), 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, @@ -341936,15 +323689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [101155] = 5, + [95115] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3420), 1, + STATE(3194), 1, sym_comment, - ACTIONS(5925), 13, + ACTIONS(5770), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -341958,7 +323710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5927), 29, + ACTIONS(5772), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -341988,14 +323740,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [101211] = 5, + [95171] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3421), 1, + STATE(3195), 1, sym_comment, - ACTIONS(5925), 13, + ACTIONS(2298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -342009,7 +323763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5927), 29, + ACTIONS(2304), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -342038,29 +323792,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [101267] = 5, + [95229] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3422), 1, + ACTIONS(6744), 1, + anon_sym_AMP, + ACTIONS(6746), 1, + anon_sym_PIPE, + ACTIONS(6748), 1, + anon_sym_extends, + STATE(3196), 1, sym_comment, - ACTIONS(5921), 13, + ACTIONS(5778), 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(5923), 29, + ACTIONS(5780), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -342089,95 +323846,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [101323] = 34, + [95291] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, + STATE(3197), 1, + sym_comment, + ACTIONS(5778), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6089), 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(5780), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(6097), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6697), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3423), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6029), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [95347] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3198), 1, + sym_comment, + ACTIONS(5792), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(5794), 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(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101437] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [95403] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3424), 1, + STATE(3199), 1, sym_comment, - ACTIONS(3546), 13, + ACTIONS(4373), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -342191,7 +323969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5919), 29, + ACTIONS(5800), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -342221,203 +323999,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [101493] = 34, + [95459] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, + STATE(3200), 1, + sym_comment, + ACTIONS(4371), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6089), 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(5812), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(6097), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6697), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3425), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6021), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [95515] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3201), 1, + sym_comment, + ACTIONS(4369), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101607] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(5816), 29, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(6097), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6697), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - ACTIONS(6800), 1, - anon_sym_SEMI, - ACTIONS(6802), 1, - sym__automatic_semicolon, - STATE(3206), 1, - sym_type_arguments, - STATE(3426), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [95571] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6744), 1, + anon_sym_AMP, + ACTIONS(6746), 1, + anon_sym_PIPE, + ACTIONS(6748), 1, + anon_sym_extends, + STATE(3202), 1, + sym_comment, + ACTIONS(5818), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(5820), 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(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101723] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95633] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4659), 1, - anon_sym_EQ, - ACTIONS(5699), 1, - anon_sym_extends, - STATE(3427), 1, + STATE(3203), 1, sym_comment, - ACTIONS(6273), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(6276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(5834), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 25, + ACTIONS(5836), 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, @@ -342437,27 +324205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101787] = 11, + anon_sym_extends, + [95689] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6715), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3428), 1, + STATE(3204), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6077), 12, + ACTIONS(5844), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -342468,12 +324224,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(6079), 23, + ACTIONS(5846), 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, @@ -342493,45 +324254,40 @@ 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, - [101855] = 11, + anon_sym_extends, + [95745] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5563), 1, - anon_sym_extends, - ACTIONS(6354), 1, - anon_sym_LBRACK, - ACTIONS(6808), 1, - anon_sym_RPAREN, - STATE(3429), 1, + STATE(3205), 1, sym_comment, - ACTIONS(6357), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6804), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6806), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4493), 11, + ACTIONS(5848), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 22, + ACTIONS(5850), 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, @@ -342551,14 +324307,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101923] = 5, + anon_sym_extends, + [95801] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3430), 1, + STATE(3206), 1, sym_comment, - ACTIONS(3550), 13, + ACTIONS(5854), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -342572,7 +324329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5779), 29, + ACTIONS(5856), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -342602,14 +324359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [101979] = 5, + [95857] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3431), 1, + ACTIONS(6018), 1, + anon_sym_EQ, + STATE(3207), 1, sym_comment, - ACTIONS(5683), 13, + ACTIONS(6016), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -342623,7 +324382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5685), 29, + ACTIONS(6020), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -342652,42 +324411,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [102035] = 8, + [95915] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3432), 1, + STATE(3208), 1, sym_comment, - ACTIONS(6276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6273), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5699), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4493), 11, + ACTIONS(5848), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 22, + ACTIONS(5850), 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, @@ -342707,14 +324461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102097] = 5, + anon_sym_extends, + [95971] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3433), 1, + STATE(3209), 1, sym_comment, - ACTIONS(5781), 13, + ACTIONS(5854), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -342728,7 +324483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5783), 29, + ACTIONS(5856), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -342758,16 +324513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [102153] = 6, + [96027] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5685), 1, - anon_sym_extends, - STATE(3434), 1, + STATE(3210), 1, sym_comment, - ACTIONS(5679), 13, + ACTIONS(5858), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -342781,7 +324534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5681), 28, + ACTIONS(5860), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -342810,14 +324563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102211] = 5, + anon_sym_extends, + [96083] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3435), 1, + STATE(3211), 1, sym_comment, - ACTIONS(5785), 13, + ACTIONS(5730), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -342831,7 +324585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 29, + ACTIONS(5732), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -342861,14 +324615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [102267] = 5, + [96139] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3436), 1, + STATE(3212), 1, sym_comment, - ACTIONS(5789), 13, + ACTIONS(5858), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -342882,7 +324636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5791), 29, + ACTIONS(5860), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -342912,14 +324666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [102323] = 5, + [96195] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3437), 1, + STATE(3213), 1, sym_comment, - ACTIONS(5793), 13, + ACTIONS(5730), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -342933,7 +324687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5795), 29, + ACTIONS(5732), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -342963,32 +324717,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [102379] = 8, + [96251] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6733), 1, - anon_sym_AMP, - ACTIONS(6735), 1, - anon_sym_PIPE, - ACTIONS(6737), 1, - anon_sym_extends, - STATE(3438), 1, + STATE(3214), 1, sym_comment, - ACTIONS(5999), 11, + ACTIONS(5882), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6001), 28, + ACTIONS(5884), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343017,14 +324767,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102441] = 5, + anon_sym_extends, + [96307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3439), 1, + STATE(3215), 1, sym_comment, - ACTIONS(5797), 13, + ACTIONS(5886), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343038,7 +324789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5799), 29, + ACTIONS(5888), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343068,42 +324819,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [102497] = 9, + [96363] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5801), 1, - anon_sym_LBRACK, - STATE(3440), 1, + STATE(3216), 1, sym_comment, - ACTIONS(5711), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5804), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2289), 10, + ACTIONS(5882), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 25, + ACTIONS(5884), 29, + 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, @@ -343123,16 +324869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102561] = 6, + anon_sym_extends, + [96419] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - STATE(3441), 1, + STATE(3217), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(5886), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343146,16 +324891,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 28, + ACTIONS(5888), 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, @@ -343175,42 +324920,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102619] = 9, + anon_sym_extends, + [96475] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(5813), 1, - anon_sym_LBRACK, - STATE(3442), 1, + STATE(3218), 1, sym_comment, - ACTIONS(5725), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5816), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5807), 10, + ACTIONS(5929), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 25, + ACTIONS(5931), 29, + 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, @@ -343230,14 +324971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102683] = 5, + anon_sym_extends, + [96531] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3443), 1, + STATE(3219), 1, sym_comment, - ACTIONS(5819), 13, + ACTIONS(5940), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343251,7 +324993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5821), 29, + ACTIONS(5942), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343281,94 +325023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [102739] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, - anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, - anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3444), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6811), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [102853] = 5, + [96587] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3445), 1, + STATE(3220), 1, sym_comment, - ACTIONS(5823), 13, + ACTIONS(3492), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343382,7 +325044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 29, + ACTIONS(5944), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343412,14 +325074,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [102909] = 5, + [96643] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3446), 1, + STATE(3221), 1, sym_comment, - ACTIONS(5827), 13, + ACTIONS(5770), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343433,7 +325095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5829), 29, + ACTIONS(5772), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343463,14 +325125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [102965] = 5, + [96699] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3447), 1, + STATE(3222), 1, sym_comment, - ACTIONS(5831), 13, + ACTIONS(5796), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343484,7 +325146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5833), 29, + ACTIONS(5798), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343514,20 +325176,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [103021] = 8, + [96755] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3223), 1, + sym_comment, + ACTIONS(6750), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [96809] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6733), 1, + ACTIONS(6744), 1, anon_sym_AMP, - ACTIONS(6735), 1, + ACTIONS(6746), 1, anon_sym_PIPE, - ACTIONS(6737), 1, + ACTIONS(6748), 1, anon_sym_extends, - STATE(3448), 1, + STATE(3224), 1, sym_comment, - ACTIONS(5831), 11, + ACTIONS(5826), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343539,7 +325251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5833), 28, + ACTIONS(5828), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343568,14 +325280,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103083] = 5, + [96871] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3449), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + ACTIONS(6752), 1, + anon_sym_SEMI, + ACTIONS(6754), 1, + sym__automatic_semicolon, + STATE(3066), 1, + sym_type_arguments, + STATE(3225), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96987] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6756), 1, + sym__automatic_semicolon, + STATE(3226), 1, sym_comment, - ACTIONS(4367), 13, + ACTIONS(2456), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2298), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343589,14 +325389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5835), 29, - sym__automatic_semicolon, + ACTIONS(2304), 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, @@ -343618,17 +325415,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [103139] = 6, + [97049] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3227), 1, + sym_comment, + ACTIONS(6758), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [97103] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3228), 1, + sym_comment, + ACTIONS(6758), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [97157] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5809), 1, - anon_sym_EQ, - STATE(3450), 1, + STATE(3229), 1, sym_comment, - ACTIONS(5807), 13, + ACTIONS(5610), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343642,7 +325536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 28, + ACTIONS(5612), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343671,32 +325565,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103197] = 8, + anon_sym_extends, + [97213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6733), 1, - anon_sym_AMP, - ACTIONS(6735), 1, - anon_sym_PIPE, - ACTIONS(6737), 1, - anon_sym_extends, - STATE(3451), 1, + STATE(3230), 1, sym_comment, - ACTIONS(5915), 11, + ACTIONS(5952), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5917), 28, + ACTIONS(5954), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343725,32 +325616,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103259] = 8, + anon_sym_extends, + [97269] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6733), 1, + ACTIONS(6744), 1, anon_sym_AMP, - ACTIONS(6735), 1, - anon_sym_PIPE, - ACTIONS(6737), 1, - anon_sym_extends, - STATE(3452), 1, + STATE(3231), 1, sym_comment, - ACTIONS(5911), 11, + ACTIONS(5956), 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(5913), 28, + ACTIONS(5958), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343779,14 +325668,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103321] = 5, + anon_sym_extends, + [97327] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3453), 1, + STATE(3232), 1, sym_comment, - ACTIONS(4367), 13, + ACTIONS(5960), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343800,7 +325690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5835), 29, + ACTIONS(5962), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343830,12 +325720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [103377] = 5, + [97383] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3454), 1, + STATE(3233), 1, sym_comment, ACTIONS(4391), 13, anon_sym_STAR, @@ -343851,7 +325741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5837), 29, + ACTIONS(5972), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -343881,86 +325771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [103433] = 26, + [97439] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - STATE(3206), 1, - sym_type_arguments, - STATE(3455), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 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, - [103531] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3456), 1, + STATE(3234), 1, sym_comment, - ACTIONS(4391), 13, + ACTIONS(4399), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -343974,7 +325792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5837), 29, + ACTIONS(5978), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -344004,14 +325822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [103587] = 5, + [97495] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3457), 1, + STATE(3235), 1, sym_comment, - ACTIONS(4359), 13, + ACTIONS(4399), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -344025,7 +325843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5839), 29, + ACTIONS(5978), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -344055,14 +325873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [103643] = 5, + [97551] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3458), 1, + STATE(3236), 1, sym_comment, - ACTIONS(5841), 13, + ACTIONS(4407), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -344076,7 +325894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5843), 29, + ACTIONS(5980), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -344106,21 +325924,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [103699] = 6, + [97607] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6733), 1, - anon_sym_AMP, - STATE(3459), 1, + STATE(3237), 1, sym_comment, - ACTIONS(5845), 12, + ACTIONS(4407), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -344128,7 +325945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5847), 29, + ACTIONS(5980), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -344158,283 +325975,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [103757] = 34, + [97663] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, - anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6744), 1, anon_sym_AMP, - ACTIONS(6705), 1, - anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6746), 1, anon_sym_PIPE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3460), 1, + ACTIONS(6748), 1, + anon_sym_extends, + STATE(3238), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(5986), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6813), 2, + ACTIONS(5988), 28, sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [103871] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3461), 1, - sym_comment, - ACTIONS(2332), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [103925] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(6815), 1, - anon_sym_STAR, - STATE(3462), 1, - sym_comment, - STATE(5680), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6817), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [103997] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(6097), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6697), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3463), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6819), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [104111] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97725] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3464), 1, + STATE(3239), 1, sym_comment, - ACTIONS(5849), 13, + ACTIONS(5986), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -344448,7 +326050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5851), 29, + ACTIONS(5988), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -344478,70 +326080,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [104167] = 8, + [97781] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6733), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6735), 1, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6737), 1, - anon_sym_extends, - STATE(3465), 1, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3240), 1, sym_comment, - ACTIONS(5907), 11, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6283), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5909), 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(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 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, - [104229] = 6, + [97895] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3466), 1, + STATE(3241), 1, sym_comment, - ACTIONS(2289), 13, + ACTIONS(5990), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -344555,7 +326181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 28, + ACTIONS(5992), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -344584,14 +326210,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104287] = 5, + anon_sym_extends, + [97951] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3467), 1, + STATE(3242), 1, sym_comment, - ACTIONS(5589), 13, + ACTIONS(5994), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -344605,7 +326232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5591), 29, + ACTIONS(5996), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -344635,87 +326262,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [104343] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3468), 1, - sym_comment, - ACTIONS(2350), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [104397] = 5, + [98007] = 12, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3469), 1, + ACTIONS(3500), 1, + anon_sym_QMARK, + ACTIONS(5802), 1, + anon_sym_extends, + ACTIONS(6034), 1, + anon_sym_LBRACK, + ACTIONS(6258), 1, + anon_sym_COLON, + STATE(3243), 1, sym_comment, - ACTIONS(5907), 13, + ACTIONS(6037), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6571), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2298), 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(5909), 29, - sym__automatic_semicolon, + ACTIONS(2304), 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, @@ -344735,40 +326320,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [104453] = 6, + [98077] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3470), 1, + ACTIONS(5838), 1, + anon_sym_QMARK, + ACTIONS(5840), 1, + anon_sym_extends, + ACTIONS(6018), 1, + anon_sym_EQ, + ACTIONS(6022), 1, + anon_sym_LBRACK, + ACTIONS(6333), 1, + anon_sym_COLON, + STATE(3244), 1, sym_comment, - ACTIONS(5685), 4, + ACTIONS(6025), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6561), 2, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5679), 13, + ACTIONS(6016), 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(5681), 25, + ACTIONS(6020), 22, 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_AMP_AMP, @@ -344788,14 +326378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104511] = 5, + [98147] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3471), 1, + STATE(3245), 1, sym_comment, - ACTIONS(5625), 13, + ACTIONS(5998), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -344809,7 +326399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5627), 29, + ACTIONS(6000), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -344839,89 +326429,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [104567] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3472), 1, - sym_comment, - ACTIONS(6596), 42, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [104621] = 6, + [98203] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, + ACTIONS(6018), 1, anon_sym_EQ, - STATE(3473), 1, + ACTIONS(6022), 1, + anon_sym_LBRACK, + STATE(3246), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(5840), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6025), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6016), 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(4497), 28, - sym__automatic_semicolon, + ACTIONS(6020), 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, @@ -344941,29 +326484,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104679] = 7, + [98267] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3474), 1, + ACTIONS(6034), 1, + anon_sym_LBRACK, + STATE(3247), 1, sym_comment, - ACTIONS(5691), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5689), 7, - sym__automatic_semicolon, + ACTIONS(5802), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4493), 11, + ACTIONS(6037), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2298), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -344971,10 +326513,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 22, + ACTIONS(2304), 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, @@ -344994,14 +326539,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104739] = 5, + [98331] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3475), 1, + ACTIONS(6396), 1, + anon_sym_EQ, + STATE(3248), 1, sym_comment, - ACTIONS(4383), 13, + ACTIONS(6394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345015,7 +326562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5905), 29, + ACTIONS(6398), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345044,15 +326591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [104795] = 5, + [98389] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3476), 1, + STATE(3249), 1, sym_comment, - ACTIONS(4381), 13, + ACTIONS(6040), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345066,7 +326612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 29, + ACTIONS(6042), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345096,94 +326642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [104851] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, - anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, - anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3477), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6821), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [104965] = 5, + [98445] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3478), 1, + STATE(3250), 1, sym_comment, - ACTIONS(4379), 13, + ACTIONS(5946), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345197,7 +326663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 29, + ACTIONS(5948), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345227,32 +326693,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [105021] = 8, + [98501] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6733), 1, - anon_sym_AMP, - ACTIONS(6735), 1, - anon_sym_PIPE, - ACTIONS(6737), 1, - anon_sym_extends, - STATE(3479), 1, + STATE(3251), 1, sym_comment, - ACTIONS(5897), 11, + ACTIONS(6050), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5899), 28, + ACTIONS(6052), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345281,37 +326743,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105083] = 5, + anon_sym_extends, + [98557] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3480), 1, + STATE(3252), 1, sym_comment, - ACTIONS(5893), 13, + ACTIONS(5766), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5768), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(5895), 29, + ACTIONS(4497), 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, @@ -345331,38 +326797,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [105139] = 5, + [98617] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3481), 1, + ACTIONS(5935), 1, + anon_sym_extends, + STATE(3253), 1, sym_comment, - ACTIONS(5889), 13, + ACTIONS(6343), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6346), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6339), 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(5891), 29, + ACTIONS(6341), 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, @@ -345382,15 +326851,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [105195] = 5, + [98679] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3482), 1, + STATE(3254), 1, sym_comment, - ACTIONS(5885), 13, + ACTIONS(6054), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345404,7 +326872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5887), 29, + ACTIONS(6056), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345434,14 +326902,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [105251] = 5, + [98735] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3483), 1, + STATE(3255), 1, sym_comment, - ACTIONS(5879), 13, + ACTIONS(6075), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345455,7 +326923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5881), 29, + ACTIONS(6077), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345485,14 +326953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [105307] = 5, + [98791] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3484), 1, + STATE(3256), 1, sym_comment, - ACTIONS(5885), 13, + ACTIONS(5696), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345506,7 +326974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5887), 29, + ACTIONS(5698), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345536,14 +327004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [105363] = 5, + [98847] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3485), 1, + STATE(3257), 1, sym_comment, - ACTIONS(5879), 13, + ACTIONS(3494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345557,7 +327025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5881), 29, + ACTIONS(6079), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345587,14 +327055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [105419] = 5, + [98903] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3486), 1, + STATE(3258), 1, sym_comment, - ACTIONS(5875), 13, + ACTIONS(5698), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345608,15 +327081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 29, - sym__automatic_semicolon, + ACTIONS(5694), 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, @@ -345631,21 +327101,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98961] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + ACTIONS(6760), 1, + anon_sym_SEMI, + ACTIONS(6762), 1, + sym__automatic_semicolon, + STATE(3066), 1, + sym_type_arguments, + STATE(3259), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [105475] = 5, + [99077] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3487), 1, + STATE(3260), 1, sym_comment, - ACTIONS(5871), 13, + ACTIONS(4431), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345659,7 +327209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5873), 29, + ACTIONS(6066), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345689,14 +327239,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [105531] = 5, + [99133] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3488), 1, + STATE(3261), 1, sym_comment, - ACTIONS(5875), 13, + ACTIONS(4429), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345710,7 +327260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 29, + ACTIONS(6064), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345740,14 +327290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [105587] = 5, + [99189] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3489), 1, + STATE(3262), 1, sym_comment, - ACTIONS(5871), 13, + ACTIONS(4427), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345761,7 +327311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5873), 29, + ACTIONS(6048), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345791,68 +327341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [105643] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3490), 1, - sym_comment, - ACTIONS(6357), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6354), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5563), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4493), 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(4497), 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, - [105705] = 5, + [99245] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3491), 1, + ACTIONS(4495), 1, + anon_sym_EQ, + STATE(3263), 1, sym_comment, - ACTIONS(5867), 13, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345866,16 +327364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5869), 29, - sym__automatic_semicolon, + ACTIONS(4497), 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, @@ -345895,15 +327393,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [105761] = 5, + [99303] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3492), 1, + STATE(3264), 1, sym_comment, - ACTIONS(5863), 13, + ACTIONS(6044), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -345917,7 +327414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5865), 29, + ACTIONS(6046), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -345947,94 +327444,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [105817] = 34, + [99359] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(6133), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6695), 1, + ACTIONS(6693), 1, anon_sym_AMP_AMP, - ACTIONS(6697), 1, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6705), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(6707), 1, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6711), 1, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(6723), 1, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, ACTIONS(6725), 1, sym__ternary_qmark, - STATE(3206), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3493), 1, + STATE(3265), 1, sym_comment, - STATE(7132), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(6011), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6691), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, + ACTIONS(6764), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6717), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [105931] = 5, + [99473] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3494), 1, + ACTIONS(6766), 1, + anon_sym_LBRACK, + STATE(3266), 1, sym_comment, - ACTIONS(5867), 13, + ACTIONS(6010), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -346048,7 +327547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5869), 29, + ACTIONS(6012), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -346057,7 +327556,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, @@ -346078,14 +327576,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [105987] = 5, + [99531] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3495), 1, + ACTIONS(6768), 1, + anon_sym_extends, + STATE(3267), 1, sym_comment, - ACTIONS(5863), 13, + ACTIONS(6004), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -346099,7 +327599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5865), 29, + ACTIONS(6006), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -346128,192 +327628,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [106043] = 35, + [99589] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(5750), 1, + anon_sym_extends, + ACTIONS(6766), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, - anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, + STATE(3268), 1, + sym_comment, + ACTIONS(5748), 2, anon_sym_AMP, - ACTIONS(6705), 1, - anon_sym_CARET, - ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - ACTIONS(6823), 1, - anon_sym_SEMI, - ACTIONS(6825), 1, - sym__automatic_semicolon, - STATE(3206), 1, - sym_type_arguments, - STATE(3496), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(5982), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [106159] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(5984), 27, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6697), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - ACTIONS(6827), 1, - anon_sym_SEMI, - ACTIONS(6829), 1, - sym__automatic_semicolon, - STATE(3206), 1, - sym_type_arguments, - STATE(3497), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [106275] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [99651] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5711), 1, - anon_sym_extends, - ACTIONS(5801), 1, - anon_sym_LBRACK, - ACTIONS(6831), 1, - anon_sym_RPAREN, - STATE(3498), 1, - sym_comment, - ACTIONS(2291), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5804), 2, + ACTIONS(6744), 1, anon_sym_AMP, + ACTIONS(6746), 1, anon_sym_PIPE, - ACTIONS(6322), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2289), 11, + ACTIONS(6748), 1, + anon_sym_extends, + STATE(3269), 1, + sym_comment, + ACTIONS(5974), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -346325,10 +327707,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 22, + ACTIONS(5976), 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, @@ -346348,14 +327736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106343] = 5, + [99713] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3499), 1, + STATE(3270), 1, sym_comment, - ACTIONS(5859), 13, + ACTIONS(5968), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -346369,7 +327757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5861), 29, + ACTIONS(5970), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -346399,42 +327787,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [106399] = 9, + [99769] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4657), 1, - anon_sym_EQ, - ACTIONS(5699), 1, - anon_sym_extends, - STATE(3500), 1, + STATE(3271), 1, sym_comment, - ACTIONS(6273), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(6276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(5933), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 25, + ACTIONS(5935), 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, @@ -346454,41 +327837,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106463] = 8, + anon_sym_extends, + [99825] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5563), 1, - anon_sym_extends, - STATE(3501), 1, + STATE(3272), 1, sym_comment, - ACTIONS(6354), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(6357), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(5768), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 26, + ACTIONS(5766), 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, @@ -346508,79 +327888,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106525] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(6834), 1, - anon_sym_STAR, - STATE(3502), 1, - sym_comment, - STATE(5688), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6836), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [106597] = 5, + anon_sym_extends, + [99881] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3503), 1, + ACTIONS(6744), 1, + anon_sym_AMP, + STATE(3273), 1, sym_comment, - ACTIONS(5855), 13, + ACTIONS(5868), 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, @@ -346588,7 +327911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5857), 29, + ACTIONS(5870), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -346618,14 +327941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [106653] = 5, + [99939] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3504), 1, + STATE(3274), 1, sym_comment, - ACTIONS(3548), 13, + ACTIONS(5864), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -346639,7 +327962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5853), 29, + ACTIONS(5866), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -346669,45 +327992,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [106709] = 11, + [99995] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5725), 1, - anon_sym_extends, - ACTIONS(5813), 1, - anon_sym_LBRACK, - ACTIONS(6838), 1, - anon_sym_RPAREN, - STATE(3505), 1, + ACTIONS(6072), 1, + anon_sym_DOT, + STATE(3275), 1, sym_comment, - ACTIONS(5809), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5816), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6338), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5807), 11, + ACTIONS(6068), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 22, + ACTIONS(6070), 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, @@ -346726,402 +328043,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106777] = 34, + anon_sym_extends, + [100053] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, + ACTIONS(6081), 1, anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, - anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, - anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3506), 1, + STATE(3276), 1, sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6013), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, + ACTIONS(6068), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [106891] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, - anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, anon_sym_GT_GT, - ACTIONS(6703), 1, anon_sym_AMP, - ACTIONS(6705), 1, - anon_sym_CARET, - ACTIONS(6707), 1, anon_sym_PIPE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3507), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6015), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6719), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [107005] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(6070), 28, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6095), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6697), 1, anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, - anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, - anon_sym_PERCENT, - ACTIONS(6713), 1, - anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3508), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6017), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [107119] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_as, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, - anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(6133), 1, - anon_sym_satisfies, - ACTIONS(6695), 1, - anon_sym_AMP_AMP, - ACTIONS(6697), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6699), 1, - anon_sym_GT_GT, - ACTIONS(6703), 1, - anon_sym_AMP, - ACTIONS(6705), 1, anon_sym_CARET, - ACTIONS(6707), 1, - anon_sym_PIPE, - ACTIONS(6711), 1, anon_sym_PERCENT, - ACTIONS(6713), 1, anon_sym_STAR_STAR, - ACTIONS(6715), 1, - anon_sym_LT, - ACTIONS(6723), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6725), 1, - sym__ternary_qmark, - STATE(3206), 1, - sym_type_arguments, - STATE(3509), 1, - sym_comment, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(6019), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6689), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6691), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6701), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6709), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6719), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6721), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(6717), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [107233] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(6834), 1, - anon_sym_STAR, - ACTIONS(6841), 1, - anon_sym_async, - STATE(3510), 1, - sym_comment, - STATE(5688), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6836), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [107307] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [100111] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(6338), 1, - anon_sym_of, - ACTIONS(6843), 1, - anon_sym_in, - STATE(3511), 1, + STATE(3277), 1, sym_comment, - ACTIONS(5807), 12, + ACTIONS(5838), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -347132,12 +328117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 26, + ACTIONS(5840), 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, @@ -347159,43 +328146,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107368] = 11, + anon_sym_extends, + [100167] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(5699), 1, - anon_sym_extends, - ACTIONS(6273), 1, - anon_sym_LBRACK, - STATE(3512), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6846), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4493), 11, + ACTIONS(5630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 22, + ACTIONS(5632), 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, @@ -347215,20 +328197,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107435] = 6, + anon_sym_extends, + [100223] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3513), 1, + ACTIONS(6770), 1, + anon_sym_DOT, + STATE(3279), 1, sym_comment, - ACTIONS(6850), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2344), 13, + ACTIONS(5806), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -347242,12 +328221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2348), 23, + ACTIONS(5808), 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, @@ -347266,77 +328249,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107492] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3514), 1, - sym_comment, - STATE(5688), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [107559] = 7, + anon_sym_extends, + [100281] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6854), 1, - sym__automatic_semicolon, - STATE(3515), 1, + STATE(3280), 1, sym_comment, - ACTIONS(6852), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2384), 13, + ACTIONS(3500), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -347350,10 +328271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2388), 23, + ACTIONS(5802), 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, @@ -347374,7 +328300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107618] = 11, + anon_sym_extends, + [100337] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -347383,23 +328310,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3516), 1, + ACTIONS(6772), 1, + anon_sym_STAR, + STATE(3281), 1, sym_comment, - STATE(5546), 1, + STATE(5410), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(6774), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -347411,8 +328343,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, @@ -347430,38 +328360,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [107685] = 6, + [100409] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3517), 1, + ACTIONS(5594), 1, + anon_sym_extends, + ACTIONS(6285), 1, + anon_sym_LBRACK, + ACTIONS(6780), 1, + anon_sym_RPAREN, + STATE(3282), 1, sym_comment, - ACTIONS(6856), 5, - sym__automatic_semicolon, + ACTIONS(6288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6776), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6778), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2404), 13, + anon_sym_COLON, + ACTIONS(4493), 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(2408), 23, + ACTIONS(4497), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -347481,38 +328417,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107742] = 6, + [100477] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3518), 1, + ACTIONS(5840), 1, + anon_sym_extends, + ACTIONS(6022), 1, + anon_sym_LBRACK, + ACTIONS(6783), 1, + anon_sym_RPAREN, + STATE(3283), 1, sym_comment, - ACTIONS(6858), 5, - sym__automatic_semicolon, + ACTIONS(6018), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6025), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6333), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2452), 13, + anon_sym_COLON, + ACTIONS(6016), 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(2456), 23, + ACTIONS(6020), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -347532,39 +328474,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107799] = 7, + [100545] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6862), 1, - sym__automatic_semicolon, - STATE(3519), 1, + ACTIONS(5802), 1, + anon_sym_extends, + ACTIONS(6034), 1, + anon_sym_LBRACK, + ACTIONS(6786), 1, + anon_sym_RPAREN, + STATE(3284), 1, sym_comment, - ACTIONS(6860), 4, + ACTIONS(2300), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6037), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6258), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2376), 13, + anon_sym_COLON, + ACTIONS(2298), 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(2380), 23, + ACTIONS(2304), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -347584,21 +328531,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107858] = 7, + [100613] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6866), 1, - sym__automatic_semicolon, - STATE(3520), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3285), 1, sym_comment, - ACTIONS(6864), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6789), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2356), 13, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [100727] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3286), 1, + sym_comment, + ACTIONS(5830), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -347612,10 +328632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2360), 23, + ACTIONS(5832), 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, @@ -347636,151 +328661,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107917] = 6, + anon_sym_extends, + [100783] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3521), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3287), 1, sym_comment, - ACTIONS(6868), 5, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5824), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2396), 13, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2400), 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(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 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, - [107974] = 34, + [100897] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6874), 1, - anon_sym_COLON, - ACTIONS(6876), 1, + ACTIONS(6693), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6725), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(6791), 1, + anon_sym_SEMI, + ACTIONS(6793), 1, + sym__automatic_semicolon, + STATE(3066), 1, sym_type_arguments, - STATE(3522), 1, + STATE(3288), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [108087] = 7, + [101013] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3523), 1, + STATE(3289), 1, sym_comment, - ACTIONS(6908), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6910), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, + ACTIONS(5762), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -347794,10 +328844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(5764), 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, @@ -347818,37 +328873,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108146] = 5, + anon_sym_extends, + [101069] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3524), 1, + STATE(3290), 1, sym_comment, - ACTIONS(6294), 13, + ACTIONS(6416), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6413), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5742), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4493), 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(6296), 28, - sym__automatic_semicolon, + ACTIONS(4497), 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, @@ -347868,14 +328928,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108201] = 5, + [101131] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3525), 1, + STATE(3291), 1, sym_comment, - ACTIONS(2404), 13, + ACTIONS(5596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -347889,7 +328949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2408), 28, + ACTIONS(5598), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -347918,39 +328978,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108256] = 7, + anon_sym_extends, + [101187] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6912), 1, - sym__automatic_semicolon, - STATE(3526), 1, + ACTIONS(4615), 1, + anon_sym_EQ, + ACTIONS(5742), 1, + anon_sym_extends, + STATE(3292), 1, sym_comment, - ACTIONS(6858), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2452), 13, + ACTIONS(6413), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(2456), 25, + ACTIONS(4497), 25, + 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_AMP_AMP, @@ -347970,22 +329034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108315] = 9, + [101251] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6914), 1, - anon_sym_LPAREN, - ACTIONS(6917), 1, - anon_sym_COLON, - ACTIONS(6919), 1, - anon_sym_LT, - ACTIONS(6922), 1, - anon_sym_QMARK, - STATE(3527), 1, + ACTIONS(6766), 1, + anon_sym_LBRACK, + STATE(3293), 1, sym_comment, - ACTIONS(4493), 12, + ACTIONS(5748), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -347996,15 +329054,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(4497), 25, + ACTIONS(5750), 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, @@ -348024,19 +329085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108378] = 7, + anon_sym_extends, + [101309] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6924), 1, - sym__automatic_semicolon, - STATE(3528), 1, + STATE(3294), 1, sym_comment, - ACTIONS(6856), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2404), 13, + ACTIONS(5748), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -348050,11 +329107,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2408), 25, + ACTIONS(5750), 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, @@ -348076,14 +329136,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108437] = 5, + anon_sym_extends, + [101365] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3529), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6795), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3295), 1, sym_comment, - ACTIONS(2452), 13, + STATE(6831), 1, + sym_optional_chain, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5912), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -348094,21 +329174,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(2456), 28, + ACTIONS(5914), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -348124,158 +329196,124 @@ 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, - [108492] = 34, + [101439] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6013), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, + ACTIONS(6693), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(6958), 1, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, + ACTIONS(6725), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3530), 1, + STATE(3296), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5910), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [108605] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3531), 1, - sym_comment, - STATE(5533), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [108672] = 7, + [101553] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6962), 1, - sym__automatic_semicolon, - STATE(3532), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6798), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3297), 1, sym_comment, - ACTIONS(6852), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2384), 13, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5903), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -348284,18 +329322,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(2388), 25, + ACTIONS(5905), 16, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -348309,18 +329341,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [108731] = 5, + [101635] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3533), 1, + STATE(3298), 1, sym_comment, - ACTIONS(6205), 13, + ACTIONS(5592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -348334,7 +329362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6207), 28, + ACTIONS(5594), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -348363,21 +329391,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108786] = 7, + anon_sym_extends, + [101691] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3534), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6801), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3299), 1, sym_comment, - ACTIONS(6964), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6966), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5896), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -348388,16 +329432,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(4497), 23, + ACTIONS(5898), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -348411,18 +329452,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [108845] = 5, + [101767] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3535), 1, + STATE(3300), 1, sym_comment, - ACTIONS(6209), 13, + ACTIONS(5740), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -348436,7 +329474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6211), 28, + ACTIONS(5742), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -348465,115 +329503,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108900] = 5, + anon_sym_extends, + [101823] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3536), 1, - sym_comment, - ACTIONS(2418), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2422), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(6092), 1, anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [108955] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3537), 1, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3301), 1, sym_comment, - ACTIONS(6968), 5, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5842), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2364), 13, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2368), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101937] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, + ACTIONS(6092), 1, anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3302), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5852), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 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, - [109012] = 5, + [102051] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2714), 1, + anon_sym_EQ_GT, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3303), 1, + sym_comment, + STATE(5432), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [102121] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3538), 1, + STATE(3304), 1, sym_comment, - ACTIONS(6215), 13, + ACTIONS(5722), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -348587,7 +329743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6217), 28, + ACTIONS(5724), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -348616,430 +329772,538 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109067] = 7, + anon_sym_extends, + [102177] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3539), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(6551), 1, + anon_sym_STAR, + STATE(3305), 1, sym_comment, - ACTIONS(6682), 2, - anon_sym_EQ, + STATE(5432), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6557), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(6793), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [102249] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(6551), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6553), 1, + anon_sym_async, + STATE(3306), 1, + sym_comment, + STATE(5432), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6557), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4497), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + ACTIONS(2934), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [102323] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, + ACTIONS(6092), 1, anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3307), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5862), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109126] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6970), 1, - sym__automatic_semicolon, - STATE(3540), 1, - sym_comment, - ACTIONS(6850), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2344), 13, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2348), 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, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 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, - [109185] = 7, + [102437] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6972), 1, - sym__automatic_semicolon, - STATE(3541), 1, - sym_comment, - ACTIONS(6860), 2, - anon_sym_else, - anon_sym_while, - 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(2380), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6092), 1, anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3308), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5872), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109244] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3542), 1, - sym_comment, - ACTIONS(6974), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6976), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 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(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 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, - [109303] = 7, + [102551] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3543), 1, - sym_comment, - ACTIONS(6974), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6976), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, + ACTIONS(6092), 1, anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3309), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5874), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109362] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6978), 1, - sym__automatic_semicolon, - STATE(3544), 1, - sym_comment, - ACTIONS(6864), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2356), 13, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2360), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102665] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6092), 1, anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3310), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109421] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3545), 1, - sym_comment, - ACTIONS(6974), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6976), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6804), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102779] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, + ACTIONS(6092), 1, anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3311), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5880), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109480] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6980), 1, - sym__automatic_semicolon, - STATE(3546), 1, - sym_comment, - ACTIONS(6868), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2396), 13, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2400), 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, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 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, - [109539] = 5, + [102893] = 7, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3547), 1, + ACTIONS(6392), 1, + sym__automatic_semicolon, + STATE(3312), 1, sym_comment, - ACTIONS(6219), 13, + ACTIONS(2296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -349053,8 +330317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6017), 28, - sym__automatic_semicolon, + ACTIONS(2456), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -349082,176 +330345,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109594] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3548), 1, - sym_comment, - STATE(5680), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [109661] = 7, + [102953] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3549), 1, - sym_comment, - ACTIONS(5691), 2, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(5689), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4493), 11, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3313), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5890), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103067] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6088), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3314), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 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(5923), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [109720] = 7, + [103173] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6984), 1, - sym__automatic_semicolon, - STATE(3550), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3315), 1, sym_comment, - ACTIONS(6982), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2418), 13, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5925), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2422), 23, + ACTIONS(5923), 11, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [109779] = 5, + [103265] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3551), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6806), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3316), 1, sym_comment, - ACTIONS(6233), 13, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -349260,53 +330617,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(6019), 28, + ACTIONS(5923), 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, - anon_sym_BQUOTE, - anon_sym_satisfies, - [109834] = 6, + [103349] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3552), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6806), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3317), 1, sym_comment, - ACTIONS(6986), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2428), 13, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -349315,69 +330680,126 @@ 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(2432), 23, + ACTIONS(5923), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_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, + [103431] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3318), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 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, - [109891] = 11, + [103531] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3553), 1, + STATE(3319), 1, sym_comment, - STATE(5739), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(6478), 42, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -349399,302 +330821,396 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [109958] = 7, + anon_sym_abstract, + [103585] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3554), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3320), 1, sym_comment, - ACTIONS(6804), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6806), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, - anon_sym_STAR, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5925), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [110017] = 5, + [103683] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3555), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3321), 1, sym_comment, - ACTIONS(6334), 13, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6336), 28, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 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, - [110072] = 6, + [103779] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3556), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6806), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3322), 1, sym_comment, - ACTIONS(6988), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2480), 13, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(2484), 23, + ACTIONS(5923), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [110129] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [103863] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3557), 1, - sym_comment, - STATE(5712), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6088), 1, anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [110196] = 34, + STATE(3066), 1, + sym_type_arguments, + STATE(3323), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [103967] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6876), 1, - anon_sym_AMP_AMP, - ACTIONS(6878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(6904), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - ACTIONS(6990), 1, - anon_sym_COLON, - STATE(2750), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3558), 1, + STATE(3324), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110309] = 5, + ACTIONS(5923), 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, + [104069] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3559), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6806), 1, + anon_sym_LT, + STATE(3066), 1, + sym_type_arguments, + STATE(3325), 1, sym_comment, - ACTIONS(2344), 13, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -349705,46 +331221,42 @@ 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(2348), 28, + ACTIONS(5923), 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, - [110364] = 5, + [104147] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3560), 1, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6260), 1, + anon_sym_QMARK_DOT, + STATE(3326), 1, sym_comment, - ACTIONS(6318), 13, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(2406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -349758,7 +331270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6320), 28, + ACTIONS(2408), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -349767,9 +331279,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, @@ -349787,435 +331296,495 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [110419] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3561), 1, - sym_comment, - STATE(5525), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [110486] = 18, + [104211] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6992), 1, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, anon_sym_LT, - STATE(2750), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3562), 1, + STATE(3327), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6057), 11, - anon_sym_STAR, + ACTIONS(5925), 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(6059), 15, + ACTIONS(5923), 14, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_RBRACK, + 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, - [110567] = 14, + anon_sym_satisfies, + [104299] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6995), 1, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, sym_type_arguments, - STATE(3563), 1, + STATE(3328), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6066), 12, + ACTIONS(5964), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 19, - sym__ternary_qmark, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [104413] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, anon_sym_as, - anon_sym_of, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + ACTIONS(6809), 1, + anon_sym_SEMI, + ACTIONS(6811), 1, + sym__automatic_semicolon, + STATE(3066), 1, + sym_type_arguments, + STATE(3329), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 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, - [110640] = 34, + [104529] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6064), 1, - anon_sym_of, - ACTIONS(7002), 1, + ACTIONS(6693), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(7010), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(7012), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(7014), 1, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(7018), 1, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(7030), 1, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, + ACTIONS(6725), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3564), 1, + STATE(3330), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6002), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7000), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(7024), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110753] = 34, + [104643] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6876), 1, + ACTIONS(6693), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6725), 1, sym__ternary_qmark, - ACTIONS(7034), 1, - anon_sym_COLON, - STATE(2750), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3565), 1, + STATE(3331), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6014), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110866] = 18, + [104757] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(7036), 1, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, sym_type_arguments, - STATE(3566), 1, + STATE(3332), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6028), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6057), 11, + ACTIONS(6687), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6059), 15, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [110947] = 15, + [104871] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7039), 1, + ACTIONS(6713), 1, anon_sym_LT, - STATE(2750), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3567), 1, + STATE(3333), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6050), 12, + ACTIONS(6030), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -350228,10 +331797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 17, + ACTIONS(6032), 23, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - 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, @@ -350245,94 +331818,151 @@ 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, - [111022] = 34, + [104939] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6064), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, + ACTIONS(6693), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(6958), 1, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, + ACTIONS(6725), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3568), 1, + STATE(3334), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5966), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111135] = 5, + [105053] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3335), 1, + sym_comment, + ACTIONS(6813), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [105107] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3569), 1, + ACTIONS(6088), 1, + anon_sym_LPAREN, + STATE(3336), 1, sym_comment, - ACTIONS(6235), 13, + STATE(3583), 1, + sym_arguments, + ACTIONS(5774), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -350346,13 +331976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6237), 28, + ACTIONS(5776), 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, @@ -350375,14 +332004,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111190] = 5, + [105167] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3570), 1, + ACTIONS(4663), 1, + anon_sym_EQ, + STATE(3337), 1, sym_comment, - ACTIONS(6239), 13, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -350396,7 +332027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6021), 28, + ACTIONS(4497), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -350425,39 +332056,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111245] = 7, + [105225] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3338), 1, + sym_comment, + ACTIONS(6815), 42, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [105279] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3571), 1, + STATE(3339), 1, sym_comment, - ACTIONS(7042), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(7044), 3, + ACTIONS(5768), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5766), 7, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4493), 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), 23, + ACTIONS(4497), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -350477,47 +332159,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111304] = 19, + [105339] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5231), 1, + ACTIONS(6817), 1, anon_sym_STAR, - ACTIONS(5235), 1, + ACTIONS(6819), 1, anon_sym_async, - ACTIONS(7046), 1, - anon_sym_static, - ACTIONS(7048), 1, - anon_sym_readonly, - ACTIONS(7050), 1, - anon_sym_declare, - ACTIONS(7052), 1, - anon_sym_abstract, - STATE(3572), 1, + STATE(3340), 1, sym_comment, - STATE(3906), 1, - sym_override_modifier, - STATE(4722), 1, + STATE(5341), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5239), 2, + ACTIONS(6821), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 23, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -350526,9 +332200,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -350541,140 +332219,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [111387] = 8, + [105413] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6249), 1, - anon_sym_LBRACK, - STATE(3573), 1, - sym_comment, - ACTIONS(5739), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(6252), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6182), 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(6184), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5688), 1, anon_sym_satisfies, - [111448] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3574), 1, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3341), 1, sym_comment, - ACTIONS(2460), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2464), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6823), 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, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 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, - [111503] = 5, + [105527] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3575), 1, + ACTIONS(5594), 1, + anon_sym_extends, + ACTIONS(6285), 1, + anon_sym_LBRACK, + ACTIONS(6827), 1, + anon_sym_RPAREN, + STATE(3342), 1, sym_comment, - ACTIONS(6137), 13, + ACTIONS(6288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6735), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6825), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4493), 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(6139), 28, - sym__automatic_semicolon, + ACTIONS(4497), 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, @@ -350694,37 +332356,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111558] = 5, + [105595] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3576), 1, + ACTIONS(4672), 1, + anon_sym_QMARK, + ACTIONS(4682), 1, + anon_sym_EQ, + ACTIONS(6413), 1, + anon_sym_LBRACK, + STATE(3343), 1, sym_comment, - ACTIONS(6314), 13, + ACTIONS(4685), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5742), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(6416), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(6316), 28, - sym__automatic_semicolon, + ACTIONS(4497), 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, @@ -350744,107 +332413,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111613] = 5, + [105663] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3577), 1, + STATE(3344), 1, sym_comment, - ACTIONS(2364), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2368), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5616), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(1241), 4, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2596), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [111668] = 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [105721] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3578), 1, + STATE(3345), 1, sym_comment, - ACTIONS(6288), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6290), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5616), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(1241), 4, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2592), 36, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [111723] = 11, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [105779] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -350853,32 +332526,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3579), 1, + ACTIONS(6817), 1, + anon_sym_STAR, + STATE(3346), 1, sym_comment, - STATE(5643), 1, + STATE(5341), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(6821), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2934), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [105851] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3347), 1, + sym_comment, + ACTIONS(2370), 42, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -350900,37 +332625,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [111790] = 5, + anon_sym_abstract, + [105905] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3580), 1, + STATE(3348), 1, sym_comment, - ACTIONS(5679), 13, + ACTIONS(6288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6285), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5594), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4493), 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(5681), 28, - sym__automatic_semicolon, + ACTIONS(4497), 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, @@ -350950,107 +332680,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111845] = 34, + [105967] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6930), 1, + ACTIONS(6693), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(6958), 1, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, + ACTIONS(6725), 1, sym__ternary_qmark, - ACTIONS(7054), 1, - anon_sym_RBRACK, - STATE(2750), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3581), 1, + STATE(3349), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6830), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111958] = 9, + [106081] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4710), 1, - anon_sym_EQ, - ACTIONS(5699), 1, - anon_sym_extends, - STATE(3582), 1, - sym_comment, - ACTIONS(6273), 2, - anon_sym_COMMA, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(6276), 3, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + ACTIONS(6832), 1, + anon_sym_SEMI, + ACTIONS(6834), 1, + sym__automatic_semicolon, + STATE(3066), 1, + sym_type_arguments, + STATE(3350), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106197] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6744), 1, anon_sym_AMP, + ACTIONS(6746), 1, anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(6748), 1, + anon_sym_extends, + STATE(3351), 1, + sym_comment, + ACTIONS(5734), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -351058,11 +332866,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 24, + ACTIONS(5736), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -351082,106 +332895,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [112021] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [106259] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3583), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5594), 1, + anon_sym_extends, + STATE(3352), 1, sym_comment, - STATE(5637), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, + ACTIONS(6285), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6288), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4497), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [112088] = 14, + 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, + [106321] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7056), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3584), 1, + ACTIONS(4569), 1, + anon_sym_EQ, + ACTIONS(5742), 1, + anon_sym_extends, + STATE(3353), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6066), 12, + ACTIONS(6413), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(6068), 19, + ACTIONS(4497), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + 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, @@ -351197,29 +333002,34 @@ 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, - [112161] = 5, + [106385] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3585), 1, + ACTIONS(6744), 1, + anon_sym_AMP, + ACTIONS(6746), 1, + anon_sym_PIPE, + ACTIONS(6748), 1, + anon_sym_extends, + STATE(3354), 1, sym_comment, - ACTIONS(6420), 13, + ACTIONS(5706), 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(6044), 28, + ACTIONS(5708), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -351248,377 +333058,578 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112216] = 34, + [106447] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6064), 1, - anon_sym_COLON, - ACTIONS(6876), 1, + ACTIONS(6693), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6725), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(6836), 1, + anon_sym_SEMI, + ACTIONS(6838), 1, + sym__automatic_semicolon, + STATE(3066), 1, sym_type_arguments, - STATE(3586), 1, + STATE(3355), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [112329] = 34, + [106563] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6092), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(6128), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(6130), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(6164), 1, anon_sym_satisfies, - ACTIONS(6876), 1, + ACTIONS(6693), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6697), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6701), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6703), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6705), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6709), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6713), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6725), 1, sym__ternary_qmark, - ACTIONS(7059), 1, - anon_sym_COLON, - STATE(2750), 1, + STATE(3066), 1, sym_type_arguments, - STATE(3587), 1, + STATE(3356), 1, sym_comment, - STATE(6993), 1, + STATE(6831), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6687), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6699), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + ACTIONS(6840), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3601), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6715), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [112442] = 5, + [106677] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3588), 1, - sym_comment, - ACTIONS(6403), 13, - anon_sym_STAR, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, + anon_sym_AMP_AMP, + ACTIONS(6695), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6697), 1, anon_sym_GT_GT, + ACTIONS(6701), 1, anon_sym_AMP, + ACTIONS(6703), 1, + anon_sym_CARET, + ACTIONS(6705), 1, anon_sym_PIPE, + ACTIONS(6709), 1, + anon_sym_PERCENT, + ACTIONS(6711), 1, + anon_sym_STAR_STAR, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3357), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6405), 28, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6842), 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(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106791] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6725), 1, + sym__ternary_qmark, + STATE(3066), 1, + sym_type_arguments, + STATE(3358), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [112497] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3589), 1, - sym_comment, - ACTIONS(6399), 13, + ACTIONS(6687), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6689), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6717), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6401), 28, + ACTIONS(6719), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6844), 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(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [106905] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5688), 1, anon_sym_satisfies, - [112552] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3590), 1, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3359), 1, sym_comment, - ACTIONS(6385), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6031), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6281), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107019] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5656), 1, anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5660), 1, + anon_sym_GT_GT, + ACTIONS(5664), 1, + anon_sym_AMP, + ACTIONS(5666), 1, anon_sym_CARET, + ACTIONS(5668), 1, + anon_sym_PIPE, + ACTIONS(5672), 1, anon_sym_PERCENT, + ACTIONS(5674), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5676), 1, + anon_sym_LT, + ACTIONS(5684), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5688), 1, anon_sym_satisfies, - [112607] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3591), 1, + ACTIONS(5690), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3360), 1, sym_comment, - ACTIONS(6241), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5642), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5652), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5662), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5670), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5680), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6243), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5682), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6383), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107133] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(6092), 1, anon_sym_LBRACK, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6128), 1, + anon_sym_as, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(6164), 1, + anon_sym_satisfies, + ACTIONS(6693), 1, anon_sym_AMP_AMP, + ACTIONS(6695), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6697), 1, + anon_sym_GT_GT, + ACTIONS(6701), 1, + anon_sym_AMP, + ACTIONS(6703), 1, anon_sym_CARET, + ACTIONS(6705), 1, + anon_sym_PIPE, + ACTIONS(6709), 1, anon_sym_PERCENT, + ACTIONS(6711), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6713), 1, + anon_sym_LT, + ACTIONS(6721), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6725), 1, + sym__ternary_qmark, + ACTIONS(6846), 1, + anon_sym_SEMI, + ACTIONS(6848), 1, + sym__automatic_semicolon, + STATE(3066), 1, + sym_type_arguments, + STATE(3361), 1, + sym_comment, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(6122), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6687), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6689), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6699), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6707), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6717), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6719), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(6715), 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, - [112662] = 7, + [107249] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7061), 1, - sym__automatic_semicolon, - STATE(3592), 1, + ACTIONS(5698), 1, + anon_sym_extends, + STATE(3362), 1, sym_comment, - ACTIONS(6968), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2364), 13, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -351632,11 +333643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2368), 25, + ACTIONS(5694), 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, @@ -351658,41 +333672,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112721] = 11, + [107307] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3593), 1, + STATE(3363), 1, sym_comment, - STATE(5651), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, + ACTIONS(2458), 42, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -351714,363 +333721,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [112788] = 9, + anon_sym_abstract, + [107361] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - STATE(3594), 1, - sym_comment, - STATE(3148), 2, - sym_template_string, - sym_arguments, - ACTIONS(7063), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5553), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5555), 21, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6028), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6858), 1, + anon_sym_GT_GT, + ACTIONS(6862), 1, + anon_sym_AMP, + ACTIONS(6864), 1, anon_sym_CARET, + ACTIONS(6866), 1, + anon_sym_PIPE, + ACTIONS(6870), 1, anon_sym_PERCENT, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6874), 1, + anon_sym_LT, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6884), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3364), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [112851] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3595), 1, - sym_comment, - STATE(5654), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [112918] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7065), 1, - sym__automatic_semicolon, - STATE(3596), 1, - sym_comment, - ACTIONS(6982), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2418), 13, + ACTIONS(6850), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6860), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2422), 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, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6876), 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, - [112977] = 5, + [107474] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3597), 1, - sym_comment, - ACTIONS(2428), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2432), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5874), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, anon_sym_AMP_AMP, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6894), 1, + anon_sym_GT_GT, + ACTIONS(6898), 1, + anon_sym_AMP, + ACTIONS(6900), 1, anon_sym_CARET, + ACTIONS(6902), 1, + anon_sym_PIPE, + ACTIONS(6906), 1, anon_sym_PERCENT, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6910), 1, + anon_sym_LT, + ACTIONS(6918), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6920), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3365), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [113032] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7067), 1, - sym__automatic_semicolon, - STATE(3598), 1, - sym_comment, - ACTIONS(6986), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2428), 13, + ACTIONS(6886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2432), 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, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6912), 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, - [113091] = 15, + [107587] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7069), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6028), 1, + anon_sym_COLON, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, + anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3599), 1, + STATE(3366), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6050), 12, + ACTIONS(6922), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 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, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [113166] = 7, + [107700] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7072), 1, - sym__automatic_semicolon, - STATE(3600), 1, + ACTIONS(6285), 1, + anon_sym_LBRACK, + STATE(3367), 1, sym_comment, - ACTIONS(6988), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2480), 13, + ACTIONS(5594), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6288), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(2484), 25, + ACTIONS(4497), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -352090,14 +334012,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [113225] = 5, + [107761] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3601), 1, + STATE(3368), 1, sym_comment, - ACTIONS(6343), 13, + ACTIONS(6254), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -352111,7 +334033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6345), 28, + ACTIONS(6256), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -352140,253 +334062,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [113280] = 5, + [107816] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3602), 1, - sym_comment, - ACTIONS(6377), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6379), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6014), 1, + anon_sym_COLON, + ACTIONS(6926), 1, anon_sym_AMP_AMP, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, anon_sym_PERCENT, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6946), 1, + anon_sym_LT, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6956), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3369), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [113335] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5699), 1, - anon_sym_extends, - STATE(3603), 1, - sym_comment, - ACTIONS(6276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6273), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4493), 11, + ACTIONS(6922), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6952), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107929] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6002), 1, + anon_sym_COLON, + ACTIONS(6926), 1, anon_sym_AMP_AMP, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, anon_sym_PERCENT, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6946), 1, + anon_sym_LT, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6956), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3370), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [113396] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3604), 1, - sym_comment, - ACTIONS(6369), 13, + ACTIONS(6922), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6371), 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(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 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, - [113451] = 14, + [108042] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7074), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5966), 1, + anon_sym_COLON, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, + anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3605), 1, + STATE(3371), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6066), 12, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6922), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 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, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 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, - [113524] = 9, + [108155] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5737), 1, - anon_sym_QMARK, - STATE(3606), 1, + STATE(3372), 1, sym_comment, - ACTIONS(5739), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(6252), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6249), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(6182), 11, + ACTIONS(6250), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6184), 22, + ACTIONS(5964), 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, @@ -352406,7 +334349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [113587] = 11, + [108210] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -352415,19 +334358,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3607), 1, + STATE(3373), 1, sym_comment, - STATE(5655), 1, + STATE(5420), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -352462,66 +334405,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [113654] = 7, + [108277] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3608), 1, - sym_comment, - ACTIONS(6682), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6684), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5536), 1, anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5964), 1, + anon_sym_COLON, + ACTIONS(6926), 1, anon_sym_AMP_AMP, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, anon_sym_PERCENT, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6946), 1, + anon_sym_LT, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3374), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6922), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6924), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6950), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 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, - [113713] = 5, + [108390] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3609), 1, + STATE(3375), 1, sym_comment, - ACTIONS(6373), 13, + ACTIONS(6238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -352535,7 +334505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6375), 28, + ACTIONS(6240), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -352564,226 +334534,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [113768] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3610), 1, - sym_comment, - STATE(5716), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113835] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3611), 1, - sym_comment, - STATE(5727), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [113902] = 5, + [108445] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3612), 1, - sym_comment, - ACTIONS(6387), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6389), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6926), 1, anon_sym_AMP_AMP, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, anon_sym_PERCENT, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6946), 1, + anon_sym_LT, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + ACTIONS(6958), 1, + anon_sym_COLON, + STATE(2607), 1, + sym_type_arguments, + STATE(3376), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6922), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6924), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6950), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 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, - [113957] = 5, + [108558] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3613), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3377), 1, sym_comment, - ACTIONS(6391), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6922), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(6393), 28, - sym__automatic_semicolon, + ACTIONS(5923), 13, 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, - [114012] = 5, + [108645] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3614), 1, + STATE(3378), 1, sym_comment, - ACTIONS(6395), 13, + ACTIONS(6219), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -352797,7 +334700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6397), 28, + ACTIONS(6221), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -352826,36 +334729,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114067] = 15, + [108700] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7077), 1, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6960), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3615), 1, + STATE(3379), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6050), 12, + ACTIONS(5925), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -352868,17 +334773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 17, + ACTIONS(5923), 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -352886,14 +334790,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [114142] = 5, + [108777] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3616), 1, + STATE(3380), 1, sym_comment, - ACTIONS(2480), 13, + ACTIONS(6215), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -352907,7 +334811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2484), 28, + ACTIONS(6217), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -352936,18 +334840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114197] = 6, + [108832] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - sym_regex_flags, - STATE(3617), 1, + STATE(3381), 1, sym_comment, - ACTIONS(6676), 16, + ACTIONS(6213), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -352960,14 +334861,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(6678), 24, + ACTIONS(5890), 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, @@ -352984,235 +334885,253 @@ 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, - [114254] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3618), 1, - sym_comment, - STATE(5717), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [114321] = 34, + anon_sym_satisfies, + [108887] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6011), 1, - anon_sym_RBRACK, + ACTIONS(5925), 1, + anon_sym_BANG, ACTIONS(6930), 1, - anon_sym_AMP_AMP, - ACTIONS(6932), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(6958), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3619), 1, + STATE(3382), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114434] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5923), 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, + [108988] = 29, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3620), 1, - sym_comment, - STATE(5718), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, + anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [114501] = 9, + STATE(2607), 1, + sym_type_arguments, + STATE(3383), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6922), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6924), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6950), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6952), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [109091] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5801), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - STATE(3621), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6960), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3384), 1, sym_comment, - ACTIONS(5711), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5804), 3, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6922), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6940), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 8, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2289), 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5923), 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, + [109174] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3385), 1, + sym_comment, + ACTIONS(6200), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 24, + ACTIONS(6202), 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, @@ -353232,394 +335151,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114564] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3622), 1, - sym_comment, - STATE(5720), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [114631] = 30, + [109229] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, ACTIONS(6930), 1, - anon_sym_AMP_AMP, - ACTIONS(6932), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, - anon_sym_AMP, - ACTIONS(6940), 1, - anon_sym_CARET, ACTIONS(6942), 1, - anon_sym_PIPE, - ACTIONS(6946), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6946), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3623), 1, + STATE(3386), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(5925), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 5, + ACTIONS(5923), 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, - [114736] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3624), 1, - sym_comment, - STATE(5557), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [114803] = 9, + [109324] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(5813), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - STATE(3625), 1, - sym_comment, - ACTIONS(5725), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5816), 3, - anon_sym_GT, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, anon_sym_AMP, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3387), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5925), 2, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5807), 10, + ACTIONS(6922), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6924), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 24, - sym__automatic_semicolon, + ACTIONS(6952), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - 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, - [114866] = 34, + [109421] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6015), 1, - anon_sym_RBRACK, ACTIONS(6930), 1, - anon_sym_AMP_AMP, - ACTIONS(6932), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6936), 1, anon_sym_CARET, ACTIONS(6942), 1, - anon_sym_PIPE, - ACTIONS(6946), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(6958), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3626), 1, + STATE(3388), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114979] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3627), 1, - sym_comment, - STATE(5700), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [115046] = 6, + ACTIONS(5923), 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, + [109520] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3628), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6960), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3389), 1, sym_comment, - ACTIONS(7082), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2468), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6922), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -353628,38 +335409,157 @@ 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(2470), 26, - sym__automatic_semicolon, + ACTIONS(5923), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + 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, + [109601] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6960), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3390), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(5923), 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_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + [109684] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3391), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(6922), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6924), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5925), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5923), 10, + 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, - [115103] = 11, + [109775] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -353668,19 +335568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3629), 1, + STATE(3392), 1, sym_comment, - STATE(5659), 1, + STATE(5308), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -353715,400 +335615,297 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [115170] = 34, + [109842] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6876), 1, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6926), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(6904), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - ACTIONS(7084), 1, - anon_sym_COLON, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3630), 1, + STATE(3393), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115283] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5296), 1, - anon_sym_STAR, - ACTIONS(5298), 1, - anon_sym_async, - ACTIONS(7086), 1, - anon_sym_static, - ACTIONS(7088), 1, - anon_sym_readonly, - ACTIONS(7090), 1, - anon_sym_declare, - ACTIONS(7092), 1, - anon_sym_abstract, - STATE(3631), 1, - sym_comment, - STATE(3892), 1, - sym_override_modifier, - STATE(4712), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5300), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [115366] = 34, + ACTIONS(5923), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [109947] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6011), 1, - anon_sym_of, - ACTIONS(7002), 1, + ACTIONS(6926), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(7010), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(7012), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(7014), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(7018), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(7030), 1, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, + ACTIONS(6956), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(6963), 1, + anon_sym_COLON, + STATE(2607), 1, sym_type_arguments, - STATE(3632), 1, + STATE(3394), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7000), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7024), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115479] = 34, + [110060] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(3395), 1, + sym_comment, + ACTIONS(6264), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6266), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6013), 1, - anon_sym_of, - ACTIONS(7002), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7010), 1, - anon_sym_AMP, - ACTIONS(7012), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(7014), 1, - anon_sym_PIPE, - ACTIONS(7018), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, - anon_sym_LT, - ACTIONS(7030), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3633), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6998), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7028), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [115592] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [110115] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6876), 1, + ACTIONS(5890), 1, + anon_sym_COLON, + ACTIONS(6926), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6956), 1, sym__ternary_qmark, - ACTIONS(7094), 1, - anon_sym_COLON, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3634), 1, + STATE(3396), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115705] = 6, + [110228] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3635), 1, + STATE(3397), 1, sym_comment, - ACTIONS(7096), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2460), 13, + ACTIONS(6314), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -354122,10 +335919,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2464), 23, + ACTIONS(6316), 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, @@ -354146,268 +335948,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115762] = 34, + [110283] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6015), 1, - anon_sym_of, - ACTIONS(7002), 1, + ACTIONS(5880), 1, + anon_sym_COLON, + ACTIONS(6926), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(7010), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(7012), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(7014), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(7018), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(7030), 1, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, + ACTIONS(6956), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3636), 1, + STATE(3398), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7000), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7024), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115875] = 34, + [110396] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6034), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6017), 1, - anon_sym_of, - ACTIONS(7002), 1, - anon_sym_AMP_AMP, - ACTIONS(7004), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7010), 1, + STATE(3399), 1, + sym_comment, + ACTIONS(5802), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6037), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(7012), 1, - anon_sym_CARET, - ACTIONS(7014), 1, anon_sym_PIPE, - ACTIONS(7018), 1, - anon_sym_PERCENT, - ACTIONS(7020), 1, - anon_sym_STAR_STAR, - ACTIONS(7022), 1, - anon_sym_LT, - ACTIONS(7030), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3637), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(2298), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [115988] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(2304), 24, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6017), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, - anon_sym_AMP_AMP, - ACTIONS(6932), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, - anon_sym_GT_GT, - ACTIONS(6938), 1, - anon_sym_AMP, - ACTIONS(6940), 1, - anon_sym_CARET, - ACTIONS(6942), 1, - anon_sym_PIPE, - ACTIONS(6946), 1, - anon_sym_PERCENT, - ACTIONS(6948), 1, - anon_sym_STAR_STAR, - ACTIONS(6950), 1, - anon_sym_LT, - ACTIONS(6958), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3638), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6926), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6928), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6936), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6954), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6956), 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(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6952), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [116101] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [110459] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5809), 1, + ACTIONS(6018), 1, anon_sym_EQ, - ACTIONS(5813), 1, + ACTIONS(6022), 1, anon_sym_LBRACK, - ACTIONS(6338), 1, - anon_sym_COLON, - STATE(3639), 1, + STATE(3400), 1, sym_comment, - ACTIONS(5816), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5725), 3, + ACTIONS(5840), 2, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5807), 11, + ACTIONS(6025), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6016), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -354415,10 +336110,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 22, + ACTIONS(6020), 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, @@ -354438,14 +336135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116166] = 5, + [110522] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3640), 1, + STATE(3401), 1, sym_comment, - ACTIONS(2468), 13, + ACTIONS(2398), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -354459,7 +336156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2470), 28, + ACTIONS(2402), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -354488,280 +336185,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116221] = 34, + [110577] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6019), 1, - anon_sym_of, - ACTIONS(7002), 1, + ACTIONS(5874), 1, + anon_sym_COLON, + ACTIONS(6926), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(7010), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(7012), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(7014), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(7018), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(7030), 1, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, + ACTIONS(6956), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3641), 1, + STATE(3402), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7000), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7024), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116334] = 34, + [110690] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6021), 1, - anon_sym_of, - ACTIONS(7002), 1, - anon_sym_AMP_AMP, - ACTIONS(7004), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7010), 1, - anon_sym_AMP, - ACTIONS(7012), 1, - anon_sym_CARET, - ACTIONS(7014), 1, - anon_sym_PIPE, - ACTIONS(7018), 1, - anon_sym_PERCENT, - ACTIONS(7020), 1, - anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6965), 1, anon_sym_LT, - ACTIONS(7030), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3642), 1, + STATE(3403), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6998), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5912), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(5914), 19, + 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, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [116447] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [110763] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6029), 1, + ACTIONS(6309), 1, anon_sym_of, - ACTIONS(7002), 1, + ACTIONS(6852), 1, + anon_sym_GT, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(7010), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(7012), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(7014), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(7018), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(7030), 1, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, + ACTIONS(6884), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(6968), 1, + anon_sym_in, + STATE(2607), 1, sym_type_arguments, - STATE(3643), 1, + STATE(3404), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7000), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(7008), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7024), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116560] = 18, + [110878] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(7098), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3644), 1, + ACTIONS(6973), 1, + sym__automatic_semicolon, + STATE(3405), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6057), 11, + ACTIONS(6971), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2334), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -354770,11 +336426,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(6059), 15, + ACTIONS(2338), 25, sym__ternary_qmark, - anon_sym_COLON, + 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, @@ -354788,597 +336451,667 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [116641] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [110937] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6019), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, + ACTIONS(5872), 1, + anon_sym_COLON, + ACTIONS(6926), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(6958), 1, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, + ACTIONS(6956), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3645), 1, + STATE(3406), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116754] = 34, + [111050] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(6977), 1, + sym__automatic_semicolon, + STATE(3407), 1, + sym_comment, + ACTIONS(6975), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2342), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2346), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5547), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6021), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, - anon_sym_GT_GT, - ACTIONS(6938), 1, - anon_sym_AMP, - ACTIONS(6940), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6942), 1, - anon_sym_PIPE, - ACTIONS(6946), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, - anon_sym_LT, - ACTIONS(6958), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3646), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6926), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6928), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6936), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6954), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6956), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6952), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [116867] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [111109] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6029), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, + ACTIONS(5862), 1, + anon_sym_COLON, + ACTIONS(6926), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(6958), 1, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, + ACTIONS(6956), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3647), 1, + STATE(3408), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116980] = 34, + [111222] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(3409), 1, + sym_comment, + ACTIONS(6444), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6446), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6031), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, - anon_sym_GT_GT, - ACTIONS(6938), 1, - anon_sym_AMP, - ACTIONS(6940), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6942), 1, - anon_sym_PIPE, - ACTIONS(6946), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, - anon_sym_LT, - ACTIONS(6958), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, - sym__ternary_qmark, - STATE(2750), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [111277] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(6946), 1, + anon_sym_LT, + STATE(2607), 1, sym_type_arguments, - STATE(3648), 1, + STATE(3410), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6926), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6030), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6928), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6032), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6952), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [117093] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [111344] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(6979), 1, + sym__automatic_semicolon, + STATE(3411), 1, + sym_comment, + ACTIONS(6975), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2342), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2346), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6031), 1, - anon_sym_of, - ACTIONS(7002), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7010), 1, - anon_sym_AMP, - ACTIONS(7012), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(7014), 1, - anon_sym_PIPE, - ACTIONS(7018), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, - anon_sym_LT, - ACTIONS(7030), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3649), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [111403] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6983), 1, + sym__automatic_semicolon, + STATE(3412), 1, + sym_comment, + ACTIONS(6981), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2350), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(2354), 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, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [117206] = 30, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [111462] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(6985), 1, + sym__automatic_semicolon, + STATE(3413), 1, + sym_comment, + ACTIONS(6981), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2350), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2354), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5547), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(7002), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7010), 1, - anon_sym_AMP, - ACTIONS(7012), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(7014), 1, - anon_sym_PIPE, - ACTIONS(7018), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3650), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [111521] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_extends, + STATE(3414), 1, + sym_comment, + ACTIONS(6346), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6343), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(6339), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6341), 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, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [117311] = 23, + [111582] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7006), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5852), 1, + anon_sym_COLON, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(7018), 1, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, + anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6946), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3651), 1, + STATE(3415), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7000), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2997), 2, + ACTIONS(6950), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6952), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7024), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6035), 5, + [111695] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6989), 1, + sym__automatic_semicolon, + STATE(3416), 1, + sym_comment, + ACTIONS(6987), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2398), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 10, + ACTIONS(2402), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, - [117402] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7101), 1, - anon_sym_LPAREN, - ACTIONS(7103), 1, - anon_sym_DOT, - STATE(3652), 1, - sym_comment, - STATE(3936), 1, - sym_arguments, - ACTIONS(4325), 38, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [117461] = 11, + [111754] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -355387,19 +337120,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3653), 1, + STATE(3417), 1, sym_comment, - STATE(5733), 1, + STATE(5430), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -355434,45 +337167,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [117528] = 19, + [111821] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(7020), 1, - anon_sym_STAR_STAR, - ACTIONS(7105), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3654), 1, + STATE(3418), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 11, + ACTIONS(6991), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(5692), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -355481,122 +337189,66 @@ 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(6033), 14, + ACTIONS(5694), 25, sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [117611] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(7018), 1, - anon_sym_PERCENT, - ACTIONS(7020), 1, - anon_sym_STAR_STAR, - ACTIONS(7105), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3655), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6998), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [117692] = 10, + [111878] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5801), 1, - anon_sym_LBRACK, - ACTIONS(6322), 1, - anon_sym_COLON, - STATE(3656), 1, + STATE(3419), 1, sym_comment, - ACTIONS(5804), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5711), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2289), 11, + ACTIONS(2360), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 22, + ACTIONS(2364), 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, @@ -355616,423 +337268,433 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117757] = 27, + [111933] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7006), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(7010), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(7012), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(7018), 1, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6946), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + ACTIONS(6993), 1, + anon_sym_COLON, + STATE(2607), 1, sym_type_arguments, - STATE(3657), 1, + STATE(3420), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6998), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7000), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7024), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [117856] = 26, + [112046] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(3421), 1, + sym_comment, + ACTIONS(2378), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2382), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7010), 1, - anon_sym_AMP, - ACTIONS(7018), 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(7020), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3658), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6998), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [112101] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6997), 1, + sym__automatic_semicolon, + STATE(3422), 1, + sym_comment, + ACTIONS(6995), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2360), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 8, + ACTIONS(2364), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, - [117953] = 25, + [112160] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7006), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(7018), 1, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, + anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6946), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + ACTIONS(6999), 1, + anon_sym_COLON, + STATE(2607), 1, sym_type_arguments, - STATE(3659), 1, + STATE(3423), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7000), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(7024), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [118048] = 19, + [112273] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7018), 1, - anon_sym_PERCENT, - ACTIONS(7020), 1, - anon_sym_STAR_STAR, - ACTIONS(7105), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3660), 1, + ACTIONS(7003), 1, + sym__automatic_semicolon, + STATE(3424), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(7001), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2378), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7016), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 15, + ACTIONS(2382), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, - [118131] = 29, + [112332] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(7002), 1, - anon_sym_AMP_AMP, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7010), 1, - anon_sym_AMP, - ACTIONS(7012), 1, - anon_sym_CARET, - ACTIONS(7014), 1, - anon_sym_PIPE, - ACTIONS(7018), 1, - anon_sym_PERCENT, - ACTIONS(7020), 1, - anon_sym_STAR_STAR, - ACTIONS(7022), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3661), 1, + STATE(3425), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6246), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 6, + ACTIONS(6248), 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, - [118234] = 28, + [112387] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(7006), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(7010), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(7012), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(7014), 1, - anon_sym_PIPE, - ACTIONS(7018), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6874), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3662), 1, + STATE(3426), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7000), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7024), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 7, + ACTIONS(5923), 7, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -356040,41 +337702,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [118335] = 16, + [112486] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7020), 1, - anon_sym_STAR_STAR, - ACTIONS(7105), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3663), 1, + ACTIONS(4569), 1, + anon_sym_EQ, + ACTIONS(4775), 1, + anon_sym_in, + ACTIONS(4778), 1, + anon_sym_of, + STATE(3427), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 12, + ACTIONS(4493), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -356082,250 +337725,192 @@ 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(6033), 16, + ACTIONS(4497), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, - [118412] = 21, + [112547] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(7005), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7018), 1, - anon_sym_PERCENT, - ACTIONS(7020), 1, - anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(7008), 1, + anon_sym_COLON, + ACTIONS(7010), 1, anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3664), 1, + ACTIONS(7013), 1, + anon_sym_QMARK, + STATE(3428), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6349), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 13, + ACTIONS(6351), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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_BQUOTE, anon_sym_satisfies, - [118499] = 34, + [112610] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(3429), 1, + sym_comment, + ACTIONS(6369), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6371), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6044), 1, - anon_sym_of, - ACTIONS(7002), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7010), 1, - anon_sym_AMP, - ACTIONS(7012), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(7014), 1, - anon_sym_PIPE, - ACTIONS(7018), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, - anon_sym_LT, - ACTIONS(7030), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3665), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [112665] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3430), 1, + sym_comment, + ACTIONS(6995), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2360), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [118612] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(2364), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5547), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6046), 1, - anon_sym_of, - ACTIONS(7002), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7010), 1, - anon_sym_AMP, - ACTIONS(7012), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(7014), 1, - anon_sym_PIPE, - ACTIONS(7018), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, - anon_sym_LT, - ACTIONS(7030), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3666), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6998), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7026), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7028), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [118725] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [112722] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -356334,19 +337919,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3667), 1, + STATE(3431), 1, sym_comment, - STATE(5669), 1, + STATE(5341), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -356381,267 +337966,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [118792] = 34, + [112789] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6048), 1, - anon_sym_of, - ACTIONS(7002), 1, - anon_sym_AMP_AMP, - ACTIONS(7004), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, - anon_sym_GT_GT, - ACTIONS(7010), 1, - anon_sym_AMP, - ACTIONS(7012), 1, - anon_sym_CARET, - ACTIONS(7014), 1, - anon_sym_PIPE, - ACTIONS(7018), 1, - anon_sym_PERCENT, - ACTIONS(7020), 1, - anon_sym_STAR_STAR, - ACTIONS(7022), 1, - anon_sym_LT, - ACTIONS(7030), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3668), 1, + STATE(3432), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(7001), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2378), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [118905] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(2382), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5547), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(6934), 1, - anon_sym_GT_GT, - ACTIONS(6946), 1, - anon_sym_PERCENT, - ACTIONS(6948), 1, - anon_sym_STAR_STAR, - ACTIONS(6950), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3669), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6926), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6928), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6936), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6952), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6035), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6033), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [118996] = 34, + [112846] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6073), 1, - anon_sym_of, - ACTIONS(7002), 1, + ACTIONS(5842), 1, + anon_sym_COLON, + ACTIONS(6926), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(7010), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(7012), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(7014), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(7018), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(7030), 1, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, + ACTIONS(6956), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3670), 1, + STATE(3433), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7000), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7008), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7024), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [119109] = 9, + [112959] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_comment, + STATE(5405), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [113026] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4667), 1, - anon_sym_EQ, - ACTIONS(6273), 1, - anon_sym_LBRACK, - STATE(3671), 1, + ACTIONS(7017), 1, + sym__automatic_semicolon, + STATE(3435), 1, sym_comment, - ACTIONS(5699), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(6276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(7015), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2444), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 24, - sym__automatic_semicolon, + ACTIONS(2448), 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, @@ -356661,45 +338204,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119172] = 19, + [113085] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6948), 1, - anon_sym_STAR_STAR, - ACTIONS(7108), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3672), 1, + STATE(3436), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 11, + ACTIONS(7019), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7021), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -356708,24 +338229,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 14, + ACTIONS(4497), 23, sym__ternary_qmark, - anon_sym_RBRACK, + 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, - [119255] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [113144] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -356734,19 +338265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3673), 1, + STATE(3437), 1, sym_comment, - STATE(5571), 1, + STATE(5368), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -356781,70 +338312,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [119322] = 18, + [113211] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6946), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6028), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, + anon_sym_AMP_AMP, + ACTIONS(6892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6894), 1, + anon_sym_GT_GT, + ACTIONS(6898), 1, + anon_sym_AMP, + ACTIONS(6900), 1, + anon_sym_CARET, + ACTIONS(6902), 1, + anon_sym_PIPE, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(7108), 1, + ACTIONS(6910), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6918), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6920), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3674), 1, + STATE(3438), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 10, - anon_sym_BANG, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6912), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [119403] = 11, + [113324] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -356853,19 +338400,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3675), 1, + STATE(3439), 1, sym_comment, - STATE(5609), 1, + STATE(5369), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -356900,165 +338447,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [119470] = 34, + [113391] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(7023), 1, + sym_regex_flags, + STATE(3440), 1, + sym_comment, + ACTIONS(6727), 17, + anon_sym_STAR, anon_sym_as, - ACTIONS(5635), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6075), 1, + anon_sym_in, anon_sym_of, - ACTIONS(7002), 1, - anon_sym_AMP_AMP, - ACTIONS(7004), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(7010), 1, anon_sym_AMP, - ACTIONS(7012), 1, - anon_sym_CARET, - ACTIONS(7014), 1, anon_sym_PIPE, - ACTIONS(7018), 1, - anon_sym_PERCENT, - ACTIONS(7020), 1, - anon_sym_STAR_STAR, - ACTIONS(7022), 1, - anon_sym_LT, - ACTIONS(7030), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3676), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6998), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7000), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(7008), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7016), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7024), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_instanceof, - [119583] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, + anon_sym_satisfies, + ACTIONS(6729), 23, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(6934), 1, - anon_sym_GT_GT, - ACTIONS(6938), 1, - anon_sym_AMP, - ACTIONS(6940), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6946), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3677), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6926), 2, + anon_sym_BQUOTE, + [113448] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7025), 1, + anon_sym_LPAREN, + ACTIONS(7028), 1, + anon_sym_COLON, + ACTIONS(7030), 1, + anon_sym_LT, + ACTIONS(7033), 1, + anon_sym_QMARK, + STATE(3441), 1, + sym_comment, + ACTIONS(4493), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6928), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6952), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 7, + ACTIONS(4497), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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_BQUOTE, anon_sym_satisfies, - [119682] = 5, + [113511] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3678), 1, + STATE(3442), 1, sym_comment, - ACTIONS(6182), 13, + ACTIONS(6735), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6737), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -357072,15 +338580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6184), 28, - sym__automatic_semicolon, + ACTIONS(4497), 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, @@ -357101,42 +338604,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119737] = 8, + [113570] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5739), 1, - anon_sym_extends, - STATE(3679), 1, - sym_comment, - ACTIONS(6252), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6249), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(6182), 11, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7035), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3443), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5912), 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(6184), 24, + ACTIONS(5914), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -357152,87 +338662,146 @@ 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, - [119798] = 26, + [113643] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6934), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5910), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, + anon_sym_AMP_AMP, + ACTIONS(6892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(6946), 1, + ACTIONS(6900), 1, + anon_sym_CARET, + ACTIONS(6902), 1, + anon_sym_PIPE, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6910), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6918), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6920), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3680), 1, + STATE(3444), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6926), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 8, + [113756] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3445), 1, + sym_comment, + ACTIONS(7038), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7040), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [119895] = 5, + [113815] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3681), 1, + STATE(3446), 1, sym_comment, - ACTIONS(2376), 13, + ACTIONS(6402), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -357246,7 +338815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2380), 28, + ACTIONS(6404), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -357275,176 +338844,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119950] = 34, + [113870] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6011), 1, - anon_sym_COLON, - ACTIONS(6876), 1, - anon_sym_AMP_AMP, - ACTIONS(6878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, - anon_sym_AMP, - ACTIONS(6886), 1, - anon_sym_CARET, - ACTIONS(6888), 1, - anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6910), 1, anon_sym_LT, - ACTIONS(6904), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3682), 1, + STATE(3447), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(6902), 2, + ACTIONS(5923), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6898), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [120063] = 25, + anon_sym_satisfies, + [113957] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6934), 1, - anon_sym_GT_GT, - ACTIONS(6946), 1, - anon_sym_PERCENT, - ACTIONS(6948), 1, - anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7042), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3683), 1, + STATE(3448), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5903), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6928), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(5905), 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, - STATE(2997), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [114038] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7045), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3449), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 3, + ACTIONS(5896), 12, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6952), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5898), 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, - ACTIONS(6033), 8, + anon_sym_satisfies, + [114113] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3450), 1, + sym_comment, + ACTIONS(7038), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7040), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [120158] = 11, + [114172] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(7022), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, + anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + ACTIONS(7048), 1, + anon_sym_COLON, + STATE(2607), 1, sym_type_arguments, - STATE(3684), 1, + STATE(3451), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - STATE(2997), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6922), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6924), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6950), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6952), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6077), 12, + ACTIONS(6948), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114285] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7052), 1, + sym__automatic_semicolon, + STATE(3452), 1, + sym_comment, + ACTIONS(7050), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2388), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -357455,12 +339189,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(6079), 22, + ACTIONS(2392), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -357479,41 +339214,43 @@ 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, - [120225] = 6, + [114344] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - sym_regex_flags, - STATE(3685), 1, + ACTIONS(5740), 1, + anon_sym_QMARK, + STATE(3453), 1, sym_comment, - ACTIONS(6676), 17, + ACTIONS(5742), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(6416), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6413), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4493), 11, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6678), 23, - sym__automatic_semicolon, + ACTIONS(4497), 22, sym__ternary_qmark, - anon_sym_COMMA, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -357528,43 +339265,44 @@ 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, - [120282] = 8, + anon_sym_satisfies, + [114407] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6354), 1, - anon_sym_LBRACK, - STATE(3686), 1, + STATE(3454), 1, sym_comment, - ACTIONS(5563), 2, + ACTIONS(7054), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7056), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(6357), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 25, + ACTIONS(4497), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -357584,18 +339322,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120343] = 6, + [114466] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3687), 1, + STATE(3455), 1, sym_comment, - ACTIONS(7111), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(5679), 13, + ACTIONS(6735), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6825), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -357609,11 +339350,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5681), 25, + ACTIONS(4497), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -357635,249 +339374,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120400] = 19, + [114525] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6946), 1, - anon_sym_PERCENT, - ACTIONS(6948), 1, - anon_sym_STAR_STAR, - ACTIONS(7108), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3688), 1, + STATE(3456), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(7058), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2476), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6944), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 15, + ACTIONS(2480), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [120483] = 29, + [114582] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3457), 1, + sym_comment, + STATE(5371), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [114649] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(6930), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5824), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6934), 1, + ACTIONS(6856), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6874), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6882), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6884), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3689), 1, + STATE(3458), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [120586] = 28, + [114762] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(6934), 1, - anon_sym_GT_GT, - ACTIONS(6938), 1, - anon_sym_AMP, - ACTIONS(6940), 1, - anon_sym_CARET, - ACTIONS(6942), 1, - anon_sym_PIPE, - ACTIONS(6946), 1, - anon_sym_PERCENT, - ACTIONS(6948), 1, - anon_sym_STAR_STAR, - ACTIONS(6950), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3690), 1, + STATE(3459), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(7060), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7062), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6928), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6952), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 7, + ACTIONS(4497), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [120687] = 16, + [114821] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6948), 1, - anon_sym_STAR_STAR, - ACTIONS(7108), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3691), 1, + ACTIONS(7064), 1, + sym__automatic_semicolon, + STATE(3460), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 12, + ACTIONS(7050), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2388), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -357888,428 +339635,571 @@ 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(6033), 16, + ACTIONS(2392), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [120764] = 34, + [114880] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6013), 1, - anon_sym_COLON, - ACTIONS(6876), 1, + ACTIONS(5842), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6884), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3692), 1, + STATE(3461), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6876), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114993] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3462), 1, + sym_comment, + ACTIONS(7060), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7062), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, - [120877] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [115052] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6015), 1, - anon_sym_COLON, - ACTIONS(6876), 1, + ACTIONS(5852), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6884), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3693), 1, + STATE(3463), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [120990] = 21, + [115165] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6934), 1, - anon_sym_GT_GT, - ACTIONS(6946), 1, - anon_sym_PERCENT, - ACTIONS(6948), 1, - anon_sym_STAR_STAR, - ACTIONS(6950), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3694), 1, + STATE(3464), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(7060), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7062), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6936), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 13, + ACTIONS(4497), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [121077] = 34, + [115224] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6017), 1, - anon_sym_COLON, - ACTIONS(6876), 1, + ACTIONS(5862), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6884), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3695), 1, + STATE(3465), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [121190] = 34, + [115337] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6044), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, + ACTIONS(5872), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6958), 1, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, + ACTIONS(6884), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3696), 1, + STATE(3466), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [121303] = 11, + [115450] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3467), 1, + sym_comment, + STATE(5472), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [115517] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(7066), 1, + sym__automatic_semicolon, + STATE(3468), 1, + sym_comment, + ACTIONS(7058), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2476), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2480), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5557), 1, + 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, - ACTIONS(6896), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3697), 1, + anon_sym_satisfies, + [115576] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3469), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6077), 12, + ACTIONS(6335), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -358320,12 +340210,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(6079), 22, + ACTIONS(6337), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + 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, @@ -358344,1317 +340240,1130 @@ 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, - [121370] = 34, + [115631] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6046), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, + ACTIONS(5874), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6958), 1, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, + ACTIONS(6884), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3698), 1, + STATE(3470), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [121483] = 34, + [115744] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6019), 1, - anon_sym_COLON, - ACTIONS(6876), 1, + ACTIONS(5880), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6884), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3699), 1, + STATE(3471), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [121596] = 34, + [115857] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6876), 1, + ACTIONS(5890), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6884), 1, sym__ternary_qmark, - ACTIONS(7113), 1, - anon_sym_COLON, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3700), 1, + STATE(3472), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [121709] = 34, + [115970] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(3473), 1, + sym_comment, + ACTIONS(6295), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6297), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6048), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, - anon_sym_GT_GT, - ACTIONS(6938), 1, - anon_sym_AMP, - ACTIONS(6940), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6942), 1, - anon_sym_PIPE, - ACTIONS(6946), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, - anon_sym_LT, - ACTIONS(6958), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3701), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6926), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6928), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6936), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6944), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6954), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6956), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6952), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [121822] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [116025] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6021), 1, - anon_sym_COLON, - ACTIONS(6876), 1, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6904), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3702), 1, + STATE(3474), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [121935] = 34, + ACTIONS(5923), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [116130] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6029), 1, - anon_sym_COLON, - ACTIONS(6876), 1, - anon_sym_AMP_AMP, - ACTIONS(6878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, - anon_sym_AMP, - ACTIONS(6886), 1, - anon_sym_CARET, - ACTIONS(6888), 1, - anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6904), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3703), 1, + STATE(3475), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6902), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [122048] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3704), 1, - sym_comment, - ACTIONS(6437), 13, - anon_sym_STAR, + ACTIONS(5925), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6439), 28, - sym__automatic_semicolon, + ACTIONS(5923), 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_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [122103] = 34, + [116221] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6075), 1, - anon_sym_COLON, - ACTIONS(6876), 1, - anon_sym_AMP_AMP, - ACTIONS(6878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, - anon_sym_GT_GT, - ACTIONS(6884), 1, - anon_sym_AMP, - ACTIONS(6886), 1, - anon_sym_CARET, - ACTIONS(6888), 1, - anon_sym_PIPE, - ACTIONS(6892), 1, - anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(7068), 1, anon_sym_LT, - ACTIONS(6904), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3705), 1, + STATE(3476), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6872), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6890), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(5923), 14, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6898), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [122216] = 35, + [116304] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6268), 1, - anon_sym_of, - ACTIONS(7000), 1, - anon_sym_GT, - ACTIONS(7002), 1, + ACTIONS(6014), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, anon_sym_AMP_AMP, - ACTIONS(7004), 1, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - ACTIONS(7006), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(7010), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(7012), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(7014), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(7018), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(7020), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(7022), 1, + ACTIONS(6910), 1, anon_sym_LT, - ACTIONS(7030), 1, + ACTIONS(6918), 1, anon_sym_QMARK_QMARK, - ACTIONS(7032), 1, + ACTIONS(6920), 1, sym__ternary_qmark, - ACTIONS(7115), 1, - anon_sym_in, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3706), 1, + STATE(3477), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6998), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7008), 2, + ACTIONS(6888), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7016), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7026), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7028), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7024), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [122331] = 34, + [116417] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6031), 1, - anon_sym_COLON, - ACTIONS(6876), 1, - anon_sym_AMP_AMP, - ACTIONS(6878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, - anon_sym_GT_GT, - ACTIONS(6884), 1, - anon_sym_AMP, - ACTIONS(6886), 1, - anon_sym_CARET, - ACTIONS(6888), 1, - anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(7068), 1, anon_sym_LT, - ACTIONS(6904), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3707), 1, + STATE(3478), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6890), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(5923), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6898), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [122444] = 30, + anon_sym_satisfies, + [116498] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(6876), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6002), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6882), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6884), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3708), 1, + STATE(3479), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [122549] = 34, + [116611] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3480), 1, + sym_comment, + STATE(5419), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [116678] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3481), 1, + sym_comment, + STATE(5326), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [116745] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6073), 1, - anon_sym_RBRACK, - ACTIONS(6930), 1, - anon_sym_AMP_AMP, - ACTIONS(6932), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6940), 1, - anon_sym_CARET, - ACTIONS(6942), 1, - anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6958), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3709), 1, + STATE(3482), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [122662] = 23, + ACTIONS(5923), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [116842] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6880), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3710), 1, + STATE(3483), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6898), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6035), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [122753] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3711), 1, - sym_comment, - ACTIONS(6363), 13, - anon_sym_STAR, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(6365), 28, - sym__automatic_semicolon, + ACTIONS(6876), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 8, 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, - [122808] = 34, + [116937] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6075), 1, + ACTIONS(6002), 1, anon_sym_RBRACK, - ACTIONS(6930), 1, + ACTIONS(6890), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6910), 1, anon_sym_LT, - ACTIONS(6958), 1, + ACTIONS(6918), 1, anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, + ACTIONS(6920), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3712), 1, + STATE(3484), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [122921] = 9, + [117050] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5697), 1, - anon_sym_QMARK, - STATE(3713), 1, - sym_comment, - ACTIONS(5699), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(6276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6273), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4493), 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(4497), 22, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5536), 1, anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 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(6870), 1, anon_sym_PERCENT, + ACTIONS(6872), 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, - [122984] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(6950), 1, + ACTIONS(7068), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3714), 1, + STATE(3485), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - STATE(2997), 2, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6850), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6868), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6077), 12, - anon_sym_STAR, + ACTIONS(5925), 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(6079), 22, + ACTIONS(5923), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [123051] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, anon_sym_satisfies, - ACTIONS(6073), 1, - anon_sym_COLON, - ACTIONS(6876), 1, - anon_sym_AMP_AMP, - ACTIONS(6878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, - anon_sym_GT_GT, - ACTIONS(6884), 1, - anon_sym_AMP, - ACTIONS(6886), 1, - anon_sym_CARET, - ACTIONS(6888), 1, - anon_sym_PIPE, - ACTIONS(6892), 1, - anon_sym_PERCENT, - ACTIONS(6894), 1, - anon_sym_STAR_STAR, - ACTIONS(6896), 1, - anon_sym_LT, - ACTIONS(6904), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3715), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6870), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6872), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6882), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6890), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6902), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6898), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [123164] = 5, + [117133] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3716), 1, + STATE(3486), 1, sym_comment, - ACTIONS(6347), 13, + ACTIONS(7071), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -359668,14 +341377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6349), 28, + ACTIONS(2408), 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, @@ -359697,124 +341404,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [123219] = 34, + [117190] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6048), 1, - anon_sym_COLON, - ACTIONS(6876), 1, - anon_sym_AMP_AMP, - ACTIONS(6878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, - anon_sym_GT_GT, - ACTIONS(6884), 1, - anon_sym_AMP, - ACTIONS(6886), 1, - anon_sym_CARET, - ACTIONS(6888), 1, - anon_sym_PIPE, - ACTIONS(6892), 1, - anon_sym_PERCENT, - ACTIONS(6894), 1, - anon_sym_STAR_STAR, - ACTIONS(6896), 1, - anon_sym_LT, - ACTIONS(6904), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3717), 1, + STATE(3487), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(7071), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2406), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6872), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6882), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6890), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6900), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6902), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6898), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [123332] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6894), 1, - anon_sym_STAR_STAR, - ACTIONS(7118), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3718), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 11, - anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -359823,97 +341428,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 14, + ACTIONS(2408), 23, 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, - [123415] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5547), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(6892), 1, - anon_sym_PERCENT, - ACTIONS(6894), 1, - anon_sym_STAR_STAR, - ACTIONS(7118), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3719), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6870), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 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_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [123496] = 5, + [117247] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3720), 1, + ACTIONS(6018), 1, + anon_sym_EQ, + ACTIONS(6333), 1, + anon_sym_of, + ACTIONS(7073), 1, + anon_sym_in, + STATE(3488), 1, sym_comment, - ACTIONS(6298), 13, + ACTIONS(6016), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -359924,14 +341481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6073), 28, + ACTIONS(6020), 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, @@ -359953,139 +341508,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [123551] = 27, + [117308] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6880), 1, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6854), 1, + anon_sym_AMP_AMP, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6892), 1, + ACTIONS(6866), 1, + anon_sym_PIPE, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3721), 1, + STATE(3489), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 7, + ACTIONS(5923), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, + anon_sym_of, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [123650] = 5, + [117411] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3722), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3490), 1, sym_comment, - ACTIONS(5679), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5681), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(5380), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [123705] = 5, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [117478] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3723), 1, + ACTIONS(6258), 1, + anon_sym_of, + ACTIONS(7076), 1, + anon_sym_in, + STATE(3491), 1, sym_comment, - ACTIONS(6221), 13, + ACTIONS(2298), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -360096,14 +341664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6223), 28, + ACTIONS(2304), 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, @@ -360125,7 +341691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [123760] = 11, + [117539] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -360134,19 +341700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3724), 1, + STATE(3492), 1, sym_comment, - STATE(5561), 1, + STATE(5414), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -360181,16 +341747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [123827] = 6, + [117606] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4659), 1, - anon_sym_EQ, - STATE(3725), 1, + STATE(3493), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -360204,11 +341768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 27, + ACTIONS(5694), 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, @@ -360232,260 +341797,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [123884] = 26, + [117661] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(6396), 1, + anon_sym_EQ, + ACTIONS(6400), 1, + anon_sym_of, + ACTIONS(7079), 1, + anon_sym_in, + STATE(3494), 1, + sym_comment, + ACTIONS(6394), 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(6398), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(6880), 1, - anon_sym_GT_GT, - ACTIONS(6884), 1, - anon_sym_AMP, - ACTIONS(6892), 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(6894), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3726), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6870), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [117722] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3495), 1, + sym_comment, + ACTIONS(7038), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7040), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6872), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6890), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6898), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 8, + ACTIONS(4497), 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [123981] = 25, + [117781] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6880), 1, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6892), 1, + ACTIONS(6862), 1, + anon_sym_AMP, + ACTIONS(6864), 1, + anon_sym_CARET, + ACTIONS(6866), 1, + anon_sym_PIPE, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3727), 1, + STATE(3496), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6898), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 8, + ACTIONS(5923), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [124076] = 34, + [117882] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(4579), 1, + anon_sym_EQ, + ACTIONS(5740), 1, + anon_sym_QMARK, + ACTIONS(6413), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6046), 1, - anon_sym_COLON, - ACTIONS(6876), 1, - anon_sym_AMP_AMP, - ACTIONS(6878), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, - anon_sym_GT_GT, - ACTIONS(6884), 1, + STATE(3497), 1, + sym_comment, + ACTIONS(6416), 2, anon_sym_AMP, - ACTIONS(6886), 1, - anon_sym_CARET, - ACTIONS(6888), 1, anon_sym_PIPE, - ACTIONS(6892), 1, - anon_sym_PERCENT, - ACTIONS(6894), 1, - anon_sym_STAR_STAR, - ACTIONS(6896), 1, - anon_sym_LT, - ACTIONS(6904), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3728), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(5742), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4493), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6872), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6890), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(4497), 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(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6898), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [124189] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [117947] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6273), 1, - anon_sym_LBRACK, - STATE(3729), 1, + ACTIONS(7023), 1, + sym_regex_flags, + STATE(3498), 1, sym_comment, - ACTIONS(5699), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(6276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(6727), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 25, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6729), 24, + 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, @@ -360500,190 +342078,194 @@ 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, - [124250] = 34, + [118004] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6044), 1, - anon_sym_COLON, - ACTIONS(6876), 1, + ACTIONS(6926), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6956), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(7082), 1, + anon_sym_COLON, + STATE(2607), 1, sym_type_arguments, - STATE(3730), 1, + STATE(3499), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124363] = 10, + [118117] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4599), 1, - anon_sym_EQ, - ACTIONS(5697), 1, - anon_sym_QMARK, - ACTIONS(6273), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - STATE(3731), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6872), 1, + anon_sym_STAR_STAR, + ACTIONS(7068), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3500), 1, sym_comment, - ACTIONS(6276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5699), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4493), 11, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(4497), 22, + ACTIONS(5923), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [124428] = 21, + [118194] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6880), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6892), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6874), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3732), 1, + STATE(3501), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6882), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 7, + ACTIONS(5925), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -360691,10 +342273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 13, + ACTIONS(5923), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -360705,178 +342287,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [124515] = 5, + [118281] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3733), 1, - sym_comment, - ACTIONS(6257), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6259), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5964), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6858), 1, + anon_sym_GT_GT, + ACTIONS(6862), 1, + anon_sym_AMP, + ACTIONS(6864), 1, anon_sym_CARET, + ACTIONS(6866), 1, + anon_sym_PIPE, + ACTIONS(6870), 1, anon_sym_PERCENT, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6874), 1, + anon_sym_LT, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6884), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3502), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [124570] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6302), 1, - anon_sym_EQ, - ACTIONS(6306), 1, - anon_sym_of, - ACTIONS(7121), 1, - anon_sym_in, - STATE(3734), 1, - sym_comment, - ACTIONS(6300), 12, + ACTIONS(6850), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6852), 2, + anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6860), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6304), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6880), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6876), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118394] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5966), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6858), 1, + anon_sym_GT_GT, + ACTIONS(6862), 1, + anon_sym_AMP, + ACTIONS(6864), 1, anon_sym_CARET, + ACTIONS(6866), 1, + anon_sym_PIPE, + ACTIONS(6870), 1, anon_sym_PERCENT, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6874), 1, + anon_sym_LT, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6884), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3503), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [124631] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4657), 1, - anon_sym_EQ, - ACTIONS(4762), 1, - anon_sym_in, - ACTIONS(4765), 1, - anon_sym_of, - STATE(3735), 1, - sym_comment, - ACTIONS(4493), 12, + ACTIONS(6850), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6852), 2, + anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6860), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 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, - anon_sym_PIPE_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(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6876), 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, - [124692] = 9, + [118507] = 5, ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7124), 1, - anon_sym_LPAREN, - ACTIONS(7127), 1, - anon_sym_COLON, - ACTIONS(7129), 1, - anon_sym_LT, - ACTIONS(7132), 1, - anon_sym_QMARK, - STATE(3736), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3504), 1, sym_comment, - ACTIONS(6363), 12, + ACTIONS(6291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -360887,13 +342463,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(6365), 25, + ACTIONS(6293), 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, @@ -360915,71 +342495,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124755] = 19, + [118562] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6892), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5824), 1, + anon_sym_COLON, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, + anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(7118), 1, + ACTIONS(6946), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3737), 1, + STATE(3505), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6890), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 8, - anon_sym_BANG, + ACTIONS(6924), 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(6033), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6950), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [124838] = 11, + [118675] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -360988,19 +342583,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3738), 1, + STATE(3506), 1, sym_comment, - STATE(5573), 1, + STATE(5320), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -361035,86 +342630,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [124905] = 34, + [118742] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6413), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, + STATE(3507), 1, + sym_comment, + ACTIONS(5742), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5641), 1, + anon_sym_in, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4497), 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, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6876), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, - anon_sym_GT_GT, - ACTIONS(6884), 1, - anon_sym_AMP, - ACTIONS(6886), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6888), 1, - anon_sym_PIPE, - ACTIONS(6892), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, - anon_sym_LT, - ACTIONS(6904), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, - sym__ternary_qmark, - ACTIONS(7134), 1, - anon_sym_COLON, - STATE(2750), 1, - sym_type_arguments, - STATE(3739), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [118803] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3508), 1, + sym_comment, + ACTIONS(7084), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2420), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6872), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6890), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(2424), 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(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6898), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [125018] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [118860] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -361123,19 +342743,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3740), 1, + STATE(3509), 1, sym_comment, - STATE(5610), 1, + STATE(5329), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(1247), 3, + ACTIONS(1241), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -361170,219 +342790,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [125085] = 29, + [118927] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(6876), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5824), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, anon_sym_AMP_AMP, - ACTIONS(6880), 1, + ACTIONS(6892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6910), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6918), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6920), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3741), 1, + STATE(3510), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [125188] = 7, + [119040] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7136), 1, - sym__automatic_semicolon, - STATE(3742), 1, - sym_comment, - ACTIONS(7096), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2460), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2464), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5842), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, anon_sym_AMP_AMP, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6894), 1, + anon_sym_GT_GT, + ACTIONS(6898), 1, + anon_sym_AMP, + ACTIONS(6900), 1, anon_sym_CARET, + ACTIONS(6902), 1, + anon_sym_PIPE, + ACTIONS(6906), 1, anon_sym_PERCENT, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6910), 1, + anon_sym_LT, + ACTIONS(6918), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6920), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3511), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [125247] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4706), 1, - anon_sym_COLON, - ACTIONS(6273), 1, - anon_sym_LBRACK, - STATE(3743), 1, - sym_comment, - ACTIONS(6276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5699), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4493), 11, + ACTIONS(6886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 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(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6912), 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, - [125312] = 16, + [119153] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6894), 1, - anon_sym_STAR_STAR, - ACTIONS(7118), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3744), 1, + STATE(3512), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 12, + ACTIONS(6299), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -361393,162 +342966,181 @@ 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(6033), 16, + ACTIONS(6301), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + 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, - [125389] = 34, + [119208] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6876), 1, + ACTIONS(6890), 1, anon_sym_AMP_AMP, - ACTIONS(6878), 1, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - ACTIONS(6880), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6910), 1, anon_sym_LT, - ACTIONS(6904), 1, + ACTIONS(6918), 1, anon_sym_QMARK_QMARK, - ACTIONS(6906), 1, + ACTIONS(6920), 1, sym__ternary_qmark, - ACTIONS(7138), 1, - anon_sym_COLON, - STATE(2750), 1, + ACTIONS(7086), 1, + anon_sym_RBRACK, + STATE(2607), 1, sym_type_arguments, - STATE(3745), 1, + STATE(3513), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [125502] = 5, + [119321] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3746), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3514), 1, sym_comment, - ACTIONS(2384), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2388), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(5412), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, 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, - [125557] = 5, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [119388] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3747), 1, + STATE(3515), 1, sym_comment, - ACTIONS(6264), 13, + ACTIONS(6303), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -361562,7 +343154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6266), 28, + ACTIONS(6305), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -361591,87 +343183,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [125612] = 28, + [119443] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5311), 1, + anon_sym_STAR, + ACTIONS(5313), 1, + anon_sym_async, + ACTIONS(7088), 1, + anon_sym_static, + ACTIONS(7090), 1, + anon_sym_readonly, + ACTIONS(7092), 1, + anon_sym_declare, + ACTIONS(7094), 1, + anon_sym_abstract, + STATE(3516), 1, + sym_comment, + STATE(3756), 1, + sym_override_modifier, + STATE(4501), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5315), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [119526] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(6880), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5852), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, + anon_sym_AMP_AMP, + ACTIONS(6892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(6884), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(6886), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(6888), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(6892), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(6894), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(6896), 1, + ACTIONS(6910), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6918), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6920), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3748), 1, + STATE(3517), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6870), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6872), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6882), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6890), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6900), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6902), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6898), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 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, - [125713] = 5, + [119639] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3749), 1, + STATE(3518), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(2428), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -361685,7 +343347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 28, + ACTIONS(2432), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -361714,16 +343376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [125768] = 6, + [119694] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4657), 1, - anon_sym_EQ, - STATE(3750), 1, + STATE(3519), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(2420), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -361737,13 +343397,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 27, + ACTIONS(2424), 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, @@ -361765,37 +343426,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [125825] = 5, + [119749] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3751), 1, + ACTIONS(4696), 1, + anon_sym_EQ, + ACTIONS(5742), 1, + anon_sym_extends, + STATE(3520), 1, sym_comment, - ACTIONS(2356), 13, + ACTIONS(6413), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(2360), 28, - sym__automatic_semicolon, + ACTIONS(4497), 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, @@ -361815,14 +343479,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [125880] = 5, + anon_sym_implements, + [119812] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3521), 1, + sym_comment, + STATE(5410), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [119879] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3752), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + STATE(3522), 1, sym_comment, - ACTIONS(6422), 13, + STATE(2887), 2, + sym_template_string, + sym_arguments, + ACTIONS(7096), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5578), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -361836,15 +343568,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6424), 28, - sym__automatic_semicolon, + ACTIONS(5580), 21, 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, @@ -361863,155 +343589,176 @@ 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, - [125935] = 34, + [119942] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(6930), 1, + ACTIONS(6014), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(6932), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(6934), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(6938), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(6940), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(6942), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(6946), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(6948), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(6950), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(6958), 1, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - ACTIONS(6960), 1, + ACTIONS(6884), 1, sym__ternary_qmark, - ACTIONS(7140), 1, - anon_sym_RBRACK, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3753), 1, + STATE(3523), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6926), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6928), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6936), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6944), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6954), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6956), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6952), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126048] = 7, + [120055] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3754), 1, - sym_comment, - ACTIONS(7142), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(7144), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5536), 1, anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5862), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, anon_sym_AMP_AMP, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6894), 1, + anon_sym_GT_GT, + ACTIONS(6898), 1, + anon_sym_AMP, + ACTIONS(6900), 1, anon_sym_CARET, + ACTIONS(6902), 1, + anon_sym_PIPE, + ACTIONS(6906), 1, anon_sym_PERCENT, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6910), 1, + anon_sym_LT, + ACTIONS(6918), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6920), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3524), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6888), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6904), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6914), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6912), 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, - [126107] = 8, + [120168] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6322), 1, - anon_sym_of, - ACTIONS(7146), 1, - anon_sym_in, - STATE(3755), 1, + STATE(3525), 1, sym_comment, - ACTIONS(2289), 12, + ACTIONS(6322), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -362022,12 +343769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 26, + ACTIONS(6324), 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, @@ -362049,14 +343798,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [126168] = 5, + [120223] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3526), 1, + sym_comment, + STATE(5409), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [120290] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3756), 1, + STATE(3527), 1, sym_comment, - ACTIONS(2396), 13, + ACTIONS(6188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -362070,7 +343875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2400), 28, + ACTIONS(6190), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -362099,14 +343904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [126223] = 5, + [120345] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3757), 1, + STATE(3528), 1, sym_comment, - ACTIONS(6225), 13, + ACTIONS(6186), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -362120,7 +343925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6227), 28, + ACTIONS(5874), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -362149,20 +343954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [126278] = 6, + [120400] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3758), 1, + STATE(3529), 1, sym_comment, - ACTIONS(7082), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2468), 13, + ACTIONS(6329), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -362176,10 +343975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2470), 23, + ACTIONS(6331), 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, @@ -362200,21 +344004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [126335] = 7, + [120455] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3759), 1, + STATE(3530), 1, sym_comment, - ACTIONS(7149), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(7151), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, + ACTIONS(2444), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -362228,10 +344025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(2448), 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, @@ -362252,123 +344054,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [126394] = 7, + [120510] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3760), 1, - sym_comment, - ACTIONS(7149), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(7151), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5536), 1, anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5872), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, anon_sym_AMP_AMP, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6894), 1, + anon_sym_GT_GT, + ACTIONS(6898), 1, + anon_sym_AMP, + ACTIONS(6900), 1, anon_sym_CARET, + ACTIONS(6902), 1, + anon_sym_PIPE, + ACTIONS(6906), 1, anon_sym_PERCENT, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6910), 1, + anon_sym_LT, + ACTIONS(6918), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6920), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3531), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [126453] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3761), 1, - sym_comment, - ACTIONS(6229), 13, + ACTIONS(6886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6231), 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(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6912), 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, - [126508] = 7, + [120623] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3762), 1, + STATE(3532), 1, sym_comment, - ACTIONS(7149), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(7151), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4493), 13, + ACTIONS(2406), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -362382,10 +344154,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(2408), 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, @@ -362406,7 +344183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [126567] = 12, + [120678] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -362415,22 +344192,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7153), 1, - anon_sym_RBRACE, - STATE(3763), 1, + STATE(3533), 1, sym_comment, - STATE(6055), 1, + STATE(5398), 1, sym__property_name, - STATE(7259), 1, - sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2934), 30, anon_sym_export, anon_sym_type, @@ -362462,104 +344239,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [126635] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [120745] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(7155), 1, - anon_sym_RBRACE, - STATE(3764), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, + anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, + anon_sym_LT, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + ACTIONS(7098), 1, + anon_sym_COLON, + STATE(2607), 1, + sym_type_arguments, + STATE(3534), 1, sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [126703] = 14, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6922), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6924), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6950), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6952), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120858] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7157), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3765), 1, + ACTIONS(5742), 1, + anon_sym_extends, + STATE(3535), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6066), 12, + ACTIONS(6416), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6413), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4493), 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(6068), 18, + ACTIONS(4497), 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, @@ -362575,44 +344369,49 @@ 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, - [126775] = 17, + [120919] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(4455), 1, + ACTIONS(4457), 1, anon_sym_override, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5200), 1, - anon_sym_LBRACK, ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5233), 1, + anon_sym_STAR, + ACTIONS(5237), 1, anon_sym_async, - ACTIONS(5204), 1, - anon_sym_readonly, - ACTIONS(7160), 1, + ACTIONS(7100), 1, anon_sym_static, - STATE(3766), 1, + ACTIONS(7102), 1, + anon_sym_readonly, + ACTIONS(7104), 1, + anon_sym_declare, + ACTIONS(7106), 1, + anon_sym_abstract, + STATE(3536), 1, sym_comment, - STATE(3888), 1, + STATE(3741), 1, sym_override_modifier, - STATE(4790), 1, + STATE(4509), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5206), 2, + ACTIONS(5241), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 24, + ACTIONS(4433), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -362621,7 +344420,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, @@ -362637,7 +344435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [126853] = 12, + [121002] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -362646,22 +344444,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7162), 1, - anon_sym_RBRACE, - STATE(3767), 1, + STATE(3537), 1, sym_comment, - STATE(6309), 1, + STATE(5356), 1, sym__property_name, - STATE(6686), 1, - sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2934), 30, anon_sym_export, anon_sym_type, @@ -362693,533 +344491,778 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [126921] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [121069] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7164), 1, - anon_sym_RBRACE, - STATE(3768), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7110), 1, + sym__automatic_semicolon, + STATE(3538), 1, sym_comment, - STATE(5986), 1, - sym__property_name, - STATE(6827), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [126989] = 33, + ACTIONS(7108), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2412), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2416), 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, + [121128] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(7170), 1, + ACTIONS(5966), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(7182), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(7186), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(6910), 1, anon_sym_LT, - ACTIONS(7198), 1, + ACTIONS(6918), 1, anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, + ACTIONS(6920), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3769), 1, + STATE(3539), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127099] = 33, + [121241] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(7170), 1, + ACTIONS(5964), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(7182), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(7186), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(6910), 1, anon_sym_LT, - ACTIONS(7198), 1, + ACTIONS(6918), 1, anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, + ACTIONS(6920), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3770), 1, + STATE(3540), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(6912), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121354] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4569), 1, + anon_sym_EQ, + STATE(3541), 1, + sym_comment, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, - [127209] = 33, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [121411] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(7170), 1, - anon_sym_AMP_AMP, - ACTIONS(7172), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, + ACTIONS(7112), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3542), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5903), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(7178), 1, anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_CARET, - ACTIONS(7182), 1, anon_sym_PIPE, - ACTIONS(7186), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5905), 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, - ACTIONS(7188), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - ACTIONS(7198), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, - sym__ternary_qmark, - STATE(2750), 1, + anon_sym_instanceof, + [121492] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(6910), 1, + anon_sym_LT, + STATE(2607), 1, sym_type_arguments, - STATE(3771), 1, + STATE(3543), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6030), 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(6032), 22, + sym__ternary_qmark, + anon_sym_as, + 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, - ACTIONS(7166), 2, + anon_sym_satisfies, + [121559] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7115), 1, + sym__automatic_semicolon, + STATE(3544), 1, + sym_comment, + ACTIONS(7084), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2420), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 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(2424), 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, - ACTIONS(7184), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [121618] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7119), 1, + sym__automatic_semicolon, + STATE(3545), 1, + sym_comment, + ACTIONS(7117), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2428), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(2432), 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, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [127319] = 33, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [121677] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(7170), 1, + ACTIONS(5880), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(7182), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(7186), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(6910), 1, anon_sym_LT, - ACTIONS(7198), 1, + ACTIONS(6918), 1, anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, + ACTIONS(6920), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3772), 1, + STATE(3546), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(6912), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121790] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3547), 1, + sym_comment, + ACTIONS(6349), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6351), 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, + [121845] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3548), 1, + sym_comment, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, - [127429] = 33, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [121900] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(7170), 1, + ACTIONS(5890), 1, + anon_sym_RBRACK, + ACTIONS(6890), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(7182), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(7186), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(6910), 1, anon_sym_LT, - ACTIONS(7198), 1, + ACTIONS(6918), 1, anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, + ACTIONS(6920), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3773), 1, + STATE(3549), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127539] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7202), 1, - anon_sym_RBRACE, - STATE(3774), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [127607] = 15, + [122013] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7204), 1, + ACTIONS(7121), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3775), 1, + STATE(3550), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6050), 12, + ACTIONS(5896), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -363232,9 +345275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 16, + ACTIONS(5898), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -363249,7 +345293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [127681] = 12, + [122088] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -363258,22 +345302,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7207), 1, - anon_sym_RBRACE, - STATE(3776), 1, + STATE(3551), 1, sym_comment, - STATE(6434), 1, + STATE(5347), 1, sym__property_name, - STATE(7656), 1, - sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2934), 30, anon_sym_export, anon_sym_type, @@ -363305,39 +345349,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [127749] = 8, + [122155] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6273), 1, - anon_sym_LBRACK, - STATE(3777), 1, + STATE(3552), 1, sym_comment, - ACTIONS(5699), 2, + ACTIONS(7124), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7126), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(6276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 24, - sym__automatic_semicolon, + ACTIONS(4497), 23, 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, @@ -363357,400 +345401,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [127809] = 33, + [122214] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(7170), 1, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6890), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(7182), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(7186), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(6910), 1, anon_sym_LT, - ACTIONS(7198), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3778), 1, + STATE(3553), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127919] = 33, + ACTIONS(5923), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [122319] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(3554), 1, + sym_comment, + ACTIONS(7128), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(7130), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5547), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(7170), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(7182), 1, - anon_sym_PIPE, - ACTIONS(7186), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - ACTIONS(7198), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, - sym__ternary_qmark, - STATE(2750), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [122378] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(6874), 1, + anon_sym_LT, + STATE(2607), 1, sym_type_arguments, - STATE(3779), 1, + STATE(3555), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7166), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6030), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6032), 22, + sym__ternary_qmark, + anon_sym_as, + 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, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [128029] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7209), 1, - anon_sym_RBRACE, - STATE(3780), 1, - sym_comment, - STATE(6303), 1, - sym__property_name, - STATE(7111), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [128097] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [122445] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7211), 1, - anon_sym_RBRACE, - STATE(3781), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [128165] = 14, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_import, - ACTIONS(15), 1, - anon_sym_AT, - ACTIONS(17), 1, - anon_sym_pragma, - STATE(3782), 1, + STATE(3556), 1, sym_comment, - STATE(3853), 1, - aux_sym_program_repeat1, - STATE(4458), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4504), 1, - sym_ui_annotation, - STATE(6609), 1, - sym_ui_nested_identifier, - STATE(4487), 2, - sym_ui_pragma, - sym_ui_import, - STATE(8721), 2, - sym_ui_object_definition, - sym_ui_annotated_object, - ACTIONS(11), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [128237] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(6776), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6778), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(7213), 1, - anon_sym_RBRACE, - STATE(3783), 1, - sym_comment, - STATE(6043), 1, - sym__property_name, - STATE(7254), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [128305] = 8, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [122504] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(6338), 1, - anon_sym_COMMA, - ACTIONS(6572), 1, - anon_sym_RBRACK, - STATE(3784), 1, + STATE(3557), 1, sym_comment, - ACTIONS(5807), 13, + ACTIONS(6180), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -363764,11 +345657,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 24, + ACTIONS(6182), 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, @@ -363789,74 +345686,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [128365] = 23, + [122559] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(3558), 1, + sym_comment, + ACTIONS(6178), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5872), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7186), 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(7188), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3785), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [122614] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3559), 1, + sym_comment, + ACTIONS(6971), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2334), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 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(2338), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [122671] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3560), 1, + sym_comment, + ACTIONS(6438), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5862), 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, - ACTIONS(6035), 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [122726] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3561), 1, + sym_comment, + ACTIONS(6365), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 9, + ACTIONS(6367), 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, - [128455] = 12, + [122781] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -363865,22 +345896,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7215), 1, - anon_sym_RBRACE, - STATE(3786), 1, + STATE(3562), 1, sym_comment, - STATE(6434), 1, + STATE(5437), 1, sym__property_name, - STATE(7656), 1, - sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2934), 30, anon_sym_export, anon_sym_type, @@ -363912,109 +345943,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [128523] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7217), 1, - anon_sym_catch, - ACTIONS(7219), 1, - anon_sym_finally, - STATE(3787), 1, - sym_comment, - STATE(3910), 1, - sym_catch_clause, - STATE(4149), 1, - sym_finally_clause, - ACTIONS(3345), 36, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [128583] = 6, + [122848] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6680), 1, - sym_regex_flags, - STATE(3788), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6894), 1, + anon_sym_GT_GT, + ACTIONS(6906), 1, + anon_sym_PERCENT, + ACTIONS(6908), 1, + anon_sym_STAR_STAR, + ACTIONS(6910), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3563), 1, sym_comment, - ACTIONS(6676), 17, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6886), 2, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6912), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5925), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(6678), 22, + ACTIONS(5923), 10, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - [128639] = 12, + anon_sym_satisfies, + [122939] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -364023,22 +346020,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7221), 1, - anon_sym_RBRACE, - STATE(3789), 1, + STATE(3564), 1, sym_comment, - STATE(6434), 1, + STATE(5432), 1, sym__property_name, - STATE(7656), 1, - sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2934), 30, anon_sym_export, anon_sym_type, @@ -364070,20 +346067,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [128707] = 8, + [123006] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6322), 1, - anon_sym_COMMA, - ACTIONS(6607), 1, - anon_sym_RBRACK, - STATE(3790), 1, + ACTIONS(4615), 1, + anon_sym_EQ, + STATE(3565), 1, sym_comment, - ACTIONS(2289), 13, + ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -364097,11 +346090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 24, + ACTIONS(4497), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -364122,340 +346118,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [128767] = 33, + [123063] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(7170), 1, + ACTIONS(6926), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, + ACTIONS(6928), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(7182), 1, + ACTIONS(6938), 1, anon_sym_PIPE, - ACTIONS(7186), 1, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(6946), 1, anon_sym_LT, - ACTIONS(7198), 1, + ACTIONS(6954), 1, anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, + ACTIONS(6956), 1, sym__ternary_qmark, - STATE(2750), 1, + ACTIONS(7132), 1, + anon_sym_COLON, + STATE(2607), 1, sym_type_arguments, - STATE(3791), 1, + STATE(3566), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128877] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7223), 1, - anon_sym_RBRACE, - STATE(3792), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [128945] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7225), 1, - anon_sym_RBRACE, - STATE(3793), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [129013] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [123176] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7227), 1, - anon_sym_RBRACE, - STATE(3794), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [129081] = 12, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(7229), 1, - anon_sym_RBRACE, - STATE(3795), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6908), 1, + anon_sym_STAR_STAR, + ACTIONS(7134), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3567), 1, sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [129149] = 8, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(5923), 14, + sym__ternary_qmark, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [123259] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6302), 1, + ACTIONS(6018), 1, anon_sym_EQ, - ACTIONS(6306), 1, + ACTIONS(6022), 1, + anon_sym_LBRACK, + ACTIONS(6333), 1, + anon_sym_COLON, + STATE(3568), 1, + sym_comment, + ACTIONS(6025), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5840), 3, anon_sym_COMMA, - ACTIONS(6669), 1, anon_sym_RBRACK, - STATE(3796), 1, - sym_comment, - ACTIONS(6300), 13, + anon_sym_extends, + ACTIONS(6016), 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(6304), 24, + ACTIONS(6020), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -364475,287 +346316,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [129209] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [123324] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7231), 1, - anon_sym_RBRACE, - STATE(3797), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [129277] = 12, - ACTIONS(3), 1, + ACTIONS(2300), 1, + anon_sym_EQ, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(6034), 1, anon_sym_LBRACK, - ACTIONS(7233), 1, - anon_sym_RBRACE, - STATE(3798), 1, + ACTIONS(6258), 1, + anon_sym_COLON, + STATE(3569), 1, sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [129345] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(6037), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5802), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2298), 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(2304), 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, + [123389] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7235), 1, - anon_sym_RBRACE, - STATE(3799), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [129413] = 12, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7237), 1, - anon_sym_RBRACE, - STATE(3800), 1, + STATE(3570), 1, sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [129481] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7239), 1, + ACTIONS(6242), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6244), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3801), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + anon_sym_LPAREN, anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [129549] = 12, + 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, + [123444] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -364764,22 +346430,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7241), 1, - anon_sym_RBRACE, - STATE(3802), 1, + STATE(3571), 1, sym_comment, - STATE(6434), 1, + STATE(5360), 1, sym__property_name, - STATE(7656), 1, - sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2934), 30, anon_sym_export, anon_sym_type, @@ -364811,38 +346477,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [129617] = 7, + [123511] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3803), 1, + STATE(3572), 1, sym_comment, - ACTIONS(5691), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(5689), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4493), 11, + ACTIONS(2334), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 22, + ACTIONS(2338), 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, @@ -364862,106 +346527,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [129675] = 19, + [123566] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(4495), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_COLON, + ACTIONS(5742), 1, + anon_sym_extends, + ACTIONS(6413), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(7188), 1, - anon_sym_STAR_STAR, - ACTIONS(7243), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3804), 1, + STATE(3573), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 11, + ACTIONS(6416), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(7137), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4493), 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(6033), 13, + ACTIONS(4497), 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, - [129757] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [123633] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7186), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(7243), 1, + ACTIONS(7134), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3805), 1, + STATE(3574), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 10, + ACTIONS(5925), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -364972,9 +346630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6033), 14, + ACTIONS(5923), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -364987,437 +346646,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [129837] = 27, + [123714] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7174), 1, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(5910), 1, + anon_sym_COLON, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6930), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(6934), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6936), 1, anon_sym_CARET, - ACTIONS(7186), 1, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6944), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(6946), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + STATE(2607), 1, sym_type_arguments, - STATE(3806), 1, + STATE(3575), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(7166), 2, + ACTIONS(6922), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(6924), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(6932), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(6940), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(6950), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6952), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(6948), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [129935] = 26, + [123827] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7174), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(7186), 1, + ACTIONS(6900), 1, + anon_sym_CARET, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(6910), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3807), 1, + STATE(3576), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6035), 2, + ACTIONS(5925), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(7166), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 7, + ACTIONS(5923), 7, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [130031] = 25, + [123926] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7186), 1, - anon_sym_PERCENT, - ACTIONS(7188), 1, - anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3808), 1, + STATE(3577), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(6987), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2398), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(7192), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 7, + ACTIONS(2402), 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, - [130125] = 19, + [123983] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7186), 1, - anon_sym_PERCENT, - ACTIONS(7188), 1, - anon_sym_STAR_STAR, - ACTIONS(7243), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3809), 1, + ACTIONS(5933), 1, + anon_sym_QMARK, + STATE(3578), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(5935), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(6346), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6343), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(6339), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7184), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 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(6033), 14, + ACTIONS(6341), 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, - [130207] = 29, + [124046] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(7170), 1, - anon_sym_AMP_AMP, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_CARET, - ACTIONS(7182), 1, - anon_sym_PIPE, - ACTIONS(7186), 1, - anon_sym_PERCENT, - ACTIONS(7188), 1, - anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3810), 1, + ACTIONS(7141), 1, + sym__automatic_semicolon, + STATE(3579), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(7108), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2412), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 5, + ACTIONS(2416), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [130309] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(6035), 1, - anon_sym_BANG, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(7182), 1, - anon_sym_PIPE, - ACTIONS(7186), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3811), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [124105] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3580), 1, + sym_comment, + ACTIONS(2412), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(6033), 6, + ACTIONS(2416), 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, - [130409] = 6, + [124160] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7246), 1, - anon_sym_AT, - STATE(3992), 1, - sym_decorator, - STATE(3812), 2, + ACTIONS(7143), 1, + anon_sym_LPAREN, + ACTIONS(7145), 1, + anon_sym_DOT, + STATE(3581), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(4311), 37, + STATE(3842), 1, + sym_arguments, + ACTIONS(4307), 38, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -365433,6 +347033,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_identifier, sym_private_property_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -365455,38 +347056,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [130465] = 16, + [124219] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(4663), 1, + anon_sym_EQ, + ACTIONS(4709), 1, + anon_sym_COLON, + ACTIONS(6413), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + STATE(3582), 1, + sym_comment, + ACTIONS(6416), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5742), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4493), 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(4497), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(7188), 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(7243), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3813), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6035), 12, + anon_sym_BQUOTE, + anon_sym_satisfies, + [124284] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3583), 1, + sym_comment, + ACTIONS(6270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -365497,39 +347129,53 @@ 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(6033), 15, + ACTIONS(6272), 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, - [130541] = 9, + [124339] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4737), 1, + ACTIONS(4692), 1, anon_sym_EQ, - ACTIONS(6273), 1, + ACTIONS(6413), 1, anon_sym_LBRACK, - STATE(3814), 1, + STATE(3584), 1, sym_comment, - ACTIONS(5699), 2, + ACTIONS(5742), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(6276), 3, + ACTIONS(6416), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -365544,11 +347190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(4497), 24, + 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_AMP_AMP, @@ -365568,75 +347215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [130603] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5370), 1, - anon_sym_static, - ACTIONS(5372), 1, - anon_sym_readonly, - ACTIONS(5374), 1, - anon_sym_abstract, - STATE(3815), 1, - sym_comment, - STATE(3927), 1, - sym_override_modifier, - STATE(5040), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [130677] = 6, + [124402] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7111), 1, - anon_sym_COMMA, - STATE(3816), 1, + STATE(3585), 1, sym_comment, - ACTIONS(5679), 13, + ACTIONS(6318), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -365650,14 +347236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5681), 26, + ACTIONS(6320), 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -365677,64 +347265,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [130733] = 21, + [124457] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7186), 1, - anon_sym_PERCENT, - ACTIONS(7188), 1, - anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(7147), 1, anon_sym_LT, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3817), 1, + STATE(3586), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(6035), 7, + ACTIONS(5896), 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(6033), 12, + ACTIONS(5898), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -365742,444 +347325,441 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [130819] = 33, + [124532] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(7170), 1, - anon_sym_AMP_AMP, - ACTIONS(7172), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_CARET, - ACTIONS(7182), 1, - anon_sym_PIPE, - ACTIONS(7186), 1, - anon_sym_PERCENT, - ACTIONS(7188), 1, - anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(7150), 1, anon_sym_LT, - ACTIONS(7198), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, - sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3818), 1, + STATE(3587), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5903), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(5905), 15, + sym__ternary_qmark, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [130929] = 33, + [124613] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(7170), 1, + ACTIONS(5910), 1, + anon_sym_of, + ACTIONS(6854), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, + ACTIONS(6856), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, + ACTIONS(6858), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(6862), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6864), 1, anon_sym_CARET, - ACTIONS(7182), 1, + ACTIONS(6866), 1, anon_sym_PIPE, - ACTIONS(7186), 1, + ACTIONS(6870), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6872), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(6874), 1, anon_sym_LT, - ACTIONS(7198), 1, + ACTIONS(6882), 1, anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, + ACTIONS(6884), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3819), 1, + STATE(3588), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(6850), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(6852), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(6860), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(6868), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(6878), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6880), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(6876), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [131039] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [124726] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(7249), 1, - anon_sym_RBRACE, - STATE(3820), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7153), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3589), 1, sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + STATE(7018), 1, + sym_optional_chain, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5912), 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(5914), 19, + sym__ternary_qmark, + anon_sym_as, anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [131107] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [124799] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7251), 1, - anon_sym_RBRACE, - STATE(3821), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [131175] = 12, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + STATE(3590), 1, + sym_comment, + ACTIONS(7117), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2428), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2432), 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, + [124856] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(7253), 1, - anon_sym_RBRACE, - STATE(3822), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6908), 1, + anon_sym_STAR_STAR, + ACTIONS(7134), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3591), 1, sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [131243] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(5923), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_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, + [124933] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5615), 1, - anon_sym_readonly, - ACTIONS(7255), 1, - anon_sym_STAR, - STATE(3823), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3592), 1, sym_comment, - STATE(3885), 1, - sym_override_modifier, - STATE(4727), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(7257), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + ACTIONS(6339), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6341), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [131317] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + 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, + [124988] = 26, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(7259), 1, - anon_sym_RBRACE, - STATE(3824), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6894), 1, + anon_sym_GT_GT, + ACTIONS(6898), 1, + anon_sym_AMP, + ACTIONS(6906), 1, + anon_sym_PERCENT, + ACTIONS(6908), 1, + anon_sym_STAR_STAR, + ACTIONS(6910), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3593), 1, sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [131385] = 12, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6888), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6904), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6914), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6916), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6912), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [125085] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -366187,23 +347767,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2267), 1, anon_sym_DQUOTE, ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7261), 1, - anon_sym_RBRACE, - STATE(3825), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3594), 1, sym_comment, - STATE(6434), 1, + STATE(5467), 1, sym__property_name, - STATE(7656), 1, - sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2934), 30, anon_sym_export, anon_sym_type, @@ -366235,60 +347815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [131453] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5711), 1, - anon_sym_extends, - STATE(3826), 1, - sym_comment, - ACTIONS(5801), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5804), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2289), 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(2295), 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, - [131515] = 12, + [125152] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -366297,22 +347824,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7263), 1, - anon_sym_RBRACE, - STATE(3827), 1, + STATE(3595), 1, sym_comment, - STATE(6434), 1, + STATE(5318), 1, sym__property_name, - STATE(7656), 1, - sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2934), 30, anon_sym_export, anon_sym_type, @@ -366344,134 +347871,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [131583] = 9, + [125219] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5725), 1, - anon_sym_extends, - ACTIONS(5809), 1, - anon_sym_EQ, - STATE(3828), 1, - sym_comment, - ACTIONS(5813), 2, - anon_sym_RBRACE, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5816), 2, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6894), 1, + anon_sym_GT_GT, + ACTIONS(6898), 1, anon_sym_AMP, + ACTIONS(6900), 1, + anon_sym_CARET, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(5807), 11, + ACTIONS(6906), 1, + anon_sym_PERCENT, + ACTIONS(6908), 1, + anon_sym_STAR_STAR, + ACTIONS(6910), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3596), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6886), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 23, + ACTIONS(6916), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6912), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [125320] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 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(6894), 1, + anon_sym_GT_GT, + ACTIONS(6906), 1, anon_sym_PERCENT, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6910), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3597), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6888), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6904), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6914), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6912), 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(5923), 8, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [131645] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7265), 1, - anon_sym_RBRACE, - STATE(3829), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [131713] = 9, + [125415] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4716), 1, - anon_sym_EQ, - ACTIONS(6273), 1, + ACTIONS(6343), 1, anon_sym_LBRACK, - STATE(3830), 1, + STATE(3598), 1, sym_comment, - ACTIONS(5699), 2, + ACTIONS(5935), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(6276), 3, + ACTIONS(6346), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(6339), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -366482,11 +348041,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(6341), 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, @@ -366506,39 +348067,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [131775] = 8, + [125476] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6249), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - STATE(3831), 1, - sym_comment, - ACTIONS(5739), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(6252), 3, - anon_sym_GT, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(6890), 1, + anon_sym_AMP_AMP, + ACTIONS(6894), 1, + anon_sym_GT_GT, + ACTIONS(6898), 1, anon_sym_AMP, + ACTIONS(6900), 1, + anon_sym_CARET, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(6182), 10, + ACTIONS(6906), 1, + anon_sym_PERCENT, + ACTIONS(6908), 1, + anon_sym_STAR_STAR, + ACTIONS(6910), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3599), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6888), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6904), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6914), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6916), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6912), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [125579] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3600), 1, + sym_comment, + ACTIONS(2476), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6184), 24, + ACTIONS(2480), 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, @@ -366558,157 +348191,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [131835] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_STAR, - ACTIONS(5340), 1, - anon_sym_async, - ACTIONS(5342), 1, - anon_sym_readonly, - ACTIONS(7267), 1, - anon_sym_static, - STATE(3832), 1, - sym_comment, - STATE(3869), 1, - sym_override_modifier, - STATE(4747), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5344), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 24, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [131913] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7269), 1, - anon_sym_RBRACE, - STATE(3833), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [131981] = 9, + [125634] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4752), 1, - anon_sym_EQ, - ACTIONS(6273), 1, - anon_sym_LBRACK, - STATE(3834), 1, + STATE(3601), 1, sym_comment, - ACTIONS(5699), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(6276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 23, + ACTIONS(5694), 28, + 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_AMP_AMP, @@ -366728,90 +348241,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [132043] = 30, + [125689] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6035), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(7170), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6890), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, + ACTIONS(6892), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, + ACTIONS(6894), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(6898), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(6900), 1, anon_sym_CARET, - ACTIONS(7182), 1, + ACTIONS(6902), 1, anon_sym_PIPE, - ACTIONS(7186), 1, + ACTIONS(6906), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(6908), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(6910), 1, anon_sym_LT, - STATE(2750), 1, + ACTIONS(6918), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6920), 1, + sym__ternary_qmark, + ACTIONS(7156), 1, + anon_sym_RBRACK, + STATE(2607), 1, sym_type_arguments, - STATE(3835), 1, + STATE(3602), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(6886), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(6888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(6896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(6904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(6914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(6912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6033), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [132147] = 6, + [125802] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4710), 1, - anon_sym_EQ, - STATE(3836), 1, + STATE(3603), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(2350), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -366825,12 +348341,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 26, + ACTIONS(2354), 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_DOT, anon_sym_QMARK_DOT, @@ -366851,87 +348370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [132203] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(7271), 1, - anon_sym_static, - ACTIONS(7273), 1, - anon_sym_readonly, - ACTIONS(7275), 1, - anon_sym_abstract, - STATE(3837), 1, - sym_comment, - STATE(3982), 1, - sym_override_modifier, - STATE(5113), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 27, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [132277] = 11, + [125857] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(7190), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3838), 1, + STATE(3604), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6077), 12, + ACTIONS(2342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -366942,11 +348388,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(6079), 21, + ACTIONS(2346), 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, @@ -366965,80 +348418,73 @@ 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, - [132343] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [125912] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7277), 1, - anon_sym_RBRACE, - STATE(3839), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3605), 1, sym_comment, - STATE(5985), 1, - sym__property_name, - STATE(6821), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, + ACTIONS(6409), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6411), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [132411] = 9, + 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, + [125967] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, - anon_sym_EQ, - ACTIONS(5699), 1, - anon_sym_extends, - STATE(3840), 1, + STATE(3606), 1, sym_comment, - ACTIONS(6273), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(6276), 2, + ACTIONS(5768), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(5766), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, ACTIONS(4493), 11, anon_sym_STAR, anon_sym_BANG, @@ -367051,11 +348497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(4497), 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, @@ -367075,39 +348522,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [132473] = 8, + [126026] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6354), 1, - anon_sym_LBRACK, - STATE(3841), 1, + STATE(3607), 1, sym_comment, - ACTIONS(5563), 2, + ACTIONS(6423), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6425), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(6357), 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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [126081] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6906), 1, + anon_sym_PERCENT, + ACTIONS(6908), 1, + anon_sym_STAR_STAR, + ACTIONS(7134), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3608), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6886), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6904), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 8, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4493), 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5923), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [126164] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3609), 1, + sym_comment, + ACTIONS(6209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + 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), 24, + ACTIONS(6211), 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, @@ -367127,7 +348686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [132533] = 12, + [126219] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -367136,22 +348695,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7279), 1, - anon_sym_RBRACE, - STATE(3842), 1, + STATE(3610), 1, sym_comment, - STATE(6434), 1, + STATE(5393), 1, sym__property_name, - STATE(7656), 1, - sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2934), 30, anon_sym_export, anon_sym_type, @@ -367183,120 +348742,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [132601] = 33, + [126286] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(3611), 1, + sym_comment, + ACTIONS(6419), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6421), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5549), 1, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(7170), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(7182), 1, - anon_sym_PIPE, - ACTIONS(7186), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - ACTIONS(7198), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3843), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [126341] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3612), 1, + sym_comment, + ACTIONS(6442), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(6014), 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(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [132711] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [126396] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(7281), 1, - anon_sym_LT, - STATE(2750), 1, - sym_type_arguments, - STATE(3844), 1, + STATE(3613), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(6057), 11, + ACTIONS(2388), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -367305,10 +348860,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(6059), 14, + ACTIONS(2392), 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, @@ -367322,252 +348888,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [132791] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [126451] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7284), 1, - anon_sym_RBRACE, - STATE(3845), 1, - sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [132859] = 12, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(7286), 1, - anon_sym_RBRACE, - STATE(3846), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6926), 1, + anon_sym_AMP_AMP, + ACTIONS(6928), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6930), 1, + anon_sym_GT_GT, + ACTIONS(6934), 1, + anon_sym_AMP, + ACTIONS(6936), 1, + anon_sym_CARET, + ACTIONS(6938), 1, + anon_sym_PIPE, + ACTIONS(6942), 1, + anon_sym_PERCENT, + ACTIONS(6944), 1, + anon_sym_STAR_STAR, + ACTIONS(6946), 1, + anon_sym_LT, + ACTIONS(6954), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6956), 1, + sym__ternary_qmark, + ACTIONS(7158), 1, + anon_sym_COLON, + STATE(2607), 1, + sym_type_arguments, + STATE(3614), 1, sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [132927] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6922), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6924), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6932), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6940), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6950), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6952), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(6948), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126564] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - ACTIONS(7288), 1, - anon_sym_RBRACE, - STATE(3847), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3615), 1, sym_comment, - STATE(6434), 1, - sym__property_name, - STATE(7656), 1, - sym_enum_assignment, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [132995] = 33, + ACTIONS(7015), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2444), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2448), 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, + [126621] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, + ACTIONS(5644), 1, anon_sym_as, - ACTIONS(5635), 1, + ACTIONS(5648), 1, anon_sym_BANG, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, + ACTIONS(5688), 1, anon_sym_satisfies, - ACTIONS(7170), 1, + ACTIONS(7164), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, + ACTIONS(7166), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, + ACTIONS(7168), 1, anon_sym_GT_GT, - ACTIONS(7178), 1, + ACTIONS(7172), 1, anon_sym_AMP, - ACTIONS(7180), 1, + ACTIONS(7174), 1, anon_sym_CARET, - ACTIONS(7182), 1, + ACTIONS(7176), 1, anon_sym_PIPE, - ACTIONS(7186), 1, + ACTIONS(7180), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, + ACTIONS(7182), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, + ACTIONS(7184), 1, anon_sym_LT, - ACTIONS(7198), 1, + ACTIONS(7192), 1, anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, + ACTIONS(7194), 1, sym__ternary_qmark, - STATE(2750), 1, + STATE(2607), 1, sym_type_arguments, - STATE(3848), 1, + STATE(3616), 1, sym_comment, - STATE(6993), 1, + STATE(7018), 1, sym_optional_chain, - ACTIONS(5673), 2, + ACTIONS(5686), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7166), 2, + ACTIONS(7160), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(7168), 2, + ACTIONS(7162), 2, anon_sym_in, anon_sym_GT, - ACTIONS(7176), 2, + ACTIONS(7170), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(7184), 2, + ACTIONS(7178), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7194), 2, + ACTIONS(7188), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7196), 2, + ACTIONS(7190), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(7192), 3, + ACTIONS(7186), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [133105] = 12, + [126731] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -367576,20 +349108,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7290), 1, + ACTIONS(7196), 1, anon_sym_RBRACE, - STATE(3849), 1, + STATE(3617), 1, sym_comment, - STATE(6434), 1, + STATE(6296), 1, sym__property_name, - STATE(7656), 1, + STATE(7488), 1, sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -367623,7 +349155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [133173] = 12, + [126799] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -367632,20 +349164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7292), 1, + ACTIONS(7198), 1, anon_sym_RBRACE, - STATE(3850), 1, + STATE(3618), 1, sym_comment, - STATE(6434), 1, + STATE(6296), 1, sym__property_name, - STATE(7656), 1, + STATE(7488), 1, sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -367679,19 +349211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [133241] = 7, + [126867] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4529), 1, + ACTIONS(4696), 1, anon_sym_EQ, - STATE(3851), 1, + STATE(3619), 1, sym_comment, - ACTIONS(4859), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, ACTIONS(4493), 13, anon_sym_STAR, anon_sym_BANG, @@ -367706,9 +349234,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(4497), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -367730,29 +349260,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [133299] = 9, + anon_sym_implements, + [126923] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5561), 1, - anon_sym_QMARK, - ACTIONS(5563), 1, - anon_sym_extends, - STATE(3852), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3620), 1, sym_comment, - ACTIONS(6357), 2, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 7, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6354), 3, - anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5923), 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, + [127009] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4718), 1, + anon_sym_EQ, + ACTIONS(6413), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4493), 11, + STATE(3621), 1, + sym_comment, + ACTIONS(5742), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -367760,10 +349355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 22, + ACTIONS(4497), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -367783,82 +349379,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [133361] = 14, + [127071] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_import, - ACTIONS(15), 1, + ACTIONS(7200), 1, anon_sym_AT, - ACTIONS(17), 1, - anon_sym_pragma, - STATE(3853), 1, - sym_comment, - STATE(4261), 1, - aux_sym_program_repeat1, - STATE(4458), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4504), 1, - sym_ui_annotation, - STATE(6609), 1, - sym_ui_nested_identifier, - STATE(4487), 2, - sym_ui_pragma, - sym_ui_import, - STATE(8600), 2, - sym_ui_object_definition, - sym_ui_annotated_object, - ACTIONS(11), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [133433] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3854), 1, + STATE(3811), 1, + sym_decorator, + STATE(3622), 2, sym_comment, - ACTIONS(4331), 40, + aux_sym_export_statement_repeat1, + ACTIONS(4313), 37, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, - anon_sym_LPAREN, anon_sym_of, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_DQUOTE, anon_sym_SQUOTE, anon_sym_async, @@ -367866,7 +349407,6 @@ static const uint16_t ts_small_parse_table[] = { sym_number, sym_identifier, sym_private_property_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -367889,7 +349429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_abstract, - [133485] = 17, + [127127] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -367898,46 +349438,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(2941), 1, - anon_sym_readonly, - ACTIONS(2945), 1, - anon_sym_override, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - ACTIONS(7294), 1, - anon_sym_static, - STATE(3855), 1, + ACTIONS(7203), 1, + anon_sym_RBRACE, + STATE(3623), 1, sym_comment, - STATE(3870), 1, - sym_override_modifier, - STATE(5690), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 24, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -367950,114 +349485,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [133563] = 33, + [127195] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(6343), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(7170), 1, - anon_sym_AMP_AMP, - ACTIONS(7172), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_CARET, - ACTIONS(7182), 1, - anon_sym_PIPE, - ACTIONS(7186), 1, - anon_sym_PERCENT, - ACTIONS(7188), 1, - anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - ACTIONS(7198), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3856), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7166), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7196), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [133673] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3857), 1, + STATE(3624), 1, sym_comment, - ACTIONS(5685), 2, + ACTIONS(5935), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5679), 13, + ACTIONS(6346), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6339), 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(5681), 25, + ACTIONS(6341), 24, 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, @@ -368077,84 +349537,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [133729] = 33, + [127255] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(6991), 1, + anon_sym_COMMA, + STATE(3625), 1, + sym_comment, + ACTIONS(5692), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 26, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5547), 1, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5549), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(7170), 1, anon_sym_AMP_AMP, - ACTIONS(7172), 1, anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(7182), 1, - anon_sym_PIPE, - ACTIONS(7186), 1, anon_sym_PERCENT, - ACTIONS(7188), 1, anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - ACTIONS(7198), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3858), 1, - sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7166), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7196), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [133839] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [127311] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -368163,20 +349596,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7296), 1, + ACTIONS(7205), 1, anon_sym_RBRACE, - STATE(3859), 1, + STATE(3626), 1, sym_comment, - STATE(6095), 1, + STATE(6296), 1, sym__property_name, - STATE(7279), 1, + STATE(7488), 1, sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -368210,36 +349643,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [133907] = 14, + [127379] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7), 1, - sym_identifier, - ACTIONS(13), 1, - anon_sym_import, - ACTIONS(15), 1, - anon_sym_AT, - ACTIONS(17), 1, - anon_sym_pragma, - STATE(3860), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(7207), 1, + anon_sym_RBRACE, + STATE(3627), 1, sym_comment, - STATE(4261), 1, - aux_sym_program_repeat1, - STATE(4458), 1, - aux_sym_ui_annotated_object_repeat1, - STATE(4504), 1, - sym_ui_annotation, - STATE(6609), 1, - sym_ui_nested_identifier, - STATE(4487), 2, - sym_ui_pragma, - sym_ui_import, - STATE(8721), 2, - sym_ui_object_definition, - sym_ui_annotated_object, - ACTIONS(11), 28, + STATE(6296), 1, + sym__property_name, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -368247,6 +349676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -368268,84 +349699,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [133979] = 33, + [127447] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5547), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5635), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(7170), 1, - anon_sym_AMP_AMP, - ACTIONS(7172), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_CARET, - ACTIONS(7182), 1, - anon_sym_PIPE, - ACTIONS(7186), 1, - anon_sym_PERCENT, - ACTIONS(7188), 1, - anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - ACTIONS(7198), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, - sym__ternary_qmark, - STATE(2750), 1, - sym_type_arguments, - STATE(3861), 1, + ACTIONS(7209), 1, + anon_sym_RBRACE, + STATE(3628), 1, sym_comment, - STATE(6993), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7166), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7196), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2997), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [134089] = 12, + STATE(6296), 1, + sym__property_name, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [127515] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -368354,20 +349764,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7298), 1, + ACTIONS(7211), 1, anon_sym_RBRACE, - STATE(3862), 1, + STATE(3629), 1, sym_comment, - STATE(6193), 1, + STATE(6296), 1, sym__property_name, - STATE(7360), 1, + STATE(7488), 1, sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -368401,116 +349811,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [134157] = 33, + [127583] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5631), 1, - anon_sym_as, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(5675), 1, - anon_sym_satisfies, - ACTIONS(6087), 1, - anon_sym_BANG, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6095), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(7170), 1, - anon_sym_AMP_AMP, - ACTIONS(7172), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7174), 1, - anon_sym_GT_GT, - ACTIONS(7178), 1, - anon_sym_AMP, - ACTIONS(7180), 1, - anon_sym_CARET, - ACTIONS(7182), 1, - anon_sym_PIPE, - ACTIONS(7186), 1, - anon_sym_PERCENT, - ACTIONS(7188), 1, - anon_sym_STAR_STAR, - ACTIONS(7190), 1, - anon_sym_LT, - ACTIONS(7198), 1, - anon_sym_QMARK_QMARK, - ACTIONS(7200), 1, - sym__ternary_qmark, - STATE(3863), 1, + ACTIONS(7213), 1, + anon_sym_RBRACE, + STATE(3630), 1, sym_comment, - STATE(3911), 1, - sym_type_arguments, - STATE(7132), 1, - sym_optional_chain, - ACTIONS(5673), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7166), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(7168), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(7176), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(7184), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7194), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7196), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3722), 2, - sym_template_string, - sym_arguments, - ACTIONS(7192), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [134267] = 8, + STATE(6296), 1, + sym__property_name, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [127651] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6302), 1, + ACTIONS(4724), 1, anon_sym_EQ, - ACTIONS(6306), 1, - anon_sym_COLON, - STATE(3864), 1, + ACTIONS(6413), 1, + anon_sym_LBRACK, + STATE(3631), 1, sym_comment, - ACTIONS(6669), 2, + ACTIONS(5742), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(6300), 13, + anon_sym_extends, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(6304), 23, + ACTIONS(4497), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -368530,66 +349920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [134327] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(4455), 1, - anon_sym_override, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(7300), 1, - anon_sym_STAR, - ACTIONS(7302), 1, - anon_sym_readonly, - STATE(3865), 1, - sym_comment, - STATE(3901), 1, - sym_override_modifier, - STATE(4705), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(7304), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [134401] = 12, + [127713] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -368598,20 +349929,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7306), 1, + ACTIONS(7215), 1, anon_sym_RBRACE, - STATE(3866), 1, + STATE(3632), 1, sym_comment, - STATE(6434), 1, + STATE(6296), 1, sym__property_name, - STATE(7656), 1, + STATE(7488), 1, sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -368645,7 +349976,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [134469] = 12, + [127781] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3633), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [127891] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -368654,20 +350062,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7308), 1, + ACTIONS(7217), 1, anon_sym_RBRACE, - STATE(3867), 1, + STATE(3634), 1, sym_comment, - STATE(6434), 1, + STATE(6296), 1, sym__property_name, - STATE(7656), 1, + STATE(7488), 1, sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -368701,36 +350109,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [134537] = 6, + [127959] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7111), 1, - anon_sym_COMMA, - STATE(3868), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3635), 1, sym_comment, - ACTIONS(5679), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(7162), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [128069] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6285), 1, + anon_sym_LBRACK, + STATE(3636), 1, + sym_comment, + ACTIONS(5594), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6288), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4493), 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(5681), 25, + ACTIONS(4497), 24, 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, @@ -368750,46 +350238,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [134592] = 14, + [128129] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5352), 1, - anon_sym_STAR, - ACTIONS(5354), 1, - anon_sym_async, - ACTIONS(5356), 1, - anon_sym_readonly, - STATE(3869), 1, + STATE(3637), 1, sym_comment, - STATE(4754), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5358), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 26, + ACTIONS(4335), 40, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, + anon_sym_LPAREN, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -368807,7 +350285,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [134663] = 14, + anon_sym_abstract, + [128181] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -368816,82 +350295,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(6478), 1, - anon_sym_STAR, - ACTIONS(6480), 1, - anon_sym_async, - ACTIONS(6482), 1, - anon_sym_readonly, - STATE(3870), 1, + ACTIONS(7219), 1, + anon_sym_RBRACE, + STATE(3638), 1, sym_comment, - STATE(5557), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(6484), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [134734] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7310), 1, - anon_sym_LBRACE, - ACTIONS(7312), 1, - anon_sym_DOT, - STATE(3871), 1, - sym_comment, - STATE(4084), 1, - sym_statement_block, - ACTIONS(2297), 36, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -368913,8 +350342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [134791] = 14, + [128249] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -368923,37 +350351,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2939), 1, - anon_sym_async, - ACTIONS(2941), 1, - anon_sym_readonly, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5316), 1, - anon_sym_STAR, - STATE(3872), 1, + ACTIONS(7221), 1, + anon_sym_RBRACE, + STATE(3639), 1, sym_comment, - STATE(5690), 1, + STATE(5859), 1, sym__property_name, + STATE(6564), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(2943), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 26, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -368971,36 +350398,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [134862] = 6, + [128317] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3873), 1, + ACTIONS(4748), 1, + anon_sym_EQ, + ACTIONS(6413), 1, + anon_sym_LBRACK, + STATE(3640), 1, sym_comment, - ACTIONS(2456), 3, + ACTIONS(5742), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(7314), 13, + anon_sym_extends, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(7317), 23, + ACTIONS(4497), 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, @@ -369020,36 +350451,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [134917] = 6, + [128379] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3874), 1, + ACTIONS(6413), 1, + anon_sym_LBRACK, + STATE(3641), 1, sym_comment, - ACTIONS(2408), 3, + ACTIONS(5742), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(7320), 13, + anon_sym_extends, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(7323), 23, + ACTIONS(4497), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -369069,33 +350503,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [134972] = 5, + [128439] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3875), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(7223), 1, + anon_sym_RBRACE, + STATE(3642), 1, sym_comment, - ACTIONS(1247), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2586), 36, + STATE(5786), 1, + sym__property_name, + STATE(6851), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -369117,92 +350559,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [135025] = 6, + [128507] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3876), 1, - sym_comment, - ACTIONS(6296), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(7326), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7329), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 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, - [135080] = 14, + ACTIONS(7225), 1, + anon_sym_static, + ACTIONS(7227), 1, + anon_sym_readonly, + ACTIONS(7229), 1, + anon_sym_abstract, + STATE(3643), 1, + sym_comment, + STATE(3775), 1, + sym_override_modifier, + STATE(4826), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 27, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [128581] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5231), 1, + ACTIONS(7231), 1, anon_sym_STAR, - ACTIONS(5235), 1, - anon_sym_async, - ACTIONS(5237), 1, + ACTIONS(7233), 1, anon_sym_readonly, - STATE(3877), 1, + STATE(3644), 1, sym_comment, - STATE(4722), 1, + STATE(3721), 1, + sym_override_modifier, + STATE(4507), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5239), 2, + ACTIONS(7235), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 26, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -369210,7 +350665,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -369223,67 +350677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [135151] = 6, + [128655] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3878), 1, - sym_comment, - ACTIONS(6139), 3, + ACTIONS(6018), 1, + anon_sym_EQ, + ACTIONS(6333), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(7332), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7335), 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, - [135206] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3879), 1, + ACTIONS(6631), 1, + anon_sym_RBRACK, + STATE(3645), 1, sym_comment, - ACTIONS(6316), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(7338), 13, + ACTIONS(6016), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -369297,10 +350704,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7341), 23, + ACTIONS(6020), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -369321,114 +350729,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [135261] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [128715] = 14, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(3880), 1, - sym_comment, - ACTIONS(5685), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5679), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5681), 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, - [135316] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4667), 1, - anon_sym_EQ, - STATE(3881), 1, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_import, + ACTIONS(15), 1, + anon_sym_AT, + ACTIONS(17), 1, + anon_sym_pragma, + STATE(3646), 1, sym_comment, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 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, - [135371] = 5, + STATE(4149), 1, + aux_sym_program_repeat1, + STATE(4236), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4274), 1, + sym_ui_annotation, + STATE(6392), 1, + sym_ui_nested_identifier, + STATE(4263), 2, + sym_ui_pragma, + sym_ui_import, + STATE(8356), 2, + sym_ui_object_definition, + sym_ui_annotated_object, + ACTIONS(11), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [128787] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7344), 1, - sym__automatic_semicolon, - STATE(3882), 1, + ACTIONS(7237), 1, + anon_sym_catch, + ACTIONS(7239), 1, + anon_sym_finally, + STATE(3647), 1, sym_comment, - ACTIONS(2287), 38, + STATE(3808), 1, + sym_catch_clause, + STATE(4041), 1, + sym_finally_clause, + ACTIONS(3341), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -369439,8 +350813,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, - anon_sym_catch, - anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -369467,89 +350839,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [135424] = 8, + [128847] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6273), 1, - anon_sym_LBRACK, - STATE(3883), 1, + ACTIONS(6731), 1, + sym_regex_flags, + STATE(3648), 1, sym_comment, - ACTIONS(6276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5699), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4493), 11, + ACTIONS(6727), 17, anon_sym_STAR, + anon_sym_as, 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(4497), 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, - [135483] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6354), 1, - anon_sym_LBRACK, - STATE(3884), 1, - sym_comment, - ACTIONS(6357), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5563), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4493), 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(4497), 22, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(6729), 22, 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, @@ -369564,12 +350886,10 @@ 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, - [135542] = 12, + [128903] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -369578,24 +350898,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7346), 1, - anon_sym_STAR, - STATE(3885), 1, + ACTIONS(7241), 1, + anon_sym_RBRACE, + STATE(3649), 1, sym_comment, - STATE(5727), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(7348), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 28, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -369607,6 +350926,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, @@ -369624,84 +350945,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [135609] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(3886), 1, - sym_comment, - ACTIONS(2368), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(7350), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7353), 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, - [135664] = 8, + [128971] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7356), 1, - anon_sym_catch, - ACTIONS(7358), 1, - anon_sym_finally, - STATE(3887), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(7243), 1, + anon_sym_RBRACE, + STATE(3650), 1, sym_comment, - STATE(4026), 1, - sym_catch_clause, - STATE(4368), 1, - sym_finally_clause, - ACTIONS(3345), 35, + STATE(6296), 1, + sym__property_name, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -369723,47 +351001,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [135723] = 14, + [129039] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5328), 1, - anon_sym_STAR, - ACTIONS(5330), 1, - anon_sym_async, - ACTIONS(5332), 1, - anon_sym_readonly, - STATE(3888), 1, + ACTIONS(7245), 1, + anon_sym_RBRACE, + STATE(3651), 1, sym_comment, - STATE(4763), 1, + STATE(6296), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5334), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 26, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -369781,34 +351057,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [135794] = 7, + [129107] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7310), 1, - anon_sym_LBRACE, - ACTIONS(7360), 1, - anon_sym_DOT, - STATE(3889), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(7247), 1, + anon_sym_RBRACE, + STATE(3652), 1, sym_comment, - STATE(4084), 1, - sym_statement_block, - ACTIONS(2297), 36, + STATE(6296), 1, + sym__property_name, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -369830,47 +351113,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [135851] = 14, + [129175] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5428), 1, - anon_sym_STAR, - ACTIONS(5466), 1, - anon_sym_async, - ACTIONS(7362), 1, - anon_sym_readonly, - STATE(3890), 1, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_import, + ACTIONS(15), 1, + anon_sym_AT, + ACTIONS(17), 1, + anon_sym_pragma, + STATE(3653), 1, sym_comment, - STATE(4753), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5468), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 26, + STATE(4149), 1, + aux_sym_program_repeat1, + STATE(4236), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4274), 1, + sym_ui_annotation, + STATE(6392), 1, + sym_ui_nested_identifier, + STATE(4263), 2, + sym_ui_pragma, + sym_ui_import, + STATE(8468), 2, + sym_ui_object_definition, + sym_ui_annotated_object, + ACTIONS(11), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_new, - sym_identifier, + anon_sym_async, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -369888,22 +351171,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [135922] = 8, + [129247] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4685), 1, - anon_sym_RBRACK, - ACTIONS(4699), 1, - anon_sym_COMMA, - ACTIONS(4824), 1, - anon_sym_EQ, - STATE(3891), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7249), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3654), 1, sym_comment, - ACTIONS(4493), 13, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -369912,105 +351218,40 @@ 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(4497), 23, + ACTIONS(5923), 13, 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, - [135981] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5360), 1, - anon_sym_STAR, - ACTIONS(5362), 1, - anon_sym_async, - ACTIONS(7364), 1, - anon_sym_readonly, - STATE(3892), 1, - sym_comment, - STATE(4725), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5364), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [136052] = 8, + [129329] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5563), 1, + ACTIONS(5592), 1, + anon_sym_QMARK, + ACTIONS(5594), 1, anon_sym_extends, - STATE(3893), 1, + STATE(3655), 1, sym_comment, - ACTIONS(6354), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(6357), 2, + ACTIONS(6288), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(6285), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, ACTIONS(4493), 11, anon_sym_STAR, anon_sym_BANG, @@ -370023,10 +351264,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(4497), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -370047,100 +351287,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [136111] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [129391] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(5296), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3656), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, anon_sym_STAR, - ACTIONS(5298), 1, - anon_sym_async, - ACTIONS(7366), 1, - anon_sym_readonly, - STATE(3894), 1, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [129501] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7252), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3657), 1, sym_comment, - STATE(4704), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5300), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [136182] = 14, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5903), 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(5905), 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, + [129581] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(5400), 1, - anon_sym_STAR, - ACTIONS(5416), 1, - anon_sym_async, - ACTIONS(7368), 1, + ACTIONS(5606), 1, anon_sym_readonly, - STATE(3895), 1, + ACTIONS(7255), 1, + anon_sym_STAR, + STATE(3658), 1, sym_comment, - STATE(4745), 1, + STATE(3745), 1, + sym_override_modifier, + STATE(4496), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5418), 2, + ACTIONS(7257), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 26, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -370148,7 +351473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -370161,23 +351485,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [136253] = 8, + [129655] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6249), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - STATE(3896), 1, - sym_comment, - ACTIONS(6252), 2, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, anon_sym_PIPE, - ACTIONS(5739), 3, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3659), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [129765] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5840), 1, anon_sym_extends, - ACTIONS(6182), 11, + ACTIONS(6018), 1, + anon_sym_EQ, + STATE(3660), 1, + sym_comment, + ACTIONS(6022), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(6025), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6016), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -370189,9 +351591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6184), 22, + ACTIONS(6020), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -370212,157 +351615,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [136312] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5338), 1, - anon_sym_STAR, - ACTIONS(5340), 1, - anon_sym_async, - ACTIONS(5342), 1, - anon_sym_readonly, - STATE(3897), 1, - sym_comment, - STATE(4747), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5344), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [136383] = 6, + [129827] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3898), 1, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6092), 1, + anon_sym_LBRACK, + ACTIONS(6094), 1, + anon_sym_DOT, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(6130), 1, + anon_sym_BANG, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(3661), 1, sym_comment, - ACTIONS(2348), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(7370), 13, + STATE(3781), 1, + sym_type_arguments, + STATE(6831), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(7162), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(7188), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7373), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3601), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [129937] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, + ACTIONS(5540), 1, anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, anon_sym_AMP_AMP, + ACTIONS(7166), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, anon_sym_PERCENT, + ACTIONS(7182), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3662), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 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, - [136438] = 14, + [130047] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(6743), 1, - anon_sym_STAR, - ACTIONS(6747), 1, - anon_sym_async, - ACTIONS(7376), 1, + ACTIONS(5343), 1, + anon_sym_static, + ACTIONS(5345), 1, anon_sym_readonly, - STATE(3899), 1, + ACTIONS(5347), 1, + anon_sym_abstract, + STATE(3663), 1, sym_comment, - STATE(5610), 1, + STATE(3820), 1, + sym_override_modifier, + STATE(4936), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(6745), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 26, + ACTIONS(4433), 27, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + 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, @@ -370375,41 +351828,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [136509] = 5, + [130121] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7378), 1, - sym__automatic_semicolon, - STATE(3900), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5331), 1, + anon_sym_STAR, + ACTIONS(5333), 1, + anon_sym_async, + ACTIONS(5335), 1, + anon_sym_readonly, + ACTIONS(7259), 1, + anon_sym_static, + STATE(3664), 1, sym_comment, - ACTIONS(2332), 38, + STATE(3759), 1, + sym_override_modifier, + STATE(4561), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5337), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 24, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, - anon_sym_catch, - anon_sym_finally, - anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -370422,8 +351889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [136562] = 12, + [130199] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -370432,24 +351898,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7255), 1, - anon_sym_STAR, - STATE(3901), 1, + ACTIONS(7261), 1, + anon_sym_RBRACE, + STATE(3665), 1, sym_comment, - STATE(5552), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(7380), 2, - anon_sym_get, - anon_sym_set, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 28, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -370461,6 +351926,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, @@ -370478,28 +351945,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [136629] = 9, + [130267] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, + ACTIONS(4495), 1, anon_sym_EQ, - ACTIONS(6273), 1, - anon_sym_LBRACK, - STATE(3902), 1, - sym_comment, - ACTIONS(5699), 2, - anon_sym_COMMA, + ACTIONS(5742), 1, anon_sym_extends, - ACTIONS(6276), 3, - anon_sym_GT, + STATE(3666), 1, + sym_comment, + ACTIONS(6413), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(6416), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4493), 10, + ACTIONS(4493), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -370507,9 +351974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 22, + ACTIONS(4497), 23, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -370530,103 +351998,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [136690] = 14, + [130329] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5376), 1, - anon_sym_STAR, - ACTIONS(5378), 1, - anon_sym_async, - ACTIONS(7382), 1, - anon_sym_readonly, - STATE(3903), 1, + ACTIONS(7263), 1, + anon_sym_RBRACE, + STATE(3667), 1, sym_comment, - STATE(4737), 1, + STATE(6296), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5380), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 26, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [136761] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5420), 1, - anon_sym_STAR, - ACTIONS(5422), 1, - anon_sym_async, - ACTIONS(7384), 1, anon_sym_readonly, - STATE(3904), 1, - sym_comment, - STATE(4792), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5424), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_new, - sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -370644,7 +352054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [136832] = 11, + [130397] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -370653,18 +352063,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3905), 1, + ACTIONS(7265), 1, + anon_sym_RBRACE, + STATE(3668), 1, sym_comment, - STATE(6434), 1, + STATE(5783), 1, sym__property_name, - STATE(7656), 1, + STATE(6854), 1, sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -370698,37 +352110,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [136897] = 14, + [130465] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5320), 1, + ACTIONS(4457), 1, + anon_sym_override, + ACTIONS(5192), 1, anon_sym_STAR, - ACTIONS(5322), 1, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5204), 1, anon_sym_async, - ACTIONS(5324), 1, + ACTIONS(5206), 1, anon_sym_readonly, - STATE(3906), 1, + ACTIONS(7267), 1, + anon_sym_static, + STATE(3669), 1, sym_comment, - STATE(4715), 1, + STATE(3728), 1, + sym_override_modifier, + STATE(4588), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - ACTIONS(5326), 2, + ACTIONS(5208), 2, anon_sym_get, anon_sym_set, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 26, + ACTIONS(4433), 24, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -370737,12 +352155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, 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, @@ -370755,46 +352171,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [136968] = 14, + [130543] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5190), 1, - anon_sym_STAR, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5202), 1, - anon_sym_async, - ACTIONS(5204), 1, - anon_sym_readonly, - STATE(3907), 1, + ACTIONS(7269), 1, + anon_sym_RBRACE, + STATE(3670), 1, sym_comment, - STATE(4790), 1, + STATE(6296), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - ACTIONS(5206), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 26, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -370812,18 +352227,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [137039] = 6, + [130611] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(3908), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3671), 1, sym_comment, - ACTIONS(6379), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [130721] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6396), 1, + anon_sym_EQ, + ACTIONS(6400), 1, anon_sym_COLON, - ACTIONS(7386), 13, + STATE(3672), 1, + sym_comment, + ACTIONS(6575), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(6394), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -370837,7 +352332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7389), 23, + ACTIONS(6398), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -370861,126 +352356,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [137094] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5360), 1, - anon_sym_STAR, - ACTIONS(5362), 1, - anon_sym_async, - ACTIONS(7392), 1, - anon_sym_readonly, - STATE(3909), 1, - sym_comment, - STATE(4714), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5364), 2, - anon_sym_get, - anon_sym_set, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 26, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [137165] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7219), 1, - anon_sym_finally, - STATE(3910), 1, - sym_comment, - STATE(4191), 1, - sym_finally_clause, - ACTIONS(3424), 36, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [137219] = 8, + [130781] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(6131), 1, + ACTIONS(5582), 1, anon_sym_BQUOTE, - STATE(3911), 1, + ACTIONS(7184), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3673), 1, sym_comment, - STATE(3704), 2, + STATE(7018), 1, + sym_optional_chain, + STATE(2963), 2, sym_template_string, sym_arguments, - ACTIONS(5553), 13, + ACTIONS(6030), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -370991,10 +352387,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(5555), 21, + ACTIONS(6032), 21, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACK, @@ -371016,39 +352411,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [137277] = 4, + [130847] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3912), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(2945), 1, + anon_sym_override, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(5309), 1, + anon_sym_STAR, + ACTIONS(7271), 1, + anon_sym_static, + STATE(3674), 1, sym_comment, - ACTIONS(2410), 38, + STATE(3748), 1, + sym_override_modifier, + STATE(5461), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 24, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, - anon_sym_DOT, - anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -371061,22 +352472,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [137327] = 6, + [130925] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6680), 1, - sym_regex_flags, - STATE(3913), 1, + ACTIONS(4495), 1, + anon_sym_EQ, + STATE(3675), 1, sym_comment, - ACTIONS(6676), 17, + ACTIONS(5072), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4493), 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, @@ -371087,10 +352499,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(6678), 20, + ACTIONS(4497), 23, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -371107,114 +352518,12 @@ 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, - [137381] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3914), 1, - sym_comment, - STATE(5557), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [137443] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3915), 1, - sym_comment, - STATE(5609), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [137505] = 10, + anon_sym_satisfies, + [130983] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -371223,114 +352532,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3916), 1, - sym_comment, - STATE(5610), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [137567] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3917), 1, - sym_comment, - ACTIONS(2370), 38, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, + ACTIONS(7273), 1, anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_DOT, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [137617] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3918), 1, + STATE(3676), 1, sym_comment, - STATE(5716), 1, + STATE(5959), 1, sym__property_name, + STATE(6409), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -371364,7 +352579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [137679] = 10, + [131051] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -371373,16 +352588,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3919), 1, + ACTIONS(7275), 1, + anon_sym_RBRACE, + STATE(3677), 1, sym_comment, - STATE(5573), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -371416,264 +352635,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [137741] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [131119] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3920), 1, - sym_comment, - STATE(5727), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [137803] = 10, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - STATE(3921), 1, - sym_comment, - STATE(5103), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [137865] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7310), 1, - anon_sym_LBRACE, - STATE(3922), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3678), 1, sym_comment, - STATE(4084), 1, - sym_statement_block, - ACTIONS(2297), 36, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [137919] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [131229] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(7394), 1, - anon_sym_readonly, - STATE(3923), 1, - sym_comment, - STATE(5101), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [137983] = 10, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - STATE(3924), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3679), 1, sym_comment, - STATE(5131), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [138045] = 10, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [131339] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -371682,16 +352798,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3925), 1, + ACTIONS(7277), 1, + anon_sym_RBRACE, + STATE(3680), 1, sym_comment, - STATE(5712), 1, + STATE(6045), 1, sym__property_name, + STATE(7004), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -371725,7 +352845,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [138107] = 10, + [131407] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3681), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [131517] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7279), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3682), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5912), 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(5914), 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, + [131589] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5802), 1, + anon_sym_extends, + STATE(3683), 1, + sym_comment, + ACTIONS(6034), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(6037), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2298), 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(2304), 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, + [131651] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -371734,16 +353042,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3926), 1, + ACTIONS(7282), 1, + anon_sym_RBRACE, + STATE(3684), 1, sym_comment, - STATE(5717), 1, + STATE(5678), 1, sym__property_name, + STATE(7103), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -371777,75 +353089,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [138169] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [131719] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(5587), 1, - anon_sym_readonly, - STATE(3927), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3685), 1, sym_comment, - STATE(5131), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [138233] = 8, + ACTIONS(5698), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5692), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 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, + [131775] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4565), 1, - anon_sym_EQ, - ACTIONS(4762), 1, - anon_sym_in, - ACTIONS(4765), 1, - anon_sym_of, - STATE(3928), 1, + ACTIONS(6258), 1, + anon_sym_COMMA, + ACTIONS(6612), 1, + anon_sym_RBRACK, + STATE(3686), 1, sym_comment, - ACTIONS(4493), 12, + ACTIONS(2298), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -371856,10 +353166,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(2304), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -371880,7 +353191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [138291] = 10, + [131835] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -371889,16 +353200,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3929), 1, + ACTIONS(7284), 1, + anon_sym_RBRACE, + STATE(3687), 1, sym_comment, - STATE(5561), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -371932,53 +353247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [138353] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3930), 1, - sym_comment, - ACTIONS(4337), 38, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [138403] = 10, + [131903] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -371987,16 +353256,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3931), 1, + ACTIONS(7286), 1, + anon_sym_RBRACE, + STATE(3688), 1, sym_comment, - STATE(5693), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -372030,28 +353303,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [138465] = 10, + [131971] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3932), 1, + ACTIONS(7288), 1, + anon_sym_RBRACE, + STATE(3689), 1, sym_comment, - STATE(5040), 1, + STATE(6296), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 30, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -372082,30 +353359,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [138527] = 11, + [132039] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(5615), 1, - anon_sym_readonly, - STATE(3933), 1, + ACTIONS(7290), 1, + anon_sym_RBRACE, + STATE(3690), 1, sym_comment, - STATE(5040), 1, + STATE(6296), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 29, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -372116,6 +353395,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, @@ -372135,28 +353415,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [138591] = 10, + [132107] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3934), 1, + ACTIONS(7292), 1, + anon_sym_RBRACE, + STATE(3691), 1, sym_comment, - STATE(5050), 1, + STATE(6296), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 30, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -372187,30 +353471,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [138653] = 11, + [132175] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7396), 1, - anon_sym_readonly, - STATE(3935), 1, + ACTIONS(7294), 1, + anon_sym_RBRACE, + STATE(3692), 1, sym_comment, - STATE(5111), 1, + STATE(6296), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7488), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 29, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -372221,6 +353507,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, @@ -372240,53 +353527,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [138717] = 4, - ACTIONS(3), 1, + [132243] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + STATE(3693), 1, + sym_comment, + ACTIONS(5768), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(5766), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4493), 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(4497), 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, + [132301] = 33, ACTIONS(5), 1, sym_html_comment, - STATE(3936), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3694), 1, sym_comment, - ACTIONS(4341), 38, - anon_sym_export, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [132411] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [138767] = 10, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7249), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3695), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(5923), 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, + [132491] = 27, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3696), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [132589] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3697), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [132699] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -372295,16 +353874,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3937), 1, + ACTIONS(7296), 1, + anon_sym_RBRACE, + STATE(3698), 1, sym_comment, - STATE(5552), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -372338,53 +353921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [138829] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3938), 1, - sym_comment, - ACTIONS(2350), 38, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_catch, - anon_sym_finally, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [138879] = 10, + [132767] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -372393,16 +353930,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3939), 1, + ACTIONS(7298), 1, + anon_sym_RBRACE, + STATE(3699), 1, sym_comment, - STATE(5739), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -372436,28 +353977,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [138941] = 10, + [132835] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3940), 1, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(13), 1, + anon_sym_import, + ACTIONS(15), 1, + anon_sym_AT, + ACTIONS(17), 1, + anon_sym_pragma, + STATE(3646), 1, + aux_sym_program_repeat1, + STATE(3700), 1, sym_comment, - STATE(5703), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, + STATE(4236), 1, + aux_sym_ui_annotated_object_repeat1, + STATE(4274), 1, + sym_ui_annotation, + STATE(6392), 1, + sym_ui_nested_identifier, + STATE(4263), 2, + sym_ui_pragma, + sym_ui_import, + STATE(8468), 2, + sym_ui_object_definition, + sym_ui_annotated_object, + ACTIONS(11), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -372465,8 +354014,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_new, - sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -372488,28 +354035,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [139003] = 10, + [132907] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3701), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [133017] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3702), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5925), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [133113] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3703), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [133207] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7249), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3704), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(5923), 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, + [133289] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3705), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [133391] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3941), 1, + ACTIONS(7300), 1, + anon_sym_RBRACE, + STATE(3706), 1, sym_comment, - STATE(5032), 1, + STATE(5619), 1, sym__property_name, - ACTIONS(3792), 2, + STATE(7073), 1, + sym_enum_assignment, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 30, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -372540,54 +354443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [139065] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7398), 1, - sym__automatic_semicolon, - STATE(3942), 1, - sym_comment, - ACTIONS(2332), 37, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_finally, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [139117] = 10, + [133459] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -372596,16 +354452,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3943), 1, + ACTIONS(7302), 1, + anon_sym_RBRACE, + STATE(3707), 1, sym_comment, - STATE(5669), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -372639,54 +354499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [139179] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7400), 1, - sym__automatic_semicolon, - STATE(3944), 1, - sym_comment, - ACTIONS(2287), 37, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_finally, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [139231] = 10, + [133527] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -372695,16 +354508,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3945), 1, + ACTIONS(7304), 1, + anon_sym_RBRACE, + STATE(3708), 1, sym_comment, - STATE(5659), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -372738,53 +354555,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [139293] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [133595] = 15, ACTIONS(5), 1, sym_html_comment, - STATE(3946), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7306), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3709), 1, sym_comment, - ACTIONS(4343), 38, - anon_sym_export, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5896), 12, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, - sym_number, - sym_identifier, - sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_abstract, - [139343] = 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_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5898), 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, + [133669] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -372793,16 +354623,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3947), 1, + ACTIONS(7309), 1, + anon_sym_RBRACE, + STATE(3710), 1, sym_comment, - STATE(5655), 1, + STATE(5556), 1, sym__property_name, + STATE(7032), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -372836,60 +354670,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [139405] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [133737] = 33, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, anon_sym_LBRACK, - ACTIONS(7402), 1, - anon_sym_readonly, - STATE(3948), 1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3711), 1, sym_comment, - STATE(5076), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [139469] = 10, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [133847] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -372898,16 +354756,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3949), 1, + ACTIONS(7311), 1, + anon_sym_RBRACE, + STATE(3712), 1, sym_comment, - STATE(5654), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -372941,7 +354803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [139531] = 10, + [133915] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -372950,16 +354812,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3950), 1, + ACTIONS(7313), 1, + anon_sym_RBRACE, + STATE(3713), 1, sym_comment, - STATE(5651), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -372993,7 +354859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [139593] = 10, + [133983] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -373002,16 +354868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3951), 1, + ACTIONS(7315), 1, + anon_sym_RBRACE, + STATE(3714), 1, sym_comment, - STATE(5525), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -373045,54 +354915,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [139655] = 5, - ACTIONS(3), 1, + [134051] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3715), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [134155] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3716), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5925), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5923), 9, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [134245] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3430), 1, - sym__automatic_semicolon, - STATE(3952), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6396), 1, + anon_sym_EQ, + ACTIONS(6400), 1, + anon_sym_COMMA, + ACTIONS(6575), 1, + anon_sym_RBRACK, + STATE(3717), 1, sym_comment, - ACTIONS(3428), 37, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_SEMI, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [139707] = 10, + ACTIONS(6394), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6398), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [134305] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5925), 1, + anon_sym_BANG, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3718), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5923), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [134405] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7249), 1, + anon_sym_LT, + STATE(2607), 1, + sym_type_arguments, + STATE(3719), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(5925), 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(5923), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_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, + [134481] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5538), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5644), 1, + anon_sym_as, + ACTIONS(5648), 1, + anon_sym_BANG, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_satisfies, + ACTIONS(7164), 1, + anon_sym_AMP_AMP, + ACTIONS(7166), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7168), 1, + anon_sym_GT_GT, + ACTIONS(7172), 1, + anon_sym_AMP, + ACTIONS(7174), 1, + anon_sym_CARET, + ACTIONS(7176), 1, + anon_sym_PIPE, + ACTIONS(7180), 1, + anon_sym_PERCENT, + ACTIONS(7182), 1, + anon_sym_STAR_STAR, + ACTIONS(7184), 1, + anon_sym_LT, + ACTIONS(7192), 1, + anon_sym_QMARK_QMARK, + ACTIONS(7194), 1, + sym__ternary_qmark, + STATE(2607), 1, + sym_type_arguments, + STATE(3720), 1, + sym_comment, + STATE(7018), 1, + sym_optional_chain, + ACTIONS(5686), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7160), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(7162), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(7170), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(7178), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7188), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7190), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2963), 2, + sym_template_string, + sym_arguments, + ACTIONS(7186), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [134591] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -373101,19 +355326,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3953), 1, + ACTIONS(7255), 1, + anon_sym_STAR, + STATE(3721), 1, sym_comment, - STATE(5680), 1, + STATE(5323), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(7317), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, + ACTIONS(2934), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -373125,54 +355355,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, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [139769] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7404), 1, - sym__automatic_semicolon, - STATE(3954), 1, - sym_comment, - ACTIONS(2287), 37, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_of, - anon_sym_catch, - anon_sym_finally, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -373190,42 +355372,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [139821] = 10, + [134658] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(3955), 1, + ACTIONS(5381), 1, + anon_sym_STAR, + ACTIONS(5423), 1, + anon_sym_async, + ACTIONS(7319), 1, + anon_sym_readonly, + STATE(3722), 1, sym_comment, - STATE(5688), 1, + STATE(4521), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5425), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -373243,34 +355429,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [139883] = 4, + [134729] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6343), 1, + anon_sym_LBRACK, + STATE(3723), 1, + sym_comment, + ACTIONS(6346), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5935), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6339), 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(6341), 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, + [134788] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6413), 1, + anon_sym_LBRACK, + STATE(3724), 1, + sym_comment, + ACTIONS(6416), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5742), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4493), 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(4497), 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, + [134847] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4663), 1, + anon_sym_EQ, + ACTIONS(6413), 1, + anon_sym_LBRACK, + STATE(3725), 1, + sym_comment, + ACTIONS(5742), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(6416), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 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(4497), 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, + [134908] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3726), 1, + sym_comment, + ACTIONS(2402), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7321), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7324), 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, + [134963] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3727), 1, + sym_comment, + ACTIONS(6316), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7327), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7330), 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, + [135018] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3956), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5369), 1, + anon_sym_STAR, + ACTIONS(5371), 1, + anon_sym_async, + ACTIONS(5373), 1, + anon_sym_readonly, + STATE(3728), 1, sym_comment, - ACTIONS(4339), 38, + STATE(4536), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5375), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 26, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -373288,42 +355738,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [139933] = 10, + [135089] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(3957), 1, + ACTIONS(5461), 1, + anon_sym_STAR, + ACTIONS(5463), 1, + anon_sym_async, + ACTIONS(7333), 1, + anon_sym_readonly, + STATE(3729), 1, sym_comment, - STATE(5533), 1, + STATE(4535), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5465), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -373341,16 +355795,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [139995] = 5, + [135160] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4692), 1, + anon_sym_EQ, + STATE(3730), 1, + sym_comment, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [135215] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7406), 1, + ACTIONS(7335), 1, sym__automatic_semicolon, - STATE(3958), 1, + STATE(3731), 1, sym_comment, - ACTIONS(2332), 37, + ACTIONS(2296), 38, anon_sym_export, anon_sym_default, anon_sym_type, @@ -373359,6 +355862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_catch, anon_sym_finally, @@ -373388,7 +355892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [140047] = 10, + [135268] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -373397,32 +355901,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(2939), 1, + anon_sym_async, + ACTIONS(2941), 1, + anon_sym_readonly, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3959), 1, + ACTIONS(5309), 1, + anon_sym_STAR, + STATE(3732), 1, sym_comment, - STATE(5690), 1, + STATE(5461), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(2943), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, + ACTIONS(2934), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -373440,7 +355949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [140109] = 10, + [135339] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -373449,16 +355958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3960), 1, + STATE(3733), 1, sym_comment, - STATE(5718), 1, + STATE(6296), 1, sym__property_name, + STATE(7488), 1, + sym_enum_assignment, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, ACTIONS(2934), 30, @@ -373492,7 +356003,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [140171] = 10, + [135404] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3734), 1, + sym_comment, + ACTIONS(6266), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7337), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7340), 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, + [135459] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -373501,32 +356061,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3961), 1, + ACTIONS(6817), 1, + anon_sym_STAR, + ACTIONS(6819), 1, + anon_sym_async, + ACTIONS(7343), 1, + anon_sym_readonly, + STATE(3735), 1, sym_comment, - STATE(5546), 1, + STATE(5341), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(6821), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, + ACTIONS(2934), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -373544,20 +356109,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [140233] = 7, + [135530] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7408), 1, - anon_sym_LBRACE, - ACTIONS(7410), 1, - anon_sym_DOT, - STATE(3962), 1, + ACTIONS(7345), 1, + anon_sym_catch, + ACTIONS(7347), 1, + anon_sym_finally, + STATE(3736), 1, sym_comment, - STATE(4294), 1, - sym_statement_block, - ACTIONS(2297), 35, + STATE(3871), 1, + sym_catch_clause, + STATE(4164), 1, + sym_finally_clause, + ACTIONS(3341), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -373593,18 +356160,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [140289] = 6, + [135589] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7412), 1, - anon_sym_SEMI, - ACTIONS(7414), 1, - sym__automatic_semicolon, - STATE(3963), 1, + ACTIONS(7349), 1, + anon_sym_LBRACE, + ACTIONS(7351), 1, + anon_sym_DOT, + STATE(3737), 1, sym_comment, - ACTIONS(3454), 36, + STATE(4049), 1, + sym_statement_block, + ACTIONS(2288), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -373641,14 +356210,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [140343] = 4, + [135646] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6991), 1, + anon_sym_COMMA, + STATE(3738), 1, + sym_comment, + ACTIONS(5692), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5694), 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, + [135701] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3739), 1, + sym_comment, + ACTIONS(6202), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7353), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7356), 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, + [135756] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3964), 1, + ACTIONS(7349), 1, + anon_sym_LBRACE, + ACTIONS(7359), 1, + anon_sym_DOT, + STATE(3740), 1, sym_comment, - ACTIONS(2332), 38, + STATE(4049), 1, + sym_statement_block, + ACTIONS(2288), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -373659,8 +356332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, - anon_sym_catch, - anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -373687,41 +356358,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [140393] = 10, + [135813] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(3965), 1, + ACTIONS(5301), 1, + anon_sym_STAR, + ACTIONS(5303), 1, + anon_sym_async, + ACTIONS(5327), 1, + anon_sym_readonly, + STATE(3741), 1, sym_comment, - STATE(5733), 1, + STATE(4491), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5305), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -373739,42 +356415,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [140455] = 11, + [135884] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(7416), 1, + ACTIONS(5311), 1, + anon_sym_STAR, + ACTIONS(5313), 1, + anon_sym_async, + ACTIONS(7361), 1, anon_sym_readonly, - STATE(3966), 1, + STATE(3742), 1, sym_comment, - STATE(5084), 1, + STATE(4499), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + ACTIONS(5315), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 29, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -373792,41 +356472,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [140519] = 10, + [135955] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(3967), 1, + ACTIONS(5233), 1, + anon_sym_STAR, + ACTIONS(5237), 1, + anon_sym_async, + ACTIONS(5239), 1, + anon_sym_readonly, + STATE(3743), 1, sym_comment, - STATE(5720), 1, + STATE(4509), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5241), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [136026] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5413), 1, + anon_sym_STAR, + ACTIONS(5417), 1, + anon_sym_async, + ACTIONS(7363), 1, anon_sym_readonly, + STATE(3744), 1, + sym_comment, + STATE(4484), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5419), 2, anon_sym_get, anon_sym_set, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -373844,37 +356586,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [140581] = 7, + [136097] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7408), 1, - anon_sym_LBRACE, - ACTIONS(7418), 1, - anon_sym_DOT, - STATE(3968), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + ACTIONS(7365), 1, + anon_sym_STAR, + STATE(3745), 1, sym_comment, - STATE(4294), 1, - sym_statement_block, - ACTIONS(2297), 35, + STATE(5329), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(7367), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 28, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -373892,43 +356641,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [140637] = 11, + [136164] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4669), 1, + anon_sym_RBRACK, + ACTIONS(4685), 1, + anon_sym_COMMA, + ACTIONS(4912), 1, + anon_sym_EQ, + STATE(3746), 1, + sym_comment, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [136223] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(7420), 1, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, + anon_sym_async, + ACTIONS(7369), 1, anon_sym_readonly, - STATE(3969), 1, + STATE(3747), 1, sym_comment, - STATE(5130), 1, + STATE(4518), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + ACTIONS(5365), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 29, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -373946,7 +356749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [140701] = 10, + [136294] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -373955,28 +356758,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3970), 1, + ACTIONS(6551), 1, + anon_sym_STAR, + ACTIONS(6553), 1, + anon_sym_async, + ACTIONS(6555), 1, + anon_sym_readonly, + STATE(3748), 1, sym_comment, - STATE(5700), 1, + STATE(5432), 1, sym__property_name, ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(6557), 2, + anon_sym_get, + anon_sym_set, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, + ACTIONS(2934), 26, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + 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, + anon_sym_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [136365] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3749), 1, + sym_comment, + ACTIONS(1241), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2596), 36, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -373998,22 +356854,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [140763] = 8, + [136418] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(6338), 1, - anon_sym_of, - ACTIONS(6843), 1, - anon_sym_in, - STATE(3971), 1, + STATE(3750), 1, sym_comment, - ACTIONS(5807), 12, + ACTIONS(2364), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7371), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -374024,7 +356879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5811), 23, + ACTIONS(7374), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -374048,22 +356903,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [140821] = 8, + [136473] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2291), 1, - anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6322), 1, - anon_sym_of, - ACTIONS(7146), 1, - anon_sym_in, - STATE(3972), 1, + STATE(3751), 1, sym_comment, - ACTIONS(2289), 12, + ACTIONS(2382), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7377), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -374074,7 +356928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2295), 23, + ACTIONS(7380), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -374098,75 +356952,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [140879] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [136528] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(7422), 1, - anon_sym_readonly, - STATE(3973), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3752), 1, sym_comment, - STATE(5173), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [140943] = 8, + ACTIONS(6248), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7383), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7386), 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, + [136583] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6302), 1, - anon_sym_EQ, - ACTIONS(6306), 1, - anon_sym_of, - ACTIONS(7121), 1, + ACTIONS(5594), 1, + anon_sym_extends, + STATE(3753), 1, + sym_comment, + ACTIONS(6285), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(6288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4493), 11, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - STATE(3974), 1, + 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(4497), 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, + [136642] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(3754), 1, sym_comment, - ACTIONS(6300), 12, + ACTIONS(2480), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(7389), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -374177,7 +357077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6304), 23, + ACTIONS(7392), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -374201,16 +357101,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [141001] = 6, + [136697] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4716), 1, - anon_sym_EQ, - STATE(3975), 1, + STATE(3755), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(5698), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5692), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -374224,12 +357125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 24, + ACTIONS(5694), 24, 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_AMP_AMP, @@ -374249,140 +357150,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [141055] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3466), 1, - sym__automatic_semicolon, - STATE(3976), 1, - sym_comment, - ACTIONS(3464), 37, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_SEMI, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [141107] = 10, + [136752] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(3977), 1, - sym_comment, - STATE(5626), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, + ACTIONS(5361), 1, + anon_sym_STAR, + ACTIONS(5363), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(7395), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [141169] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3978), 1, + STATE(3756), 1, sym_comment, - STATE(5571), 1, + STATE(4485), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + ACTIONS(5365), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -374400,42 +357207,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [141231] = 11, + [136823] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(7424), 1, + ACTIONS(5331), 1, + anon_sym_STAR, + ACTIONS(5333), 1, + anon_sym_async, + ACTIONS(5335), 1, anon_sym_readonly, - STATE(3979), 1, + STATE(3757), 1, sym_comment, - STATE(4975), 1, + STATE(4561), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + ACTIONS(5337), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 29, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -374453,94 +357264,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [141295] = 11, + [136894] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(7426), 1, + ACTIONS(5389), 1, + anon_sym_STAR, + ACTIONS(5443), 1, + anon_sym_async, + ACTIONS(7397), 1, anon_sym_readonly, - STATE(3980), 1, + STATE(3758), 1, sym_comment, - STATE(5157), 1, + STATE(4538), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(5445), 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [141359] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - STATE(3981), 1, - sym_comment, - STATE(5037), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 30, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -374558,42 +357321,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [141421] = 11, + [136965] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(7428), 1, + ACTIONS(5319), 1, + anon_sym_STAR, + ACTIONS(5321), 1, + anon_sym_async, + ACTIONS(5323), 1, anon_sym_readonly, - STATE(3982), 1, + STATE(3759), 1, sym_comment, - STATE(5152), 1, + STATE(4554), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + ACTIONS(5325), 2, + anon_sym_get, + anon_sym_set, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 29, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - 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, @@ -374611,94 +357378,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [141485] = 11, + [137036] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5192), 1, + anon_sym_STAR, + ACTIONS(5202), 1, anon_sym_LBRACK, - ACTIONS(7430), 1, + ACTIONS(5204), 1, + anon_sym_async, + ACTIONS(5206), 1, anon_sym_readonly, - STATE(3983), 1, + STATE(3760), 1, sym_comment, - STATE(5091), 1, + STATE(4588), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 29, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, + ACTIONS(5208), 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, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [141549] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - STATE(3984), 1, - sym_comment, - STATE(5047), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 30, + ACTIONS(4433), 26, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -374716,40 +357435,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [141611] = 11, + [137107] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(5200), 1, - anon_sym_LBRACK, - ACTIONS(7432), 1, - anon_sym_readonly, - STATE(3985), 1, + ACTIONS(7399), 1, + sym__automatic_semicolon, + STATE(3761), 1, sym_comment, - STATE(5043), 1, - sym__property_name, - ACTIONS(3792), 2, - sym_number, - sym_private_property_identifier, - STATE(4879), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4431), 29, + ACTIONS(2370), 38, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, + anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, + anon_sym_catch, + anon_sym_finally, anon_sym_async, - anon_sym_new, + anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -374769,35 +357482,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [141675] = 6, + anon_sym_enum, + [137160] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4752), 1, - anon_sym_EQ, - STATE(3986), 1, + ACTIONS(6285), 1, + anon_sym_LBRACK, + STATE(3762), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(6288), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5594), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4493), 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), 24, + ACTIONS(4497), 22, 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, @@ -374809,88 +357526,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [141729] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(5227), 1, - anon_sym_LBRACK, - STATE(3987), 1, - sym_comment, - STATE(5637), 1, - sym__property_name, - ACTIONS(2930), 2, - sym_number, - sym_private_property_identifier, - STATE(5255), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [141791] = 10, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [137219] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - STATE(3988), 1, + STATE(3763), 1, sym_comment, - STATE(4992), 1, + STATE(5318), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 30, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -374921,30 +357586,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [141853] = 11, + [137281] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5229), 1, anon_sym_LBRACK, - ACTIONS(7434), 1, - anon_sym_readonly, - STATE(3989), 1, + STATE(3764), 1, sym_comment, - STATE(4992), 1, + STATE(5413), 1, sym__property_name, - ACTIONS(3792), 2, + ACTIONS(2930), 2, sym_number, sym_private_property_identifier, - STATE(4879), 2, + STATE(5270), 2, sym_string, sym_computed_property_name, - ACTIONS(4431), 29, + ACTIONS(2934), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -374955,6 +357618,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, @@ -374974,132 +357638,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [141917] = 10, + [137343] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(3990), 1, + ACTIONS(7401), 1, + anon_sym_readonly, + STATE(3765), 1, sym_comment, - STATE(5643), 1, + STATE(4881), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [141979] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4737), 1, - anon_sym_EQ, - STATE(3991), 1, - sym_comment, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 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, - [142033] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3992), 1, - sym_comment, - ACTIONS(4345), 38, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -375119,29 +357691,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [142083] = 10, + [137407] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(5227), 1, + ACTIONS(5202), 1, anon_sym_LBRACK, - STATE(3993), 1, + STATE(3766), 1, sym_comment, - STATE(5644), 1, + STATE(4881), 1, sym__property_name, - ACTIONS(2930), 2, + ACTIONS(3786), 2, sym_number, sym_private_property_identifier, - STATE(5255), 2, + STATE(4711), 2, sym_string, sym_computed_property_name, - ACTIONS(2934), 30, + ACTIONS(4433), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -375172,32 +357743,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [142145] = 4, + [137469] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3994), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7403), 1, + anon_sym_readonly, + STATE(3767), 1, sym_comment, - ACTIONS(4325), 38, + STATE(4832), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_from, anon_sym_let, anon_sym_of, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -375217,27 +357796,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_abstract, - [142195] = 5, + [137533] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7436), 1, - sym__automatic_semicolon, - STATE(3995), 1, + STATE(3768), 1, sym_comment, - ACTIONS(2332), 36, + ACTIONS(2466), 38, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_from, anon_sym_var, anon_sym_let, anon_sym_else, anon_sym_of, + anon_sym_DOT, anon_sym_async, anon_sym_function, sym_identifier, @@ -375264,16 +357842,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [142246] = 5, + [137583] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3906), 1, + ACTIONS(7405), 1, sym__automatic_semicolon, - STATE(3996), 1, + STATE(3769), 1, sym_comment, - ACTIONS(2354), 36, + ACTIONS(2370), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -375282,8 +357860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_catch, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -375310,77 +357889,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [142297] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5186), 1, - anon_sym_EQ, - STATE(3997), 1, - sym_comment, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 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, - [142350] = 5, + [137635] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3466), 1, - sym__automatic_semicolon, - STATE(3998), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3770), 1, sym_comment, - ACTIONS(3464), 36, + STATE(5467), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, - anon_sym_SEMI, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -375402,33 +357941,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [142401] = 5, + [137697] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7438), 1, - sym__automatic_semicolon, - STATE(3999), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7407), 1, + anon_sym_readonly, + STATE(3771), 1, sym_comment, - ACTIONS(2332), 36, + STATE(4892), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, - anon_sym_finally, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -375448,77 +357994,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [142452] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5188), 1, - anon_sym_EQ, - STATE(4000), 1, - sym_comment, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 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, - [142505] = 5, + [137761] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3430), 1, - sym__automatic_semicolon, - STATE(4001), 1, + STATE(3772), 1, sym_comment, - ACTIONS(3428), 36, + ACTIONS(4347), 38, anon_sym_export, - anon_sym_default, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, - anon_sym_function, + anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_AT, anon_sym_static, anon_sym_readonly, @@ -375541,32 +358039,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [142556] = 6, + anon_sym_abstract, + [137811] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7440), 1, - anon_sym_else, - STATE(4002), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + STATE(3773), 1, sym_comment, - STATE(4208), 1, - sym_else_clause, - ACTIONS(3444), 35, + STATE(4893), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -375588,32 +358092,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [142609] = 4, + [137873] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4003), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7409), 1, + anon_sym_readonly, + STATE(3774), 1, sym_comment, - ACTIONS(2410), 37, + STATE(4901), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, - anon_sym_DOT, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -375633,79 +358145,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [142658] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5132), 1, - anon_sym_EQ, - STATE(4004), 1, - sym_comment, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 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, - [142711] = 4, + [137937] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4005), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7411), 1, + anon_sym_readonly, + STATE(3775), 1, sym_comment, - ACTIONS(3474), 37, + STATE(4902), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, - anon_sym_finally, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -375725,30 +358198,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [142760] = 4, + [138001] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4006), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + STATE(3776), 1, sym_comment, - ACTIONS(2370), 37, + STATE(4855), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, - anon_sym_DOT, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -375770,31 +358250,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [142809] = 5, + [138063] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3836), 1, - sym__automatic_semicolon, - STATE(4007), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + STATE(3777), 1, sym_comment, - ACTIONS(2374), 36, + STATE(4908), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -375816,33 +358302,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [142860] = 5, + [138125] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2444), 1, - sym__automatic_semicolon, - STATE(4008), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7413), 1, + anon_sym_readonly, + STATE(3778), 1, sym_comment, - ACTIONS(2442), 36, + STATE(4912), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -375862,33 +358355,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [142911] = 5, + [138189] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2352), 1, - sym__automatic_semicolon, - STATE(4009), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7415), 1, + anon_sym_readonly, + STATE(3779), 1, sym_comment, - ACTIONS(2350), 36, + STATE(4913), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -375908,31 +358408,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [142962] = 5, + [138253] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2336), 1, - sym__automatic_semicolon, - STATE(4010), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3780), 1, sym_comment, - ACTIONS(2332), 36, + STATE(5393), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -375954,17 +358460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143013] = 6, + [138315] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5134), 1, - anon_sym_EQ, - STATE(4011), 1, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + STATE(3781), 1, sym_comment, - ACTIONS(4493), 13, + STATE(3375), 2, + sym_template_string, + sym_arguments, + ACTIONS(5578), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -375978,10 +358488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(5580), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -376000,32 +358509,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, - [143066] = 5, + [138373] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2330), 1, - sym__automatic_semicolon, - STATE(4012), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3782), 1, sym_comment, - ACTIONS(2328), 36, + STATE(5398), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -376047,15 +358562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143117] = 4, + [138435] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4013), 1, + STATE(3783), 1, sym_comment, - ACTIONS(2474), 37, + ACTIONS(2470), 38, anon_sym_export, anon_sym_default, anon_sym_type, @@ -376067,6 +358581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, + anon_sym_DOT, anon_sym_async, anon_sym_function, sym_identifier, @@ -376093,29 +358608,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [143166] = 4, + [138485] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4014), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3784), 1, sym_comment, - ACTIONS(2438), 37, + STATE(5461), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -376137,31 +358660,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143215] = 6, + [138547] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7408), 1, - anon_sym_LBRACE, - STATE(4015), 1, + STATE(3785), 1, sym_comment, - STATE(4294), 1, - sym_statement_block, - ACTIONS(2297), 35, + ACTIONS(4307), 38, anon_sym_export, - anon_sym_default, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, - anon_sym_function, + anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_AT, anon_sym_static, anon_sym_readonly, @@ -376184,61 +358705,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143268] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_abstract, + [138597] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3920), 1, - sym__automatic_semicolon, - STATE(4016), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4748), 1, + anon_sym_EQ, + STATE(3786), 1, sym_comment, - ACTIONS(2382), 36, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [143319] = 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [138651] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4017), 1, + STATE(3787), 1, sym_comment, - ACTIONS(2350), 37, + ACTIONS(2370), 38, anon_sym_export, anon_sym_default, anon_sym_type, @@ -376247,6 +358770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_catch, anon_sym_finally, @@ -376276,14 +358800,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [143368] = 4, + [138701] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4018), 1, + STATE(3788), 1, sym_comment, - ACTIONS(2332), 37, + ACTIONS(2458), 38, anon_sym_export, anon_sym_default, anon_sym_type, @@ -376292,6 +358816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_catch, anon_sym_finally, @@ -376321,30 +358846,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [143417] = 5, + [138751] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4663), 1, + anon_sym_EQ, + ACTIONS(4775), 1, + anon_sym_in, + ACTIONS(4778), 1, + anon_sym_of, + STATE(3789), 1, + sym_comment, + ACTIONS(4493), 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(4497), 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, + [138809] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3928), 1, - sym__automatic_semicolon, - STATE(4019), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3790), 1, sym_comment, - ACTIONS(2458), 36, + STATE(5360), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -376366,31 +358948,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143468] = 5, + [138871] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7442), 1, - sym__automatic_semicolon, - STATE(4020), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3791), 1, sym_comment, - ACTIONS(2287), 36, + STATE(5430), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -376412,20 +359000,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143519] = 6, + [138933] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5168), 1, - anon_sym_EQ, - STATE(4021), 1, + ACTIONS(6731), 1, + sym_regex_flags, + STATE(3792), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(6727), 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, @@ -376436,9 +359025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6729), 20, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -376455,33 +359045,32 @@ 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, - [143572] = 4, + [138987] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4022), 1, + STATE(3793), 1, sym_comment, - ACTIONS(2350), 37, + ACTIONS(4339), 38, anon_sym_export, - anon_sym_default, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, - anon_sym_finally, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, - anon_sym_function, + anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_AT, anon_sym_static, anon_sym_readonly, @@ -376504,30 +359093,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143621] = 4, + anon_sym_abstract, + [139037] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4023), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3794), 1, sym_comment, - ACTIONS(2332), 37, + STATE(5432), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, - anon_sym_finally, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -376549,15 +359146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143670] = 6, + [139099] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5166), 1, + ACTIONS(4718), 1, anon_sym_EQ, - STATE(4024), 1, + STATE(3795), 1, sym_comment, ACTIONS(4493), 13, anon_sym_STAR, @@ -376573,11 +359169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(4497), 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, @@ -376597,32 +359194,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [143723] = 5, + [139153] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3796), 1, + sym_comment, + ACTIONS(4341), 38, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_new, + sym_number, + sym_identifier, + sym_private_property_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_abstract, + [139203] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3797), 1, + sym_comment, + STATE(5437), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [139265] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3798), 1, + sym_comment, + STATE(5356), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [139327] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3946), 1, - sym__automatic_semicolon, - STATE(4025), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7417), 1, + anon_sym_readonly, + STATE(3799), 1, sym_comment, - ACTIONS(2416), 36, + STATE(4827), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -376642,32 +359397,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143774] = 6, + [139391] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7358), 1, - anon_sym_finally, - STATE(4026), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3800), 1, sym_comment, - STATE(4432), 1, - sym_finally_clause, - ACTIONS(3424), 35, + STATE(5347), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -376689,66 +359449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143827] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5182), 1, - anon_sym_EQ, - STATE(4027), 1, - sym_comment, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 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, - [143880] = 6, + [139453] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7444), 1, - anon_sym_else, - STATE(4028), 1, + ACTIONS(7419), 1, + sym__automatic_semicolon, + STATE(3801), 1, sym_comment, - STATE(4447), 1, - sym_else_clause, - ACTIONS(3444), 35, + ACTIONS(2296), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -376758,6 +359468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_let, anon_sym_of, + anon_sym_catch, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -376784,32 +359496,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [143933] = 5, + [139505] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3752), 1, - sym__automatic_semicolon, - STATE(4029), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7421), 1, + anon_sym_readonly, + STATE(3802), 1, sym_comment, - ACTIONS(2287), 36, + STATE(4825), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -376829,17 +359549,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [143984] = 5, + [139569] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3930), 1, + ACTIONS(3456), 1, sym__automatic_semicolon, - STATE(4030), 1, + STATE(3803), 1, sym_comment, - ACTIONS(2478), 36, + ACTIONS(3454), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -376850,6 +359569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, + anon_sym_SEMI, anon_sym_async, anon_sym_function, sym_identifier, @@ -376876,30 +359596,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [144035] = 5, + [139621] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3932), 1, - sym__automatic_semicolon, - STATE(4031), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + STATE(3804), 1, sym_comment, - ACTIONS(2426), 36, + STATE(4820), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -376921,17 +359648,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144086] = 5, + [139683] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2300), 1, + anon_sym_EQ, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6258), 1, + anon_sym_of, + ACTIONS(7076), 1, + anon_sym_in, + STATE(3805), 1, + sym_comment, + ACTIONS(2298), 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(2304), 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, + [139741] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6396), 1, + anon_sym_EQ, + ACTIONS(6400), 1, + anon_sym_of, + ACTIONS(7079), 1, + anon_sym_in, + STATE(3806), 1, + sym_comment, + ACTIONS(6394), 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(6398), 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, + [139799] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3918), 1, - sym__automatic_semicolon, - STATE(4032), 1, + ACTIONS(7349), 1, + anon_sym_LBRACE, + STATE(3807), 1, sym_comment, - ACTIONS(2362), 36, + STATE(4049), 1, + sym_statement_block, + ACTIONS(2288), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -376968,16 +359796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [144137] = 5, + [139853] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7446), 1, - sym__automatic_semicolon, - STATE(4033), 1, + ACTIONS(7239), 1, + anon_sym_finally, + STATE(3808), 1, sym_comment, - ACTIONS(2332), 36, + STATE(4008), 1, + sym_finally_clause, + ACTIONS(3410), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -377014,31 +359844,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [144188] = 6, + [139907] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7448), 1, - anon_sym_SEMI, - ACTIONS(7450), 1, - sym__automatic_semicolon, - STATE(4034), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3809), 1, sym_comment, - ACTIONS(3454), 35, + STATE(5341), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377060,20 +359896,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144241] = 6, + [139969] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5170), 1, + ACTIONS(6018), 1, anon_sym_EQ, - STATE(4035), 1, + ACTIONS(6333), 1, + anon_sym_of, + ACTIONS(7073), 1, + anon_sym_in, + STATE(3810), 1, sym_comment, - ACTIONS(4493), 13, + ACTIONS(6016), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -377084,7 +359922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4497), 23, + ACTIONS(6020), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -377108,29 +359946,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [144294] = 5, + [140027] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3916), 1, - sym__automatic_semicolon, - STATE(4036), 1, + STATE(3811), 1, sym_comment, - ACTIONS(2394), 36, + ACTIONS(4345), 38, anon_sym_export, - anon_sym_default, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, - anon_sym_function, + anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_AT, anon_sym_static, anon_sym_readonly, @@ -377153,31 +359991,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144345] = 5, + anon_sym_abstract, + [140077] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3834), 1, - sym__automatic_semicolon, - STATE(4037), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3812), 1, sym_comment, - ACTIONS(2450), 36, + STATE(5410), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377199,31 +360044,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144396] = 5, + [140139] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3828), 1, - sym__automatic_semicolon, - STATE(4038), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3813), 1, sym_comment, - ACTIONS(2402), 36, + STATE(5409), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377245,30 +360096,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144447] = 4, + [140201] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4039), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3814), 1, sym_comment, - ACTIONS(3462), 37, + STATE(5308), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, - anon_sym_finally, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377290,78 +360148,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144496] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5184), 1, - anon_sym_EQ, - STATE(4040), 1, - sym_comment, - ACTIONS(4493), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 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, - [144549] = 5, + [140263] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3838), 1, - sym__automatic_semicolon, - STATE(4041), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3815), 1, sym_comment, - ACTIONS(2342), 36, + STATE(5433), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377383,32 +360200,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144600] = 4, + [140325] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4042), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7423), 1, + anon_sym_readonly, + STATE(3816), 1, sym_comment, - ACTIONS(3460), 37, + STATE(4956), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, - anon_sym_finally, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -377428,31 +360253,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144649] = 5, + [140389] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7452), 1, - sym__automatic_semicolon, - STATE(4043), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + STATE(3817), 1, sym_comment, - ACTIONS(2287), 36, + STATE(4957), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, - anon_sym_finally, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377474,29 +360305,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144700] = 4, + [140451] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4044), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3818), 1, sym_comment, - ACTIONS(3598), 36, + STATE(5329), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377518,29 +360357,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144748] = 4, + [140513] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4045), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + STATE(3819), 1, sym_comment, - ACTIONS(3576), 36, + STATE(4816), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377562,32 +360409,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144796] = 5, + [140575] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4004), 1, - sym__automatic_semicolon, - STATE(4046), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5624), 1, + anon_sym_readonly, + STATE(3820), 1, sym_comment, - ACTIONS(2354), 35, + STATE(4816), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -377607,32 +360462,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144846] = 5, + [140639] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4006), 1, - sym__automatic_semicolon, - STATE(4047), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7425), 1, + anon_sym_readonly, + STATE(3821), 1, sym_comment, - ACTIONS(2374), 35, + STATE(4917), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -377652,29 +360515,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144896] = 4, + [140703] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4048), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3822), 1, sym_comment, - ACTIONS(3460), 36, + STATE(5320), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, - anon_sym_finally, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377696,31 +360567,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144944] = 4, + [140765] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4049), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(7427), 1, + anon_sym_readonly, + STATE(3823), 1, sym_comment, - ACTIONS(3642), 36, + STATE(4863), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -377740,29 +360620,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [144992] = 4, + [140829] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4050), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3824), 1, sym_comment, - ACTIONS(3644), 36, + STATE(5323), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377784,29 +360672,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145040] = 4, + [140891] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4051), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3825), 1, sym_comment, - ACTIONS(3646), 36, + STATE(5407), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377828,31 +360724,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145088] = 4, + [140953] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4052), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + ACTIONS(5606), 1, + anon_sym_readonly, + STATE(3826), 1, sym_comment, - ACTIONS(3652), 36, + STATE(4936), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 29, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -377872,29 +360777,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145136] = 4, + [141017] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4053), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(5202), 1, + anon_sym_LBRACK, + STATE(3827), 1, sym_comment, - ACTIONS(3664), 36, + STATE(4936), 1, + sym__property_name, + ACTIONS(3786), 2, + sym_number, + sym_private_property_identifier, + STATE(4711), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4433), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377916,29 +360829,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145184] = 4, + [141079] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4054), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3828), 1, sym_comment, - ACTIONS(3488), 36, + STATE(5412), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -377960,30 +360881,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145232] = 5, + [141141] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3994), 1, - sym__automatic_semicolon, - STATE(4055), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3829), 1, sym_comment, - ACTIONS(2416), 35, + STATE(5326), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378005,29 +360933,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145282] = 4, + [141203] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4056), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3830), 1, sym_comment, - ACTIONS(3676), 36, + STATE(5472), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378049,29 +360985,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145330] = 4, + [141265] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4057), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3831), 1, sym_comment, - ACTIONS(3678), 36, + STATE(5380), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378093,61 +361037,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145378] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [141327] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4058), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4724), 1, + anon_sym_EQ, + STATE(3832), 1, sym_comment, - ACTIONS(3680), 36, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [145426] = 5, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [141381] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3992), 1, - sym__automatic_semicolon, - STATE(4059), 1, + ACTIONS(7429), 1, + anon_sym_LBRACE, + ACTIONS(7431), 1, + anon_sym_DOT, + STATE(3833), 1, sym_comment, - ACTIONS(2342), 35, + STATE(4138), 1, + sym_statement_block, + ACTIONS(2288), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -378183,14 +361134,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [145476] = 4, + [141437] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4060), 1, + ACTIONS(7429), 1, + anon_sym_LBRACE, + ACTIONS(7433), 1, + anon_sym_DOT, + STATE(3834), 1, sym_comment, - ACTIONS(3682), 36, + STATE(4138), 1, + sym_statement_block, + ACTIONS(2288), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -378199,7 +361156,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -378227,28 +361183,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [145524] = 4, + [141493] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4061), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3835), 1, sym_comment, - ACTIONS(3688), 36, + STATE(5414), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378270,29 +361235,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145572] = 4, + [141555] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4062), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3836), 1, sym_comment, - ACTIONS(3692), 36, + STATE(5371), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378314,15 +361287,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145620] = 4, + [141617] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4063), 1, + ACTIONS(7435), 1, + anon_sym_SEMI, + ACTIONS(7437), 1, + sym__automatic_semicolon, + STATE(3837), 1, sym_comment, - ACTIONS(3698), 36, + ACTIONS(3434), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -378359,28 +361335,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [145668] = 4, + [141671] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4064), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3838), 1, sym_comment, - ACTIONS(3700), 36, + STATE(5419), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378402,29 +361387,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145716] = 4, + [141733] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4065), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3839), 1, sym_comment, - ACTIONS(3568), 36, + STATE(5369), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378446,15 +361439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145764] = 4, + [141795] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4066), 1, + ACTIONS(3466), 1, + sym__automatic_semicolon, + STATE(3840), 1, sym_comment, - ACTIONS(3500), 36, + ACTIONS(3464), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -378465,6 +361459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, + anon_sym_SEMI, anon_sym_async, anon_sym_function, sym_identifier, @@ -378491,28 +361486,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [145812] = 4, + [141847] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4067), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3841), 1, sym_comment, - ACTIONS(3504), 36, + STATE(5368), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378534,28 +361538,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145860] = 4, + [141909] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4068), 1, + STATE(3842), 1, sym_comment, - ACTIONS(3508), 36, + ACTIONS(4343), 38, anon_sym_export, - anon_sym_default, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, anon_sym_async, - anon_sym_function, + anon_sym_new, + sym_number, sym_identifier, + sym_private_property_identifier, anon_sym_AT, anon_sym_static, anon_sym_readonly, @@ -378578,29 +361583,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145908] = 4, + anon_sym_abstract, + [141959] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4069), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3843), 1, sym_comment, - ACTIONS(3508), 36, + STATE(5420), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378622,15 +361636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [145956] = 4, + [142021] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4070), 1, + ACTIONS(7439), 1, + sym__automatic_semicolon, + STATE(3844), 1, sym_comment, - ACTIONS(3694), 36, + ACTIONS(2296), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -378641,49 +361656,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [146004] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4071), 1, - sym_comment, - ACTIONS(3474), 36, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_of, anon_sym_finally, anon_sym_async, anon_sym_function, @@ -378711,14 +361683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146052] = 4, + [142073] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4072), 1, + ACTIONS(7441), 1, + sym__automatic_semicolon, + STATE(3845), 1, sym_comment, - ACTIONS(3522), 36, + ACTIONS(2370), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -378729,6 +361703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -378755,29 +361730,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146100] = 5, + [142125] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7454), 1, - sym__automatic_semicolon, - STATE(4073), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3846), 1, sym_comment, - ACTIONS(2332), 35, + STATE(5405), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378799,29 +361782,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [146150] = 4, + [142187] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4074), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(5229), 1, + anon_sym_LBRACK, + STATE(3847), 1, sym_comment, - ACTIONS(3638), 36, + STATE(5451), 1, + sym__property_name, + ACTIONS(2930), 2, + sym_number, + sym_private_property_identifier, + STATE(5270), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2934), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, - anon_sym_function, + anon_sym_new, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -378843,15 +361834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [146198] = 4, + [142249] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4075), 1, + STATE(3848), 1, sym_comment, - ACTIONS(3674), 36, + ACTIONS(3444), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -378862,6 +361852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -378888,58 +361879,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146246] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [142298] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4076), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5133), 1, + anon_sym_EQ, + STATE(3849), 1, sym_comment, - ACTIONS(3666), 36, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [146294] = 4, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [142351] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4077), 1, + STATE(3850), 1, sym_comment, - ACTIONS(3662), 36, + ACTIONS(2458), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -378950,6 +361944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -378976,14 +361971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146342] = 4, + [142400] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4078), 1, + ACTIONS(3886), 1, + sym__automatic_semicolon, + STATE(3851), 1, sym_comment, - ACTIONS(3662), 36, + ACTIONS(2340), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379020,14 +362017,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146390] = 4, + [142451] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4079), 1, + ACTIONS(3812), 1, + sym__automatic_semicolon, + STATE(3852), 1, sym_comment, - ACTIONS(3650), 36, + ACTIONS(2386), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379064,14 +362063,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146438] = 4, + [142502] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4080), 1, + ACTIONS(3814), 1, + sym__automatic_semicolon, + STATE(3853), 1, sym_comment, - ACTIONS(2466), 36, + ACTIONS(2442), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379108,14 +362109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146486] = 4, + [142553] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4081), 1, + ACTIONS(3838), 1, + sym__automatic_semicolon, + STATE(3854), 1, sym_comment, - ACTIONS(3634), 36, + ACTIONS(2348), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379152,14 +362155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146534] = 4, + [142604] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4082), 1, + STATE(3855), 1, sym_comment, - ACTIONS(3624), 36, + ACTIONS(3442), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379170,49 +362173,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [146582] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4083), 1, - sym_comment, - ACTIONS(2350), 36, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_of, anon_sym_finally, anon_sym_async, anon_sym_function, @@ -379240,14 +362200,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146630] = 4, + [142653] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4084), 1, + ACTIONS(3836), 1, + sym__automatic_semicolon, + STATE(3856), 1, sym_comment, - ACTIONS(2338), 36, + ACTIONS(2474), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379284,14 +362246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146678] = 4, + [142704] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4085), 1, + STATE(3857), 1, sym_comment, - ACTIONS(3622), 36, + ACTIONS(2370), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379302,6 +362264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -379328,14 +362291,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146726] = 4, + [142753] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4086), 1, + STATE(3858), 1, sym_comment, - ACTIONS(3620), 36, + ACTIONS(3440), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379346,6 +362309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -379372,14 +362336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146774] = 4, + [142802] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4087), 1, + ACTIONS(2460), 1, + sym__automatic_semicolon, + STATE(3859), 1, sym_comment, - ACTIONS(3616), 36, + ACTIONS(2458), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379416,58 +362382,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146822] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [142853] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4088), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5135), 1, + anon_sym_EQ, + STATE(3860), 1, sym_comment, - ACTIONS(3616), 36, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [146870] = 4, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [142906] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4089), 1, + ACTIONS(2374), 1, + sym__automatic_semicolon, + STATE(3861), 1, sym_comment, - ACTIONS(3616), 36, + ACTIONS(2370), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379504,14 +362475,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146918] = 4, + [142957] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4090), 1, + ACTIONS(7443), 1, + anon_sym_SEMI, + ACTIONS(7445), 1, + sym__automatic_semicolon, + STATE(3862), 1, sym_comment, - ACTIONS(3612), 36, + ACTIONS(3434), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379520,7 +362495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -379548,58 +362522,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [146966] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [143010] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4091), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5141), 1, + anon_sym_EQ, + STATE(3863), 1, sym_comment, - ACTIONS(3604), 36, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_else, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [147014] = 4, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [143063] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4092), 1, + ACTIONS(7447), 1, + anon_sym_else, + STATE(3864), 1, sym_comment, - ACTIONS(3560), 36, + STATE(4012), 1, + sym_else_clause, + ACTIONS(3428), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379608,7 +362589,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -379636,14 +362616,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147062] = 4, + [143116] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4093), 1, + ACTIONS(7449), 1, + sym__automatic_semicolon, + STATE(3865), 1, sym_comment, - ACTIONS(3572), 36, + ACTIONS(2296), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379680,14 +362662,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147110] = 4, + [143167] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5093), 1, + anon_sym_EQ, + STATE(3866), 1, + sym_comment, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [143220] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5129), 1, + anon_sym_EQ, + STATE(3867), 1, + sym_comment, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [143273] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4094), 1, + ACTIONS(3754), 1, + sym__automatic_semicolon, + STATE(3868), 1, sym_comment, - ACTIONS(3572), 36, + ACTIONS(2296), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379724,14 +362802,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147158] = 4, + [143324] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5095), 1, + anon_sym_EQ, + STATE(3869), 1, + sym_comment, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [143377] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4095), 1, + ACTIONS(7451), 1, + anon_sym_else, + STATE(3870), 1, sym_comment, - ACTIONS(3602), 36, + STATE(4156), 1, + sym_else_clause, + ACTIONS(3428), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379740,7 +362869,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -379768,14 +362896,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147206] = 4, + [143430] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4096), 1, + ACTIONS(7347), 1, + anon_sym_finally, + STATE(3871), 1, sym_comment, - ACTIONS(2442), 36, + STATE(4172), 1, + sym_finally_clause, + ACTIONS(3410), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379784,7 +362916,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -379812,14 +362943,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147254] = 4, + [143483] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4097), 1, + ACTIONS(2436), 1, + sym__automatic_semicolon, + STATE(3872), 1, sym_comment, - ACTIONS(3606), 36, + ACTIONS(2434), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379856,14 +362989,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147302] = 4, + [143534] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4098), 1, + ACTIONS(2440), 1, + sym__automatic_semicolon, + STATE(3873), 1, sym_comment, - ACTIONS(2328), 36, + ACTIONS(2438), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379900,14 +363035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147350] = 4, + [143585] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4099), 1, + ACTIONS(3456), 1, + sym__automatic_semicolon, + STATE(3874), 1, sym_comment, - ACTIONS(3608), 36, + ACTIONS(3454), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -379916,8 +363053,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_SEMI, anon_sym_async, anon_sym_function, sym_identifier, @@ -379944,24 +363081,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147398] = 4, + [143636] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4100), 1, + STATE(3875), 1, sym_comment, - ACTIONS(3610), 36, + ACTIONS(2470), 37, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_DOT, anon_sym_async, anon_sym_function, sym_identifier, @@ -379988,14 +363126,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147446] = 4, + [143685] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4101), 1, + ACTIONS(7453), 1, + sym__automatic_semicolon, + STATE(3876), 1, sym_comment, - ACTIONS(3610), 36, + ACTIONS(2370), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380004,8 +363144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -380032,24 +363172,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147494] = 4, + [143736] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4102), 1, + STATE(3877), 1, sym_comment, - ACTIONS(3600), 36, + ACTIONS(2466), 37, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_DOT, anon_sym_async, anon_sym_function, sym_identifier, @@ -380076,18 +363217,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147542] = 4, + [143785] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4103), 1, + STATE(3878), 1, sym_comment, - ACTIONS(3480), 36, + ACTIONS(2366), 37, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_from, anon_sym_var, @@ -380120,18 +363262,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147590] = 4, + [143834] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4104), 1, + STATE(3879), 1, sym_comment, - ACTIONS(3596), 36, + ACTIONS(2482), 37, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_from, anon_sym_var, @@ -380164,14 +363307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147638] = 4, + [143883] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4105), 1, + ACTIONS(3466), 1, + sym__automatic_semicolon, + STATE(3880), 1, sym_comment, - ACTIONS(3596), 36, + ACTIONS(3464), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380180,8 +363325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_SEMI, anon_sym_async, anon_sym_function, sym_identifier, @@ -380208,14 +363353,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147686] = 4, + [143934] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4106), 1, + ACTIONS(7455), 1, + sym__automatic_semicolon, + STATE(3881), 1, sym_comment, - ACTIONS(3518), 36, + ACTIONS(2370), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380252,14 +363399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147734] = 4, + [143985] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4107), 1, + ACTIONS(7457), 1, + sym__automatic_semicolon, + STATE(3882), 1, sym_comment, - ACTIONS(3594), 36, + ACTIONS(2296), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380268,8 +363417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -380296,16 +363445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147782] = 5, + [144036] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7456), 1, + ACTIONS(3968), 1, sym__automatic_semicolon, - STATE(4108), 1, + STATE(3883), 1, sym_comment, - ACTIONS(2287), 35, + ACTIONS(2426), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380314,6 +363463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -380341,16 +363491,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147832] = 5, + [144087] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5139), 1, + anon_sym_EQ, + STATE(3884), 1, + sym_comment, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [144140] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3988), 1, + ACTIONS(7459), 1, sym__automatic_semicolon, - STATE(4109), 1, + STATE(3885), 1, sym_comment, - ACTIONS(2458), 35, + ACTIONS(2370), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380359,6 +363556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -380386,14 +363584,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147882] = 4, + [144191] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4110), 1, + ACTIONS(3962), 1, + sym__automatic_semicolon, + STATE(3886), 1, sym_comment, - ACTIONS(3462), 36, + ACTIONS(2418), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380402,8 +363602,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -380430,14 +363630,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147930] = 4, + [144242] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5131), 1, + anon_sym_EQ, + STATE(3887), 1, + sym_comment, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [144295] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4111), 1, + ACTIONS(3934), 1, + sym__automatic_semicolon, + STATE(3888), 1, sym_comment, - ACTIONS(3614), 36, + ACTIONS(2396), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380474,14 +363723,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [147978] = 4, + [144346] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5125), 1, + anon_sym_EQ, + STATE(3889), 1, + sym_comment, + ACTIONS(4493), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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), 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, + [144399] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4112), 1, + ACTIONS(7429), 1, + anon_sym_LBRACE, + STATE(3890), 1, sym_comment, - ACTIONS(3618), 36, + STATE(4138), 1, + sym_statement_block, + ACTIONS(2288), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380490,7 +363790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -380518,14 +363817,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148026] = 4, + [144452] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4113), 1, + STATE(3891), 1, sym_comment, - ACTIONS(3592), 36, + ACTIONS(2458), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380534,8 +363833,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_catch, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -380562,14 +363862,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148074] = 4, + [144501] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4114), 1, + ACTIONS(3890), 1, + sym__automatic_semicolon, + STATE(3892), 1, sym_comment, - ACTIONS(3590), 36, + ACTIONS(2332), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380606,14 +363908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148122] = 4, + [144552] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4115), 1, + ACTIONS(3958), 1, + sym__automatic_semicolon, + STATE(3893), 1, sym_comment, - ACTIONS(3588), 36, + ACTIONS(2358), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380650,14 +363954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148170] = 4, + [144603] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4116), 1, + STATE(3894), 1, sym_comment, - ACTIONS(3586), 36, + ACTIONS(2370), 37, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380666,8 +363970,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_catch, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -380694,14 +363999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148218] = 4, + [144652] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4117), 1, + ACTIONS(3966), 1, + sym__automatic_semicolon, + STATE(3895), 1, sym_comment, - ACTIONS(3584), 36, + ACTIONS(2376), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380738,14 +364045,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148266] = 4, + [144703] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4118), 1, + ACTIONS(3956), 1, + sym__automatic_semicolon, + STATE(3896), 1, sym_comment, - ACTIONS(3582), 36, + ACTIONS(2410), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380782,14 +364091,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148314] = 4, + [144754] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4119), 1, + STATE(3897), 1, sym_comment, - ACTIONS(3582), 36, + ACTIONS(3698), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380826,14 +364135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148362] = 4, + [144802] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4120), 1, + STATE(3898), 1, sym_comment, - ACTIONS(3582), 36, + ACTIONS(3558), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380870,14 +364179,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148410] = 4, + [144850] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4121), 1, + ACTIONS(4014), 1, + sym__automatic_semicolon, + STATE(3899), 1, sym_comment, - ACTIONS(3578), 36, + ACTIONS(2386), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380886,7 +364197,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -380914,16 +364224,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148458] = 5, + [144900] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4014), 1, + STATE(3900), 1, + sym_comment, + ACTIONS(3442), 36, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_finally, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [144948] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7463), 1, + anon_sym_AT, + STATE(4238), 1, + sym_ui_annotation, + STATE(3901), 2, + sym_comment, + aux_sym_ui_annotated_object_repeat1, + ACTIONS(7461), 33, + anon_sym_export, + anon_sym_default, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_var, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_enum, + [145000] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7466), 1, sym__automatic_semicolon, - STATE(4122), 1, + STATE(3902), 1, sym_comment, - ACTIONS(2402), 35, + ACTIONS(2296), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380959,14 +364359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148508] = 4, + [145050] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4123), 1, + ACTIONS(3988), 1, + sym__automatic_semicolon, + STATE(3903), 1, sym_comment, - ACTIONS(2350), 36, + ACTIONS(2348), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -380975,7 +364377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -381003,14 +364404,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148556] = 4, + [145100] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4124), 1, + ACTIONS(3986), 1, + sym__automatic_semicolon, + STATE(3904), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(2340), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381019,7 +364422,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -381047,14 +364449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148604] = 4, + [145150] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4125), 1, + STATE(3905), 1, sym_comment, - ACTIONS(3636), 36, + ACTIONS(3440), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381063,8 +364465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -381091,16 +364493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148652] = 5, + [145198] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4008), 1, + ACTIONS(7468), 1, sym__automatic_semicolon, - STATE(4126), 1, + STATE(3906), 1, sym_comment, - ACTIONS(2450), 35, + ACTIONS(2370), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381136,16 +364538,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148702] = 5, + [145248] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4000), 1, - sym__automatic_semicolon, - STATE(4127), 1, + STATE(3907), 1, sym_comment, - ACTIONS(2394), 35, + ACTIONS(3500), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381154,6 +364554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -381181,14 +364582,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148752] = 4, + [145296] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4128), 1, + STATE(3908), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3494), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381225,14 +364626,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148800] = 4, + [145344] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4129), 1, + ACTIONS(7470), 1, + sym__automatic_semicolon, + STATE(3909), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(2370), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381241,7 +364644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -381269,14 +364671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148848] = 4, + [145394] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4130), 1, + STATE(3910), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3536), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381313,14 +364715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148896] = 4, + [145442] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4131), 1, + STATE(3911), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3538), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381357,14 +364759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148944] = 4, + [145490] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4132), 1, + STATE(3912), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3540), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381401,14 +364803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [148992] = 4, + [145538] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4133), 1, + STATE(3913), 1, sym_comment, - ACTIONS(3506), 36, + ACTIONS(3542), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381445,14 +364847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149040] = 4, + [145586] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4134), 1, + STATE(3914), 1, sym_comment, - ACTIONS(2466), 36, + ACTIONS(3544), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381489,16 +364891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149088] = 5, + [145634] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2336), 1, - sym__automatic_semicolon, - STATE(4135), 1, + STATE(3915), 1, sym_comment, - ACTIONS(2332), 35, + ACTIONS(3670), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381507,6 +364907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -381534,14 +364935,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149138] = 4, + [145682] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4136), 1, + ACTIONS(4000), 1, + sym__automatic_semicolon, + STATE(3916), 1, sym_comment, - ACTIONS(3510), 36, + ACTIONS(2332), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381550,7 +364953,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -381578,14 +364980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149186] = 4, + [145732] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4137), 1, + ACTIONS(3994), 1, + sym__automatic_semicolon, + STATE(3917), 1, sym_comment, - ACTIONS(3514), 36, + ACTIONS(2358), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381594,7 +364998,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -381622,14 +365025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149234] = 4, + [145782] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4138), 1, + ACTIONS(4002), 1, + sym__automatic_semicolon, + STATE(3918), 1, sym_comment, - ACTIONS(3528), 36, + ACTIONS(2376), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381638,7 +365043,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -381666,14 +365070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149282] = 4, + [145832] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4139), 1, + STATE(3919), 1, sym_comment, - ACTIONS(3530), 36, + ACTIONS(3692), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381710,14 +365114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149330] = 4, + [145880] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4140), 1, + STATE(3920), 1, sym_comment, - ACTIONS(3502), 36, + ACTIONS(3548), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381754,14 +365158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149378] = 4, + [145928] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4141), 1, + STATE(3921), 1, sym_comment, - ACTIONS(3498), 36, + ACTIONS(3550), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381798,14 +365202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149426] = 4, + [145976] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4142), 1, + STATE(3922), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3552), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381842,14 +365246,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149474] = 4, + [146024] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4143), 1, + STATE(3923), 1, sym_comment, - ACTIONS(3534), 36, + ACTIONS(3554), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381886,14 +365290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149522] = 4, + [146072] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4144), 1, + STATE(3924), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3556), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381930,14 +365334,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149570] = 4, + [146120] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4145), 1, + STATE(3925), 1, sym_comment, - ACTIONS(3536), 36, + ACTIONS(2458), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -381974,14 +365378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149618] = 4, + [146168] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4146), 1, + STATE(3926), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3560), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382018,14 +365422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149666] = 4, + [146216] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4147), 1, + STATE(3927), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3562), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382062,14 +365466,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149714] = 4, + [146264] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4148), 1, + STATE(3928), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3476), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382106,14 +365510,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149762] = 4, + [146312] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4149), 1, + STATE(3929), 1, sym_comment, - ACTIONS(3538), 36, + ACTIONS(3682), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382150,14 +365554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149810] = 4, + [146360] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4150), 1, + STATE(3930), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3684), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382194,14 +365598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149858] = 4, + [146408] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4151), 1, + STATE(3931), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3684), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382238,14 +365642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149906] = 4, + [146456] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4152), 1, + STATE(3932), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3566), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382282,14 +365686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [149954] = 4, + [146504] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4153), 1, + STATE(3933), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3572), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382326,14 +365730,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150002] = 4, + [146552] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4154), 1, + STATE(3934), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3574), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382370,14 +365774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150050] = 4, + [146600] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4155), 1, + STATE(3935), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3576), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382414,14 +365818,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150098] = 4, + [146648] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4156), 1, + STATE(3936), 1, sym_comment, - ACTIONS(2332), 36, + ACTIONS(3576), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382458,14 +365862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150146] = 4, + [146696] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4157), 1, + STATE(3937), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3578), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382502,14 +365906,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150194] = 4, + [146744] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4158), 1, + STATE(3938), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(3580), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382546,14 +365950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150242] = 4, + [146792] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4159), 1, + STATE(3939), 1, sym_comment, - ACTIONS(2434), 36, + ACTIONS(3582), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382590,14 +365994,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150290] = 4, + [146840] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4160), 1, + ACTIONS(3990), 1, + sym__automatic_semicolon, + STATE(3940), 1, sym_comment, - ACTIONS(3626), 36, + ACTIONS(2396), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382606,7 +366012,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -382634,14 +366039,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150338] = 4, + [146890] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4161), 1, + ACTIONS(3978), 1, + sym__automatic_semicolon, + STATE(3941), 1, sym_comment, - ACTIONS(3570), 36, + ACTIONS(2418), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382650,7 +366057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -382678,14 +366084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150386] = 4, + [146940] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4162), 1, + ACTIONS(3976), 1, + sym__automatic_semicolon, + STATE(3942), 1, sym_comment, - ACTIONS(3630), 36, + ACTIONS(2426), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382694,7 +366102,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -382722,14 +366129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150434] = 4, + [146990] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4163), 1, + STATE(3943), 1, sym_comment, - ACTIONS(3648), 36, + ACTIONS(3584), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382766,14 +366173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150482] = 4, + [147038] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4164), 1, + STATE(3944), 1, sym_comment, - ACTIONS(3654), 36, + ACTIONS(3586), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382810,14 +366217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150530] = 4, + [147086] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4165), 1, + STATE(3945), 1, sym_comment, - ACTIONS(3654), 36, + ACTIONS(3588), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382854,14 +366261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150578] = 4, + [147134] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4166), 1, + STATE(3946), 1, sym_comment, - ACTIONS(3658), 36, + ACTIONS(3588), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382898,14 +366305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150626] = 4, + [147182] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4167), 1, + STATE(3947), 1, sym_comment, - ACTIONS(3660), 36, + ACTIONS(3588), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382942,14 +366349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150674] = 4, + [147230] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4168), 1, + STATE(3948), 1, sym_comment, - ACTIONS(3524), 36, + ACTIONS(3590), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -382986,14 +366393,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150722] = 4, + [147278] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4169), 1, + STATE(3949), 1, sym_comment, - ACTIONS(3524), 36, + ACTIONS(3546), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383030,14 +366437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150770] = 4, + [147326] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4170), 1, + ACTIONS(4008), 1, + sym__automatic_semicolon, + STATE(3950), 1, sym_comment, - ACTIONS(3524), 36, + ACTIONS(2474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383046,7 +366455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -383074,23 +366482,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150818] = 4, + [147376] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4171), 1, + STATE(3951), 1, sym_comment, - ACTIONS(2474), 36, + ACTIONS(3678), 36, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -383118,23 +366526,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150866] = 4, + [147424] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4172), 1, + STATE(3952), 1, sym_comment, - ACTIONS(2438), 36, + ACTIONS(3680), 36, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -383162,14 +366570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150914] = 4, + [147472] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4173), 1, + STATE(3953), 1, sym_comment, - ACTIONS(3524), 36, + ACTIONS(3680), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383206,14 +366614,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [150962] = 4, + [147520] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4174), 1, + STATE(3954), 1, sym_comment, - ACTIONS(3542), 36, + ACTIONS(3594), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383250,14 +366658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151010] = 4, + [147568] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4175), 1, + STATE(3955), 1, sym_comment, - ACTIONS(3540), 36, + ACTIONS(3694), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383294,14 +366702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151058] = 4, + [147616] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4176), 1, + STATE(3956), 1, sym_comment, - ACTIONS(3524), 36, + ACTIONS(3696), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383338,14 +366746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151106] = 4, + [147664] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4177), 1, + STATE(3957), 1, sym_comment, - ACTIONS(3524), 36, + ACTIONS(3698), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383382,23 +366790,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151154] = 4, + [147712] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4178), 1, + STATE(3958), 1, sym_comment, - ACTIONS(3532), 36, + ACTIONS(2366), 36, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -383426,23 +366834,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151202] = 4, + [147760] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4179), 1, + STATE(3959), 1, sym_comment, - ACTIONS(3544), 36, + ACTIONS(2482), 36, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -383470,14 +366878,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151250] = 4, + [147808] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4180), 1, + STATE(3960), 1, sym_comment, - ACTIONS(3526), 36, + ACTIONS(3596), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383514,14 +366922,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151298] = 4, + [147856] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4181), 1, + STATE(3961), 1, sym_comment, - ACTIONS(2332), 36, + ACTIONS(3598), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383530,8 +366938,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, - anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -383558,16 +366966,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151346] = 5, + [147904] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2330), 1, - sym__automatic_semicolon, - STATE(4182), 1, + STATE(3962), 1, sym_comment, - ACTIONS(2328), 35, + ACTIONS(3600), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383576,6 +366982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -383603,16 +367010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151396] = 5, + [147952] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2444), 1, - sym__automatic_semicolon, - STATE(4183), 1, + STATE(3963), 1, sym_comment, - ACTIONS(2442), 35, + ACTIONS(3660), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383621,6 +367026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -383648,16 +367054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151446] = 5, + [148000] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3968), 1, - sym__automatic_semicolon, - STATE(4184), 1, + STATE(3964), 1, sym_comment, - ACTIONS(2478), 35, + ACTIONS(3600), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383666,6 +367070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -383693,14 +367098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151496] = 4, + [148048] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4185), 1, + STATE(3965), 1, sym_comment, - ACTIONS(3558), 36, + ACTIONS(3534), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383737,16 +367142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151544] = 5, + [148096] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3970), 1, - sym__automatic_semicolon, - STATE(4186), 1, + STATE(3966), 1, sym_comment, - ACTIONS(2426), 35, + ACTIONS(3602), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383755,6 +367158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -383782,16 +367186,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151594] = 5, + [148144] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(3998), 1, sym__automatic_semicolon, - STATE(4187), 1, + STATE(3967), 1, sym_comment, - ACTIONS(2362), 35, + ACTIONS(2410), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383827,14 +367231,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151644] = 4, + [148194] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4188), 1, + STATE(3968), 1, sym_comment, - ACTIONS(3550), 36, + ACTIONS(3444), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383843,8 +367247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -383871,16 +367275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151692] = 5, + [148242] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7458), 1, - sym__automatic_semicolon, - STATE(4189), 1, + STATE(3969), 1, sym_comment, - ACTIONS(2332), 35, + ACTIONS(3686), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -383889,6 +367291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -383916,30 +367319,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151742] = 6, + [148290] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7462), 1, - anon_sym_AT, - STATE(4456), 1, - sym_ui_annotation, - STATE(4190), 2, + STATE(3970), 1, sym_comment, - aux_sym_ui_annotated_object_repeat1, - ACTIONS(7460), 33, + ACTIONS(3690), 36, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -383962,14 +367363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151794] = 4, + [148338] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4191), 1, + STATE(3971), 1, sym_comment, - ACTIONS(3668), 36, + ACTIONS(3486), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384006,14 +367407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151842] = 4, + [148386] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4192), 1, + STATE(3972), 1, sym_comment, - ACTIONS(3686), 36, + ACTIONS(2404), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384050,14 +367451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151890] = 4, + [148434] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4193), 1, + STATE(3973), 1, sym_comment, - ACTIONS(3690), 36, + ACTIONS(3604), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384094,14 +367495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151938] = 4, + [148482] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4194), 1, + STATE(3974), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3606), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384138,14 +367539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [151986] = 4, + [148530] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4195), 1, + STATE(3975), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3608), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384182,14 +367583,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152034] = 4, + [148578] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4196), 1, + STATE(3976), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3610), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384226,14 +367627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152082] = 4, + [148626] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4197), 1, + STATE(3977), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3612), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384270,16 +367671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152130] = 5, + [148674] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4002), 1, - sym__automatic_semicolon, - STATE(4198), 1, + STATE(3978), 1, sym_comment, - ACTIONS(2382), 35, + ACTIONS(3614), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384288,6 +367687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -384315,14 +367715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152180] = 4, + [148722] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4199), 1, + STATE(3979), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3614), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384359,14 +367759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152228] = 4, + [148770] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4200), 1, + STATE(3980), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3614), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384403,14 +367803,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152276] = 4, + [148818] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4201), 1, + STATE(3981), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3616), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384447,14 +367847,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152324] = 4, + [148866] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4202), 1, + STATE(3982), 1, sym_comment, - ACTIONS(3546), 36, + ACTIONS(3672), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384491,14 +367891,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152372] = 4, + [148914] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4203), 1, + STATE(3983), 1, sym_comment, - ACTIONS(3640), 36, + ACTIONS(3618), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384535,14 +367935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152420] = 4, + [148962] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4204), 1, + STATE(3984), 1, sym_comment, - ACTIONS(3656), 36, + ACTIONS(3520), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384579,14 +367979,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152468] = 4, + [149010] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4205), 1, + STATE(3985), 1, sym_comment, - ACTIONS(3672), 36, + ACTIONS(3702), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384623,14 +368023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152516] = 4, + [149058] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4206), 1, + ACTIONS(4006), 1, + sym__automatic_semicolon, + STATE(3986), 1, sym_comment, - ACTIONS(3684), 36, + ACTIONS(2442), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384639,7 +368041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -384667,14 +368068,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152564] = 4, + [149108] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4207), 1, + STATE(3987), 1, sym_comment, - ACTIONS(3628), 36, + ACTIONS(3564), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384711,14 +368112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152612] = 4, + [149156] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4208), 1, + STATE(3988), 1, sym_comment, - ACTIONS(3696), 36, + ACTIONS(3564), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384755,14 +368156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152660] = 4, + [149204] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4209), 1, + STATE(3989), 1, sym_comment, - ACTIONS(3484), 36, + ACTIONS(3674), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384799,16 +368200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152708] = 5, + [149252] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3938), 1, - sym__automatic_semicolon, - STATE(4210), 1, + STATE(3990), 1, sym_comment, - ACTIONS(2287), 35, + ACTIONS(3700), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384817,6 +368216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -384844,14 +368244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152758] = 4, + [149300] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4211), 1, + STATE(3991), 1, sym_comment, - ACTIONS(3516), 36, + ACTIONS(3622), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384888,14 +368288,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152806] = 4, + [149348] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4212), 1, + STATE(3992), 1, sym_comment, - ACTIONS(3496), 36, + ACTIONS(3622), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384932,14 +368332,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152854] = 4, + [149396] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4213), 1, + STATE(3993), 1, sym_comment, - ACTIONS(3486), 36, + ACTIONS(3622), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -384976,14 +368376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152902] = 4, + [149444] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4214), 1, + STATE(3994), 1, sym_comment, - ACTIONS(3548), 36, + ACTIONS(3622), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385020,16 +368420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [152950] = 5, + [149492] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2352), 1, - sym__automatic_semicolon, - STATE(4215), 1, + STATE(3995), 1, sym_comment, - ACTIONS(2350), 35, + ACTIONS(3624), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385038,6 +368436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -385065,14 +368464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153000] = 4, + [149540] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4216), 1, + STATE(3996), 1, sym_comment, - ACTIONS(3520), 36, + ACTIONS(3626), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385109,14 +368508,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153048] = 4, + [149588] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4217), 1, + STATE(3997), 1, sym_comment, - ACTIONS(3552), 36, + ACTIONS(3622), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385153,14 +368552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153096] = 4, + [149636] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4218), 1, + STATE(3998), 1, sym_comment, - ACTIONS(3494), 36, + ACTIONS(3656), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385197,14 +368596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153144] = 4, + [149684] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4219), 1, + STATE(3999), 1, sym_comment, - ACTIONS(3554), 36, + ACTIONS(3622), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385241,14 +368640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153192] = 4, + [149732] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4220), 1, + STATE(4000), 1, sym_comment, - ACTIONS(3574), 36, + ACTIONS(3628), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385285,14 +368684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153240] = 4, + [149780] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4221), 1, + STATE(4001), 1, sym_comment, - ACTIONS(3632), 36, + ACTIONS(3490), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385329,14 +368728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153288] = 4, + [149828] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4222), 1, + STATE(4002), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3630), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385373,14 +368772,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153336] = 4, + [149876] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4223), 1, + STATE(4003), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(2434), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385417,14 +368816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153384] = 4, + [149924] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4224), 1, + STATE(4004), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(2438), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385461,14 +368860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153432] = 4, + [149972] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4225), 1, + STATE(4005), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(2458), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385477,8 +368876,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -385505,14 +368904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153480] = 4, + [150020] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4226), 1, + STATE(4006), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(2370), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385521,8 +368920,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, + anon_sym_finally, anon_sym_async, anon_sym_function, sym_identifier, @@ -385549,14 +368948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153528] = 4, + [150068] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4227), 1, + ACTIONS(2436), 1, + sym__automatic_semicolon, + STATE(4007), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(2434), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385565,7 +368966,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -385593,14 +368993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153576] = 4, + [150118] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4228), 1, + STATE(4008), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3668), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385637,14 +369037,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153624] = 4, + [150166] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4229), 1, + STATE(4009), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3488), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385681,14 +369081,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153672] = 4, + [150214] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4230), 1, + STATE(4010), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3666), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385725,14 +369125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153720] = 4, + [150262] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4231), 1, + STATE(4011), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3664), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385769,14 +369169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153768] = 4, + [150310] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4232), 1, + STATE(4012), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(3662), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385813,14 +369213,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153816] = 4, + [150358] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4233), 1, + ACTIONS(2460), 1, + sym__automatic_semicolon, + STATE(4013), 1, sym_comment, - ACTIONS(3576), 36, + ACTIONS(2458), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385829,7 +369231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, - anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -385857,14 +369258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153864] = 4, + [150408] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4234), 1, + STATE(4014), 1, sym_comment, - ACTIONS(7465), 35, + ACTIONS(3632), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385873,6 +369274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -385900,14 +369302,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153911] = 4, + [150456] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4235), 1, + STATE(4015), 1, sym_comment, - ACTIONS(3660), 35, + ACTIONS(3634), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385916,6 +369318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -385943,14 +369346,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [153958] = 4, + [150504] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4236), 1, + STATE(4016), 1, sym_comment, - ACTIONS(7467), 35, + ACTIONS(3636), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -385959,6 +369362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -385986,14 +369390,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154005] = 4, + [150552] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4237), 1, + STATE(4017), 1, sym_comment, - ACTIONS(3532), 35, + ACTIONS(3532), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386002,6 +369406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386029,14 +369434,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154052] = 4, + [150600] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4238), 1, + STATE(4018), 1, sym_comment, - ACTIONS(3526), 35, + ACTIONS(3638), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386045,6 +369450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386072,14 +369478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154099] = 4, + [150648] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4239), 1, + STATE(4019), 1, sym_comment, - ACTIONS(7469), 35, + ACTIONS(3658), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386088,6 +369494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386115,14 +369522,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154146] = 4, + [150696] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4240), 1, + STATE(4020), 1, sym_comment, - ACTIONS(7469), 35, + ACTIONS(2370), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386131,6 +369538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386158,14 +369566,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154193] = 4, + [150744] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4241), 1, + STATE(4021), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3654), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386174,6 +369582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386201,14 +369610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154240] = 4, + [150792] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4242), 1, + STATE(4022), 1, sym_comment, - ACTIONS(3634), 35, + ACTIONS(3640), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386217,6 +369626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386244,14 +369654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154287] = 4, + [150840] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4243), 1, + STATE(4023), 1, sym_comment, - ACTIONS(7471), 35, + ACTIONS(3620), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386260,6 +369670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386287,14 +369698,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154334] = 4, + [150888] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4244), 1, + STATE(4024), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3592), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386303,6 +369714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386330,14 +369742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154381] = 4, + [150936] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4245), 1, + STATE(4025), 1, sym_comment, - ACTIONS(3624), 35, + ACTIONS(3652), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386346,6 +369758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386373,57 +369786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154428] = 4, + [150984] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4246), 1, - sym_comment, - ACTIONS(3576), 35, - anon_sym_export, - anon_sym_default, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_var, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_function, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_enum, - [154475] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4247), 1, + STATE(4026), 1, sym_comment, - ACTIONS(3622), 35, + ACTIONS(2404), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386432,6 +369802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386459,14 +369830,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154522] = 4, + [151032] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4248), 1, + ACTIONS(2374), 1, + sym__automatic_semicolon, + STATE(4027), 1, sym_comment, - ACTIONS(3620), 35, + ACTIONS(2370), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386502,14 +369875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154569] = 4, + [151082] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4249), 1, + STATE(4028), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3496), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386518,6 +369891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386545,14 +369919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154616] = 4, + [151130] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4250), 1, + STATE(4029), 1, sym_comment, - ACTIONS(3616), 35, + ACTIONS(3498), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386561,6 +369935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386588,14 +369963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154663] = 4, + [151178] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4251), 1, + STATE(4030), 1, sym_comment, - ACTIONS(3598), 35, + ACTIONS(3502), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386604,6 +369979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386631,14 +370007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154710] = 4, + [151226] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4252), 1, + STATE(4031), 1, sym_comment, - ACTIONS(3616), 35, + ACTIONS(3510), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386647,6 +370023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386674,14 +370051,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154757] = 4, + [151274] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4253), 1, + STATE(4032), 1, sym_comment, - ACTIONS(7469), 35, + ACTIONS(3650), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386690,6 +370067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386717,14 +370095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154804] = 4, + [151322] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4254), 1, + STATE(4033), 1, sym_comment, - ACTIONS(3522), 35, + ACTIONS(3648), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386733,6 +370111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386760,14 +370139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154851] = 4, + [151370] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4255), 1, + STATE(4034), 1, sym_comment, - ACTIONS(2466), 35, + ACTIONS(3528), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386776,6 +370155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386803,14 +370183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154898] = 4, + [151418] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4256), 1, + STATE(4035), 1, sym_comment, - ACTIONS(7473), 35, + ACTIONS(3512), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386819,6 +370199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386846,14 +370227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154945] = 4, + [151466] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4257), 1, + STATE(4036), 1, sym_comment, - ACTIONS(3570), 35, + ACTIONS(3524), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386862,6 +370243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386889,14 +370271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [154992] = 4, + [151514] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4258), 1, + STATE(4037), 1, sym_comment, - ACTIONS(7475), 35, + ACTIONS(3514), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386905,6 +370287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386932,14 +370315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155039] = 4, + [151562] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4259), 1, + STATE(4038), 1, sym_comment, - ACTIONS(7477), 35, + ACTIONS(3526), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386948,6 +370331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -386975,14 +370359,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155086] = 4, + [151610] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4260), 1, + STATE(4039), 1, sym_comment, - ACTIONS(3612), 35, + ACTIONS(3522), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -386991,6 +370375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -387018,60 +370403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155133] = 7, + [151658] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7481), 1, - anon_sym_import, - ACTIONS(7484), 1, - anon_sym_pragma, - STATE(4261), 2, - sym_comment, - aux_sym_program_repeat1, - STATE(4487), 2, - sym_ui_pragma, - sym_ui_import, - ACTIONS(7479), 30, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [155186] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4262), 1, + STATE(4040), 1, sym_comment, - ACTIONS(7487), 35, + ACTIONS(3642), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387080,6 +370419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -387107,14 +370447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155233] = 4, + [151706] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4263), 1, + STATE(4041), 1, sym_comment, - ACTIONS(7489), 35, + ACTIONS(3516), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387123,6 +370463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -387150,14 +370491,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155280] = 4, + [151754] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4264), 1, + STATE(4042), 1, sym_comment, - ACTIONS(3604), 35, + ACTIONS(3518), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387166,6 +370507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -387193,14 +370535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155327] = 4, + [151802] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4265), 1, + STATE(4043), 1, sym_comment, - ACTIONS(3560), 35, + ACTIONS(3644), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387209,6 +370551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -387236,14 +370579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155374] = 4, + [151850] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4266), 1, + STATE(4044), 1, sym_comment, - ACTIONS(7491), 35, + ACTIONS(3646), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387252,6 +370595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -387279,14 +370623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155421] = 4, + [151898] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4267), 1, + ACTIONS(2440), 1, + sym__automatic_semicolon, + STATE(4045), 1, sym_comment, - ACTIONS(7493), 35, + ACTIONS(2438), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387322,14 +370668,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155468] = 4, + [151948] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4268), 1, + ACTIONS(3840), 1, + sym__automatic_semicolon, + STATE(4046), 1, sym_comment, - ACTIONS(7495), 35, + ACTIONS(2296), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387365,14 +370713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155515] = 4, + [151998] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4269), 1, + STATE(4047), 1, sym_comment, - ACTIONS(3572), 35, + ACTIONS(2450), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387381,6 +370729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -387408,14 +370757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155562] = 4, + [152046] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4270), 1, + STATE(4048), 1, sym_comment, - ACTIONS(3572), 35, + ACTIONS(3492), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387424,6 +370773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -387451,14 +370801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155609] = 4, + [152094] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4271), 1, + STATE(4049), 1, sym_comment, - ACTIONS(3602), 35, + ACTIONS(2462), 36, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387467,6 +370817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_from, anon_sym_var, anon_sym_let, + anon_sym_else, anon_sym_of, anon_sym_async, anon_sym_function, @@ -387494,14 +370845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155656] = 4, + [152142] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4272), 1, + STATE(4050), 1, sym_comment, - ACTIONS(7497), 35, + ACTIONS(7472), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387537,14 +370888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155703] = 4, + [152189] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4273), 1, + STATE(4051), 1, sym_comment, - ACTIONS(7499), 35, + ACTIONS(3692), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387580,14 +370931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155750] = 4, + [152236] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4274), 1, + STATE(4052), 1, sym_comment, - ACTIONS(3606), 35, + ACTIONS(7474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387623,14 +370974,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155797] = 4, + [152283] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4275), 1, + STATE(4053), 1, sym_comment, - ACTIONS(7501), 35, + ACTIONS(7476), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387666,14 +371017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155844] = 4, + [152330] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4276), 1, + STATE(4054), 1, sym_comment, - ACTIONS(7503), 35, + ACTIONS(7478), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387709,14 +371060,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155891] = 4, + [152377] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4277), 1, + STATE(4055), 1, sym_comment, - ACTIONS(3650), 35, + ACTIONS(7480), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387752,14 +371103,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155938] = 4, + [152424] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4278), 1, + STATE(4056), 1, sym_comment, - ACTIONS(3608), 35, + ACTIONS(3648), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387795,14 +371146,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [155985] = 4, + [152471] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4279), 1, + STATE(4057), 1, sym_comment, - ACTIONS(7505), 35, + ACTIONS(3650), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387838,14 +371189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156032] = 4, + [152518] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4280), 1, + STATE(4058), 1, sym_comment, - ACTIONS(3610), 35, + ACTIONS(3600), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387881,14 +371232,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156079] = 4, + [152565] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4281), 1, + STATE(4059), 1, sym_comment, - ACTIONS(3610), 35, + ACTIONS(7482), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387924,14 +371275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156126] = 4, + [152612] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4282), 1, + STATE(4060), 1, sym_comment, - ACTIONS(3600), 35, + ACTIONS(3510), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -387967,14 +371318,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156173] = 4, + [152659] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4283), 1, + STATE(4061), 1, sym_comment, - ACTIONS(7507), 35, + ACTIONS(3502), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388010,14 +371361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156220] = 4, + [152706] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4284), 1, + STATE(4062), 1, sym_comment, - ACTIONS(3638), 35, + ACTIONS(3498), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388053,14 +371404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156267] = 4, + [152753] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4285), 1, + STATE(4063), 1, sym_comment, - ACTIONS(3662), 35, + ACTIONS(3496), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388096,14 +371447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156314] = 4, + [152800] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4286), 1, + STATE(4064), 1, sym_comment, - ACTIONS(7509), 35, + ACTIONS(2404), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388139,14 +371490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156361] = 4, + [152847] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4287), 1, + STATE(4065), 1, sym_comment, - ACTIONS(7511), 35, + ACTIONS(3652), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388182,14 +371533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156408] = 4, + [152894] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4288), 1, + STATE(4066), 1, sym_comment, - ACTIONS(7469), 35, + ACTIONS(3690), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388225,14 +371576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156455] = 4, + [152941] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4289), 1, + STATE(4067), 1, sym_comment, - ACTIONS(7469), 35, + ACTIONS(3686), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388268,14 +371619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156502] = 4, + [152988] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4290), 1, + STATE(4068), 1, sym_comment, - ACTIONS(3480), 35, + ACTIONS(7484), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388311,14 +371662,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156549] = 4, + [153035] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4291), 1, + STATE(4069), 1, sym_comment, - ACTIONS(7513), 35, + ACTIONS(7486), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388354,14 +371705,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156596] = 4, + [153082] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4292), 1, + STATE(4070), 1, sym_comment, - ACTIONS(3596), 35, + ACTIONS(7488), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388397,14 +371748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156643] = 4, + [153129] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4293), 1, + STATE(4071), 1, sym_comment, - ACTIONS(3596), 35, + ACTIONS(7490), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388440,14 +371791,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156690] = 4, + [153176] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4294), 1, + STATE(4072), 1, sym_comment, - ACTIONS(2338), 35, + ACTIONS(2450), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388483,14 +371834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156737] = 4, + [153223] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4295), 1, + STATE(4073), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3646), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388526,14 +371877,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156784] = 4, + [153270] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4296), 1, + STATE(4074), 1, sym_comment, - ACTIONS(7515), 35, + ACTIONS(7492), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388569,14 +371920,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156831] = 4, + [153317] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4297), 1, + STATE(4075), 1, sym_comment, - ACTIONS(7517), 35, + ACTIONS(3586), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388612,14 +371963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156878] = 4, + [153364] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4298), 1, + STATE(4076), 1, sym_comment, - ACTIONS(7519), 35, + ACTIONS(3584), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388655,14 +372006,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156925] = 4, + [153411] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4299), 1, + STATE(4077), 1, sym_comment, - ACTIONS(7521), 35, + ACTIONS(3600), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388698,14 +372049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [156972] = 4, + [153458] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4300), 1, + STATE(4078), 1, sym_comment, - ACTIONS(7523), 35, + ACTIONS(7494), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388741,14 +372092,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157019] = 4, + [153505] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4301), 1, + STATE(4079), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(2404), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388784,14 +372135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157066] = 4, + [153552] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4302), 1, + STATE(4080), 1, sym_comment, - ACTIONS(3662), 35, + ACTIONS(3486), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388827,14 +372178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157113] = 4, + [153599] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4303), 1, + STATE(4081), 1, sym_comment, - ACTIONS(7469), 35, + ACTIONS(3500), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388870,14 +372221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157160] = 4, + [153646] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4304), 1, + STATE(4082), 1, sym_comment, - ACTIONS(7469), 35, + ACTIONS(3490), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388913,14 +372264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157207] = 4, + [153693] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4305), 1, + STATE(4083), 1, sym_comment, - ACTIONS(7469), 35, + ACTIONS(7496), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388956,14 +372307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157254] = 4, + [153740] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4306), 1, + STATE(4084), 1, sym_comment, - ACTIONS(2332), 35, + ACTIONS(3488), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -388999,14 +372350,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157301] = 4, + [153787] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4307), 1, + STATE(4085), 1, sym_comment, - ACTIONS(7525), 35, + ACTIONS(3636), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389042,14 +372393,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157348] = 4, + [153834] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4308), 1, + STATE(4086), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(7498), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389085,14 +372436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157395] = 4, + [153881] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4309), 1, + STATE(4087), 1, sym_comment, - ACTIONS(7527), 35, + ACTIONS(7500), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389128,14 +372479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157442] = 4, + [153928] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4310), 1, + STATE(4088), 1, sym_comment, - ACTIONS(7529), 35, + ACTIONS(7502), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389171,14 +372522,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157489] = 4, + [153975] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4311), 1, + STATE(4089), 1, sym_comment, - ACTIONS(3666), 35, + ACTIONS(3660), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389214,14 +372565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157536] = 4, + [154022] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4312), 1, + STATE(4090), 1, sym_comment, - ACTIONS(3682), 35, + ACTIONS(7504), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389257,14 +372608,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157583] = 4, + [154069] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4313), 1, + STATE(4091), 1, sym_comment, - ACTIONS(7531), 35, + ACTIONS(7506), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389300,14 +372651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157630] = 4, + [154116] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4314), 1, + STATE(4092), 1, sym_comment, - ACTIONS(7469), 35, + ACTIONS(7508), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389343,14 +372694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157677] = 4, + [154163] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4315), 1, + STATE(4093), 1, sym_comment, - ACTIONS(3674), 35, + ACTIONS(7510), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389386,14 +372737,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157724] = 4, + [154210] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4316), 1, + STATE(4094), 1, sym_comment, - ACTIONS(7533), 35, + ACTIONS(7512), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389429,14 +372780,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157771] = 4, + [154257] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4317), 1, + STATE(4095), 1, sym_comment, - ACTIONS(3656), 35, + ACTIONS(7514), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389472,14 +372823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157818] = 4, + [154304] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4318), 1, + STATE(4096), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(7516), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389515,14 +372866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157865] = 4, + [154351] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4319), 1, + STATE(4097), 1, sym_comment, - ACTIONS(7535), 35, + ACTIONS(3582), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389558,14 +372909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157912] = 4, + [154398] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4320), 1, + STATE(4098), 1, sym_comment, - ACTIONS(7537), 35, + ACTIONS(7518), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389601,14 +372952,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [157959] = 4, + [154445] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4321), 1, + STATE(4099), 1, sym_comment, - ACTIONS(7539), 35, + ACTIONS(7520), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389644,14 +372995,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158006] = 4, + [154492] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4322), 1, + STATE(4100), 1, sym_comment, - ACTIONS(7541), 35, + ACTIONS(3628), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389687,14 +373038,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158053] = 4, + [154539] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4323), 1, + STATE(4101), 1, sym_comment, - ACTIONS(7469), 35, + ACTIONS(7474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389730,14 +373081,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158100] = 4, + [154586] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4324), 1, + STATE(4102), 1, sym_comment, - ACTIONS(3486), 35, + ACTIONS(7474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389773,14 +373124,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158147] = 4, + [154633] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4325), 1, + STATE(4103), 1, sym_comment, - ACTIONS(3506), 35, + ACTIONS(3670), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389816,14 +373167,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158194] = 4, + [154680] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4326), 1, + STATE(4104), 1, sym_comment, - ACTIONS(2466), 35, + ACTIONS(7522), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389859,14 +373210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158241] = 4, + [154727] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4327), 1, + STATE(4105), 1, sym_comment, - ACTIONS(3496), 35, + ACTIONS(7474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389902,14 +373253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158288] = 4, + [154774] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4328), 1, + STATE(4106), 1, sym_comment, - ACTIONS(3516), 35, + ACTIONS(7524), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389945,14 +373296,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158335] = 4, + [154821] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4329), 1, + STATE(4107), 1, sym_comment, - ACTIONS(3510), 35, + ACTIONS(7526), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -389988,14 +373339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158382] = 4, + [154868] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4330), 1, + STATE(4108), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(7474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390031,14 +373382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158429] = 4, + [154915] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4331), 1, + STATE(4109), 1, sym_comment, - ACTIONS(3514), 35, + ACTIONS(7474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390074,14 +373425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158476] = 4, + [154962] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4332), 1, + STATE(4110), 1, sym_comment, - ACTIONS(3528), 35, + ACTIONS(3644), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390117,14 +373468,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158523] = 4, + [155009] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4333), 1, + STATE(4111), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3518), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390160,14 +373511,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158570] = 4, + [155056] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4334), 1, + STATE(4112), 1, sym_comment, - ACTIONS(3530), 35, + ACTIONS(7474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390203,14 +373554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158617] = 4, + [155103] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4335), 1, + STATE(4113), 1, sym_comment, - ACTIONS(3502), 35, + ACTIONS(3642), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390246,14 +373597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158664] = 4, + [155150] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4336), 1, + STATE(4114), 1, sym_comment, - ACTIONS(3498), 35, + ACTIONS(7528), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390289,14 +373640,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158711] = 4, + [155197] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4337), 1, + STATE(4115), 1, sym_comment, - ACTIONS(3484), 35, + ACTIONS(3522), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390332,14 +373683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158758] = 4, + [155244] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4338), 1, + STATE(4116), 1, sym_comment, - ACTIONS(3616), 35, + ACTIONS(3526), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390375,14 +373726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158805] = 4, + [155291] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4339), 1, + STATE(4117), 1, sym_comment, - ACTIONS(3684), 35, + ACTIONS(3524), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390418,14 +373769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158852] = 4, + [155338] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4340), 1, + STATE(4118), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3528), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390461,14 +373812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158899] = 4, + [155385] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4341), 1, + STATE(4119), 1, sym_comment, - ACTIONS(3524), 35, + ACTIONS(7474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390504,14 +373855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158946] = 4, + [155432] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4342), 1, + STATE(4120), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(7530), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390547,14 +373898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [158993] = 4, + [155479] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4343), 1, + STATE(4121), 1, sym_comment, - ACTIONS(3544), 35, + ACTIONS(3592), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390590,14 +373941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159040] = 4, + [155526] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4344), 1, + STATE(4122), 1, sym_comment, - ACTIONS(3694), 35, + ACTIONS(3620), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390633,14 +373984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159087] = 4, + [155573] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4345), 1, + STATE(4123), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3640), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390676,14 +374027,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159134] = 4, + [155620] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4346), 1, + STATE(4124), 1, sym_comment, - ACTIONS(3508), 35, + ACTIONS(3654), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390719,14 +374070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159181] = 4, + [155667] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4347), 1, + STATE(4125), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3658), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390762,14 +374113,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159228] = 4, + [155714] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4348), 1, + STATE(4126), 1, sym_comment, - ACTIONS(3618), 35, + ACTIONS(3630), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390805,14 +374156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159275] = 4, + [155761] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4349), 1, + STATE(4127), 1, sym_comment, - ACTIONS(3614), 35, + ACTIONS(3638), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390848,14 +374199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159322] = 4, + [155808] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4350), 1, + STATE(4128), 1, sym_comment, - ACTIONS(7543), 35, + ACTIONS(7474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390891,14 +374242,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159369] = 4, + [155855] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4351), 1, + STATE(4129), 1, sym_comment, - ACTIONS(7545), 35, + ACTIONS(3534), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390934,14 +374285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159416] = 4, + [155902] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4352), 1, + STATE(4130), 1, sym_comment, - ACTIONS(7547), 35, + ACTIONS(3588), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -390977,14 +374328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159463] = 4, + [155949] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4353), 1, + STATE(4131), 1, sym_comment, - ACTIONS(7549), 35, + ACTIONS(3634), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391020,14 +374371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159510] = 4, + [155996] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4354), 1, + STATE(4132), 1, sym_comment, - ACTIONS(7551), 35, + ACTIONS(3632), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391063,14 +374414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159557] = 4, + [156043] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4355), 1, + STATE(4133), 1, sym_comment, - ACTIONS(3508), 35, + ACTIONS(3602), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391106,14 +374457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159604] = 4, + [156090] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4356), 1, + STATE(4134), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(7532), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391149,14 +374500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159651] = 4, + [156137] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4357), 1, + STATE(4135), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(2438), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391192,14 +374543,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159698] = 4, + [156184] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4358), 1, + STATE(4136), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(7534), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391235,14 +374586,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159745] = 4, + [156231] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4359), 1, + STATE(4137), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(7536), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391278,14 +374629,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159792] = 4, + [156278] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4360), 1, + STATE(4138), 1, sym_comment, - ACTIONS(3524), 35, + ACTIONS(2462), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391321,14 +374672,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159839] = 4, + [156325] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4361), 1, + STATE(4139), 1, sym_comment, - ACTIONS(7553), 35, + ACTIONS(2434), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391364,14 +374715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159886] = 4, + [156372] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4362), 1, + STATE(4140), 1, sym_comment, - ACTIONS(3546), 35, + ACTIONS(3544), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391407,14 +374758,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159933] = 4, + [156419] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4363), 1, + STATE(4141), 1, sym_comment, - ACTIONS(3540), 35, + ACTIONS(3542), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391450,14 +374801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [159980] = 4, + [156466] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4364), 1, + STATE(4142), 1, sym_comment, - ACTIONS(3594), 35, + ACTIONS(3492), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391493,14 +374844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160027] = 4, + [156513] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4365), 1, + STATE(4143), 1, sym_comment, - ACTIONS(7555), 35, + ACTIONS(3580), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391536,14 +374887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160074] = 4, + [156560] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4366), 1, + STATE(4144), 1, sym_comment, - ACTIONS(3542), 35, + ACTIONS(3540), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391579,14 +374930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160121] = 4, + [156607] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4367), 1, + STATE(4145), 1, sym_comment, - ACTIONS(7557), 35, + ACTIONS(3578), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391622,12 +374973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160168] = 4, + [156654] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4368), 1, + STATE(4146), 1, sym_comment, ACTIONS(3538), 35, anon_sym_export, @@ -391665,14 +375016,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160215] = 4, + [156701] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4369), 1, + STATE(4147), 1, sym_comment, - ACTIONS(3524), 35, + ACTIONS(3574), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391708,14 +375059,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160262] = 4, + [156748] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4370), 1, + STATE(4148), 1, sym_comment, - ACTIONS(3524), 35, + ACTIONS(3536), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391751,25 +375102,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160309] = 4, + [156795] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4371), 1, + ACTIONS(7540), 1, + anon_sym_import, + ACTIONS(7543), 1, + anon_sym_pragma, + STATE(4149), 2, sym_comment, - ACTIONS(3548), 35, + aux_sym_program_repeat1, + STATE(4263), 2, + sym_ui_pragma, + sym_ui_import, + ACTIONS(7538), 30, anon_sym_export, - anon_sym_default, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_from, - anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_function, sym_identifier, anon_sym_AT, anon_sym_static, @@ -391793,15 +375148,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_enum, - [160356] = 4, + [156848] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4372), 1, + STATE(4150), 1, sym_comment, - ACTIONS(3524), 35, + ACTIONS(7546), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391837,14 +375191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160403] = 4, + [156895] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4373), 1, + STATE(4151), 1, sym_comment, - ACTIONS(7559), 35, + ACTIONS(7548), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391880,14 +375234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160450] = 4, + [156942] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4374), 1, + STATE(4152), 1, sym_comment, - ACTIONS(3524), 35, + ACTIONS(3622), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391923,14 +375277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160497] = 4, + [156989] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4375), 1, + STATE(4153), 1, sym_comment, - ACTIONS(7561), 35, + ACTIONS(7474), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -391966,14 +375320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160544] = 4, + [157036] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4376), 1, + STATE(4154), 1, sym_comment, - ACTIONS(3658), 35, + ACTIONS(3598), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392009,14 +375363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160591] = 4, + [157083] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4377), 1, + STATE(4155), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(7550), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392052,14 +375406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160638] = 4, + [157130] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4378), 1, + STATE(4156), 1, sym_comment, - ACTIONS(3654), 35, + ACTIONS(3662), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392095,14 +375449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160685] = 4, + [157177] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4379), 1, + STATE(4157), 1, sym_comment, - ACTIONS(3654), 35, + ACTIONS(3590), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392138,14 +375492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160732] = 4, + [157224] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4380), 1, + STATE(4158), 1, sym_comment, - ACTIONS(3648), 35, + ACTIONS(7552), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392181,14 +375535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160779] = 4, + [157271] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4381), 1, + STATE(4159), 1, sym_comment, - ACTIONS(3636), 35, + ACTIONS(3588), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392224,14 +375578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160826] = 4, + [157318] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4382), 1, + STATE(4160), 1, sym_comment, - ACTIONS(3630), 35, + ACTIONS(7554), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392267,14 +375621,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160873] = 4, + [157365] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4383), 1, + STATE(4161), 1, sym_comment, - ACTIONS(3550), 35, + ACTIONS(3604), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392310,14 +375664,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160920] = 4, + [157412] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4384), 1, + STATE(4162), 1, sym_comment, - ACTIONS(3536), 35, + ACTIONS(3664), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392353,14 +375707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [160967] = 4, + [157459] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4385), 1, + STATE(4163), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(7556), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392396,14 +375750,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161014] = 4, + [157506] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4386), 1, + STATE(4164), 1, sym_comment, - ACTIONS(3534), 35, + ACTIONS(3516), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392439,14 +375793,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161061] = 4, + [157553] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4387), 1, + STATE(4165), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3576), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392482,14 +375836,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161108] = 4, + [157600] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4388), 1, + STATE(4166), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3514), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392525,14 +375879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161155] = 4, + [157647] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4389), 1, + STATE(4167), 1, sym_comment, - ACTIONS(3640), 35, + ACTIONS(3512), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392568,14 +375922,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161202] = 4, + [157694] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4390), 1, + STATE(4168), 1, sym_comment, - ACTIONS(2350), 35, + ACTIONS(3576), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392611,14 +375965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161249] = 4, + [157741] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4391), 1, + STATE(4169), 1, sym_comment, - ACTIONS(3504), 35, + ACTIONS(7558), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392654,14 +376008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161296] = 4, + [157788] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4392), 1, + STATE(4170), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3572), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392697,14 +376051,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161343] = 4, + [157835] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4393), 1, + STATE(4171), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3666), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392740,14 +376094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161390] = 4, + [157882] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4394), 1, + STATE(4172), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3668), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392783,14 +376137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161437] = 4, + [157929] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4395), 1, + STATE(4173), 1, sym_comment, - ACTIONS(2442), 35, + ACTIONS(2370), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392826,14 +376180,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161484] = 4, + [157976] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4396), 1, + STATE(4174), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3494), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392869,14 +376223,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161531] = 4, + [158023] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4397), 1, + STATE(4175), 1, sym_comment, - ACTIONS(3672), 35, + ACTIONS(7560), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392912,14 +376266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161578] = 4, + [158070] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4398), 1, + STATE(4176), 1, sym_comment, - ACTIONS(3500), 35, + ACTIONS(7562), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392955,14 +376309,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161625] = 4, + [158117] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4399), 1, + STATE(4177), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3588), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -392998,14 +376352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161672] = 4, + [158164] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4400), 1, + STATE(4178), 1, sym_comment, - ACTIONS(7563), 35, + ACTIONS(3546), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393041,14 +376395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161719] = 4, + [158211] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4401), 1, + STATE(4179), 1, sym_comment, - ACTIONS(7565), 35, + ACTIONS(3678), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393084,14 +376438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161766] = 4, + [158258] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4402), 1, + STATE(4180), 1, sym_comment, - ACTIONS(3568), 35, + ACTIONS(3680), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393127,14 +376481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161813] = 4, + [158305] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4403), 1, + STATE(4181), 1, sym_comment, - ACTIONS(3700), 35, + ACTIONS(3680), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393170,14 +376524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161860] = 4, + [158352] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4404), 1, + STATE(4182), 1, sym_comment, - ACTIONS(3698), 35, + ACTIONS(7564), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393213,14 +376567,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161907] = 4, + [158399] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4405), 1, + STATE(4183), 1, sym_comment, - ACTIONS(3692), 35, + ACTIONS(7566), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393256,14 +376610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [161954] = 4, + [158446] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4406), 1, + STATE(4184), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(7568), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393299,14 +376653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162001] = 4, + [158493] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4407), 1, + STATE(4185), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(7570), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393342,14 +376696,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162048] = 4, + [158540] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4408), 1, + STATE(4186), 1, sym_comment, - ACTIONS(3688), 35, + ACTIONS(3622), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393385,14 +376739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162095] = 4, + [158587] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4409), 1, + STATE(4187), 1, sym_comment, - ACTIONS(2434), 35, + ACTIONS(3622), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393428,14 +376782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162142] = 4, + [158634] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4410), 1, + STATE(4188), 1, sym_comment, - ACTIONS(3628), 35, + ACTIONS(3626), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393471,14 +376825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162189] = 4, + [158681] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4411), 1, + STATE(4189), 1, sym_comment, - ACTIONS(2328), 35, + ACTIONS(3624), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393514,14 +376868,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162236] = 4, + [158728] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4412), 1, + STATE(4190), 1, sym_comment, - ACTIONS(3592), 35, + ACTIONS(3622), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393557,14 +376911,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162283] = 4, + [158775] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4413), 1, + STATE(4191), 1, sym_comment, - ACTIONS(3676), 35, + ACTIONS(2458), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393600,14 +376954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162330] = 4, + [158822] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4414), 1, + STATE(4192), 1, sym_comment, - ACTIONS(3520), 35, + ACTIONS(3622), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393643,14 +376997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162377] = 4, + [158869] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4415), 1, + STATE(4193), 1, sym_comment, - ACTIONS(3552), 35, + ACTIONS(3622), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393686,14 +377040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162424] = 4, + [158916] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4416), 1, + STATE(4194), 1, sym_comment, - ACTIONS(3494), 35, + ACTIONS(3566), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393729,14 +377083,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162471] = 4, + [158963] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4417), 1, + STATE(4195), 1, sym_comment, - ACTIONS(3678), 35, + ACTIONS(3684), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393772,14 +377126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162518] = 4, + [159010] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4418), 1, + STATE(4196), 1, sym_comment, - ACTIONS(3554), 35, + ACTIONS(3700), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393815,14 +377169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162565] = 4, + [159057] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4419), 1, + STATE(4197), 1, sym_comment, - ACTIONS(3574), 35, + ACTIONS(3684), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393858,14 +377212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162612] = 4, + [159104] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4420), 1, + STATE(4198), 1, sym_comment, - ACTIONS(3590), 35, + ACTIONS(3674), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393901,14 +377255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162659] = 4, + [159151] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4421), 1, + STATE(4199), 1, sym_comment, - ACTIONS(3632), 35, + ACTIONS(3564), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393944,14 +377298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162706] = 4, + [159198] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4422), 1, + STATE(4200), 1, sym_comment, - ACTIONS(3588), 35, + ACTIONS(3564), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -393987,14 +377341,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162753] = 4, + [159245] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4423), 1, + STATE(4201), 1, sym_comment, - ACTIONS(3680), 35, + ACTIONS(3682), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394030,14 +377384,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162800] = 4, + [159292] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4424), 1, + STATE(4202), 1, sym_comment, - ACTIONS(3586), 35, + ACTIONS(3702), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394073,14 +377427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162847] = 4, + [159339] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4425), 1, + STATE(4203), 1, sym_comment, - ACTIONS(3584), 35, + ACTIONS(3520), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394116,14 +377470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162894] = 4, + [159386] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4426), 1, + STATE(4204), 1, sym_comment, - ACTIONS(3582), 35, + ACTIONS(3618), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394159,14 +377513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162941] = 4, + [159433] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4427), 1, + STATE(4205), 1, sym_comment, - ACTIONS(3518), 35, + ACTIONS(3672), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394202,14 +377556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [162988] = 4, + [159480] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4428), 1, + STATE(4206), 1, sym_comment, - ACTIONS(3558), 35, + ACTIONS(3616), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394245,14 +377599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163035] = 4, + [159527] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4429), 1, + STATE(4207), 1, sym_comment, - ACTIONS(3582), 35, + ACTIONS(3594), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394288,14 +377642,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163082] = 4, + [159574] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4430), 1, + STATE(4208), 1, sym_comment, - ACTIONS(7567), 35, + ACTIONS(3614), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394331,14 +377685,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163129] = 4, + [159621] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4431), 1, + STATE(4209), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3614), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394374,14 +377728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163176] = 4, + [159668] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4432), 1, + STATE(4210), 1, sym_comment, - ACTIONS(3668), 35, + ACTIONS(3476), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394417,14 +377771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163223] = 4, + [159715] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4433), 1, + STATE(4211), 1, sym_comment, - ACTIONS(3686), 35, + ACTIONS(3694), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394460,14 +377814,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163270] = 4, + [159762] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4434), 1, + STATE(4212), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3562), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394503,14 +377857,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163317] = 4, + [159809] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4435), 1, + STATE(4213), 1, sym_comment, - ACTIONS(7569), 35, + ACTIONS(3560), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394546,14 +377900,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163364] = 4, + [159856] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4436), 1, + STATE(4214), 1, sym_comment, - ACTIONS(7571), 35, + ACTIONS(3558), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394589,14 +377943,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163411] = 4, + [159903] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4437), 1, + STATE(4215), 1, sym_comment, - ACTIONS(3582), 35, + ACTIONS(3556), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394632,14 +377986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163458] = 4, + [159950] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4438), 1, + STATE(4216), 1, sym_comment, - ACTIONS(3690), 35, + ACTIONS(3606), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394675,14 +378029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163505] = 4, + [159997] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4439), 1, + STATE(4217), 1, sym_comment, - ACTIONS(3578), 35, + ACTIONS(3554), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394718,14 +378072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163552] = 4, + [160044] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4440), 1, + STATE(4218), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3552), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394761,14 +378115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163599] = 4, + [160091] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4441), 1, + STATE(4219), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3696), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394804,14 +378158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163646] = 4, + [160138] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4442), 1, + STATE(4220), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3550), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394847,14 +378201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163693] = 4, + [160185] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4443), 1, + STATE(4221), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3548), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394890,14 +378244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163740] = 4, + [160232] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4444), 1, + STATE(4222), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3608), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394933,14 +378287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163787] = 4, + [160279] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4445), 1, + STATE(4223), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3610), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -394976,14 +378330,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163834] = 4, + [160326] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4446), 1, + STATE(4224), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3698), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395019,14 +378373,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163881] = 4, + [160373] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4447), 1, + STATE(4225), 1, sym_comment, - ACTIONS(3696), 35, + ACTIONS(3698), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395062,14 +378416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163928] = 4, + [160420] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4448), 1, + STATE(4226), 1, sym_comment, - ACTIONS(3576), 35, + ACTIONS(3596), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395105,14 +378459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [163975] = 4, + [160467] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4449), 1, + STATE(4227), 1, sym_comment, - ACTIONS(3642), 35, + ACTIONS(3656), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395148,14 +378502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [164022] = 4, + [160514] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4450), 1, + STATE(4228), 1, sym_comment, - ACTIONS(3644), 35, + ACTIONS(3614), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395191,14 +378545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [164069] = 4, + [160561] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4451), 1, + STATE(4229), 1, sym_comment, - ACTIONS(3646), 35, + ACTIONS(7572), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395234,14 +378588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [164116] = 4, + [160608] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4452), 1, + STATE(4230), 1, sym_comment, - ACTIONS(3652), 35, + ACTIONS(7574), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395277,14 +378631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [164163] = 4, + [160655] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4453), 1, + STATE(4231), 1, sym_comment, - ACTIONS(3664), 35, + ACTIONS(7576), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395320,14 +378674,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [164210] = 4, + [160702] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4454), 1, + STATE(4232), 1, sym_comment, - ACTIONS(3626), 35, + ACTIONS(3532), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395363,14 +378717,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [164257] = 4, + [160749] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4455), 1, + STATE(4233), 1, sym_comment, - ACTIONS(3488), 35, + ACTIONS(3612), 35, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395406,18 +378760,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [164304] = 4, + [160796] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4456), 1, + STATE(4234), 1, sym_comment, - ACTIONS(7573), 34, + ACTIONS(7578), 35, anon_sym_export, anon_sym_default, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_from, anon_sym_var, anon_sym_let, @@ -395448,32 +378803,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [164350] = 12, + [160843] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3265), 1, + ACTIONS(3272), 1, anon_sym_LBRACE, - ACTIONS(7575), 1, + ACTIONS(7580), 1, sym_identifier, - ACTIONS(7579), 1, + ACTIONS(7584), 1, anon_sym_default, - ACTIONS(7581), 1, + ACTIONS(7586), 1, anon_sym_COLON, - ACTIONS(7583), 1, - anon_sym_DOT, ACTIONS(7588), 1, + anon_sym_DOT, + ACTIONS(7593), 1, anon_sym_on, - STATE(4262), 1, + STATE(4160), 1, sym_ui_object_initializer, - STATE(4457), 1, + STATE(4235), 1, sym_comment, - ACTIONS(7585), 3, + ACTIONS(7590), 3, anon_sym_readonly, anon_sym_property, anon_sym_required, - ACTIONS(7577), 24, + ACTIONS(7582), 24, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -395498,7 +378853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_signal, anon_sym_component, - [164412] = 10, + [160905] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -395507,15 +378862,15 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(15), 1, anon_sym_AT, - STATE(4458), 1, + STATE(4236), 1, sym_comment, - STATE(4478), 1, + STATE(4268), 1, aux_sym_ui_annotated_object_repeat1, - STATE(4504), 1, + STATE(4274), 1, sym_ui_annotation, - STATE(6609), 1, + STATE(6392), 1, sym_ui_nested_identifier, - STATE(8605), 1, + STATE(8370), 1, sym_ui_object_definition, ACTIONS(11), 28, anon_sym_export, @@ -395546,14 +378901,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [164470] = 4, + [160963] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4459), 1, + STATE(4237), 1, sym_comment, - ACTIONS(7590), 34, + ACTIONS(7595), 34, anon_sym_export, anon_sym_default, anon_sym_type, @@ -395588,92 +378943,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_enum, - [164516] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(3225), 1, - anon_sym_namespace, - ACTIONS(3227), 1, - anon_sym_import, - ACTIONS(3229), 1, - anon_sym_var, - ACTIONS(3231), 1, - anon_sym_let, - ACTIONS(3233), 1, - anon_sym_const, - ACTIONS(3237), 1, - anon_sym_class, - ACTIONS(3239), 1, - anon_sym_async, - ACTIONS(3241), 1, - anon_sym_function, - ACTIONS(3243), 1, - anon_sym_declare, - ACTIONS(3247), 1, - anon_sym_abstract, - ACTIONS(3249), 1, - anon_sym_interface, - ACTIONS(3251), 1, - anon_sym_enum, - ACTIONS(3323), 1, - anon_sym_type, - ACTIONS(3325), 1, - anon_sym_module, - ACTIONS(3327), 1, - anon_sym_global, - STATE(1291), 1, - sym_declaration, - STATE(1298), 1, - sym_internal_module, - STATE(4460), 1, - sym_comment, - STATE(6249), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - STATE(1302), 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, - [164601] = 9, + [161009] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(7592), 1, - sym_identifier, - STATE(4461), 1, + STATE(4238), 1, sym_comment, - STATE(5569), 1, - sym_ui_nested_identifier, - STATE(6104), 1, - sym_string, - ACTIONS(7594), 28, + ACTIONS(7597), 34, anon_sym_export, + anon_sym_default, anon_sym_type, anon_sym_namespace, anon_sym_from, + anon_sym_var, anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_function, + sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -395695,54 +378984,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [164656] = 24, + anon_sym_enum, + [161055] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(3111), 1, + ACTIONS(2957), 1, anon_sym_namespace, - ACTIONS(3113), 1, + ACTIONS(2963), 1, anon_sym_import, - ACTIONS(3115), 1, + ACTIONS(2965), 1, anon_sym_var, - ACTIONS(3117), 1, + ACTIONS(2967), 1, anon_sym_let, - ACTIONS(3119), 1, + ACTIONS(2969), 1, anon_sym_const, - ACTIONS(3123), 1, + ACTIONS(2977), 1, anon_sym_class, - ACTIONS(3125), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(3127), 1, + ACTIONS(2981), 1, anon_sym_function, - ACTIONS(3129), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(2991), 1, anon_sym_declare, - ACTIONS(3133), 1, + ACTIONS(2995), 1, anon_sym_abstract, - ACTIONS(3135), 1, + ACTIONS(2997), 1, anon_sym_interface, - ACTIONS(3137), 1, + ACTIONS(2999), 1, anon_sym_enum, - ACTIONS(3317), 1, + ACTIONS(3007), 1, anon_sym_type, - ACTIONS(3319), 1, + ACTIONS(3009), 1, anon_sym_module, - ACTIONS(3321), 1, + ACTIONS(3011), 1, anon_sym_global, - STATE(4326), 1, + STATE(1582), 1, sym_internal_module, - STATE(4335), 1, + STATE(1643), 1, sym_declaration, - STATE(4462), 1, + STATE(4239), 1, sym_comment, - STATE(6240), 1, + STATE(5679), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(4255), 13, + STATE(1574), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -395756,54 +379046,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [164741] = 24, + [161140] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3225), 1, + ACTIONS(3367), 1, + anon_sym_type, + ACTIONS(3369), 1, anon_sym_namespace, - ACTIONS(3227), 1, + ACTIONS(3371), 1, anon_sym_import, - ACTIONS(3229), 1, + ACTIONS(3373), 1, anon_sym_var, - ACTIONS(3231), 1, + ACTIONS(3375), 1, anon_sym_let, - ACTIONS(3233), 1, + ACTIONS(3377), 1, anon_sym_const, - ACTIONS(3237), 1, + ACTIONS(3379), 1, anon_sym_class, - ACTIONS(3239), 1, + ACTIONS(3381), 1, anon_sym_async, - ACTIONS(3241), 1, + ACTIONS(3383), 1, anon_sym_function, - ACTIONS(3243), 1, + ACTIONS(3385), 1, anon_sym_declare, - ACTIONS(3245), 1, + ACTIONS(3387), 1, anon_sym_module, - ACTIONS(3247), 1, + ACTIONS(3389), 1, anon_sym_abstract, - ACTIONS(3249), 1, + ACTIONS(3391), 1, + anon_sym_global, + ACTIONS(3393), 1, anon_sym_interface, - ACTIONS(3251), 1, + ACTIONS(3395), 1, anon_sym_enum, - ACTIONS(3323), 1, - anon_sym_type, - ACTIONS(7596), 1, - anon_sym_default, - STATE(1266), 1, - sym_declaration, - STATE(1298), 1, - sym_internal_module, - STATE(4463), 1, + STATE(4240), 1, sym_comment, - STATE(6249), 1, + STATE(5528), 1, + sym_internal_module, + STATE(5840), 1, + sym_declaration, + STATE(5856), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(1302), 13, + STATE(5802), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -395817,54 +379107,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [164826] = 24, + [161225] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3111), 1, + ACTIONS(3115), 1, anon_sym_namespace, - ACTIONS(3113), 1, + ACTIONS(3117), 1, anon_sym_import, - ACTIONS(3115), 1, + ACTIONS(3119), 1, anon_sym_var, - ACTIONS(3117), 1, + ACTIONS(3121), 1, anon_sym_let, - ACTIONS(3119), 1, - anon_sym_const, ACTIONS(3123), 1, + anon_sym_const, + ACTIONS(3127), 1, anon_sym_class, - ACTIONS(3125), 1, + ACTIONS(3129), 1, anon_sym_async, - ACTIONS(3127), 1, + ACTIONS(3131), 1, anon_sym_function, - ACTIONS(3129), 1, + ACTIONS(3133), 1, anon_sym_declare, - ACTIONS(3131), 1, + ACTIONS(3135), 1, anon_sym_module, - ACTIONS(3133), 1, + ACTIONS(3137), 1, anon_sym_abstract, - ACTIONS(3135), 1, + ACTIONS(3139), 1, anon_sym_interface, - ACTIONS(3137), 1, + ACTIONS(3141), 1, anon_sym_enum, - ACTIONS(3317), 1, + ACTIONS(3323), 1, anon_sym_type, - ACTIONS(7598), 1, + ACTIONS(7599), 1, anon_sym_default, - STATE(4324), 1, - sym_declaration, - STATE(4326), 1, + STATE(1454), 1, sym_internal_module, - STATE(4464), 1, + STATE(1460), 1, + sym_declaration, + STATE(4241), 1, sym_comment, - STATE(6240), 1, + STATE(5917), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(4255), 13, + STATE(1514), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -395878,54 +379168,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [164911] = 24, + [161310] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(3023), 1, + ACTIONS(2957), 1, anon_sym_namespace, - ACTIONS(3025), 1, + ACTIONS(2963), 1, anon_sym_import, - ACTIONS(3027), 1, + ACTIONS(2965), 1, anon_sym_var, - ACTIONS(3029), 1, + ACTIONS(2967), 1, anon_sym_let, - ACTIONS(3031), 1, + ACTIONS(2969), 1, anon_sym_const, - ACTIONS(3035), 1, + ACTIONS(2977), 1, anon_sym_class, - ACTIONS(3037), 1, + ACTIONS(2979), 1, anon_sym_async, - ACTIONS(3039), 1, + ACTIONS(2981), 1, anon_sym_function, - ACTIONS(3041), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(2991), 1, anon_sym_declare, - ACTIONS(3043), 1, + ACTIONS(2993), 1, anon_sym_module, - ACTIONS(3045), 1, + ACTIONS(2995), 1, anon_sym_abstract, - ACTIONS(3047), 1, + ACTIONS(2997), 1, anon_sym_interface, - ACTIONS(3049), 1, + ACTIONS(2999), 1, anon_sym_enum, - ACTIONS(3329), 1, + ACTIONS(3007), 1, anon_sym_type, - ACTIONS(7600), 1, + ACTIONS(7601), 1, anon_sym_default, - STATE(1060), 1, - sym_declaration, - STATE(1079), 1, + STATE(1582), 1, sym_internal_module, - STATE(4465), 1, + STATE(1637), 1, + sym_declaration, + STATE(4242), 1, sym_comment, - STATE(5961), 1, + STATE(5679), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(1092), 13, + STATE(1574), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -395939,54 +379229,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [164996] = 24, + [161395] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3187), 1, + ACTIONS(3153), 1, anon_sym_namespace, - ACTIONS(3189), 1, + ACTIONS(3155), 1, anon_sym_import, - ACTIONS(3191), 1, + ACTIONS(3157), 1, anon_sym_var, - ACTIONS(3193), 1, + ACTIONS(3159), 1, anon_sym_let, - ACTIONS(3195), 1, + ACTIONS(3161), 1, anon_sym_const, - ACTIONS(3199), 1, + ACTIONS(3165), 1, anon_sym_class, - ACTIONS(3201), 1, + ACTIONS(3167), 1, anon_sym_async, - ACTIONS(3203), 1, + ACTIONS(3169), 1, anon_sym_function, - ACTIONS(3205), 1, + ACTIONS(3171), 1, anon_sym_declare, - ACTIONS(3207), 1, + ACTIONS(3173), 1, anon_sym_module, - ACTIONS(3209), 1, + ACTIONS(3175), 1, anon_sym_abstract, - ACTIONS(3211), 1, + ACTIONS(3177), 1, anon_sym_interface, - ACTIONS(3213), 1, + ACTIONS(3179), 1, anon_sym_enum, - ACTIONS(3311), 1, + ACTIONS(3317), 1, anon_sym_type, - ACTIONS(7602), 1, + ACTIONS(7603), 1, anon_sym_default, - STATE(1487), 1, - sym_internal_module, - STATE(1527), 1, - sym_declaration, - STATE(4466), 1, + STATE(4243), 1, sym_comment, - STATE(6050), 1, + STATE(5618), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(1587), 13, + STATE(7203), 1, + sym_internal_module, + STATE(7514), 1, + sym_declaration, + STATE(7282), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396000,54 +379290,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165081] = 24, + [161480] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3023), 1, + ACTIONS(3367), 1, + anon_sym_type, + ACTIONS(3369), 1, anon_sym_namespace, - ACTIONS(3025), 1, + ACTIONS(3371), 1, anon_sym_import, - ACTIONS(3027), 1, + ACTIONS(3373), 1, anon_sym_var, - ACTIONS(3029), 1, + ACTIONS(3375), 1, anon_sym_let, - ACTIONS(3031), 1, + ACTIONS(3377), 1, anon_sym_const, - ACTIONS(3035), 1, + ACTIONS(3379), 1, anon_sym_class, - ACTIONS(3037), 1, + ACTIONS(3381), 1, anon_sym_async, - ACTIONS(3039), 1, + ACTIONS(3383), 1, anon_sym_function, - ACTIONS(3041), 1, + ACTIONS(3385), 1, anon_sym_declare, - ACTIONS(3045), 1, + ACTIONS(3389), 1, anon_sym_abstract, - ACTIONS(3047), 1, + ACTIONS(3393), 1, anon_sym_interface, - ACTIONS(3049), 1, + ACTIONS(3395), 1, anon_sym_enum, - ACTIONS(3329), 1, - anon_sym_type, - ACTIONS(3331), 1, + ACTIONS(5272), 1, anon_sym_module, - ACTIONS(3333), 1, - anon_sym_global, - STATE(1078), 1, - sym_declaration, - STATE(1079), 1, - sym_internal_module, - STATE(4467), 1, + ACTIONS(7605), 1, + anon_sym_default, + STATE(4244), 1, sym_comment, - STATE(5961), 1, + STATE(5528), 1, + sym_internal_module, + STATE(5571), 1, + sym_declaration, + STATE(5856), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(1092), 13, + STATE(5802), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396061,54 +379351,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165166] = 24, + [161565] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3149), 1, + ACTIONS(3153), 1, anon_sym_namespace, - ACTIONS(3151), 1, + ACTIONS(3155), 1, anon_sym_import, - ACTIONS(3153), 1, + ACTIONS(3157), 1, anon_sym_var, - ACTIONS(3155), 1, + ACTIONS(3159), 1, anon_sym_let, - ACTIONS(3157), 1, - anon_sym_const, ACTIONS(3161), 1, + anon_sym_const, + ACTIONS(3165), 1, anon_sym_class, - ACTIONS(3163), 1, + ACTIONS(3167), 1, anon_sym_async, - ACTIONS(3165), 1, + ACTIONS(3169), 1, anon_sym_function, - ACTIONS(3167), 1, - anon_sym_declare, ACTIONS(3171), 1, + anon_sym_declare, + ACTIONS(3175), 1, anon_sym_abstract, - ACTIONS(3173), 1, + ACTIONS(3177), 1, anon_sym_interface, - ACTIONS(3175), 1, + ACTIONS(3179), 1, anon_sym_enum, - ACTIONS(3295), 1, + ACTIONS(3317), 1, anon_sym_type, - ACTIONS(3297), 1, + ACTIONS(3319), 1, anon_sym_module, - ACTIONS(3299), 1, + ACTIONS(3321), 1, anon_sym_global, - STATE(4468), 1, + STATE(4245), 1, sym_comment, - STATE(6284), 1, + STATE(5618), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(8007), 1, - sym_declaration, - STATE(8045), 1, + STATE(7203), 1, sym_internal_module, - STATE(8195), 13, + STATE(7236), 1, + sym_declaration, + STATE(7282), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396122,54 +379412,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165251] = 24, + [161650] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3149), 1, + ACTIONS(3115), 1, anon_sym_namespace, - ACTIONS(3151), 1, + ACTIONS(3117), 1, anon_sym_import, - ACTIONS(3153), 1, + ACTIONS(3119), 1, anon_sym_var, - ACTIONS(3155), 1, + ACTIONS(3121), 1, anon_sym_let, - ACTIONS(3157), 1, + ACTIONS(3123), 1, anon_sym_const, - ACTIONS(3161), 1, + ACTIONS(3127), 1, anon_sym_class, - ACTIONS(3163), 1, + ACTIONS(3129), 1, anon_sym_async, - ACTIONS(3165), 1, + ACTIONS(3131), 1, anon_sym_function, - ACTIONS(3167), 1, + ACTIONS(3133), 1, anon_sym_declare, - ACTIONS(3169), 1, - anon_sym_module, - ACTIONS(3171), 1, + ACTIONS(3137), 1, anon_sym_abstract, - ACTIONS(3173), 1, + ACTIONS(3139), 1, anon_sym_interface, - ACTIONS(3175), 1, + ACTIONS(3141), 1, anon_sym_enum, - ACTIONS(3295), 1, + ACTIONS(3323), 1, anon_sym_type, - ACTIONS(7604), 1, - anon_sym_default, - STATE(4469), 1, + ACTIONS(3325), 1, + anon_sym_module, + ACTIONS(3327), 1, + anon_sym_global, + STATE(1454), 1, + sym_internal_module, + STATE(1517), 1, + sym_declaration, + STATE(4246), 1, sym_comment, - STATE(6284), 1, + STATE(5917), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(7822), 1, - sym_declaration, - STATE(8045), 1, - sym_internal_module, - STATE(8195), 13, + STATE(1514), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396183,54 +379473,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165336] = 24, + [161735] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2957), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3077), 1, anon_sym_namespace, - ACTIONS(2963), 1, + ACTIONS(3079), 1, anon_sym_import, - ACTIONS(2965), 1, + ACTIONS(3081), 1, anon_sym_var, - ACTIONS(2967), 1, + ACTIONS(3083), 1, anon_sym_let, - ACTIONS(2969), 1, + ACTIONS(3085), 1, anon_sym_const, - ACTIONS(2977), 1, + ACTIONS(3089), 1, anon_sym_class, - ACTIONS(2979), 1, + ACTIONS(3091), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(3093), 1, anon_sym_function, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(2991), 1, + ACTIONS(3095), 1, anon_sym_declare, - ACTIONS(2993), 1, - anon_sym_module, - ACTIONS(2995), 1, + ACTIONS(3099), 1, anon_sym_abstract, - ACTIONS(2997), 1, + ACTIONS(3101), 1, anon_sym_interface, - ACTIONS(2999), 1, + ACTIONS(3103), 1, anon_sym_enum, - ACTIONS(3007), 1, + ACTIONS(3335), 1, anon_sym_type, - ACTIONS(7606), 1, - anon_sym_default, - STATE(1743), 1, - sym_internal_module, - STATE(1763), 1, + ACTIONS(3337), 1, + anon_sym_module, + ACTIONS(3339), 1, + anon_sym_global, + STATE(1303), 1, sym_declaration, - STATE(4470), 1, + STATE(1309), 1, + sym_internal_module, + STATE(4247), 1, sym_comment, - STATE(5967), 1, + STATE(5953), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(1751), 13, + STATE(1313), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396244,54 +379534,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165421] = 24, + [161820] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3187), 1, + ACTIONS(3077), 1, anon_sym_namespace, - ACTIONS(3189), 1, + ACTIONS(3079), 1, anon_sym_import, - ACTIONS(3191), 1, + ACTIONS(3081), 1, anon_sym_var, - ACTIONS(3193), 1, + ACTIONS(3083), 1, anon_sym_let, - ACTIONS(3195), 1, + ACTIONS(3085), 1, anon_sym_const, - ACTIONS(3199), 1, + ACTIONS(3089), 1, anon_sym_class, - ACTIONS(3201), 1, + ACTIONS(3091), 1, anon_sym_async, - ACTIONS(3203), 1, + ACTIONS(3093), 1, anon_sym_function, - ACTIONS(3205), 1, + ACTIONS(3095), 1, anon_sym_declare, - ACTIONS(3209), 1, + ACTIONS(3097), 1, + anon_sym_module, + ACTIONS(3099), 1, anon_sym_abstract, - ACTIONS(3211), 1, + ACTIONS(3101), 1, anon_sym_interface, - ACTIONS(3213), 1, + ACTIONS(3103), 1, anon_sym_enum, - ACTIONS(3311), 1, + ACTIONS(3335), 1, anon_sym_type, - ACTIONS(3313), 1, - anon_sym_module, - ACTIONS(3315), 1, - anon_sym_global, - STATE(1487), 1, - sym_internal_module, - STATE(1569), 1, + ACTIONS(7607), 1, + anon_sym_default, + STATE(1281), 1, sym_declaration, - STATE(4471), 1, + STATE(1309), 1, + sym_internal_module, + STATE(4248), 1, sym_comment, - STATE(6050), 1, + STATE(5953), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(1587), 13, + STATE(1313), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396305,54 +379595,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165506] = 24, + [161905] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3061), 1, + ACTIONS(3191), 1, anon_sym_namespace, - ACTIONS(3063), 1, + ACTIONS(3193), 1, anon_sym_import, - ACTIONS(3065), 1, + ACTIONS(3195), 1, anon_sym_var, - ACTIONS(3067), 1, + ACTIONS(3197), 1, anon_sym_let, - ACTIONS(3069), 1, + ACTIONS(3199), 1, anon_sym_const, - ACTIONS(3073), 1, + ACTIONS(3203), 1, anon_sym_class, - ACTIONS(3075), 1, + ACTIONS(3205), 1, anon_sym_async, - ACTIONS(3077), 1, + ACTIONS(3207), 1, anon_sym_function, - ACTIONS(3079), 1, + ACTIONS(3209), 1, anon_sym_declare, - ACTIONS(3083), 1, + ACTIONS(3211), 1, + anon_sym_module, + ACTIONS(3213), 1, anon_sym_abstract, - ACTIONS(3085), 1, + ACTIONS(3215), 1, anon_sym_interface, - ACTIONS(3087), 1, + ACTIONS(3217), 1, anon_sym_enum, - ACTIONS(3335), 1, + ACTIONS(3329), 1, anon_sym_type, - ACTIONS(3337), 1, - anon_sym_module, - ACTIONS(3339), 1, - anon_sym_global, - STATE(4134), 1, + ACTIONS(7609), 1, + anon_sym_default, + STATE(4064), 1, sym_internal_module, - STATE(4140), 1, + STATE(4132), 1, sym_declaration, - STATE(4472), 1, + STATE(4249), 1, sym_comment, - STATE(6181), 1, + STATE(5769), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(4080), 13, + STATE(4079), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396366,54 +379656,100 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165591] = 24, + [161990] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2957), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(7611), 1, + sym_identifier, + STATE(4250), 1, + sym_comment, + STATE(5345), 1, + sym_ui_nested_identifier, + STATE(5904), 1, + sym_string, + ACTIONS(7613), 28, + anon_sym_export, + anon_sym_type, anon_sym_namespace, - ACTIONS(2963), 1, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [162045] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(3191), 1, + anon_sym_namespace, + ACTIONS(3193), 1, anon_sym_import, - ACTIONS(2965), 1, + ACTIONS(3195), 1, anon_sym_var, - ACTIONS(2967), 1, + ACTIONS(3197), 1, anon_sym_let, - ACTIONS(2969), 1, + ACTIONS(3199), 1, anon_sym_const, - ACTIONS(2977), 1, + ACTIONS(3203), 1, anon_sym_class, - ACTIONS(2979), 1, + ACTIONS(3205), 1, anon_sym_async, - ACTIONS(2981), 1, + ACTIONS(3207), 1, anon_sym_function, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(2991), 1, + ACTIONS(3209), 1, anon_sym_declare, - ACTIONS(2995), 1, + ACTIONS(3213), 1, anon_sym_abstract, - ACTIONS(2997), 1, + ACTIONS(3215), 1, anon_sym_interface, - ACTIONS(2999), 1, + ACTIONS(3217), 1, anon_sym_enum, - ACTIONS(3007), 1, + ACTIONS(3329), 1, anon_sym_type, - ACTIONS(3009), 1, + ACTIONS(3331), 1, anon_sym_module, - ACTIONS(3011), 1, + ACTIONS(3333), 1, anon_sym_global, - STATE(1667), 1, + STATE(4057), 1, sym_declaration, - STATE(1743), 1, + STATE(4064), 1, sym_internal_module, - STATE(4473), 1, + STATE(4251), 1, sym_comment, - STATE(5967), 1, + STATE(5769), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(1751), 13, + STATE(4079), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396427,54 +379763,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165676] = 24, + [162130] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3061), 1, + ACTIONS(3023), 1, anon_sym_namespace, - ACTIONS(3063), 1, + ACTIONS(3025), 1, anon_sym_import, - ACTIONS(3065), 1, + ACTIONS(3027), 1, anon_sym_var, - ACTIONS(3067), 1, + ACTIONS(3029), 1, anon_sym_let, - ACTIONS(3069), 1, + ACTIONS(3031), 1, anon_sym_const, - ACTIONS(3073), 1, + ACTIONS(3035), 1, anon_sym_class, - ACTIONS(3075), 1, + ACTIONS(3037), 1, anon_sym_async, - ACTIONS(3077), 1, + ACTIONS(3039), 1, anon_sym_function, - ACTIONS(3079), 1, + ACTIONS(3041), 1, anon_sym_declare, - ACTIONS(3081), 1, + ACTIONS(3043), 1, anon_sym_module, - ACTIONS(3083), 1, + ACTIONS(3045), 1, anon_sym_abstract, - ACTIONS(3085), 1, + ACTIONS(3047), 1, anon_sym_interface, - ACTIONS(3087), 1, + ACTIONS(3049), 1, anon_sym_enum, - ACTIONS(3335), 1, + ACTIONS(3303), 1, anon_sym_type, - ACTIONS(7608), 1, + ACTIONS(7615), 1, anon_sym_default, - STATE(4134), 1, - sym_internal_module, - STATE(4213), 1, + STATE(1166), 1, sym_declaration, - STATE(4474), 1, + STATE(1176), 1, + sym_internal_module, + STATE(4252), 1, sym_comment, - STATE(6181), 1, + STATE(5984), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(4080), 13, + STATE(1180), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396488,54 +379824,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165761] = 24, + [162215] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3357), 1, - anon_sym_type, - ACTIONS(3359), 1, + ACTIONS(3023), 1, anon_sym_namespace, - ACTIONS(3361), 1, + ACTIONS(3025), 1, anon_sym_import, - ACTIONS(3363), 1, + ACTIONS(3027), 1, anon_sym_var, - ACTIONS(3365), 1, + ACTIONS(3029), 1, anon_sym_let, - ACTIONS(3367), 1, + ACTIONS(3031), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(3035), 1, anon_sym_class, - ACTIONS(3371), 1, + ACTIONS(3037), 1, anon_sym_async, - ACTIONS(3373), 1, + ACTIONS(3039), 1, anon_sym_function, - ACTIONS(3375), 1, + ACTIONS(3041), 1, anon_sym_declare, - ACTIONS(3377), 1, - anon_sym_module, - ACTIONS(3379), 1, + ACTIONS(3045), 1, anon_sym_abstract, - ACTIONS(3381), 1, - anon_sym_global, - ACTIONS(3383), 1, + ACTIONS(3047), 1, anon_sym_interface, - ACTIONS(3385), 1, + ACTIONS(3049), 1, anon_sym_enum, - STATE(4475), 1, - sym_comment, - STATE(5916), 1, + ACTIONS(3303), 1, + anon_sym_type, + ACTIONS(3305), 1, + anon_sym_module, + ACTIONS(3307), 1, + anon_sym_global, + STATE(1175), 1, + sym_declaration, + STATE(1176), 1, sym_internal_module, - STATE(6130), 1, + STATE(4253), 1, + sym_comment, + STATE(5984), 1, aux_sym_export_statement_repeat1, - STATE(6251), 1, - sym_declaration, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(6274), 13, + STATE(1180), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396549,54 +379885,54 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165846] = 24, + [162300] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(3357), 1, - anon_sym_type, - ACTIONS(3359), 1, + ACTIONS(3229), 1, anon_sym_namespace, - ACTIONS(3361), 1, + ACTIONS(3231), 1, anon_sym_import, - ACTIONS(3363), 1, + ACTIONS(3233), 1, anon_sym_var, - ACTIONS(3365), 1, + ACTIONS(3235), 1, anon_sym_let, - ACTIONS(3367), 1, + ACTIONS(3237), 1, anon_sym_const, - ACTIONS(3369), 1, + ACTIONS(3241), 1, anon_sym_class, - ACTIONS(3371), 1, + ACTIONS(3243), 1, anon_sym_async, - ACTIONS(3373), 1, + ACTIONS(3245), 1, anon_sym_function, - ACTIONS(3375), 1, + ACTIONS(3247), 1, anon_sym_declare, - ACTIONS(3379), 1, + ACTIONS(3251), 1, anon_sym_abstract, - ACTIONS(3383), 1, + ACTIONS(3253), 1, anon_sym_interface, - ACTIONS(3385), 1, + ACTIONS(3255), 1, anon_sym_enum, - ACTIONS(5257), 1, + ACTIONS(3311), 1, + anon_sym_type, + ACTIONS(3313), 1, anon_sym_module, - ACTIONS(7610), 1, - anon_sym_default, - STATE(4476), 1, - sym_comment, - STATE(5756), 1, - sym_declaration, - STATE(5916), 1, + ACTIONS(3315), 1, + anon_sym_global, + STATE(4026), 1, sym_internal_module, - STATE(6130), 1, + STATE(4032), 1, + sym_declaration, + STATE(4254), 1, + sym_comment, + STATE(5815), 1, aux_sym_export_statement_repeat1, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - STATE(6274), 13, + STATE(3972), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -396610,96 +379946,75 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [165931] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [162385] = 24, ACTIONS(5), 1, sym_html_comment, - STATE(4477), 1, - sym_comment, - ACTIONS(7612), 32, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_import, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - sym_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - anon_sym_pragma, - [165975] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7614), 1, + ACTIONS(2989), 1, anon_sym_AT, - STATE(4504), 1, - sym_ui_annotation, - STATE(4478), 2, - sym_comment, - aux_sym_ui_annotated_object_repeat1, - ACTIONS(7460), 29, - anon_sym_export, - anon_sym_type, + ACTIONS(3229), 1, anon_sym_namespace, - anon_sym_from, + ACTIONS(3231), 1, + anon_sym_import, + ACTIONS(3233), 1, + anon_sym_var, + ACTIONS(3235), 1, anon_sym_let, - anon_sym_of, + ACTIONS(3237), 1, + anon_sym_const, + ACTIONS(3241), 1, + anon_sym_class, + ACTIONS(3243), 1, anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(3245), 1, + anon_sym_function, + ACTIONS(3247), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(3249), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [166023] = 4, + ACTIONS(3251), 1, + anon_sym_abstract, + ACTIONS(3253), 1, + anon_sym_interface, + ACTIONS(3255), 1, + anon_sym_enum, + ACTIONS(3311), 1, + anon_sym_type, + ACTIONS(7617), 1, + anon_sym_default, + STATE(4014), 1, + sym_declaration, + STATE(4026), 1, + sym_internal_module, + STATE(4255), 1, + sym_comment, + STATE(5815), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(3972), 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, + [162470] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4479), 1, + STATE(4256), 1, sym_comment, - ACTIONS(7617), 32, + ACTIONS(7619), 32, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -396732,24 +380047,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166067] = 4, + [162514] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4480), 1, + ACTIONS(7621), 1, + sym_identifier, + ACTIONS(7625), 1, + anon_sym_SEMI, + ACTIONS(7627), 1, + sym__automatic_semicolon, + STATE(4257), 1, sym_comment, - ACTIONS(7619), 32, + STATE(6667), 1, + sym_ui_nested_identifier, + ACTIONS(7623), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_import, anon_sym_from, anon_sym_let, anon_sym_of, anon_sym_async, - sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -396771,15 +380091,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - anon_sym_pragma, - [166111] = 4, + [162566] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4481), 1, + STATE(4258), 1, sym_comment, - ACTIONS(7621), 32, + ACTIONS(7629), 32, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -396812,14 +380131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166155] = 4, + [162610] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4482), 1, + STATE(4259), 1, sym_comment, - ACTIONS(7623), 32, + ACTIONS(7631), 32, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -396852,56 +380171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166199] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7625), 1, - sym_identifier, - ACTIONS(7629), 1, - anon_sym_SEMI, - ACTIONS(7631), 1, - sym__automatic_semicolon, - STATE(4483), 1, - sym_comment, - STATE(6923), 1, - sym_ui_nested_identifier, - ACTIONS(7627), 28, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_from, - anon_sym_let, - anon_sym_of, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - 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_property, - anon_sym_signal, - anon_sym_on, - anon_sym_required, - anon_sym_component, - [166251] = 4, + [162654] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4484), 1, + STATE(4260), 1, sym_comment, ACTIONS(7633), 32, anon_sym_export, @@ -396936,12 +380211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166295] = 4, + [162698] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4485), 1, + STATE(4261), 1, sym_comment, ACTIONS(7635), 32, anon_sym_export, @@ -396976,12 +380251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166339] = 4, + [162742] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4486), 1, + STATE(4262), 1, sym_comment, ACTIONS(7637), 32, anon_sym_export, @@ -397016,12 +380291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166383] = 4, + [162786] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4487), 1, + STATE(4263), 1, sym_comment, ACTIONS(7639), 32, anon_sym_export, @@ -397056,12 +380331,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166427] = 4, + [162830] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4488), 1, + STATE(4264), 1, sym_comment, ACTIONS(7641), 32, anon_sym_export, @@ -397096,14 +380371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166471] = 4, + [162874] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4489), 1, + STATE(4265), 1, sym_comment, - ACTIONS(7641), 32, + ACTIONS(7643), 32, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397136,14 +380411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166515] = 4, + [162918] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4490), 1, + STATE(4266), 1, sym_comment, - ACTIONS(7643), 32, + ACTIONS(7637), 32, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397176,12 +380451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166559] = 4, + [162962] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4491), 1, + STATE(4267), 1, sym_comment, ACTIONS(7645), 32, anon_sym_export, @@ -397216,20 +380491,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_required, anon_sym_component, anon_sym_pragma, - [166603] = 7, + [163006] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7), 1, - sym_identifier, - STATE(4492), 1, + ACTIONS(7647), 1, + anon_sym_AT, + STATE(4274), 1, + sym_ui_annotation, + STATE(4268), 2, sym_comment, - STATE(6609), 1, - sym_ui_nested_identifier, - STATE(7677), 1, - sym_ui_object_definition, - ACTIONS(11), 28, + aux_sym_ui_annotated_object_repeat1, + ACTIONS(7461), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397237,6 +380511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_of, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -397258,26 +380533,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [166652] = 6, + [163054] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7647), 1, + STATE(4269), 1, + sym_comment, + ACTIONS(7650), 32, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_import, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, sym_identifier, - STATE(4493), 1, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + anon_sym_pragma, + [163098] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4270), 1, sym_comment, - STATE(8211), 1, - sym_mapped_type_clause, - ACTIONS(7649), 29, + ACTIONS(7652), 32, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_import, anon_sym_from, anon_sym_let, anon_sym_of, anon_sym_async, - anon_sym_new, + sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -397299,20 +380612,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [166699] = 7, + anon_sym_pragma, + [163142] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7651), 1, + ACTIONS(7), 1, sym_identifier, - STATE(4316), 1, - sym_ui_object_definition, - STATE(4494), 1, + STATE(4271), 1, sym_comment, - STATE(6787), 1, + STATE(6392), 1, sym_ui_nested_identifier, - ACTIONS(7653), 28, + STATE(7575), 1, + sym_ui_object_definition, + ACTIONS(11), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397341,18 +380655,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [166748] = 6, + [163191] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7655), 1, + ACTIONS(7654), 1, sym_identifier, - ACTIONS(7659), 1, - anon_sym_DOT, - STATE(4495), 1, + STATE(4272), 1, sym_comment, - ACTIONS(7657), 28, + STATE(7978), 1, + sym_mapped_type_clause, + ACTIONS(7656), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397360,6 +380674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_of, anon_sym_async, + anon_sym_new, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -397381,18 +380696,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [166794] = 6, + [163238] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7625), 1, + ACTIONS(7658), 1, sym_identifier, - STATE(4496), 1, + STATE(4182), 1, + sym_ui_object_definition, + STATE(4273), 1, sym_comment, - STATE(6923), 1, + STATE(6857), 1, sym_ui_nested_identifier, - ACTIONS(7627), 28, + ACTIONS(7660), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397421,14 +380738,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [166840] = 4, + [163287] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4497), 1, + STATE(4274), 1, sym_comment, - ACTIONS(7590), 30, + ACTIONS(7597), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397459,16 +380776,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [166882] = 5, + [163329] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2370), 1, + ACTIONS(7662), 1, + sym_identifier, + ACTIONS(7666), 1, anon_sym_DOT, - STATE(4498), 1, + STATE(4275), 1, sym_comment, - ACTIONS(5989), 29, + ACTIONS(7664), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [163375] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2466), 1, + anon_sym_DOT, + STATE(4276), 1, + sym_comment, + ACTIONS(6068), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397498,14 +380855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [166926] = 4, + [163419] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4499), 1, + STATE(4277), 1, sym_comment, - ACTIONS(7493), 30, + ACTIONS(7498), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397536,18 +380893,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [166968] = 6, + [163461] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7659), 1, + ACTIONS(7668), 1, + sym_identifier, + STATE(4278), 1, + sym_comment, + STATE(6731), 1, + sym_ui_nested_identifier, + ACTIONS(7670), 28, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_from, + anon_sym_let, + anon_sym_of, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + 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_property, + anon_sym_signal, + anon_sym_on, + anon_sym_required, + anon_sym_component, + [163507] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7666), 1, anon_sym_DOT, - ACTIONS(7661), 1, + ACTIONS(7672), 1, sym_identifier, - STATE(4500), 1, + STATE(4279), 1, sym_comment, - ACTIONS(7663), 28, + ACTIONS(7674), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397576,18 +380973,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [167014] = 6, + [163553] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7665), 1, + ACTIONS(7621), 1, sym_identifier, - STATE(4501), 1, + STATE(4280), 1, sym_comment, - STATE(6957), 1, + STATE(6667), 1, sym_ui_nested_identifier, - ACTIONS(7667), 28, + ACTIONS(7623), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397616,14 +381013,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [167060] = 4, + [163599] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4502), 1, + ACTIONS(2470), 1, + anon_sym_DOT, + STATE(4281), 1, sym_comment, - ACTIONS(7475), 30, + ACTIONS(6068), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397632,7 +381031,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_async, sym_identifier, - anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -397654,16 +381052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [167102] = 5, + [163643] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2410), 1, - anon_sym_DOT, - STATE(4503), 1, + STATE(4282), 1, sym_comment, - ACTIONS(5989), 29, + ACTIONS(7502), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397672,6 +381068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_async, sym_identifier, + anon_sym_AT, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -397693,14 +381090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [167146] = 4, + [163685] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4504), 1, + STATE(4283), 1, sym_comment, - ACTIONS(7573), 30, + ACTIONS(7595), 30, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397731,14 +381128,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [167188] = 4, + [163727] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4505), 1, + ACTIONS(7676), 1, + sym_identifier, + STATE(4284), 1, sym_comment, - ACTIONS(7669), 29, + ACTIONS(7678), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397746,7 +381145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_of, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -397768,14 +381166,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [167229] = 4, + [163770] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4506), 1, + STATE(4285), 1, sym_comment, - ACTIONS(7671), 29, + ACTIONS(7680), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397805,16 +381203,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [167270] = 5, + [163811] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7673), 1, + ACTIONS(7682), 1, sym_identifier, - STATE(4507), 1, + STATE(4286), 1, sym_comment, - ACTIONS(7675), 28, + ACTIONS(7684), 28, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397843,16 +381241,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [167313] = 5, + [163854] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7677), 1, - sym_identifier, - STATE(4508), 1, + STATE(4287), 1, sym_comment, - ACTIONS(7679), 28, + ACTIONS(7686), 29, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -397860,6 +381256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_of, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -397881,17 +381278,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_on, anon_sym_required, anon_sym_component, - [167356] = 5, + [163895] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4509), 1, + STATE(4288), 1, sym_comment, - ACTIONS(4343), 2, + ACTIONS(4339), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5595), 19, + ACTIONS(5628), 19, anon_sym_export, anon_sym_as, anon_sym_LBRACE, @@ -397911,18 +381308,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_abstract, anon_sym_extends, - [167391] = 5, + [163930] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4510), 1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(7688), 1, + anon_sym_DOT, + ACTIONS(7690), 1, + anon_sym_QMARK_DOT, + ACTIONS(7692), 1, + anon_sym_LT, + STATE(4289), 1, sym_comment, - ACTIONS(4339), 2, + STATE(4345), 1, + sym_arguments, + STATE(4466), 1, + sym_type_arguments, + ACTIONS(5546), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5617), 19, - anon_sym_export, + ACTIONS(5548), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -397932,38 +381340,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_class, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_AT, - anon_sym_abstract, anon_sym_extends, - [167426] = 11, + [163977] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(4537), 1, - anon_sym_DOT, - ACTIONS(4541), 1, - anon_sym_QMARK_DOT, - ACTIONS(7681), 1, - anon_sym_LT, - STATE(4511), 1, + STATE(4290), 1, sym_comment, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, - sym_type_arguments, - ACTIONS(4535), 2, + ACTIONS(4347), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4531), 13, + ACTIONS(5626), 19, + anon_sym_export, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -397973,33 +381365,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_class, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_AT, + anon_sym_abstract, anon_sym_extends, - [167473] = 11, + [164012] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(7681), 1, - anon_sym_LT, - ACTIONS(7683), 1, - anon_sym_DOT, - ACTIONS(7685), 1, - anon_sym_QMARK_DOT, - STATE(4512), 1, + STATE(4291), 1, sym_comment, - STATE(4574), 1, - sym_arguments, - STATE(4661), 1, - sym_type_arguments, - ACTIONS(5515), 2, + ACTIONS(4341), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5517), 13, + ACTIONS(5614), 19, + anon_sym_export, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398009,33 +381395,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, + anon_sym_class, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_AT, + anon_sym_abstract, anon_sym_extends, - [167520] = 11, + [164047] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, + ACTIONS(4501), 1, anon_sym_LPAREN, - ACTIONS(7681), 1, - anon_sym_LT, - ACTIONS(7687), 1, + ACTIONS(4505), 1, anon_sym_DOT, - ACTIONS(7689), 1, + ACTIONS(4509), 1, anon_sym_QMARK_DOT, - STATE(4513), 1, + ACTIONS(7692), 1, + anon_sym_LT, + STATE(4292), 1, sym_comment, - STATE(4566), 1, + STATE(4358), 1, sym_arguments, - STATE(4647), 1, + STATE(4465), 1, sym_type_arguments, - ACTIONS(5521), 2, + ACTIONS(4503), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5523), 13, + ACTIONS(4499), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398049,18 +381440,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [167567] = 5, + [164094] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4514), 1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(7692), 1, + anon_sym_LT, + ACTIONS(7694), 1, + anon_sym_DOT, + ACTIONS(7696), 1, + anon_sym_QMARK_DOT, + STATE(4293), 1, sym_comment, - ACTIONS(4337), 2, + STATE(4351), 1, + sym_arguments, + STATE(4480), 1, + sym_type_arguments, + ACTIONS(5552), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5565), 19, - anon_sym_export, + ACTIONS(5554), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398070,25 +381472,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, - anon_sym_class, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_AT, - anon_sym_abstract, anon_sym_extends, - [167602] = 5, + [164141] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2438), 1, + ACTIONS(2482), 1, anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4515), 1, + STATE(4294), 1, sym_comment, - ACTIONS(2440), 19, + ACTIONS(2484), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398108,16 +381505,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [167636] = 5, + [164175] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2474), 1, + ACTIONS(2366), 1, anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4516), 1, + STATE(4295), 1, sym_comment, - ACTIONS(2476), 19, + ACTIONS(2368), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398137,17 +381534,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [167670] = 5, + [164209] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4517), 1, + STATE(4296), 1, sym_comment, - ACTIONS(5957), 2, + ACTIONS(5858), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5959), 17, + ACTIONS(5860), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398165,17 +381562,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [167703] = 5, + [164242] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4518), 1, + STATE(4297), 1, sym_comment, - ACTIONS(5929), 2, + ACTIONS(5886), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5931), 17, + ACTIONS(5888), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398193,17 +381590,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [167736] = 5, + [164275] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4519), 1, + STATE(4298), 1, sym_comment, - ACTIONS(5867), 2, + ACTIONS(5830), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5869), 17, + ACTIONS(5832), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398221,17 +381618,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [167769] = 5, + [164308] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4520), 1, + STATE(4299), 1, sym_comment, - ACTIONS(5867), 2, + ACTIONS(5702), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5869), 17, + ACTIONS(5704), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398249,17 +381646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [167802] = 5, + [164341] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4521), 1, + STATE(4300), 1, sym_comment, - ACTIONS(5925), 2, + ACTIONS(5830), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5927), 17, + ACTIONS(5832), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398277,17 +381674,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [167835] = 5, + [164374] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4522), 1, + STATE(4301), 1, sym_comment, - ACTIONS(5925), 2, + ACTIONS(5940), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5927), 17, + ACTIONS(5942), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398305,45 +381702,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [167868] = 5, + [164407] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2366), 1, + anon_sym_PIPE, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4523), 1, + STATE(4302), 1, sym_comment, - ACTIONS(5925), 2, + ACTIONS(2368), 18, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5927), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_with, + 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, - [167901] = 5, + anon_sym_PIPE_RBRACE, + aux_sym_ui_version_specifier_token1, + [164440] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4524), 1, + STATE(4303), 1, sym_comment, - ACTIONS(5951), 2, + ACTIONS(5770), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5953), 17, + ACTIONS(5772), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398361,17 +381758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [167934] = 5, + [164473] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4525), 1, + STATE(4304), 1, sym_comment, - ACTIONS(5933), 2, + ACTIONS(5858), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5935), 17, + ACTIONS(5860), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398389,45 +381786,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [167967] = 5, + [164506] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4526), 1, - sym_comment, - ACTIONS(5863), 2, + ACTIONS(5522), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5865), 17, + ACTIONS(7692), 1, + anon_sym_LT, + ACTIONS(7698), 1, + anon_sym_DOT, + ACTIONS(7700), 1, + anon_sym_is, + STATE(4305), 1, + sym_comment, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4603), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [168000] = 5, + [164547] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4527), 1, + STATE(4306), 1, sym_comment, - ACTIONS(5921), 2, + ACTIONS(5638), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5923), 17, + ACTIONS(5640), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398445,17 +381846,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168033] = 5, + [164580] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4528), 1, + STATE(4307), 1, sym_comment, - ACTIONS(5871), 2, + ACTIONS(5730), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5873), 17, + ACTIONS(5732), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398473,17 +381874,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168066] = 5, + [164613] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4529), 1, + STATE(4308), 1, sym_comment, - ACTIONS(5875), 2, + ACTIONS(5854), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5877), 17, + ACTIONS(5856), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398501,17 +381902,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168099] = 5, + [164646] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4530), 1, + STATE(4309), 1, sym_comment, - ACTIONS(5871), 2, + ACTIONS(5784), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5873), 17, + ACTIONS(5786), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398529,45 +381930,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168132] = 5, + [164679] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2474), 1, - anon_sym_PIPE, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4531), 1, + STATE(4310), 1, sym_comment, - ACTIONS(2476), 18, - sym__automatic_semicolon, + ACTIONS(5882), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5884), 17, 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_PIPE, anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - aux_sym_ui_version_specifier_token1, - [168165] = 5, + [164712] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4532), 1, + STATE(4311), 1, sym_comment, - ACTIONS(5933), 2, + ACTIONS(5770), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5935), 17, + ACTIONS(5772), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398585,17 +381986,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168198] = 5, + [164745] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4533), 1, + STATE(4312), 1, sym_comment, - ACTIONS(5957), 2, + ACTIONS(5744), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5959), 17, + ACTIONS(5746), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398613,17 +382014,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168231] = 5, + [164778] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4534), 1, + STATE(4313), 1, sym_comment, - ACTIONS(5957), 2, + ACTIONS(5770), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5959), 17, + ACTIONS(5772), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398641,17 +382042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168264] = 5, + [164811] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4535), 1, + STATE(4314), 1, sym_comment, - ACTIONS(5961), 2, + ACTIONS(5848), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5963), 17, + ACTIONS(5850), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398669,17 +382070,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168297] = 5, + [164844] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4536), 1, + STATE(4315), 1, sym_comment, - ACTIONS(5961), 2, + ACTIONS(5854), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5963), 17, + ACTIONS(5856), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398697,17 +382098,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168330] = 5, + [164877] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4537), 1, + STATE(4316), 1, sym_comment, - ACTIONS(5961), 2, + ACTIONS(5744), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5963), 17, + ACTIONS(5746), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398725,17 +382126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168363] = 5, + [164910] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4538), 1, + STATE(4317), 1, sym_comment, - ACTIONS(5965), 2, + ACTIONS(5638), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5967), 17, + ACTIONS(5640), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398753,17 +382154,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168396] = 5, + [164943] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4539), 1, + STATE(4318), 1, sym_comment, - ACTIONS(5965), 2, + ACTIONS(5929), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5967), 17, + ACTIONS(5931), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398781,45 +382182,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168429] = 5, + [164976] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2438), 1, - anon_sym_PIPE, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4540), 1, + STATE(4319), 1, sym_comment, - ACTIONS(2440), 18, - sym__automatic_semicolon, + ACTIONS(5730), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5732), 17, 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_PIPE, anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - aux_sym_ui_version_specifier_token1, - [168462] = 5, + [165009] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4541), 1, + STATE(4320), 1, sym_comment, - ACTIONS(5965), 2, + ACTIONS(5848), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5967), 17, + ACTIONS(5850), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398837,17 +382238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168495] = 5, + [165042] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4542), 1, + STATE(4321), 1, sym_comment, - ACTIONS(5875), 2, + ACTIONS(5638), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5877), 17, + ACTIONS(5640), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398865,17 +382266,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168528] = 5, + [165075] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4543), 1, + STATE(4322), 1, sym_comment, - ACTIONS(5933), 2, + ACTIONS(5634), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5935), 17, + ACTIONS(5636), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398893,49 +382294,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168561] = 9, + [165108] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5500), 1, - anon_sym_EQ, - ACTIONS(7681), 1, - anon_sym_LT, - ACTIONS(7691), 1, - anon_sym_DOT, - ACTIONS(7693), 1, - anon_sym_is, - STATE(4544), 1, + STATE(4323), 1, sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4595), 14, + ACTIONS(5634), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5636), 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, - [168602] = 5, + [165141] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4545), 1, + STATE(4324), 1, sym_comment, - ACTIONS(5929), 2, + ACTIONS(5886), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5931), 17, + ACTIONS(5888), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398953,17 +382350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168635] = 5, + [165174] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4546), 1, + STATE(4325), 1, sym_comment, - ACTIONS(5863), 2, + ACTIONS(5634), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5865), 17, + ACTIONS(5636), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -398981,17 +382378,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168668] = 5, + [165207] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4547), 1, + STATE(4326), 1, sym_comment, - ACTIONS(5929), 2, + ACTIONS(5882), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5931), 17, + ACTIONS(5884), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399009,17 +382406,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168701] = 5, + [165240] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4548), 1, + STATE(4327), 1, sym_comment, - ACTIONS(5885), 2, + ACTIONS(5744), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5887), 17, + ACTIONS(5746), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399037,17 +382434,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168734] = 5, + [165273] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4549), 1, + STATE(4328), 1, sym_comment, - ACTIONS(5879), 2, + ACTIONS(5702), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5881), 17, + ACTIONS(5704), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399065,45 +382462,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168767] = 5, + [165306] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2482), 1, + anon_sym_PIPE, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4550), 1, + STATE(4329), 1, sym_comment, - ACTIONS(5879), 2, + ACTIONS(2484), 18, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5881), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_with, + 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, - [168800] = 5, + anon_sym_PIPE_RBRACE, + aux_sym_ui_version_specifier_token1, + [165339] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4551), 1, + STATE(4330), 1, sym_comment, - ACTIONS(5885), 2, + ACTIONS(5702), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5887), 17, + ACTIONS(5704), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399121,17 +382518,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168833] = 5, + [165372] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4552), 1, + STATE(4331), 1, sym_comment, - ACTIONS(5859), 2, + ACTIONS(5718), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5861), 17, + ACTIONS(5720), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399149,17 +382546,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168866] = 5, + [165405] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4553), 1, + STATE(4332), 1, sym_comment, - ACTIONS(5855), 2, + ACTIONS(5830), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5857), 17, + ACTIONS(5832), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399177,319 +382574,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [168899] = 16, + [165438] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7695), 1, + ACTIONS(7702), 1, sym_identifier, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7699), 1, + ACTIONS(7706), 1, anon_sym_type, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7703), 1, + ACTIONS(7710), 1, anon_sym_typeof, - STATE(4554), 1, + STATE(4333), 1, sym_comment, - STATE(6338), 1, + STATE(6231), 1, sym_string, - STATE(6339), 1, + STATE(6232), 1, sym_import_require_clause, - STATE(7706), 1, + STATE(7628), 1, sym__import_identifier, - STATE(8108), 1, + STATE(7655), 1, sym_import_clause, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [168953] = 16, + [165492] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7707), 1, + ACTIONS(7714), 1, sym_identifier, - ACTIONS(7709), 1, + ACTIONS(7716), 1, anon_sym_type, - ACTIONS(7711), 1, + ACTIONS(7718), 1, anon_sym_typeof, - STATE(4555), 1, + STATE(4334), 1, sym_comment, - STATE(6563), 1, - sym_import_require_clause, - STATE(6564), 1, + STATE(6371), 1, sym_string, - STATE(7706), 1, + STATE(6372), 1, + sym_import_require_clause, + STATE(7628), 1, sym__import_identifier, - STATE(7912), 1, + STATE(7855), 1, sym_import_clause, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [169007] = 16, + [165546] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5522), 1, + anon_sym_EQ, + ACTIONS(7692), 1, + anon_sym_LT, + ACTIONS(7698), 1, + anon_sym_DOT, + STATE(4335), 1, + sym_comment, + STATE(4433), 1, + sym_type_arguments, + ACTIONS(4603), 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, + [165584] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7713), 1, + ACTIONS(7720), 1, sym_identifier, - ACTIONS(7715), 1, + ACTIONS(7722), 1, anon_sym_type, - ACTIONS(7717), 1, + ACTIONS(7724), 1, anon_sym_typeof, - STATE(4556), 1, + STATE(4336), 1, sym_comment, - STATE(6397), 1, + STATE(6328), 1, sym_import_require_clause, - STATE(6469), 1, + STATE(6329), 1, sym_string, - STATE(7706), 1, + STATE(7628), 1, sym__import_identifier, - STATE(7715), 1, + STATE(7747), 1, sym_import_clause, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [169061] = 16, + [165638] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7719), 1, + ACTIONS(7726), 1, sym_identifier, - ACTIONS(7721), 1, + ACTIONS(7728), 1, anon_sym_type, - ACTIONS(7723), 1, + ACTIONS(7730), 1, anon_sym_typeof, - STATE(4557), 1, + STATE(4337), 1, sym_comment, - STATE(6334), 1, - sym_string, - STATE(6342), 1, + STATE(6258), 1, sym_import_require_clause, - STATE(7706), 1, - sym__import_identifier, - STATE(7910), 1, + STATE(6259), 1, + sym_string, + STATE(7536), 1, sym_import_clause, - STATE(8569), 2, + STATE(7628), 1, + sym__import_identifier, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [169115] = 16, + [165692] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7725), 1, + ACTIONS(7732), 1, sym_identifier, - ACTIONS(7727), 1, + ACTIONS(7734), 1, anon_sym_type, - ACTIONS(7729), 1, + ACTIONS(7736), 1, anon_sym_typeof, - STATE(4558), 1, + STATE(4338), 1, sym_comment, - STATE(6398), 1, + STATE(6092), 1, sym_import_require_clause, - STATE(6399), 1, + STATE(6163), 1, sym_string, - STATE(7706), 1, + STATE(7628), 1, sym__import_identifier, - STATE(8024), 1, + STATE(7631), 1, sym_import_clause, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [169169] = 16, + [165746] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7731), 1, + ACTIONS(7738), 1, sym_identifier, - ACTIONS(7733), 1, + ACTIONS(7740), 1, anon_sym_type, - ACTIONS(7735), 1, + ACTIONS(7742), 1, anon_sym_typeof, - STATE(4559), 1, + STATE(4339), 1, sym_comment, - STATE(6536), 1, + STATE(6291), 1, sym_import_require_clause, - STATE(6538), 1, + STATE(6292), 1, sym_string, - STATE(7706), 1, - sym__import_identifier, - STATE(8158), 1, + STATE(7625), 1, sym_import_clause, - STATE(8569), 2, + STATE(7628), 1, + sym__import_identifier, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [169223] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5500), 1, - anon_sym_EQ, - ACTIONS(7681), 1, - anon_sym_LT, - ACTIONS(7691), 1, - anon_sym_DOT, - STATE(4560), 1, - sym_comment, - STATE(4593), 1, - sym_type_arguments, - ACTIONS(4595), 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, - [169261] = 16, + [165800] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7737), 1, + ACTIONS(7744), 1, sym_identifier, - ACTIONS(7739), 1, + ACTIONS(7746), 1, anon_sym_type, - ACTIONS(7741), 1, + ACTIONS(7748), 1, anon_sym_typeof, - STATE(4561), 1, + STATE(4340), 1, sym_comment, - STATE(6341), 1, - sym_import_require_clause, - STATE(6396), 1, + STATE(6095), 1, sym_string, - STATE(7706), 1, + STATE(6096), 1, + sym_import_require_clause, + STATE(7628), 1, sym__import_identifier, - STATE(7846), 1, + STATE(7851), 1, sym_import_clause, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [169315] = 5, + [165854] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3558), 1, + ACTIONS(4371), 1, anon_sym_EQ, - STATE(4562), 1, + STATE(4341), 1, sym_comment, - ACTIONS(5711), 16, + ACTIONS(5812), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -399497,24 +382893,26 @@ 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, - [169346] = 5, + [165885] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4383), 1, + ACTIONS(3494), 1, anon_sym_EQ, - STATE(4563), 1, + STATE(4342), 1, sym_comment, - ACTIONS(5905), 16, + ACTIONS(6079), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -399522,19 +382920,18 @@ 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, - [169377] = 5, + [165916] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, + ACTIONS(4407), 1, anon_sym_EQ, - STATE(4564), 1, + STATE(4343), 1, sym_comment, - ACTIONS(5835), 16, + ACTIONS(5980), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399551,16 +382948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [169408] = 5, + [165947] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4391), 1, + ACTIONS(4399), 1, anon_sym_EQ, - STATE(4565), 1, + STATE(4344), 1, sym_comment, - ACTIONS(5837), 16, + ACTIONS(5978), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399577,17 +382974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [169439] = 5, + [165978] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4566), 1, + STATE(4345), 1, sym_comment, - ACTIONS(5793), 2, + ACTIONS(6054), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5795), 15, + ACTIONS(6056), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399603,50 +383000,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [169470] = 6, + [166009] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2372), 1, - anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5989), 1, - anon_sym_EQ, - STATE(4567), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN, + ACTIONS(5546), 1, + anon_sym_PIPE, + ACTIONS(7750), 1, + anon_sym_DOT, + ACTIONS(7752), 1, + anon_sym_QMARK_DOT, + ACTIONS(7754), 1, + anon_sym_LT, + STATE(4346), 1, sym_comment, - ACTIONS(5991), 15, - anon_sym_as, + STATE(4567), 1, + sym_arguments, + STATE(4669), 1, + sym_type_arguments, + ACTIONS(5548), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, - [169503] = 5, + anon_sym_PIPE_RBRACE, + [166052] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3548), 1, + ACTIONS(4373), 1, anon_sym_EQ, - STATE(4568), 1, + STATE(4347), 1, sym_comment, - ACTIONS(5853), 16, + ACTIONS(5800), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -399654,18 +383055,19 @@ 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, - [169534] = 5, + [166083] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4391), 1, + ACTIONS(4369), 1, anon_sym_EQ, - STATE(4569), 1, + STATE(4348), 1, sym_comment, - ACTIONS(5837), 16, + ACTIONS(5816), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399682,16 +383084,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [169565] = 5, + [166114] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4359), 1, + ACTIONS(4399), 1, anon_sym_EQ, - STATE(4570), 1, + STATE(4349), 1, sym_comment, - ACTIONS(5839), 16, + ACTIONS(5978), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399708,16 +383110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [169596] = 5, + [166145] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4423), 1, + ACTIONS(4391), 1, anon_sym_EQ, - STATE(4571), 1, + STATE(4350), 1, sym_comment, - ACTIONS(5773), 16, + ACTIONS(5972), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399734,17 +383136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [169627] = 5, + [166176] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4572), 1, + STATE(4351), 1, sym_comment, - ACTIONS(5683), 2, + ACTIONS(5946), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5685), 15, + ACTIONS(5948), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399760,22 +383162,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [169658] = 5, + [166207] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4413), 1, + ACTIONS(3492), 1, anon_sym_EQ, - STATE(4573), 1, + STATE(4352), 1, sym_comment, - ACTIONS(5777), 16, + ACTIONS(5944), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -399783,20 +383186,23 @@ 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, - [169689] = 5, + [166238] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4574), 1, + ACTIONS(7756), 1, + anon_sym_DOT, + ACTIONS(7758), 1, + anon_sym_QMARK_DOT, + STATE(4353), 1, sym_comment, - ACTIONS(5785), 2, + ACTIONS(5806), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5787), 15, + ACTIONS(5808), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399806,61 +383212,52 @@ 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, - [169720] = 11, + [166273] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4553), 1, - anon_sym_LPAREN, - ACTIONS(5515), 1, - anon_sym_PIPE, - ACTIONS(7743), 1, - anon_sym_DOT, - ACTIONS(7745), 1, - anon_sym_QMARK_DOT, - ACTIONS(7747), 1, - anon_sym_LT, - STATE(4575), 1, - sym_comment, - STATE(4799), 1, - sym_arguments, - STATE(4914), 1, - sym_type_arguments, - ACTIONS(5517), 10, - sym__automatic_semicolon, + ACTIONS(4431), 1, anon_sym_EQ, + STATE(4354), 1, + sym_comment, + ACTIONS(6066), 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_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [169763] = 5, + [166304] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3546), 1, + ACTIONS(4407), 1, anon_sym_EQ, - STATE(4576), 1, + STATE(4355), 1, sym_comment, - ACTIONS(5919), 16, + ACTIONS(5980), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -399868,18 +383265,19 @@ 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, - [169794] = 5, + [166335] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, + ACTIONS(4429), 1, anon_sym_EQ, - STATE(4577), 1, + STATE(4356), 1, sym_comment, - ACTIONS(5835), 16, + ACTIONS(6064), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399896,20 +383294,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [169825] = 7, + [166366] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5569), 1, - anon_sym_EQ, - ACTIONS(7681), 1, + ACTIONS(4503), 1, + anon_sym_PIPE, + ACTIONS(4543), 1, + anon_sym_LPAREN, + ACTIONS(4545), 1, + anon_sym_DOT, + ACTIONS(4547), 1, + anon_sym_QMARK_DOT, + ACTIONS(7754), 1, anon_sym_LT, - STATE(4578), 1, + STATE(4357), 1, sym_comment, - STATE(4613), 1, + STATE(4565), 1, + sym_arguments, + STATE(4668), 1, sym_type_arguments, - ACTIONS(5571), 14, + ACTIONS(4499), 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, + [166409] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4358), 1, + sym_comment, + ACTIONS(5696), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5698), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -399919,33 +383346,61 @@ 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, - [169860] = 11, + [166440] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2468), 1, + anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4535), 1, + ACTIONS(6068), 1, + anon_sym_EQ, + STATE(4359), 1, + sym_comment, + ACTIONS(6070), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4553), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [166473] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4543), 1, anon_sym_LPAREN, - ACTIONS(4555), 1, + ACTIONS(5552), 1, + anon_sym_PIPE, + ACTIONS(7754), 1, + anon_sym_LT, + ACTIONS(7760), 1, anon_sym_DOT, - ACTIONS(4557), 1, + ACTIONS(7762), 1, anon_sym_QMARK_DOT, - ACTIONS(7747), 1, - anon_sym_LT, - STATE(4579), 1, + STATE(4360), 1, sym_comment, - STATE(4797), 1, + STATE(4569), 1, sym_arguments, - STATE(4915), 1, + STATE(4670), 1, sym_type_arguments, - ACTIONS(4531), 10, + ACTIONS(5554), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -399956,22 +383411,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [169903] = 5, + [166516] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4379), 1, + ACTIONS(3500), 1, anon_sym_EQ, - STATE(4580), 1, + STATE(4361), 1, sym_comment, - ACTIONS(5901), 16, + ACTIONS(5802), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -399979,19 +383435,18 @@ 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, - [169934] = 5, + [166547] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4381), 1, + ACTIONS(4427), 1, anon_sym_EQ, - STATE(4581), 1, + STATE(4362), 1, sym_comment, - ACTIONS(5903), 16, + ACTIONS(6048), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400008,16 +383463,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [169965] = 5, + [166578] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3550), 1, + ACTIONS(3490), 1, anon_sym_EQ, - STATE(4582), 1, + STATE(4363), 1, sym_comment, - ACTIONS(5779), 16, + ACTIONS(5726), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400034,58 +383489,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [169996] = 11, + [166609] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4553), 1, - anon_sym_LPAREN, - ACTIONS(5521), 1, - anon_sym_PIPE, - ACTIONS(7747), 1, + ACTIONS(5596), 1, + anon_sym_EQ, + ACTIONS(7692), 1, anon_sym_LT, - ACTIONS(7749), 1, - anon_sym_DOT, - ACTIONS(7751), 1, - anon_sym_QMARK_DOT, - STATE(4583), 1, + STATE(4364), 1, sym_comment, - STATE(4801), 1, - sym_arguments, - STATE(4913), 1, + STATE(4440), 1, sym_type_arguments, - ACTIONS(5523), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5598), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [170039] = 7, + [166644] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7753), 1, - anon_sym_DOT, - ACTIONS(7755), 1, - anon_sym_QMARK_DOT, - STATE(4584), 1, - sym_comment, - ACTIONS(5713), 2, + ACTIONS(3488), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5715), 13, + STATE(4365), 1, + sym_comment, + ACTIONS(5788), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -400093,22 +383541,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [170074] = 5, + [166675] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2472), 1, + anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4421), 1, + ACTIONS(6068), 1, anon_sym_EQ, - STATE(4585), 1, + STATE(4366), 1, sym_comment, - ACTIONS(5775), 16, + ACTIONS(6070), 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, @@ -400117,21 +383567,21 @@ 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, - [170105] = 6, + [166708] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2412), 1, - anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5989), 1, + ACTIONS(5592), 1, anon_sym_EQ, - STATE(4586), 1, + ACTIONS(7700), 1, + anon_sym_is, + STATE(4367), 1, sym_comment, - ACTIONS(5991), 15, + ACTIONS(5594), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400144,26 +383594,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [170138] = 5, + [166740] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3544), 1, + ACTIONS(5596), 1, anon_sym_EQ, - STATE(4587), 1, + ACTIONS(7764), 1, + anon_sym_is, + STATE(4368), 1, sym_comment, - ACTIONS(5949), 16, + ACTIONS(5598), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -400173,16 +383622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [170169] = 5, + [166772] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5577), 1, + ACTIONS(5588), 1, anon_sym_EQ, - STATE(4588), 1, + STATE(4369), 1, sym_comment, - ACTIONS(5579), 15, + ACTIONS(5590), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400198,18 +383647,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_is, - [170199] = 6, + [166802] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5561), 1, + ACTIONS(5610), 1, anon_sym_EQ, - ACTIONS(7693), 1, + ACTIONS(7700), 1, anon_sym_is, - STATE(4589), 1, + STATE(4370), 1, sym_comment, - ACTIONS(5563), 14, + ACTIONS(5612), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400224,18 +383673,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [170231] = 6, + [166834] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2211), 1, + anon_sym_EQ, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5569), 1, - anon_sym_EQ, - ACTIONS(7757), 1, - anon_sym_is, - STATE(4590), 1, + STATE(4371), 1, sym_comment, - ACTIONS(5571), 14, + ACTIONS(2257), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400250,18 +383697,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [170263] = 6, + anon_sym_is, + [166864] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5589), 1, + ACTIONS(5886), 1, + anon_sym_PIPE, + STATE(4372), 1, + sym_comment, + ACTIONS(5888), 14, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(7693), 1, - anon_sym_is, - STATE(4591), 1, + 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, + [166893] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7772), 1, + sym_number, + ACTIONS(7774), 1, + anon_sym_unique, + STATE(4373), 1, sym_comment, - ACTIONS(5591), 14, + STATE(8306), 1, + sym_predefined_type, + STATE(8307), 1, + sym_string, + ACTIONS(7770), 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, + [166932] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5722), 1, + anon_sym_EQ, + STATE(4374), 1, + sym_comment, + ACTIONS(5724), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400276,16 +383775,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [170295] = 5, + [166961] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4375), 1, + sym_comment, + ACTIONS(7776), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [166988] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7778), 1, + sym_number, + STATE(4376), 1, + sym_comment, + STATE(8340), 1, + sym_string, + STATE(8503), 1, + sym_predefined_type, + ACTIONS(7770), 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, + [167027] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7780), 1, + sym_number, + STATE(4377), 1, + sym_comment, + STATE(8469), 1, + sym_string, + STATE(8483), 1, + sym_predefined_type, + ACTIONS(7770), 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, + [167066] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2209), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5986), 1, anon_sym_EQ, + STATE(4378), 1, + sym_comment, + ACTIONS(5988), 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, + [167095] = 10, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4592), 1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7782), 1, + sym_number, + STATE(4379), 1, sym_comment, - ACTIONS(2257), 15, + STATE(8435), 1, + sym_string, + STATE(8441), 1, + sym_predefined_type, + ACTIONS(7770), 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, + [167134] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7784), 1, + sym_number, + STATE(4380), 1, + sym_comment, + STATE(8429), 2, + sym_string, + sym_predefined_type, + ACTIONS(7770), 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, + [167171] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5952), 1, + anon_sym_EQ, + STATE(4381), 1, + sym_comment, + ACTIONS(5954), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400300,17 +383961,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [170325] = 5, + [167200] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5741), 1, + ACTIONS(5956), 1, anon_sym_EQ, - STATE(4593), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + STATE(4382), 1, sym_comment, - ACTIONS(5743), 14, + ACTIONS(5958), 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_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [167231] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5960), 1, + anon_sym_EQ, + STATE(4383), 1, + sym_comment, + ACTIONS(5962), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400325,26 +384010,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [170354] = 10, + [167260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + STATE(4384), 1, + sym_comment, + ACTIONS(7788), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [167287] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4385), 1, + sym_comment, + ACTIONS(7790), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [167314] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5986), 1, + anon_sym_EQ, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(4386), 1, + sym_comment, + ACTIONS(5988), 11, + 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_QMARK, + [167349] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7766), 1, anon_sym_DQUOTE, - ACTIONS(7761), 1, + ACTIONS(7768), 1, anon_sym_SQUOTE, - ACTIONS(7765), 1, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7796), 1, sym_number, - ACTIONS(7767), 1, + STATE(4387), 1, + sym_comment, + STATE(8020), 2, + sym_string, + sym_predefined_type, + ACTIONS(7770), 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, + [167386] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, anon_sym_unique, - STATE(4594), 1, + ACTIONS(7798), 1, + sym_number, + STATE(4388), 1, sym_comment, - STATE(8512), 1, + STATE(8024), 1, sym_string, - STATE(8518), 1, + STATE(8034), 1, sym_predefined_type, - ACTIONS(7763), 9, + ACTIONS(7770), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -400354,40 +384140,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [170393] = 5, + [167425] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7800), 1, + sym_number, + STATE(4389), 1, + sym_comment, + STATE(8290), 1, + sym_predefined_type, + STATE(8291), 1, + sym_string, + ACTIONS(7770), 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, + [167464] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5940), 1, + anon_sym_PIPE, + STATE(4390), 1, + sym_comment, + ACTIONS(5942), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(4595), 1, + 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, + [167493] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5929), 1, + anon_sym_PIPE, + STATE(4391), 1, sym_comment, - ACTIONS(5909), 14, - anon_sym_as, + ACTIONS(5931), 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, + [167522] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4392), 1, + sym_comment, + ACTIONS(7802), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [167549] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5886), 1, anon_sym_PIPE, - anon_sym_QMARK, + STATE(4393), 1, + sym_comment, + ACTIONS(5888), 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, - [170422] = 5, + anon_sym_PIPE_RBRACE, + [167578] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5867), 1, + ACTIONS(5882), 1, anon_sym_PIPE, - STATE(4596), 1, + STATE(4394), 1, sym_comment, - ACTIONS(5869), 14, + ACTIONS(5884), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -400402,92 +384288,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [170451] = 8, + [167607] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5911), 1, - anon_sym_EQ, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(4597), 1, + ACTIONS(7804), 1, + anon_sym_LPAREN, + ACTIONS(7806), 1, + anon_sym_DOT, + ACTIONS(7808), 1, + anon_sym_QMARK_DOT, + ACTIONS(7810), 1, + anon_sym_LT, + STATE(4395), 1, sym_comment, - ACTIONS(5913), 11, - anon_sym_as, + STATE(4678), 1, + sym_arguments, + STATE(4846), 1, + sym_type_arguments, + ACTIONS(4499), 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_QMARK, - [170486] = 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [167646] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5863), 1, - anon_sym_PIPE, - STATE(4598), 1, + ACTIONS(7804), 1, + anon_sym_LPAREN, + ACTIONS(7810), 1, + anon_sym_LT, + ACTIONS(7812), 1, + anon_sym_DOT, + ACTIONS(7814), 1, + anon_sym_QMARK_DOT, + STATE(4396), 1, sym_comment, - ACTIONS(5865), 14, + STATE(4677), 1, + sym_arguments, + STATE(4845), 1, + sym_type_arguments, + ACTIONS(5548), 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, - [170515] = 6, + [167685] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5845), 1, - anon_sym_EQ, - ACTIONS(7769), 1, - anon_sym_AMP, - STATE(4599), 1, + ACTIONS(7804), 1, + anon_sym_LPAREN, + ACTIONS(7810), 1, + anon_sym_LT, + ACTIONS(7816), 1, + anon_sym_DOT, + ACTIONS(7818), 1, + anon_sym_QMARK_DOT, + STATE(4397), 1, sym_comment, - ACTIONS(5847), 13, - anon_sym_as, + STATE(4661), 1, + sym_arguments, + STATE(4844), 1, + sym_type_arguments, + ACTIONS(5554), 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, - [170546] = 5, + [167724] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5849), 1, + ACTIONS(5844), 1, anon_sym_EQ, - STATE(4600), 1, + STATE(4398), 1, sym_comment, - ACTIONS(5851), 14, + ACTIONS(5846), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400502,16 +384399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [170575] = 5, + [167753] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5737), 1, + ACTIONS(5834), 1, anon_sym_EQ, - STATE(4601), 1, + STATE(4399), 1, sym_comment, - ACTIONS(5739), 14, + ACTIONS(5836), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400526,16 +384423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [170604] = 5, + [167782] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5691), 1, + ACTIONS(5630), 1, anon_sym_EQ, - STATE(4602), 1, + STATE(4400), 1, sym_comment, - ACTIONS(5689), 14, + ACTIONS(5632), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400550,14 +384447,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [170633] = 4, + [167811] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4603), 1, + STATE(4401), 1, sym_comment, - ACTIONS(7775), 15, + ACTIONS(7820), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -400573,16 +384470,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [170660] = 5, + [167838] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5823), 1, + ACTIONS(5818), 1, anon_sym_EQ, - STATE(4604), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(4402), 1, sym_comment, - ACTIONS(5825), 14, + ACTIONS(5820), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400593,96 +384496,41 @@ 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, - [170689] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(4605), 1, - sym_comment, - ACTIONS(7777), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [170716] = 10, + [167873] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7779), 1, - sym_number, - STATE(4606), 1, + ACTIONS(5784), 1, + anon_sym_PIPE, + STATE(4403), 1, sym_comment, - STATE(8294), 1, - sym_predefined_type, - STATE(8295), 1, - sym_string, - ACTIONS(7763), 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, - [170755] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5625), 1, + ACTIONS(5786), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(4607), 1, - sym_comment, - ACTIONS(5627), 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, - [170784] = 5, + anon_sym_PIPE_RBRACE, + [167902] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5867), 1, + ACTIONS(5744), 1, anon_sym_PIPE, - STATE(4608), 1, + STATE(4404), 1, sym_comment, - ACTIONS(5869), 14, + ACTIONS(5746), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -400697,67 +384545,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [170813] = 8, + [167931] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5897), 1, - anon_sym_EQ, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(5744), 1, anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(4609), 1, + STATE(4405), 1, sym_comment, - ACTIONS(5899), 11, - anon_sym_as, + ACTIONS(5746), 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_QMARK, - [170848] = 5, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [167960] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5893), 1, - anon_sym_EQ, - STATE(4610), 1, + ACTIONS(5744), 1, + anon_sym_PIPE, + STATE(4406), 1, sym_comment, - ACTIONS(5895), 14, - anon_sym_as, + ACTIONS(5746), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [170877] = 5, + anon_sym_PIPE_RBRACE, + [167989] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5841), 1, + ACTIONS(5792), 1, anon_sym_EQ, - STATE(4611), 1, + STATE(4407), 1, sym_comment, - ACTIONS(5843), 14, + ACTIONS(5794), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400772,16 +384617,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [170906] = 5, + [168018] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5693), 1, + ACTIONS(5778), 1, anon_sym_EQ, - STATE(4612), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(4408), 1, sym_comment, - ACTIONS(5695), 14, + ACTIONS(5780), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -400792,163 +384643,116 @@ 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, - [170935] = 5, + [168053] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5769), 1, - anon_sym_EQ, - STATE(4613), 1, + ACTIONS(5702), 1, + anon_sym_PIPE, + STATE(4409), 1, sym_comment, - ACTIONS(5771), 14, - anon_sym_as, + ACTIONS(5704), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [170964] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(4614), 1, - sym_comment, - ACTIONS(7781), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [170991] = 6, + anon_sym_PIPE_RBRACE, + [168082] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5701), 1, + ACTIONS(5758), 1, anon_sym_EQ, - ACTIONS(7783), 1, - anon_sym_LBRACK, - STATE(4615), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(4410), 1, sym_comment, - ACTIONS(5703), 13, + ACTIONS(5760), 11, 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, - [171022] = 4, + [168117] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4616), 1, + ACTIONS(5702), 1, + anon_sym_PIPE, + STATE(4411), 1, sym_comment, - ACTIONS(7785), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [171049] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5937), 1, + ACTIONS(5704), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(4617), 1, - sym_comment, - ACTIONS(5939), 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, - [171078] = 5, + anon_sym_PIPE_RBRACE, + [168146] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5697), 1, - anon_sym_EQ, - STATE(4618), 1, + ACTIONS(5702), 1, + anon_sym_PIPE, + STATE(4412), 1, sym_comment, - ACTIONS(5699), 14, - anon_sym_as, + ACTIONS(5704), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [171107] = 5, + anon_sym_PIPE_RBRACE, + [168175] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5871), 1, + ACTIONS(5770), 1, anon_sym_PIPE, - STATE(4619), 1, + STATE(4413), 1, sym_comment, - ACTIONS(5873), 14, + ACTIONS(5772), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -400963,65 +384767,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [171136] = 6, + [168204] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5731), 1, - anon_sym_EQ, - ACTIONS(7769), 1, - anon_sym_AMP, - STATE(4620), 1, + ACTIONS(5770), 1, + anon_sym_PIPE, + STATE(4414), 1, sym_comment, - ACTIONS(5733), 13, - anon_sym_as, + ACTIONS(5772), 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_PIPE, - anon_sym_QMARK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, anon_sym_extends, - [171167] = 5, + anon_sym_PIPE_RBRACE, + [168233] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5889), 1, - anon_sym_EQ, - STATE(4621), 1, + ACTIONS(5882), 1, + anon_sym_PIPE, + STATE(4415), 1, sym_comment, - ACTIONS(5891), 14, - anon_sym_as, + ACTIONS(5884), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [171196] = 5, + anon_sym_PIPE_RBRACE, + [168262] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5727), 1, + ACTIONS(5754), 1, anon_sym_EQ, - STATE(4622), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(4416), 1, sym_comment, - ACTIONS(5729), 14, + ACTIONS(5756), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -401032,44 +384841,41 @@ 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, - [171225] = 5, + [168297] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5941), 1, - anon_sym_EQ, - STATE(4623), 1, + ACTIONS(5830), 1, + anon_sym_PIPE, + STATE(4417), 1, sym_comment, - ACTIONS(5943), 14, - anon_sym_as, + ACTIONS(5832), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [171254] = 5, + anon_sym_PIPE_RBRACE, + [168326] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5945), 1, + ACTIONS(5610), 1, anon_sym_EQ, - STATE(4624), 1, + STATE(4418), 1, sym_comment, - ACTIONS(5947), 14, + ACTIONS(5612), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -401084,16 +384890,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [171283] = 5, + [168355] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5875), 1, + ACTIONS(5830), 1, anon_sym_PIPE, - STATE(4625), 1, + STATE(4419), 1, sym_comment, - ACTIONS(5877), 14, + ACTIONS(5832), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -401108,25 +384914,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [171312] = 9, + [168384] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(7766), 1, anon_sym_DQUOTE, - ACTIONS(7761), 1, + ACTIONS(7768), 1, anon_sym_SQUOTE, - ACTIONS(7767), 1, + ACTIONS(7774), 1, anon_sym_unique, - ACTIONS(7787), 1, + ACTIONS(7822), 1, sym_number, - STATE(4626), 1, + STATE(4420), 1, sym_comment, - STATE(8440), 2, + STATE(8165), 2, sym_string, sym_predefined_type, - ACTIONS(7763), 9, + ACTIONS(7770), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -401136,26 +384942,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [171349] = 10, + [168421] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5826), 1, + anon_sym_EQ, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(4421), 1, + sym_comment, + ACTIONS(5828), 11, + 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_QMARK, + [168456] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(7766), 1, anon_sym_DQUOTE, - ACTIONS(7761), 1, + ACTIONS(7768), 1, anon_sym_SQUOTE, - ACTIONS(7767), 1, + ACTIONS(7774), 1, anon_sym_unique, - ACTIONS(7789), 1, + ACTIONS(7824), 1, sym_number, - STATE(4627), 1, + STATE(4422), 1, sym_comment, - STATE(8446), 1, - sym_string, - STATE(8449), 1, + STATE(8155), 1, sym_predefined_type, - ACTIONS(7763), 9, + STATE(8159), 1, + sym_string, + ACTIONS(7770), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -401165,26 +384998,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [171388] = 10, + [168495] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(7766), 1, anon_sym_DQUOTE, - ACTIONS(7761), 1, + ACTIONS(7768), 1, anon_sym_SQUOTE, - ACTIONS(7767), 1, + ACTIONS(7774), 1, anon_sym_unique, - ACTIONS(7791), 1, + ACTIONS(7826), 1, sym_number, - STATE(4628), 1, + STATE(4423), 1, sym_comment, - STATE(8454), 1, - sym_string, - STATE(8459), 1, + STATE(8140), 1, sym_predefined_type, - ACTIONS(7763), 9, + STATE(8141), 1, + sym_string, + ACTIONS(7770), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -401194,40 +385027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [171427] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5871), 1, - anon_sym_PIPE, - STATE(4629), 1, - sym_comment, - ACTIONS(5873), 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, - [171456] = 5, + [168534] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5719), 1, + ACTIONS(5838), 1, anon_sym_EQ, - STATE(4630), 1, + STATE(4424), 1, sym_comment, - ACTIONS(5721), 14, + ACTIONS(5840), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -401242,24 +385051,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [171485] = 6, + [168563] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5763), 1, + ACTIONS(5778), 1, anon_sym_EQ, - ACTIONS(7783), 1, - anon_sym_LBRACK, - STATE(4631), 1, + STATE(4425), 1, sym_comment, - ACTIONS(5765), 13, + ACTIONS(5780), 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, @@ -401267,100 +385075,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [171516] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5933), 1, - anon_sym_PIPE, - STATE(4632), 1, - sym_comment, - ACTIONS(5935), 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, - [171545] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(4633), 1, - sym_comment, - ACTIONS(7793), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [171572] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_EQ, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(4634), 1, - sym_comment, - ACTIONS(5909), 11, - 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_QMARK, - [171607] = 10, + [168592] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(7766), 1, anon_sym_DQUOTE, - ACTIONS(7761), 1, + ACTIONS(7768), 1, anon_sym_SQUOTE, - ACTIONS(7767), 1, + ACTIONS(7774), 1, anon_sym_unique, - ACTIONS(7795), 1, + ACTIONS(7828), 1, sym_number, - STATE(4635), 1, + STATE(4426), 1, sym_comment, - STATE(8538), 1, - sym_string, - STATE(8540), 1, + STATE(8137), 1, sym_predefined_type, - ACTIONS(7763), 9, + STATE(8138), 1, + sym_string, + ACTIONS(7770), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -401370,16 +385104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [171646] = 5, + [168631] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5933), 1, + ACTIONS(5638), 1, anon_sym_PIPE, - STATE(4636), 1, + STATE(4427), 1, sym_comment, - ACTIONS(5935), 14, + ACTIONS(5640), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -401394,44 +385128,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [171675] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7797), 1, - sym_number, - STATE(4637), 1, - sym_comment, - STATE(8305), 2, - sym_string, - sym_predefined_type, - ACTIONS(7763), 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, - [171712] = 5, + [168660] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5701), 1, + ACTIONS(5864), 1, anon_sym_EQ, - STATE(4638), 1, + STATE(4428), 1, sym_comment, - ACTIONS(5703), 14, + ACTIONS(5866), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -401446,16 +385152,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [171741] = 5, + [168689] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5933), 1, + ACTIONS(5730), 1, anon_sym_PIPE, - STATE(4639), 1, + STATE(4429), 1, sym_comment, - ACTIONS(5935), 14, + ACTIONS(5732), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -401470,80 +385176,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [171770] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7799), 1, - sym_number, - STATE(4640), 1, - sym_comment, - STATE(8462), 1, - sym_string, - STATE(8463), 1, - sym_predefined_type, - ACTIONS(7763), 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, - [171809] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7801), 1, - sym_number, - STATE(4641), 1, - sym_comment, - STATE(8504), 1, - sym_predefined_type, - STATE(8530), 1, - sym_string, - ACTIONS(7763), 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, - [171848] = 8, + [168718] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5745), 1, + ACTIONS(5868), 1, anon_sym_EQ, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(4642), 1, + STATE(4430), 1, sym_comment, - ACTIONS(5747), 11, + ACTIONS(5870), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -401554,72 +385198,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_QMARK, - [171883] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7803), 1, - sym_number, - STATE(4643), 1, - sym_comment, - STATE(8692), 2, - sym_string, - sym_predefined_type, - ACTIONS(7763), 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, - [171920] = 10, + anon_sym_extends, + [168749] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7805), 1, - sym_number, - STATE(4644), 1, + ACTIONS(5768), 1, + anon_sym_EQ, + STATE(4431), 1, sym_comment, - STATE(8698), 1, - sym_string, - STATE(8701), 1, - sym_predefined_type, - ACTIONS(7763), 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, - [171959] = 4, + ACTIONS(5766), 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, + [168778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4645), 1, + STATE(4432), 1, sym_comment, - ACTIONS(7807), 15, + ACTIONS(7830), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -401635,45 +385248,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [171986] = 10, + [168805] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7809), 1, - sym_number, - STATE(4646), 1, + ACTIONS(5968), 1, + anon_sym_EQ, + STATE(4433), 1, sym_comment, - STATE(8710), 1, - sym_string, - STATE(8711), 1, - sym_predefined_type, - ACTIONS(7763), 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, - [172025] = 5, + ACTIONS(5970), 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, + [168834] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, + ACTIONS(5974), 1, anon_sym_EQ, - STATE(4647), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(4434), 1, sym_comment, - ACTIONS(5799), 14, + ACTIONS(5976), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -401684,20 +385298,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_QMARK, + [168869] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5982), 1, + anon_sym_EQ, + ACTIONS(7832), 1, + anon_sym_LBRACK, + STATE(4435), 1, + sym_comment, + ACTIONS(5750), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [172054] = 5, + ACTIONS(5984), 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, + [168902] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5561), 1, + ACTIONS(6004), 1, anon_sym_EQ, - STATE(4648), 1, + ACTIONS(7834), 1, + anon_sym_extends, + STATE(4436), 1, sym_comment, - ACTIONS(5563), 14, + ACTIONS(6006), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -401711,41 +385350,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [172083] = 5, + [168933] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5957), 1, - anon_sym_PIPE, - STATE(4649), 1, - sym_comment, - ACTIONS(5959), 14, - sym__automatic_semicolon, + ACTIONS(6010), 1, anon_sym_EQ, + ACTIONS(7832), 1, + anon_sym_LBRACK, + STATE(4437), 1, + sym_comment, + ACTIONS(6012), 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, - [172112] = 5, + [168964] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5859), 1, + ACTIONS(5638), 1, anon_sym_PIPE, - STATE(4650), 1, + STATE(4438), 1, sym_comment, - ACTIONS(5861), 14, + ACTIONS(5640), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -401760,44 +385399,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [172141] = 9, + [168993] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7811), 1, - sym_number, - STATE(4651), 1, + STATE(4439), 1, sym_comment, - STATE(8374), 2, - sym_string, - sym_predefined_type, - ACTIONS(7763), 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, - [172178] = 5, + ACTIONS(7836), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [169020] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5589), 1, + ACTIONS(6044), 1, anon_sym_EQ, - STATE(4652), 1, + STATE(4440), 1, sym_comment, - ACTIONS(5591), 14, + ACTIONS(6046), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -401812,16 +385446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [172207] = 5, + [169049] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5879), 1, + ACTIONS(5638), 1, anon_sym_PIPE, - STATE(4653), 1, + STATE(4441), 1, sym_comment, - ACTIONS(5881), 14, + ACTIONS(5640), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -401836,45 +385470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [172236] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7813), 1, - sym_number, - STATE(4654), 1, - sym_comment, - STATE(8732), 1, - sym_string, - STATE(8734), 1, - sym_predefined_type, - ACTIONS(7763), 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, - [172275] = 5, + [169078] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5929), 1, + ACTIONS(5634), 1, anon_sym_PIPE, - STATE(4655), 1, + STATE(4442), 1, sym_comment, - ACTIONS(5931), 14, + ACTIONS(5636), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -401889,43 +385494,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [172304] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5915), 1, - anon_sym_EQ, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(4656), 1, - sym_comment, - ACTIONS(5917), 11, - 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_QMARK, - [172339] = 5, + [169107] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5929), 1, + ACTIONS(5634), 1, anon_sym_PIPE, - STATE(4657), 1, + STATE(4443), 1, sym_comment, - ACTIONS(5931), 14, + ACTIONS(5636), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -401940,16 +385518,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [172368] = 5, + [169136] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5929), 1, + ACTIONS(5634), 1, anon_sym_PIPE, - STATE(4658), 1, + STATE(4444), 1, sym_comment, - ACTIONS(5931), 14, + ACTIONS(5636), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -401964,16 +385542,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [172397] = 5, + [169165] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7838), 1, + sym_number, + STATE(4445), 1, + sym_comment, + STATE(8108), 2, + sym_string, + sym_predefined_type, + ACTIONS(7770), 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, + [169202] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5569), 1, + ACTIONS(5876), 1, anon_sym_EQ, - STATE(4659), 1, + STATE(4446), 1, sym_comment, - ACTIONS(5571), 14, + ACTIONS(5878), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -401988,39 +385594,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [172426] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(4660), 1, - sym_comment, - ACTIONS(7815), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [172453] = 5, + [169231] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5789), 1, + ACTIONS(5892), 1, anon_sym_EQ, - STATE(4661), 1, + STATE(4447), 1, sym_comment, - ACTIONS(5791), 14, + ACTIONS(5894), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -402035,16 +385618,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [172482] = 5, + [169260] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5875), 1, + ACTIONS(5718), 1, anon_sym_PIPE, - STATE(4662), 1, + STATE(4448), 1, sym_comment, - ACTIONS(5877), 14, + ACTIONS(5720), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -402059,74 +385642,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [172511] = 5, + [169289] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5925), 1, - anon_sym_PIPE, - STATE(4663), 1, - sym_comment, - ACTIONS(5927), 14, - sym__automatic_semicolon, + ACTIONS(5919), 1, anon_sym_EQ, + STATE(4449), 1, + sym_comment, + ACTIONS(5921), 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, - [172540] = 5, + [169318] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5925), 1, - anon_sym_PIPE, - STATE(4664), 1, - sym_comment, - ACTIONS(5927), 14, - sym__automatic_semicolon, + ACTIONS(5933), 1, anon_sym_EQ, + STATE(4450), 1, + sym_comment, + ACTIONS(5935), 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, - [172569] = 10, + [169347] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(7766), 1, anon_sym_DQUOTE, - ACTIONS(7761), 1, + ACTIONS(7768), 1, anon_sym_SQUOTE, - ACTIONS(7767), 1, + ACTIONS(7774), 1, anon_sym_unique, - ACTIONS(7817), 1, + ACTIONS(7840), 1, sym_number, - STATE(4665), 1, + STATE(4451), 1, sym_comment, - STATE(8475), 1, + STATE(8113), 1, sym_string, - STATE(8483), 1, + STATE(8116), 1, sym_predefined_type, - ACTIONS(7763), 9, + ACTIONS(7770), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -402136,74 +385719,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [172608] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5921), 1, - anon_sym_PIPE, - STATE(4666), 1, - sym_comment, - ACTIONS(5923), 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, - [172637] = 5, + [169386] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5885), 1, - anon_sym_PIPE, - STATE(4667), 1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7842), 1, + sym_number, + STATE(4452), 1, sym_comment, - ACTIONS(5887), 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, - [172666] = 10, + STATE(8126), 1, + sym_string, + STATE(8127), 1, + sym_predefined_type, + ACTIONS(7770), 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, + [169425] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(7766), 1, anon_sym_DQUOTE, - ACTIONS(7761), 1, + ACTIONS(7768), 1, anon_sym_SQUOTE, - ACTIONS(7767), 1, + ACTIONS(7774), 1, anon_sym_unique, - ACTIONS(7819), 1, + ACTIONS(7844), 1, sym_number, - STATE(4668), 1, + STATE(4453), 1, sym_comment, - STATE(8448), 1, + STATE(8129), 1, sym_string, - STATE(8464), 1, + STATE(8130), 1, sym_predefined_type, - ACTIONS(7763), 9, + ACTIONS(7770), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -402213,18 +385777,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [172705] = 6, + [169464] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5858), 1, + anon_sym_PIPE, + STATE(4454), 1, + sym_comment, + ACTIONS(5860), 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, + [169493] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5757), 1, + ACTIONS(5990), 1, anon_sym_EQ, - ACTIONS(7821), 1, - anon_sym_extends, - STATE(4669), 1, + STATE(4455), 1, sym_comment, - ACTIONS(5759), 13, + ACTIONS(5992), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -402238,16 +385824,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, - [172736] = 5, + anon_sym_extends, + [169522] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5827), 1, + ACTIONS(5740), 1, anon_sym_EQ, - STATE(4670), 1, + STATE(4456), 1, sym_comment, - ACTIONS(5829), 14, + ACTIONS(5742), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -402262,16 +385849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [172765] = 5, + [169551] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5879), 1, + ACTIONS(5730), 1, anon_sym_PIPE, - STATE(4671), 1, + STATE(4457), 1, sym_comment, - ACTIONS(5881), 14, + ACTIONS(5732), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -402286,45 +385873,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [172794] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7823), 1, - sym_number, - STATE(4672), 1, - sym_comment, - STATE(8302), 1, - sym_predefined_type, - STATE(8303), 1, - sym_string, - ACTIONS(7763), 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, - [172833] = 5, + [169580] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5951), 1, + ACTIONS(5858), 1, anon_sym_PIPE, - STATE(4673), 1, + STATE(4458), 1, sym_comment, - ACTIONS(5953), 14, + ACTIONS(5860), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -402339,16 +385897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [172862] = 5, + [169609] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5957), 1, + ACTIONS(5854), 1, anon_sym_PIPE, - STATE(4674), 1, + STATE(4459), 1, sym_comment, - ACTIONS(5959), 14, + ACTIONS(5856), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -402363,64 +385921,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [172891] = 5, + [169638] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5781), 1, - anon_sym_EQ, - STATE(4675), 1, + ACTIONS(5848), 1, + anon_sym_PIPE, + STATE(4460), 1, sym_comment, - ACTIONS(5783), 14, - anon_sym_as, + ACTIONS(5850), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [172920] = 5, + anon_sym_PIPE_RBRACE, + [169667] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5707), 1, - anon_sym_EQ, - STATE(4676), 1, + ACTIONS(5522), 1, + anon_sym_PIPE, + ACTIONS(7754), 1, + anon_sym_LT, + ACTIONS(7846), 1, + anon_sym_DOT, + ACTIONS(7848), 1, + anon_sym_is, + STATE(4461), 1, sym_comment, - ACTIONS(5709), 14, - anon_sym_as, + STATE(4682), 1, + sym_type_arguments, + ACTIONS(4603), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [172949] = 5, + anon_sym_PIPE_RBRACE, + [169704] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5957), 1, + ACTIONS(5854), 1, anon_sym_PIPE, - STATE(4677), 1, + STATE(4462), 1, sym_comment, - ACTIONS(5959), 14, + ACTIONS(5856), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -402435,16 +385997,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [172978] = 5, + [169733] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5925), 1, + ACTIONS(5848), 1, anon_sym_PIPE, - STATE(4678), 1, + STATE(4463), 1, sym_comment, - ACTIONS(5927), 14, + ACTIONS(5850), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -402459,25 +386021,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [173007] = 9, + [169762] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, + ACTIONS(7766), 1, anon_sym_DQUOTE, - ACTIONS(7761), 1, + ACTIONS(7768), 1, anon_sym_SQUOTE, - ACTIONS(7767), 1, + ACTIONS(7774), 1, anon_sym_unique, - ACTIONS(7825), 1, + ACTIONS(7850), 1, sym_number, - STATE(4679), 1, + STATE(4464), 1, sym_comment, - STATE(8428), 2, - sym_string, + STATE(8315), 1, sym_predefined_type, - ACTIONS(7763), 9, + STATE(8324), 1, + sym_string, + ACTIONS(7770), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -402487,40 +386050,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [173044] = 5, + [169801] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5961), 1, - anon_sym_PIPE, - STATE(4680), 1, - sym_comment, - ACTIONS(5963), 14, - sym__automatic_semicolon, + ACTIONS(6075), 1, anon_sym_EQ, + STATE(4465), 1, + sym_comment, + ACTIONS(6077), 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, - [173073] = 5, + [169830] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5831), 1, + ACTIONS(6050), 1, anon_sym_EQ, - STATE(4681), 1, + STATE(4466), 1, sym_comment, - ACTIONS(5833), 14, + ACTIONS(6052), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -402535,22 +386098,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [173102] = 8, + [169859] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7852), 1, + sym_number, + STATE(4467), 1, + sym_comment, + STATE(8394), 2, + sym_string, + sym_predefined_type, + ACTIONS(7770), 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, + [169896] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7854), 1, + sym_number, + STATE(4468), 1, + sym_comment, + STATE(8059), 1, + sym_string, + STATE(8067), 1, + sym_predefined_type, + ACTIONS(7770), 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, + [169935] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5831), 1, + ACTIONS(5592), 1, anon_sym_EQ, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(4682), 1, + STATE(4469), 1, sym_comment, - ACTIONS(5833), 11, + ACTIONS(5594), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -402561,17 +386175,49 @@ 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, - [173137] = 5, + anon_sym_extends, + [169964] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + ACTIONS(7774), 1, + anon_sym_unique, + ACTIONS(7856), 1, + sym_number, + STATE(4470), 1, + sym_comment, + STATE(8085), 1, + sym_string, + STATE(8087), 1, + sym_predefined_type, + ACTIONS(7770), 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, + [170003] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5723), 1, + ACTIONS(5748), 1, anon_sym_EQ, - STATE(4683), 1, + STATE(4471), 1, sym_comment, - ACTIONS(5725), 14, + ACTIONS(5750), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -402586,62 +386232,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [173166] = 5, + [170032] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5885), 1, - anon_sym_PIPE, - STATE(4684), 1, - sym_comment, - ACTIONS(5887), 14, - sym__automatic_semicolon, + ACTIONS(5748), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(7832), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [173195] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5961), 1, - anon_sym_PIPE, - STATE(4685), 1, + STATE(4472), 1, sym_comment, - ACTIONS(5963), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5750), 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, - [173224] = 4, + [170063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4686), 1, + STATE(4473), 1, sym_comment, - ACTIONS(7827), 15, + ACTIONS(7858), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -402657,43 +386280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [173251] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5973), 1, - anon_sym_EQ, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(4687), 1, - sym_comment, - ACTIONS(5975), 11, - 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_QMARK, - [173286] = 5, + [170090] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5855), 1, + ACTIONS(5770), 1, anon_sym_PIPE, - STATE(4688), 1, + STATE(4474), 1, sym_comment, - ACTIONS(5857), 14, + ACTIONS(5772), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -402708,14 +386304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [173315] = 4, + [170119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4689), 1, + STATE(4475), 1, sym_comment, - ACTIONS(7829), 15, + ACTIONS(7860), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -402731,16 +386327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [173342] = 5, + [170146] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5961), 1, + ACTIONS(5830), 1, anon_sym_PIPE, - STATE(4690), 1, + STATE(4476), 1, sym_comment, - ACTIONS(5963), 14, + ACTIONS(5832), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -402755,98 +386351,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [173371] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7831), 1, - sym_number, - STATE(4691), 1, - sym_comment, - STATE(8432), 1, - sym_string, - STATE(8552), 1, - sym_predefined_type, - ACTIONS(7763), 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, - [173410] = 5, + [170175] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5965), 1, - anon_sym_PIPE, - STATE(4692), 1, - sym_comment, - ACTIONS(5967), 14, - sym__automatic_semicolon, + ACTIONS(5796), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [173439] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7833), 1, - anon_sym_LPAREN, - ACTIONS(7835), 1, - anon_sym_DOT, - ACTIONS(7837), 1, - anon_sym_QMARK_DOT, - ACTIONS(7839), 1, - anon_sym_LT, - STATE(4693), 1, + STATE(4477), 1, sym_comment, - STATE(4893), 1, - sym_arguments, - STATE(5093), 1, - sym_type_arguments, - ACTIONS(5523), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5798), 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, - [173478] = 5, + [170204] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5969), 1, + ACTIONS(5762), 1, anon_sym_EQ, - STATE(4694), 1, + STATE(4478), 1, sym_comment, - ACTIONS(5971), 14, + ACTIONS(5764), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -402861,74 +386399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [173507] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7833), 1, - anon_sym_LPAREN, - ACTIONS(7839), 1, - anon_sym_LT, - ACTIONS(7841), 1, - anon_sym_DOT, - ACTIONS(7843), 1, - anon_sym_QMARK_DOT, - STATE(4695), 1, - sym_comment, - STATE(4889), 1, - sym_arguments, - STATE(5100), 1, - sym_type_arguments, - ACTIONS(5517), 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, - [173546] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7833), 1, - anon_sym_LPAREN, - ACTIONS(7839), 1, - anon_sym_LT, - ACTIONS(7845), 1, - anon_sym_DOT, - ACTIONS(7847), 1, - anon_sym_QMARK_DOT, - STATE(4696), 1, - sym_comment, - STATE(4886), 1, - sym_arguments, - STATE(5105), 1, - sym_type_arguments, - ACTIONS(4531), 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, - [173585] = 5, + [170233] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5819), 1, + ACTIONS(5596), 1, anon_sym_EQ, - STATE(4697), 1, + STATE(4479), 1, sym_comment, - ACTIONS(5821), 14, + ACTIONS(5598), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -402943,1388 +386423,1109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [173614] = 5, + [170262] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5965), 1, - anon_sym_PIPE, - STATE(4698), 1, - sym_comment, - ACTIONS(5967), 14, - sym__automatic_semicolon, + ACTIONS(6040), 1, anon_sym_EQ, + STATE(4480), 1, + sym_comment, + ACTIONS(6042), 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, - [173643] = 7, + [170291] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5753), 1, + ACTIONS(5998), 1, anon_sym_EQ, - ACTIONS(7783), 1, - anon_sym_LBRACK, - STATE(4699), 1, + STATE(4481), 1, sym_comment, - ACTIONS(5703), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(5755), 10, + ACTIONS(6000), 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_QMARK, - [173676] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5965), 1, - anon_sym_PIPE, - STATE(4700), 1, - sym_comment, - ACTIONS(5967), 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, - [173705] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - ACTIONS(7767), 1, - anon_sym_unique, - ACTIONS(7849), 1, - sym_number, - STATE(4701), 1, - sym_comment, - STATE(8289), 1, - sym_predefined_type, - STATE(8292), 1, - sym_string, - ACTIONS(7763), 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, - [173744] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5863), 1, anon_sym_PIPE, - STATE(4702), 1, - sym_comment, - ACTIONS(5865), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [173773] = 9, + [170320] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5500), 1, - anon_sym_PIPE, - ACTIONS(7747), 1, - anon_sym_LT, - ACTIONS(7851), 1, - anon_sym_DOT, - ACTIONS(7853), 1, - anon_sym_is, - STATE(4703), 1, - sym_comment, - STATE(4932), 1, - sym_type_arguments, - ACTIONS(4595), 10, - sym__automatic_semicolon, + ACTIONS(5994), 1, anon_sym_EQ, + STATE(4482), 1, + sym_comment, + ACTIONS(5996), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [173810] = 15, + [170349] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7859), 1, + ACTIONS(7866), 1, anon_sym_BANG, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7867), 1, + ACTIONS(7874), 1, anon_sym_QMARK, - STATE(4704), 1, + STATE(4483), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5908), 1, + STATE(5603), 1, sym_type_annotation, - STATE(7134), 1, + STATE(6541), 1, sym__initializer, - STATE(7421), 1, + STATE(7482), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(7857), 3, + ACTIONS(7864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173858] = 15, + [170397] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7871), 1, + ACTIONS(7878), 1, anon_sym_BANG, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - ACTIONS(7875), 1, + ACTIONS(7882), 1, anon_sym_QMARK, - STATE(4705), 1, + STATE(4484), 1, sym_comment, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6040), 1, + STATE(5460), 1, + sym__call_signature, + STATE(5669), 1, sym_type_annotation, - STATE(6625), 1, + STATE(7128), 1, sym__initializer, - STATE(6626), 1, - sym__call_signature, - STATE(8017), 1, + STATE(7873), 1, sym_type_parameters, - ACTIONS(7869), 3, + ACTIONS(7876), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173906] = 15, + [170445] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7879), 1, + ACTIONS(7886), 1, anon_sym_BANG, - ACTIONS(7881), 1, + ACTIONS(7888), 1, anon_sym_QMARK, - STATE(4706), 1, + STATE(4485), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(6289), 1, + STATE(5757), 1, sym_type_annotation, - STATE(7161), 1, + STATE(6865), 1, sym__initializer, - STATE(7371), 1, + STATE(7768), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(7877), 3, + ACTIONS(7884), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173954] = 13, + [170493] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5269), 1, - anon_sym_RBRACE, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(7883), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(4707), 1, - sym_comment, - STATE(5297), 1, - sym_formal_parameters, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - STATE(7433), 1, - sym_type_parameters, - ACTIONS(5208), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [173998] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5281), 1, - anon_sym_RBRACE, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7883), 1, - anon_sym_EQ, - STATE(4708), 1, - sym_comment, - STATE(5297), 1, - sym_formal_parameters, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - STATE(7433), 1, - sym_type_parameters, - ACTIONS(5208), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [174042] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7887), 1, + ACTIONS(7890), 1, anon_sym_BANG, - ACTIONS(7889), 1, - anon_sym_LPAREN, - ACTIONS(7891), 1, + ACTIONS(7892), 1, anon_sym_QMARK, - STATE(4709), 1, + STATE(4486), 1, sym_comment, - STATE(5049), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5632), 1, - sym__call_signature, - STATE(6210), 1, + STATE(5658), 1, sym_type_annotation, - STATE(7335), 1, + STATE(6907), 1, sym__initializer, - STATE(7675), 1, + STATE(7621), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - ACTIONS(7885), 3, + ACTIONS(7884), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174090] = 15, + [170541] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7895), 1, + ACTIONS(7894), 1, anon_sym_BANG, - ACTIONS(7897), 1, + ACTIONS(7896), 1, anon_sym_QMARK, - STATE(4710), 1, + STATE(4487), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(6033), 1, + STATE(5631), 1, sym_type_annotation, - STATE(6987), 1, + STATE(6916), 1, sym__initializer, - STATE(8189), 1, - sym_type_parameters, - STATE(8192), 1, + STATE(7596), 1, sym__call_signature, - ACTIONS(7893), 3, + STATE(7801), 1, + sym_type_parameters, + ACTIONS(7884), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174138] = 15, + [170589] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7899), 1, - anon_sym_BANG, - ACTIONS(7901), 1, - anon_sym_QMARK, - STATE(4711), 1, + ACTIONS(120), 1, + anon_sym_unique, + STATE(2767), 1, + sym_type_predicate, + STATE(4488), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(6278), 1, - sym_type_annotation, - STATE(7200), 1, - sym__initializer, - STATE(7780), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - ACTIONS(7877), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174186] = 15, + STATE(8263), 1, + sym_predefined_type, + ACTIONS(7898), 2, + sym_identifier, + sym_this, + ACTIONS(122), 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, + [170623] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5274), 1, + anon_sym_RBRACE, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7900), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7903), 1, - anon_sym_BANG, - ACTIONS(7905), 1, - anon_sym_QMARK, - STATE(4712), 1, + STATE(4489), 1, sym_comment, - STATE(5514), 1, + STATE(5083), 1, sym_formal_parameters, - STATE(5860), 1, - sym_type_annotation, - STATE(7096), 1, - sym__initializer, - STATE(7971), 1, - sym__call_signature, - STATE(8189), 1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + STATE(7643), 1, sym_type_parameters, - ACTIONS(7857), 3, + ACTIONS(5210), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [174234] = 8, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [170667] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5500), 1, - anon_sym_PIPE, - ACTIONS(7747), 1, - anon_sym_LT, - ACTIONS(7851), 1, - anon_sym_DOT, - STATE(4713), 1, - sym_comment, - STATE(4932), 1, - sym_type_arguments, - ACTIONS(4595), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(7704), 1, + anon_sym_STAR, + ACTIONS(7708), 1, anon_sym_LBRACE, + ACTIONS(7904), 1, + sym_identifier, + ACTIONS(7906), 1, + anon_sym_type, + STATE(4490), 1, + sym_comment, + STATE(6284), 1, + sym_import_require_clause, + STATE(6285), 1, + sym_string, + STATE(7606), 1, + sym_import_clause, + STATE(7628), 1, + sym__import_identifier, + ACTIONS(7908), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [174268] = 15, + anon_sym_from, + STATE(8145), 2, + sym_namespace_import, + sym_named_imports, + [170715] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7907), 1, + ACTIONS(7880), 1, + anon_sym_LPAREN, + ACTIONS(7912), 1, anon_sym_BANG, - ACTIONS(7909), 1, + ACTIONS(7914), 1, anon_sym_QMARK, - STATE(4714), 1, + STATE(4491), 1, sym_comment, - STATE(5514), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6198), 1, + STATE(5352), 1, + sym__call_signature, + STATE(5992), 1, sym_type_annotation, - STATE(7225), 1, + STATE(6655), 1, sym__initializer, - STATE(7375), 1, - sym__call_signature, - STATE(8189), 1, + STATE(7873), 1, sym_type_parameters, - ACTIONS(7877), 3, + ACTIONS(7910), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174316] = 15, + [170763] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - ACTIONS(7913), 1, + ACTIONS(7918), 1, anon_sym_BANG, - ACTIONS(7915), 1, + ACTIONS(7920), 1, anon_sym_QMARK, - STATE(4715), 1, + STATE(4492), 1, sym_comment, - STATE(5049), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5734), 1, - sym__call_signature, - STATE(5761), 1, + STATE(5881), 1, sym_type_annotation, - STATE(6935), 1, + STATE(6574), 1, sym__initializer, - STATE(7675), 1, + STATE(7735), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - ACTIONS(7911), 3, + ACTIONS(7916), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174364] = 15, + [170811] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7917), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(7906), 1, anon_sym_type, - STATE(4716), 1, + STATE(4493), 1, sym_comment, - STATE(6358), 1, - sym_string, - STATE(6359), 1, + STATE(6317), 1, sym_import_require_clause, - STATE(7706), 1, + STATE(6319), 1, + sym_string, + STATE(7628), 1, sym__import_identifier, - STATE(7903), 1, + STATE(7724), 1, sym_import_clause, - ACTIONS(7921), 2, + ACTIONS(7908), 2, anon_sym_COMMA, anon_sym_from, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - [174412] = 15, + [170859] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7917), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(7906), 1, anon_sym_type, - STATE(4717), 1, + STATE(4494), 1, sym_comment, - STATE(6504), 1, + STATE(6356), 1, sym_import_require_clause, - STATE(6506), 1, + STATE(6357), 1, sym_string, - STATE(7706), 1, + STATE(7628), 1, sym__import_identifier, - STATE(8125), 1, + STATE(7833), 1, sym_import_clause, - ACTIONS(7921), 2, + ACTIONS(7908), 2, anon_sym_COMMA, anon_sym_from, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - [174460] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7925), 1, - anon_sym_BANG, - ACTIONS(7927), 1, - anon_sym_QMARK, - STATE(4718), 1, - sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(5909), 1, - sym_type_annotation, - STATE(7137), 1, - sym__initializer, - STATE(7887), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - ACTIONS(7923), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174508] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - ACTIONS(7931), 1, - anon_sym_BANG, - ACTIONS(7933), 1, - anon_sym_QMARK, - STATE(4719), 1, - sym_comment, - STATE(5049), 1, - sym_formal_parameters, - STATE(5516), 1, - sym__call_signature, - STATE(5778), 1, - sym_type_annotation, - STATE(6604), 1, - sym__initializer, - STATE(7675), 1, - sym_type_parameters, - ACTIONS(7929), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174556] = 15, + [170907] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7917), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(7906), 1, anon_sym_type, - STATE(4720), 1, + STATE(4495), 1, sym_comment, - STATE(6408), 1, + STATE(6151), 1, sym_string, - STATE(6409), 1, + STATE(6152), 1, sym_import_require_clause, - STATE(7706), 1, + STATE(7628), 1, sym__import_identifier, - STATE(8129), 1, + STATE(7872), 1, sym_import_clause, - ACTIONS(7921), 2, + ACTIONS(7908), 2, anon_sym_COMMA, anon_sym_from, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - [174604] = 15, + [170955] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7935), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(7912), 1, anon_sym_BANG, - ACTIONS(7937), 1, + ACTIONS(7922), 1, anon_sym_QMARK, - STATE(4721), 1, + STATE(4496), 1, sym_comment, - STATE(5514), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5992), 1, sym_type_annotation, - STATE(7062), 1, - sym__initializer, - STATE(8030), 1, + STATE(6401), 1, sym__call_signature, - STATE(8189), 1, + STATE(6403), 1, + sym__initializer, + STATE(7660), 1, sym_type_parameters, - ACTIONS(7857), 3, + ACTIONS(7910), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174652] = 15, + [171003] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7871), 1, + ACTIONS(7926), 1, anon_sym_BANG, - ACTIONS(7889), 1, - anon_sym_LPAREN, - ACTIONS(7939), 1, + ACTIONS(7928), 1, anon_sym_QMARK, - STATE(4722), 1, + STATE(4497), 1, sym_comment, - STATE(5049), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5554), 1, - sym__call_signature, - STATE(6040), 1, + STATE(5955), 1, sym_type_annotation, - STATE(6641), 1, + STATE(6416), 1, sym__initializer, - STATE(7675), 1, + STATE(7172), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - ACTIONS(7869), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174700] = 15, + [171051] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7941), 1, + ACTIONS(7930), 1, anon_sym_BANG, - ACTIONS(7943), 1, + ACTIONS(7932), 1, anon_sym_QMARK, - STATE(4723), 1, + STATE(4498), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5745), 1, + STATE(5948), 1, sym_type_annotation, - STATE(6602), 1, + STATE(6425), 1, sym__initializer, - STATE(7628), 1, + STATE(7178), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(7893), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174748] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(7697), 1, - anon_sym_STAR, - ACTIONS(7701), 1, - anon_sym_LBRACE, - ACTIONS(7917), 1, - sym_identifier, - ACTIONS(7919), 1, - anon_sym_type, - STATE(4724), 1, - sym_comment, - STATE(6509), 1, - sym_import_require_clause, - STATE(6510), 1, - sym_string, - STATE(7706), 1, - sym__import_identifier, - STATE(7948), 1, - sym_import_clause, - ACTIONS(7921), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(8569), 2, - sym_namespace_import, - sym_named_imports, - [174796] = 15, + [171099] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7945), 1, + ACTIONS(7934), 1, anon_sym_BANG, - ACTIONS(7947), 1, + ACTIONS(7936), 1, anon_sym_QMARK, - STATE(4725), 1, + STATE(4499), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(6237), 1, + STATE(5913), 1, sym_type_annotation, - STATE(7083), 1, + STATE(6455), 1, sym__initializer, - STATE(7988), 1, + STATE(7283), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(7877), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174844] = 15, + [171147] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(5522), 1, + anon_sym_PIPE, + ACTIONS(7754), 1, anon_sym_LT, - ACTIONS(7949), 1, - anon_sym_BANG, - ACTIONS(7951), 1, - anon_sym_QMARK, - STATE(4726), 1, + ACTIONS(7846), 1, + anon_sym_DOT, + STATE(4500), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(6229), 1, - sym_type_annotation, - STATE(7059), 1, - sym__initializer, - STATE(8028), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - ACTIONS(7877), 3, + STATE(4682), 1, + sym_type_arguments, + ACTIONS(4603), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174892] = 15, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [171181] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(7913), 1, + ACTIONS(7938), 1, anon_sym_BANG, - ACTIONS(7953), 1, + ACTIONS(7940), 1, anon_sym_QMARK, - STATE(4727), 1, + STATE(4501), 1, sym_comment, - STATE(4942), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5761), 1, + STATE(5920), 1, sym_type_annotation, - STATE(6998), 1, - sym__call_signature, - STATE(7006), 1, + STATE(6444), 1, sym__initializer, - STATE(8017), 1, + STATE(7198), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - ACTIONS(7911), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174940] = 13, + [171229] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(120), 1, + anon_sym_unique, + STATE(4502), 1, + sym_comment, + STATE(4830), 1, + sym_type_predicate, + STATE(8066), 1, + sym_predefined_type, + ACTIONS(7942), 2, + sym_identifier, + sym_this, + ACTIONS(122), 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, + [171263] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, + ACTIONS(5266), 1, anon_sym_COMMA, - ACTIONS(5272), 1, + ACTIONS(5269), 1, anon_sym_RBRACE, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(7883), 1, + ACTIONS(7900), 1, anon_sym_EQ, - STATE(4728), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4503), 1, sym_comment, - STATE(5297), 1, + STATE(5083), 1, sym_formal_parameters, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - STATE(7433), 1, + STATE(7643), 1, sym_type_parameters, - ACTIONS(5208), 5, + ACTIONS(5210), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [174984] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7957), 1, - anon_sym_BANG, - ACTIONS(7959), 1, - anon_sym_QMARK, - STATE(4729), 1, - sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(5750), 1, - sym_type_annotation, - STATE(6663), 1, - sym__initializer, - STATE(7977), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - ACTIONS(7955), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175032] = 13, + [171307] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, + ACTIONS(5266), 1, anon_sym_COMMA, - ACTIONS(5275), 1, + ACTIONS(5280), 1, anon_sym_RBRACE, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(7883), 1, + ACTIONS(7900), 1, anon_sym_EQ, - STATE(4730), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4504), 1, sym_comment, - STATE(5297), 1, + STATE(5083), 1, sym_formal_parameters, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - STATE(7433), 1, + STATE(7643), 1, sym_type_parameters, - ACTIONS(5208), 5, + ACTIONS(5210), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [175076] = 13, + [171351] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, + ACTIONS(5266), 1, anon_sym_COMMA, - ACTIONS(5254), 1, + ACTIONS(5283), 1, anon_sym_RBRACE, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(7883), 1, + ACTIONS(7900), 1, anon_sym_EQ, - STATE(4731), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4505), 1, sym_comment, - STATE(5297), 1, + STATE(5083), 1, sym_formal_parameters, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(6902), 1, aux_sym_object_repeat1, - STATE(7433), 1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7643), 1, sym_type_parameters, - ACTIONS(5208), 5, + ACTIONS(5210), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [175120] = 15, + [171395] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7961), 1, + ACTIONS(7946), 1, anon_sym_BANG, - ACTIONS(7963), 1, + ACTIONS(7948), 1, anon_sym_QMARK, - STATE(4732), 1, + STATE(4506), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(6187), 1, + STATE(5996), 1, sym_type_annotation, - STATE(7347), 1, + STATE(6725), 1, sym__initializer, - STATE(7600), 1, + STATE(7311), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(7877), 3, + ACTIONS(7944), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175168] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(120), 1, - anon_sym_unique, - STATE(4652), 1, - sym_type_predicate, - STATE(4733), 1, - sym_comment, - STATE(8233), 1, - sym_predefined_type, - ACTIONS(7965), 2, - sym_identifier, - sym_this, - ACTIONS(122), 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, - [175202] = 7, + [171443] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - STATE(4734), 1, + ACTIONS(7952), 1, + anon_sym_BANG, + ACTIONS(7954), 1, + anon_sym_QMARK, + STATE(4507), 1, sym_comment, - STATE(3148), 2, - sym_template_string, - sym_arguments, - ACTIONS(5783), 10, + STATE(4747), 1, + sym_formal_parameters, + STATE(5989), 1, + sym_type_annotation, + STATE(6641), 1, + sym__call_signature, + STATE(6652), 1, + sym__initializer, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(7950), 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_QMARK, - anon_sym_extends, - [175234] = 15, + anon_sym_SEMI, + [171491] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7917), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(7906), 1, anon_sym_type, - STATE(4735), 1, + STATE(4508), 1, sym_comment, - STATE(6541), 1, - sym_import_require_clause, - STATE(6542), 1, + STATE(6278), 1, sym_string, - STATE(7429), 1, - sym_import_clause, - STATE(7706), 1, + STATE(6279), 1, + sym_import_require_clause, + STATE(7628), 1, sym__import_identifier, - ACTIONS(7921), 2, + STATE(7691), 1, + sym_import_clause, + ACTIONS(7908), 2, anon_sym_COMMA, anon_sym_from, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - [175282] = 15, + [171539] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7967), 1, + ACTIONS(7880), 1, + anon_sym_LPAREN, + ACTIONS(7952), 1, anon_sym_BANG, - ACTIONS(7969), 1, + ACTIONS(7956), 1, anon_sym_QMARK, - STATE(4736), 1, + STATE(4509), 1, sym_comment, - STATE(5514), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5820), 1, + STATE(5325), 1, + sym__call_signature, + STATE(5989), 1, sym_type_annotation, - STATE(7041), 1, + STATE(6501), 1, sym__initializer, - STATE(8066), 1, - sym__call_signature, - STATE(8189), 1, + STATE(7873), 1, sym_type_parameters, - ACTIONS(7857), 3, + ACTIONS(7950), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175330] = 15, + [171587] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(7704), 1, + anon_sym_STAR, + ACTIONS(7708), 1, + anon_sym_LBRACE, + ACTIONS(7904), 1, + sym_identifier, + ACTIONS(7906), 1, + anon_sym_type, + STATE(4510), 1, + sym_comment, + STATE(6276), 1, + sym_string, + STATE(6277), 1, + sym_import_require_clause, + STATE(7444), 1, + sym_import_clause, + STATE(7628), 1, + sym__import_identifier, + ACTIONS(7908), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(8145), 2, + sym_namespace_import, + sym_named_imports, + [171635] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7971), 1, + ACTIONS(7880), 1, + anon_sym_LPAREN, + ACTIONS(7960), 1, anon_sym_BANG, - ACTIONS(7973), 1, + ACTIONS(7962), 1, anon_sym_QMARK, - STATE(4737), 1, + STATE(4511), 1, sym_comment, - STATE(5514), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6005), 1, + STATE(5408), 1, + sym__call_signature, + STATE(5759), 1, sym_type_annotation, - STATE(6849), 1, + STATE(6920), 1, sym__initializer, - STATE(8033), 1, - sym__call_signature, - STATE(8189), 1, + STATE(7873), 1, sym_type_parameters, - ACTIONS(7893), 3, + ACTIONS(7958), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175378] = 15, + [171683] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7917), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(7906), 1, anon_sym_type, - STATE(4738), 1, + STATE(4512), 1, sym_comment, - STATE(6363), 1, + STATE(6252), 1, sym_import_require_clause, - STATE(6364), 1, + STATE(6253), 1, sym_string, - STATE(7706), 1, - sym__import_identifier, - STATE(7985), 1, + STATE(7528), 1, sym_import_clause, - ACTIONS(7921), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(8569), 2, - sym_namespace_import, - sym_named_imports, - [175426] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(7697), 1, - anon_sym_STAR, - ACTIONS(7701), 1, - anon_sym_LBRACE, - ACTIONS(7917), 1, - sym_identifier, - ACTIONS(7919), 1, - anon_sym_type, - STATE(4739), 1, - sym_comment, - STATE(6402), 1, - sym_string, - STATE(6403), 1, - sym_import_require_clause, - STATE(7706), 1, + STATE(7628), 1, sym__import_identifier, - STATE(7832), 1, - sym_import_clause, - ACTIONS(7921), 2, + ACTIONS(7908), 2, anon_sym_COMMA, anon_sym_from, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - [175474] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [171731] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(120), 1, - anon_sym_unique, - STATE(3467), 1, - sym_type_predicate, - STATE(4740), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + STATE(4513), 1, sym_comment, - STATE(8269), 1, - sym_predefined_type, - ACTIONS(7975), 2, - sym_identifier, - sym_this, - ACTIONS(122), 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, - [175508] = 13, + STATE(2887), 2, + sym_template_string, + sym_arguments, + ACTIONS(6077), 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, + [171763] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, + ACTIONS(5266), 1, anon_sym_COMMA, - ACTIONS(5278), 1, + ACTIONS(5286), 1, anon_sym_RBRACE, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(7883), 1, + ACTIONS(7900), 1, anon_sym_EQ, - STATE(4741), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4514), 1, sym_comment, - STATE(5297), 1, + STATE(5083), 1, sym_formal_parameters, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - STATE(7433), 1, + STATE(7643), 1, sym_type_parameters, - ACTIONS(5208), 5, + ACTIONS(5210), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [175552] = 8, + [171807] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(120), 1, anon_sym_unique, - STATE(4742), 1, - sym_comment, - STATE(5062), 1, + STATE(3229), 1, sym_type_predicate, - STATE(8353), 1, + STATE(4515), 1, + sym_comment, + STATE(8248), 1, sym_predefined_type, - ACTIONS(7977), 2, + ACTIONS(7964), 2, sym_identifier, sym_this, ACTIONS(122), 9, @@ -404337,20 +387538,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [175586] = 8, + [171841] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7966), 1, + anon_sym_BANG, + ACTIONS(7968), 1, + anon_sym_QMARK, + STATE(4516), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(5689), 1, + sym_type_annotation, + STATE(6604), 1, + sym__initializer, + STATE(7630), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + ACTIONS(7864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171889] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(120), 1, anon_sym_unique, - STATE(4743), 1, + STATE(4517), 1, sym_comment, - STATE(4882), 1, + STATE(4698), 1, sym_type_predicate, - STATE(8592), 1, + STATE(8166), 1, sym_predefined_type, - ACTIONS(7979), 2, + ACTIONS(7970), 2, sym_identifier, sym_this, ACTIONS(122), 9, @@ -404363,20 +387597,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [175620] = 8, + [171923] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7972), 1, + anon_sym_BANG, + ACTIONS(7974), 1, + anon_sym_QMARK, + STATE(4518), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(5606), 1, + sym_type_annotation, + STATE(7067), 1, + sym__initializer, + STATE(7276), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + ACTIONS(7884), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171971] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7976), 1, + anon_sym_BANG, + ACTIONS(7978), 1, + anon_sym_QMARK, + STATE(4519), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(5772), 1, + sym_type_annotation, + STATE(6842), 1, + sym__initializer, + STATE(7750), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + ACTIONS(7884), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172019] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7980), 1, + anon_sym_BANG, + ACTIONS(7982), 1, + anon_sym_QMARK, + STATE(4520), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(5645), 1, + sym_type_annotation, + STATE(7123), 1, + sym__initializer, + STATE(7187), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + ACTIONS(7884), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172067] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7984), 1, + anon_sym_BANG, + ACTIONS(7986), 1, + anon_sym_QMARK, + STATE(4521), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(5570), 1, + sym_type_annotation, + STATE(6588), 1, + sym__initializer, + STATE(7565), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + ACTIONS(7864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172115] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5277), 1, + anon_sym_RBRACE, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7900), 1, + anon_sym_EQ, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4522), 1, + sym_comment, + STATE(5083), 1, + sym_formal_parameters, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + STATE(7643), 1, + sym_type_parameters, + ACTIONS(5210), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [172159] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(120), 1, anon_sym_unique, - STATE(2844), 1, + STATE(4418), 1, sym_type_predicate, - STATE(4744), 1, + STATE(4523), 1, sym_comment, - STATE(8402), 1, + STATE(8068), 1, sym_predefined_type, - ACTIONS(7981), 2, + ACTIONS(7988), 2, sym_identifier, sym_this, ACTIONS(122), 9, @@ -404389,109 +387786,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [175654] = 15, + [172193] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - ACTIONS(7985), 1, + ACTIONS(7992), 1, anon_sym_BANG, - ACTIONS(7987), 1, + ACTIONS(7994), 1, anon_sym_QMARK, - STATE(4745), 1, + STATE(4524), 1, sym_comment, - STATE(5049), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5639), 1, + STATE(5333), 1, sym__call_signature, - STATE(6171), 1, + STATE(5956), 1, sym_type_annotation, - STATE(7327), 1, + STATE(6763), 1, sym__initializer, - STATE(7675), 1, + STATE(7873), 1, sym_type_parameters, - ACTIONS(7983), 3, + ACTIONS(7990), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175702] = 15, + [172241] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7989), 1, + ACTIONS(7996), 1, anon_sym_BANG, - ACTIONS(7991), 1, + ACTIONS(7998), 1, anon_sym_QMARK, - STATE(4746), 1, + STATE(4525), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5972), 1, + STATE(6011), 1, sym_type_annotation, - STATE(6803), 1, + STATE(6739), 1, sym__initializer, - STATE(7363), 1, - sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(7893), 3, + STATE(7930), 1, + sym__call_signature, + ACTIONS(7864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175750] = 12, + [172289] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(7995), 1, - anon_sym_QMARK, - STATE(4747), 1, + STATE(4526), 1, sym_comment, - STATE(4942), 1, - sym_formal_parameters, - STATE(5929), 1, - sym__call_signature, - STATE(5937), 1, - sym_type_annotation, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(7993), 5, + ACTIONS(5636), 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, - [175791] = 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [172314] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4748), 1, + STATE(4527), 1, sym_comment, - ACTIONS(5923), 13, + ACTIONS(5832), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -404505,16 +387894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [175816] = 5, + [172339] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4423), 1, + ACTIONS(4399), 1, anon_sym_PIPE, - STATE(4749), 1, + STATE(4528), 1, sym_comment, - ACTIONS(5773), 12, + ACTIONS(5978), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -404527,38 +387916,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [175843] = 5, + [172366] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2472), 1, + anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4421), 1, + ACTIONS(6068), 1, anon_sym_PIPE, - STATE(4750), 1, + STATE(4529), 1, sym_comment, - ACTIONS(5775), 12, + ACTIONS(6070), 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, - [175870] = 5, + [172395] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4413), 1, + ACTIONS(4391), 1, anon_sym_PIPE, - STATE(4751), 1, + STATE(4530), 1, sym_comment, - ACTIONS(5777), 12, + ACTIONS(5972), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -404571,366 +387961,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [175897] = 8, + [172422] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2468), 1, + anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7839), 1, - anon_sym_LT, - ACTIONS(7997), 1, - anon_sym_DOT, - ACTIONS(7999), 1, - anon_sym_is, - STATE(4752), 1, + ACTIONS(6068), 1, + anon_sym_PIPE, + STATE(4531), 1, sym_comment, - STATE(5165), 1, - sym_type_arguments, - ACTIONS(4595), 9, + ACTIONS(6070), 11, 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, - [175930] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(8003), 1, - anon_sym_QMARK, - STATE(4753), 1, - sym_comment, - STATE(4942), 1, - sym_formal_parameters, - STATE(6042), 1, - sym_type_annotation, - STATE(6064), 1, - sym__call_signature, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(8001), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [175971] = 12, + [172451] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(8007), 1, - anon_sym_QMARK, - STATE(4754), 1, + ACTIONS(4341), 1, + anon_sym_PIPE, + STATE(4532), 1, sym_comment, - STATE(4942), 1, - sym_formal_parameters, - STATE(5918), 1, - sym__call_signature, - STATE(5919), 1, - sym_type_annotation, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(8005), 5, + ACTIONS(5614), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [176012] = 12, + [172478] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(8011), 1, + ACTIONS(8002), 1, anon_sym_QMARK, - STATE(4755), 1, + STATE(4533), 1, sym_comment, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(6132), 1, - sym_type_annotation, - STATE(6133), 1, + STATE(5248), 1, sym__call_signature, - STATE(8017), 1, + STATE(5653), 1, + sym_type_annotation, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8009), 5, + ACTIONS(8000), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176053] = 5, + [172519] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4383), 1, + ACTIONS(4347), 1, anon_sym_PIPE, - STATE(4756), 1, + STATE(4534), 1, sym_comment, - ACTIONS(5905), 12, + ACTIONS(5626), 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, - [176080] = 5, + [172546] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4381), 1, - anon_sym_PIPE, - STATE(4757), 1, - sym_comment, - ACTIONS(5903), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [176107] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4379), 1, - anon_sym_PIPE, - STATE(4758), 1, + ACTIONS(8006), 1, + anon_sym_QMARK, + STATE(4535), 1, sym_comment, - ACTIONS(5901), 12, + STATE(4747), 1, + sym_formal_parameters, + STATE(5822), 1, + sym__call_signature, + STATE(5824), 1, + sym_type_annotation, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(8004), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [176134] = 12, + [172587] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(8015), 1, + ACTIONS(8010), 1, anon_sym_QMARK, - STATE(4759), 1, + STATE(4536), 1, sym_comment, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(6190), 1, + STATE(5241), 1, sym__call_signature, - STATE(6199), 1, + STATE(5903), 1, sym_type_annotation, - STATE(8017), 1, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8013), 5, + ACTIONS(8008), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176175] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(4760), 1, - sym_comment, - ACTIONS(5887), 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, - [176200] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(4761), 1, - sym_comment, - ACTIONS(5881), 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, - [176225] = 13, + [172628] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7681), 1, + ACTIONS(7692), 1, anon_sym_LT, - ACTIONS(7691), 1, + ACTIONS(7698), 1, anon_sym_DOT, - ACTIONS(8017), 1, + ACTIONS(8012), 1, anon_sym_EQ, - ACTIONS(8022), 1, + ACTIONS(8017), 1, anon_sym_COLON, - ACTIONS(8024), 1, + ACTIONS(8019), 1, anon_sym_extends, - STATE(4593), 1, + STATE(4433), 1, sym_type_arguments, - STATE(4762), 1, + STATE(4537), 1, sym_comment, - STATE(6381), 1, + STATE(6206), 1, sym_constraint, - STATE(8085), 1, + STATE(7462), 1, sym_default_type, - ACTIONS(8019), 2, + ACTIONS(8014), 2, anon_sym_COMMA, anon_sym_GT, - ACTIONS(4595), 3, + ACTIONS(4603), 3, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [176268] = 12, + [172671] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(8027), 1, + ACTIONS(8022), 1, anon_sym_QMARK, - STATE(4763), 1, + STATE(4538), 1, sym_comment, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5257), 1, + STATE(5282), 1, sym__call_signature, - STATE(5919), 1, + STATE(5824), 1, sym_type_annotation, - STATE(8017), 1, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8005), 5, + ACTIONS(8004), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176309] = 4, + [172712] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4764), 1, + ACTIONS(4339), 1, + anon_sym_PIPE, + STATE(4539), 1, sym_comment, - ACTIONS(5887), 13, + ACTIONS(5628), 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, - [176334] = 6, + anon_sym_PIPE_RBRACE, + [172739] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2372), 1, - anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5989), 1, - anon_sym_PIPE, - STATE(4765), 1, + STATE(4540), 1, sym_comment, - ACTIONS(5991), 11, + ACTIONS(5942), 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, - [176363] = 4, + [172764] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4766), 1, + STATE(4541), 1, sym_comment, - ACTIONS(5881), 13, + ACTIONS(5931), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -404944,14 +388238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176388] = 4, + [172789] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4767), 1, + STATE(4542), 1, sym_comment, - ACTIONS(5877), 13, + ACTIONS(5888), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -404965,14 +388259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176413] = 4, + [172814] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4768), 1, + STATE(4543), 1, sym_comment, - ACTIONS(5873), 13, + ACTIONS(5884), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -404986,14 +388280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176438] = 4, + [172839] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4769), 1, + STATE(4544), 1, sym_comment, - ACTIONS(5877), 13, + ACTIONS(5888), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405007,38 +388301,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176463] = 7, + [172864] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5569), 1, - anon_sym_PIPE, - ACTIONS(7747), 1, - anon_sym_LT, - STATE(4770), 1, + STATE(4545), 1, sym_comment, - STATE(4924), 1, - sym_type_arguments, - ACTIONS(5571), 10, + ACTIONS(5884), 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, - [176494] = 4, + [172889] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4771), 1, + STATE(4546), 1, sym_comment, - ACTIONS(5873), 13, + ACTIONS(5732), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405052,14 +388343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176519] = 4, + [172914] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4772), 1, + STATE(4547), 1, sym_comment, - ACTIONS(5869), 13, + ACTIONS(5860), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405073,14 +388364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176544] = 4, + [172939] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4773), 1, + STATE(4548), 1, sym_comment, - ACTIONS(5865), 13, + ACTIONS(5732), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405094,14 +388385,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176569] = 4, + [172964] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4774), 1, + STATE(4549), 1, sym_comment, - ACTIONS(5869), 13, + ACTIONS(5860), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405115,14 +388406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176594] = 4, + [172989] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4775), 1, + STATE(4550), 1, sym_comment, - ACTIONS(5865), 13, + ACTIONS(5856), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405136,14 +388427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176619] = 4, + [173014] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4776), 1, + STATE(4551), 1, sym_comment, - ACTIONS(5861), 13, + ACTIONS(5850), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405157,36 +388448,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176644] = 5, + [173039] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4343), 1, - anon_sym_PIPE, - STATE(4777), 1, + STATE(4552), 1, sym_comment, - ACTIONS(5595), 12, + ACTIONS(5856), 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, - [176671] = 4, + [173064] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4778), 1, + STATE(4553), 1, sym_comment, - ACTIONS(5857), 13, + ACTIONS(5850), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405200,211 +388490,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176696] = 12, + [173089] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(8029), 1, - anon_sym_COLON, - ACTIONS(8031), 1, + ACTIONS(8024), 1, anon_sym_QMARK, - STATE(4779), 1, + STATE(4554), 1, sym_comment, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5421), 1, - sym__call_signature, - STATE(6132), 1, + STATE(5903), 1, sym_type_annotation, - STATE(8017), 1, + STATE(5905), 1, + sym__call_signature, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8009), 5, + ACTIONS(8008), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176737] = 4, + [173130] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4780), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(8028), 1, + anon_sym_COLON, + ACTIONS(8030), 1, + anon_sym_QMARK, + STATE(4555), 1, sym_comment, - ACTIONS(5963), 13, + STATE(4747), 1, + sym_formal_parameters, + STATE(5173), 1, + sym__call_signature, + STATE(5782), 1, + sym_type_annotation, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(8026), 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, - [176762] = 4, + anon_sym_PIPE_RBRACE, + [173171] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4781), 1, + ACTIONS(4407), 1, + anon_sym_PIPE, + STATE(4556), 1, sym_comment, - ACTIONS(5927), 13, + ACTIONS(5980), 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, - [176787] = 4, + anon_sym_PIPE_RBRACE, + [173198] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4782), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(6075), 1, + anon_sym_PIPE, + STATE(4557), 1, sym_comment, - ACTIONS(5927), 13, + STATE(2887), 2, + sym_template_string, + sym_arguments, + ACTIONS(6077), 8, 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, - [176812] = 4, + anon_sym_PIPE_RBRACE, + [173231] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4783), 1, + ACTIONS(4369), 1, + anon_sym_PIPE, + STATE(4558), 1, sym_comment, - ACTIONS(5927), 13, + ACTIONS(5816), 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, - [176837] = 4, + anon_sym_PIPE_RBRACE, + [173258] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4784), 1, + ACTIONS(4371), 1, + anon_sym_PIPE, + STATE(4559), 1, sym_comment, - ACTIONS(5931), 13, + ACTIONS(5812), 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, - [176862] = 4, + anon_sym_PIPE_RBRACE, + [173285] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4785), 1, + ACTIONS(4373), 1, + anon_sym_PIPE, + STATE(4560), 1, sym_comment, - ACTIONS(5931), 13, + ACTIONS(5800), 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, - [176887] = 4, + anon_sym_PIPE_RBRACE, + [173312] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4786), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(8034), 1, + anon_sym_QMARK, + STATE(4561), 1, sym_comment, - ACTIONS(5931), 13, + STATE(4747), 1, + sym_formal_parameters, + STATE(6010), 1, + sym__call_signature, + STATE(6014), 1, + sym_type_annotation, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(8032), 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, - [176912] = 4, + anon_sym_PIPE_RBRACE, + [173353] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4787), 1, + ACTIONS(7810), 1, + anon_sym_LT, + ACTIONS(8036), 1, + anon_sym_DOT, + ACTIONS(8038), 1, + anon_sym_is, + STATE(4562), 1, sym_comment, - ACTIONS(5935), 13, + STATE(4887), 1, + sym_type_arguments, + ACTIONS(4603), 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, - [176937] = 4, + [173386] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4788), 1, + STATE(4563), 1, sym_comment, - ACTIONS(5935), 13, + ACTIONS(5772), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405418,14 +388736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176962] = 4, + [173411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4789), 1, + STATE(4564), 1, sym_comment, - ACTIONS(5935), 13, + ACTIONS(5772), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405439,138 +388757,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [176987] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(8033), 1, - anon_sym_QMARK, - STATE(4790), 1, - sym_comment, - STATE(4942), 1, - sym_formal_parameters, - STATE(5437), 1, - sym__call_signature, - STATE(5937), 1, - sym_type_annotation, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(7993), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177028] = 5, + [173436] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, + ACTIONS(5696), 1, anon_sym_PIPE, - STATE(4791), 1, + STATE(4565), 1, sym_comment, - ACTIONS(5835), 12, + ACTIONS(5698), 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, - [177055] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(8035), 1, - anon_sym_QMARK, - STATE(4792), 1, - sym_comment, - STATE(4942), 1, - sym_formal_parameters, - STATE(5237), 1, - sym__call_signature, - STATE(6042), 1, - sym_type_annotation, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(8001), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177096] = 5, + [173463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, - anon_sym_PIPE, - STATE(4793), 1, + STATE(4566), 1, sym_comment, - ACTIONS(5835), 12, + ACTIONS(5772), 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, - [177123] = 5, + [173488] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4391), 1, + ACTIONS(6054), 1, anon_sym_PIPE, - STATE(4794), 1, + STATE(4567), 1, sym_comment, - ACTIONS(5837), 12, + ACTIONS(6056), 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, - [177150] = 4, + [173515] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4795), 1, + STATE(4568), 1, sym_comment, - ACTIONS(5967), 13, + ACTIONS(5704), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405584,18 +388843,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [177175] = 6, + [173540] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2412), 1, - anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5989), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - STATE(4796), 1, + STATE(4569), 1, sym_comment, - ACTIONS(5991), 11, + ACTIONS(5948), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -405603,91 +388860,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [177204] = 5, + [173567] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5683), 1, + ACTIONS(4431), 1, anon_sym_PIPE, - STATE(4797), 1, + STATE(4570), 1, sym_comment, - ACTIONS(5685), 12, + ACTIONS(6066), 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, - [177231] = 12, + [173594] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(8037), 1, - anon_sym_QMARK, - STATE(4798), 1, + ACTIONS(4429), 1, + anon_sym_PIPE, + STATE(4571), 1, sym_comment, - STATE(4942), 1, - sym_formal_parameters, - STATE(5268), 1, - sym__call_signature, - STATE(6199), 1, - sym_type_annotation, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(8013), 5, + ACTIONS(6064), 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, - [177272] = 5, + [173621] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5785), 1, + ACTIONS(4427), 1, anon_sym_PIPE, - STATE(4799), 1, + STATE(4572), 1, sym_comment, - ACTIONS(5787), 12, + ACTIONS(6048), 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, - [177299] = 4, + [173648] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4800), 1, + STATE(4573), 1, sym_comment, - ACTIONS(5967), 13, + ACTIONS(5704), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405698,39 +388949,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [173673] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4399), 1, + anon_sym_PIPE, + STATE(4574), 1, + sym_comment, + ACTIONS(5978), 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, - [177324] = 5, + anon_sym_PIPE_RBRACE, + [173700] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5793), 1, - anon_sym_PIPE, - STATE(4801), 1, + STATE(4575), 1, sym_comment, - ACTIONS(5795), 12, + ACTIONS(5704), 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, - [177351] = 4, + [173725] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4802), 1, + STATE(4576), 1, sym_comment, - ACTIONS(5967), 13, + ACTIONS(5746), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405744,38 +389016,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [177376] = 7, + [173750] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5713), 1, - anon_sym_PIPE, - ACTIONS(8039), 1, - anon_sym_DOT, - ACTIONS(8041), 1, - anon_sym_QMARK_DOT, - STATE(4803), 1, + STATE(4577), 1, sym_comment, - ACTIONS(5715), 10, + ACTIONS(5746), 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, - [177407] = 4, + [173775] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4804), 1, + STATE(4578), 1, sym_comment, - ACTIONS(5963), 13, + ACTIONS(5746), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405789,14 +389058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [177432] = 4, + [173800] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4805), 1, + STATE(4579), 1, sym_comment, - ACTIONS(5963), 13, + ACTIONS(5786), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405810,16 +389079,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [177457] = 5, + [173825] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4337), 1, + ACTIONS(5806), 1, anon_sym_PIPE, - STATE(4806), 1, + ACTIONS(8040), 1, + anon_sym_DOT, + ACTIONS(8042), 1, + anon_sym_QMARK_DOT, + STATE(4580), 1, sym_comment, - ACTIONS(5565), 12, + ACTIONS(5808), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -405827,21 +389100,19 @@ 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, - [177484] = 5, + [173856] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4359), 1, + ACTIONS(4407), 1, anon_sym_PIPE, - STATE(4807), 1, + STATE(4581), 1, sym_comment, - ACTIONS(5839), 12, + ACTIONS(5980), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -405854,83 +389125,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [177511] = 8, + [173883] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5781), 1, - anon_sym_PIPE, - STATE(4808), 1, + ACTIONS(8044), 1, + anon_sym_QMARK, + STATE(4582), 1, sym_comment, - STATE(3148), 2, - sym_template_string, - sym_arguments, - ACTIONS(5783), 8, + STATE(4747), 1, + sym_formal_parameters, + STATE(5651), 1, + sym__call_signature, + STATE(5653), 1, + sym_type_annotation, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(8000), 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, - [177544] = 5, + [173924] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4391), 1, + ACTIONS(5596), 1, anon_sym_PIPE, - STATE(4809), 1, + ACTIONS(7754), 1, + anon_sym_LT, + STATE(4583), 1, sym_comment, - ACTIONS(5837), 12, + STATE(4703), 1, + sym_type_arguments, + ACTIONS(5598), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [177571] = 5, + [173955] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4339), 1, - anon_sym_PIPE, - STATE(4810), 1, + STATE(4584), 1, sym_comment, - ACTIONS(5617), 12, + ACTIONS(5832), 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, - [177598] = 4, + [173980] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4811), 1, + STATE(4585), 1, sym_comment, - ACTIONS(5953), 13, + ACTIONS(5832), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405944,14 +389220,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [177623] = 4, + [174005] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4812), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(8046), 1, + anon_sym_QMARK, + STATE(4586), 1, + sym_comment, + STATE(4747), 1, + sym_formal_parameters, + STATE(5777), 1, + sym__call_signature, + STATE(5782), 1, + sym_type_annotation, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(8026), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [174046] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4587), 1, sym_comment, - ACTIONS(5959), 13, + ACTIONS(5720), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405965,14 +389270,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [177648] = 4, + [174071] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4813), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(8048), 1, + anon_sym_QMARK, + STATE(4588), 1, + sym_comment, + STATE(4747), 1, + sym_formal_parameters, + STATE(5193), 1, + sym__call_signature, + STATE(6014), 1, + sym_type_annotation, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(8032), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [174112] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4589), 1, sym_comment, - ACTIONS(5959), 13, + ACTIONS(5636), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -405986,14 +389320,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [177673] = 4, + [174137] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4814), 1, + STATE(4590), 1, sym_comment, - ACTIONS(5959), 13, + ACTIONS(5636), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -406007,96 +389341,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [177698] = 13, + [174162] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, + STATE(4591), 1, + sym_comment, + ACTIONS(5640), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - STATE(4815), 1, + anon_sym_extends, + [174187] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4592), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(5787), 1, - sym_type_annotation, - STATE(6613), 1, - sym__initializer, - STATE(7467), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - ACTIONS(8043), 3, + ACTIONS(5640), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [177740] = 7, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [174212] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7839), 1, - anon_sym_LT, - ACTIONS(7997), 1, - anon_sym_DOT, - STATE(4816), 1, + STATE(4593), 1, sym_comment, - STATE(5165), 1, - sym_type_arguments, - ACTIONS(4595), 9, + ACTIONS(5640), 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, - [177770] = 10, + [174237] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(7883), 1, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5269), 1, + anon_sym_RBRACE, + ACTIONS(7900), 1, anon_sym_EQ, - STATE(4817), 1, + STATE(4594), 1, sym_comment, - STATE(5297), 1, - sym_formal_parameters, - STATE(7433), 1, - sym_type_parameters, - ACTIONS(5404), 2, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(5210), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [174271] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5266), 1, anon_sym_COMMA, + ACTIONS(5286), 1, anon_sym_RBRACE, - ACTIONS(5208), 5, + ACTIONS(7900), 1, + anon_sym_EQ, + STATE(4595), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(5210), 7, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [177806] = 6, + [174305] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2211), 1, + anon_sym_PIPE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5569), 1, - anon_sym_PIPE, - ACTIONS(8045), 1, - anon_sym_is, - STATE(4818), 1, + STATE(4596), 1, sym_comment, - ACTIONS(5571), 10, + ACTIONS(2257), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -406106,244 +389473,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [177834] = 13, + [174331] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(4819), 1, + STATE(4597), 1, sym_comment, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5766), 1, - sym_type_annotation, - STATE(6800), 1, - sym__initializer, - STATE(6991), 1, + STATE(5741), 1, sym__call_signature, - STATE(8017), 1, + STATE(5768), 1, + sym_type_annotation, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8047), 3, + ACTIONS(8050), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177876] = 11, + anon_sym_PIPE_RBRACE, + [174369] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(4820), 1, + STATE(4598), 1, sym_comment, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(6173), 1, + STATE(5212), 1, sym__call_signature, - STATE(6180), 1, + STATE(6021), 1, sym_type_annotation, - STATE(8017), 1, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8049), 5, + ACTIONS(8052), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177914] = 9, + [174407] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5281), 1, - anon_sym_RBRACE, - ACTIONS(7883), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7900), 1, anon_sym_EQ, - STATE(4821), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4599), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(5208), 7, + STATE(5083), 1, + sym_formal_parameters, + STATE(7643), 1, + sym_type_parameters, + ACTIONS(5481), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5210), 5, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [177948] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [174443] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(7697), 1, - anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5588), 1, + anon_sym_PIPE, + STATE(4600), 1, + sym_comment, + ACTIONS(5590), 11, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(7917), 1, - sym_identifier, - ACTIONS(7919), 1, - anon_sym_type, - STATE(4822), 1, + 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, + [174469] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5596), 1, + anon_sym_PIPE, + ACTIONS(8054), 1, + anon_sym_is, + STATE(4601), 1, sym_comment, - STATE(6408), 1, - sym_string, - STATE(6409), 1, - sym_import_require_clause, - STATE(7706), 1, - sym__import_identifier, - STATE(8129), 1, - sym_import_clause, - STATE(8569), 2, - sym_namespace_import, - sym_named_imports, - [177992] = 11, + ACTIONS(5598), 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, + [174497] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4823), 1, + STATE(4602), 1, sym_comment, - STATE(4942), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5252), 1, - sym__call_signature, - STATE(6180), 1, + STATE(5793), 1, sym_type_annotation, - STATE(8017), 1, + STATE(6836), 1, + sym__initializer, + STATE(7769), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - ACTIONS(8049), 5, + ACTIONS(8056), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178030] = 11, + [174539] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4824), 1, + STATE(4603), 1, sym_comment, - STATE(4942), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5964), 1, - sym__call_signature, - STATE(5974), 1, + STATE(5626), 1, sym_type_annotation, - STATE(8017), 1, + STATE(7083), 1, + sym__initializer, + STATE(7207), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - ACTIONS(8051), 5, + ACTIONS(8056), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178068] = 9, + [174581] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5272), 1, - anon_sym_RBRACE, - ACTIONS(7883), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(4825), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(5208), 7, - sym__automatic_semicolon, + ACTIONS(7868), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(7870), 1, anon_sym_COLON, + ACTIONS(7872), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [178102] = 13, + STATE(4604), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(5687), 1, + sym_type_annotation, + STATE(7109), 1, + sym__initializer, + STATE(7210), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + ACTIONS(8058), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174623] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(4826), 1, + STATE(4605), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5884), 1, + STATE(5621), 1, sym_type_annotation, - STATE(7122), 1, + STATE(6599), 1, sym__initializer, - STATE(7915), 1, + STATE(7599), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(8053), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178144] = 9, + [174665] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(7704), 1, + anon_sym_STAR, + ACTIONS(7708), 1, + anon_sym_LBRACE, + ACTIONS(7904), 1, + sym_identifier, + ACTIONS(7906), 1, + anon_sym_type, + STATE(4606), 1, + sym_comment, + STATE(6284), 1, + sym_import_require_clause, + STATE(6285), 1, + sym_string, + STATE(7606), 1, + sym_import_clause, + STATE(7628), 1, + sym__import_identifier, + STATE(8145), 2, + sym_namespace_import, + sym_named_imports, + [174709] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, + ACTIONS(5266), 1, anon_sym_COMMA, - ACTIONS(5254), 1, + ACTIONS(5283), 1, anon_sym_RBRACE, - ACTIONS(7883), 1, + ACTIONS(7900), 1, anon_sym_EQ, - STATE(4827), 1, + STATE(4607), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(6902), 1, aux_sym_object_repeat1, - ACTIONS(5208), 7, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5210), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -406351,688 +389769,729 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [178178] = 6, + [174743] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5589), 1, - anon_sym_PIPE, - ACTIONS(7853), 1, - anon_sym_is, - STATE(4828), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(4608), 1, sym_comment, - ACTIONS(5591), 10, + STATE(5340), 1, + sym_formal_parameters, + STATE(5530), 1, + sym_type_annotation, + STATE(6580), 1, + sym__initializer, + STATE(7534), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + ACTIONS(8060), 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, - [178206] = 5, + [174785] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5577), 1, - anon_sym_PIPE, - STATE(4829), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(4609), 1, sym_comment, - ACTIONS(5579), 11, + STATE(5340), 1, + sym_formal_parameters, + STATE(5726), 1, + sym_type_annotation, + STATE(6878), 1, + sym__initializer, + STATE(7696), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + ACTIONS(8056), 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, - [178232] = 13, + [174827] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(4830), 1, + STATE(4610), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5751), 1, + STATE(5613), 1, sym_type_annotation, - STATE(6603), 1, + STATE(6536), 1, sym__initializer, - STATE(7412), 1, + STATE(7467), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178274] = 14, + [174869] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7917), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(7906), 1, anon_sym_type, - STATE(4831), 1, + STATE(4611), 1, sym_comment, - STATE(6358), 1, - sym_string, - STATE(6359), 1, + STATE(6252), 1, sym_import_require_clause, - STATE(7706), 1, - sym__import_identifier, - STATE(7903), 1, + STATE(6253), 1, + sym_string, + STATE(7528), 1, sym_import_clause, - STATE(8569), 2, + STATE(7628), 1, + sym__import_identifier, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - [178318] = 11, + [174913] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(4832), 1, + STATE(4612), 1, sym_comment, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5445), 1, + STATE(5324), 1, sym__call_signature, - STATE(5974), 1, + STATE(5988), 1, sym_type_annotation, - STATE(8017), 1, + STATE(6381), 1, + sym__initializer, + STATE(7873), 1, sym_type_parameters, - ACTIONS(8051), 5, + ACTIONS(8062), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178356] = 11, + [174955] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5274), 1, + anon_sym_RBRACE, + ACTIONS(7900), 1, + anon_sym_EQ, + STATE(4613), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(5210), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(7865), 1, anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4833), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [174989] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5610), 1, + anon_sym_PIPE, + ACTIONS(7848), 1, + anon_sym_is, + STATE(4614), 1, sym_comment, - STATE(4942), 1, - sym_formal_parameters, - STATE(5240), 1, - sym__call_signature, - STATE(6116), 1, - sym_type_annotation, - STATE(8017), 1, - sym_type_parameters, - ACTIONS(8055), 5, + ACTIONS(5612), 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, - [178394] = 13, + [175017] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7810), 1, anon_sym_LT, - STATE(4834), 1, + ACTIONS(8036), 1, + anon_sym_DOT, + STATE(4615), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(6044), 1, - sym_type_annotation, - STATE(6937), 1, - sym__initializer, - STATE(8189), 1, - sym_type_parameters, - STATE(8190), 1, - sym__call_signature, - ACTIONS(8043), 3, + STATE(4887), 1, + sym_type_arguments, + ACTIONS(4603), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [178436] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [175047] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(4835), 1, + STATE(4616), 1, sym_comment, - STATE(5049), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5531), 1, - sym__call_signature, - STATE(5904), 1, + STATE(5970), 1, sym_type_annotation, - STATE(6612), 1, + STATE(6664), 1, sym__initializer, - STATE(7675), 1, + STATE(7799), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - ACTIONS(8057), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178478] = 13, + [175089] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(4836), 1, + STATE(4617), 1, sym_comment, - STATE(5049), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5641), 1, - sym__call_signature, - STATE(6152), 1, + STATE(5698), 1, sym_type_annotation, - STATE(7320), 1, + STATE(7127), 1, sym__initializer, - STATE(7675), 1, + STATE(7130), 1, + sym__call_signature, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8059), 3, + ACTIONS(8064), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178520] = 13, + [175131] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(4837), 1, + STATE(4618), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(6011), 1, + STATE(5617), 1, sym_type_annotation, - STATE(6876), 1, + STATE(6528), 1, sym__initializer, - STATE(8082), 1, + STATE(7464), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178562] = 5, + [175173] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2209), 1, - anon_sym_PIPE, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4838), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4619), 1, sym_comment, - ACTIONS(2257), 11, + STATE(4747), 1, + sym_formal_parameters, + STATE(5648), 1, + sym__call_signature, + STATE(5649), 1, + sym_type_annotation, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(8066), 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_is, anon_sym_PIPE_RBRACE, - [178588] = 13, + [175211] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(4839), 1, + STATE(4620), 1, sym_comment, - STATE(5049), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5612), 1, + STATE(5582), 1, + sym_type_annotation, + STATE(7054), 1, + sym__initializer, + STATE(7332), 1, sym__call_signature, - STATE(6291), 1, + STATE(7801), 1, + sym_type_parameters, + ACTIONS(8056), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175253] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(4621), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(5704), 1, sym_type_annotation, - STATE(7176), 1, + STATE(6605), 1, sym__initializer, - STATE(7675), 1, + STATE(7608), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - ACTIONS(8061), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178630] = 14, + [175295] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7917), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(7906), 1, anon_sym_type, - STATE(4840), 1, + STATE(4622), 1, sym_comment, - STATE(6363), 1, + STATE(6317), 1, sym_import_require_clause, - STATE(6364), 1, + STATE(6319), 1, sym_string, - STATE(7706), 1, + STATE(7628), 1, sym__import_identifier, - STATE(7985), 1, + STATE(7724), 1, sym_import_clause, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - [178674] = 14, + [175339] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7917), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(7906), 1, anon_sym_type, - STATE(4841), 1, + STATE(4623), 1, sym_comment, - STATE(6541), 1, - sym_import_require_clause, - STATE(6542), 1, + STATE(6276), 1, sym_string, - STATE(7429), 1, + STATE(6277), 1, + sym_import_require_clause, + STATE(7444), 1, sym_import_clause, - STATE(7706), 1, + STATE(7628), 1, sym__import_identifier, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - [178718] = 11, + [175383] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4842), 1, + STATE(4624), 1, sym_comment, - STATE(4942), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5292), 1, - sym__call_signature, - STATE(5921), 1, + STATE(5994), 1, sym_type_annotation, - STATE(8017), 1, + STATE(6724), 1, + sym__initializer, + STATE(7801), 1, sym_type_parameters, - ACTIONS(8063), 5, + STATE(7918), 1, + sym__call_signature, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178756] = 14, + [175425] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7917), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(7906), 1, anon_sym_type, - STATE(4843), 1, + STATE(4625), 1, sym_comment, - STATE(6402), 1, - sym_string, - STATE(6403), 1, + STATE(6356), 1, sym_import_require_clause, - STATE(7706), 1, + STATE(6357), 1, + sym_string, + STATE(7628), 1, sym__import_identifier, - STATE(7832), 1, + STATE(7833), 1, sym_import_clause, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - [178800] = 13, + [175469] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(4844), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(7704), 1, + anon_sym_STAR, + ACTIONS(7708), 1, + anon_sym_LBRACE, + ACTIONS(7904), 1, + sym_identifier, + ACTIONS(7906), 1, + anon_sym_type, + STATE(4626), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(5965), 1, - sym_type_annotation, - STATE(6824), 1, - sym__initializer, - STATE(7969), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178842] = 13, + STATE(6151), 1, + sym_string, + STATE(6152), 1, + sym_import_require_clause, + STATE(7628), 1, + sym__import_identifier, + STATE(7872), 1, + sym_import_clause, + STATE(8145), 2, + sym_namespace_import, + sym_named_imports, + [175513] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(4845), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4627), 1, sym_comment, - STATE(5514), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(6098), 1, + STATE(5988), 1, sym_type_annotation, - STATE(6971), 1, - sym__initializer, - STATE(8141), 1, + STATE(6394), 1, sym__call_signature, - STATE(8189), 1, + STATE(6396), 1, + sym__initializer, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8043), 3, + ACTIONS(8062), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178884] = 11, + [175555] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(4846), 1, + STATE(4628), 1, sym_comment, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5772), 1, - sym_type_annotation, - STATE(5774), 1, + STATE(5263), 1, sym__call_signature, - STATE(8017), 1, + STATE(5649), 1, + sym_type_annotation, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8065), 5, + ACTIONS(8066), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178922] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(7681), 1, - anon_sym_LT, - ACTIONS(7691), 1, - anon_sym_DOT, - ACTIONS(8067), 1, - anon_sym_QMARK, - STATE(4593), 1, - sym_type_arguments, - STATE(4847), 1, - sym_comment, - STATE(7925), 1, - sym_type_annotation, - ACTIONS(4595), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [178958] = 11, + [175593] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(4848), 1, + STATE(4629), 1, sym_comment, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5920), 1, + STATE(5322), 1, sym__call_signature, - STATE(5921), 1, + STATE(5991), 1, sym_type_annotation, - STATE(8017), 1, + STATE(6656), 1, + sym__initializer, + STATE(7873), 1, sym_type_parameters, - ACTIONS(8063), 5, + ACTIONS(8070), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178996] = 13, + [175635] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(4849), 1, + STATE(4630), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(6297), 1, + STATE(5791), 1, sym_type_annotation, - STATE(6698), 1, + STATE(6492), 1, sym__initializer, - STATE(7704), 1, + STATE(7355), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(8070), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179038] = 13, + [175677] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(5266), 1, + anon_sym_COMMA, + ACTIONS(5280), 1, + anon_sym_RBRACE, + ACTIONS(7900), 1, anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(4850), 1, + STATE(4631), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(6280), 1, - sym_type_annotation, - STATE(7183), 1, - sym__initializer, - STATE(7800), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - ACTIONS(8053), 3, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(5210), 7, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [179080] = 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [175711] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(4851), 1, + STATE(4632), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5802), 1, + STATE(5930), 1, sym_type_annotation, - STATE(6996), 1, + STATE(6511), 1, sym__initializer, - STATE(8090), 1, + STATE(7387), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - ACTIONS(8053), 3, + ACTIONS(8072), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179122] = 9, + [175753] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, + ACTIONS(5266), 1, anon_sym_COMMA, - ACTIONS(5278), 1, + ACTIONS(5277), 1, anon_sym_RBRACE, - ACTIONS(7883), 1, + ACTIONS(7900), 1, anon_sym_EQ, - STATE(4852), 1, + STATE(4633), 1, sym_comment, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(5208), 7, + ACTIONS(5210), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -407040,463 +390499,445 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [179156] = 9, + [175787] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5275), 1, - anon_sym_RBRACE, - ACTIONS(7883), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(4853), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(5208), 7, - sym__automatic_semicolon, + ACTIONS(7868), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(7870), 1, anon_sym_COLON, + ACTIONS(7872), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [179190] = 11, + STATE(4634), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(5987), 1, + sym_type_annotation, + STATE(6751), 1, + sym__initializer, + STATE(7801), 1, + sym_type_parameters, + STATE(7908), 1, + sym__call_signature, + ACTIONS(8060), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175829] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(4854), 1, + STATE(4635), 1, sym_comment, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6116), 1, - sym_type_annotation, - STATE(6126), 1, + STATE(5404), 1, sym__call_signature, - STATE(8017), 1, + STATE(5746), 1, + sym_type_annotation, + STATE(6500), 1, + sym__initializer, + STATE(7873), 1, sym_type_parameters, - ACTIONS(8055), 5, + ACTIONS(8074), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179228] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [175871] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(7697), 1, - anon_sym_STAR, - ACTIONS(7701), 1, - anon_sym_LBRACE, - ACTIONS(7917), 1, - sym_identifier, - ACTIONS(7919), 1, - anon_sym_type, - STATE(4855), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(4636), 1, sym_comment, - STATE(6504), 1, - sym_import_require_clause, - STATE(6506), 1, - sym_string, - STATE(7706), 1, - sym__import_identifier, - STATE(8125), 1, - sym_import_clause, - STATE(8569), 2, - sym_namespace_import, - sym_named_imports, - [179272] = 13, + STATE(5340), 1, + sym_formal_parameters, + STATE(6040), 1, + sym_type_annotation, + STATE(6728), 1, + sym__initializer, + STATE(7801), 1, + sym_type_parameters, + STATE(7896), 1, + sym__call_signature, + ACTIONS(8060), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175913] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(4856), 1, + STATE(4637), 1, sym_comment, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6152), 1, - sym_type_annotation, - STATE(7342), 1, + STATE(5344), 1, sym__call_signature, - STATE(7344), 1, + STATE(5943), 1, + sym_type_annotation, + STATE(6784), 1, sym__initializer, - STATE(8017), 1, + STATE(7873), 1, sym_type_parameters, - ACTIONS(8059), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179314] = 13, + [175955] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(4857), 1, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4638), 1, sym_comment, - STATE(5514), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6172), 1, + STATE(5454), 1, + sym__call_signature, + STATE(5698), 1, sym_type_annotation, - STATE(7035), 1, + STATE(7086), 1, sym__initializer, - STATE(8052), 1, - sym__call_signature, - STATE(8189), 1, + STATE(7873), 1, sym_type_parameters, - ACTIONS(8072), 3, + ACTIONS(8064), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [175997] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5592), 1, + anon_sym_PIPE, + ACTIONS(7848), 1, + anon_sym_is, + STATE(4639), 1, + sym_comment, + ACTIONS(5594), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179356] = 11, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176025] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(4858), 1, + STATE(4640), 1, sym_comment, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5280), 1, + STATE(5247), 1, sym__call_signature, - STATE(5772), 1, + STATE(5901), 1, sym_type_annotation, - STATE(8017), 1, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8065), 5, + ACTIONS(8078), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179394] = 13, + [176063] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(4859), 1, + STATE(4641), 1, sym_comment, - STATE(5049), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5520), 1, + STATE(5813), 1, sym__call_signature, - STATE(5865), 1, + STATE(5816), 1, sym_type_annotation, - STATE(6635), 1, - sym__initializer, - STATE(7675), 1, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8074), 3, + ACTIONS(8080), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179436] = 14, + anon_sym_PIPE_RBRACE, + [176101] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(2512), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2514), 1, anon_sym_SQUOTE, - ACTIONS(7697), 1, + ACTIONS(7704), 1, anon_sym_STAR, - ACTIONS(7701), 1, + ACTIONS(7708), 1, anon_sym_LBRACE, - ACTIONS(7917), 1, + ACTIONS(7904), 1, sym_identifier, - ACTIONS(7919), 1, + ACTIONS(7906), 1, anon_sym_type, - STATE(4860), 1, + STATE(4642), 1, sym_comment, - STATE(6509), 1, - sym_import_require_clause, - STATE(6510), 1, + STATE(6278), 1, sym_string, - STATE(7706), 1, + STATE(6279), 1, + sym_import_require_clause, + STATE(7628), 1, sym__import_identifier, - STATE(7948), 1, + STATE(7691), 1, sym_import_clause, - STATE(8569), 2, + STATE(8145), 2, sym_namespace_import, sym_named_imports, - [179480] = 13, + [176145] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(4861), 1, + STATE(4643), 1, sym_comment, - STATE(5049), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5740), 1, + STATE(5240), 1, sym__call_signature, - STATE(5766), 1, + STATE(5768), 1, sym_type_annotation, - STATE(6976), 1, - sym__initializer, - STATE(7675), 1, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8047), 3, + ACTIONS(8050), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [179522] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5251), 1, - anon_sym_COMMA, - ACTIONS(5269), 1, anon_sym_RBRACE, - ACTIONS(7883), 1, - anon_sym_EQ, - STATE(4862), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(5208), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [179556] = 6, + [176183] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5561), 1, - anon_sym_PIPE, - ACTIONS(7853), 1, - anon_sym_is, - STATE(4863), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4644), 1, sym_comment, - ACTIONS(5563), 10, + STATE(4747), 1, + sym_formal_parameters, + STATE(5901), 1, + sym_type_annotation, + STATE(5902), 1, + sym__call_signature, + STATE(7660), 1, + sym_type_parameters, + ACTIONS(8078), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [179584] = 13, + [176221] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(4864), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4645), 1, sym_comment, - STATE(5514), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(6027), 1, - sym_type_annotation, - STATE(7094), 1, - sym__initializer, - STATE(7959), 1, + STATE(6019), 1, sym__call_signature, - STATE(8189), 1, + STATE(6021), 1, + sym_type_annotation, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8072), 3, + ACTIONS(8052), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179626] = 13, + anon_sym_PIPE_RBRACE, + [176259] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(4586), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7692), 1, anon_sym_LT, - STATE(4865), 1, + ACTIONS(7698), 1, + anon_sym_DOT, + ACTIONS(8082), 1, + anon_sym_QMARK, + STATE(4433), 1, + sym_type_arguments, + STATE(4646), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(5851), 1, + STATE(7921), 1, sym_type_annotation, - STATE(7079), 1, - sym__initializer, - STATE(7756), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - ACTIONS(8076), 3, - sym__automatic_semicolon, + ACTIONS(4603), 6, anon_sym_COMMA, - anon_sym_SEMI, - [179668] = 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [176295] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(4866), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4647), 1, sym_comment, - STATE(5514), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(6213), 1, - sym_type_annotation, - STATE(7343), 1, - sym__initializer, - STATE(7390), 1, + STATE(5280), 1, sym__call_signature, - STATE(8189), 1, + STATE(5816), 1, + sym_type_annotation, + STATE(7660), 1, sym_type_parameters, - ACTIONS(8072), 3, + ACTIONS(8080), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179710] = 13, + anon_sym_PIPE_RBRACE, + [176333] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(4867), 1, + ACTIONS(5933), 1, + anon_sym_PIPE, + STATE(4648), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(5931), 1, - sym_type_annotation, - STATE(7157), 1, - sym__initializer, - STATE(7819), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - ACTIONS(8053), 3, + ACTIONS(5935), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179752] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176358] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(4868), 1, + ACTIONS(5864), 1, + anon_sym_PIPE, + STATE(4649), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(6192), 1, - sym_type_annotation, - STATE(7361), 1, - sym__initializer, - STATE(7368), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - ACTIONS(8072), 3, + ACTIONS(5866), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179794] = 5, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [176383] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3546), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8087), 1, anon_sym_PIPE, - STATE(4869), 1, + ACTIONS(8089), 1, + anon_sym_extends, + STATE(4650), 1, sym_comment, - ACTIONS(5919), 10, + ACTIONS(5820), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407504,19 +390945,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, - [179819] = 5, + [176412] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5893), 1, + ACTIONS(5792), 1, anon_sym_PIPE, - STATE(4870), 1, + STATE(4651), 1, sym_comment, - ACTIONS(5895), 10, + ACTIONS(5794), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407527,16 +390966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [179844] = 5, + [176437] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, + ACTIONS(5778), 1, anon_sym_PIPE, - STATE(4871), 1, + STATE(4652), 1, sym_comment, - ACTIONS(5909), 10, + ACTIONS(5780), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407547,39 +390986,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [179869] = 4, + [176462] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4872), 1, + ACTIONS(5592), 1, + anon_sym_PIPE, + STATE(4653), 1, sym_comment, - ACTIONS(5617), 11, + ACTIONS(5594), 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, - [179892] = 7, + anon_sym_PIPE_RBRACE, + [176487] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(8080), 1, + ACTIONS(8087), 1, anon_sym_PIPE, - ACTIONS(8082), 1, + ACTIONS(8089), 1, anon_sym_extends, - STATE(4873), 1, + STATE(4654), 1, sym_comment, - ACTIONS(5909), 8, + ACTIONS(5780), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407588,16 +391028,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [179921] = 5, + [176516] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5969), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8087), 1, anon_sym_PIPE, - STATE(4874), 1, + ACTIONS(8089), 1, + anon_sym_extends, + STATE(4655), 1, sym_comment, - ACTIONS(5971), 10, + ACTIONS(5760), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407605,40 +391049,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [176545] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8085), 1, anon_sym_AMP, + ACTIONS(8087), 1, + anon_sym_PIPE, + ACTIONS(8089), 1, anon_sym_extends, + STATE(4656), 1, + sym_comment, + ACTIONS(5756), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [179946] = 6, + [176574] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8084), 1, - anon_sym_DOT, - ACTIONS(8086), 1, - anon_sym_QMARK_DOT, - STATE(4875), 1, + ACTIONS(5722), 1, + anon_sym_PIPE, + STATE(4657), 1, sym_comment, - ACTIONS(5715), 9, + ACTIONS(5724), 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, - [179973] = 5, + anon_sym_PIPE_RBRACE, + [176599] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3544), 1, + ACTIONS(5844), 1, anon_sym_PIPE, - STATE(4876), 1, + STATE(4658), 1, sym_comment, - ACTIONS(5949), 10, + ACTIONS(5846), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407649,73 +391112,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [179998] = 4, + [176624] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4877), 1, + ACTIONS(3500), 1, + anon_sym_PIPE, + STATE(4659), 1, sym_comment, - ACTIONS(7127), 11, + ACTIONS(5802), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [180021] = 4, + [176649] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2468), 1, + anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4878), 1, + STATE(4660), 1, sym_comment, - ACTIONS(5595), 11, + ACTIONS(6070), 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_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [180044] = 4, + [176674] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4879), 1, + STATE(4661), 1, sym_comment, - ACTIONS(6917), 11, + ACTIONS(5948), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [180067] = 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [176697] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3548), 1, + ACTIONS(5919), 1, anon_sym_PIPE, - STATE(4880), 1, + STATE(4662), 1, sym_comment, - ACTIONS(5853), 10, + ACTIONS(5921), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407726,18 +391191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180092] = 6, + [176722] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7839), 1, - anon_sym_LT, - STATE(4881), 1, + ACTIONS(8091), 1, + anon_sym_DOT, + ACTIONS(8093), 1, + anon_sym_QMARK_DOT, + STATE(4663), 1, sym_comment, - STATE(5174), 1, - sym_type_arguments, - ACTIONS(5571), 9, + ACTIONS(5808), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -407747,16 +391212,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [180119] = 5, + [176749] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5589), 1, + ACTIONS(5768), 1, anon_sym_PIPE, - STATE(4882), 1, + STATE(4664), 1, sym_comment, - ACTIONS(5591), 10, + ACTIONS(5766), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407767,64 +391232,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180144] = 4, + [176774] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2472), 1, + anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4883), 1, + STATE(4665), 1, sym_comment, - ACTIONS(5565), 11, + ACTIONS(6070), 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_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [180167] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(8088), 1, - sym_identifier, - ACTIONS(8090), 1, - anon_sym_type, - ACTIONS(8092), 1, - anon_sym_COMMA, - ACTIONS(8094), 1, - anon_sym_RBRACE, - ACTIONS(8096), 1, - anon_sym_typeof, - STATE(4884), 1, - sym_comment, - STATE(6566), 1, - sym_string, - STATE(6700), 1, - sym_import_specifier, - STATE(7719), 1, - sym__import_identifier, - STATE(8575), 1, - sym__module_export_name, - [180210] = 5, + [176799] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5693), 1, + ACTIONS(3494), 1, anon_sym_PIPE, - STATE(4885), 1, + STATE(4666), 1, sym_comment, - ACTIONS(5695), 10, + ACTIONS(6079), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407835,14 +391272,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180235] = 4, + [176824] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4886), 1, + STATE(4667), 1, sym_comment, - ACTIONS(5685), 11, + ACTIONS(5626), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -407854,16 +391291,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [180258] = 5, + [176847] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5697), 1, + ACTIONS(6075), 1, anon_sym_PIPE, - STATE(4887), 1, + STATE(4668), 1, sym_comment, - ACTIONS(5699), 10, + ACTIONS(6077), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407874,20 +391311,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180283] = 7, + [176872] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8080), 1, + ACTIONS(6050), 1, anon_sym_PIPE, - ACTIONS(8082), 1, + STATE(4669), 1, + sym_comment, + ACTIONS(6052), 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, - STATE(4888), 1, + anon_sym_PIPE_RBRACE, + [176897] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6040), 1, + anon_sym_PIPE, + STATE(4670), 1, sym_comment, - ACTIONS(5913), 8, + ACTIONS(6042), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407895,15 +391348,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, - [180312] = 4, + [176922] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4889), 1, + STATE(4671), 1, sym_comment, - ACTIONS(5787), 11, + ACTIONS(5614), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -407915,20 +391370,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [180335] = 7, + [176945] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8080), 1, + ACTIONS(5762), 1, anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_extends, - STATE(4890), 1, + STATE(4672), 1, sym_comment, - ACTIONS(5917), 8, + ACTIONS(5764), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407936,15 +391387,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, - [180364] = 4, + [176970] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4891), 1, + STATE(4673), 1, sym_comment, - ACTIONS(5208), 11, + ACTIONS(5210), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -407956,16 +391409,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [180387] = 5, + [176993] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5561), 1, + ACTIONS(5596), 1, anon_sym_PIPE, - STATE(4892), 1, + STATE(4674), 1, sym_comment, - ACTIONS(5563), 10, + ACTIONS(5598), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -407976,35 +391429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180412] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(4893), 1, - sym_comment, - ACTIONS(5795), 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, - [180435] = 5, + [177018] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5849), 1, + ACTIONS(3490), 1, anon_sym_PIPE, - STATE(4894), 1, + STATE(4675), 1, sym_comment, - ACTIONS(5851), 10, + ACTIONS(5726), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408015,36 +391449,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180460] = 5, + [177043] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5701), 1, + ACTIONS(5868), 1, anon_sym_PIPE, - STATE(4895), 1, - sym_comment, - ACTIONS(5703), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(8085), 1, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [180485] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5945), 1, - anon_sym_PIPE, - STATE(4896), 1, + STATE(4676), 1, sym_comment, - ACTIONS(5947), 10, + ACTIONS(5870), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408052,80 +391468,76 @@ 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, - [180510] = 5, + [177070] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2372), 1, - anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4897), 1, + STATE(4677), 1, sym_comment, - ACTIONS(5991), 10, + ACTIONS(6056), 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, - [180535] = 5, + [177093] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2412), 1, - anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4898), 1, + STATE(4678), 1, sym_comment, - ACTIONS(5991), 10, + ACTIONS(5698), 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, - [180560] = 6, + [177116] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5701), 1, + ACTIONS(5834), 1, anon_sym_PIPE, - ACTIONS(8098), 1, - anon_sym_LBRACK, - STATE(4899), 1, + STATE(4679), 1, sym_comment, - ACTIONS(5703), 9, + ACTIONS(5836), 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, - [180587] = 5, + [177141] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5569), 1, + ACTIONS(5892), 1, anon_sym_PIPE, - STATE(4900), 1, + STATE(4680), 1, sym_comment, - ACTIONS(5571), 10, + ACTIONS(5894), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408136,16 +391548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180612] = 5, + [177166] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5941), 1, + ACTIONS(5876), 1, anon_sym_PIPE, - STATE(4901), 1, + STATE(4681), 1, sym_comment, - ACTIONS(5943), 10, + ACTIONS(5878), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408156,16 +391568,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180637] = 5, + [177191] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5707), 1, + ACTIONS(5968), 1, anon_sym_PIPE, - STATE(4902), 1, + STATE(4682), 1, sym_comment, - ACTIONS(5709), 10, + ACTIONS(5970), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408176,18 +391588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180662] = 6, + [177216] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5845), 1, + ACTIONS(5838), 1, anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - STATE(4903), 1, + STATE(4683), 1, sym_comment, - ACTIONS(5847), 9, + ACTIONS(5840), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408195,38 +391605,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180689] = 5, + [177241] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5937), 1, - anon_sym_PIPE, - STATE(4904), 1, + STATE(4684), 1, sym_comment, - ACTIONS(5939), 10, + ACTIONS(7008), 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, - [180714] = 5, + [177264] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5841), 1, + ACTIONS(3488), 1, anon_sym_PIPE, - STATE(4905), 1, + STATE(4685), 1, sym_comment, - ACTIONS(5843), 10, + ACTIONS(5788), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408237,20 +391647,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180739] = 7, + [177289] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8080), 1, + ACTIONS(5796), 1, anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_extends, - STATE(4906), 1, + STATE(4686), 1, sym_comment, - ACTIONS(5975), 8, + ACTIONS(5798), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408258,21 +391664,23 @@ 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, - [180768] = 7, + [177314] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(8080), 1, + ACTIONS(8087), 1, anon_sym_PIPE, - ACTIONS(8082), 1, + ACTIONS(8089), 1, anon_sym_extends, - STATE(4907), 1, + STATE(4687), 1, sym_comment, - ACTIONS(5833), 8, + ACTIONS(5976), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408281,16 +391689,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [180797] = 5, + [177343] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5831), 1, + ACTIONS(5630), 1, anon_sym_PIPE, - STATE(4908), 1, + STATE(4688), 1, sym_comment, - ACTIONS(5833), 10, + ACTIONS(5632), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408301,36 +391709,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180822] = 5, + [177368] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5827), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - STATE(4909), 1, + ACTIONS(8095), 1, + anon_sym_LBRACK, + STATE(4689), 1, sym_comment, - ACTIONS(5829), 10, + ACTIONS(5750), 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, - [180847] = 5, + [177395] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5823), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8087), 1, anon_sym_PIPE, - STATE(4910), 1, + ACTIONS(8089), 1, + anon_sym_extends, + STATE(4690), 1, sym_comment, - ACTIONS(5825), 10, + ACTIONS(5828), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408338,43 +391751,68 @@ 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, - [180872] = 5, + [177424] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5819), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - STATE(4911), 1, + ACTIONS(8095), 1, + anon_sym_LBRACK, + STATE(4691), 1, sym_comment, - ACTIONS(5821), 10, + ACTIONS(5750), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(5984), 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, - [180897] = 7, + [177453] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(8097), 1, + sym_identifier, + ACTIONS(8099), 1, + anon_sym_type, + ACTIONS(8101), 1, + anon_sym_COMMA, + ACTIONS(8103), 1, + anon_sym_RBRACE, + ACTIONS(8105), 1, + anon_sym_typeof, + STATE(4692), 1, + sym_comment, + STATE(6263), 1, + sym_string, + STATE(7049), 1, + sym_import_specifier, + STATE(7354), 1, + sym__import_identifier, + STATE(8415), 1, + sym__module_export_name, + [177496] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8080), 1, + ACTIONS(5740), 1, anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_extends, - STATE(4912), 1, + STATE(4693), 1, sym_comment, - ACTIONS(5899), 8, + ACTIONS(5742), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408382,17 +391820,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, - [180926] = 5, + [177521] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5797), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - STATE(4913), 1, + STATE(4694), 1, sym_comment, - ACTIONS(5799), 10, + ACTIONS(5750), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408403,16 +391843,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [180951] = 5, + [177546] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5789), 1, + ACTIONS(6004), 1, anon_sym_PIPE, - STATE(4914), 1, + ACTIONS(8107), 1, + anon_sym_extends, + STATE(4695), 1, sym_comment, - ACTIONS(5791), 10, + ACTIONS(6006), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408421,58 +391863,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [180976] = 5, + [177573] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5781), 1, - anon_sym_PIPE, - STATE(4915), 1, + ACTIONS(7810), 1, + anon_sym_LT, + STATE(4696), 1, sym_comment, - ACTIONS(5783), 10, + STATE(4878), 1, + sym_type_arguments, + ACTIONS(5598), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [181001] = 5, + [177600] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3550), 1, - anon_sym_PIPE, - STATE(4916), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4697), 1, sym_comment, - ACTIONS(5779), 10, + STATE(5083), 1, + sym_formal_parameters, + STATE(7643), 1, + sym_type_parameters, + ACTIONS(5210), 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_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [181026] = 5, + [177631] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5737), 1, + ACTIONS(5610), 1, anon_sym_PIPE, - STATE(4917), 1, + STATE(4698), 1, sym_comment, - ACTIONS(5739), 10, + ACTIONS(5612), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408483,16 +391928,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [181051] = 5, + [177656] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5691), 1, + ACTIONS(5952), 1, anon_sym_PIPE, - STATE(4918), 1, + STATE(4699), 1, sym_comment, - ACTIONS(5689), 10, + ACTIONS(5954), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408503,61 +391948,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [181076] = 8, + [177681] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4919), 1, + ACTIONS(5956), 1, + anon_sym_PIPE, + ACTIONS(8085), 1, + anon_sym_AMP, + STATE(4700), 1, sym_comment, - STATE(5297), 1, - sym_formal_parameters, - STATE(7433), 1, - sym_type_parameters, - ACTIONS(5208), 7, + ACTIONS(5958), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [181107] = 5, + [177708] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5719), 1, + ACTIONS(6010), 1, anon_sym_PIPE, - STATE(4920), 1, + ACTIONS(8095), 1, + anon_sym_LBRACK, + STATE(4701), 1, sym_comment, - ACTIONS(5721), 10, + ACTIONS(6012), 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, - [181132] = 6, + [177735] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5731), 1, + ACTIONS(5960), 1, anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_AMP, - STATE(4921), 1, + STATE(4702), 1, sym_comment, - ACTIONS(5733), 9, + ACTIONS(5962), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408565,18 +392007,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, - [181159] = 5, + [177760] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5625), 1, + ACTIONS(6044), 1, anon_sym_PIPE, - STATE(4922), 1, + STATE(4703), 1, sym_comment, - ACTIONS(5627), 10, + ACTIONS(6046), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408587,36 +392030,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [181184] = 5, + [177785] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5727), 1, - anon_sym_PIPE, - STATE(4923), 1, + STATE(4704), 1, sym_comment, - ACTIONS(5729), 10, + ACTIONS(5628), 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, - [181209] = 5, + [177808] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5769), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8087), 1, anon_sym_PIPE, - STATE(4924), 1, + ACTIONS(8089), 1, + anon_sym_extends, + STATE(4705), 1, sym_comment, - ACTIONS(5771), 10, + ACTIONS(5988), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408624,19 +392070,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, - [181234] = 5, + [177837] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5723), 1, + ACTIONS(5986), 1, anon_sym_PIPE, - STATE(4925), 1, + STATE(4706), 1, sym_comment, - ACTIONS(5725), 10, + ACTIONS(5988), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408647,16 +392091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [181259] = 5, + [177862] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5889), 1, + ACTIONS(5990), 1, anon_sym_PIPE, - STATE(4926), 1, + STATE(4707), 1, sym_comment, - ACTIONS(5891), 10, + ACTIONS(5992), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408667,16 +392111,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [181284] = 5, + [177887] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3558), 1, + ACTIONS(5994), 1, anon_sym_PIPE, - STATE(4927), 1, + STATE(4708), 1, sym_comment, - ACTIONS(5711), 10, + ACTIONS(5996), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408687,39 +392131,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [181309] = 6, + [177912] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5763), 1, + ACTIONS(5998), 1, anon_sym_PIPE, - ACTIONS(8098), 1, - anon_sym_LBRACK, - STATE(4928), 1, + STATE(4709), 1, sym_comment, - ACTIONS(5765), 9, + ACTIONS(6000), 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, - [181336] = 6, + [177937] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5757), 1, + ACTIONS(3492), 1, anon_sym_PIPE, - ACTIONS(8100), 1, - anon_sym_extends, - STATE(4929), 1, + STATE(4710), 1, sym_comment, - ACTIONS(5759), 9, + ACTIONS(5944), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -408728,147 +392169,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [181363] = 7, + [177962] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5701), 1, - anon_sym_PIPE, - ACTIONS(8098), 1, - anon_sym_LBRACK, - STATE(4930), 1, + STATE(4711), 1, sym_comment, - ACTIONS(5703), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(5755), 7, + ACTIONS(7028), 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_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [181392] = 7, + [177985] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_extends, - STATE(4931), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8111), 1, + anon_sym_BANG, + STATE(4712), 1, sym_comment, - ACTIONS(5747), 8, + STATE(6080), 1, + sym_type_annotation, + STATE(6703), 1, + sym__initializer, + ACTIONS(8113), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(8109), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [181421] = 5, + [178019] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5741), 1, - anon_sym_PIPE, - STATE(4932), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(8097), 1, + sym_identifier, + ACTIONS(8115), 1, + anon_sym_type, + ACTIONS(8117), 1, + anon_sym_as, + STATE(4713), 1, sym_comment, - ACTIONS(5743), 10, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, + STATE(6263), 1, + sym_string, + STATE(7313), 1, + sym__import_identifier, + STATE(8365), 1, + sym__module_export_name, + ACTIONS(7908), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [181446] = 13, + [178057] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3272), 1, + anon_sym_LBRACE, + ACTIONS(7586), 1, + anon_sym_COLON, + ACTIONS(7588), 1, + anon_sym_DOT, + ACTIONS(8119), 1, + sym_identifier, + ACTIONS(8121), 1, + anon_sym_on, + ACTIONS(8123), 1, + anon_sym_list, + STATE(4160), 1, + sym_ui_object_initializer, + STATE(4714), 1, + sym_comment, + STATE(7940), 1, + sym_nested_identifier, + STATE(4284), 2, + sym_nested_type_identifier, + sym_ui_list_property_type, + [178095] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8102), 1, + ACTIONS(8125), 1, sym_identifier, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - STATE(3602), 1, + STATE(3385), 1, sym_class_body, - STATE(4933), 1, + STATE(4715), 1, sym_comment, - STATE(5499), 1, + STATE(5140), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7696), 1, + STATE(7337), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [181486] = 7, + [178135] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8127), 1, + anon_sym_LBRACE, + ACTIONS(8129), 1, anon_sym_extends, - STATE(4934), 1, + ACTIONS(8131), 1, + anon_sym_implements, + ACTIONS(8133), 1, + sym_identifier, + STATE(3469), 1, + sym_class_body, + STATE(4716), 1, sym_comment, - ACTIONS(8110), 7, - sym__automatic_semicolon, - anon_sym_EQ, + STATE(5264), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7893), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [178175] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8127), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181514] = 13, + ACTIONS(8129), 1, + anon_sym_extends, + ACTIONS(8131), 1, + anon_sym_implements, + ACTIONS(8135), 1, + sym_identifier, + STATE(3385), 1, + sym_class_body, + STATE(4717), 1, + sym_comment, + STATE(5140), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7337), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [178215] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8112), 1, + ACTIONS(8137), 1, sym_identifier, - STATE(3602), 1, + STATE(3469), 1, sym_class_body, - STATE(4935), 1, + STATE(4718), 1, sym_comment, - STATE(5499), 1, + STATE(5264), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7696), 1, + STATE(7893), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [181554] = 13, + [178255] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -408877,334 +392383,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(8088), 1, + ACTIONS(8097), 1, sym_identifier, - ACTIONS(8090), 1, + ACTIONS(8099), 1, anon_sym_type, - ACTIONS(8096), 1, + ACTIONS(8105), 1, anon_sym_typeof, - ACTIONS(8114), 1, + ACTIONS(8139), 1, anon_sym_RBRACE, - STATE(4936), 1, + STATE(4719), 1, sym_comment, - STATE(6566), 1, + STATE(6263), 1, sym_string, - STATE(7719), 1, - sym__import_identifier, - STATE(7742), 1, + STATE(7286), 1, sym_import_specifier, - STATE(8575), 1, + STATE(7354), 1, + sym__import_identifier, + STATE(8415), 1, sym__module_export_name, - [181594] = 4, + [178295] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(4937), 1, - sym_comment, - ACTIONS(5579), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8127), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8129), 1, anon_sym_extends, - anon_sym_is, - [181616] = 5, + ACTIONS(8131), 1, + anon_sym_implements, + ACTIONS(8141), 1, + sym_identifier, + STATE(3385), 1, + sym_class_body, + STATE(4720), 1, + sym_comment, + STATE(5140), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7337), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [178335] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7999), 1, - anon_sym_is, - STATE(4938), 1, - sym_comment, - ACTIONS(5563), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8127), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8129), 1, anon_sym_extends, - [181640] = 5, + ACTIONS(8131), 1, + anon_sym_implements, + ACTIONS(8143), 1, + sym_identifier, + STATE(3469), 1, + sym_class_body, + STATE(4721), 1, + sym_comment, + STATE(5264), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7893), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [178375] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8116), 1, - anon_sym_is, - STATE(4939), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8111), 1, + anon_sym_BANG, + ACTIONS(8145), 1, + anon_sym_EQ, + STATE(4722), 1, sym_comment, - ACTIONS(5571), 9, + STATE(6068), 1, + sym__initializer, + STATE(6080), 1, + sym_type_annotation, + ACTIONS(8113), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(8109), 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, - [181664] = 13, + [178409] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8118), 1, + ACTIONS(8147), 1, sym_identifier, - STATE(3555), 1, + STATE(3469), 1, sym_class_body, - STATE(4940), 1, + STATE(4723), 1, sym_comment, - STATE(5308), 1, + STATE(5264), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8029), 1, + STATE(7893), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [181704] = 13, + [178449] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8120), 1, + ACTIONS(8149), 1, sym_identifier, - STATE(3602), 1, + STATE(3385), 1, sym_class_body, - STATE(4941), 1, + STATE(4724), 1, sym_comment, - STATE(5499), 1, + STATE(5140), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7696), 1, + STATE(7337), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [181744] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COLON, - STATE(4942), 1, - sym_comment, - STATE(5726), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(8122), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181770] = 13, + [178489] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8126), 1, + ACTIONS(8151), 1, sym_identifier, - STATE(3555), 1, + STATE(3469), 1, sym_class_body, - STATE(4943), 1, + STATE(4725), 1, sym_comment, - STATE(5308), 1, + STATE(5264), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8029), 1, + STATE(7893), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [181810] = 13, + [178529] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8128), 1, + ACTIONS(8153), 1, sym_identifier, - STATE(3602), 1, + STATE(3469), 1, sym_class_body, - STATE(4944), 1, + STATE(4726), 1, sym_comment, - STATE(5499), 1, + STATE(5264), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7696), 1, + STATE(7893), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [181850] = 13, + [178569] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8130), 1, + ACTIONS(8155), 1, sym_identifier, - STATE(3555), 1, + STATE(3469), 1, sym_class_body, - STATE(4945), 1, + STATE(4727), 1, sym_comment, - STATE(5308), 1, + STATE(5264), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8029), 1, + STATE(7893), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [181890] = 4, + [178609] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(4946), 1, - sym_comment, - ACTIONS(2257), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8127), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(8129), 1, anon_sym_extends, - anon_sym_is, - [181912] = 13, + ACTIONS(8131), 1, + anon_sym_implements, + ACTIONS(8157), 1, + sym_identifier, + STATE(3385), 1, + sym_class_body, + STATE(4728), 1, + sym_comment, + STATE(5140), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7337), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [178649] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8132), 1, + ACTIONS(8159), 1, sym_identifier, - STATE(3555), 1, + STATE(3385), 1, sym_class_body, - STATE(4947), 1, + STATE(4729), 1, sym_comment, - STATE(5308), 1, + STATE(5140), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8029), 1, + STATE(7337), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [181952] = 12, + [178689] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3265), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(7581), 1, - anon_sym_COLON, - ACTIONS(7583), 1, - anon_sym_DOT, - ACTIONS(8134), 1, + ACTIONS(8129), 1, + anon_sym_extends, + ACTIONS(8131), 1, + anon_sym_implements, + ACTIONS(8161), 1, sym_identifier, - ACTIONS(8136), 1, - anon_sym_on, - ACTIONS(8138), 1, - anon_sym_list, - STATE(4262), 1, - sym_ui_object_initializer, - STATE(4948), 1, + STATE(3385), 1, + sym_class_body, + STATE(4730), 1, sym_comment, - STATE(8436), 1, - sym_nested_identifier, - STATE(4507), 2, - sym_nested_type_identifier, - sym_ui_list_property_type, - [181990] = 13, - ACTIONS(3), 1, + STATE(5140), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7337), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [178729] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(4543), 1, + anon_sym_LPAREN, + ACTIONS(8165), 1, + anon_sym_DOT, + STATE(4731), 1, + sym_comment, + STATE(4983), 1, + sym_arguments, + ACTIONS(8163), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178757] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8106), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8087), 1, + anon_sym_PIPE, + ACTIONS(8089), 1, anon_sym_extends, - ACTIONS(8108), 1, - anon_sym_implements, - ACTIONS(8140), 1, - sym_identifier, - ACTIONS(8142), 1, - anon_sym_LBRACE, - STATE(3908), 1, - sym_class_body, - STATE(4949), 1, + STATE(4732), 1, sym_comment, - STATE(5389), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7758), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [182030] = 12, + ACTIONS(8167), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178785] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -409213,243 +392746,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(8144), 1, + ACTIONS(8169), 1, sym_identifier, - ACTIONS(8148), 1, + ACTIONS(8173), 1, anon_sym_COMMA, - ACTIONS(8150), 1, + ACTIONS(8175), 1, anon_sym_RBRACE, - STATE(4950), 1, + STATE(4733), 1, sym_comment, - STATE(6566), 1, + STATE(6263), 1, sym_string, - STATE(6659), 1, + STATE(7138), 1, sym_export_specifier, - STATE(6660), 1, + STATE(7139), 1, sym__module_export_name, - ACTIONS(8146), 2, + ACTIONS(8171), 2, anon_sym_type, anon_sym_typeof, - [182068] = 13, + [178823] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8152), 1, + ACTIONS(8177), 1, sym_identifier, - STATE(3602), 1, + STATE(3385), 1, sym_class_body, - STATE(4951), 1, + STATE(4734), 1, sym_comment, - STATE(5499), 1, + STATE(5140), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7696), 1, + STATE(7337), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [182108] = 13, + [178863] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8154), 1, + ACTIONS(8179), 1, sym_identifier, - STATE(3602), 1, + STATE(3469), 1, sym_class_body, - STATE(4952), 1, + STATE(4735), 1, sym_comment, - STATE(5499), 1, + STATE(5264), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7696), 1, + STATE(7893), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [182148] = 13, + [178903] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8156), 1, + ACTIONS(8181), 1, sym_identifier, - STATE(3602), 1, + STATE(3469), 1, sym_class_body, - STATE(4953), 1, + STATE(4736), 1, sym_comment, - STATE(5499), 1, + STATE(5264), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7696), 1, + STATE(7893), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [182188] = 13, + [178943] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8158), 1, + ACTIONS(8183), 1, sym_identifier, - STATE(3555), 1, + STATE(3385), 1, sym_class_body, - STATE(4954), 1, + STATE(4737), 1, sym_comment, - STATE(5308), 1, + STATE(5140), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8029), 1, + STATE(7337), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [182228] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8162), 1, - anon_sym_BANG, - STATE(4955), 1, - sym_comment, - STATE(5762), 1, - sym_type_annotation, - STATE(6942), 1, - sym__initializer, - ACTIONS(8164), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(8160), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182262] = 13, + [178983] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8166), 1, + ACTIONS(8185), 1, sym_identifier, - STATE(3555), 1, + ACTIONS(8187), 1, + anon_sym_LBRACE, + STATE(3739), 1, sym_class_body, - STATE(4956), 1, + STATE(4738), 1, sym_comment, - STATE(5308), 1, + STATE(5088), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8029), 1, + STATE(7560), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [182302] = 10, + [179023] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8162), 1, - anon_sym_BANG, - ACTIONS(8168), 1, - anon_sym_EQ, - STATE(4957), 1, + STATE(4739), 1, sym_comment, - STATE(5762), 1, - sym_type_annotation, - STATE(6255), 1, - sym__initializer, - ACTIONS(8164), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(8160), 3, + ACTIONS(2257), 10, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [182336] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [179045] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8129), 1, + anon_sym_extends, + ACTIONS(8131), 1, + anon_sym_implements, + ACTIONS(8187), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8189), 1, + sym_identifier, + STATE(2940), 1, + sym_class_body, + STATE(4740), 1, + sym_comment, + STATE(5175), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7533), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [179085] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8129), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8131), 1, anon_sym_implements, - ACTIONS(8170), 1, + ACTIONS(8187), 1, + anon_sym_LBRACE, + ACTIONS(8191), 1, sym_identifier, - STATE(3555), 1, + STATE(2856), 1, sym_class_body, - STATE(4958), 1, + STATE(4741), 1, sym_comment, - STATE(5308), 1, + STATE(5101), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8029), 1, + STATE(7217), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [182376] = 5, + [179125] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4742), 1, + sym_comment, + ACTIONS(5590), 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, + [179147] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7999), 1, + ACTIONS(8193), 1, anon_sym_is, - STATE(4959), 1, + STATE(4743), 1, sym_comment, - ACTIONS(5591), 9, + ACTIONS(5598), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -409459,109 +393007,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [182400] = 7, + [179171] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - STATE(4960), 1, + STATE(4744), 1, sym_comment, - STATE(3704), 2, + STATE(3375), 2, sym_template_string, sym_arguments, - ACTIONS(5783), 6, + ACTIONS(6077), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [182428] = 13, - ACTIONS(3), 1, + [179199] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(8038), 1, + anon_sym_is, + STATE(4745), 1, + sym_comment, + ACTIONS(5594), 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, + [179223] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7900), 1, + anon_sym_EQ, + STATE(4746), 1, + sym_comment, + ACTIONS(5481), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5210), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(8106), 1, - anon_sym_extends, - ACTIONS(8108), 1, - anon_sym_implements, - ACTIONS(8142), 1, - anon_sym_LBRACE, - ACTIONS(8172), 1, - sym_identifier, - STATE(3081), 1, - sym_class_body, - STATE(4961), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [179249] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8197), 1, + anon_sym_COLON, + STATE(4747), 1, sym_comment, - STATE(5258), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(8159), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [182468] = 13, + STATE(5462), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(8195), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179275] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8104), 1, - anon_sym_LBRACE, - ACTIONS(8106), 1, - anon_sym_extends, - ACTIONS(8108), 1, - anon_sym_implements, - ACTIONS(8174), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(8097), 1, sym_identifier, - STATE(3602), 1, - sym_class_body, - STATE(4962), 1, + ACTIONS(8099), 1, + anon_sym_type, + ACTIONS(8105), 1, + anon_sym_typeof, + ACTIONS(8199), 1, + anon_sym_RBRACE, + STATE(4748), 1, sym_comment, - STATE(5499), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7696), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [182508] = 13, - ACTIONS(3), 1, + STATE(6263), 1, + sym_string, + STATE(7286), 1, + sym_import_specifier, + STATE(7354), 1, + sym__import_identifier, + STATE(8415), 1, + sym__module_export_name, + [179315] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(8197), 1, + anon_sym_COLON, + STATE(4749), 1, + sym_comment, + STATE(5492), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(8201), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179341] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8038), 1, + anon_sym_is, + STATE(4750), 1, + sym_comment, + ACTIONS(5612), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(8106), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(8108), 1, - anon_sym_implements, - ACTIONS(8176), 1, - sym_identifier, - STATE(3602), 1, - sym_class_body, - STATE(4963), 1, - sym_comment, - STATE(5499), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7696), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [182548] = 13, + [179365] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -409570,288 +393162,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(8088), 1, + ACTIONS(8097), 1, sym_identifier, - ACTIONS(8090), 1, + ACTIONS(8099), 1, anon_sym_type, - ACTIONS(8096), 1, + ACTIONS(8105), 1, anon_sym_typeof, - ACTIONS(8178), 1, - anon_sym_RBRACE, - STATE(4964), 1, + STATE(4751), 1, sym_comment, - STATE(6566), 1, + STATE(6263), 1, sym_string, - STATE(7719), 1, - sym__import_identifier, - STATE(7742), 1, + STATE(7286), 1, sym_import_specifier, - STATE(8575), 1, + STATE(7354), 1, + sym__import_identifier, + STATE(8415), 1, sym__module_export_name, - [182588] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [179402] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8203), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8180), 1, - sym_identifier, - STATE(3555), 1, - sym_class_body, - STATE(4965), 1, + STATE(4752), 1, sym_comment, - STATE(5308), 1, + STATE(5076), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8029), 1, + STATE(7693), 1, + sym_class_body, + STATE(7746), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [182628] = 6, + [179439] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7883), 1, - anon_sym_EQ, - STATE(4966), 1, + STATE(4753), 1, sym_comment, - ACTIONS(5404), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5208), 7, + ACTIONS(5972), 9, sym__automatic_semicolon, - anon_sym_LPAREN, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [182654] = 6, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [179460] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8124), 1, - anon_sym_COLON, - STATE(4967), 1, + ACTIONS(8209), 1, + anon_sym_EQ, + STATE(4754), 1, sym_comment, - STATE(5704), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(8182), 6, - sym__automatic_semicolon, + ACTIONS(4760), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182680] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [179483] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(8088), 1, - sym_identifier, - ACTIONS(8184), 1, - anon_sym_type, - ACTIONS(8186), 1, - anon_sym_as, - STATE(4968), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8211), 1, + anon_sym_EQ, + STATE(4755), 1, sym_comment, - STATE(6566), 1, - sym_string, - STATE(7783), 1, - sym__import_identifier, - STATE(8485), 1, - sym__module_export_name, - ACTIONS(7921), 2, + ACTIONS(4762), 8, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - [182718] = 13, - ACTIONS(3), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [179506] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8213), 1, + anon_sym_LBRACE, + STATE(460), 1, + sym_class_body, + STATE(4756), 1, + sym_comment, + STATE(5072), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7849), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [179543] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8106), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8142), 1, + ACTIONS(8215), 1, anon_sym_LBRACE, - ACTIONS(8188), 1, - sym_identifier, - STATE(3103), 1, + STATE(1729), 1, sym_class_body, - STATE(4969), 1, + STATE(4757), 1, sym_comment, - STATE(5261), 1, + STATE(5060), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7797), 1, + STATE(7523), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [182758] = 7, + [179580] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4553), 1, + ACTIONS(5536), 1, anon_sym_LPAREN, - ACTIONS(8192), 1, + ACTIONS(5540), 1, anon_sym_DOT, - STATE(4970), 1, - sym_comment, - STATE(5181), 1, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7692), 1, + anon_sym_LT, + STATE(2963), 1, + sym_template_string, + STATE(3258), 1, sym_arguments, - ACTIONS(8190), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182786] = 13, - ACTIONS(3), 1, + STATE(4513), 1, + sym_type_arguments, + STATE(4758), 1, + sym_comment, + STATE(7423), 1, + sym_optional_chain, + [179617] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(7692), 1, + anon_sym_LT, + ACTIONS(8217), 1, + anon_sym_DOT, + STATE(2963), 1, + sym_template_string, + STATE(3418), 1, + sym_arguments, + STATE(4759), 1, + sym_comment, + STATE(6219), 1, + sym_type_arguments, + STATE(7423), 1, + sym_optional_chain, + [179654] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8104), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8219), 1, anon_sym_LBRACE, - ACTIONS(8106), 1, + STATE(4760), 1, + sym_comment, + STATE(5073), 1, + sym_type_parameters, + STATE(5601), 1, + sym_class_body, + STATE(6769), 1, + sym_extends_clause, + STATE(7780), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [179691] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8108), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8194), 1, - sym_identifier, - STATE(3555), 1, + ACTIONS(8221), 1, + anon_sym_LBRACE, + STATE(1489), 1, sym_class_body, - STATE(4971), 1, + STATE(4761), 1, sym_comment, - STATE(5308), 1, + STATE(5075), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8029), 1, + STATE(7753), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [182826] = 4, + [179728] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4972), 1, - sym_comment, - ACTIONS(5829), 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, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, anon_sym_extends, - [182847] = 10, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8213), 1, + anon_sym_LBRACE, + STATE(453), 1, + sym_class_body, + STATE(4762), 1, + sym_comment, + STATE(5077), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7742), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [179765] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8196), 1, - anon_sym_BANG, - ACTIONS(8198), 1, - anon_sym_QMARK, - STATE(4973), 1, + ACTIONS(8223), 1, + anon_sym_AMP, + ACTIONS(8225), 1, + anon_sym_PIPE, + ACTIONS(8227), 1, + anon_sym_extends, + STATE(4763), 1, sym_comment, - STATE(5906), 1, - sym_type_annotation, - STATE(6691), 1, - sym__initializer, - ACTIONS(7893), 3, + ACTIONS(5828), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [182880] = 12, + anon_sym_LBRACK, + [179792] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6097), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(7681), 1, + ACTIONS(7692), 1, anon_sym_LT, - STATE(3722), 1, + STATE(3601), 1, sym_template_string, - STATE(3857), 1, + STATE(3685), 1, sym_arguments, - STATE(4960), 1, + STATE(4744), 1, sym_type_arguments, - STATE(4974), 1, + STATE(4764), 1, sym_comment, - STATE(7919), 1, + STATE(7787), 1, sym_optional_chain, - [182917] = 10, + [179829] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8200), 1, - anon_sym_BANG, - ACTIONS(8202), 1, - anon_sym_QMARK, - STATE(4975), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8219), 1, + anon_sym_LBRACE, + STATE(4765), 1, sym_comment, - STATE(6023), 1, - sym_type_annotation, - STATE(6896), 1, - sym__initializer, - ACTIONS(7893), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182950] = 4, + STATE(5078), 1, + sym_type_parameters, + STATE(5655), 1, + sym_class_body, + STATE(6769), 1, + sym_extends_clause, + STATE(7705), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [179866] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4976), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8221), 1, + anon_sym_LBRACE, + STATE(1402), 1, + sym_class_body, + STATE(4766), 1, + sym_comment, + STATE(5081), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7685), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [179903] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4767), 1, sym_comment, - ACTIONS(2440), 9, + ACTIONS(5798), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -409861,131 +393543,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [182971] = 10, + [179924] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8204), 1, - anon_sym_BANG, - ACTIONS(8206), 1, - anon_sym_QMARK, - STATE(4977), 1, + STATE(4768), 1, sym_comment, - STATE(6026), 1, + STATE(5989), 1, sym_type_annotation, - STATE(6898), 1, + STATE(6581), 1, sym__initializer, - ACTIONS(7893), 3, + ACTIONS(7952), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7950), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183004] = 9, + [179955] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2961), 1, - anon_sym_RBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7883), 1, - anon_sym_EQ, - ACTIONS(8208), 1, - anon_sym_COMMA, - STATE(4978), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(5208), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(7872), 1, anon_sym_LT, - anon_sym_QMARK, - [183035] = 12, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(3726), 1, + sym_class_body, + STATE(4769), 1, + sym_comment, + STATE(5027), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7155), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [179992] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8210), 1, - anon_sym_LBRACE, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - STATE(518), 1, + ACTIONS(8231), 1, + anon_sym_LBRACE, + STATE(501), 1, sym_class_body, - STATE(4979), 1, + STATE(4770), 1, sym_comment, - STATE(5359), 1, + STATE(5030), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7670), 1, + STATE(7166), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [183072] = 9, + [180029] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7883), 1, + ACTIONS(7900), 1, anon_sym_EQ, - ACTIONS(8208), 1, + ACTIONS(8233), 1, anon_sym_COMMA, - ACTIONS(8216), 1, + ACTIONS(8235), 1, anon_sym_RBRACE, - STATE(4980), 1, + STATE(4771), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, + STATE(6902), 1, aux_sym_object_repeat1, - ACTIONS(5208), 4, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5210), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [183103] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8218), 1, - anon_sym_LBRACE, - STATE(1881), 1, - sym_class_body, - STATE(4981), 1, - sym_comment, - STATE(5310), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7831), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [183140] = 4, + [180060] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4982), 1, + STATE(4772), 1, sym_comment, - ACTIONS(5939), 9, + ACTIONS(5878), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -409995,37 +393654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [183161] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8222), 1, - anon_sym_BANG, - ACTIONS(8224), 1, - anon_sym_QMARK, - STATE(4983), 1, - sym_comment, - STATE(6261), 1, - sym_type_annotation, - STATE(6723), 1, - sym__initializer, - ACTIONS(8220), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [183194] = 4, + [180081] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4984), 1, + STATE(4773), 1, sym_comment, - ACTIONS(5947), 9, + ACTIONS(5894), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -410035,14 +393671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [183215] = 4, + [180102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4985), 1, + STATE(4774), 1, sym_comment, - ACTIONS(5943), 9, + ACTIONS(6000), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -410052,129 +393688,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [183236] = 10, + [180123] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8237), 1, + anon_sym_LBRACE, + STATE(1591), 1, + sym_class_body, + STATE(4775), 1, + sym_comment, + STATE(5035), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7176), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [180160] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + STATE(4776), 1, + sym_comment, + ACTIONS(8239), 9, anon_sym_EQ, - ACTIONS(7863), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(8226), 1, - anon_sym_BANG, - ACTIONS(8228), 1, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(4986), 1, + [180181] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3615), 1, + sym_class_body, + STATE(4777), 1, sym_comment, - STATE(5821), 1, - sym_type_annotation, - STATE(7046), 1, - sym__initializer, - ACTIONS(7923), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [183269] = 9, + STATE(5096), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7315), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [180218] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(4987), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8243), 1, + anon_sym_LBRACE, + STATE(3977), 1, + sym_class_body, + STATE(4778), 1, sym_comment, - STATE(5762), 1, - sym_type_annotation, - STATE(6948), 1, - sym__initializer, - ACTIONS(8164), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(8160), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [183300] = 10, + STATE(5056), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7516), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [180255] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8230), 1, - anon_sym_BANG, - ACTIONS(8232), 1, - anon_sym_QMARK, - STATE(4988), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8245), 1, + anon_sym_LBRACE, + STATE(1345), 1, + sym_class_body, + STATE(4779), 1, sym_comment, - STATE(5830), 1, - sym_type_annotation, - STATE(7068), 1, - sym__initializer, - ACTIONS(7923), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [183333] = 12, + STATE(5099), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7251), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [180292] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8234), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(1906), 1, + STATE(4780), 1, + sym_comment, + STATE(5100), 1, + sym_type_parameters, + STATE(6034), 1, sym_class_body, - STATE(4989), 1, + STATE(6769), 1, + sym_extends_clause, + STATE(7234), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [180329] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3577), 1, + sym_class_body, + STATE(4781), 1, sym_comment, - STATE(5416), 1, + STATE(5103), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8161), 1, + STATE(7148), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [183370] = 9, + [180366] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8168), 1, - anon_sym_EQ, - STATE(4990), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8247), 1, + anon_sym_LBRACE, + STATE(4170), 1, + sym_class_body, + STATE(4782), 1, sym_comment, - STATE(5762), 1, - sym_type_annotation, - STATE(6252), 1, - sym__initializer, - ACTIONS(8164), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(8160), 3, + STATE(5014), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7222), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [180403] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(7754), 1, + anon_sym_LT, + STATE(2963), 1, + sym_template_string, + STATE(3193), 1, + sym_arguments, + STATE(4557), 1, + sym_type_arguments, + STATE(4783), 1, + sym_comment, + STATE(7423), 1, + sym_optional_chain, + [180440] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8249), 1, + anon_sym_LBRACE, + STATE(3940), 1, + sym_class_body, + STATE(4784), 1, + sym_comment, + STATE(5013), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7303), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [180477] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8245), 1, + anon_sym_LBRACE, + STATE(1333), 1, + sym_class_body, + STATE(4785), 1, + sym_comment, + STATE(5104), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7208), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [180514] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8219), 1, + anon_sym_LBRACE, + STATE(4786), 1, + sym_comment, + STATE(5105), 1, + sym_type_parameters, + STATE(5951), 1, + sym_class_body, + STATE(6769), 1, + sym_extends_clause, + STATE(7191), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [180551] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8251), 1, + anon_sym_LBRACE, + STATE(1468), 1, + sym_class_body, + STATE(4787), 1, + sym_comment, + STATE(5054), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7465), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [180588] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7692), 1, + anon_sym_LT, + STATE(2646), 1, + sym_arguments, + STATE(2963), 1, + sym_template_string, + STATE(4513), 1, + sym_type_arguments, + STATE(4788), 1, + sym_comment, + STATE(7423), 1, + sym_optional_chain, + [180625] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4789), 1, + sym_comment, + ACTIONS(5816), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [183401] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [180646] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(4991), 1, + STATE(4790), 1, sym_comment, - ACTIONS(5709), 9, + ACTIONS(5812), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -410184,470 +394064,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [183422] = 9, + [180667] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(4992), 1, + STATE(4791), 1, sym_comment, - STATE(5778), 1, - sym_type_annotation, - STATE(6617), 1, - sym__initializer, - ACTIONS(7931), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7929), 3, + ACTIONS(5800), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [183453] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(1760), 1, - sym_class_body, - STATE(4993), 1, - sym_comment, - STATE(5351), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7711), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [183490] = 10, + [180688] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + STATE(4792), 1, + sym_comment, + ACTIONS(8253), 9, anon_sym_EQ, - ACTIONS(7863), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(8238), 1, - anon_sym_BANG, - ACTIONS(8240), 1, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(4994), 1, - sym_comment, - STATE(5793), 1, - sym_type_annotation, - STATE(6894), 1, - sym__initializer, - ACTIONS(8220), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [183523] = 9, + [180709] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3003), 1, - anon_sym_RBRACE, - ACTIONS(7883), 1, + ACTIONS(7900), 1, anon_sym_EQ, - ACTIONS(8208), 1, + ACTIONS(8233), 1, anon_sym_COMMA, - STATE(4995), 1, + ACTIONS(8255), 1, + anon_sym_RBRACE, + STATE(4793), 1, sym_comment, - STATE(6997), 1, + STATE(7026), 1, aux_sym_object_pattern_repeat1, - STATE(7210), 1, + STATE(7047), 1, aux_sym_object_repeat1, - ACTIONS(5208), 4, + ACTIONS(5210), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [183554] = 12, + [180740] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(7681), 1, - anon_sym_LT, - ACTIONS(8242), 1, - anon_sym_DOT, - STATE(3722), 1, - sym_template_string, - STATE(3868), 1, - sym_arguments, - STATE(4996), 1, - sym_comment, - STATE(6545), 1, - sym_type_arguments, - STATE(7919), 1, - sym_optional_chain, - [183591] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8244), 1, + ACTIONS(8257), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(424), 1, sym_class_body, - STATE(4997), 1, + STATE(4794), 1, sym_comment, - STATE(5356), 1, + STATE(5112), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7691), 1, + STATE(7229), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [183628] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(8144), 1, - sym_identifier, - ACTIONS(8246), 1, - anon_sym_RBRACE, - STATE(4998), 1, - sym_comment, - STATE(6566), 1, - sym_string, - STATE(6660), 1, - sym__module_export_name, - STATE(7646), 1, - sym_export_specifier, - ACTIONS(8146), 2, - anon_sym_type, - anon_sym_typeof, - [183663] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7681), 1, - anon_sym_LT, - ACTIONS(8248), 1, - anon_sym_DOT, - STATE(2997), 1, - sym_template_string, - STATE(3246), 1, - sym_arguments, - STATE(4999), 1, - sym_comment, - STATE(6573), 1, - sym_type_arguments, - STATE(8103), 1, - sym_optional_chain, - [183700] = 12, + [180777] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8250), 1, - anon_sym_LBRACE, - STATE(4109), 1, - sym_class_body, - STATE(5000), 1, + STATE(4795), 1, sym_comment, - STATE(5423), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(8138), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [183737] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8252), 1, + ACTIONS(8259), 9, anon_sym_EQ, - STATE(5001), 1, - sym_comment, - ACTIONS(8254), 8, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [183760] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8256), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_class_body, - STATE(5002), 1, - sym_comment, - STATE(5367), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7486), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [183797] = 12, + anon_sym_QMARK, + [180798] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8258), 1, + ACTIONS(8261), 1, anon_sym_LBRACE, - STATE(4425), 1, + STATE(1756), 1, sym_class_body, - STATE(5003), 1, + STATE(4796), 1, sym_comment, - STATE(5424), 1, + STATE(5010), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8021), 1, + STATE(7421), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [183834] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8260), 1, - anon_sym_EQ, - STATE(5004), 1, - sym_comment, - ACTIONS(8262), 8, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [183857] = 7, + [180835] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8264), 1, + ACTIONS(8223), 1, anon_sym_AMP, - ACTIONS(8266), 1, + ACTIONS(8225), 1, anon_sym_PIPE, - ACTIONS(8268), 1, + ACTIONS(8227), 1, anon_sym_extends, - STATE(5005), 1, + STATE(4797), 1, sym_comment, - ACTIONS(5917), 6, + ACTIONS(5756), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [183884] = 6, + [180862] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8270), 1, - anon_sym_COLON, - STATE(5006), 1, + ACTIONS(8223), 1, + anon_sym_AMP, + ACTIONS(8225), 1, + anon_sym_PIPE, + ACTIONS(8227), 1, + anon_sym_extends, + STATE(4798), 1, sym_comment, - STATE(6234), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(8182), 5, + ACTIONS(5760), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [183909] = 12, + anon_sym_LBRACK, + [180889] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(8247), 1, anon_sym_LBRACE, - STATE(3574), 1, + STATE(4233), 1, sym_class_body, - STATE(5007), 1, + STATE(4799), 1, sym_comment, - STATE(5262), 1, + STATE(5009), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7501), 1, + STATE(7432), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [183946] = 7, + [180926] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8264), 1, - anon_sym_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE, - ACTIONS(8268), 1, - anon_sym_extends, - STATE(5008), 1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(8263), 1, + anon_sym_EQ, + ACTIONS(8265), 1, + anon_sym_DOT, + STATE(4800), 1, sym_comment, - ACTIONS(5913), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4980), 1, + sym_arguments, + ACTIONS(8163), 5, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [183973] = 12, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [180955] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8234), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - STATE(1912), 1, + STATE(3986), 1, sym_class_body, - STATE(5009), 1, + STATE(4801), 1, sym_comment, - STATE(5426), 1, + STATE(4997), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7956), 1, + STATE(7489), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [184010] = 7, + [180992] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8264), 1, + ACTIONS(8223), 1, anon_sym_AMP, - ACTIONS(8266), 1, + ACTIONS(8225), 1, anon_sym_PIPE, - ACTIONS(8268), 1, + ACTIONS(8227), 1, anon_sym_extends, - STATE(5010), 1, + STATE(4802), 1, sym_comment, - ACTIONS(5909), 6, + ACTIONS(5780), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [184037] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8274), 1, - anon_sym_LBRACE, - STATE(4117), 1, - sym_class_body, - STATE(5011), 1, - sym_comment, - STATE(5251), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7955), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [184074] = 4, + [181019] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5012), 1, + STATE(4803), 1, sym_comment, - ACTIONS(5909), 9, + ACTIONS(5780), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -410657,14 +394335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [184095] = 4, + [181040] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5013), 1, + STATE(4804), 1, sym_comment, - ACTIONS(5627), 9, + ACTIONS(5794), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -410674,72 +394352,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [184116] = 7, + [181061] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7692), 1, + anon_sym_LT, + ACTIONS(8267), 1, + anon_sym_DOT, + STATE(2963), 1, + sym_template_string, + STATE(3112), 1, + sym_arguments, + STATE(4805), 1, + sym_comment, + STATE(6219), 1, + sym_type_arguments, + STATE(7423), 1, + sym_optional_chain, + [181098] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(8169), 1, + sym_identifier, + ACTIONS(8269), 1, + anon_sym_RBRACE, + STATE(4806), 1, + sym_comment, + STATE(6263), 1, + sym_string, + STATE(7139), 1, + sym__module_export_name, + STATE(7751), 1, + sym_export_specifier, + ACTIONS(8171), 2, + anon_sym_type, + anon_sym_typeof, + [181133] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8271), 1, + anon_sym_LBRACE, + STATE(3853), 1, + sym_class_body, + STATE(4807), 1, + sym_comment, + STATE(5055), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7494), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [181170] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8264), 1, + ACTIONS(8223), 1, anon_sym_AMP, - ACTIONS(8266), 1, + ACTIONS(8225), 1, anon_sym_PIPE, - ACTIONS(8268), 1, + ACTIONS(8227), 1, anon_sym_extends, - STATE(5014), 1, + STATE(4808), 1, sym_comment, - ACTIONS(5899), 6, + ACTIONS(5820), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [184143] = 8, + [181197] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8261), 1, + anon_sym_LBRACE, + STATE(1766), 1, + sym_class_body, + STATE(4809), 1, + sym_comment, + STATE(5007), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7654), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [181234] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(8276), 1, + ACTIONS(8273), 1, anon_sym_EQ, - STATE(5015), 1, + STATE(4810), 1, sym_comment, - ACTIONS(8110), 5, + ACTIONS(8167), 5, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_EQ_GT, - [184172] = 4, + [181263] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5016), 1, - sym_comment, - ACTIONS(5895), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7900), 1, + anon_sym_EQ, + ACTIONS(8233), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [184193] = 4, + ACTIONS(8275), 1, + anon_sym_RBRACE, + STATE(4811), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(5210), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [181294] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5017), 1, + STATE(4812), 1, sym_comment, - ACTIONS(5891), 9, + ACTIONS(5836), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -410749,14 +394531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [184214] = 4, + [181315] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5018), 1, + STATE(4813), 1, sym_comment, - ACTIONS(5901), 9, + ACTIONS(5846), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -410766,1119 +394548,1192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [184235] = 4, + [181336] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5019), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8279), 1, + anon_sym_BANG, + ACTIONS(8281), 1, + anon_sym_QMARK, + STATE(4814), 1, sym_comment, - ACTIONS(5903), 9, + STATE(6076), 1, + sym_type_annotation, + STATE(6861), 1, + sym__initializer, + ACTIONS(8277), 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, - [184256] = 4, + [181369] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5020), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(7692), 1, + anon_sym_LT, + ACTIONS(8283), 1, + anon_sym_DOT, + STATE(3601), 1, + sym_template_string, + STATE(3738), 1, + sym_arguments, + STATE(4815), 1, sym_comment, - ACTIONS(5905), 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, - [184277] = 9, + STATE(6139), 1, + sym_type_arguments, + STATE(7787), 1, + sym_optional_chain, + [181406] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7883), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(8208), 1, - anon_sym_COMMA, - ACTIONS(8278), 1, - anon_sym_RBRACE, - STATE(5021), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(5208), 4, - anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - anon_sym_LT, + STATE(4816), 1, + sym_comment, + STATE(5669), 1, + sym_type_annotation, + STATE(7136), 1, + sym__initializer, + ACTIONS(7878), 2, + anon_sym_BANG, anon_sym_QMARK, - [184308] = 8, + ACTIONS(7876), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181437] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(8280), 1, - anon_sym_EQ, - ACTIONS(8282), 1, - anon_sym_DOT, - STATE(5022), 1, - sym_comment, - STATE(5180), 1, - sym_arguments, - ACTIONS(8190), 5, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8285), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [184337] = 12, + STATE(1194), 1, + sym_class_body, + STATE(4817), 1, + sym_comment, + STATE(5113), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7247), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [181474] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8284), 1, + ACTIONS(8287), 1, anon_sym_LBRACE, - STATE(1353), 1, + STATE(1255), 1, sym_class_body, - STATE(5023), 1, + STATE(4818), 1, sym_comment, - STATE(5504), 1, + STATE(5115), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7542), 1, + STATE(7261), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [184374] = 4, + [181511] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5024), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8257), 1, + anon_sym_LBRACE, + STATE(395), 1, + sym_class_body, + STATE(4819), 1, sym_comment, - ACTIONS(8286), 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, - [184395] = 10, + STATE(5118), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7267), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [181548] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8288), 1, + ACTIONS(8289), 1, anon_sym_BANG, - ACTIONS(8290), 1, + ACTIONS(8291), 1, anon_sym_QMARK, - STATE(5025), 1, + STATE(4820), 1, sym_comment, - STATE(6015), 1, + STATE(5587), 1, sym_type_annotation, - STATE(7258), 1, + STATE(7061), 1, sym__initializer, - ACTIONS(7923), 3, + ACTIONS(7884), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [184428] = 11, + [181581] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7681), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5026), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8285), 1, + anon_sym_LBRACE, + STATE(1217), 1, + sym_class_body, + STATE(4821), 1, sym_comment, - STATE(6573), 1, - sym_type_arguments, - STATE(8103), 1, - sym_optional_chain, - STATE(2997), 2, - sym_template_string, - sym_arguments, - [184463] = 10, + STATE(5124), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7274), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [181618] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8292), 1, + ACTIONS(8293), 1, anon_sym_BANG, - ACTIONS(8294), 1, + ACTIONS(8295), 1, anon_sym_QMARK, - STATE(5027), 1, + STATE(4822), 1, sym_comment, - STATE(5806), 1, + STATE(5568), 1, sym_type_annotation, - STATE(6648), 1, + STATE(7100), 1, sym__initializer, - ACTIONS(7893), 3, + ACTIONS(7884), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [184496] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7681), 1, - anon_sym_LT, - STATE(2790), 1, - sym_arguments, - STATE(2997), 1, - sym_template_string, - STATE(4734), 1, - sym_type_arguments, - STATE(5028), 1, - sym_comment, - STATE(8103), 1, - sym_optional_chain, - [184533] = 12, + [181651] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8296), 1, + ACTIONS(8287), 1, anon_sym_LBRACE, - STATE(1168), 1, + STATE(1230), 1, sym_class_body, - STATE(5029), 1, + STATE(4823), 1, sym_comment, - STATE(5505), 1, + STATE(5127), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7531), 1, + STATE(7285), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [184570] = 4, + [181688] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5030), 1, - sym_comment, - ACTIONS(8298), 9, + ACTIONS(7862), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(7870), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(8297), 1, + anon_sym_BANG, + ACTIONS(8299), 1, anon_sym_QMARK, - [184591] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3577), 1, - sym_class_body, - STATE(5031), 1, + STATE(4824), 1, sym_comment, - STATE(5276), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(8174), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [184628] = 10, + STATE(5557), 1, + sym_type_annotation, + STATE(7033), 1, + sym__initializer, + ACTIONS(7884), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181721] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8300), 1, + ACTIONS(8301), 1, anon_sym_BANG, - ACTIONS(8302), 1, + ACTIONS(8303), 1, anon_sym_QMARK, - STATE(5032), 1, + STATE(4825), 1, sym_comment, - STATE(6201), 1, + STATE(5742), 1, sym_type_annotation, - STATE(7352), 1, + STATE(7028), 1, sym__initializer, - ACTIONS(7877), 3, + ACTIONS(7884), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [184661] = 10, + [181754] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8304), 1, + ACTIONS(8305), 1, anon_sym_BANG, - ACTIONS(8306), 1, + ACTIONS(8307), 1, anon_sym_QMARK, - STATE(5033), 1, + STATE(4826), 1, sym_comment, - STATE(5837), 1, + STATE(5533), 1, sym_type_annotation, - STATE(7066), 1, + STATE(7048), 1, sym__initializer, - ACTIONS(7857), 3, + ACTIONS(7884), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [184694] = 5, + [181787] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8308), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5034), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8309), 1, + anon_sym_BANG, + ACTIONS(8311), 1, + anon_sym_QMARK, + STATE(4827), 1, sym_comment, - ACTIONS(8310), 8, - anon_sym_LBRACE, + STATE(5567), 1, + sym_type_annotation, + STATE(6952), 1, + sym__initializer, + ACTIONS(7884), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [184717] = 5, + anon_sym_SEMI, + [181820] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8312), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5035), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8313), 1, + anon_sym_BANG, + ACTIONS(8315), 1, + anon_sym_QMARK, + STATE(4828), 1, sym_comment, - ACTIONS(8314), 8, - anon_sym_LBRACE, + STATE(5573), 1, + sym_type_annotation, + STATE(6937), 1, + sym__initializer, + ACTIONS(7884), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [184740] = 12, + anon_sym_SEMI, + [181853] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8250), 1, + ACTIONS(8317), 1, anon_sym_LBRACE, - STATE(4187), 1, + STATE(368), 1, sym_class_body, - STATE(5036), 1, + STATE(4829), 1, sym_comment, - STATE(5427), 1, + STATE(5146), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7852), 1, + STATE(7345), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [184777] = 10, + [181890] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4830), 1, + sym_comment, + ACTIONS(5612), 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, + [181911] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8316), 1, + ACTIONS(8319), 1, anon_sym_BANG, - ACTIONS(8318), 1, + ACTIONS(8321), 1, anon_sym_QMARK, - STATE(5037), 1, + STATE(4831), 1, sym_comment, - STATE(6006), 1, + STATE(5688), 1, sym_type_annotation, - STATE(6855), 1, + STATE(6896), 1, sym__initializer, - ACTIONS(7893), 3, + ACTIONS(7884), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [184810] = 10, + [181944] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8320), 1, + ACTIONS(8323), 1, anon_sym_BANG, - ACTIONS(8322), 1, + ACTIONS(8325), 1, anon_sym_QMARK, - STATE(5038), 1, + STATE(4832), 1, sym_comment, - STATE(6219), 1, + STATE(5713), 1, sym_type_annotation, - STATE(7331), 1, + STATE(6884), 1, sym__initializer, - ACTIONS(7877), 3, + ACTIONS(7884), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [184843] = 12, + [181977] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8324), 1, + ACTIONS(8215), 1, anon_sym_LBRACE, - STATE(371), 1, + STATE(1706), 1, sym_class_body, - STATE(5039), 1, + STATE(4833), 1, sym_comment, - STATE(5459), 1, + STATE(5053), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7602), 1, + STATE(7407), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [184880] = 9, + [182014] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5040), 1, + STATE(4834), 1, sym_comment, - STATE(5761), 1, - sym_type_annotation, - STATE(6973), 1, - sym__initializer, - ACTIONS(7913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7911), 3, + ACTIONS(5954), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [184911] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [182035] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8258), 1, + ACTIONS(8223), 1, + anon_sym_AMP, + STATE(4835), 1, + sym_comment, + ACTIONS(5958), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(4315), 1, - sym_class_body, - STATE(5041), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [182058] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4836), 1, sym_comment, - STATE(5428), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7781), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [184948] = 12, + ACTIONS(5962), 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, + [182079] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8223), 1, + anon_sym_AMP, + ACTIONS(8225), 1, + anon_sym_PIPE, + ACTIONS(8227), 1, anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8326), 1, + STATE(4837), 1, + sym_comment, + ACTIONS(5988), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(3886), 1, - sym_class_body, - STATE(5042), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [182106] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4838), 1, sym_comment, - STATE(5380), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7763), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [184985] = 10, + ACTIONS(5988), 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, + [182127] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4839), 1, + sym_comment, + ACTIONS(5992), 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, + [182148] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8328), 1, + ACTIONS(8327), 1, anon_sym_BANG, - ACTIONS(8330), 1, + ACTIONS(8329), 1, anon_sym_QMARK, - STATE(5043), 1, + STATE(4840), 1, sym_comment, - STATE(5887), 1, + STATE(5707), 1, sym_type_annotation, - STATE(6677), 1, + STATE(6983), 1, sym__initializer, - ACTIONS(7893), 3, + ACTIONS(7916), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [185018] = 12, + [182181] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8332), 1, + STATE(4841), 1, + sym_comment, + ACTIONS(5996), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(450), 1, - sym_class_body, - STATE(5044), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [182202] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4842), 1, sym_comment, - STATE(5364), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7951), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [185055] = 9, + ACTIONS(5980), 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, + [182223] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7883), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(8208), 1, - anon_sym_COMMA, - ACTIONS(8334), 1, - anon_sym_RBRACE, - STATE(5045), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7210), 1, - aux_sym_object_repeat1, - ACTIONS(5208), 4, - anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(8331), 1, + anon_sym_BANG, + ACTIONS(8333), 1, anon_sym_QMARK, - [185086] = 12, + STATE(4843), 1, + sym_comment, + STATE(5663), 1, + sym_type_annotation, + STATE(6903), 1, + sym__initializer, + ACTIONS(7916), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182256] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4844), 1, + sym_comment, + ACTIONS(6042), 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, + [182277] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4845), 1, + sym_comment, + ACTIONS(6052), 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, + [182298] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4846), 1, + sym_comment, + ACTIONS(6077), 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, + [182319] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8336), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(1578), 1, + STATE(3401), 1, sym_class_body, - STATE(5046), 1, + STATE(4847), 1, sym_comment, - STATE(5366), 1, + STATE(5065), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7957), 1, + STATE(7732), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [185123] = 10, + [182356] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8338), 1, - anon_sym_BANG, - ACTIONS(8340), 1, - anon_sym_QMARK, - STATE(5047), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8335), 1, + anon_sym_LBRACE, + STATE(1025), 1, + sym_class_body, + STATE(4848), 1, sym_comment, - STATE(5889), 1, - sym_type_annotation, - STATE(6679), 1, - sym__initializer, - ACTIONS(7893), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [185156] = 12, + STATE(5149), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7358), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [182393] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8274), 1, + ACTIONS(8337), 1, anon_sym_LBRACE, - STATE(4075), 1, + STATE(1148), 1, sym_class_body, - STATE(5048), 1, + STATE(4849), 1, sym_comment, - STATE(5329), 1, + STATE(5152), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8062), 1, + STATE(7368), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [185193] = 6, + [182430] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8270), 1, - anon_sym_COLON, - STATE(5049), 1, + STATE(4850), 1, sym_comment, - STATE(6283), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(8122), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(8339), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [185218] = 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [182451] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + STATE(4851), 1, + sym_comment, + ACTIONS(8341), 9, anon_sym_EQ, - ACTIONS(7863), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(8342), 1, - anon_sym_BANG, - ACTIONS(8344), 1, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(5050), 1, + [182472] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4852), 1, sym_comment, - STATE(6096), 1, - sym_type_annotation, - STATE(7303), 1, - sym__initializer, - ACTIONS(7923), 3, - sym__automatic_semicolon, + ACTIONS(8343), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [185251] = 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [182493] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8244), 1, + ACTIONS(8317), 1, anon_sym_LBRACE, - STATE(1555), 1, + STATE(360), 1, sym_class_body, - STATE(5051), 1, + STATE(4853), 1, sym_comment, - STATE(5313), 1, + STATE(5156), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7845), 1, + STATE(7374), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [185288] = 12, + [182530] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8296), 1, + ACTIONS(8335), 1, anon_sym_LBRACE, - STATE(1236), 1, + STATE(1028), 1, sym_class_body, - STATE(5052), 1, + STATE(4854), 1, sym_comment, - STATE(5399), 1, + STATE(5159), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7504), 1, + STATE(7381), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [185325] = 4, + [182567] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5053), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8345), 1, + anon_sym_BANG, + ACTIONS(8347), 1, + anon_sym_QMARK, + STATE(4855), 1, sym_comment, - ACTIONS(4758), 9, + STATE(6075), 1, + sym_type_annotation, + STATE(6850), 1, + sym__initializer, + ACTIONS(7916), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [185346] = 4, + [182600] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5054), 1, - sym_comment, - ACTIONS(4756), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5536), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5540), 1, anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [185367] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8346), 1, - anon_sym_BANG, - ACTIONS(8348), 1, - anon_sym_QMARK, - STATE(5055), 1, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7692), 1, + anon_sym_LT, + STATE(2963), 1, + sym_template_string, + STATE(3755), 1, + sym_arguments, + STATE(4513), 1, + sym_type_arguments, + STATE(4856), 1, sym_comment, - STATE(6012), 1, - sym_type_annotation, - STATE(6885), 1, - sym__initializer, - ACTIONS(7893), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [185400] = 4, + STATE(7423), 1, + sym_optional_chain, + [182637] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5056), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8337), 1, + anon_sym_LBRACE, + STATE(1121), 1, + sym_class_body, + STATE(4857), 1, sym_comment, - ACTIONS(8350), 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, - [185421] = 4, + STATE(5161), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7391), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [182674] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5057), 1, + STATE(4858), 1, sym_comment, - ACTIONS(8314), 9, + ACTIONS(5978), 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_DOT, - anon_sym_PIPE_RBRACE, - [185442] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [182695] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8203), 1, + anon_sym_LBRACE, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8352), 1, - anon_sym_LBRACE, - STATE(5058), 1, + STATE(4859), 1, sym_comment, - STATE(5290), 1, + STATE(5066), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7398), 1, + STATE(7819), 1, sym_class_body, - STATE(7533), 1, + STATE(7832), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [185479] = 12, + [182732] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(3635), 1, - sym_class_body, - STATE(5059), 1, + STATE(4860), 1, sym_comment, - STATE(5272), 1, + STATE(5068), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7430), 1, + STATE(6856), 1, + sym_class_body, + STATE(7938), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [185516] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5060), 1, - sym_comment, - ACTIONS(8310), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [185537] = 12, + [182769] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(6131), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(7681), 1, + ACTIONS(7692), 1, anon_sym_LT, - ACTIONS(8354), 1, + ACTIONS(8349), 1, anon_sym_DOT, - STATE(3580), 1, + STATE(3493), 1, sym_arguments, - STATE(3722), 1, + STATE(3601), 1, sym_template_string, - STATE(5061), 1, + STATE(4861), 1, sym_comment, - STATE(6545), 1, + STATE(6139), 1, sym_type_arguments, - STATE(7919), 1, + STATE(7787), 1, sym_optional_chain, - [185574] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5062), 1, - sym_comment, - ACTIONS(5591), 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, - [185595] = 4, + [182806] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5063), 1, - sym_comment, - ACTIONS(8262), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6094), 1, anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [185616] = 10, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + ACTIONS(7692), 1, + anon_sym_LT, + STATE(3362), 1, + sym_arguments, + STATE(3601), 1, + sym_template_string, + STATE(4744), 1, + sym_type_arguments, + STATE(4862), 1, + sym_comment, + STATE(7787), 1, + sym_optional_chain, + [182843] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8356), 1, + ACTIONS(8351), 1, anon_sym_BANG, - ACTIONS(8358), 1, + ACTIONS(8353), 1, anon_sym_QMARK, - STATE(5064), 1, + STATE(4863), 1, sym_comment, - STATE(6222), 1, + STATE(5827), 1, sym_type_annotation, - STATE(7330), 1, + STATE(6858), 1, sym__initializer, - ACTIONS(7877), 3, + ACTIONS(7916), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [185649] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5065), 1, - sym_comment, - STATE(5286), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7299), 1, - sym_class_body, - STATE(7574), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [185686] = 9, + [182876] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5066), 1, + ACTIONS(8355), 1, + anon_sym_BANG, + ACTIONS(8357), 1, + anon_sym_QMARK, + STATE(4864), 1, sym_comment, - STATE(6286), 1, + STATE(5897), 1, sym_type_annotation, - STATE(7167), 1, + STATE(6781), 1, sym__initializer, - ACTIONS(8364), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(8362), 3, + ACTIONS(7916), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [185717] = 4, + [182909] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5067), 1, + ACTIONS(8359), 1, + anon_sym_COLON, + STATE(4865), 1, sym_comment, - ACTIONS(5971), 9, + STATE(5549), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(8201), 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, - [185738] = 4, + [182934] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5068), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(4866), 1, sym_comment, - ACTIONS(5851), 9, + STATE(6080), 1, + sym_type_annotation, + STATE(6711), 1, + sym__initializer, + ACTIONS(8113), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(8109), 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, - [185759] = 5, + [182965] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8264), 1, - anon_sym_AMP, - STATE(5069), 1, + ACTIONS(8359), 1, + anon_sym_COLON, + STATE(4867), 1, sym_comment, - ACTIONS(5847), 8, + STATE(5558), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(8195), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [185782] = 4, + [182990] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5070), 1, + STATE(4868), 1, sym_comment, - ACTIONS(5843), 9, + ACTIONS(5980), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -411888,84 +395743,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [185803] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(7681), 1, - anon_sym_LT, - STATE(3434), 1, - sym_arguments, - STATE(3722), 1, - sym_template_string, - STATE(4960), 1, - sym_type_arguments, - STATE(5071), 1, - sym_comment, - STATE(7919), 1, - sym_optional_chain, - [185840] = 12, + [183011] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8218), 1, + ACTIONS(8231), 1, anon_sym_LBRACE, - STATE(1875), 1, + STATE(507), 1, sym_class_body, - STATE(5072), 1, + STATE(4869), 1, sym_comment, - STATE(5275), 1, + STATE(5090), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7972), 1, + STATE(7417), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [185877] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8264), 1, - anon_sym_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE, - ACTIONS(8268), 1, - anon_sym_extends, - STATE(5073), 1, - sym_comment, - ACTIONS(5833), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [185904] = 4, + [183048] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5074), 1, + STATE(4870), 1, sym_comment, - ACTIONS(5833), 9, + ACTIONS(5802), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -411975,54 +395785,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [185925] = 4, + [183069] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5075), 1, - sym_comment, - ACTIONS(8254), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4732), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [185946] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(8363), 1, anon_sym_COLON, - ACTIONS(8366), 1, - anon_sym_BANG, - ACTIONS(8368), 1, - anon_sym_QMARK, - STATE(5076), 1, + ACTIONS(8365), 1, + anon_sym_DOT, + ACTIONS(8367), 1, + anon_sym_on, + STATE(4160), 1, + sym_ui_object_initializer, + STATE(4871), 1, sym_comment, - STATE(5839), 1, - sym_type_annotation, - STATE(7073), 1, - sym__initializer, - ACTIONS(7857), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [185979] = 4, + ACTIONS(8361), 4, + anon_sym_default, + anon_sym_readonly, + anon_sym_property, + anon_sym_required, + [183100] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5077), 1, + STATE(4872), 1, sym_comment, - ACTIONS(5825), 9, + ACTIONS(6079), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -412032,14 +395824,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [186000] = 4, + [183121] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5078), 1, + STATE(4873), 1, sym_comment, - ACTIONS(5821), 9, + ACTIONS(5944), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -412049,339 +395841,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [186021] = 12, + [183142] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8336), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(1623), 1, + STATE(3416), 1, sym_class_body, - STATE(5079), 1, + STATE(4874), 1, sym_comment, - STATE(5343), 1, + STATE(5074), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7882), 1, + STATE(7772), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [186058] = 12, + [183179] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7681), 1, - anon_sym_LT, - STATE(2997), 1, - sym_template_string, - STATE(3470), 1, - sym_arguments, - STATE(4734), 1, - sym_type_arguments, - STATE(5080), 1, + STATE(4875), 1, sym_comment, - STATE(8103), 1, - sym_optional_chain, - [186095] = 12, + ACTIONS(5978), 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, + [183200] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8370), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(4019), 1, - sym_class_body, - STATE(5081), 1, + STATE(4876), 1, sym_comment, - STATE(5239), 1, + STATE(5082), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7921), 1, + STATE(6943), 1, + sym_class_body, + STATE(7641), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [186132] = 12, + [183237] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8236), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(1799), 1, + STATE(2944), 1, sym_class_body, - STATE(5082), 1, + STATE(4877), 1, sym_comment, - STATE(5289), 1, + STATE(5084), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8126), 1, + STATE(7597), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [186169] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(8144), 1, - sym_identifier, - ACTIONS(8372), 1, - anon_sym_RBRACE, - STATE(5083), 1, - sym_comment, - STATE(6566), 1, - sym_string, - STATE(6660), 1, - sym__module_export_name, - STATE(7646), 1, - sym_export_specifier, - ACTIONS(8146), 2, - anon_sym_type, - anon_sym_typeof, - [186204] = 10, + [183274] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8374), 1, - anon_sym_BANG, - ACTIONS(8376), 1, - anon_sym_QMARK, - STATE(5084), 1, + STATE(4878), 1, sym_comment, - STATE(6224), 1, - sym_type_annotation, - STATE(7326), 1, - sym__initializer, - ACTIONS(7877), 3, + ACTIONS(6046), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [186237] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [183295] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5085), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8251), 1, + anon_sym_LBRACE, + STATE(1502), 1, + sym_class_body, + STATE(4879), 1, sym_comment, - STATE(6040), 1, - sym_type_annotation, - STATE(6634), 1, - sym__initializer, - ACTIONS(7871), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7869), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [186268] = 10, + STATE(5004), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7871), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [183332] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8378), 1, - anon_sym_BANG, - ACTIONS(8380), 1, - anon_sym_QMARK, - STATE(5086), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(7692), 1, + anon_sym_LT, + ACTIONS(8369), 1, + anon_sym_DOT, + STATE(2963), 1, + sym_template_string, + STATE(3625), 1, + sym_arguments, + STATE(4880), 1, sym_comment, - STATE(5939), 1, - sym_type_annotation, - STATE(6722), 1, - sym__initializer, - ACTIONS(7893), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [186301] = 10, + STATE(6219), 1, + sym_type_arguments, + STATE(7423), 1, + sym_optional_chain, + [183369] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8382), 1, - anon_sym_BANG, - ACTIONS(8384), 1, - anon_sym_QMARK, - STATE(5087), 1, + STATE(4881), 1, sym_comment, - STATE(5978), 1, + STATE(5956), 1, sym_type_annotation, - STATE(7213), 1, + STATE(6780), 1, sym__initializer, - ACTIONS(7923), 3, + ACTIONS(7992), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7990), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [186334] = 4, + [183400] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5088), 1, + ACTIONS(8371), 1, + anon_sym_LBRACK, + STATE(4882), 1, sym_comment, - ACTIONS(8386), 9, - anon_sym_EQ, + ACTIONS(6012), 8, + 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, - [186355] = 10, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [183423] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8388), 1, - anon_sym_BANG, - ACTIONS(8390), 1, - anon_sym_QMARK, - STATE(5089), 1, + STATE(4883), 1, sym_comment, - STATE(5940), 1, - sym_type_annotation, - STATE(6724), 1, - sym__initializer, - ACTIONS(7893), 3, + ACTIONS(5726), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [186388] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [183444] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3005), 1, - anon_sym_RBRACE, - ACTIONS(7883), 1, - anon_sym_EQ, - ACTIONS(8208), 1, - anon_sym_COMMA, - STATE(5090), 1, + ACTIONS(8373), 1, + anon_sym_extends, + STATE(4884), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(5208), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [186419] = 10, + ACTIONS(6006), 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, + [183467] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8392), 1, - anon_sym_BANG, - ACTIONS(8394), 1, - anon_sym_QMARK, - STATE(5091), 1, + ACTIONS(8371), 1, + anon_sym_LBRACK, + STATE(4885), 1, sym_comment, - STATE(5945), 1, - sym_type_annotation, - STATE(6743), 1, - sym__initializer, - ACTIONS(7893), 3, + ACTIONS(5750), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5984), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [186452] = 12, + [183492] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8223), 1, + anon_sym_AMP, + ACTIONS(8225), 1, + anon_sym_PIPE, + ACTIONS(8227), 1, anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8284), 1, - anon_sym_LBRACE, - STATE(1307), 1, - sym_class_body, - STATE(5092), 1, + STATE(4886), 1, sym_comment, - STATE(5456), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7518), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [186489] = 4, + ACTIONS(5976), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [183519] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5093), 1, + STATE(4887), 1, sym_comment, - ACTIONS(5799), 9, + ACTIONS(5970), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -412391,156 +396131,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [186510] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(8088), 1, - sym_identifier, - ACTIONS(8090), 1, - anon_sym_type, - ACTIONS(8096), 1, - anon_sym_typeof, - STATE(5094), 1, - sym_comment, - STATE(6566), 1, - sym_string, - STATE(7719), 1, - sym__import_identifier, - STATE(7742), 1, - sym_import_specifier, - STATE(8575), 1, - sym__module_export_name, - [186547] = 12, + [183540] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(3592), 1, + STATE(3435), 1, sym_class_body, - STATE(5095), 1, - sym_comment, - STATE(5285), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7657), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [186584] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5096), 1, + STATE(4888), 1, sym_comment, - STATE(5287), 1, + STATE(5093), 1, sym_type_parameters, - STATE(6110), 1, - sym_class_body, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, STATE(7380), 1, sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [186621] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8352), 1, - anon_sym_LBRACE, - STATE(5097), 1, - sym_comment, - STATE(5279), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7545), 1, - sym_class_body, - STATE(7660), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [186658] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5098), 1, - sym_comment, - STATE(5347), 1, - sym_type_parameters, - STATE(6113), 1, - sym_class_body, - STATE(7061), 1, - sym_extends_clause, - STATE(7902), 1, - sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [186695] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5099), 1, - sym_comment, - ACTIONS(5721), 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, - [186716] = 4, + [183577] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5100), 1, + STATE(4889), 1, sym_comment, - ACTIONS(5791), 9, + ACTIONS(5935), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -412550,192 +396173,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [186737] = 10, + [183598] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8396), 1, + ACTIONS(8375), 1, anon_sym_BANG, - ACTIONS(8398), 1, + ACTIONS(8377), 1, anon_sym_QMARK, - STATE(5101), 1, + STATE(4890), 1, sym_comment, - STATE(5846), 1, + STATE(6078), 1, sym_type_annotation, - STATE(7081), 1, + STATE(6708), 1, sym__initializer, - ACTIONS(7923), 3, + ACTIONS(7864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [186770] = 12, + [183631] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5102), 1, + STATE(4891), 1, sym_comment, - STATE(5274), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7248), 1, - sym_class_body, - STATE(7682), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [186807] = 10, + ACTIONS(5766), 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, + [183652] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8400), 1, + ACTIONS(8379), 1, anon_sym_BANG, - ACTIONS(8402), 1, + ACTIONS(8381), 1, anon_sym_QMARK, - STATE(5103), 1, + STATE(4892), 1, sym_comment, - STATE(5842), 1, + STATE(6066), 1, sym_type_annotation, - STATE(6966), 1, + STATE(6694), 1, sym__initializer, - ACTIONS(7923), 3, + ACTIONS(7864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [186840] = 10, + [183685] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8404), 1, + ACTIONS(8383), 1, anon_sym_BANG, - ACTIONS(8406), 1, + ACTIONS(8385), 1, anon_sym_QMARK, - STATE(5104), 1, + STATE(4893), 1, sym_comment, - STATE(5856), 1, + STATE(6060), 1, sym_type_annotation, - STATE(7090), 1, + STATE(6692), 1, sym__initializer, - ACTIONS(7923), 3, + ACTIONS(7864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [186873] = 4, + [183718] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5105), 1, + ACTIONS(8223), 1, + anon_sym_AMP, + STATE(4894), 1, sym_comment, - ACTIONS(5783), 9, + ACTIONS(5870), 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, - [186894] = 4, + [183741] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5106), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8387), 1, + anon_sym_BANG, + ACTIONS(8389), 1, + anon_sym_QMARK, + STATE(4895), 1, sym_comment, - ACTIONS(5777), 9, + STATE(6005), 1, + sym_type_annotation, + STATE(6684), 1, + sym__initializer, + ACTIONS(7864), 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, - [186915] = 12, + [183774] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5107), 1, + ACTIONS(3005), 1, + anon_sym_RBRACE, + ACTIONS(7900), 1, + anon_sym_EQ, + ACTIONS(8233), 1, + anon_sym_COMMA, + STATE(4896), 1, sym_comment, - STATE(5397), 1, - sym_type_parameters, - STATE(5812), 1, - sym_class_body, - STATE(7061), 1, - sym_extends_clause, - STATE(7974), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [186952] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, + STATE(6902), 1, + aux_sym_object_repeat1, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(5210), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8408), 1, - anon_sym_LBRACE, - STATE(1376), 1, - sym_class_body, - STATE(5108), 1, - sym_comment, - STATE(5271), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7369), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [186989] = 4, + anon_sym_QMARK, + [183805] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5109), 1, + STATE(4897), 1, sym_comment, - ACTIONS(5775), 9, + ACTIONS(5921), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -412745,14 +396339,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [187010] = 4, + [183826] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5110), 1, + STATE(4898), 1, sym_comment, - ACTIONS(5839), 9, + ACTIONS(5866), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -412762,144 +396356,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [187031] = 10, + [183847] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8410), 1, + ACTIONS(8391), 1, anon_sym_BANG, - ACTIONS(8412), 1, + ACTIONS(8393), 1, anon_sym_QMARK, - STATE(5111), 1, + STATE(4899), 1, sym_comment, - STATE(6101), 1, + STATE(5929), 1, sym_type_annotation, - STATE(7289), 1, + STATE(6710), 1, sym__initializer, - ACTIONS(7923), 3, + ACTIONS(7864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [187064] = 4, + [183880] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5112), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8395), 1, + anon_sym_BANG, + ACTIONS(8397), 1, + anon_sym_QMARK, + STATE(4900), 1, sym_comment, - ACTIONS(5773), 9, + STATE(5880), 1, + sym_type_annotation, + STATE(6646), 1, + sym__initializer, + ACTIONS(7864), 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, - [187085] = 10, + [183913] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8414), 1, + ACTIONS(8399), 1, anon_sym_BANG, - ACTIONS(8416), 1, + ACTIONS(8401), 1, anon_sym_QMARK, - STATE(5113), 1, + STATE(4901), 1, sym_comment, - STATE(6232), 1, + STATE(5874), 1, sym_type_annotation, - STATE(7314), 1, + STATE(6645), 1, sym__initializer, - ACTIONS(7877), 3, + ACTIONS(7864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [187118] = 4, + [183946] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5114), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8403), 1, + anon_sym_BANG, + ACTIONS(8405), 1, + anon_sym_QMARK, + STATE(4902), 1, sym_comment, - ACTIONS(5725), 9, + STATE(5829), 1, + sym_type_annotation, + STATE(6630), 1, + sym__initializer, + ACTIONS(7864), 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, - [187139] = 12, + [183979] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5549), 1, - anon_sym_DOT, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(7747), 1, - anon_sym_LT, - STATE(2997), 1, - sym_template_string, - STATE(3318), 1, - sym_arguments, - STATE(4808), 1, - sym_type_arguments, - STATE(5115), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8407), 1, + anon_sym_BANG, + ACTIONS(8409), 1, + anon_sym_QMARK, + STATE(4903), 1, sym_comment, - STATE(8103), 1, - sym_optional_chain, - [187176] = 12, + STATE(5796), 1, + sym_type_annotation, + STATE(6629), 1, + sym__initializer, + ACTIONS(7864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184012] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8326), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(3100), 1, + STATE(2942), 1, sym_class_body, - STATE(5116), 1, + STATE(4904), 1, sym_comment, - STATE(5235), 1, + STATE(5121), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7954), 1, + STATE(7275), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [187213] = 4, + [184049] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5117), 1, + STATE(4905), 1, sym_comment, - ACTIONS(5837), 9, + ACTIONS(5840), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -412909,14 +396513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [187234] = 4, + [184070] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5118), 1, + STATE(4906), 1, sym_comment, - ACTIONS(5837), 9, + ACTIONS(5632), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -412926,344 +396530,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [187255] = 12, + [184091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8210), 1, - anon_sym_LBRACE, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - STATE(521), 1, - sym_class_body, - STATE(5119), 1, + STATE(4907), 1, sym_comment, - STATE(5418), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(8185), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [187292] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(4762), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - STATE(3537), 1, - sym_class_body, - STATE(5120), 1, - sym_comment, - STATE(5269), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7366), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [187329] = 12, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [184112] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5121), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8411), 1, + anon_sym_BANG, + ACTIONS(8413), 1, + anon_sym_QMARK, + STATE(4908), 1, sym_comment, - STATE(5267), 1, - sym_type_parameters, - STATE(6161), 1, - sym_class_body, - STATE(7061), 1, - sym_extends_clause, - STATE(7377), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [187366] = 4, + STATE(5806), 1, + sym_type_annotation, + STATE(6583), 1, + sym__initializer, + ACTIONS(7864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184145] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5122), 1, + STATE(4909), 1, sym_comment, - ACTIONS(5835), 9, + ACTIONS(4760), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [187387] = 12, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [184166] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(3058), 1, - sym_class_body, - STATE(5123), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8415), 1, + anon_sym_BANG, + ACTIONS(8417), 1, + anon_sym_QMARK, + STATE(4910), 1, sym_comment, - STATE(5273), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7689), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [187424] = 4, + STATE(5536), 1, + sym_type_annotation, + STATE(6576), 1, + sym__initializer, + ACTIONS(7864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184199] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5124), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8419), 1, + anon_sym_BANG, + ACTIONS(8421), 1, + anon_sym_QMARK, + STATE(4911), 1, sym_comment, - ACTIONS(5711), 9, + STATE(5547), 1, + sym_type_annotation, + STATE(6573), 1, + sym__initializer, + ACTIONS(7864), 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, - [187445] = 4, + [184232] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5125), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8423), 1, + anon_sym_BANG, + ACTIONS(8425), 1, + anon_sym_QMARK, + STATE(4912), 1, sym_comment, - ACTIONS(5729), 9, + STATE(5554), 1, + sym_type_annotation, + STATE(6566), 1, + sym__initializer, + ACTIONS(7864), 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, - [187466] = 12, + [184265] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8418), 1, - anon_sym_LBRACE, - STATE(1244), 1, - sym_class_body, - STATE(5126), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8427), 1, + anon_sym_BANG, + ACTIONS(8429), 1, + anon_sym_QMARK, + STATE(4913), 1, sym_comment, - STATE(5447), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7648), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [187503] = 4, + STATE(5578), 1, + sym_type_annotation, + STATE(6557), 1, + sym__initializer, + ACTIONS(7864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184298] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5127), 1, + STATE(4914), 1, sym_comment, - ACTIONS(5779), 9, + ACTIONS(8431), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [187524] = 12, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [184319] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8420), 1, - anon_sym_LBRACE, - STATE(1028), 1, - sym_class_body, - STATE(5128), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8433), 1, + anon_sym_BANG, + ACTIONS(8435), 1, + anon_sym_QMARK, + STATE(4915), 1, sym_comment, - STATE(5448), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7638), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [187561] = 12, + STATE(5579), 1, + sym_type_annotation, + STATE(6555), 1, + sym__initializer, + ACTIONS(7864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [184352] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5557), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5540), 1, + anon_sym_DOT, + ACTIONS(5582), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, + ACTIONS(5654), 1, anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(7681), 1, + ACTIONS(7692), 1, anon_sym_LT, - ACTIONS(8422), 1, - anon_sym_DOT, - STATE(2997), 1, - sym_template_string, - STATE(3687), 1, - sym_arguments, - STATE(5129), 1, + STATE(4916), 1, sym_comment, - STATE(6573), 1, + STATE(6219), 1, sym_type_arguments, - STATE(8103), 1, + STATE(7423), 1, sym_optional_chain, - [187598] = 10, + STATE(2963), 2, + sym_template_string, + sym_arguments, + [184387] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8424), 1, + ACTIONS(8437), 1, anon_sym_BANG, - ACTIONS(8426), 1, + ACTIONS(8439), 1, anon_sym_QMARK, - STATE(5130), 1, + STATE(4917), 1, sym_comment, - STATE(6253), 1, + STATE(5934), 1, sym_type_annotation, - STATE(7282), 1, + STATE(6438), 1, sym__initializer, - ACTIONS(7877), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [187631] = 9, + [184420] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5131), 1, + STATE(4918), 1, sym_comment, - STATE(6171), 1, - sym_type_annotation, - STATE(7339), 1, - sym__initializer, - ACTIONS(7985), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7983), 3, + ACTIONS(8441), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [187662] = 12, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [184441] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + STATE(4919), 1, + sym_comment, + ACTIONS(8443), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7681), 1, - anon_sym_LT, - ACTIONS(8428), 1, + anon_sym_SEMI, anon_sym_DOT, - STATE(2997), 1, - sym_template_string, - STATE(3816), 1, - sym_arguments, - STATE(5132), 1, - sym_comment, - STATE(6573), 1, - sym_type_arguments, - STATE(8103), 1, - sym_optional_chain, - [187699] = 4, + anon_sym_PIPE_RBRACE, + [184462] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5133), 1, + STATE(4920), 1, sym_comment, - ACTIONS(5695), 9, + ACTIONS(8445), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [187720] = 4, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [184483] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5134), 1, + STATE(4921), 1, sym_comment, - ACTIONS(5853), 9, + ACTIONS(5764), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -413273,128 +396834,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [187741] = 12, + [184504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8324), 1, - anon_sym_LBRACE, - STATE(352), 1, - sym_class_body, - STATE(5135), 1, + STATE(4922), 1, sym_comment, - STATE(5453), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7631), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [187778] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8418), 1, + ACTIONS(5598), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(1143), 1, - sym_class_body, - STATE(5136), 1, - sym_comment, - STATE(5454), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7625), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [187815] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8370), 1, - anon_sym_LBRACE, - STATE(4032), 1, - sym_class_body, - STATE(5137), 1, - sym_comment, - STATE(5307), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(8013), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [187852] = 4, + [184525] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5138), 1, + ACTIONS(8371), 1, + anon_sym_LBRACK, + STATE(4923), 1, sym_comment, - ACTIONS(5835), 9, + ACTIONS(5750), 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, - [187873] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(3001), 1, - anon_sym_RBRACE, - ACTIONS(7883), 1, - anon_sym_EQ, - ACTIONS(8208), 1, - anon_sym_COMMA, - STATE(5139), 1, - sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - STATE(7064), 1, - aux_sym_object_repeat1, - ACTIONS(5208), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [187904] = 4, + [184548] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5140), 1, + STATE(4924), 1, sym_comment, - ACTIONS(5699), 9, + ACTIONS(5750), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -413404,14 +396886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [187925] = 4, + [184569] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5141), 1, + STATE(4925), 1, sym_comment, - ACTIONS(5563), 9, + ACTIONS(5594), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -413421,14 +396903,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [187946] = 4, + [184590] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5142), 1, + STATE(4926), 1, sym_comment, - ACTIONS(5919), 9, + ACTIONS(5742), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -413438,37 +396920,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [187967] = 10, + [184611] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8430), 1, + ACTIONS(8447), 1, anon_sym_BANG, - ACTIONS(8432), 1, + ACTIONS(8449), 1, anon_sym_QMARK, - STATE(5143), 1, + STATE(4927), 1, sym_comment, - STATE(6197), 1, + STATE(5941), 1, sym_type_annotation, - STATE(7310), 1, + STATE(6431), 1, sym__initializer, - ACTIONS(7923), 3, + ACTIONS(7924), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188000] = 4, + [184644] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5144), 1, + STATE(4928), 1, sym_comment, - ACTIONS(5949), 9, + ACTIONS(5724), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -413478,138 +396960,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [188021] = 10, + [184665] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8434), 1, + ACTIONS(8451), 1, anon_sym_BANG, - ACTIONS(8436), 1, + ACTIONS(8453), 1, anon_sym_QMARK, - STATE(5145), 1, + STATE(4929), 1, sym_comment, - STATE(6260), 1, + STATE(5915), 1, sym_type_annotation, - STATE(7261), 1, + STATE(6448), 1, sym__initializer, - ACTIONS(7877), 3, + ACTIONS(8277), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188054] = 4, + [184698] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5146), 1, + ACTIONS(8455), 1, + anon_sym_EQ, + STATE(4930), 1, sym_comment, - ACTIONS(5703), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8431), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [188075] = 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [184721] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8264), 1, - anon_sym_AMP, - STATE(5147), 1, + ACTIONS(8457), 1, + anon_sym_EQ, + STATE(4931), 1, sym_comment, - ACTIONS(5733), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8441), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [188098] = 10, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [184744] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8438), 1, - anon_sym_BANG, - ACTIONS(8440), 1, - anon_sym_QMARK, - STATE(5148), 1, + STATE(4932), 1, sym_comment, - STATE(6016), 1, - sym_type_annotation, - STATE(6887), 1, - sym__initializer, - ACTIONS(7893), 3, + ACTIONS(5788), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [188131] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [184765] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8420), 1, - anon_sym_LBRACE, - STATE(1052), 1, - sym_class_body, - STATE(5149), 1, + ACTIONS(8459), 1, + anon_sym_EQ, + STATE(4933), 1, sym_comment, - STATE(5455), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7615), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [188168] = 5, + ACTIONS(8443), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [184788] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8442), 1, - anon_sym_LBRACK, - STATE(5150), 1, + ACTIONS(8461), 1, + anon_sym_EQ, + STATE(4934), 1, sym_comment, - ACTIONS(5703), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8445), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [188191] = 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [184811] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5151), 1, + STATE(4935), 1, sym_comment, - ACTIONS(5571), 9, + ACTIONS(6048), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -413619,110 +397089,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [188212] = 10, + [184832] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8444), 1, - anon_sym_BANG, - ACTIONS(8446), 1, - anon_sym_QMARK, - STATE(5152), 1, + STATE(4936), 1, sym_comment, - STATE(5950), 1, + STATE(5992), 1, sym_type_annotation, - STATE(6793), 1, + STATE(6389), 1, sym__initializer, - ACTIONS(7893), 3, + ACTIONS(7912), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7910), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188245] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8408), 1, - anon_sym_LBRACE, - STATE(1459), 1, - sym_class_body, - STATE(5153), 1, - sym_comment, - STATE(5265), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7393), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [188282] = 10, + [184863] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8448), 1, - anon_sym_BANG, - ACTIONS(8450), 1, - anon_sym_QMARK, - STATE(5154), 1, + STATE(4937), 1, sym_comment, - STATE(5957), 1, - sym_type_annotation, - STATE(6768), 1, - sym__initializer, - ACTIONS(7893), 3, + ACTIONS(6064), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [188315] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [184884] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, + ACTIONS(5654), 1, + anon_sym_QMARK_DOT, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(5549), 1, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(5557), 1, + ACTIONS(6124), 1, anon_sym_BQUOTE, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(7681), 1, + ACTIONS(7692), 1, anon_sym_LT, - STATE(2997), 1, - sym_template_string, - STATE(3880), 1, - sym_arguments, - STATE(4734), 1, - sym_type_arguments, - STATE(5155), 1, + STATE(4938), 1, sym_comment, - STATE(8103), 1, + STATE(6139), 1, + sym_type_arguments, + STATE(7787), 1, sym_optional_chain, - [188352] = 4, + STATE(3601), 2, + sym_template_string, + sym_arguments, + [184919] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5156), 1, + STATE(4939), 1, sym_comment, - ACTIONS(5689), 9, + ACTIONS(6066), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -413732,178 +397169,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [188373] = 10, + [184940] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2961), 1, + anon_sym_RBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7900), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(8233), 1, + anon_sym_COMMA, + STATE(4940), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(5210), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(8452), 1, - anon_sym_BANG, - ACTIONS(8454), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(5157), 1, + [184971] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8145), 1, + anon_sym_EQ, + STATE(4941), 1, sym_comment, - STATE(6018), 1, - sym_type_annotation, - STATE(6889), 1, + STATE(6067), 1, sym__initializer, - ACTIONS(7893), 3, + STATE(6080), 1, + sym_type_annotation, + ACTIONS(8113), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(8109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188406] = 5, + [185002] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8456), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5158), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8463), 1, + anon_sym_BANG, + ACTIONS(8465), 1, + anon_sym_QMARK, + STATE(4942), 1, sym_comment, - ACTIONS(4756), 8, - anon_sym_LBRACE, + STATE(5664), 1, + sym_type_annotation, + STATE(6472), 1, + sym__initializer, + ACTIONS(7916), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [188429] = 9, + anon_sym_SEMI, + [185035] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(8460), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8462), 1, - anon_sym_DOT, - ACTIONS(8464), 1, - anon_sym_on, - STATE(4262), 1, - sym_ui_object_initializer, - STATE(5159), 1, + STATE(4943), 1, sym_comment, - ACTIONS(8458), 4, - anon_sym_default, - anon_sym_readonly, - anon_sym_property, - anon_sym_required, - [188460] = 11, + STATE(5761), 1, + sym_type_annotation, + STATE(6504), 1, + sym__initializer, + ACTIONS(8469), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(8467), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185066] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5641), 1, - anon_sym_QMARK_DOT, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6097), 1, - anon_sym_DOT, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - ACTIONS(7681), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5160), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8243), 1, + anon_sym_LBRACE, + STATE(3933), 1, + sym_class_body, + STATE(4944), 1, sym_comment, - STATE(6545), 1, - sym_type_arguments, - STATE(7919), 1, - sym_optional_chain, - STATE(3722), 2, - sym_template_string, - sym_arguments, - [188495] = 5, + STATE(5063), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7585), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [185103] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8466), 1, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(7900), 1, anon_sym_EQ, - STATE(5161), 1, - sym_comment, - ACTIONS(4758), 8, - anon_sym_LBRACE, + ACTIONS(8233), 1, anon_sym_COMMA, + STATE(4945), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(5210), 4, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [188518] = 4, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [185134] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(8169), 1, + sym_identifier, + ACTIONS(8471), 1, + anon_sym_RBRACE, + STATE(4946), 1, + sym_comment, + STATE(6263), 1, + sym_string, + STATE(7139), 1, + sym__module_export_name, + STATE(7751), 1, + sym_export_specifier, + ACTIONS(8171), 2, + anon_sym_type, + anon_sym_typeof, + [185169] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5162), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8473), 1, + anon_sym_BANG, + ACTIONS(8475), 1, + anon_sym_QMARK, + STATE(4947), 1, sym_comment, - ACTIONS(5739), 9, + STATE(5870), 1, + sym_type_annotation, + STATE(6453), 1, + sym__initializer, + ACTIONS(7916), 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, + [185202] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, anon_sym_extends, - [188539] = 12, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8237), 1, + anon_sym_LBRACE, + STATE(1627), 1, + sym_class_body, + STATE(4948), 1, + sym_comment, + STATE(5015), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7349), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [185239] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8256), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(381), 1, + STATE(3530), 1, sym_class_body, - STATE(5163), 1, + STATE(4949), 1, sym_comment, - STATE(5506), 1, + STATE(5182), 1, sym_type_parameters, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7524), 1, + STATE(7549), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [188576] = 4, + [185276] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5164), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8271), 1, + anon_sym_LBRACE, + STATE(3888), 1, + sym_class_body, + STATE(4950), 1, sym_comment, - ACTIONS(8468), 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, - [188597] = 4, + STATE(5062), 1, + sym_type_parameters, + STATE(6769), 1, + sym_extends_clause, + STATE(7546), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [185313] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5165), 1, + STATE(4951), 1, sym_comment, - ACTIONS(5743), 9, + ACTIONS(2368), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -413913,304 +397444,598 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [188618] = 7, + [185334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8264), 1, - anon_sym_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE, - ACTIONS(8268), 1, - anon_sym_extends, - STATE(5166), 1, + STATE(4952), 1, sym_comment, - ACTIONS(5975), 6, + ACTIONS(2484), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [188645] = 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185355] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(3003), 1, + anon_sym_RBRACE, + ACTIONS(7900), 1, + anon_sym_EQ, + ACTIONS(8233), 1, + anon_sym_COMMA, + STATE(4953), 1, + sym_comment, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + STATE(7047), 1, + aux_sym_object_repeat1, + ACTIONS(5210), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3742), 1, - sym_class_body, - STATE(5167), 1, + anon_sym_QMARK, + [185386] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8477), 1, + anon_sym_BANG, + ACTIONS(8479), 1, + anon_sym_QMARK, + STATE(4954), 1, sym_comment, - STATE(5270), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(7766), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [188682] = 7, + STATE(5962), 1, + sym_type_annotation, + STATE(6418), 1, + sym__initializer, + ACTIONS(7916), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [185419] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8264), 1, - anon_sym_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE, - ACTIONS(8268), 1, - anon_sym_extends, - STATE(5168), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8481), 1, + anon_sym_BANG, + ACTIONS(8483), 1, + anon_sym_QMARK, + STATE(4955), 1, sym_comment, - ACTIONS(5747), 6, + STATE(6047), 1, + sym_type_annotation, + STATE(6393), 1, + sym__initializer, + ACTIONS(7916), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [188709] = 10, + [185452] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8470), 1, + ACTIONS(8485), 1, anon_sym_BANG, - ACTIONS(8472), 1, + ACTIONS(8487), 1, anon_sym_QMARK, - STATE(5169), 1, + STATE(4956), 1, sym_comment, - STATE(6273), 1, + STATE(5995), 1, sym_type_annotation, - STATE(7337), 1, + STATE(6407), 1, sym__initializer, - ACTIONS(7923), 3, + ACTIONS(7916), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188742] = 4, + [185485] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5170), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8489), 1, + anon_sym_BANG, + ACTIONS(8491), 1, + anon_sym_QMARK, + STATE(4957), 1, sym_comment, - ACTIONS(2476), 9, + STATE(6007), 1, + sym_type_annotation, + STATE(6406), 1, + sym__initializer, + ACTIONS(7916), 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, - [188763] = 4, + [185518] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5171), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8493), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8495), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8497), 1, + anon_sym_QMARK_COLON, + STATE(4958), 1, sym_comment, - ACTIONS(8474), 9, - anon_sym_EQ, + STATE(5922), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [185546] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8087), 1, + anon_sym_PIPE, + ACTIONS(8089), 1, + anon_sym_extends, + STATE(4959), 1, + sym_comment, + ACTIONS(8499), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [185572] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8501), 1, + anon_sym_enum, + STATE(4960), 1, + sym_comment, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6361), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [185604] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8503), 1, + anon_sym_enum, + STATE(4961), 1, + sym_comment, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6164), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [185636] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7870), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [188784] = 12, + ACTIONS(8493), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8495), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8497), 1, + anon_sym_QMARK_COLON, + STATE(4962), 1, + sym_comment, + STATE(6013), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [185664] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8505), 1, + anon_sym_enum, + STATE(4963), 1, + sym_comment, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6097), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [185696] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8332), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8493), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8495), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8497), 1, + anon_sym_QMARK_COLON, + STATE(4964), 1, + sym_comment, + STATE(5715), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [185724] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, anon_sym_LBRACE, - STATE(455), 1, - sym_class_body, - STATE(5172), 1, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8507), 1, + anon_sym_enum, + STATE(4965), 1, sym_comment, - STATE(5431), 1, - sym_type_parameters, - STATE(7061), 1, - sym_extends_clause, - STATE(8034), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [188821] = 10, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6327), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [185756] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8476), 1, - anon_sym_BANG, - ACTIONS(8478), 1, - anon_sym_QMARK, - STATE(5173), 1, + ACTIONS(8493), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8495), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8497), 1, + anon_sym_QMARK_COLON, + STATE(4966), 1, sym_comment, - STATE(6305), 1, + STATE(5710), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(7171), 1, - sym__initializer, - ACTIONS(7877), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188854] = 4, + [185784] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5174), 1, + ACTIONS(8511), 1, + anon_sym_DOT, + STATE(4967), 1, sym_comment, - ACTIONS(5771), 9, + ACTIONS(8509), 7, 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_PIPE_RBRACE, + [185806] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, anon_sym_LBRACK, + ACTIONS(8513), 1, + anon_sym_enum, + STATE(4968), 1, + sym_comment, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6233), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [185838] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8515), 1, + sym_escape_sequence, + ACTIONS(8517), 1, + anon_sym_BQUOTE, + ACTIONS(8519), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8521), 1, + sym__template_chars, + STATE(4969), 1, + sym_comment, + STATE(5378), 1, + aux_sym_template_string_repeat1, + STATE(5539), 1, + aux_sym_template_literal_type_repeat1, + STATE(6137), 1, + sym_template_substitution, + STATE(6984), 1, + sym_template_type, + [185872] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7870), 1, + anon_sym_COLON, + ACTIONS(8493), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8495), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8497), 1, + anon_sym_QMARK_COLON, + STATE(4970), 1, + sym_comment, + STATE(5933), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [185900] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8085), 1, anon_sym_AMP, + ACTIONS(8087), 1, anon_sym_PIPE, + ACTIONS(8089), 1, anon_sym_extends, - [188875] = 6, + STATE(4971), 1, + sym_comment, + ACTIONS(8523), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [185926] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8442), 1, - anon_sym_LBRACK, - STATE(5175), 1, - sym_comment, - ACTIONS(5703), 3, + ACTIONS(8085), 1, anon_sym_AMP, + ACTIONS(8087), 1, anon_sym_PIPE, + ACTIONS(8089), 1, anon_sym_extends, - ACTIONS(5755), 5, + STATE(4972), 1, + sym_comment, + ACTIONS(8525), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [188900] = 10, + anon_sym_PIPE_RBRACE, + [185952] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(8515), 1, + sym_escape_sequence, + ACTIONS(8519), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8521), 1, + sym__template_chars, + ACTIONS(8527), 1, + anon_sym_BQUOTE, + STATE(4973), 1, + sym_comment, + STATE(5507), 1, + aux_sym_template_string_repeat1, + STATE(5539), 1, + aux_sym_template_literal_type_repeat1, + STATE(6137), 1, + sym_template_substitution, + STATE(6984), 1, + sym_template_type, + [185986] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8480), 1, - anon_sym_BANG, - ACTIONS(8482), 1, - anon_sym_QMARK, - STATE(5176), 1, + ACTIONS(8493), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(8495), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(8497), 1, + anon_sym_QMARK_COLON, + STATE(4974), 1, sym_comment, - STATE(6293), 1, + STATE(5900), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(7139), 1, - sym__initializer, - ACTIONS(7877), 3, + [186014] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4275), 1, + sym_identifier, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8529), 1, + anon_sym_enum, + STATE(4975), 1, + sym_comment, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6257), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [186046] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8531), 1, + anon_sym_LBRACE, + ACTIONS(8533), 1, + anon_sym_DOT, + STATE(4976), 1, + sym_comment, + STATE(5945), 1, + sym_statement_block, + ACTIONS(2294), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [188933] = 5, + anon_sym_PIPE_RBRACE, + [186072] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8442), 1, - anon_sym_LBRACK, - STATE(5177), 1, - sym_comment, - ACTIONS(5765), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8531), 1, anon_sym_LBRACE, + ACTIONS(8535), 1, + anon_sym_DOT, + STATE(4977), 1, + sym_comment, + STATE(5945), 1, + sym_statement_block, + ACTIONS(2294), 5, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [188956] = 5, + anon_sym_PIPE_RBRACE, + [186098] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(8169), 1, + sym_identifier, + STATE(4978), 1, + sym_comment, + STATE(6263), 1, + sym_string, + STATE(7139), 1, + sym__module_export_name, + STATE(7751), 1, + sym_export_specifier, + ACTIONS(8171), 2, + anon_sym_type, + anon_sym_typeof, + [186130] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8484), 1, - anon_sym_extends, - STATE(5178), 1, + ACTIONS(7804), 1, + anon_sym_LPAREN, + ACTIONS(8537), 1, + anon_sym_DOT, + STATE(4979), 1, sym_comment, - ACTIONS(5759), 8, + STATE(5512), 1, + sym_arguments, + ACTIONS(8163), 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, - [188979] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8486), 1, - sym_escape_sequence, - ACTIONS(8488), 1, - anon_sym_BQUOTE, - ACTIONS(8490), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8492), 1, - sym__template_chars, - STATE(5179), 1, - sym_comment, - STATE(5728), 1, - aux_sym_template_string_repeat1, - STATE(6177), 1, - aux_sym_template_literal_type_repeat1, - STATE(6550), 1, - sym_template_substitution, - STATE(7022), 1, - sym_template_type, - [189013] = 5, + [186156] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8494), 1, + ACTIONS(8539), 1, anon_sym_EQ, - STATE(5180), 1, + STATE(4980), 1, sym_comment, - ACTIONS(8496), 7, + ACTIONS(8541), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -414218,76 +398043,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - [189035] = 4, + [186178] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5181), 1, - sym_comment, - ACTIONS(8496), 8, - sym__automatic_semicolon, + ACTIONS(8543), 1, anon_sym_EQ, + STATE(4981), 1, + sym_comment, + ACTIONS(6991), 7, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [189055] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8486), 1, - sym_escape_sequence, - ACTIONS(8490), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8492), 1, - sym__template_chars, - ACTIONS(8498), 1, - anon_sym_BQUOTE, - STATE(5182), 1, - sym_comment, - STATE(5709), 1, - aux_sym_template_string_repeat1, - STATE(6177), 1, - aux_sym_template_literal_type_repeat1, - STATE(6550), 1, - sym_template_substitution, - STATE(7022), 1, - sym_template_type, - [189089] = 11, + anon_sym_EQ_GT, + [186200] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8486), 1, + ACTIONS(8515), 1, sym_escape_sequence, - ACTIONS(8490), 1, + ACTIONS(8519), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8492), 1, + ACTIONS(8521), 1, sym__template_chars, - ACTIONS(8500), 1, + ACTIONS(8545), 1, anon_sym_BQUOTE, - STATE(5183), 1, + STATE(4982), 1, sym_comment, - STATE(5728), 1, + STATE(5507), 1, aux_sym_template_string_repeat1, - STATE(6177), 1, + STATE(5634), 1, aux_sym_template_literal_type_repeat1, - STATE(6550), 1, + STATE(6137), 1, sym_template_substitution, - STATE(7022), 1, + STATE(6984), 1, sym_template_type, - [189123] = 4, + [186234] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5184), 1, + STATE(4983), 1, sym_comment, - ACTIONS(7111), 8, + ACTIONS(8541), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -414296,4501 +398099,4449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [189143] = 11, + [186254] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8486), 1, - sym_escape_sequence, - ACTIONS(8490), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8492), 1, - sym__template_chars, - ACTIONS(8502), 1, - anon_sym_BQUOTE, - STATE(5185), 1, + ACTIONS(8223), 1, + anon_sym_AMP, + ACTIONS(8225), 1, + anon_sym_PIPE, + ACTIONS(8227), 1, + anon_sym_extends, + STATE(4984), 1, sym_comment, - STATE(5728), 1, - aux_sym_template_string_repeat1, - STATE(5891), 1, - aux_sym_template_literal_type_repeat1, - STATE(6550), 1, - sym_template_substitution, - STATE(7022), 1, - sym_template_type, - [189177] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, + ACTIONS(8167), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8504), 1, - anon_sym_enum, - STATE(5186), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6394), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [189209] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_COMMA, + anon_sym_SEMI, + [186280] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8506), 1, - anon_sym_enum, - STATE(5187), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(4985), 1, sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6535), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [189241] = 10, + ACTIONS(6991), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [186300] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4273), 1, - sym_identifier, ACTIONS(4275), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, anon_sym_LBRACK, - ACTIONS(8508), 1, + ACTIONS(8547), 1, anon_sym_enum, - STATE(5188), 1, + STATE(4986), 1, sym_comment, - STATE(5354), 1, + STATE(5128), 1, sym__destructuring_pattern, - STATE(6425), 1, + STATE(6236), 1, sym_variable_declarator, - STATE(5358), 2, + STATE(5126), 2, sym_object_pattern, sym_array_pattern, - [189273] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8510), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(8512), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(8514), 1, - anon_sym_QMARK_COLON, - STATE(5189), 1, - sym_comment, - STATE(6176), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [189301] = 5, + [186332] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8516), 1, - anon_sym_EQ, - STATE(5190), 1, + ACTIONS(8515), 1, + sym_escape_sequence, + ACTIONS(8519), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8521), 1, + sym__template_chars, + ACTIONS(8549), 1, + anon_sym_BQUOTE, + STATE(4987), 1, sym_comment, - ACTIONS(7111), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [189323] = 8, + STATE(5507), 1, + aux_sym_template_string_repeat1, + STATE(5539), 1, + aux_sym_template_literal_type_repeat1, + STATE(6137), 1, + sym_template_substitution, + STATE(6984), 1, + sym_template_type, + [186366] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8510), 1, + ACTIONS(8493), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(8512), 1, + ACTIONS(8495), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(8514), 1, + ACTIONS(8497), 1, anon_sym_QMARK_COLON, - STATE(5191), 1, + STATE(4988), 1, sym_comment, - STATE(6298), 4, + STATE(5666), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [189351] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8162), 1, - anon_sym_BANG, - STATE(5192), 1, - sym_comment, - STATE(5762), 1, - sym_type_annotation, - STATE(6942), 1, - sym__initializer, - ACTIONS(8160), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189381] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(8144), 1, - sym_identifier, - STATE(5193), 1, - sym_comment, - STATE(6566), 1, - sym_string, - STATE(6660), 1, - sym__module_export_name, - STATE(7646), 1, - sym_export_specifier, - ACTIONS(8146), 2, - anon_sym_type, - anon_sym_typeof, - [189413] = 8, + [186394] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8510), 1, + ACTIONS(8493), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(8512), 1, + ACTIONS(8495), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(8514), 1, + ACTIONS(8497), 1, anon_sym_QMARK_COLON, - STATE(5194), 1, + STATE(4989), 1, sym_comment, - STATE(5770), 4, + STATE(5828), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [189441] = 8, + [186422] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8510), 1, + ACTIONS(8493), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(8512), 1, + ACTIONS(8495), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(8514), 1, + ACTIONS(8497), 1, anon_sym_QMARK_COLON, - STATE(5195), 1, + STATE(4990), 1, sym_comment, - STATE(6296), 4, + STATE(5869), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [189469] = 10, + [186450] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4273), 1, - sym_identifier, ACTIONS(4275), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, anon_sym_LBRACK, - ACTIONS(8518), 1, + ACTIONS(8551), 1, anon_sym_enum, - STATE(5196), 1, + STATE(4991), 1, sym_comment, - STATE(5354), 1, + STATE(5128), 1, sym__destructuring_pattern, - STATE(6448), 1, + STATE(6220), 1, sym_variable_declarator, - STATE(5358), 2, + STATE(5126), 2, sym_object_pattern, sym_array_pattern, - [189501] = 8, + [186482] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8510), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(8512), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(8514), 1, - anon_sym_QMARK_COLON, - STATE(5197), 1, + ACTIONS(8515), 1, + sym_escape_sequence, + ACTIONS(8519), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8521), 1, + sym__template_chars, + ACTIONS(8553), 1, + anon_sym_BQUOTE, + STATE(4992), 1, sym_comment, - STATE(5771), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [189529] = 8, + STATE(5378), 1, + aux_sym_template_string_repeat1, + STATE(5539), 1, + aux_sym_template_literal_type_repeat1, + STATE(6137), 1, + sym_template_substitution, + STATE(6984), 1, + sym_template_type, + [186516] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - ACTIONS(8510), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(8512), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(8514), 1, - anon_sym_QMARK_COLON, - STATE(5198), 1, + ACTIONS(8515), 1, + sym_escape_sequence, + ACTIONS(8519), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8521), 1, + sym__template_chars, + ACTIONS(8555), 1, + anon_sym_BQUOTE, + STATE(4993), 1, sym_comment, - STATE(5749), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [189557] = 8, + STATE(5507), 1, + aux_sym_template_string_repeat1, + STATE(5539), 1, + aux_sym_template_literal_type_repeat1, + STATE(6137), 1, + sym_template_substitution, + STATE(6984), 1, + sym_template_type, + [186550] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8515), 1, + sym_escape_sequence, + ACTIONS(8519), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8521), 1, + sym__template_chars, + ACTIONS(8557), 1, + anon_sym_BQUOTE, + STATE(4994), 1, + sym_comment, + STATE(5507), 1, + aux_sym_template_string_repeat1, + STATE(5539), 1, + aux_sym_template_literal_type_repeat1, + STATE(6137), 1, + sym_template_substitution, + STATE(6984), 1, + sym_template_type, + [186584] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8510), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(8512), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(8514), 1, - anon_sym_QMARK_COLON, - STATE(5199), 1, + ACTIONS(8111), 1, + anon_sym_BANG, + STATE(4995), 1, sym_comment, - STATE(5975), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + STATE(6080), 1, sym_type_annotation, - [189585] = 10, - ACTIONS(3), 1, + STATE(6703), 1, + sym__initializer, + ACTIONS(8109), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186614] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(8515), 1, + sym_escape_sequence, + ACTIONS(8519), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8521), 1, + sym__template_chars, + ACTIONS(8559), 1, + anon_sym_BQUOTE, + STATE(4996), 1, + sym_comment, + STATE(5507), 1, + aux_sym_template_string_repeat1, + STATE(5539), 1, + aux_sym_template_literal_type_repeat1, + STATE(6137), 1, + sym_template_substitution, + STATE(6984), 1, + sym_template_type, + [186648] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8249), 1, anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8520), 1, - anon_sym_enum, - STATE(5200), 1, + STATE(3941), 1, + sym_class_body, + STATE(4997), 1, sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6462), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [189617] = 10, + STATE(6769), 1, + sym_extends_clause, + STATE(7319), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [186679] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4273), 1, + ACTIONS(4403), 1, + anon_sym_DQUOTE, + ACTIONS(4405), 1, + anon_sym_SQUOTE, + ACTIONS(8561), 1, sym_identifier, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8522), 1, - anon_sym_enum, - STATE(5201), 1, + ACTIONS(8563), 1, + anon_sym_DOT, + STATE(1078), 1, + sym_nested_identifier, + STATE(1306), 1, + sym_string, + STATE(1516), 1, + sym__module, + STATE(4998), 1, sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6340), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [189649] = 8, + [186710] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8510), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(8512), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(8514), 1, - anon_sym_QMARK_COLON, - STATE(5202), 1, + STATE(4999), 1, sym_comment, - STATE(5946), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + STATE(5803), 1, sym_type_annotation, - [189677] = 8, + STATE(6761), 1, + sym__initializer, + ACTIONS(8565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186737] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, anon_sym_COLON, - ACTIONS(8510), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(8512), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(8514), 1, - anon_sym_QMARK_COLON, - STATE(5203), 1, + STATE(5000), 1, sym_comment, - STATE(5949), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + STATE(6022), 1, sym_type_annotation, - [189705] = 7, + STATE(7008), 1, + sym__initializer, + ACTIONS(8068), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [186764] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, - anon_sym_extends, - STATE(5204), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5001), 1, sym_comment, - ACTIONS(8524), 5, + STATE(6024), 1, + sym_type_annotation, + STATE(7056), 1, + sym__initializer, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [189731] = 7, + [186791] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, + ACTIONS(8567), 1, anon_sym_LBRACE, - ACTIONS(8528), 1, + ACTIONS(8569), 1, + anon_sym_LT, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8573), 1, + anon_sym_LBRACE_PIPE, + STATE(4085), 1, + sym_object_type, + STATE(5002), 1, + sym_comment, + STATE(6070), 1, + sym_type_parameters, + STATE(6906), 1, + sym_extends_type_clause, + [186822] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4395), 1, + anon_sym_DQUOTE, + ACTIONS(4397), 1, + anon_sym_SQUOTE, + ACTIONS(8575), 1, + sym_identifier, + ACTIONS(8577), 1, anon_sym_DOT, - STATE(5205), 1, + STATE(3833), 1, + sym_nested_identifier, + STATE(3890), 1, + sym_string, + STATE(4056), 1, + sym__module, + STATE(5003), 1, sym_comment, - STATE(5874), 1, - sym_statement_block, - ACTIONS(2303), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [189757] = 7, + [186853] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, + ACTIONS(8205), 1, anon_sym_extends, - STATE(5206), 1, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8251), 1, + anon_sym_LBRACE, + STATE(1397), 1, + sym_class_body, + STATE(5004), 1, sym_comment, - ACTIONS(8530), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [189783] = 7, + STATE(6769), 1, + sym_extends_clause, + STATE(7548), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [186884] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, - anon_sym_LBRACE, - ACTIONS(8532), 1, - anon_sym_DOT, - STATE(5207), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5005), 1, sym_comment, - STATE(5874), 1, - sym_statement_block, - ACTIONS(2303), 5, + STATE(5809), 1, + sym_type_annotation, + STATE(6752), 1, + sym__initializer, + ACTIONS(8565), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [189809] = 11, + [186911] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8486), 1, - sym_escape_sequence, - ACTIONS(8490), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8492), 1, - sym__template_chars, - ACTIONS(8534), 1, - anon_sym_BQUOTE, - STATE(5208), 1, + ACTIONS(8579), 1, + anon_sym_COMMA, + ACTIONS(8581), 1, + anon_sym_RBRACE, + STATE(5006), 1, sym_comment, - STATE(5728), 1, - aux_sym_template_string_repeat1, - STATE(6177), 1, - aux_sym_template_literal_type_repeat1, - STATE(6550), 1, - sym_template_substitution, - STATE(7022), 1, - sym_template_type, - [189843] = 7, + STATE(6517), 1, + aux_sym_object_repeat1, + ACTIONS(5210), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [186936] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8080), 1, - anon_sym_PIPE, - ACTIONS(8082), 1, + ACTIONS(8205), 1, anon_sym_extends, - STATE(5209), 1, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8261), 1, + anon_sym_LBRACE, + STATE(1750), 1, + sym_class_body, + STATE(5007), 1, sym_comment, - ACTIONS(8536), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [189869] = 10, + STATE(6769), 1, + sym_extends_clause, + STATE(7454), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [186967] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4273), 1, + ACTIONS(39), 1, + anon_sym_import, + ACTIONS(8583), 1, sym_identifier, - ACTIONS(4275), 1, + STATE(2966), 1, + sym__type_query_subscript_expression, + STATE(2967), 1, + sym__type_query_member_expression, + STATE(3278), 1, + sym__type_query_instantiation_expression, + STATE(3279), 1, + sym__type_query_call_expression, + STATE(5008), 1, + sym_comment, + STATE(6117), 1, + sym_import, + [186998] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8247), 1, anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8538), 1, - anon_sym_enum, - STATE(5210), 1, + STATE(4076), 1, + sym_class_body, + STATE(5009), 1, sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6400), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [189901] = 11, + STATE(6769), 1, + sym_extends_clause, + STATE(7264), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [187029] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8486), 1, - sym_escape_sequence, - ACTIONS(8490), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8492), 1, - sym__template_chars, - ACTIONS(8540), 1, - anon_sym_BQUOTE, - STATE(5211), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8261), 1, + anon_sym_LBRACE, + STATE(1762), 1, + sym_class_body, + STATE(5010), 1, sym_comment, - STATE(5728), 1, - aux_sym_template_string_repeat1, - STATE(6177), 1, - aux_sym_template_literal_type_repeat1, - STATE(6550), 1, - sym_template_substitution, - STATE(7022), 1, - sym_template_type, - [189935] = 7, + STATE(6769), 1, + sym_extends_clause, + STATE(7223), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [187060] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7833), 1, - anon_sym_LPAREN, - ACTIONS(8542), 1, - anon_sym_DOT, - STATE(5212), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5011), 1, sym_comment, - STATE(5580), 1, - sym_arguments, - ACTIONS(8190), 5, + STATE(6027), 1, + sym_type_annotation, + STATE(7080), 1, + sym__initializer, + ACTIONS(8068), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [189961] = 7, + [187087] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8264), 1, - anon_sym_AMP, - ACTIONS(8266), 1, - anon_sym_PIPE, - ACTIONS(8268), 1, - anon_sym_extends, - STATE(5213), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5012), 1, sym_comment, - ACTIONS(8110), 5, + STATE(6028), 1, + sym_type_annotation, + STATE(7105), 1, + sym__initializer, + ACTIONS(8068), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [189987] = 11, + [187114] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8486), 1, - sym_escape_sequence, - ACTIONS(8490), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8492), 1, - sym__template_chars, - ACTIONS(8544), 1, - anon_sym_BQUOTE, - STATE(5214), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8249), 1, + anon_sym_LBRACE, + STATE(3918), 1, + sym_class_body, + STATE(5013), 1, sym_comment, - STATE(5728), 1, - aux_sym_template_string_repeat1, - STATE(6177), 1, - aux_sym_template_literal_type_repeat1, - STATE(6550), 1, - sym_template_substitution, - STATE(7022), 1, - sym_template_type, - [190021] = 5, + STATE(6769), 1, + sym_extends_clause, + STATE(7143), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [187145] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8548), 1, - anon_sym_DOT, - STATE(5215), 1, - sym_comment, - ACTIONS(8546), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [190043] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4273), 1, - sym_identifier, - ACTIONS(4275), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8247), 1, anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8550), 1, - anon_sym_enum, - STATE(5216), 1, + STATE(4051), 1, + sym_class_body, + STATE(5014), 1, sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6562), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [190075] = 11, + STATE(6769), 1, + sym_extends_clause, + STATE(7164), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [187176] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8486), 1, - sym_escape_sequence, - ACTIONS(8490), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8492), 1, - sym__template_chars, - ACTIONS(8552), 1, - anon_sym_BQUOTE, - STATE(5217), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8237), 1, + anon_sym_LBRACE, + STATE(1610), 1, + sym_class_body, + STATE(5015), 1, sym_comment, - STATE(5709), 1, - aux_sym_template_string_repeat1, - STATE(6177), 1, - aux_sym_template_literal_type_repeat1, - STATE(6550), 1, - sym_template_substitution, - STATE(7022), 1, - sym_template_type, - [190109] = 8, + STATE(6769), 1, + sym_extends_clause, + STATE(7470), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [187207] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5218), 1, + STATE(5016), 1, sym_comment, - STATE(5938), 1, + STATE(5899), 1, sym_type_annotation, - STATE(6621), 1, - sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8585), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [190136] = 8, + anon_sym_PIPE_RBRACE, + [187230] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5219), 1, + STATE(5017), 1, sym_comment, - STATE(5932), 1, + STATE(5908), 1, sym_type_annotation, - STATE(7158), 1, - sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8587), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [190163] = 8, + anon_sym_PIPE_RBRACE, + [187253] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5220), 1, + STATE(5018), 1, sym_comment, - STATE(6263), 1, + STATE(5771), 1, sym_type_annotation, - STATE(7245), 1, + STATE(6871), 1, sym__initializer, - ACTIONS(8072), 3, + ACTIONS(8565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190190] = 8, + [187280] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5221), 1, + STATE(5019), 1, sym_comment, - STATE(6209), 1, + STATE(5698), 1, sym_type_annotation, - STATE(7042), 1, + STATE(7035), 1, sym__initializer, - ACTIONS(8072), 3, + ACTIONS(8064), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190217] = 8, + [187307] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5222), 1, + STATE(5020), 1, sym_comment, - STATE(5746), 1, + STATE(6064), 1, sym_type_annotation, - STATE(6909), 1, + STATE(6971), 1, sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190244] = 6, + [187334] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5223), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5021), 1, sym_comment, - STATE(7720), 1, - sym_statement_block, - ACTIONS(8556), 5, + STATE(6056), 1, + sym_type_annotation, + STATE(6962), 1, + sym__initializer, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [190267] = 8, + [187361] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5224), 1, + STATE(5022), 1, sym_comment, - STATE(6203), 1, + STATE(5932), 1, sym_type_annotation, - STATE(7346), 1, + STATE(6439), 1, sym__initializer, ACTIONS(8072), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190294] = 9, + [187388] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8589), 1, sym_identifier, - STATE(5225), 1, + ACTIONS(8591), 1, + anon_sym_STAR, + ACTIONS(8593), 1, + anon_sym_LPAREN, + STATE(5023), 1, sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6400), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [190323] = 8, + STATE(5340), 1, + sym_formal_parameters, + STATE(7541), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [187419] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5226), 1, + STATE(5024), 1, sym_comment, - STATE(5753), 1, + STATE(6061), 1, sym_type_annotation, - STATE(6915), 1, + STATE(6912), 1, sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190350] = 10, - ACTIONS(3), 1, + [187446] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5025), 1, + sym_comment, + STATE(6069), 1, + sym_type_annotation, + STATE(6908), 1, + sym__initializer, + ACTIONS(8068), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187473] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(8560), 1, - sym_identifier, - ACTIONS(8562), 1, - anon_sym_DOT, - STATE(5227), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5026), 1, sym_comment, - STATE(5943), 1, - sym_nested_identifier, - STATE(6516), 1, - sym_string, - STATE(8006), 1, - sym__module, - [190381] = 10, + STATE(5988), 1, + sym_type_annotation, + STATE(6494), 1, + sym__initializer, + ACTIONS(8062), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187500] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8564), 1, - anon_sym_LT, - ACTIONS(8566), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8568), 1, - anon_sym_LBRACE_PIPE, - STATE(5228), 1, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(3751), 1, + sym_class_body, + STATE(5027), 1, sym_comment, - STATE(5963), 1, + STATE(6769), 1, + sym_extends_clause, + STATE(7480), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [187531] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8595), 1, + sym_identifier, + ACTIONS(8597), 1, + anon_sym_STAR, + STATE(5028), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(7801), 1, sym_type_parameters, - STATE(7209), 1, - sym_extends_type_clause, - STATE(7824), 1, - sym_object_type, - [190412] = 6, + STATE(7858), 1, + sym__call_signature, + [187562] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5229), 1, - sym_comment, - STATE(7714), 1, - sym_statement_block, - ACTIONS(8570), 5, + ACTIONS(8599), 1, sym__automatic_semicolon, + STATE(5029), 1, + sym_comment, + ACTIONS(2374), 6, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [190435] = 8, + [187583] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5230), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8231), 1, + anon_sym_LBRACE, + STATE(502), 1, + sym_class_body, + STATE(5030), 1, sym_comment, - STATE(6228), 1, - sym_type_annotation, - STATE(7318), 1, - sym__initializer, - ACTIONS(8072), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190462] = 8, + STATE(6769), 1, + sym_extends_clause, + STATE(7327), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [187614] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5231), 1, + STATE(5031), 1, sym_comment, - STATE(6189), 1, + STATE(5640), 1, sym_type_annotation, - STATE(7345), 1, + STATE(7117), 1, sym__initializer, - ACTIONS(8072), 3, + ACTIONS(8056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190489] = 6, + [187641] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8601), 1, anon_sym_LBRACE, - STATE(5232), 1, - sym_comment, - STATE(8135), 1, - sym_statement_block, - ACTIONS(8572), 5, - sym__automatic_semicolon, + ACTIONS(8603), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [190512] = 8, + ACTIONS(8605), 1, + anon_sym_DOT, + ACTIONS(8607), 1, + anon_sym_LT, + ACTIONS(8609), 1, + anon_sym_LBRACE_PIPE, + STATE(5032), 1, + sym_comment, + STATE(6241), 1, + aux_sym_extends_type_clause_repeat1, + STATE(6624), 1, + sym_type_arguments, + [187672] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5233), 1, + STATE(5033), 1, sym_comment, - STATE(6226), 1, + STATE(6088), 1, sym_type_annotation, - STATE(7323), 1, + STATE(6437), 1, sym__initializer, - ACTIONS(8072), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190539] = 8, + [187699] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5234), 1, + STATE(5034), 1, sym_comment, - STATE(6307), 1, + STATE(5999), 1, sym_type_annotation, - STATE(7108), 1, + STATE(6410), 1, sym__initializer, - ACTIONS(8072), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190566] = 10, + [187726] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8326), 1, + ACTIONS(8237), 1, anon_sym_LBRACE, - STATE(3023), 1, + STATE(1645), 1, sym_class_body, - STATE(5235), 1, + STATE(5035), 1, + sym_comment, + STATE(6769), 1, + sym_extends_clause, + STATE(7414), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [187757] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8611), 1, + sym_identifier, + ACTIONS(8613), 1, + anon_sym_STAR, + STATE(5036), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(7541), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [187788] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(39), 1, + anon_sym_import, + ACTIONS(8615), 1, + sym_identifier, + STATE(2594), 1, + sym__type_query_member_expression, + STATE(2595), 1, + sym__type_query_subscript_expression, + STATE(2638), 1, + sym__type_query_instantiation_expression, + STATE(2705), 1, + sym__type_query_call_expression, + STATE(5037), 1, + sym_comment, + STATE(6363), 1, + sym_import, + [187819] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5038), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7750), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [190597] = 10, + STATE(5585), 1, + sym_type_annotation, + STATE(7059), 1, + sym__initializer, + ACTIONS(8056), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187846] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8574), 1, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8617), 1, sym_identifier, - ACTIONS(8576), 1, + ACTIONS(8619), 1, anon_sym_STAR, - ACTIONS(8578), 1, - anon_sym_LPAREN, - STATE(5236), 1, + STATE(5039), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(8018), 1, - sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [190628] = 6, + STATE(7858), 1, + sym__call_signature, + [187877] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5237), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5040), 1, sym_comment, - STATE(7523), 1, - sym_statement_block, - ACTIONS(8570), 5, + STATE(5624), 1, + sym_type_annotation, + STATE(7076), 1, + sym__initializer, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [190651] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, - sym_identifier, - STATE(5238), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6442), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [190680] = 10, + [187904] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8370), 1, - anon_sym_LBRACE, - STATE(4031), 1, - sym_class_body, - STATE(5239), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5041), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7991), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [190711] = 6, + STATE(5544), 1, + sym_type_annotation, + STATE(7011), 1, + sym__initializer, + ACTIONS(8056), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187931] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5240), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5042), 1, sym_comment, - STATE(7520), 1, - sym_statement_block, - ACTIONS(8556), 5, + STATE(5542), 1, + sym_type_annotation, + STATE(7010), 1, + sym__initializer, + ACTIONS(8056), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [190734] = 8, + [187958] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5241), 1, + STATE(5043), 1, sym_comment, - STATE(6266), 1, + STATE(5551), 1, sym_type_annotation, - STATE(7242), 1, + STATE(6933), 1, sym__initializer, - ACTIONS(8072), 3, + ACTIONS(8056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190761] = 5, + [187985] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8580), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5242), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5044), 1, sym_comment, - ACTIONS(4699), 6, + STATE(5594), 1, + sym_type_annotation, + STATE(6929), 1, + sym__initializer, + ACTIONS(8056), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [190782] = 8, + anon_sym_SEMI, + [188012] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5243), 1, + STATE(5045), 1, sym_comment, - STATE(5988), 1, + STATE(5717), 1, sym_type_annotation, - STATE(6815), 1, + STATE(6880), 1, sym__initializer, - ACTIONS(8583), 3, + ACTIONS(8056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190809] = 9, + [188039] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4543), 1, + ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8585), 1, - sym_identifier, - ACTIONS(8587), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - STATE(3110), 1, - sym_arguments, - STATE(5244), 1, + ACTIONS(8621), 1, + sym_identifier, + ACTIONS(8623), 1, + anon_sym_STAR, + STATE(5046), 1, sym_comment, - STATE(7830), 1, - sym_type_arguments, - ACTIONS(8589), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [190838] = 8, + STATE(5340), 1, + sym_formal_parameters, + STATE(7541), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [188070] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5245), 1, + STATE(5047), 1, sym_comment, - STATE(5989), 1, + STATE(5779), 1, sym_type_annotation, - STATE(6814), 1, + STATE(6838), 1, sym__initializer, - ACTIONS(8583), 3, + ACTIONS(8565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190865] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, - sym_identifier, - STATE(5246), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6535), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [190894] = 6, + [188097] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5247), 1, + STATE(5048), 1, sym_comment, - STATE(6039), 1, + STATE(5776), 1, sym_type_annotation, - ACTIONS(8591), 5, + STATE(6701), 1, + sym__initializer, + ACTIONS(8056), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [190917] = 10, + [188124] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(39), 1, - anon_sym_import, + ACTIONS(2275), 1, + anon_sym_LT, ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8625), 1, sym_identifier, - STATE(4575), 1, - sym__type_query_member_expression, - STATE(4583), 1, - sym__type_query_subscript_expression, - STATE(4803), 1, - sym__type_query_call_expression, - STATE(4920), 1, - sym__type_query_instantiation_expression, - STATE(5248), 1, + ACTIONS(8627), 1, + anon_sym_STAR, + STATE(5049), 1, sym_comment, - STATE(6554), 1, - sym_import, - [190948] = 9, + STATE(5340), 1, + sym_formal_parameters, + STATE(7801), 1, + sym_type_parameters, + STATE(7858), 1, + sym__call_signature, + [188155] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, + ACTIONS(4387), 1, + anon_sym_DQUOTE, + ACTIONS(4389), 1, + anon_sym_SQUOTE, + ACTIONS(8629), 1, sym_identifier, - STATE(5249), 1, + ACTIONS(8631), 1, + anon_sym_DOT, + STATE(3740), 1, + sym_nested_identifier, + STATE(3807), 1, + sym_string, + STATE(4033), 1, + sym__module, + STATE(5050), 1, sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6581), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [190977] = 6, + [188186] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8569), 1, + anon_sym_LT, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8633), 1, anon_sym_LBRACE, - STATE(5250), 1, + ACTIONS(8635), 1, + anon_sym_LBRACE_PIPE, + STATE(4016), 1, + sym_object_type, + STATE(5051), 1, sym_comment, - STATE(8077), 1, - sym_statement_block, - ACTIONS(8595), 5, + STATE(5886), 1, + sym_type_parameters, + STATE(6512), 1, + sym_extends_type_clause, + [188217] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5052), 1, + sym_comment, + STATE(5825), 1, + sym_type_annotation, + ACTIONS(8637), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [191000] = 10, + [188240] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8274), 1, + ACTIONS(8215), 1, anon_sym_LBRACE, - STATE(4085), 1, + STATE(1737), 1, sym_class_body, - STATE(5251), 1, + STATE(5053), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8041), 1, + STATE(7509), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191031] = 6, + [188271] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8251), 1, anon_sym_LBRACE, - STATE(5252), 1, + STATE(1505), 1, + sym_class_body, + STATE(5054), 1, sym_comment, - STATE(7538), 1, - sym_statement_block, - ACTIONS(8572), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [191054] = 10, + STATE(6769), 1, + sym_extends_clause, + STATE(7861), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [188302] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1569), 1, - anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8564), 1, - anon_sym_LT, - ACTIONS(8566), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8597), 1, - anon_sym_LBRACE_PIPE, - STATE(5253), 1, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8271), 1, + anon_sym_LBRACE, + STATE(3886), 1, + sym_class_body, + STATE(5055), 1, sym_comment, - STATE(6207), 1, - sym_object_type, - STATE(6221), 1, - sym_type_parameters, - STATE(7325), 1, - sym_extends_type_clause, - [191085] = 4, + STATE(6769), 1, + sym_extends_clause, + STATE(7535), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [188333] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5254), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8243), 1, + anon_sym_LBRACE, + STATE(3943), 1, + sym_class_body, + STATE(5056), 1, sym_comment, - ACTIONS(6322), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [191104] = 4, + STATE(6769), 1, + sym_extends_clause, + STATE(7577), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [188364] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5255), 1, - sym_comment, - ACTIONS(6917), 7, + ACTIONS(7862), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(7870), 1, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [191123] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5256), 1, + STATE(5057), 1, sym_comment, - ACTIONS(6338), 7, + STATE(5925), 1, + sym_type_annotation, + STATE(6442), 1, + sym__initializer, + ACTIONS(8068), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [191142] = 6, + [188391] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5257), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5058), 1, sym_comment, - STATE(7463), 1, - sym_statement_block, - ACTIONS(8599), 5, + STATE(5927), 1, + sym_type_annotation, + STATE(6452), 1, + sym__initializer, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [191165] = 10, + [188418] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8639), 1, + sym_identifier, + ACTIONS(8641), 1, + anon_sym_STAR, + STATE(5059), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(7541), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [188449] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8326), 1, + ACTIONS(8215), 1, anon_sym_LBRACE, - STATE(3102), 1, + STATE(1739), 1, sym_class_body, - STATE(5258), 1, + STATE(5060), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7952), 1, + STATE(7584), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191196] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [188480] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(5259), 1, - sym_comment, - ACTIONS(8601), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [191215] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5260), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8643), 1, + sym_identifier, + ACTIONS(8645), 1, + anon_sym_STAR, + STATE(5061), 1, sym_comment, - ACTIONS(4699), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [191234] = 10, + STATE(5340), 1, + sym_formal_parameters, + STATE(7801), 1, + sym_type_parameters, + STATE(7858), 1, + sym__call_signature, + [188511] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8326), 1, + ACTIONS(8271), 1, anon_sym_LBRACE, - STATE(2981), 1, + STATE(3895), 1, sym_class_body, - STATE(5261), 1, + STATE(5062), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7687), 1, + STATE(7645), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191265] = 10, + [188542] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(8243), 1, anon_sym_LBRACE, - STATE(3597), 1, + STATE(3919), 1, sym_class_body, - STATE(5262), 1, + STATE(5063), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7596), 1, + STATE(7669), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191296] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [188573] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, - sym_identifier, - STATE(5263), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(7155), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [191325] = 10, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(8603), 1, - sym_identifier, - ACTIONS(8605), 1, - anon_sym_DOT, - STATE(5207), 1, - sym_nested_identifier, - STATE(5264), 1, + ACTIONS(6756), 1, + sym__automatic_semicolon, + STATE(5064), 1, sym_comment, - STATE(5502), 1, - sym_string, - STATE(6244), 1, - sym__module, - [191356] = 10, + ACTIONS(2456), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [188594] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8408), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(1377), 1, + STATE(3421), 1, sym_class_body, - STATE(5265), 1, + STATE(5065), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7367), 1, + STATE(7529), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191387] = 8, + [188625] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5266), 1, + ACTIONS(8203), 1, + anon_sym_LBRACE, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + STATE(5066), 1, sym_comment, - STATE(6152), 1, - sym_type_annotation, - STATE(7319), 1, - sym__initializer, - ACTIONS(8059), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191414] = 10, + STATE(6769), 1, + sym_extends_clause, + STATE(7401), 1, + sym_class_heritage, + STATE(7936), 1, + sym_class_body, + STATE(7968), 1, + sym_implements_clause, + [188656] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(39), 1, + anon_sym_import, + ACTIONS(8647), 1, + sym_identifier, + STATE(4396), 1, + sym__type_query_member_expression, + STATE(4397), 1, + sym__type_query_subscript_expression, + STATE(4663), 1, + sym__type_query_call_expression, + STATE(4906), 1, + sym__type_query_instantiation_expression, + STATE(5067), 1, + sym_comment, + STATE(6325), 1, + sym_import, + [188687] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8360), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(5267), 1, + STATE(5068), 1, sym_comment, - STATE(6134), 1, - sym_class_body, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7374), 1, + STATE(6772), 1, + sym_class_body, + STATE(7687), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191445] = 6, + [188718] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5268), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8649), 1, + sym_identifier, + ACTIONS(8651), 1, + anon_sym_STAR, + STATE(5069), 1, sym_comment, - STATE(7540), 1, - sym_statement_block, - ACTIONS(8595), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [191468] = 10, + STATE(5340), 1, + sym_formal_parameters, + STATE(7541), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [188749] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8569), 1, + anon_sym_LT, + ACTIONS(8571), 1, anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(8653), 1, anon_sym_LBRACE, - STATE(3517), 1, - sym_class_body, - STATE(5269), 1, + ACTIONS(8655), 1, + anon_sym_LBRACE_PIPE, + STATE(1401), 1, + sym_object_type, + STATE(5070), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7379), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [191499] = 10, + STATE(5799), 1, + sym_type_parameters, + STATE(6798), 1, + sym_extends_type_clause, + [188780] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8657), 1, + sym_identifier, + ACTIONS(8659), 1, + anon_sym_STAR, + STATE(5071), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(7801), 1, + sym_type_parameters, + STATE(7858), 1, + sym__call_signature, + [188811] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(8213), 1, anon_sym_LBRACE, - STATE(3598), 1, + STATE(480), 1, sym_class_body, - STATE(5270), 1, + STATE(5072), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7667), 1, + STATE(7760), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191530] = 10, + [188842] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8408), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(1323), 1, - sym_class_body, - STATE(5271), 1, + STATE(5073), 1, sym_comment, - STATE(7061), 1, + STATE(5650), 1, + sym_class_body, + STATE(6769), 1, sym_extends_clause, - STATE(7384), 1, + STATE(7710), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191561] = 10, + [188873] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(3552), 1, + STATE(3424), 1, sym_class_body, - STATE(5272), 1, + STATE(5074), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7381), 1, + STATE(7836), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191592] = 10, + [188904] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8326), 1, + ACTIONS(8221), 1, anon_sym_LBRACE, - STATE(3051), 1, + STATE(1394), 1, sym_class_body, - STATE(5273), 1, + STATE(5075), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7576), 1, + STATE(7695), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191623] = 10, + [188935] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8203), 1, + anon_sym_LBRACE, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5274), 1, + STATE(5076), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7297), 1, - sym_class_body, - STATE(7575), 1, + STATE(7540), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7797), 1, + sym_class_body, + STATE(7968), 1, sym_implements_clause, - [191654] = 10, + [188966] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8218), 1, + ACTIONS(8213), 1, anon_sym_LBRACE, - STATE(1851), 1, + STATE(474), 1, sym_class_body, - STATE(5275), 1, + STATE(5077), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8154), 1, + STATE(7689), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191685] = 10, + [188997] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(3525), 1, - sym_class_body, - STATE(5276), 1, + STATE(5078), 1, sym_comment, - STATE(7061), 1, + STATE(5740), 1, + sym_class_body, + STATE(6769), 1, sym_extends_clause, - STATE(7620), 1, + STATE(7644), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191716] = 6, + [189028] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8661), 1, + sym_identifier, + ACTIONS(8663), 1, + anon_sym_STAR, + STATE(5079), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(7541), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [189059] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4277), 1, anon_sym_LBRACE, - STATE(5277), 1, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, + sym_identifier, + STATE(5080), 1, sym_comment, - STATE(7795), 1, - sym_statement_block, - ACTIONS(8607), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [191739] = 6, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(6111), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [189088] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8221), 1, anon_sym_LBRACE, - STATE(5278), 1, + STATE(1420), 1, + sym_class_body, + STATE(5081), 1, sym_comment, - STATE(7998), 1, - sym_statement_block, - ACTIONS(8609), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [191762] = 10, + STATE(6769), 1, + sym_extends_clause, + STATE(7629), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [189119] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8352), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(5279), 1, + STATE(5082), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7422), 1, + STATE(6859), 1, sym_class_body, - STATE(7555), 1, + STATE(7919), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191793] = 6, + [189150] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5280), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5083), 1, sym_comment, - STATE(7549), 1, - sym_statement_block, - ACTIONS(8607), 5, + STATE(6054), 1, + sym_type_annotation, + ACTIONS(8667), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [191816] = 6, + [189173] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(5281), 1, + STATE(2891), 1, + sym_class_body, + STATE(5084), 1, sym_comment, - STATE(8144), 1, - sym_statement_block, - ACTIONS(8611), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [191839] = 6, + STATE(6769), 1, + sym_extends_clause, + STATE(7915), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [189204] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5282), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8669), 1, + sym_identifier, + ACTIONS(8671), 1, + anon_sym_STAR, + STATE(5085), 1, sym_comment, - STATE(8146), 1, - sym_statement_block, - ACTIONS(8613), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [191862] = 6, + STATE(5340), 1, + sym_formal_parameters, + STATE(7801), 1, + sym_type_parameters, + STATE(7858), 1, + sym__call_signature, + [189235] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5283), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5086), 1, sym_comment, - STATE(7929), 1, - sym_statement_block, - ACTIONS(8615), 5, + STATE(5876), 1, + sym_type_annotation, + STATE(6530), 1, + sym__initializer, + ACTIONS(8673), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [191885] = 8, + [189262] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5284), 1, + STATE(5087), 1, sym_comment, - STATE(5823), 1, + STATE(5991), 1, sym_type_annotation, - STATE(7063), 1, + STATE(6653), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8070), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191912] = 10, + [189289] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(3528), 1, + STATE(3734), 1, sym_class_body, - STATE(5285), 1, + STATE(5088), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7547), 1, + STATE(7147), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [191943] = 10, + [189320] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5286), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8675), 1, + anon_sym_COLON, + ACTIONS(8677), 1, + anon_sym_QMARK, + STATE(5089), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7359), 1, - sym_class_body, - STATE(7495), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [191974] = 10, + STATE(5340), 1, + sym_formal_parameters, + STATE(7580), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [189351] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8360), 1, + ACTIONS(8231), 1, anon_sym_LBRACE, - STATE(5287), 1, - sym_comment, - STATE(6048), 1, + STATE(494), 1, sym_class_body, - STATE(7061), 1, + STATE(5090), 1, + sym_comment, + STATE(6769), 1, sym_extends_clause, - STATE(7388), 1, + STATE(7891), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [192005] = 9, + [189382] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(8679), 1, sym_identifier, - STATE(5288), 1, + ACTIONS(8681), 1, + anon_sym_DOT, + STATE(4976), 1, + sym_nested_identifier, + STATE(5091), 1, sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6382), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [192034] = 10, + STATE(5254), 1, + sym_string, + STATE(5842), 1, + sym__module, + [189413] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1575), 1, + anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8569), 1, + anon_sym_LT, + ACTIONS(8571), 1, anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(1823), 1, - sym_class_body, - STATE(5289), 1, + ACTIONS(8683), 1, + anon_sym_LBRACE_PIPE, + STATE(5092), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7528), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [192065] = 10, + STATE(5693), 1, + sym_type_parameters, + STATE(5946), 1, + sym_object_type, + STATE(7068), 1, + sym_extends_type_clause, + [189444] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8352), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(5290), 1, + STATE(3544), 1, + sym_class_body, + STATE(5093), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7425), 1, - sym_class_body, - STATE(7480), 1, + STATE(7738), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [192096] = 9, + [189475] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, anon_sym_LBRACK, - ACTIONS(8558), 1, + ACTIONS(8685), 1, sym_identifier, - STATE(5291), 1, - sym_comment, - STATE(5354), 1, + STATE(4866), 1, sym__destructuring_pattern, - STATE(6340), 1, + STATE(5094), 1, + sym_comment, + STATE(6290), 1, sym_variable_declarator, - STATE(5358), 2, + STATE(5126), 2, sym_object_pattern, sym_array_pattern, - [192125] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5292), 1, - sym_comment, - STATE(7465), 1, - sym_statement_block, - ACTIONS(8617), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [192148] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8619), 1, - sym__automatic_semicolon, - STATE(5293), 1, - sym_comment, - ACTIONS(2336), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [192169] = 9, + [189504] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, anon_sym_LBRACK, - ACTIONS(8558), 1, + ACTIONS(8687), 1, sym_identifier, - STATE(5294), 1, - sym_comment, - STATE(5354), 1, + STATE(4941), 1, sym__destructuring_pattern, - STATE(6347), 1, + STATE(5095), 1, + sym_comment, + STATE(6299), 1, sym_variable_declarator, - STATE(5358), 2, + STATE(5126), 2, sym_object_pattern, sym_array_pattern, - [192198] = 10, + [189533] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3508), 1, + sym_class_body, + STATE(5096), 1, + sym_comment, + STATE(6769), 1, + sym_extends_clause, + STATE(7238), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [189564] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8621), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(8097), 1, sym_identifier, - ACTIONS(8623), 1, - anon_sym_STAR, - STATE(5295), 1, + ACTIONS(8115), 1, + anon_sym_type, + STATE(5097), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(8018), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [192229] = 8, + STATE(6263), 1, + sym_string, + STATE(7313), 1, + sym__import_identifier, + STATE(8365), 1, + sym__module_export_name, + [189595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5296), 1, + STATE(5098), 1, sym_comment, - STATE(5899), 1, - sym_type_annotation, - STATE(7127), 1, - sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8689), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [192256] = 6, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [189614] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5297), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8245), 1, + anon_sym_LBRACE, + STATE(1334), 1, + sym_class_body, + STATE(5099), 1, sym_comment, - STATE(5905), 1, - sym_type_annotation, - ACTIONS(8625), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [192279] = 6, + STATE(6769), 1, + sym_extends_clause, + STATE(7211), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [189645] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(5298), 1, + STATE(5100), 1, sym_comment, - STATE(7859), 1, - sym_statement_block, - ACTIONS(8599), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [192302] = 6, + STATE(5978), 1, + sym_class_body, + STATE(6769), 1, + sym_extends_clause, + STATE(7199), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [189676] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(5299), 1, + STATE(2911), 1, + sym_class_body, + STATE(5101), 1, sym_comment, - STATE(7698), 1, - sym_statement_block, - ACTIONS(8617), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [192325] = 6, + STATE(6769), 1, + sym_extends_clause, + STATE(7623), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [189707] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8627), 1, - anon_sym_EQ, - ACTIONS(8629), 1, - anon_sym_DOT, - STATE(5300), 1, + STATE(5102), 1, sym_comment, - ACTIONS(8546), 5, + ACTIONS(8445), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [192348] = 10, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [189726] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8631), 1, - anon_sym_COLON, - ACTIONS(8633), 1, - anon_sym_QMARK, - STATE(5301), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3432), 1, + sym_class_body, + STATE(5103), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(7563), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [192379] = 9, + STATE(6769), 1, + sym_extends_clause, + STATE(7194), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [189757] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(8635), 1, - anon_sym_EQ, - ACTIONS(8639), 1, - anon_sym_QMARK, - STATE(5302), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8245), 1, + anon_sym_LBRACE, + STATE(1323), 1, + sym_class_body, + STATE(5104), 1, sym_comment, - STATE(6390), 1, - sym_type_annotation, - STATE(7453), 1, - sym__initializer, - ACTIONS(8637), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [192408] = 8, + STATE(6769), 1, + sym_extends_clause, + STATE(7175), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [189788] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5303), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8219), 1, + anon_sym_LBRACE, + STATE(5105), 1, sym_comment, - STATE(5758), 1, - sym_type_annotation, - STATE(6934), 1, - sym__initializer, - ACTIONS(8070), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192435] = 8, + STATE(5906), 1, + sym_class_body, + STATE(6769), 1, + sym_extends_clause, + STATE(7173), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [189819] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5304), 1, + STATE(5106), 1, sym_comment, - STATE(5759), 1, + STATE(5982), 1, sym_type_annotation, - STATE(6938), 1, + STATE(6754), 1, sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192462] = 8, + [189846] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5305), 1, + STATE(5107), 1, sym_comment, - STATE(5959), 1, + STATE(5943), 1, sym_type_annotation, - STATE(6775), 1, + STATE(6786), 1, sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192489] = 8, + [189873] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5306), 1, + STATE(5108), 1, sym_comment, - STATE(6102), 1, - sym_type_annotation, - STATE(6770), 1, - sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8443), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [192516] = 10, + anon_sym_DOT, + [189892] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4423), 1, + anon_sym_DQUOTE, + ACTIONS(4425), 1, + anon_sym_SQUOTE, + ACTIONS(8691), 1, + sym_identifier, + ACTIONS(8693), 1, + anon_sym_DOT, + STATE(1040), 1, + sym_nested_identifier, + STATE(1061), 1, + sym_string, + STATE(1302), 1, + sym__module, + STATE(5109), 1, + sym_comment, + [189923] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8569), 1, + anon_sym_LT, + ACTIONS(8571), 1, anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8370), 1, + ACTIONS(8695), 1, anon_sym_LBRACE, - STATE(4038), 1, - sym_class_body, - STATE(5307), 1, + ACTIONS(8697), 1, + anon_sym_LBRACE_PIPE, + STATE(1283), 1, + sym_object_type, + STATE(5110), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(8078), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [192547] = 10, + STATE(5633), 1, + sym_type_parameters, + STATE(7099), 1, + sym_extends_type_clause, + [189954] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8699), 1, + anon_sym_EQ, + ACTIONS(8701), 1, + anon_sym_DOT, + STATE(5111), 1, + sym_comment, + ACTIONS(8509), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [189977] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8272), 1, + ACTIONS(8257), 1, anon_sym_LBRACE, - STATE(3609), 1, + STATE(398), 1, sym_class_body, - STATE(5308), 1, + STATE(5112), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7674), 1, + STATE(7258), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [192578] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8641), 1, - sym_identifier, - ACTIONS(8643), 1, - anon_sym_STAR, - STATE(5309), 1, - sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(7679), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [192609] = 10, + [190008] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8218), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(1883), 1, + STATE(1218), 1, sym_class_body, - STATE(5310), 1, + STATE(5113), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7942), 1, + STATE(7272), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [192640] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(39), 1, - anon_sym_import, - ACTIONS(8645), 1, - sym_identifier, - STATE(4512), 1, - sym__type_query_member_expression, - STATE(4513), 1, - sym__type_query_subscript_expression, - STATE(4584), 1, - sym__type_query_call_expression, - STATE(4630), 1, - sym__type_query_instantiation_expression, - STATE(5311), 1, - sym_comment, - STATE(6314), 1, - sym_import, - [192671] = 8, + [190039] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5312), 1, + STATE(5114), 1, sym_comment, - STATE(5865), 1, + STATE(6020), 1, sym_type_annotation, - STATE(6676), 1, + STATE(6730), 1, sym__initializer, - ACTIONS(8074), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192698] = 10, + [190066] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8244), 1, + ACTIONS(8287), 1, anon_sym_LBRACE, - STATE(1523), 1, + STATE(1237), 1, sym_class_body, - STATE(5313), 1, + STATE(5115), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7672), 1, + STATE(7279), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [192729] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5314), 1, - sym_comment, - STATE(6120), 1, - sym_type_annotation, - STATE(6761), 1, - sym__initializer, - ACTIONS(8070), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192756] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5315), 1, - sym_comment, - STATE(6149), 1, - sym_type_annotation, - STATE(6760), 1, - sym__initializer, - ACTIONS(8070), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192783] = 5, + [190097] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8647), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, sym_identifier, - STATE(5316), 1, + ACTIONS(8705), 1, + anon_sym_STAR, + STATE(5116), 1, sym_comment, - ACTIONS(5569), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [192804] = 8, + STATE(5340), 1, + sym_formal_parameters, + STATE(7541), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [190128] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5317), 1, + STATE(5117), 1, sym_comment, - STATE(5873), 1, - sym_type_annotation, - STATE(7113), 1, - sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8707), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [192831] = 4, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [190147] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5318), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8257), 1, + anon_sym_LBRACE, + STATE(390), 1, + sym_class_body, + STATE(5118), 1, sym_comment, - ACTIONS(2352), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [192850] = 4, + STATE(6769), 1, + sym_extends_clause, + STATE(7284), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [190178] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5319), 1, + STATE(5119), 1, sym_comment, - ACTIONS(8649), 7, + ACTIONS(8441), 7, 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_COLON, - anon_sym_PIPE_RBRACE, - [192869] = 8, + anon_sym_DOT, + [190197] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5320), 1, + STATE(5120), 1, sym_comment, - STATE(5868), 1, - sym_type_annotation, - STATE(7112), 1, - sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8431), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [192896] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, - sym_identifier, - STATE(5321), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6394), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [192925] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4417), 1, - anon_sym_DQUOTE, - ACTIONS(4419), 1, - anon_sym_SQUOTE, - ACTIONS(8651), 1, - sym_identifier, - ACTIONS(8653), 1, anon_sym_DOT, - STATE(1017), 1, - sym_nested_identifier, - STATE(1112), 1, - sym_string, - STATE(1290), 1, - sym__module, - STATE(5322), 1, - sym_comment, - [192956] = 8, + [190216] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5323), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(2847), 1, + sym_class_body, + STATE(5121), 1, sym_comment, - STATE(6157), 1, - sym_type_annotation, - STATE(6826), 1, - sym__initializer, - ACTIONS(8070), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192983] = 8, + STATE(6769), 1, + sym_extends_clause, + STATE(7395), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [190247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5324), 1, + STATE(5122), 1, sym_comment, - STATE(6216), 1, - sym_type_annotation, - STATE(6739), 1, - sym__initializer, - ACTIONS(8070), 3, + ACTIONS(4760), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [193010] = 4, + anon_sym_DOT, + [190266] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5325), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8709), 1, + sym_identifier, + ACTIONS(8711), 1, + anon_sym_STAR, + STATE(5123), 1, sym_comment, - ACTIONS(2336), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [193029] = 10, + STATE(5340), 1, + sym_formal_parameters, + STATE(7801), 1, + sym_type_parameters, + STATE(7858), 1, + sym__call_signature, + [190297] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8564), 1, - anon_sym_LT, - ACTIONS(8566), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8655), 1, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8285), 1, anon_sym_LBRACE, - ACTIONS(8657), 1, - anon_sym_LBRACE_PIPE, - STATE(1263), 1, - sym_object_type, - STATE(5326), 1, + STATE(1206), 1, + sym_class_body, + STATE(5124), 1, sym_comment, - STATE(6106), 1, - sym_type_parameters, - STATE(7292), 1, - sym_extends_type_clause, - [193060] = 8, + STATE(6769), 1, + sym_extends_clause, + STATE(7289), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [190328] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5327), 1, + STATE(5125), 1, sym_comment, - STATE(6256), 1, - sym_type_annotation, - STATE(6727), 1, - sym__initializer, - ACTIONS(8070), 3, + ACTIONS(4762), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [193087] = 8, + anon_sym_DOT, + [190347] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5328), 1, + STATE(5126), 1, sym_comment, - STATE(6259), 1, - sym_type_annotation, - STATE(6726), 1, - sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8239), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [193114] = 10, + anon_sym_COLON, + [190366] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8274), 1, + ACTIONS(8287), 1, anon_sym_LBRACE, - STATE(4056), 1, + STATE(1290), 1, sym_class_body, - STATE(5329), 1, + STATE(5127), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8091), 1, + STATE(7293), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [193145] = 8, + [190397] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5330), 1, + STATE(5128), 1, sym_comment, - STATE(5755), 1, + STATE(6080), 1, sym_type_annotation, - STATE(6598), 1, + STATE(6711), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8109), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193172] = 8, + [190424] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5331), 1, + STATE(5129), 1, sym_comment, - STATE(5768), 1, + STATE(6044), 1, sym_type_annotation, - STATE(6965), 1, + STATE(6717), 1, sym__initializer, - ACTIONS(8659), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193199] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, - sym_identifier, - STATE(5332), 1, - sym_comment, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(6420), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [193228] = 8, + [190451] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5333), 1, + STATE(5130), 1, sym_comment, - STATE(5934), 1, - sym_type_annotation, - STATE(7188), 1, - sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8343), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [193255] = 8, + anon_sym_COLON, + [190470] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(124), 1, + anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5334), 1, + ACTIONS(8569), 1, + anon_sym_LT, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8713), 1, + anon_sym_LBRACE_PIPE, + STATE(5131), 1, sym_comment, - STATE(5784), 1, - sym_type_annotation, - STATE(6606), 1, - sym__initializer, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193282] = 8, + STATE(5706), 1, + sym_type_parameters, + STATE(7025), 1, + sym_extends_type_clause, + STATE(7463), 1, + sym_object_type, + [190501] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(8715), 1, + sym_identifier, + ACTIONS(8717), 1, + anon_sym_DOT, + STATE(5132), 1, + sym_comment, + STATE(5665), 1, + sym_nested_identifier, + STATE(6162), 1, + sym_string, + STATE(7250), 1, + sym__module, + [190532] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5335), 1, + STATE(5133), 1, sym_comment, - STATE(6285), 1, + STATE(6050), 1, sym_type_annotation, - STATE(6710), 1, + STATE(7129), 1, sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193309] = 8, + [190559] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5336), 1, + STATE(5134), 1, sym_comment, - STATE(5936), 1, + STATE(6059), 1, sym_type_annotation, - STATE(7226), 1, + STATE(6716), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193336] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [190586] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, - anon_sym_COMMA, - ACTIONS(8663), 1, - anon_sym_RBRACE, - STATE(5337), 1, - sym_comment, - STATE(7093), 1, - aux_sym_object_repeat1, - ACTIONS(5208), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [193361] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5338), 1, + ACTIONS(4381), 1, + anon_sym_DQUOTE, + ACTIONS(4383), 1, + anon_sym_SQUOTE, + ACTIONS(8719), 1, + sym_identifier, + ACTIONS(8721), 1, + anon_sym_DOT, + STATE(1010), 1, + sym_nested_identifier, + STATE(1014), 1, + sym_string, + STATE(1174), 1, + sym__module, + STATE(5135), 1, sym_comment, - STATE(5791), 1, - sym_type_annotation, - STATE(6622), 1, - sym__initializer, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193388] = 8, + [190617] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5339), 1, + ACTIONS(8569), 1, + anon_sym_LT, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8723), 1, + anon_sym_LBRACE, + ACTIONS(8725), 1, + anon_sym_LBRACE_PIPE, + STATE(1168), 1, + sym_object_type, + STATE(5136), 1, sym_comment, - STATE(5803), 1, - sym_type_annotation, - STATE(6640), 1, - sym__initializer, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193415] = 8, + STATE(5574), 1, + sym_type_parameters, + STATE(7050), 1, + sym_extends_type_clause, + [190648] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5340), 1, + STATE(5137), 1, sym_comment, - STATE(6287), 1, - sym_type_annotation, - STATE(6708), 1, - sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8341), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [193442] = 5, + anon_sym_COLON, + [190667] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8665), 1, - sym__automatic_semicolon, - STATE(5341), 1, + STATE(5138), 1, sym_comment, - ACTIONS(2448), 6, + ACTIONS(7008), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [193463] = 8, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [190686] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8017), 1, - anon_sym_EQ, - STATE(5342), 1, + STATE(5139), 1, sym_comment, - STATE(6467), 1, - sym_constraint, - STATE(7712), 1, - sym_default_type, - ACTIONS(8022), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(8667), 2, + ACTIONS(8339), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [193490] = 10, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [190705] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8336), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(1641), 1, + STATE(3395), 1, sym_class_body, - STATE(5343), 1, + STATE(5140), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7810), 1, + STATE(7727), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [193521] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5344), 1, - sym_comment, - STATE(5828), 1, - sym_type_annotation, - STATE(6652), 1, - sym__initializer, - ACTIONS(8043), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193548] = 8, + [190736] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5345), 1, + STATE(5141), 1, sym_comment, - STATE(5877), 1, + STATE(6082), 1, sym_type_annotation, - STATE(6666), 1, + STATE(6704), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193575] = 9, + [190763] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, anon_sym_LBRACK, - ACTIONS(8558), 1, + ACTIONS(8665), 1, sym_identifier, - STATE(5346), 1, - sym_comment, - STATE(5354), 1, + STATE(5128), 1, sym__destructuring_pattern, - STATE(6425), 1, + STATE(5142), 1, + sym_comment, + STATE(6220), 1, sym_variable_declarator, - STATE(5358), 2, + STATE(5126), 2, sym_object_pattern, sym_array_pattern, - [193604] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5347), 1, - sym_comment, - STATE(6250), 1, - sym_class_body, - STATE(7061), 1, - sym_extends_clause, - STATE(7815), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [193635] = 8, + [190792] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5348), 1, + STATE(5143), 1, sym_comment, - STATE(5904), 1, + STATE(5718), 1, sym_type_annotation, - STATE(6616), 1, + STATE(6869), 1, sym__initializer, - ACTIONS(8057), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193662] = 8, + [190819] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5349), 1, + STATE(5144), 1, sym_comment, - STATE(5896), 1, + STATE(5602), 1, sym_type_annotation, - STATE(6681), 1, + STATE(7064), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193689] = 8, + [190846] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5350), 1, + STATE(5145), 1, sym_comment, - STATE(5897), 1, + STATE(6085), 1, sym_type_annotation, - STATE(6683), 1, + STATE(6695), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193716] = 10, + [190873] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8236), 1, + ACTIONS(8317), 1, anon_sym_LBRACE, - STATE(1778), 1, + STATE(364), 1, sym_class_body, - STATE(5351), 1, + STATE(5146), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7973), 1, + STATE(7365), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [193747] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8669), 1, - anon_sym_LBRACE, - ACTIONS(8671), 1, - anon_sym_COMMA, - ACTIONS(8673), 1, - anon_sym_DOT, - ACTIONS(8675), 1, - anon_sym_LT, - ACTIONS(8677), 1, - anon_sym_LBRACE_PIPE, - STATE(5352), 1, - sym_comment, - STATE(6481), 1, - aux_sym_extends_type_clause_repeat1, - STATE(7309), 1, - sym_type_arguments, - [193778] = 8, + [190904] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5353), 1, + STATE(5147), 1, sym_comment, - STATE(5912), 1, + STATE(5563), 1, sym_type_annotation, - STATE(6653), 1, + STATE(7031), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193805] = 8, + [190931] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5354), 1, + STATE(5148), 1, sym_comment, - STATE(5762), 1, + STATE(5553), 1, sym_type_annotation, - STATE(6948), 1, + STATE(7024), 1, sym__initializer, - ACTIONS(8160), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193832] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, - sym_identifier, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(5355), 1, - sym_comment, - STATE(6438), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [193861] = 10, + [190958] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8244), 1, + ACTIONS(8335), 1, anon_sym_LBRACE, - STATE(1624), 1, + STATE(1027), 1, sym_class_body, - STATE(5356), 1, + STATE(5149), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7759), 1, + STATE(7379), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [193892] = 8, + [190989] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5357), 1, + STATE(5150), 1, sym_comment, - STATE(5855), 1, + STATE(6042), 1, sym_type_annotation, - STATE(7089), 1, + STATE(6691), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193919] = 4, + [191016] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5358), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5151), 1, sym_comment, - ACTIONS(8468), 7, + STATE(6008), 1, + sym_type_annotation, + STATE(6686), 1, + sym__initializer, + ACTIONS(8060), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [193938] = 10, + [191043] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8210), 1, - anon_sym_LBRACE, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - STATE(524), 1, + ACTIONS(8337), 1, + anon_sym_LBRACE, + STATE(1128), 1, sym_class_body, - STATE(5359), 1, + STATE(5152), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7899), 1, + STATE(7385), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [193969] = 8, + [191074] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5360), 1, + STATE(5153), 1, sym_comment, - STATE(5935), 1, + STATE(6004), 1, sym_type_annotation, - STATE(6763), 1, + STATE(6672), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193996] = 8, + [191101] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, + sym_identifier, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5154), 1, + sym_comment, + STATE(6225), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [191130] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5361), 1, + STATE(5155), 1, sym_comment, - STATE(5850), 1, + STATE(5993), 1, sym_type_annotation, - STATE(7119), 1, + STATE(6671), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194023] = 4, + [191157] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5362), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8317), 1, + anon_sym_LBRACE, + STATE(355), 1, + sym_class_body, + STATE(5156), 1, sym_comment, - ACTIONS(6306), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [194042] = 8, + STATE(6769), 1, + sym_extends_clause, + STATE(7390), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [191188] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5363), 1, + STATE(5157), 1, sym_comment, - STATE(5942), 1, + STATE(5604), 1, sym_type_annotation, - STATE(7205), 1, + STATE(7020), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194069] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8332), 1, - anon_sym_LBRACE, - STATE(462), 1, - sym_class_body, - STATE(5364), 1, - sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7885), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [194100] = 8, + [191215] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5365), 1, + STATE(5158), 1, sym_comment, - STATE(5952), 1, + STATE(5646), 1, sym_type_annotation, - STATE(7208), 1, + STATE(6909), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194127] = 10, + [191242] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8336), 1, + ACTIONS(8335), 1, anon_sym_LBRACE, - STATE(1618), 1, + STATE(1031), 1, sym_class_body, - STATE(5366), 1, + STATE(5159), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7888), 1, + STATE(7394), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [194158] = 10, + [191273] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4513), 1, + anon_sym_LT, + ACTIONS(8727), 1, + sym_identifier, + ACTIONS(8729), 1, + anon_sym_LPAREN, + STATE(2870), 1, + sym_arguments, + STATE(5160), 1, + sym_comment, + STATE(7189), 1, + sym_type_arguments, + ACTIONS(8731), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [191302] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8256), 1, + ACTIONS(8337), 1, anon_sym_LBRACE, - STATE(403), 1, + STATE(1211), 1, sym_class_body, - STATE(5367), 1, + STATE(5161), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(7515), 1, + STATE(7398), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [194189] = 8, + [191333] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5368), 1, + STATE(5162), 1, sym_comment, - STATE(5911), 1, + STATE(5702), 1, sym_type_annotation, - STATE(6745), 1, + STATE(6891), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194216] = 8, + [191360] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5369), 1, + STATE(5163), 1, sym_comment, - STATE(5948), 1, + STATE(5898), 1, sym_type_annotation, - STATE(6750), 1, + STATE(6451), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194243] = 8, + [191387] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(39), 1, + anon_sym_import, + ACTIONS(8733), 1, + sym_identifier, + STATE(4346), 1, + sym__type_query_member_expression, + STATE(4360), 1, + sym__type_query_subscript_expression, + STATE(4580), 1, + sym__type_query_call_expression, + STATE(4688), 1, + sym__type_query_instantiation_expression, + STATE(5164), 1, + sym_comment, + STATE(6246), 1, + sym_import, + [191418] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5370), 1, + STATE(5165), 1, sym_comment, - STATE(5840), 1, + STATE(5844), 1, sym_type_annotation, - STATE(7077), 1, + STATE(6642), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194270] = 8, + [191445] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5371), 1, + STATE(5166), 1, sym_comment, - STATE(5835), 1, + STATE(5846), 1, sym_type_annotation, - STATE(7076), 1, + STATE(6638), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194297] = 8, + [191472] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5372), 1, + STATE(5167), 1, sym_comment, - STATE(5780), 1, + STATE(5866), 1, sym_type_annotation, - STATE(6888), 1, + STATE(6644), 1, sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194324] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, - sym_identifier, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(5373), 1, - sym_comment, - STATE(6448), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [194353] = 8, + [191499] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5374), 1, + STATE(5168), 1, sym_comment, - STATE(5848), 1, + STATE(5737), 1, sym_type_annotation, - STATE(6875), 1, + STATE(6824), 1, sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194380] = 7, + [191526] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(8681), 1, - anon_sym_DOT, - STATE(5375), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5169), 1, sym_comment, - STATE(6441), 1, - sym_arguments, - ACTIONS(8679), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [194405] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6779), 1, + STATE(5843), 1, + sym_type_annotation, + STATE(6800), 1, + sym__initializer, + ACTIONS(8058), 3, sym__automatic_semicolon, - STATE(5376), 1, - sym_comment, - ACTIONS(2448), 6, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [194426] = 8, + anon_sym_SEMI, + [191553] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5377), 1, + STATE(5170), 1, sym_comment, - STATE(5958), 1, + STATE(5860), 1, sym_type_annotation, - STATE(6772), 1, + STATE(6635), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194453] = 8, + [191580] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5378), 1, + STATE(5171), 1, sym_comment, - STATE(5947), 1, - sym_type_annotation, - STATE(6776), 1, - sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8735), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [194480] = 8, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [191599] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(8012), 1, anon_sym_EQ, - ACTIONS(7863), 1, + STATE(5172), 1, + sym_comment, + STATE(6321), 1, + sym_constraint, + STATE(7883), 1, + sym_default_type, + ACTIONS(8017), 2, anon_sym_COLON, - STATE(5379), 1, + anon_sym_extends, + ACTIONS(8737), 2, + anon_sym_COMMA, + anon_sym_GT, + [191626] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(5173), 1, sym_comment, - STATE(5880), 1, - sym_type_annotation, - STATE(6667), 1, - sym__initializer, - ACTIONS(8070), 3, + STATE(7405), 1, + sym_statement_block, + ACTIONS(8741), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [194507] = 10, + anon_sym_PIPE_RBRACE, + [191649] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8743), 1, + sym__automatic_semicolon, + STATE(5174), 1, + sym_comment, + ACTIONS(2374), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [191670] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, + ACTIONS(8205), 1, anon_sym_extends, - ACTIONS(8214), 1, + ACTIONS(8207), 1, anon_sym_implements, - ACTIONS(8326), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(3874), 1, + STATE(2934), 1, sym_class_body, - STATE(5380), 1, + STATE(5175), 1, sym_comment, - STATE(7061), 1, + STATE(6769), 1, sym_extends_clause, - STATE(8127), 1, + STATE(7273), 1, sym_class_heritage, - STATE(8325), 1, + STATE(7968), 1, sym_implements_clause, - [194538] = 8, + [191701] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5381), 1, + STATE(5176), 1, sym_comment, - STATE(5966), 1, + STATE(5790), 1, sym_type_annotation, - STATE(6784), 1, + STATE(6627), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194565] = 8, + [191728] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5382), 1, + STATE(5177), 1, sym_comment, - STATE(5968), 1, + STATE(5785), 1, sym_type_annotation, - STATE(6786), 1, + STATE(6622), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194592] = 9, + [191755] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, anon_sym_LBRACK, - ACTIONS(8558), 1, + ACTIONS(8665), 1, sym_identifier, - STATE(5354), 1, + STATE(5128), 1, sym__destructuring_pattern, - STATE(5383), 1, + STATE(5178), 1, sym_comment, - STATE(6562), 1, + STATE(6236), 1, sym_variable_declarator, - STATE(5358), 2, + STATE(5126), 2, sym_object_pattern, sym_array_pattern, - [194621] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4543), 1, - anon_sym_LT, - ACTIONS(8585), 1, - sym_identifier, - ACTIONS(8683), 1, - anon_sym_LPAREN, - STATE(3588), 1, - sym_arguments, - STATE(5384), 1, - sym_comment, - STATE(7760), 1, - sym_type_arguments, - ACTIONS(8589), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [194650] = 8, + [191784] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5385), 1, + STATE(5179), 1, sym_comment, - STATE(6037), 1, + STATE(5763), 1, sym_type_annotation, - STATE(6926), 1, + STATE(6617), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194677] = 8, + [191811] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5386), 1, + STATE(5180), 1, sym_comment, - STATE(5984), 1, + STATE(5964), 1, sym_type_annotation, - STATE(6813), 1, + STATE(6647), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194704] = 8, + [191838] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5387), 1, + STATE(5181), 1, sym_comment, - STATE(5822), 1, + STATE(6006), 1, sym_type_annotation, - STATE(7060), 1, + STATE(6679), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194731] = 8, + [191865] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3519), 1, + sym_class_body, + STATE(5182), 1, + sym_comment, + STATE(6769), 1, + sym_extends_clause, + STATE(7600), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [191896] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5388), 1, + STATE(5183), 1, sym_comment, - STATE(6300), 1, + STATE(5751), 1, sym_type_annotation, - STATE(6697), 1, + STATE(6611), 1, sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194758] = 10, + [191923] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(4297), 1, + anon_sym_DQUOTE, + ACTIONS(4299), 1, + anon_sym_SQUOTE, + ACTIONS(8745), 1, + sym_identifier, + ACTIONS(8747), 1, + anon_sym_DOT, + STATE(1389), 1, + sym_nested_identifier, + STATE(1508), 1, + sym_string, + STATE(1649), 1, + sym__module, + STATE(5184), 1, + sym_comment, + [191954] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8326), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4277), 1, anon_sym_LBRACE, - STATE(3878), 1, - sym_class_body, - STATE(5389), 1, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, + sym_identifier, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5185), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7611), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [194789] = 10, + STATE(6150), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [191983] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8685), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8687), 1, - anon_sym_STAR, - STATE(5390), 1, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5186), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(8018), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [194820] = 10, - ACTIONS(3), 1, + STATE(6239), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [192012] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + STATE(5187), 1, + sym_comment, + ACTIONS(2440), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [192031] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8569), 1, anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8689), 1, - sym_identifier, - ACTIONS(8691), 1, - anon_sym_STAR, - STATE(5391), 1, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8749), 1, + anon_sym_LBRACE, + ACTIONS(8751), 1, + anon_sym_LBRACE_PIPE, + STATE(1557), 1, + sym_object_type, + STATE(5188), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(7950), 1, - sym__call_signature, - STATE(8189), 1, + STATE(5730), 1, sym_type_parameters, - [194851] = 8, + STATE(6992), 1, + sym_extends_type_clause, + [192062] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5392), 1, + STATE(5189), 1, sym_comment, - STATE(5893), 1, + STATE(5907), 1, sym_type_annotation, - STATE(6844), 1, + STATE(6649), 1, sym__initializer, - ACTIONS(8583), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194878] = 8, + [192089] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8753), 1, + sym_identifier, + ACTIONS(8755), 1, + anon_sym_STAR, + STATE(5190), 1, + sym_comment, + STATE(5340), 1, + sym_formal_parameters, + STATE(7513), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [192120] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5393), 1, + STATE(5191), 1, sym_comment, - STATE(6010), 1, + STATE(5656), 1, sym_type_annotation, - STATE(6879), 1, + STATE(6601), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194905] = 5, + [192147] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8693), 1, + ACTIONS(8757), 1, anon_sym_EQ, - STATE(5394), 1, + STATE(5192), 1, sym_comment, - ACTIONS(4706), 6, + ACTIONS(4685), 6, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [194926] = 8, + [192168] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5395), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(5193), 1, sym_comment, - STATE(5901), 1, - sym_type_annotation, - STATE(6841), 1, - sym__initializer, - ACTIONS(8583), 3, + STATE(7722), 1, + sym_statement_block, + ACTIONS(8760), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [194953] = 8, + anon_sym_PIPE_RBRACE, + [192191] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5396), 1, + STATE(5194), 1, sym_comment, - STATE(5898), 1, - sym_type_annotation, - STATE(6608), 1, - sym__initializer, - ACTIONS(8070), 3, + ACTIONS(2436), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [194980] = 10, + anon_sym_PIPE_RBRACE, + [192210] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5397), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8762), 1, + sym_identifier, + ACTIONS(8764), 1, + anon_sym_STAR, + STATE(5195), 1, sym_comment, - STATE(6111), 1, - sym_class_body, - STATE(7061), 1, - sym_extends_clause, - STATE(7905), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [195011] = 4, + STATE(5340), 1, + sym_formal_parameters, + STATE(7541), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [192241] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5398), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5196), 1, sym_comment, - ACTIONS(8298), 7, + STATE(5527), 1, + sym_type_annotation, + STATE(6582), 1, + sym__initializer, + ACTIONS(8060), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [195030] = 10, + [192268] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8296), 1, - anon_sym_LBRACE, - STATE(1170), 1, - sym_class_body, - STATE(5399), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8766), 1, + sym_identifier, + ACTIONS(8768), 1, + anon_sym_STAR, + STATE(5197), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7529), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [195061] = 8, + STATE(5340), 1, + sym_formal_parameters, + STATE(7271), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [192299] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7900), 1, anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5400), 1, + STATE(5198), 1, sym_comment, - STATE(6019), 1, - sym_type_annotation, - STATE(6891), 1, - sym__initializer, - ACTIONS(8043), 3, - sym__automatic_semicolon, + ACTIONS(8770), 2, anon_sym_COMMA, - anon_sym_SEMI, - [195088] = 8, + anon_sym_RBRACE, + ACTIONS(5210), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [192322] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5401), 1, + STATE(5199), 1, sym_comment, - STATE(6020), 1, + STATE(5847), 1, sym_type_annotation, - STATE(6893), 1, + STATE(6613), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195115] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(39), 1, - anon_sym_import, - ACTIONS(8695), 1, - sym_identifier, - STATE(3003), 1, - sym__type_query_member_expression, - STATE(3004), 1, - sym__type_query_subscript_expression, - STATE(3313), 1, - sym__type_query_instantiation_expression, - STATE(3315), 1, - sym__type_query_call_expression, - STATE(5402), 1, - sym_comment, - STATE(6367), 1, - sym_import, - [195146] = 8, + [192349] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5403), 1, + STATE(5200), 1, sym_comment, - STATE(6028), 1, + STATE(5555), 1, sym_type_annotation, - STATE(6900), 1, + STATE(6563), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195173] = 8, + [192376] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5404), 1, + STATE(5201), 1, sym_comment, - STATE(6029), 1, + STATE(5559), 1, sym_type_annotation, - STATE(6902), 1, + STATE(6561), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195200] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [192403] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8697), 1, - anon_sym_EQ, - STATE(5405), 1, - sym_comment, - ACTIONS(4699), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [195221] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(8633), 1, - anon_sym_QMARK, - ACTIONS(8700), 1, - anon_sym_COLON, - STATE(5406), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, + sym_identifier, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5202), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(7563), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [195252] = 4, + STATE(6233), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [192432] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5407), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5203), 1, sym_comment, - ACTIONS(8286), 7, + STATE(5916), 1, + sym_type_annotation, + STATE(6568), 1, + sym__initializer, + ACTIONS(8068), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [195271] = 10, + [192459] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8702), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8704), 1, - anon_sym_STAR, - STATE(5408), 1, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5204), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(8150), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [195302] = 9, + STATE(6327), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [192488] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, anon_sym_LBRACK, - ACTIONS(8558), 1, + ACTIONS(8665), 1, sym_identifier, - STATE(5354), 1, + STATE(5128), 1, sym__destructuring_pattern, - STATE(5409), 1, + STATE(5205), 1, sym_comment, - STATE(6468), 1, + STATE(6164), 1, sym_variable_declarator, - STATE(5358), 2, + STATE(5126), 2, sym_object_pattern, sym_array_pattern, - [195331] = 8, + [192517] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5410), 1, + STATE(5206), 1, sym_comment, - STATE(6291), 1, + STATE(5676), 1, sym_type_annotation, - STATE(7133), 1, + STATE(6603), 1, sym__initializer, - ACTIONS(8061), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195358] = 8, + [192544] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5411), 1, + STATE(5207), 1, sym_comment, - STATE(6031), 1, + STATE(5583), 1, sym_type_annotation, - STATE(6954), 1, + STATE(6552), 1, sym__initializer, - ACTIONS(8043), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195385] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4387), 1, - anon_sym_DQUOTE, - ACTIONS(4389), 1, - anon_sym_SQUOTE, - ACTIONS(8706), 1, - sym_identifier, - ACTIONS(8708), 1, - anon_sym_DOT, - STATE(3968), 1, - sym_nested_identifier, - STATE(4015), 1, - sym_string, - STATE(4336), 1, - sym__module, - STATE(5412), 1, - sym_comment, - [195416] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8564), 1, - anon_sym_LT, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8710), 1, - anon_sym_LBRACE, - ACTIONS(8712), 1, - anon_sym_LBRACE_PIPE, - STATE(4328), 1, - sym_object_type, - STATE(5413), 1, - sym_comment, - STATE(6070), 1, - sym_type_parameters, - STATE(6962), 1, - sym_extends_type_clause, - [195447] = 8, + [192571] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5414), 1, + STATE(5208), 1, sym_comment, - STATE(5766), 1, + STATE(5586), 1, sym_type_annotation, - STATE(6939), 1, + STATE(6551), 1, sym__initializer, - ACTIONS(8047), 3, + ACTIONS(8060), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195474] = 8, + [192598] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8017), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5415), 1, - sym_comment, - STATE(6381), 1, - sym_constraint, - STATE(8085), 1, - sym_default_type, - ACTIONS(8022), 2, + ACTIONS(7870), 1, anon_sym_COLON, - anon_sym_extends, - ACTIONS(8714), 2, - anon_sym_COMMA, - anon_sym_GT, - [195501] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8234), 1, - anon_sym_LBRACE, - STATE(1893), 1, - sym_class_body, - STATE(5416), 1, + STATE(5209), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(8064), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [195532] = 4, + STATE(5610), 1, + sym_type_annotation, + STATE(6545), 1, + sym__initializer, + ACTIONS(8060), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192625] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5417), 1, + STATE(5210), 1, sym_comment, - ACTIONS(8716), 7, + ACTIONS(8773), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -418798,1493 +402549,1048 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [195551] = 10, + [192644] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8210), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - STATE(516), 1, - sym_class_body, - STATE(5418), 1, - sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7749), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [195582] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5419), 1, + STATE(5211), 1, sym_comment, - STATE(5992), 1, - sym_type_annotation, - STATE(7241), 1, - sym__initializer, - ACTIONS(8053), 3, + STATE(7440), 1, + sym_statement_block, + ACTIONS(8760), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [195609] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8718), 1, - sym_identifier, - STATE(4987), 1, - sym__destructuring_pattern, - STATE(5420), 1, - sym_comment, - STATE(6345), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [195638] = 6, + anon_sym_PIPE_RBRACE, + [192667] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(5421), 1, + STATE(5212), 1, sym_comment, - STATE(7953), 1, + STATE(7171), 1, sym_statement_block, - ACTIONS(8720), 5, + ACTIONS(8775), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [195661] = 9, + [192690] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, anon_sym_LBRACK, - ACTIONS(8722), 1, + ACTIONS(8665), 1, sym_identifier, - STATE(4990), 1, + STATE(5128), 1, sym__destructuring_pattern, - STATE(5422), 1, + STATE(5213), 1, sym_comment, - STATE(6332), 1, + STATE(6268), 1, sym_variable_declarator, - STATE(5358), 2, + STATE(5126), 2, sym_object_pattern, sym_array_pattern, - [195690] = 10, + [192719] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8250), 1, - anon_sym_LBRACE, - STATE(4186), 1, - sym_class_body, - STATE(5423), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5214), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7853), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [195721] = 10, + STATE(5615), 1, + sym_type_annotation, + STATE(6534), 1, + sym__initializer, + ACTIONS(8060), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192746] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8258), 1, - anon_sym_LBRACE, - STATE(4247), 1, - sym_class_body, - STATE(5424), 1, + ACTIONS(8012), 1, + anon_sym_EQ, + STATE(5215), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7796), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [195752] = 8, + STATE(6206), 1, + sym_constraint, + STATE(7462), 1, + sym_default_type, + ACTIONS(8017), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(8777), 2, + anon_sym_COMMA, + anon_sym_GT, + [192773] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5425), 1, + STATE(5216), 1, sym_comment, - STATE(6093), 1, - sym_type_annotation, - STATE(7277), 1, - sym__initializer, - ACTIONS(8053), 3, + ACTIONS(2468), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [195779] = 10, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [192792] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8234), 1, - anon_sym_LBRACE, - STATE(1921), 1, - sym_class_body, - STATE(5426), 1, + STATE(5217), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7790), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [195810] = 10, + ACTIONS(2472), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [192811] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8250), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(4122), 1, - sym_class_body, - STATE(5427), 1, + STATE(5218), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7697), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [195841] = 10, + STATE(7904), 1, + sym_statement_block, + ACTIONS(8779), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [192834] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8258), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(4413), 1, - sym_class_body, - STATE(5428), 1, + STATE(5219), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7741), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [195872] = 8, + STATE(7773), 1, + sym_statement_block, + ACTIONS(8781), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [192857] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5429), 1, + STATE(5220), 1, sym_comment, - STATE(6094), 1, - sym_type_annotation, - STATE(7278), 1, - sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8259), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [195899] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(8088), 1, - sym_identifier, - ACTIONS(8184), 1, - anon_sym_type, - STATE(5430), 1, - sym_comment, - STATE(6566), 1, - sym_string, - STATE(7783), 1, - sym__import_identifier, - STATE(8485), 1, - sym__module_export_name, - [195930] = 10, + anon_sym_COLON, + [192876] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8332), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_class_body, - STATE(5431), 1, - sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7962), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [195961] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, - ACTIONS(4277), 1, - anon_sym_LBRACK, - ACTIONS(8558), 1, - sym_identifier, - STATE(5354), 1, - sym__destructuring_pattern, - STATE(5432), 1, + STATE(5221), 1, sym_comment, - STATE(6462), 1, - sym_variable_declarator, - STATE(5358), 2, - sym_object_pattern, - sym_array_pattern, - [195990] = 10, + ACTIONS(8253), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [192895] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(8724), 1, + ACTIONS(8783), 1, sym_identifier, - ACTIONS(8726), 1, + ACTIONS(8785), 1, anon_sym_STAR, - STATE(5433), 1, + STATE(5222), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(7679), 1, - sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [196021] = 6, + STATE(7858), 1, + sym__call_signature, + [192926] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7883), 1, + ACTIONS(8787), 1, anon_sym_EQ, - STATE(5434), 1, + STATE(5223), 1, sym_comment, - ACTIONS(8728), 2, + ACTIONS(4709), 6, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5208), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [196044] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5435), 1, - sym_comment, - STATE(5818), 1, - sym_type_annotation, - STATE(7045), 1, - sym__initializer, - ACTIONS(8053), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196071] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5436), 1, - sym_comment, - STATE(5816), 1, - sym_type_annotation, - STATE(7037), 1, - sym__initializer, - ACTIONS(8053), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196098] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5437), 1, - sym_comment, - STATE(7387), 1, - sym_statement_block, - ACTIONS(8731), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [196121] = 8, + [192947] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5438), 1, + STATE(5224), 1, sym_comment, - STATE(6211), 1, - sym_type_annotation, - STATE(6749), 1, - sym__initializer, - ACTIONS(8070), 3, + ACTIONS(6400), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [196148] = 8, + anon_sym_COLON, + [192966] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5439), 1, + STATE(5225), 1, sym_comment, - STATE(6167), 1, + STATE(5879), 1, sym_type_annotation, - STATE(6655), 1, + STATE(6516), 1, sym__initializer, - ACTIONS(8070), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196175] = 8, + [192993] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5440), 1, + STATE(5226), 1, sym_comment, - STATE(5991), 1, + STATE(5887), 1, sym_type_annotation, - STATE(7232), 1, + STATE(6496), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196202] = 6, + [193020] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5441), 1, + STATE(5227), 1, sym_comment, - STATE(5922), 1, + STATE(5695), 1, sym_type_annotation, - ACTIONS(8733), 5, + STATE(6572), 1, + sym__initializer, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [196225] = 8, + [193047] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5442), 1, + STATE(5228), 1, sym_comment, - STATE(5814), 1, + STATE(5566), 1, sym_type_annotation, - STATE(7086), 1, + STATE(6543), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196252] = 8, + [193074] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5443), 1, + STATE(5229), 1, sym_comment, - STATE(5813), 1, + STATE(5891), 1, sym_type_annotation, - STATE(7030), 1, + STATE(6475), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196279] = 4, + [193101] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5444), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5230), 1, sym_comment, - ACTIONS(2444), 7, + STATE(5896), 1, + sym_type_annotation, + STATE(6457), 1, + sym__initializer, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [196298] = 6, + [193128] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5445), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5231), 1, sym_comment, - STATE(7693), 1, - sym_statement_block, - ACTIONS(8735), 5, + STATE(5671), 1, + sym_type_annotation, + STATE(6514), 1, + sym__initializer, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [196321] = 10, + [193155] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, + ACTIONS(4513), 1, anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8737), 1, + ACTIONS(8727), 1, sym_identifier, - ACTIONS(8739), 1, - anon_sym_STAR, - STATE(5446), 1, + ACTIONS(8789), 1, + anon_sym_LPAREN, + STATE(3378), 1, + sym_arguments, + STATE(5232), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(7679), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [196352] = 10, + STATE(7397), 1, + sym_type_arguments, + ACTIONS(8731), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [193184] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8418), 1, - anon_sym_LBRACE, - STATE(1245), 1, - sym_class_body, - STATE(5447), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5233), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7655), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [196383] = 10, + STATE(5677), 1, + sym_type_annotation, + STATE(6508), 1, + sym__initializer, + ACTIONS(8058), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193211] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8420), 1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(8793), 1, + anon_sym_DOT, + STATE(5234), 1, + sym_comment, + STATE(6221), 1, + sym_arguments, + ACTIONS(8791), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [193236] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4277), 1, anon_sym_LBRACE, - STATE(1054), 1, - sym_class_body, - STATE(5448), 1, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, + sym_identifier, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5235), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7651), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [196414] = 8, + STATE(6360), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [193265] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5449), 1, + STATE(5236), 1, sym_comment, - STATE(5809), 1, - sym_type_annotation, - STATE(7008), 1, - sym__initializer, - ACTIONS(8053), 3, + ACTIONS(2460), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [196441] = 8, + anon_sym_PIPE_RBRACE, + [193284] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5450), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(5237), 1, sym_comment, - STATE(5980), 1, - sym_type_annotation, - STATE(6631), 1, - sym__initializer, - ACTIONS(8070), 3, + STATE(7734), 1, + sym_statement_block, + ACTIONS(8795), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [196468] = 4, + anon_sym_PIPE_RBRACE, + [193307] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5451), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(5238), 1, sym_comment, - ACTIONS(2330), 7, + STATE(7431), 1, + sym_statement_block, + ACTIONS(8797), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [196487] = 8, + [193330] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5452), 1, + STATE(5239), 1, sym_comment, - STATE(6281), 1, - sym_type_annotation, - STATE(7180), 1, - sym__initializer, - ACTIONS(8053), 3, + ACTIONS(2374), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [196514] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8324), 1, - anon_sym_LBRACE, - STATE(359), 1, - sym_class_body, - STATE(5453), 1, - sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7647), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [196545] = 10, + anon_sym_PIPE_RBRACE, + [193349] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8418), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(1182), 1, - sym_class_body, - STATE(5454), 1, + STATE(5240), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7642), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [196576] = 10, + STATE(7686), 1, + sym_statement_block, + ACTIONS(8799), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193372] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8420), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(1026), 1, - sym_class_body, - STATE(5455), 1, + STATE(5241), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7636), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [196607] = 10, + STATE(7911), 1, + sym_statement_block, + ACTIONS(8797), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193395] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8284), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(1340), 1, - sym_class_body, - STATE(5456), 1, + STATE(5242), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7536), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [196638] = 8, + STATE(7419), 1, + sym_statement_block, + ACTIONS(8801), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193418] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5457), 1, + STATE(5243), 1, sym_comment, - STATE(6168), 1, + STATE(6079), 1, sym_type_annotation, - STATE(7273), 1, + STATE(6380), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196665] = 8, + [193445] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5458), 1, + STATE(5244), 1, sym_comment, - STATE(6182), 1, + STATE(6073), 1, sym_type_annotation, - STATE(7351), 1, + STATE(6390), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196692] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8324), 1, - anon_sym_LBRACE, - STATE(365), 1, - sym_class_body, - STATE(5459), 1, - sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7622), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [196723] = 8, + [193472] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5460), 1, + STATE(5245), 1, sym_comment, - STATE(6279), 1, + STATE(6009), 1, sym_type_annotation, - STATE(7207), 1, + STATE(6888), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196750] = 8, + [193499] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5461), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(5246), 1, sym_comment, - STATE(6277), 1, - sym_type_annotation, - STATE(7193), 1, - sym__initializer, - ACTIONS(8053), 3, + STATE(7436), 1, + sym_statement_block, + ACTIONS(8799), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [196777] = 4, + anon_sym_PIPE_RBRACE, + [193522] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5462), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(5247), 1, sym_comment, - ACTIONS(8386), 7, + STATE(7894), 1, + sym_statement_block, + ACTIONS(8795), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [196796] = 6, + anon_sym_PIPE_RBRACE, + [193545] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5463), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(5248), 1, sym_comment, - STATE(5915), 1, - sym_type_annotation, - ACTIONS(8741), 5, + STATE(7729), 1, + sym_statement_block, + ACTIONS(8803), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [196819] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [193568] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4289), 1, - anon_sym_DQUOTE, - ACTIONS(4291), 1, - anon_sym_SQUOTE, - ACTIONS(8743), 1, - sym_identifier, - ACTIONS(8745), 1, - anon_sym_DOT, - STATE(1325), 1, - sym_nested_identifier, - STATE(1610), 1, - sym_string, - STATE(1668), 1, - sym__module, - STATE(5464), 1, - sym_comment, - [196850] = 10, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(39), 1, - anon_sym_import, - ACTIONS(8747), 1, - sym_identifier, - STATE(2737), 1, - sym__type_query_member_expression, - STATE(2738), 1, - sym__type_query_subscript_expression, - STATE(2803), 1, - sym__type_query_call_expression, - STATE(2804), 1, - sym__type_query_instantiation_expression, - STATE(5465), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5249), 1, sym_comment, - STATE(6521), 1, - sym_import, - [196881] = 8, + STATE(6033), 1, + sym_type_annotation, + STATE(6402), 1, + sym__initializer, + ACTIONS(8058), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193595] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5466), 1, + STATE(5250), 1, sym_comment, - STATE(6272), 1, + STATE(6015), 1, sym_type_annotation, - STATE(7168), 1, + STATE(6405), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196908] = 9, + [193622] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4275), 1, - anon_sym_LBRACE, ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, anon_sym_LBRACK, - ACTIONS(8558), 1, + ACTIONS(8665), 1, sym_identifier, - STATE(5354), 1, + STATE(5128), 1, sym__destructuring_pattern, - STATE(5467), 1, + STATE(5251), 1, sym_comment, - STATE(6414), 1, + STATE(6257), 1, sym_variable_declarator, - STATE(5358), 2, + STATE(5126), 2, sym_object_pattern, sym_array_pattern, - [196937] = 10, + [193651] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8749), 1, + ACTIONS(8805), 1, sym_identifier, - ACTIONS(8751), 1, - anon_sym_STAR, - STATE(5468), 1, - sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(8018), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [196968] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8564), 1, - anon_sym_LT, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8753), 1, - anon_sym_LBRACE, - ACTIONS(8755), 1, - anon_sym_LBRACE_PIPE, - STATE(1744), 1, - sym_object_type, - STATE(5469), 1, - sym_comment, - STATE(6200), 1, - sym_type_parameters, - STATE(7038), 1, - sym_extends_type_clause, - [196999] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8564), 1, - anon_sym_LT, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8757), 1, - anon_sym_LBRACE, - ACTIONS(8759), 1, - anon_sym_LBRACE_PIPE, - STATE(1482), 1, - sym_object_type, - STATE(5470), 1, - sym_comment, - STATE(6233), 1, - sym_type_parameters, - STATE(7055), 1, - sym_extends_type_clause, - [197030] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5471), 1, + STATE(5252), 1, sym_comment, - STATE(6268), 1, - sym_type_annotation, - STATE(7224), 1, - sym__initializer, - ACTIONS(8053), 3, - sym__automatic_semicolon, + ACTIONS(5596), 6, anon_sym_COMMA, - anon_sym_SEMI, - [197057] = 10, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [193672] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8761), 1, + ACTIONS(39), 1, + anon_sym_import, + ACTIONS(8807), 1, sym_identifier, - ACTIONS(8763), 1, - anon_sym_STAR, - STATE(5472), 1, + STATE(4289), 1, + sym__type_query_member_expression, + STATE(4293), 1, + sym__type_query_subscript_expression, + STATE(4353), 1, + sym__type_query_call_expression, + STATE(4400), 1, + sym__type_query_instantiation_expression, + STATE(5253), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(7679), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [197088] = 4, + STATE(6180), 1, + sym_import, + [193703] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5473), 1, - sym_comment, - ACTIONS(2412), 7, - sym__automatic_semicolon, + ACTIONS(8531), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [197107] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5474), 1, + STATE(5254), 1, sym_comment, - ACTIONS(2372), 7, + STATE(5945), 1, + sym_statement_block, + ACTIONS(2294), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [197126] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5475), 1, - sym_comment, - ACTIONS(8350), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [197145] = 10, + [193726] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4409), 1, - anon_sym_DQUOTE, - ACTIONS(4411), 1, - anon_sym_SQUOTE, - ACTIONS(8765), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8767), 1, - anon_sym_DOT, - STATE(1129), 1, - sym_nested_identifier, - STATE(1364), 1, - sym_string, - STATE(1568), 1, - sym__module, - STATE(5476), 1, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5255), 1, sym_comment, - [197176] = 4, + STATE(6097), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [193755] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5477), 1, + ACTIONS(8809), 1, + sym__automatic_semicolon, + STATE(5256), 1, sym_comment, - ACTIONS(7127), 7, - anon_sym_EQ, + ACTIONS(2456), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [197195] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8769), 1, - sym_identifier, - ACTIONS(8771), 1, - anon_sym_STAR, - STATE(5478), 1, - sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(8018), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [197226] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8773), 1, - sym_identifier, - ACTIONS(8775), 1, - anon_sym_STAR, - STATE(5479), 1, - sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(7679), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [197257] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8777), 1, - sym_identifier, - ACTIONS(8779), 1, - anon_sym_STAR, - STATE(5480), 1, - sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(8018), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [197288] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8781), 1, - sym_identifier, - ACTIONS(8783), 1, - anon_sym_STAR, - STATE(5481), 1, - sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(7679), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [197319] = 10, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193776] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(8785), 1, + ACTIONS(8811), 1, sym_identifier, - ACTIONS(8787), 1, + ACTIONS(8813), 1, anon_sym_STAR, - STATE(5482), 1, + STATE(5257), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(8018), 1, + STATE(7541), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [197350] = 8, + [193807] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5483), 1, + STATE(5258), 1, sym_comment, - STATE(6267), 1, + STATE(5983), 1, sym_type_annotation, - STATE(7229), 1, + STATE(6378), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8068), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197377] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8789), 1, - sym_identifier, - ACTIONS(8791), 1, - anon_sym_STAR, - STATE(5484), 1, - sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(7679), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [197408] = 8, + [193834] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5485), 1, + STATE(5259), 1, sym_comment, - STATE(6264), 1, + STATE(5972), 1, sym_type_annotation, - STATE(7235), 1, + STATE(6414), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197435] = 4, + [193861] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5486), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5260), 1, sym_comment, - ACTIONS(4758), 7, + STATE(5620), 1, + sym_type_annotation, + STATE(6415), 1, + sym__initializer, + ACTIONS(8058), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [197454] = 4, + [193888] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5487), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5261), 1, sym_comment, - ACTIONS(4756), 7, + STATE(5746), 1, + sym_type_annotation, + STATE(6506), 1, + sym__initializer, + ACTIONS(8074), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [197473] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8793), 1, - sym_identifier, - ACTIONS(8795), 1, - anon_sym_STAR, - STATE(5488), 1, - sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(8018), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [197504] = 4, + [193915] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5489), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5262), 1, sym_comment, - ACTIONS(8310), 7, + STATE(5985), 1, + sym_type_annotation, + STATE(6550), 1, + sym__initializer, + ACTIONS(8068), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [197523] = 10, + [193942] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8564), 1, - anon_sym_LT, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8797), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - ACTIONS(8799), 1, - anon_sym_LBRACE_PIPE, - STATE(1087), 1, - sym_object_type, - STATE(5490), 1, + STATE(5263), 1, sym_comment, - STATE(6061), 1, - sym_type_parameters, - STATE(7267), 1, - sym_extends_type_clause, - [197554] = 8, + STATE(7733), 1, + sym_statement_block, + ACTIONS(8815), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [193965] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5491), 1, + ACTIONS(8205), 1, + anon_sym_extends, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3525), 1, + sym_class_body, + STATE(5264), 1, sym_comment, - STATE(5847), 1, - sym_type_annotation, - STATE(7074), 1, - sym__initializer, - ACTIONS(8076), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197581] = 10, + STATE(6769), 1, + sym_extends_clause, + STATE(7544), 1, + sym_class_heritage, + STATE(7968), 1, + sym_implements_clause, + [193996] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8801), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8803), 1, - anon_sym_STAR, - STATE(5492), 1, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5265), 1, sym_comment, - STATE(5514), 1, - sym_formal_parameters, - STATE(7679), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [197612] = 4, + STATE(6337), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [194025] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5493), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(8817), 1, + anon_sym_EQ, + ACTIONS(8821), 1, + anon_sym_QMARK, + STATE(5266), 1, sym_comment, - ACTIONS(8262), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(6170), 1, + sym_type_annotation, + STATE(7566), 1, + sym__initializer, + ACTIONS(8819), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [197631] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_RPAREN, + [194054] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(8805), 1, - sym_identifier, - ACTIONS(8807), 1, - anon_sym_STAR, - STATE(5494), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8677), 1, + anon_sym_QMARK, + ACTIONS(8823), 1, + anon_sym_COLON, + STATE(5267), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(8018), 1, + STATE(7580), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [197662] = 4, + [194085] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5495), 1, + STATE(5268), 1, sym_comment, - ACTIONS(8474), 7, + ACTIONS(6258), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -420292,52962 +403598,52590 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [197681] = 10, + [194104] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(8809), 1, + ACTIONS(8825), 1, sym_identifier, - ACTIONS(8811), 1, + ACTIONS(8827), 1, anon_sym_STAR, - STATE(5496), 1, + STATE(5269), 1, sym_comment, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(7679), 1, - sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [197712] = 4, + STATE(7858), 1, + sym__call_signature, + [194135] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5497), 1, + STATE(5270), 1, sym_comment, - ACTIONS(8254), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7028), 7, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [197731] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [194154] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4395), 1, - anon_sym_DQUOTE, - ACTIONS(4397), 1, - anon_sym_SQUOTE, - ACTIONS(8813), 1, - sym_identifier, - ACTIONS(8815), 1, - anon_sym_DOT, - STATE(1005), 1, - sym_nested_identifier, - STATE(1024), 1, - sym_string, - STATE(1072), 1, - sym__module, - STATE(5498), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5271), 1, sym_comment, - [197762] = 10, + STATE(5784), 1, + sym_type_annotation, + STATE(6493), 1, + sym__initializer, + ACTIONS(8058), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194181] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3575), 1, - sym_class_body, - STATE(5499), 1, + STATE(5272), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(8169), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [197793] = 8, + ACTIONS(6333), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [194200] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(8829), 1, anon_sym_EQ, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(5500), 1, + STATE(5273), 1, sym_comment, - STATE(6257), 1, - sym_type_annotation, - STATE(7250), 1, - sym__initializer, - ACTIONS(8053), 3, - sym__automatic_semicolon, + ACTIONS(4685), 6, anon_sym_COMMA, - anon_sym_SEMI, - [197820] = 5, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [194221] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8817), 1, - sym__automatic_semicolon, - STATE(5501), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(5274), 1, sym_comment, - ACTIONS(2336), 6, + STATE(7206), 1, + sym_statement_block, + ACTIONS(8832), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [197841] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [194244] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(5502), 1, + STATE(5275), 1, sym_comment, - STATE(5874), 1, + STATE(7843), 1, sym_statement_block, - ACTIONS(2303), 5, + ACTIONS(8803), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [197864] = 8, + [194267] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(7863), 1, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5503), 1, + STATE(5276), 1, sym_comment, - STATE(6254), 1, + STATE(5952), 1, sym_type_annotation, - STATE(7253), 1, + STATE(6426), 1, sym__initializer, - ACTIONS(8053), 3, + ACTIONS(8058), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197891] = 10, + [194294] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8284), 1, - anon_sym_LBRACE, - STATE(1430), 1, - sym_class_body, - STATE(5504), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5277), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7550), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [197922] = 10, + STATE(5966), 1, + sym_type_annotation, + STATE(6429), 1, + sym__initializer, + ACTIONS(8058), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194321] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8296), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(1095), 1, - sym_class_body, - STATE(5505), 1, + STATE(5278), 1, sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7546), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [197953] = 10, + STATE(7841), 1, + sym_statement_block, + ACTIONS(8815), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [194344] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8212), 1, - anon_sym_extends, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(8256), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(382), 1, - sym_class_body, - STATE(5506), 1, - sym_comment, - STATE(7061), 1, - sym_extends_clause, - STATE(7541), 1, - sym_class_heritage, - STATE(8325), 1, - sym_implements_clause, - [197984] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(39), 1, - anon_sym_import, - ACTIONS(8819), 1, - sym_identifier, - STATE(4693), 1, - sym__type_query_subscript_expression, - STATE(4695), 1, - sym__type_query_member_expression, - STATE(4875), 1, - sym__type_query_call_expression, - STATE(5099), 1, - sym__type_query_instantiation_expression, - STATE(5507), 1, + STATE(5279), 1, sym_comment, - STATE(6383), 1, - sym_import, - [198015] = 4, + STATE(7864), 1, + sym_statement_block, + ACTIONS(8834), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [194367] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5508), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(5280), 1, sym_comment, - ACTIONS(8314), 7, + STATE(7811), 1, + sym_statement_block, + ACTIONS(8832), 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_DOT, - [198034] = 10, + anon_sym_PIPE_RBRACE, + [194390] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4401), 1, - anon_sym_DQUOTE, - ACTIONS(4403), 1, - anon_sym_SQUOTE, - ACTIONS(8821), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, sym_identifier, - ACTIONS(8823), 1, - anon_sym_DOT, - STATE(3889), 1, - sym_nested_identifier, - STATE(3922), 1, - sym_string, - STATE(4141), 1, - sym__module, - STATE(5509), 1, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5281), 1, sym_comment, - [198065] = 4, + STATE(6352), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [194419] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5510), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(5282), 1, sym_comment, - ACTIONS(8825), 7, + STATE(7803), 1, + sym_statement_block, + ACTIONS(8834), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [198084] = 6, + [194442] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5283), 1, + sym_comment, + ACTIONS(4685), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [194461] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(5511), 1, + STATE(5284), 1, sym_comment, - STATE(7829), 1, + STATE(7837), 1, sym_statement_block, - ACTIONS(8731), 5, + ACTIONS(8836), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [198107] = 10, + [194484] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8564), 1, - anon_sym_LT, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8827), 1, + ACTIONS(4277), 1, anon_sym_LBRACE, - ACTIONS(8829), 1, - anon_sym_LBRACE_PIPE, - STATE(4211), 1, - sym_object_type, - STATE(5512), 1, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, + sym_identifier, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5285), 1, sym_comment, - STATE(5954), 1, - sym_type_parameters, - STATE(6769), 1, - sym_extends_type_clause, - [198138] = 4, + STATE(6361), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [194513] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5513), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5286), 1, sym_comment, - ACTIONS(8831), 6, - anon_sym_export, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [198156] = 6, + STATE(5924), 1, + sym_type_annotation, + STATE(6443), 1, + sym__initializer, + ACTIONS(8058), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194540] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8833), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, anon_sym_COLON, - STATE(5514), 1, + STATE(5287), 1, sym_comment, - ACTIONS(8122), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7893), 3, + STATE(5921), 1, sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [198178] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6445), 1, + sym__initializer, + ACTIONS(8058), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194567] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8835), 1, - sym_identifier, - STATE(5515), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5288), 1, sym_comment, - ACTIONS(7705), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [198198] = 6, + STATE(5832), 1, + sym_type_annotation, + STATE(6537), 1, + sym__initializer, + ACTIONS(8058), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194594] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3238), 1, - sym_statement_block, - STATE(5516), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5289), 1, sym_comment, - ACTIONS(8595), 4, + STATE(5845), 1, + sym_type_annotation, + STATE(6466), 1, + sym__initializer, + ACTIONS(8058), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198220] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [194621] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8839), 1, - sym_identifier, - STATE(5517), 1, - sym_comment, - ACTIONS(7705), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [198240] = 5, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8841), 1, - sym_identifier, - STATE(5518), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(5290), 1, sym_comment, - ACTIONS(7705), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [198260] = 5, + STATE(5914), 1, + sym_type_annotation, + STATE(6450), 1, + sym__initializer, + ACTIONS(8058), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194648] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8843), 1, + ACTIONS(4277), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + anon_sym_LBRACK, + ACTIONS(8665), 1, sym_identifier, - STATE(5519), 1, + STATE(5128), 1, + sym__destructuring_pattern, + STATE(5291), 1, sym_comment, - ACTIONS(7705), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [198280] = 6, + STATE(6849), 1, + sym_variable_declarator, + STATE(5126), 2, + sym_object_pattern, + sym_array_pattern, + [194677] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3285), 1, - sym_statement_block, - STATE(5520), 1, + STATE(5292), 1, sym_comment, - ACTIONS(8572), 4, + STATE(5315), 1, + aux_sym_object_type_repeat1, + ACTIONS(8840), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8838), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198302] = 9, + [194699] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_DOT, - ACTIONS(8845), 1, - anon_sym_COMMA, - ACTIONS(8847), 1, - anon_sym_GT, - STATE(5180), 1, - sym_arguments, - STATE(5521), 1, + ACTIONS(8842), 1, + anon_sym_default, + ACTIONS(8844), 1, + anon_sym_RBRACE, + ACTIONS(8846), 1, + anon_sym_case, + STATE(5293), 1, sym_comment, - STATE(6733), 1, - aux_sym_type_arguments_repeat1, - [198330] = 5, + STATE(5302), 1, + aux_sym_switch_body_repeat1, + STATE(6972), 2, + sym_switch_case, + sym_switch_default, + [194725] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8849), 1, + ACTIONS(8848), 1, sym_identifier, - STATE(5522), 1, + STATE(5294), 1, sym_comment, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [198350] = 9, + [194745] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(8851), 1, - anon_sym_COMMA, - ACTIONS(8853), 1, - anon_sym_GT, - STATE(5523), 1, + STATE(5295), 1, sym_comment, - STATE(6737), 1, - aux_sym_type_arguments_repeat1, - [198378] = 5, + STATE(5306), 1, + aux_sym_object_type_repeat1, + ACTIONS(8852), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8850), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194767] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8855), 1, + ACTIONS(8854), 1, sym_identifier, - STATE(5524), 1, + STATE(5296), 1, sym_comment, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [198398] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - ACTIONS(8857), 1, - anon_sym_QMARK, - STATE(5049), 1, - sym_formal_parameters, - STATE(5525), 1, - sym_comment, - STATE(5599), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [198426] = 9, + [194787] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4401), 1, - anon_sym_DQUOTE, - ACTIONS(4403), 1, - anon_sym_SQUOTE, - ACTIONS(8821), 1, + ACTIONS(8856), 1, sym_identifier, - STATE(3889), 1, - sym_nested_identifier, - STATE(3922), 1, - sym_string, - STATE(4159), 1, - sym__module, - STATE(5526), 1, + STATE(5297), 1, sym_comment, - [198454] = 5, + ACTIONS(7712), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [194807] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8859), 1, + ACTIONS(8858), 1, sym_identifier, - STATE(5527), 1, + STATE(5298), 1, sym_comment, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [198474] = 9, + [194827] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4401), 1, + ACTIONS(4395), 1, anon_sym_DQUOTE, - ACTIONS(4403), 1, + ACTIONS(4397), 1, anon_sym_SQUOTE, - ACTIONS(8821), 1, + ACTIONS(8575), 1, sym_identifier, - STATE(3889), 1, + STATE(3833), 1, sym_nested_identifier, - STATE(3922), 1, + STATE(3890), 1, sym_string, - STATE(4141), 1, + STATE(4056), 1, sym__module, - STATE(5528), 1, + STATE(5299), 1, sym_comment, - [198502] = 5, + [194855] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8861), 1, + ACTIONS(4395), 1, + anon_sym_DQUOTE, + ACTIONS(4397), 1, + anon_sym_SQUOTE, + ACTIONS(8575), 1, sym_identifier, - STATE(5529), 1, + STATE(3833), 1, + sym_nested_identifier, + STATE(3890), 1, + sym_string, + STATE(4072), 1, + sym__module, + STATE(5300), 1, + sym_comment, + [194883] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8860), 1, + sym_identifier, + STATE(5301), 1, sym_comment, - ACTIONS(7705), 5, + ACTIONS(7712), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [198522] = 6, + [194903] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5530), 1, + ACTIONS(8842), 1, + anon_sym_default, + ACTIONS(8846), 1, + anon_sym_case, + ACTIONS(8862), 1, + anon_sym_RBRACE, + STATE(5302), 1, sym_comment, - STATE(5544), 1, + STATE(5330), 1, + aux_sym_switch_body_repeat1, + STATE(6972), 2, + sym_switch_case, + sym_switch_default, + [194929] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5303), 1, + sym_comment, + STATE(5311), 1, aux_sym_object_type_repeat1, - ACTIONS(8865), 2, + ACTIONS(8866), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8863), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198544] = 6, + [194951] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3156), 1, - sym_statement_block, - STATE(5531), 1, - sym_comment, - ACTIONS(8735), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(8868), 1, anon_sym_COMMA, - anon_sym_SEMI, - [198566] = 6, + ACTIONS(8870), 1, + anon_sym_GT, + STATE(5304), 1, + sym_comment, + STATE(6791), 1, + aux_sym_type_arguments_repeat1, + [194979] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3229), 1, - sym_statement_block, - STATE(5532), 1, - sym_comment, - ACTIONS(8595), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(8265), 1, + anon_sym_DOT, + ACTIONS(8872), 1, anon_sym_COMMA, - anon_sym_SEMI, - [198588] = 9, + ACTIONS(8874), 1, + anon_sym_GT, + STATE(4980), 1, + sym_arguments, + STATE(5305), 1, + sym_comment, + STATE(6825), 1, + aux_sym_type_arguments_repeat1, + [195007] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(8867), 1, - anon_sym_QMARK, - STATE(4942), 1, - sym_formal_parameters, - STATE(5533), 1, + STATE(5306), 1, sym_comment, - STATE(5914), 1, - sym__call_signature, - STATE(8017), 1, - sym_type_parameters, - [198616] = 9, + STATE(5315), 1, + aux_sym_object_type_repeat1, + ACTIONS(8866), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195029] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, + ACTIONS(8876), 1, + sym_identifier, + STATE(5307), 1, + sym_comment, + ACTIONS(7712), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT, - ACTIONS(8578), 1, + anon_sym_BQUOTE, + [195049] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(8869), 1, - sym_identifier, - STATE(5514), 1, - sym_formal_parameters, - STATE(5534), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8878), 1, + anon_sym_QMARK, + STATE(5308), 1, sym_comment, - STATE(7416), 1, + STATE(5340), 1, + sym_formal_parameters, + STATE(7678), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [198644] = 6, + [195077] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3231), 1, - sym_statement_block, - STATE(5535), 1, + STATE(5309), 1, sym_comment, - ACTIONS(8572), 4, + ACTIONS(8773), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [198666] = 8, + anon_sym_COLON, + [195095] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, - anon_sym_default, - ACTIONS(8873), 1, - anon_sym_RBRACE, - ACTIONS(8875), 1, - anon_sym_case, - STATE(5536), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8880), 1, + anon_sym_export, + ACTIONS(8882), 1, + anon_sym_class, + ACTIONS(8884), 1, + anon_sym_abstract, + STATE(5310), 1, sym_comment, - STATE(5539), 1, - aux_sym_switch_body_repeat1, - STATE(7172), 2, - sym_switch_case, - sym_switch_default, - [198692] = 6, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + [195123] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5537), 1, + STATE(5311), 1, sym_comment, - STATE(5541), 1, + STATE(5315), 1, aux_sym_object_type_repeat1, - ACTIONS(8879), 2, + ACTIONS(8888), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8877), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198714] = 9, + [195145] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8881), 1, + ACTIONS(8890), 1, sym_identifier, - STATE(5514), 1, - sym_formal_parameters, - STATE(5538), 1, + STATE(5312), 1, sym_comment, - STATE(7707), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [198742] = 8, + ACTIONS(7712), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [195165] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, - anon_sym_default, - ACTIONS(8875), 1, - anon_sym_case, - ACTIONS(8883), 1, - anon_sym_RBRACE, - STATE(5539), 1, + ACTIONS(8892), 1, + anon_sym_as, + ACTIONS(8896), 1, + anon_sym_DOT, + ACTIONS(8898), 1, + aux_sym_ui_version_specifier_token1, + STATE(5313), 1, sym_comment, - STATE(5583), 1, - aux_sym_switch_body_repeat1, - STATE(7172), 2, - sym_switch_case, - sym_switch_default, - [198768] = 6, + STATE(6518), 1, + sym_ui_version_specifier, + ACTIONS(8894), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [195191] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5540), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3114), 1, + sym_statement_block, + STATE(5314), 1, sym_comment, - STATE(5548), 1, - aux_sym_object_type_repeat1, - ACTIONS(8887), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8885), 3, + ACTIONS(8795), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198790] = 6, + [195213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5541), 1, - sym_comment, - STATE(5544), 1, - aux_sym_object_type_repeat1, - ACTIONS(8887), 2, + ACTIONS(8905), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8885), 3, + STATE(5315), 2, + sym_comment, + aux_sym_object_type_repeat1, + ACTIONS(8902), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198812] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195233] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3774), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8900), 1, anon_sym_LBRACE, - ACTIONS(8889), 1, - sym_identifier, - ACTIONS(8891), 1, - anon_sym_LBRACK, - STATE(5542), 1, + STATE(3022), 1, + sym_statement_block, + STATE(5316), 1, sym_comment, - STATE(6762), 1, - sym__destructuring_pattern, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - [198838] = 9, + ACTIONS(8797), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195255] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(8893), 1, + ACTIONS(8907), 1, sym_identifier, - STATE(5514), 1, - sym_formal_parameters, - STATE(5543), 1, + STATE(5317), 1, sym_comment, - STATE(7416), 1, + STATE(5340), 1, + sym_formal_parameters, + STATE(7610), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [198866] = 5, + [195283] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8898), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(5544), 2, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(8909), 1, + anon_sym_QMARK, + STATE(4747), 1, + sym_formal_parameters, + STATE(5318), 1, sym_comment, - aux_sym_object_type_repeat1, - ACTIONS(8895), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198886] = 6, + STATE(5909), 1, + sym__call_signature, + STATE(7660), 1, + sym_type_parameters, + [195311] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, + STATE(5315), 1, aux_sym_object_type_repeat1, - STATE(5545), 1, + STATE(5319), 1, sym_comment, - ACTIONS(8902), 2, + ACTIONS(8913), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8900), 3, + ACTIONS(8911), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198908] = 9, + [195333] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8904), 1, + ACTIONS(7880), 1, + anon_sym_LPAREN, + ACTIONS(8915), 1, anon_sym_QMARK, - STATE(5514), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5546), 1, + STATE(5320), 1, sym_comment, - STATE(7964), 1, + STATE(5436), 1, sym__call_signature, - STATE(8189), 1, + STATE(7873), 1, sym_type_parameters, - [198936] = 9, + [195361] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(8906), 1, + ACTIONS(8917), 1, sym_identifier, - STATE(5514), 1, - sym_formal_parameters, - STATE(5547), 1, + STATE(5321), 1, sym_comment, - STATE(7707), 1, + STATE(5340), 1, + sym_formal_parameters, + STATE(7539), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [198964] = 6, + [195389] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5548), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3047), 1, + sym_statement_block, + STATE(5322), 1, sym_comment, - ACTIONS(8910), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8908), 3, + ACTIONS(8775), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198986] = 7, + [195411] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8915), 1, - anon_sym_BQUOTE, - ACTIONS(8917), 1, - anon_sym_DOLLAR_LBRACE, - STATE(6550), 1, - sym_template_substitution, - ACTIONS(8912), 2, - sym__template_chars, - sym_escape_sequence, - STATE(5549), 2, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(8919), 1, + anon_sym_QMARK, + STATE(4747), 1, + sym_formal_parameters, + STATE(5323), 1, sym_comment, - aux_sym_template_string_repeat1, - [199010] = 6, + STATE(6391), 1, + sym__call_signature, + STATE(7660), 1, + sym_type_parameters, + [195439] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5550), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3126), 1, + sym_statement_block, + STATE(5324), 1, sym_comment, - ACTIONS(8922), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8920), 3, + ACTIONS(8795), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199032] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195461] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3774), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8900), 1, anon_sym_LBRACE, - ACTIONS(8891), 1, - anon_sym_LBRACK, - ACTIONS(8924), 1, - sym_identifier, - STATE(5551), 1, + STATE(3026), 1, + sym_statement_block, + STATE(5325), 1, sym_comment, - STATE(6782), 1, - sym__destructuring_pattern, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - [199058] = 9, + ACTIONS(8760), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195483] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - ACTIONS(8926), 1, + ACTIONS(8921), 1, anon_sym_QMARK, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5552), 1, - sym_comment, - STATE(6989), 1, + STATE(5316), 1, sym__call_signature, - STATE(8017), 1, + STATE(5326), 1, + sym_comment, + STATE(7873), 1, sym_type_parameters, - [199086] = 9, - ACTIONS(3), 1, + [195511] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8923), 1, + anon_sym_export, + ACTIONS(8925), 1, + anon_sym_class, + ACTIONS(8927), 1, + anon_sym_abstract, + STATE(5327), 1, + sym_comment, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + [195539] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3154), 1, + sym_statement_block, + STATE(5328), 1, + sym_comment, + ACTIONS(8760), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195561] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(8928), 1, - sym_identifier, - STATE(5514), 1, + ACTIONS(8929), 1, + anon_sym_QMARK, + STATE(4747), 1, sym_formal_parameters, - STATE(5553), 1, + STATE(5329), 1, sym_comment, - STATE(7416), 1, + STATE(7132), 1, sym__call_signature, - STATE(8189), 1, + STATE(7660), 1, sym_type_parameters, - [199114] = 6, + [195589] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8931), 1, + anon_sym_default, + ACTIONS(8934), 1, + anon_sym_RBRACE, + ACTIONS(8936), 1, + anon_sym_case, + STATE(5330), 2, + sym_comment, + aux_sym_switch_body_repeat1, + STATE(6972), 2, + sym_switch_case, + sym_switch_default, + [195613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + STATE(5331), 1, + sym_comment, + ACTIONS(2460), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [195631] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3768), 1, anon_sym_LBRACE, - STATE(3205), 1, + ACTIONS(8939), 1, + sym_identifier, + ACTIONS(8941), 1, + anon_sym_LBRACK, + STATE(5332), 1, + sym_comment, + STATE(6571), 1, + sym__destructuring_pattern, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + [195657] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3116), 1, sym_statement_block, - STATE(5554), 1, + STATE(5333), 1, sym_comment, - ACTIONS(8731), 4, + ACTIONS(8803), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199136] = 8, + [195679] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8930), 1, - anon_sym_as, - ACTIONS(8934), 1, - anon_sym_DOT, - ACTIONS(8936), 1, - aux_sym_ui_version_specifier_token1, - STATE(5555), 1, + ACTIONS(8603), 1, + anon_sym_COMMA, + ACTIONS(8607), 1, + anon_sym_LT, + ACTIONS(8943), 1, + anon_sym_LBRACE, + ACTIONS(8945), 1, + anon_sym_LBRACE_PIPE, + STATE(5334), 1, sym_comment, - STATE(6729), 1, - sym_ui_version_specifier, - ACTIONS(8932), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199162] = 9, + STATE(6243), 1, + aux_sym_extends_type_clause_repeat1, + STATE(6623), 1, + sym_type_arguments, + [195707] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(8938), 1, + ACTIONS(8947), 1, sym_identifier, - STATE(5514), 1, - sym_formal_parameters, - STATE(5556), 1, + STATE(5335), 1, sym_comment, - STATE(7707), 1, + STATE(5340), 1, + sym_formal_parameters, + STATE(7610), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [199190] = 9, + [195735] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8949), 1, + anon_sym_export, + ACTIONS(8951), 1, + anon_sym_class, + ACTIONS(8953), 1, + anon_sym_abstract, + STATE(5336), 1, + sym_comment, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + [195763] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8940), 1, - anon_sym_QMARK, - STATE(5514), 1, - sym_formal_parameters, - STATE(5557), 1, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8955), 1, + sym_identifier, + STATE(5337), 1, sym_comment, - STATE(7748), 1, + STATE(5340), 1, + sym_formal_parameters, + STATE(7539), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [199218] = 6, + [195791] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5545), 1, - aux_sym_object_type_repeat1, - STATE(5558), 1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(8265), 1, + anon_sym_DOT, + ACTIONS(8957), 1, + anon_sym_COMMA, + ACTIONS(8959), 1, + anon_sym_GT, + STATE(4980), 1, + sym_arguments, + STATE(5338), 1, sym_comment, - ACTIONS(8922), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8920), 3, - sym__automatic_semicolon, + STATE(6476), 1, + aux_sym_type_arguments_repeat1, + [195819] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(8961), 1, anon_sym_COMMA, - anon_sym_SEMI, - [199240] = 9, - ACTIONS(3), 1, + ACTIONS(8963), 1, + anon_sym_GT, + STATE(5339), 1, + sym_comment, + STATE(6480), 1, + aux_sym_type_arguments_repeat1, + [195847] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_COLON, + STATE(5340), 1, + sym_comment, + ACTIONS(8195), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7779), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [195869] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(8942), 1, - sym_identifier, - STATE(5514), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8967), 1, + anon_sym_QMARK, + STATE(5340), 1, sym_formal_parameters, - STATE(5559), 1, + STATE(5341), 1, sym_comment, - STATE(7416), 1, + STATE(7422), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [199268] = 8, + [195897] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3774), 1, + ACTIONS(3768), 1, anon_sym_LBRACE, - ACTIONS(8891), 1, + ACTIONS(8941), 1, anon_sym_LBRACK, - ACTIONS(8944), 1, + ACTIONS(8969), 1, sym_identifier, - STATE(5560), 1, + STATE(5342), 1, sym_comment, - STATE(6832), 1, + STATE(6598), 1, sym__destructuring_pattern, - STATE(5164), 2, + STATE(4776), 2, sym_object_pattern, sym_array_pattern, - [199294] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - ACTIONS(8946), 1, - anon_sym_QMARK, - STATE(5049), 1, - sym_formal_parameters, - STATE(5561), 1, - sym_comment, - STATE(5738), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [199322] = 9, + [195923] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(8948), 1, + ACTIONS(8971), 1, sym_identifier, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5562), 1, + STATE(5343), 1, sym_comment, - STATE(7416), 1, + STATE(7610), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [199350] = 6, + [195951] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3220), 1, + STATE(3046), 1, sym_statement_block, - STATE(5563), 1, + STATE(5344), 1, sym_comment, - ACTIONS(8731), 4, + ACTIONS(8815), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199372] = 8, + [195973] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, - anon_sym_default, - ACTIONS(8875), 1, - anon_sym_case, - ACTIONS(8950), 1, - anon_sym_RBRACE, - STATE(5564), 1, + ACTIONS(8898), 1, + aux_sym_ui_version_specifier_token1, + ACTIONS(8973), 1, + anon_sym_as, + ACTIONS(8977), 1, + anon_sym_DOT, + STATE(5345), 1, sym_comment, - STATE(5583), 1, - aux_sym_switch_body_repeat1, - STATE(7172), 2, - sym_switch_case, - sym_switch_default, - [199398] = 9, + STATE(6529), 1, + sym_ui_version_specifier, + ACTIONS(8975), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [195999] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4533), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_DOT, - ACTIONS(8952), 1, - anon_sym_COMMA, - ACTIONS(8954), 1, - anon_sym_GT, - STATE(5180), 1, - sym_arguments, - STATE(5565), 1, + ACTIONS(8979), 1, + sym_identifier, + STATE(5340), 1, + sym_formal_parameters, + STATE(5346), 1, sym_comment, - STATE(7019), 1, - aux_sym_type_arguments_repeat1, - [199426] = 9, + STATE(7539), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [196027] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(8956), 1, - anon_sym_COMMA, - ACTIONS(8958), 1, - anon_sym_GT, - STATE(5566), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + ACTIONS(8981), 1, + anon_sym_QMARK, + STATE(4867), 1, + sym_formal_parameters, + STATE(5347), 1, sym_comment, - STATE(7023), 1, - aux_sym_type_arguments_repeat1, - [199454] = 4, + STATE(5441), 1, + sym__call_signature, + STATE(7873), 1, + sym_type_parameters, + [196055] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(8983), 1, + sym_identifier, + STATE(5340), 1, + sym_formal_parameters, + STATE(5348), 1, + sym_comment, + STATE(7539), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [196083] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5567), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3153), 1, + sym_statement_block, + STATE(5349), 1, sym_comment, - ACTIONS(8825), 6, + ACTIONS(8803), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [199472] = 9, + [196105] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(4387), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(4389), 1, anon_sym_SQUOTE, - ACTIONS(8603), 1, + ACTIONS(8629), 1, sym_identifier, - STATE(5207), 1, + STATE(3740), 1, sym_nested_identifier, - STATE(5502), 1, + STATE(3807), 1, sym_string, - STATE(5568), 1, - sym_comment, - STATE(5993), 1, + STATE(4047), 1, sym__module, - [199500] = 8, + STATE(5350), 1, + sym_comment, + [196133] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8936), 1, - aux_sym_ui_version_specifier_token1, - ACTIONS(8960), 1, - anon_sym_as, - ACTIONS(8964), 1, - anon_sym_DOT, - STATE(5569), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3156), 1, + sym_statement_block, + STATE(5351), 1, sym_comment, - STATE(6738), 1, - sym_ui_version_specifier, - ACTIONS(8962), 2, + ACTIONS(8815), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196155] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3125), 1, + sym_statement_block, + STATE(5352), 1, + sym_comment, + ACTIONS(8797), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [199526] = 9, + [196177] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(8941), 1, + anon_sym_LBRACK, + ACTIONS(8985), 1, + sym_identifier, + STATE(5353), 1, + sym_comment, + STATE(7547), 1, + sym__destructuring_pattern, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + [196203] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, + ACTIONS(4387), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(4389), 1, anon_sym_SQUOTE, - ACTIONS(8603), 1, + ACTIONS(8629), 1, sym_identifier, - STATE(5207), 1, + STATE(3740), 1, sym_nested_identifier, - STATE(5502), 1, + STATE(3807), 1, sym_string, - STATE(5570), 1, - sym_comment, - STATE(6244), 1, + STATE(4033), 1, sym__module, - [199554] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(8966), 1, - anon_sym_QMARK, - STATE(4942), 1, - sym_formal_parameters, - STATE(5571), 1, + STATE(5354), 1, sym_comment, - STATE(6165), 1, - sym__call_signature, - STATE(8017), 1, - sym_type_parameters, - [199582] = 9, + [196231] = 8, ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8968), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(8941), 1, + anon_sym_LBRACK, + ACTIONS(8987), 1, sym_identifier, - STATE(5514), 1, - sym_formal_parameters, - STATE(5572), 1, + STATE(5355), 1, sym_comment, - STATE(7707), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [199610] = 9, + STATE(6331), 1, + sym__destructuring_pattern, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + [196257] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(8970), 1, + ACTIONS(8989), 1, anon_sym_QMARK, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5573), 1, + STATE(5356), 1, sym_comment, - STATE(5781), 1, + STATE(5812), 1, sym__call_signature, - STATE(8017), 1, + STATE(7660), 1, sym_type_parameters, - [199638] = 8, + [196285] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, + ACTIONS(8842), 1, anon_sym_default, - ACTIONS(8875), 1, + ACTIONS(8846), 1, anon_sym_case, - ACTIONS(8972), 1, + ACTIONS(8991), 1, anon_sym_RBRACE, - STATE(5574), 1, + STATE(5357), 1, sym_comment, - STATE(5585), 1, + STATE(5361), 1, aux_sym_switch_body_repeat1, - STATE(7172), 2, + STATE(6972), 2, sym_switch_case, sym_switch_default, - [199664] = 6, + [196311] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5575), 1, + STATE(5358), 1, sym_comment, - STATE(5590), 1, + STATE(5364), 1, aux_sym_object_type_repeat1, - ACTIONS(8976), 2, + ACTIONS(8995), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8974), 3, + ACTIONS(8993), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199686] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5576), 1, - sym_comment, - ACTIONS(8716), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [199704] = 8, + [196333] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3774), 1, + ACTIONS(3768), 1, anon_sym_LBRACE, - ACTIONS(8891), 1, + ACTIONS(8941), 1, anon_sym_LBRACK, - ACTIONS(8978), 1, + ACTIONS(8997), 1, sym_identifier, - STATE(5577), 1, + STATE(5359), 1, sym_comment, - STATE(6874), 1, + STATE(6620), 1, sym__destructuring_pattern, - STATE(5164), 2, + STATE(4776), 2, sym_object_pattern, sym_array_pattern, - [199730] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196359] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(8980), 1, - sym_identifier, - STATE(5514), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(8999), 1, + anon_sym_QMARK, + STATE(5340), 1, sym_formal_parameters, - STATE(5578), 1, + STATE(5360), 1, sym_comment, - STATE(7416), 1, + STATE(7415), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [199758] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196387] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(8982), 1, - sym_identifier, - STATE(5514), 1, - sym_formal_parameters, - STATE(5579), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8842), 1, + anon_sym_default, + ACTIONS(8846), 1, + anon_sym_case, + ACTIONS(9001), 1, + anon_sym_RBRACE, + STATE(5330), 1, + aux_sym_switch_body_repeat1, + STATE(5361), 1, sym_comment, - STATE(7707), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [199786] = 4, + STATE(6972), 2, + sym_switch_case, + sym_switch_default, + [196413] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5580), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3135), 1, + sym_statement_block, + STATE(5362), 1, sym_comment, - ACTIONS(8496), 6, + ACTIONS(8779), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DOT, - [199804] = 6, + [196435] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5550), 1, - aux_sym_object_type_repeat1, - STATE(5581), 1, + STATE(5363), 1, sym_comment, - ACTIONS(8986), 2, + STATE(5372), 1, + aux_sym_object_type_repeat1, + ACTIONS(9005), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8984), 3, + ACTIONS(9003), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199826] = 5, + [196457] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5582), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5364), 1, sym_comment, - ACTIONS(8988), 2, - anon_sym_COMMA, + ACTIONS(9005), 2, anon_sym_RBRACE, - ACTIONS(5208), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [199846] = 7, + anon_sym_PIPE_RBRACE, + ACTIONS(9003), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196479] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8990), 1, - anon_sym_default, - ACTIONS(8993), 1, - anon_sym_RBRACE, - ACTIONS(8995), 1, - anon_sym_case, - STATE(5583), 2, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9007), 1, + anon_sym_export, + ACTIONS(9009), 1, + anon_sym_class, + ACTIONS(9011), 1, + anon_sym_abstract, + STATE(5365), 1, sym_comment, - aux_sym_switch_body_repeat1, - STATE(7172), 2, - sym_switch_case, - sym_switch_default, - [199870] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + [196507] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, - anon_sym_default, - ACTIONS(8875), 1, - anon_sym_case, - ACTIONS(8998), 1, - anon_sym_RBRACE, - STATE(5564), 1, - aux_sym_switch_body_repeat1, - STATE(5584), 1, - sym_comment, - STATE(7172), 2, - sym_switch_case, - sym_switch_default, - [199896] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8871), 1, - anon_sym_default, - ACTIONS(8875), 1, - anon_sym_case, - ACTIONS(9000), 1, - anon_sym_RBRACE, - STATE(5583), 1, - aux_sym_switch_body_repeat1, - STATE(5585), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(9013), 1, + sym_identifier, + STATE(5340), 1, + sym_formal_parameters, + STATE(5366), 1, sym_comment, - STATE(7172), 2, - sym_switch_case, - sym_switch_default, - [199922] = 6, + STATE(7610), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [196535] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5586), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3136), 1, + sym_statement_block, + STATE(5367), 1, sym_comment, - STATE(5601), 1, - aux_sym_object_type_repeat1, - ACTIONS(9004), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9002), 3, + ACTIONS(8781), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199944] = 8, - ACTIONS(3), 1, + [196557] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(9015), 1, + anon_sym_QMARK, + STATE(4747), 1, + sym_formal_parameters, + STATE(5218), 1, + sym__call_signature, + STATE(5368), 1, + sym_comment, + STATE(7660), 1, + sym_type_parameters, + [196585] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(8891), 1, - anon_sym_LBRACK, - ACTIONS(9006), 1, - sym_identifier, - STATE(5587), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(9017), 1, + anon_sym_QMARK, + STATE(4747), 1, + sym_formal_parameters, + STATE(5242), 1, + sym__call_signature, + STATE(5369), 1, sym_comment, - STATE(6968), 1, - sym__destructuring_pattern, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - [199970] = 9, + STATE(7660), 1, + sym_type_parameters, + [196613] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(9008), 1, + ACTIONS(9019), 1, sym_identifier, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5588), 1, + STATE(5370), 1, sym_comment, - STATE(7416), 1, + STATE(7539), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [199998] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [196641] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(9010), 1, - sym_identifier, - STATE(5514), 1, + ACTIONS(9021), 1, + anon_sym_QMARK, + STATE(4747), 1, sym_formal_parameters, - STATE(5589), 1, - sym_comment, - STATE(7707), 1, + STATE(5275), 1, sym__call_signature, - STATE(8189), 1, + STATE(5371), 1, + sym_comment, + STATE(7660), 1, sym_type_parameters, - [200026] = 6, + [196669] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, + STATE(5315), 1, aux_sym_object_type_repeat1, - STATE(5590), 1, + STATE(5372), 1, sym_comment, - ACTIONS(9004), 2, + ACTIONS(9025), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(9002), 3, + ACTIONS(9023), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [200048] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(9014), 1, - anon_sym_QMARK, - STATE(5591), 1, - sym_comment, - ACTIONS(9012), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [200074] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4387), 1, - anon_sym_DQUOTE, - ACTIONS(4389), 1, - anon_sym_SQUOTE, - ACTIONS(8706), 1, - sym_identifier, - STATE(3968), 1, - sym_nested_identifier, - STATE(4015), 1, - sym_string, - STATE(4336), 1, - sym__module, - STATE(5592), 1, - sym_comment, - [200102] = 9, + [196691] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4387), 1, - anon_sym_DQUOTE, - ACTIONS(4389), 1, - anon_sym_SQUOTE, - ACTIONS(8706), 1, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(8941), 1, + anon_sym_LBRACK, + ACTIONS(9027), 1, sym_identifier, - STATE(3968), 1, - sym_nested_identifier, - STATE(4015), 1, - sym_string, - STATE(4409), 1, - sym__module, - STATE(5593), 1, + STATE(5373), 1, sym_comment, - [200130] = 4, + STATE(6687), 1, + sym__destructuring_pattern, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + [196717] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5594), 1, + STATE(5374), 1, sym_comment, - ACTIONS(7111), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(9029), 6, + anon_sym_export, + anon_sym_LPAREN, anon_sym_DOT, - [200148] = 9, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [196735] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(8460), 1, - anon_sym_COLON, - ACTIONS(8462), 1, - anon_sym_DOT, - ACTIONS(8464), 1, - anon_sym_on, - ACTIONS(9016), 1, - anon_sym_function, - STATE(4262), 1, - sym_ui_object_initializer, - STATE(5595), 1, + STATE(5375), 1, sym_comment, - [200176] = 6, + ACTIONS(2374), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [196753] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3187), 1, - sym_statement_block, - STATE(5596), 1, - sym_comment, - ACTIONS(8607), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(8265), 1, + anon_sym_DOT, + ACTIONS(9031), 1, anon_sym_COMMA, - anon_sym_SEMI, - [200198] = 9, + ACTIONS(9033), 1, + anon_sym_GT, + STATE(4980), 1, + sym_arguments, + STATE(5376), 1, + sym_comment, + STATE(6997), 1, + aux_sym_type_arguments_repeat1, + [196781] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(9018), 1, + ACTIONS(9035), 1, anon_sym_COMMA, - ACTIONS(9020), 1, + ACTIONS(9037), 1, anon_sym_GT, - STATE(5597), 1, + STATE(5377), 1, sym_comment, - STATE(6999), 1, + STATE(7000), 1, aux_sym_type_arguments_repeat1, - [200226] = 9, + [196809] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9039), 1, + anon_sym_BQUOTE, + ACTIONS(9041), 1, + anon_sym_DOLLAR_LBRACE, + STATE(5378), 1, + sym_comment, + STATE(5509), 1, + aux_sym_template_string_repeat1, + STATE(6137), 1, + sym_template_substitution, + ACTIONS(8515), 2, + sym__template_chars, + sym_escape_sequence, + [196835] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, + ACTIONS(9041), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9043), 1, + anon_sym_BQUOTE, + STATE(5378), 1, + aux_sym_template_string_repeat1, + STATE(5379), 1, + sym_comment, + STATE(6137), 1, + sym_template_substitution, + ACTIONS(8515), 2, + sym__template_chars, + sym_escape_sequence, + [196861] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_DOT, - ACTIONS(9022), 1, - anon_sym_COMMA, - ACTIONS(9024), 1, - anon_sym_GT, - STATE(5180), 1, - sym_arguments, - STATE(5598), 1, + ACTIONS(9045), 1, + anon_sym_QMARK, + STATE(4747), 1, + sym_formal_parameters, + STATE(5279), 1, + sym__call_signature, + STATE(5380), 1, sym_comment, - STATE(7007), 1, - aux_sym_type_arguments_repeat1, - [200254] = 6, + STATE(7660), 1, + sym_type_parameters, + [196889] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(9047), 1, + sym_identifier, + STATE(5340), 1, + sym_formal_parameters, + STATE(5381), 1, + sym_comment, + STATE(7610), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [196917] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3185), 1, - sym_statement_block, - STATE(5599), 1, + ACTIONS(8965), 1, + anon_sym_COLON, + STATE(5382), 1, sym_comment, - ACTIONS(8609), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8201), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(7301), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [196939] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(8265), 1, + anon_sym_DOT, + ACTIONS(9049), 1, anon_sym_COMMA, - anon_sym_SEMI, - [200276] = 9, + ACTIONS(9051), 1, + anon_sym_GT, + STATE(4980), 1, + sym_arguments, + STATE(5383), 1, + sym_comment, + STATE(6762), 1, + aux_sym_type_arguments_repeat1, + [196967] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8671), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(9053), 1, anon_sym_COMMA, - ACTIONS(8675), 1, - anon_sym_LT, - ACTIONS(9026), 1, - anon_sym_LBRACE, - ACTIONS(9028), 1, - anon_sym_LBRACE_PIPE, - STATE(5600), 1, + ACTIONS(9055), 1, + anon_sym_GT, + STATE(5384), 1, sym_comment, - STATE(6487), 1, - aux_sym_extends_type_clause_repeat1, - STATE(7313), 1, - sym_type_arguments, - [200304] = 6, + STATE(6766), 1, + aux_sym_type_arguments_repeat1, + [196995] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5601), 1, + ACTIONS(9059), 1, + anon_sym_AT, + STATE(6120), 1, + sym_decorator, + STATE(5385), 2, sym_comment, - ACTIONS(9032), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9030), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [200326] = 4, + aux_sym_export_statement_repeat1, + ACTIONS(9057), 3, + anon_sym_export, + anon_sym_class, + anon_sym_abstract, + [197017] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5602), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3133), 1, + sym_statement_block, + STATE(5386), 1, sym_comment, - ACTIONS(8649), 6, + ACTIONS(8836), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [200344] = 5, + [197039] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9034), 1, - anon_sym_DOT, - STATE(5603), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(5387), 1, sym_comment, - ACTIONS(8546), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(9062), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [200364] = 8, + anon_sym_GT, + [197063] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(8891), 1, - anon_sym_LBRACK, - ACTIONS(9036), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(8679), 1, sym_identifier, - STATE(5604), 1, + STATE(4976), 1, + sym_nested_identifier, + STATE(5254), 1, + sym_string, + STATE(5388), 1, sym_comment, - STATE(7095), 1, - sym__destructuring_pattern, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - [200390] = 9, + STATE(5838), 1, + sym__module, + [197091] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(9038), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(8679), 1, sym_identifier, - STATE(5514), 1, - sym_formal_parameters, - STATE(5605), 1, + STATE(4976), 1, + sym_nested_identifier, + STATE(5254), 1, + sym_string, + STATE(5389), 1, sym_comment, - STATE(7416), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [200418] = 9, + STATE(5842), 1, + sym__module, + [197119] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3265), 1, - anon_sym_LBRACE, - ACTIONS(7581), 1, - anon_sym_COLON, - ACTIONS(7583), 1, - anon_sym_DOT, - ACTIONS(8136), 1, - anon_sym_on, - ACTIONS(9040), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(9064), 1, sym_identifier, - STATE(4262), 1, - sym_ui_object_initializer, - STATE(5606), 1, + STATE(5340), 1, + sym_formal_parameters, + STATE(5390), 1, sym_comment, - [200446] = 8, + STATE(7539), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [197147] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, + ACTIONS(8842), 1, anon_sym_default, - ACTIONS(8875), 1, + ACTIONS(8846), 1, anon_sym_case, - ACTIONS(9042), 1, + ACTIONS(9066), 1, anon_sym_RBRACE, - STATE(5583), 1, - aux_sym_switch_body_repeat1, - STATE(5607), 1, + STATE(5391), 1, sym_comment, - STATE(7172), 2, + STATE(5394), 1, + aux_sym_switch_body_repeat1, + STATE(6972), 2, sym_switch_case, sym_switch_default, - [200472] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [197173] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(9044), 1, - sym_identifier, - STATE(5514), 1, - sym_formal_parameters, - STATE(5608), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5392), 1, sym_comment, - STATE(7707), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [200500] = 9, + STATE(5397), 1, + aux_sym_object_type_repeat1, + ACTIONS(9070), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9068), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197195] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(9046), 1, + ACTIONS(9072), 1, anon_sym_QMARK, - STATE(5049), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5609), 1, + STATE(5393), 1, sym_comment, - STATE(5735), 1, + STATE(5636), 1, sym__call_signature, - STATE(7675), 1, + STATE(7660), 1, sym_type_parameters, - [200528] = 9, + [197223] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(9048), 1, - anon_sym_QMARK, - STATE(5514), 1, - sym_formal_parameters, - STATE(5610), 1, - sym_comment, - STATE(7928), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [200556] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3265), 1, - anon_sym_LBRACE, - ACTIONS(7581), 1, - anon_sym_COLON, - ACTIONS(7583), 1, - anon_sym_DOT, - ACTIONS(8136), 1, - anon_sym_on, - ACTIONS(9050), 1, - sym_identifier, - STATE(4262), 1, - sym_ui_object_initializer, - STATE(5611), 1, + ACTIONS(8842), 1, + anon_sym_default, + ACTIONS(8846), 1, + anon_sym_case, + ACTIONS(9074), 1, + anon_sym_RBRACE, + STATE(5330), 1, + aux_sym_switch_body_repeat1, + STATE(5394), 1, sym_comment, - [200584] = 6, + STATE(6972), 2, + sym_switch_case, + sym_switch_default, + [197249] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3222), 1, - sym_statement_block, - STATE(5612), 1, + STATE(5395), 1, sym_comment, - ACTIONS(8607), 4, + STATE(5401), 1, + aux_sym_object_type_repeat1, + ACTIONS(9078), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9076), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [200606] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9054), 1, - anon_sym_catch, - ACTIONS(9056), 1, - anon_sym_finally, - STATE(5613), 1, - sym_comment, - STATE(6328), 1, - sym_catch_clause, - STATE(7890), 1, - sym_finally_clause, - ACTIONS(9052), 2, - anon_sym_else, - anon_sym_while, - [200632] = 4, + [197271] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5614), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5396), 1, sym_comment, - ACTIONS(8601), 6, + ACTIONS(9082), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9080), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [200650] = 6, + [197293] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5615), 1, - sym_comment, - STATE(5649), 1, + STATE(5315), 1, aux_sym_object_type_repeat1, - ACTIONS(9060), 2, + STATE(5397), 1, + sym_comment, + ACTIONS(9078), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(9058), 3, + ACTIONS(9076), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [200672] = 7, + [197315] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9064), 1, - anon_sym_property, - STATE(5616), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(9084), 1, + anon_sym_QMARK, + STATE(4747), 1, + sym_formal_parameters, + STATE(5238), 1, + sym__call_signature, + STATE(5398), 1, sym_comment, - STATE(5698), 1, - aux_sym_ui_property_repeat1, - STATE(6330), 1, - sym_ui_property_modifier, - ACTIONS(9062), 3, - anon_sym_default, - anon_sym_readonly, - anon_sym_required, - [200696] = 8, + STATE(7660), 1, + sym_type_parameters, + [197343] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3774), 1, + ACTIONS(3768), 1, anon_sym_LBRACE, - ACTIONS(8891), 1, + ACTIONS(8941), 1, anon_sym_LBRACK, - ACTIONS(9066), 1, + ACTIONS(9086), 1, sym_identifier, - STATE(5617), 1, + STATE(5399), 1, sym_comment, - STATE(6651), 1, + STATE(6773), 1, sym__destructuring_pattern, - STATE(5164), 2, + STATE(4776), 2, sym_object_pattern, sym_array_pattern, - [200722] = 9, + [197369] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4533), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_DOT, - ACTIONS(9068), 1, - anon_sym_COMMA, - ACTIONS(9070), 1, - anon_sym_GT, - STATE(5180), 1, - sym_arguments, - STATE(5618), 1, + ACTIONS(9088), 1, + sym_identifier, + STATE(5340), 1, + sym_formal_parameters, + STATE(5400), 1, sym_comment, - STATE(7294), 1, - aux_sym_type_arguments_repeat1, - [200750] = 9, + STATE(7610), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [197397] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(9072), 1, - anon_sym_COMMA, - ACTIONS(9074), 1, - anon_sym_GT, - STATE(5619), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5401), 1, sym_comment, - STATE(7298), 1, - aux_sym_type_arguments_repeat1, - [200778] = 9, + ACTIONS(9092), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9090), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197419] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(9076), 1, + ACTIONS(9094), 1, sym_identifier, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5620), 1, + STATE(5402), 1, sym_comment, - STATE(7416), 1, + STATE(7539), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [200806] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [197447] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(8891), 1, - anon_sym_LBRACK, - ACTIONS(9078), 1, - sym_identifier, - STATE(5621), 1, - sym_comment, - STATE(7838), 1, - sym__destructuring_pattern, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - [200832] = 8, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3774), 1, - anon_sym_LBRACE, - ACTIONS(8891), 1, - anon_sym_LBRACK, - ACTIONS(9080), 1, - sym_identifier, - STATE(5622), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5403), 1, sym_comment, - STATE(6388), 1, - sym__destructuring_pattern, - STATE(5164), 2, - sym_object_pattern, - sym_array_pattern, - [200858] = 4, + ACTIONS(9098), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197469] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5623), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3014), 1, + sym_statement_block, + STATE(5404), 1, sym_comment, - ACTIONS(2336), 6, + ACTIONS(8799), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [200876] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SEMI, + [197491] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4409), 1, - anon_sym_DQUOTE, - ACTIONS(4411), 1, - anon_sym_SQUOTE, - ACTIONS(8765), 1, - sym_identifier, - STATE(1129), 1, - sym_nested_identifier, - STATE(1364), 1, - sym_string, - STATE(1557), 1, - sym__module, - STATE(5624), 1, - sym_comment, - [200904] = 9, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + ACTIONS(9100), 1, + anon_sym_QMARK, + STATE(4867), 1, + sym_formal_parameters, + STATE(5362), 1, + sym__call_signature, + STATE(5405), 1, + sym_comment, + STATE(7873), 1, + sym_type_parameters, + [197519] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4409), 1, - anon_sym_DQUOTE, - ACTIONS(4411), 1, - anon_sym_SQUOTE, - ACTIONS(8765), 1, - sym_identifier, - STATE(1129), 1, - sym_nested_identifier, - STATE(1364), 1, - sym_string, - STATE(1568), 1, - sym__module, - STATE(5625), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5319), 1, + aux_sym_object_type_repeat1, + STATE(5406), 1, sym_comment, - [200932] = 9, + ACTIONS(9098), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9096), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197541] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(9082), 1, + ACTIONS(9102), 1, anon_sym_QMARK, - STATE(5049), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5563), 1, - sym__call_signature, - STATE(5626), 1, + STATE(5407), 1, sym_comment, - STATE(7675), 1, + STATE(6001), 1, + sym__call_signature, + STATE(7660), 1, sym_type_parameters, - [200960] = 9, + [197569] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(9084), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - ACTIONS(9086), 1, - anon_sym_COMMA, - STATE(5627), 1, + STATE(3004), 1, + sym_statement_block, + STATE(5408), 1, sym_comment, - STATE(7332), 1, - aux_sym_implements_clause_repeat1, - [200988] = 8, + ACTIONS(8741), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197591] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, - anon_sym_default, - ACTIONS(8875), 1, - anon_sym_case, - ACTIONS(9088), 1, - anon_sym_RBRACE, - STATE(5628), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(9104), 1, + anon_sym_QMARK, + STATE(5340), 1, + sym_formal_parameters, + STATE(5409), 1, sym_comment, - STATE(5630), 1, - aux_sym_switch_body_repeat1, - STATE(7172), 2, - sym_switch_case, - sym_switch_default, - [201014] = 6, + STATE(7512), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [197619] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5629), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(9106), 1, + anon_sym_QMARK, + STATE(5340), 1, + sym_formal_parameters, + STATE(5410), 1, sym_comment, - STATE(5633), 1, - aux_sym_object_type_repeat1, - ACTIONS(9092), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9090), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201036] = 8, + STATE(7801), 1, + sym_type_parameters, + STATE(7846), 1, + sym__call_signature, + [197647] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, - anon_sym_default, - ACTIONS(8875), 1, - anon_sym_case, - ACTIONS(9094), 1, - anon_sym_RBRACE, - STATE(5583), 1, - aux_sym_switch_body_repeat1, - STATE(5630), 1, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(8363), 1, + anon_sym_COLON, + ACTIONS(8365), 1, + anon_sym_DOT, + ACTIONS(8367), 1, + anon_sym_on, + ACTIONS(9108), 1, + anon_sym_function, + STATE(4160), 1, + sym_ui_object_initializer, + STATE(5411), 1, sym_comment, - STATE(7172), 2, - sym_switch_case, - sym_switch_default, - [201062] = 6, + [197675] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5631), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(9110), 1, + anon_sym_QMARK, + STATE(5340), 1, + sym_formal_parameters, + STATE(5412), 1, sym_comment, - STATE(5636), 1, - aux_sym_object_type_repeat1, - ACTIONS(9098), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201084] = 6, + STATE(7521), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [197703] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3254), 1, - sym_statement_block, - STATE(5632), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + ACTIONS(9112), 1, + anon_sym_QMARK, + STATE(4867), 1, + sym_formal_parameters, + STATE(5328), 1, + sym__call_signature, + STATE(5413), 1, sym_comment, - ACTIONS(8720), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201106] = 6, + STATE(7873), 1, + sym_type_parameters, + [197731] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5633), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(9114), 1, + anon_sym_QMARK, + STATE(5340), 1, + sym_formal_parameters, + STATE(5414), 1, sym_comment, - ACTIONS(9098), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9096), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201128] = 4, + STATE(7590), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [197759] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(8941), 1, + anon_sym_LBRACK, + ACTIONS(9116), 1, + sym_identifier, + STATE(5415), 1, + sym_comment, + STATE(6386), 1, + sym__destructuring_pattern, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + [197785] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5634), 1, + ACTIONS(8605), 1, + anon_sym_DOT, + ACTIONS(8607), 1, + anon_sym_LT, + ACTIONS(9118), 1, + anon_sym_LBRACE, + STATE(5416), 1, sym_comment, - ACTIONS(2352), 6, + STATE(6624), 1, + sym_type_arguments, + ACTIONS(9120), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [201146] = 8, + anon_sym_LBRACE_PIPE, + [197811] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, + ACTIONS(8842), 1, anon_sym_default, - ACTIONS(8875), 1, + ACTIONS(8846), 1, anon_sym_case, - ACTIONS(9100), 1, + ACTIONS(9122), 1, anon_sym_RBRACE, - STATE(5607), 1, + STATE(5330), 1, aux_sym_switch_body_repeat1, - STATE(5635), 1, + STATE(5417), 1, sym_comment, - STATE(7172), 2, + STATE(6972), 2, sym_switch_case, sym_switch_default, - [201172] = 6, + [197837] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5636), 1, + STATE(5418), 1, + sym_comment, + ACTIONS(8689), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [197855] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(9124), 1, + anon_sym_QMARK, + STATE(5340), 1, + sym_formal_parameters, + STATE(5419), 1, sym_comment, - ACTIONS(9104), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9102), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201194] = 9, + STATE(7801), 1, + sym_type_parameters, + STATE(7869), 1, + sym__call_signature, + [197883] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(9106), 1, + ACTIONS(9126), 1, anon_sym_QMARK, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5637), 1, + STATE(5420), 1, sym_comment, - STATE(6705), 1, + STATE(5826), 1, sym__call_signature, - STATE(8017), 1, + STATE(7660), 1, sym_type_parameters, - [201222] = 9, + [197911] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, + ACTIONS(4501), 1, anon_sym_LPAREN, - ACTIONS(8282), 1, + ACTIONS(8265), 1, anon_sym_DOT, - ACTIONS(9108), 1, + ACTIONS(9128), 1, anon_sym_COMMA, - ACTIONS(9110), 1, + ACTIONS(9130), 1, anon_sym_GT, - STATE(5180), 1, + STATE(4980), 1, sym_arguments, - STATE(5638), 1, + STATE(5421), 1, sym_comment, - STATE(7308), 1, + STATE(7037), 1, aux_sym_type_arguments_repeat1, - [201250] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3301), 1, - sym_statement_block, - STATE(5639), 1, - sym_comment, - ACTIONS(8570), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201272] = 9, + [197939] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(9112), 1, + ACTIONS(9132), 1, anon_sym_COMMA, - ACTIONS(9114), 1, + ACTIONS(9134), 1, anon_sym_GT, - STATE(5640), 1, + STATE(5422), 1, sym_comment, - STATE(7306), 1, + STATE(7041), 1, aux_sym_type_arguments_repeat1, - [201300] = 6, + [197967] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3288), 1, - sym_statement_block, - STATE(5641), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9136), 1, + anon_sym_export, + ACTIONS(9138), 1, + anon_sym_class, + ACTIONS(9140), 1, + anon_sym_abstract, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5423), 1, sym_comment, - ACTIONS(8556), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(6120), 1, + sym_decorator, + [197995] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5424), 1, + sym_comment, + ACTIONS(9142), 2, anon_sym_COMMA, - anon_sym_SEMI, - [201322] = 9, + anon_sym_RBRACE, + ACTIONS(5210), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [198015] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_DQUOTE, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_SQUOTE, - ACTIONS(8651), 1, + ACTIONS(8561), 1, sym_identifier, - STATE(1017), 1, + STATE(1078), 1, sym_nested_identifier, - STATE(1112), 1, + STATE(1306), 1, sym_string, - STATE(1394), 1, + STATE(1527), 1, sym__module, - STATE(5642), 1, - sym_comment, - [201350] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - ACTIONS(9116), 1, - anon_sym_QMARK, - STATE(5049), 1, - sym_formal_parameters, - STATE(5532), 1, - sym__call_signature, - STATE(5643), 1, - sym_comment, - STATE(7675), 1, - sym_type_parameters, - [201378] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(9118), 1, - anon_sym_QMARK, - STATE(4942), 1, - sym_formal_parameters, - STATE(5644), 1, + STATE(5425), 1, sym_comment, - STATE(5885), 1, - sym__call_signature, - STATE(8017), 1, - sym_type_parameters, - [201406] = 6, + [198043] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5530), 1, + STATE(5315), 1, aux_sym_object_type_repeat1, - STATE(5645), 1, + STATE(5426), 1, sym_comment, - ACTIONS(9122), 2, + ACTIONS(9146), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(9120), 3, + ACTIONS(9144), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [201428] = 6, + [198065] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3275), 1, - sym_statement_block, - STATE(5646), 1, + STATE(5396), 1, + aux_sym_object_type_repeat1, + STATE(5427), 1, sym_comment, - ACTIONS(8570), 4, + ACTIONS(9146), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9144), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [201450] = 9, + [198087] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4417), 1, + ACTIONS(4403), 1, anon_sym_DQUOTE, - ACTIONS(4419), 1, + ACTIONS(4405), 1, anon_sym_SQUOTE, - ACTIONS(8651), 1, + ACTIONS(8561), 1, sym_identifier, - STATE(1017), 1, + STATE(1078), 1, sym_nested_identifier, - STATE(1112), 1, + STATE(1306), 1, sym_string, - STATE(1290), 1, + STATE(1516), 1, sym__module, - STATE(5647), 1, + STATE(5428), 1, sym_comment, - [201478] = 6, + [198115] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3277), 1, + STATE(3062), 1, sym_statement_block, - STATE(5648), 1, + STATE(5429), 1, sym_comment, - ACTIONS(8556), 4, + ACTIONS(8832), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [201500] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5649), 1, - sym_comment, - ACTIONS(9122), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9120), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201522] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8871), 1, - anon_sym_default, - ACTIONS(8875), 1, - anon_sym_case, - ACTIONS(9124), 1, - anon_sym_RBRACE, - STATE(5650), 1, - sym_comment, - STATE(5656), 1, - aux_sym_switch_body_repeat1, - STATE(7172), 2, - sym_switch_case, - sym_switch_default, - [201548] = 9, + [198137] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(9126), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(9148), 1, anon_sym_QMARK, - STATE(4942), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5282), 1, - sym__call_signature, - STATE(5651), 1, + STATE(5430), 1, sym_comment, - STATE(8017), 1, + STATE(7739), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - [201576] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [198165] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(5652), 1, - sym_comment, - STATE(5658), 1, - aux_sym_object_type_repeat1, - ACTIONS(9130), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9128), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201598] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(8635), 1, - anon_sym_EQ, - STATE(5653), 1, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(9150), 1, + sym_identifier, + STATE(5340), 1, + sym_formal_parameters, + STATE(5431), 1, sym_comment, - STATE(6333), 1, - sym_type_annotation, - STATE(7785), 1, - sym__initializer, - ACTIONS(9132), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [201624] = 9, + STATE(7610), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [198193] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(9134), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(9152), 1, anon_sym_QMARK, - STATE(4942), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5278), 1, - sym__call_signature, - STATE(5654), 1, + STATE(5432), 1, sym_comment, - STATE(8017), 1, + STATE(7192), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - [201652] = 9, + [198221] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(9136), 1, + ACTIONS(9154), 1, anon_sym_QMARK, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5250), 1, + STATE(5211), 1, sym__call_signature, - STATE(5655), 1, + STATE(5433), 1, sym_comment, - STATE(8017), 1, + STATE(7660), 1, sym_type_parameters, - [201680] = 8, + [198249] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, + ACTIONS(8842), 1, anon_sym_default, - ACTIONS(8875), 1, + ACTIONS(8846), 1, anon_sym_case, - ACTIONS(9138), 1, + ACTIONS(9156), 1, anon_sym_RBRACE, - STATE(5583), 1, + STATE(5330), 1, aux_sym_switch_body_repeat1, - STATE(5656), 1, + STATE(5434), 1, sym_comment, - STATE(7172), 2, + STATE(6972), 2, sym_switch_case, sym_switch_default, - [201706] = 6, + [198275] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5657), 1, + ACTIONS(9041), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9158), 1, + anon_sym_BQUOTE, + STATE(5435), 1, sym_comment, - STATE(5660), 1, - aux_sym_object_type_repeat1, - ACTIONS(9142), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9140), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201728] = 6, + STATE(5507), 1, + aux_sym_template_string_repeat1, + STATE(6137), 1, + sym_template_substitution, + ACTIONS(8515), 2, + sym__template_chars, + sym_escape_sequence, + [198301] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5658), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3064), 1, + sym_statement_block, + STATE(5436), 1, sym_comment, - ACTIONS(9142), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9140), 3, + ACTIONS(8834), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [201750] = 9, + [198323] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - ACTIONS(9144), 1, + ACTIONS(9160), 1, anon_sym_QMARK, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5229), 1, + STATE(5349), 1, sym__call_signature, - STATE(5659), 1, + STATE(5437), 1, sym_comment, - STATE(8017), 1, + STATE(7873), 1, sym_type_parameters, - [201778] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5660), 1, - sym_comment, - ACTIONS(9148), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9146), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201800] = 9, + [198351] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9150), 1, - anon_sym_export, - ACTIONS(9152), 1, - anon_sym_class, - ACTIONS(9154), 1, - anon_sym_abstract, - STATE(5661), 1, - sym_comment, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - [201828] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4395), 1, - anon_sym_DQUOTE, - ACTIONS(4397), 1, - anon_sym_SQUOTE, - ACTIONS(8813), 1, - sym_identifier, - STATE(1005), 1, - sym_nested_identifier, - STATE(1024), 1, - sym_string, - STATE(1090), 1, - sym__module, - STATE(5662), 1, + ACTIONS(9164), 1, + anon_sym_catch, + ACTIONS(9166), 1, + anon_sym_finally, + STATE(5438), 1, sym_comment, - [201856] = 9, + STATE(6113), 1, + sym_catch_clause, + STATE(7543), 1, + sym_finally_clause, + ACTIONS(9162), 2, + anon_sym_else, + anon_sym_while, + [198377] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4395), 1, + ACTIONS(4297), 1, anon_sym_DQUOTE, - ACTIONS(4397), 1, + ACTIONS(4299), 1, anon_sym_SQUOTE, - ACTIONS(8813), 1, + ACTIONS(8745), 1, sym_identifier, - STATE(1005), 1, + STATE(1389), 1, sym_nested_identifier, - STATE(1024), 1, + STATE(1508), 1, sym_string, - STATE(1072), 1, + STATE(1664), 1, sym__module, - STATE(5663), 1, + STATE(5439), 1, sym_comment, - [201884] = 6, + [198405] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5664), 1, - sym_comment, - STATE(5666), 1, - aux_sym_object_type_repeat1, - ACTIONS(9158), 2, + ACTIONS(8842), 1, + anon_sym_default, + ACTIONS(8846), 1, + anon_sym_case, + ACTIONS(9168), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9156), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201906] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5665), 1, + STATE(5440), 1, sym_comment, - STATE(5667), 1, - aux_sym_object_type_repeat1, - ACTIONS(9162), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9160), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [201928] = 6, + STATE(5446), 1, + aux_sym_switch_body_repeat1, + STATE(6972), 2, + sym_switch_case, + sym_switch_default, + [198431] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5666), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3140), 1, + sym_statement_block, + STATE(5441), 1, sym_comment, - ACTIONS(9162), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9160), 3, + ACTIONS(8801), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [201950] = 6, + [198453] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5667), 1, + STATE(5442), 1, sym_comment, - ACTIONS(9166), 2, + STATE(5450), 1, + aux_sym_object_type_repeat1, + ACTIONS(9172), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(9164), 3, + ACTIONS(9170), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [201972] = 6, + [198475] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5668), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3141), 1, + sym_statement_block, + STATE(5443), 1, sym_comment, - ACTIONS(9170), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9168), 3, + ACTIONS(8799), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [201994] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(9172), 1, - anon_sym_QMARK, - STATE(4942), 1, - sym_formal_parameters, - STATE(5298), 1, - sym__call_signature, - STATE(5669), 1, - sym_comment, - STATE(8017), 1, - sym_type_parameters, - [202022] = 9, + [198497] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, ACTIONS(9174), 1, sym_identifier, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5670), 1, + STATE(5444), 1, sym_comment, - STATE(7707), 1, + STATE(7418), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [202050] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [198525] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(5671), 1, - sym_comment, - STATE(5673), 1, - aux_sym_object_type_repeat1, - ACTIONS(9178), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9176), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [202072] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5672), 1, + ACTIONS(3272), 1, + anon_sym_LBRACE, + ACTIONS(7586), 1, + anon_sym_COLON, + ACTIONS(7588), 1, + anon_sym_DOT, + ACTIONS(8121), 1, + anon_sym_on, + ACTIONS(9176), 1, + sym_identifier, + STATE(4160), 1, + sym_ui_object_initializer, + STATE(5445), 1, sym_comment, - STATE(5674), 1, - aux_sym_object_type_repeat1, - ACTIONS(9182), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9180), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [202094] = 6, + [198553] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5673), 1, - sym_comment, - ACTIONS(9182), 2, + ACTIONS(8842), 1, + anon_sym_default, + ACTIONS(8846), 1, + anon_sym_case, + ACTIONS(9178), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9180), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [202116] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5674), 1, + STATE(5330), 1, + aux_sym_switch_body_repeat1, + STATE(5446), 1, sym_comment, - ACTIONS(9186), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9184), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [202138] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + STATE(6972), 2, + sym_switch_case, + sym_switch_default, + [198579] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(5675), 1, - sym_comment, - STATE(5678), 1, - aux_sym_object_type_repeat1, - ACTIONS(9190), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9188), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [202160] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8673), 1, - anon_sym_DOT, - ACTIONS(8675), 1, - anon_sym_LT, - ACTIONS(9192), 1, - anon_sym_LBRACE, - STATE(5676), 1, + ACTIONS(4297), 1, + anon_sym_DQUOTE, + ACTIONS(4299), 1, + anon_sym_SQUOTE, + ACTIONS(8745), 1, + sym_identifier, + STATE(1389), 1, + sym_nested_identifier, + STATE(1508), 1, + sym_string, + STATE(1649), 1, + sym__module, + STATE(5447), 1, sym_comment, - STATE(7309), 1, - sym_type_arguments, - ACTIONS(9194), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [202186] = 6, + [198607] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5677), 1, + ACTIONS(9180), 1, + anon_sym_DOT, + STATE(5448), 1, sym_comment, - STATE(5679), 1, - aux_sym_object_type_repeat1, - ACTIONS(9198), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9196), 3, + ACTIONS(8509), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [202208] = 6, + [198627] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5678), 1, + STATE(5449), 1, sym_comment, - ACTIONS(9198), 2, + STATE(5457), 1, + aux_sym_object_type_repeat1, + ACTIONS(9184), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(9196), 3, + ACTIONS(9182), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [202230] = 6, + [198649] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, + STATE(5315), 1, aux_sym_object_type_repeat1, - STATE(5679), 1, + STATE(5450), 1, sym_comment, - ACTIONS(9202), 2, + ACTIONS(9184), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(9200), 3, + ACTIONS(9182), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [202252] = 9, + [198671] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(9204), 1, + ACTIONS(9186), 1, anon_sym_QMARK, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5680), 1, + STATE(5451), 1, sym_comment, - STATE(7967), 1, + STATE(7263), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [202280] = 6, + [198699] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5681), 1, + ACTIONS(3272), 1, + anon_sym_LBRACE, + ACTIONS(7586), 1, + anon_sym_COLON, + ACTIONS(7588), 1, + anon_sym_DOT, + ACTIONS(8121), 1, + anon_sym_on, + ACTIONS(9188), 1, + sym_identifier, + STATE(4160), 1, + sym_ui_object_initializer, + STATE(5452), 1, sym_comment, - STATE(5685), 1, - aux_sym_object_type_repeat1, - ACTIONS(9208), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9206), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [202302] = 9, + [198727] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9210), 1, - anon_sym_export, - ACTIONS(9212), 1, - anon_sym_class, - ACTIONS(9214), 1, - anon_sym_abstract, - STATE(5682), 1, + ACTIONS(5646), 1, + anon_sym_COMMA, + STATE(5453), 1, sym_comment, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - [202330] = 6, + STATE(5475), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(9190), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [198749] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3161), 1, + STATE(3032), 1, sym_statement_block, - STATE(5683), 1, + STATE(5454), 1, sym_comment, - ACTIONS(8615), 4, + ACTIONS(8832), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [202352] = 6, + [198771] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5684), 1, + ACTIONS(9194), 1, + anon_sym_property, + STATE(5455), 1, sym_comment, - STATE(5686), 1, - aux_sym_object_type_repeat1, - ACTIONS(9218), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9216), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [202374] = 6, + STATE(5484), 1, + aux_sym_ui_property_repeat1, + STATE(6103), 1, + sym_ui_property_modifier, + ACTIONS(9192), 3, + anon_sym_default, + anon_sym_readonly, + anon_sym_required, + [198795] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5685), 1, + ACTIONS(3768), 1, + anon_sym_LBRACE, + ACTIONS(8941), 1, + anon_sym_LBRACK, + ACTIONS(9196), 1, + sym_identifier, + STATE(5456), 1, sym_comment, - ACTIONS(9218), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9216), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [202396] = 6, + STATE(6868), 1, + sym__destructuring_pattern, + STATE(4776), 2, + sym_object_pattern, + sym_array_pattern, + [198821] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, + STATE(5315), 1, aux_sym_object_type_repeat1, - STATE(5686), 1, + STATE(5457), 1, sym_comment, - ACTIONS(9222), 2, + ACTIONS(9200), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(9220), 3, + ACTIONS(9198), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [202418] = 6, + [198843] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5544), 1, - aux_sym_object_type_repeat1, - STATE(5687), 1, + STATE(5458), 1, sym_comment, - ACTIONS(9226), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9224), 3, - sym__automatic_semicolon, + ACTIONS(5210), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [202440] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(7865), 1, anon_sym_LT, - ACTIONS(9228), 1, anon_sym_QMARK, - STATE(5514), 1, + [198861] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, + anon_sym_LT, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(9202), 1, + sym_identifier, + STATE(5340), 1, sym_formal_parameters, - STATE(5688), 1, + STATE(5459), 1, sym_comment, - STATE(7713), 1, + STATE(7610), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [202468] = 6, + [198889] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5668), 1, - aux_sym_object_type_repeat1, - STATE(5689), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3006), 1, + sym_statement_block, + STATE(5460), 1, sym_comment, - ACTIONS(9226), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9224), 3, + ACTIONS(8834), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [202490] = 9, + [198911] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(9230), 1, + ACTIONS(9204), 1, anon_sym_QMARK, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5690), 1, + STATE(5461), 1, sym_comment, - STATE(7669), 1, + STATE(7182), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [202518] = 4, + [198939] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5691), 1, + STATE(5462), 1, sym_comment, - ACTIONS(5208), 6, - anon_sym_EQ, + ACTIONS(9206), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [202536] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9232), 1, - anon_sym_BQUOTE, - ACTIONS(9234), 1, - anon_sym_DOLLAR_LBRACE, - STATE(5692), 1, - sym_comment, - STATE(5728), 1, - aux_sym_template_string_repeat1, - STATE(6550), 1, - sym_template_substitution, - ACTIONS(8486), 2, - sym__template_chars, - sym_escape_sequence, - [202562] = 9, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [198957] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(4501), 1, anon_sym_LPAREN, - ACTIONS(9236), 1, - anon_sym_QMARK, - STATE(4942), 1, - sym_formal_parameters, - STATE(5511), 1, - sym__call_signature, - STATE(5693), 1, + ACTIONS(8265), 1, + anon_sym_DOT, + ACTIONS(9208), 1, + anon_sym_COMMA, + ACTIONS(9210), 1, + anon_sym_GT, + STATE(4980), 1, + sym_arguments, + STATE(5463), 1, sym_comment, - STATE(8017), 1, - sym_type_parameters, - [202590] = 8, + STATE(7114), 1, + aux_sym_type_arguments_repeat1, + [198985] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, - anon_sym_default, - ACTIONS(8875), 1, - anon_sym_case, - ACTIONS(9238), 1, - anon_sym_RBRACE, - STATE(5583), 1, - aux_sym_switch_body_repeat1, - STATE(5694), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(9212), 1, + anon_sym_COMMA, + ACTIONS(9214), 1, + anon_sym_GT, + STATE(5464), 1, sym_comment, - STATE(7172), 2, - sym_switch_case, - sym_switch_default, - [202616] = 9, + STATE(7111), 1, + aux_sym_type_arguments_repeat1, + [199013] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4289), 1, - anon_sym_DQUOTE, - ACTIONS(4291), 1, - anon_sym_SQUOTE, - ACTIONS(8743), 1, + ACTIONS(9216), 1, sym_identifier, - STATE(1325), 1, - sym_nested_identifier, - STATE(1610), 1, - sym_string, - STATE(1668), 1, - sym__module, - STATE(5695), 1, + STATE(5465), 1, sym_comment, - [202644] = 9, + ACTIONS(7712), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [199033] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4289), 1, + ACTIONS(4423), 1, anon_sym_DQUOTE, - ACTIONS(4291), 1, + ACTIONS(4425), 1, anon_sym_SQUOTE, - ACTIONS(8743), 1, + ACTIONS(8691), 1, sym_identifier, - STATE(1325), 1, + STATE(1040), 1, sym_nested_identifier, - STATE(1610), 1, + STATE(1061), 1, sym_string, - STATE(1773), 1, + STATE(1359), 1, sym__module, - STATE(5696), 1, - sym_comment, - [202672] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9240), 1, - anon_sym_export, - ACTIONS(9242), 1, - anon_sym_class, - ACTIONS(9244), 1, - anon_sym_abstract, - STATE(5697), 1, + STATE(5466), 1, sym_comment, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6589), 1, - sym_decorator, - [202700] = 6, + [199061] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9249), 1, - anon_sym_property, - STATE(6330), 1, - sym_ui_property_modifier, - STATE(5698), 2, - sym_comment, - aux_sym_ui_property_repeat1, - ACTIONS(9246), 3, - anon_sym_default, - anon_sym_readonly, - anon_sym_required, - [202722] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2275), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - ACTIONS(9251), 1, - sym_identifier, - STATE(5514), 1, + ACTIONS(9218), 1, + anon_sym_QMARK, + STATE(4747), 1, sym_formal_parameters, - STATE(5699), 1, + STATE(5467), 1, sym_comment, - STATE(7949), 1, + STATE(6759), 1, sym__call_signature, - STATE(8189), 1, + STATE(7660), 1, sym_type_parameters, - [202750] = 9, + [199089] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(9253), 1, - anon_sym_QMARK, - STATE(4942), 1, + ACTIONS(9220), 1, + sym_identifier, + STATE(5340), 1, sym_formal_parameters, - STATE(5700), 1, + STATE(5468), 1, sym_comment, - STATE(6131), 1, + STATE(7268), 1, sym__call_signature, - STATE(8017), 1, + STATE(7801), 1, sym_type_parameters, - [202778] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9257), 1, - anon_sym_AT, - STATE(6589), 1, - sym_decorator, - STATE(5701), 2, - sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(9255), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [202800] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [199117] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8833), 1, - anon_sym_COLON, - STATE(5702), 1, - sym_comment, - ACTIONS(8182), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(7701), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [202822] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(9260), 1, - anon_sym_QMARK, - STATE(5514), 1, - sym_formal_parameters, - STATE(5703), 1, + ACTIONS(4423), 1, + anon_sym_DQUOTE, + ACTIONS(4425), 1, + anon_sym_SQUOTE, + ACTIONS(8691), 1, + sym_identifier, + STATE(1040), 1, + sym_nested_identifier, + STATE(1061), 1, + sym_string, + STATE(1302), 1, + sym__module, + STATE(5469), 1, sym_comment, - STATE(7777), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [202850] = 4, + [199145] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5704), 1, - sym_comment, - ACTIONS(9262), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(8842), 1, + anon_sym_default, + ACTIONS(8846), 1, + anon_sym_case, + ACTIONS(9222), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [202868] = 4, + STATE(5470), 1, + sym_comment, + STATE(5476), 1, + aux_sym_switch_body_repeat1, + STATE(6972), 2, + sym_switch_case, + sym_switch_default, + [199171] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5705), 1, + STATE(5471), 1, sym_comment, - ACTIONS(9264), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(5478), 1, + aux_sym_object_type_repeat1, + ACTIONS(9226), 2, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [202886] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5706), 1, - sym_comment, - ACTIONS(9266), 6, + ACTIONS(9224), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [202904] = 5, + [199193] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9268), 1, - anon_sym_COMMA, - STATE(5707), 2, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(9228), 1, + anon_sym_QMARK, + STATE(4747), 1, + sym_formal_parameters, + STATE(5472), 1, sym_comment, - aux_sym_sequence_expression_repeat1, - ACTIONS(6003), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [202924] = 9, + STATE(5736), 1, + sym__call_signature, + STATE(7660), 1, + sym_type_parameters, + [199221] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(8578), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(9271), 1, + ACTIONS(9230), 1, sym_identifier, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5708), 1, + STATE(5473), 1, sym_comment, - STATE(7747), 1, + STATE(7539), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [202952] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9273), 1, - anon_sym_BQUOTE, - STATE(5549), 1, - aux_sym_template_string_repeat1, - STATE(5709), 1, - sym_comment, - STATE(6550), 1, - sym_template_substitution, - ACTIONS(8486), 2, - sym__template_chars, - sym_escape_sequence, - [202978] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5687), 1, - aux_sym_object_type_repeat1, - STATE(5710), 1, - sym_comment, - ACTIONS(9277), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(9275), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [203000] = 9, + [199249] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(9279), 1, + ACTIONS(9232), 1, anon_sym_export, - ACTIONS(9281), 1, + ACTIONS(9234), 1, anon_sym_class, - ACTIONS(9283), 1, + ACTIONS(9236), 1, anon_sym_abstract, - STATE(5701), 1, + STATE(5385), 1, aux_sym_export_statement_repeat1, - STATE(5711), 1, + STATE(5474), 1, sym_comment, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - [203028] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(9285), 1, - anon_sym_QMARK, - STATE(5514), 1, - sym_formal_parameters, - STATE(5712), 1, - sym_comment, - STATE(7666), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [203056] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(9287), 1, - anon_sym_COMMA, - ACTIONS(9289), 1, - anon_sym_GT, - STATE(5713), 1, - sym_comment, - STATE(6950), 1, - aux_sym_type_arguments_repeat1, - [203084] = 9, + [199277] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_DOT, - ACTIONS(9291), 1, + ACTIONS(9238), 1, anon_sym_COMMA, - ACTIONS(9293), 1, - anon_sym_GT, - STATE(5180), 1, - sym_arguments, - STATE(5714), 1, + STATE(5475), 2, sym_comment, - STATE(6838), 1, - aux_sym_type_arguments_repeat1, - [203112] = 8, + aux_sym_sequence_expression_repeat1, + ACTIONS(5728), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [199297] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8871), 1, + ACTIONS(8842), 1, anon_sym_default, - ACTIONS(8875), 1, + ACTIONS(8846), 1, anon_sym_case, - ACTIONS(9295), 1, + ACTIONS(9241), 1, anon_sym_RBRACE, - STATE(5694), 1, + STATE(5330), 1, aux_sym_switch_body_repeat1, - STATE(5715), 1, + STATE(5476), 1, sym_comment, - STATE(7172), 2, + STATE(6972), 2, sym_switch_case, sym_switch_default, - [203138] = 9, + [199323] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(9297), 1, - anon_sym_QMARK, - STATE(5514), 1, - sym_formal_parameters, - STATE(5716), 1, + STATE(5477), 1, sym_comment, - STATE(7556), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [203166] = 9, + STATE(5481), 1, + aux_sym_object_type_repeat1, + ACTIONS(9245), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9243), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199345] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5478), 1, + sym_comment, + ACTIONS(9245), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9243), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199367] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(9299), 1, - anon_sym_QMARK, - STATE(5514), 1, + ACTIONS(8593), 1, + anon_sym_LPAREN, + ACTIONS(9247), 1, + sym_identifier, + STATE(5340), 1, sym_formal_parameters, - STATE(5717), 1, + STATE(5479), 1, sym_comment, - STATE(7488), 1, + STATE(7539), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [203194] = 9, + [199395] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(9301), 1, - anon_sym_QMARK, - STATE(5514), 1, - sym_formal_parameters, - STATE(5718), 1, + STATE(5426), 1, + aux_sym_object_type_repeat1, + STATE(5480), 1, sym_comment, - STATE(7474), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [203222] = 7, + ACTIONS(9251), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9249), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199417] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(5719), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5481), 1, sym_comment, - ACTIONS(9303), 3, - anon_sym_EQ, + ACTIONS(9255), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9253), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [203246] = 9, + anon_sym_SEMI, + [199439] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(9305), 1, - anon_sym_QMARK, - STATE(5514), 1, - sym_formal_parameters, - STATE(5720), 1, + ACTIONS(8842), 1, + anon_sym_default, + ACTIONS(8846), 1, + anon_sym_case, + ACTIONS(9257), 1, + anon_sym_RBRACE, + STATE(5434), 1, + aux_sym_switch_body_repeat1, + STATE(5482), 1, sym_comment, - STATE(7455), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [203274] = 9, + STATE(6972), 2, + sym_switch_case, + sym_switch_default, + [199465] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(4381), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(4383), 1, anon_sym_SQUOTE, - ACTIONS(8560), 1, + ACTIONS(8719), 1, sym_identifier, - STATE(5721), 1, - sym_comment, - STATE(5943), 1, + STATE(1010), 1, sym_nested_identifier, - STATE(6516), 1, + STATE(1014), 1, sym_string, - STATE(8006), 1, + STATE(1118), 1, sym__module, - [203302] = 9, - ACTIONS(3), 1, + STATE(5483), 1, + sym_comment, + [199493] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(9262), 1, + anon_sym_property, + STATE(6103), 1, + sym_ui_property_modifier, + STATE(5484), 2, + sym_comment, + aux_sym_ui_property_repeat1, + ACTIONS(9259), 3, + anon_sym_default, + anon_sym_readonly, + anon_sym_required, + [199515] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2275), 1, - anon_sym_LT, - ACTIONS(8578), 1, - anon_sym_LPAREN, - ACTIONS(9307), 1, - sym_identifier, - STATE(5514), 1, - sym_formal_parameters, - STATE(5722), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5485), 1, sym_comment, - STATE(7707), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [203330] = 9, + ACTIONS(8735), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [199533] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, + ACTIONS(4381), 1, anon_sym_DQUOTE, - ACTIONS(2269), 1, + ACTIONS(4383), 1, anon_sym_SQUOTE, - ACTIONS(8560), 1, + ACTIONS(8719), 1, sym_identifier, - STATE(5723), 1, - sym_comment, - STATE(5943), 1, + STATE(1010), 1, sym_nested_identifier, - STATE(6516), 1, + STATE(1014), 1, sym_string, - STATE(8151), 1, + STATE(1174), 1, sym__module, - [203358] = 9, + STATE(5486), 1, + sym_comment, + [199561] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9309), 1, - anon_sym_export, - ACTIONS(9311), 1, - anon_sym_class, - ACTIONS(9313), 1, - anon_sym_abstract, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(5724), 1, + STATE(5487), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [203386] = 9, + STATE(5496), 1, + aux_sym_object_type_repeat1, + ACTIONS(9266), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9264), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199583] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5488), 1, + sym_comment, + ACTIONS(9268), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [199601] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(9315), 1, + ACTIONS(9270), 1, anon_sym_export, - ACTIONS(9317), 1, + ACTIONS(9272), 1, anon_sym_class, - ACTIONS(9319), 1, + ACTIONS(9274), 1, anon_sym_abstract, - STATE(5701), 1, + STATE(5385), 1, aux_sym_export_statement_repeat1, - STATE(5725), 1, + STATE(5489), 1, sym_comment, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - [203414] = 4, + [199629] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5726), 1, + ACTIONS(8842), 1, + anon_sym_default, + ACTIONS(8846), 1, + anon_sym_case, + ACTIONS(9276), 1, + anon_sym_RBRACE, + STATE(5417), 1, + aux_sym_switch_body_repeat1, + STATE(5490), 1, + sym_comment, + STATE(6972), 2, + sym_switch_case, + sym_switch_default, + [199655] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5491), 1, sym_comment, - ACTIONS(9321), 6, + ACTIONS(9278), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [203432] = 9, + [199673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - ACTIONS(9323), 1, - anon_sym_QMARK, - STATE(4942), 1, - sym_formal_parameters, - STATE(5727), 1, + STATE(5492), 1, sym_comment, - STATE(7341), 1, - sym__call_signature, - STATE(8017), 1, - sym_type_parameters, - [203460] = 8, + ACTIONS(9280), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [199691] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9325), 1, - anon_sym_BQUOTE, - STATE(5549), 1, - aux_sym_template_string_repeat1, - STATE(5728), 1, + STATE(5493), 1, sym_comment, - STATE(6550), 1, - sym_template_substitution, - ACTIONS(8486), 2, - sym__template_chars, - sym_escape_sequence, - [203486] = 8, + STATE(5500), 1, + aux_sym_object_type_repeat1, + ACTIONS(9284), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9282), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199713] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9234), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9327), 1, - anon_sym_BQUOTE, - STATE(5709), 1, - aux_sym_template_string_repeat1, - STATE(5729), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(8817), 1, + anon_sym_EQ, + STATE(5494), 1, sym_comment, - STATE(6550), 1, - sym_template_substitution, - ACTIONS(8486), 2, - sym__template_chars, - sym_escape_sequence, - [203512] = 6, + STATE(6298), 1, + sym_type_annotation, + STATE(7483), 1, + sym__initializer, + ACTIONS(9286), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [199739] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(8715), 1, + sym_identifier, + STATE(5495), 1, + sym_comment, + STATE(5665), 1, + sym_nested_identifier, + STATE(6162), 1, + sym_string, + STATE(7250), 1, + sym__module, + [199767] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5633), 1, - anon_sym_COMMA, - STATE(5707), 1, - aux_sym_sequence_expression_repeat1, - STATE(5730), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5496), 1, sym_comment, - ACTIONS(9329), 4, + ACTIONS(9284), 2, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_PIPE_RBRACE, + ACTIONS(9282), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199789] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5497), 1, + sym_comment, + ACTIONS(8707), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - [203534] = 9, + [199807] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(9331), 1, + ACTIONS(9288), 1, + anon_sym_LBRACE, + ACTIONS(9290), 1, anon_sym_COMMA, - ACTIONS(9333), 1, - anon_sym_GT, - STATE(5731), 1, + STATE(5498), 1, sym_comment, - STATE(7146), 1, - aux_sym_type_arguments_repeat1, - [203562] = 9, + STATE(6915), 1, + aux_sym_implements_clause_repeat1, + [199835] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_DOT, - ACTIONS(9335), 1, - anon_sym_COMMA, - ACTIONS(9337), 1, - anon_sym_GT, - STATE(5180), 1, - sym_arguments, - STATE(5732), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(8715), 1, + sym_identifier, + STATE(5499), 1, sym_comment, - STATE(7124), 1, - aux_sym_type_arguments_repeat1, - [203590] = 9, + STATE(5665), 1, + sym_nested_identifier, + STATE(6162), 1, + sym_string, + STATE(7295), 1, + sym__module, + [199863] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5500), 1, + sym_comment, + ACTIONS(9294), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9292), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199885] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2275), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(8593), 1, anon_sym_LPAREN, - ACTIONS(9339), 1, - anon_sym_QMARK, - STATE(4942), 1, + ACTIONS(9296), 1, + sym_identifier, + STATE(5340), 1, sym_formal_parameters, - STATE(5733), 1, + STATE(5501), 1, sym_comment, - STATE(5997), 1, + STATE(7610), 1, sym__call_signature, - STATE(8017), 1, + STATE(7801), 1, sym_type_parameters, - [203618] = 6, + [199913] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3240), 1, - sym_statement_block, - STATE(5734), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5502), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(9300), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9298), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203640] = 6, + [199935] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3155), 1, - sym_statement_block, - STATE(5735), 1, + STATE(5503), 1, sym_comment, - ACTIONS(8613), 4, + STATE(5518), 1, + aux_sym_object_type_repeat1, + ACTIONS(9300), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9298), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203662] = 6, + [199957] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3252), 1, - sym_statement_block, - STATE(5736), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5504), 1, sym_comment, - ACTIONS(8617), 4, + ACTIONS(9304), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9302), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203684] = 9, + [199979] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9341), 1, - anon_sym_export, - ACTIONS(9343), 1, - anon_sym_class, - ACTIONS(9345), 1, - anon_sym_abstract, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(5737), 1, + STATE(5403), 1, + aux_sym_object_type_repeat1, + STATE(5505), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [203712] = 6, + ACTIONS(9308), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9306), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200001] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3266), 1, - sym_statement_block, - STATE(5738), 1, + STATE(5506), 1, sym_comment, - ACTIONS(8599), 4, + ACTIONS(6991), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [203734] = 9, + anon_sym_DOT, + [200019] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - ACTIONS(9347), 1, - anon_sym_QMARK, - STATE(5049), 1, - sym_formal_parameters, - STATE(5646), 1, - sym__call_signature, - STATE(5739), 1, + ACTIONS(9041), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9310), 1, + anon_sym_BQUOTE, + STATE(5507), 1, sym_comment, - STATE(7675), 1, - sym_type_parameters, - [203762] = 6, + STATE(5509), 1, + aux_sym_template_string_repeat1, + STATE(6137), 1, + sym_template_substitution, + ACTIONS(8515), 2, + sym__template_chars, + sym_escape_sequence, + [200045] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3228), 1, - sym_statement_block, - STATE(5740), 1, + STATE(5502), 1, + aux_sym_object_type_repeat1, + STATE(5508), 1, sym_comment, - ACTIONS(8617), 4, + ACTIONS(9314), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9312), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203784] = 6, + [200067] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3154), 1, - sym_statement_block, - STATE(5741), 1, + ACTIONS(9319), 1, + anon_sym_BQUOTE, + ACTIONS(9321), 1, + anon_sym_DOLLAR_LBRACE, + STATE(6137), 1, + sym_template_substitution, + ACTIONS(9316), 2, + sym__template_chars, + sym_escape_sequence, + STATE(5509), 2, + sym_comment, + aux_sym_template_string_repeat1, + [200091] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5292), 1, + aux_sym_object_type_repeat1, + STATE(5510), 1, sym_comment, - ACTIONS(8611), 4, + ACTIONS(9304), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9302), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203806] = 8, + [200113] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5742), 1, + STATE(5504), 1, + aux_sym_object_type_repeat1, + STATE(5511), 1, sym_comment, - STATE(6017), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [203831] = 7, + ACTIONS(9326), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200135] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(5743), 1, + STATE(5512), 1, sym_comment, - ACTIONS(9349), 2, + ACTIONS(8541), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - [203854] = 8, + anon_sym_DOT, + [200153] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5744), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5513), 1, sym_comment, - STATE(7769), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [203879] = 6, + ACTIONS(9330), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9328), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200175] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5745), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5514), 1, sym_comment, - STATE(7185), 1, - sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9334), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203900] = 6, + [200197] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5746), 1, + STATE(5513), 1, + aux_sym_object_type_repeat1, + STATE(5515), 1, sym_comment, - STATE(6812), 1, - sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9334), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9332), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203921] = 8, + [200219] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(9357), 1, - anon_sym_as, - ACTIONS(9359), 1, - anon_sym_RBRACK, - STATE(5747), 1, + ACTIONS(9338), 1, + anon_sym_QMARK, + STATE(5516), 1, sym_comment, - [203946] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9336), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [200245] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(9361), 1, - sym_identifier, - STATE(5748), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(8265), 1, + anon_sym_DOT, + ACTIONS(9340), 1, + anon_sym_COMMA, + ACTIONS(9342), 1, + anon_sym_GT, + STATE(4980), 1, + sym_arguments, + STATE(5517), 1, sym_comment, - STATE(6566), 1, - sym_string, - STATE(8478), 1, - sym__module_export_name, - [203971] = 4, + STATE(7097), 1, + aux_sym_type_arguments_repeat1, + [200273] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5749), 1, + STATE(5315), 1, + aux_sym_object_type_repeat1, + STATE(5518), 1, sym_comment, - ACTIONS(9363), 5, + ACTIONS(9346), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9344), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [203988] = 6, + [200295] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5750), 1, + STATE(5514), 1, + aux_sym_object_type_repeat1, + STATE(5519), 1, sym_comment, - STATE(7084), 1, - sym__initializer, - ACTIONS(9365), 3, + ACTIONS(9350), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(9348), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204009] = 6, + [200317] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5751), 1, - sym_comment, - STATE(7179), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(9352), 1, anon_sym_COMMA, - anon_sym_SEMI, - [204030] = 8, + ACTIONS(9354), 1, + anon_sym_GT, + STATE(5520), 1, + sym_comment, + STATE(7118), 1, + aux_sym_type_arguments_repeat1, + [200345] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5648), 1, - sym__call_signature, - STATE(5752), 1, + STATE(5521), 1, sym_comment, - STATE(7675), 1, - sym_type_parameters, - [204055] = 6, + ACTIONS(6778), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [200362] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5753), 1, + ACTIONS(9356), 1, + anon_sym_BQUOTE, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9360), 1, + sym__template_chars, + STATE(5522), 1, sym_comment, - STATE(6809), 1, - sym__initializer, - ACTIONS(9355), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [204076] = 8, + STATE(5821), 1, + aux_sym_template_literal_type_repeat1, + STATE(6984), 1, + sym_template_type, + [200387] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5754), 1, + STATE(5523), 1, sym_comment, - STATE(7688), 1, + STATE(7619), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [204101] = 6, + [200412] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5755), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5524), 1, sym_comment, - STATE(7178), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [204122] = 4, + STATE(7620), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [200437] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5756), 1, + STATE(5525), 1, sym_comment, - ACTIONS(9369), 5, + ACTIONS(9362), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [204139] = 8, + [200454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5208), 1, - anon_sym_COLON, - ACTIONS(7883), 1, - anon_sym_EQ, - ACTIONS(9371), 1, + STATE(5526), 1, + sym_comment, + ACTIONS(9364), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9373), 1, anon_sym_RBRACE, - STATE(5757), 1, - sym_comment, - STATE(7141), 1, - aux_sym_object_pattern_repeat1, - [204164] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [200471] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5758), 1, + STATE(5527), 1, sym_comment, - STATE(6807), 1, + STATE(6740), 1, sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204185] = 6, + [200492] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5759), 1, + STATE(5528), 1, sym_comment, - STATE(6806), 1, - sym__initializer, - ACTIONS(9355), 3, + ACTIONS(7071), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [204206] = 8, + anon_sym_PIPE_RBRACE, + [200509] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5760), 1, + STATE(5529), 1, sym_comment, - STATE(7177), 1, + STATE(5635), 1, sym__call_signature, - STATE(8017), 1, + STATE(7873), 1, sym_type_parameters, - [204231] = 6, + [200534] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5761), 1, + STATE(5530), 1, sym_comment, - STATE(7354), 1, + STATE(6775), 1, sym__initializer, - ACTIONS(9375), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204252] = 6, + [200555] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5762), 1, + ACTIONS(8965), 1, + anon_sym_COLON, + ACTIONS(9368), 1, + anon_sym_EQ_GT, + STATE(5531), 1, sym_comment, - STATE(7154), 1, - sym__initializer, - ACTIONS(9377), 3, + STATE(7779), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [200576] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5532), 1, + sym_comment, + ACTIONS(9268), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [204273] = 8, + [200593] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9311), 1, - anon_sym_class, - ACTIONS(9313), 1, - anon_sym_abstract, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(5763), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5533), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [204298] = 8, + STATE(6633), 1, + sym__initializer, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [200614] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, sym_formal_parameters, - STATE(5764), 1, + STATE(5534), 1, sym_comment, - STATE(7828), 1, + STATE(5627), 1, sym__call_signature, - STATE(8189), 1, + STATE(7873), 1, sym_type_parameters, - [204323] = 8, + [200639] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5765), 1, + STATE(5535), 1, sym_comment, - STATE(7827), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [204348] = 6, + ACTIONS(9278), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [200656] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5766), 1, + STATE(5536), 1, sym_comment, - STATE(7322), 1, + STATE(6833), 1, sym__initializer, - ACTIONS(9379), 3, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204369] = 8, + [200677] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5683), 1, - sym__call_signature, - STATE(5767), 1, + STATE(5537), 1, sym_comment, - STATE(7675), 1, + STATE(5622), 1, + sym__call_signature, + STATE(7873), 1, sym_type_parameters, - [204394] = 6, + [200702] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5768), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5538), 1, sym_comment, - STATE(6804), 1, - sym__initializer, - ACTIONS(9381), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [204415] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(7260), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [200727] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9383), 1, - sym_identifier, - ACTIONS(9385), 1, - anon_sym_RPAREN, - STATE(5769), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9360), 1, + sym__template_chars, + ACTIONS(9375), 1, + anon_sym_BQUOTE, + STATE(5539), 1, sym_comment, - STATE(7163), 1, - sym_ui_signal_parameter, - STATE(8216), 1, - sym_nested_identifier, - STATE(8474), 1, - sym_nested_type_identifier, - [204440] = 4, + STATE(5821), 1, + aux_sym_template_literal_type_repeat1, + STATE(6984), 1, + sym_template_type, + [200752] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5770), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9360), 1, + sym__template_chars, + ACTIONS(9377), 1, + anon_sym_BQUOTE, + STATE(5540), 1, sym_comment, - ACTIONS(9387), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [204457] = 4, + STATE(5634), 1, + aux_sym_template_literal_type_repeat1, + STATE(6984), 1, + sym_template_type, + [200777] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5771), 1, + STATE(5541), 1, sym_comment, - ACTIONS(9389), 5, + ACTIONS(9379), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [204474] = 4, + [200794] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5772), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5542), 1, sym_comment, - ACTIONS(9391), 5, + STATE(6658), 1, + sym__initializer, + ACTIONS(9381), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [204491] = 8, + [200815] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5773), 1, + STATE(5543), 1, sym_comment, - STATE(7805), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [204516] = 4, + ACTIONS(9383), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [200832] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5774), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5544), 1, sym_comment, - ACTIONS(8607), 5, + STATE(6662), 1, + sym__initializer, + ACTIONS(9381), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [204533] = 7, + [200853] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(8089), 1, anon_sym_extends, - STATE(5775), 1, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5545), 1, sym_comment, - ACTIONS(9393), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [204556] = 8, + ACTIONS(9385), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200876] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5776), 1, - sym_comment, - STATE(5955), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [204581] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5777), 1, + STATE(5546), 1, sym_comment, - STATE(8042), 1, + STATE(5614), 1, sym__call_signature, - STATE(8189), 1, + STATE(7873), 1, sym_type_parameters, - [204606] = 6, + [200901] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5778), 1, + STATE(5547), 1, sym_comment, - STATE(7166), 1, + STATE(6893), 1, sym__initializer, - ACTIONS(9395), 3, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204627] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5779), 1, - sym_comment, - STATE(6003), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [204652] = 6, + [200922] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5780), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5548), 1, sym_comment, - STATE(6817), 1, - sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9389), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [204673] = 4, + [200945] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5781), 1, + STATE(5549), 1, sym_comment, - ACTIONS(8609), 5, + ACTIONS(9280), 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, - [204690] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4942), 1, - sym_formal_parameters, - STATE(5782), 1, - sym_comment, - STATE(6021), 1, - sym__call_signature, - STATE(8017), 1, - sym_type_parameters, - [204715] = 4, + [200962] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5783), 1, - sym_comment, - ACTIONS(9397), 5, - anon_sym_EQ, + ACTIONS(9391), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [204732] = 6, + ACTIONS(9393), 1, + anon_sym_SEMI, + ACTIONS(9395), 1, + sym__automatic_semicolon, + ACTIONS(9397), 1, + sym__function_signature_automatic_semicolon, + STATE(1038), 1, + sym_statement_block, + STATE(5550), 1, + sym_comment, + [200987] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5784), 1, + STATE(5551), 1, sym_comment, - STATE(7186), 1, + STATE(6609), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9381), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204753] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9399), 1, - anon_sym_BQUOTE, - ACTIONS(9401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9403), 1, - sym__template_chars, - STATE(5785), 1, - sym_comment, - STATE(5891), 1, - aux_sym_template_literal_type_repeat1, - STATE(7022), 1, - sym_template_type, - [204778] = 8, + [201008] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9317), 1, - anon_sym_class, - ACTIONS(9319), 1, - anon_sym_abstract, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(5786), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5552), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [204803] = 6, + STATE(7278), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [201033] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5787), 1, + STATE(5553), 1, sym_comment, - STATE(7187), 1, + STATE(6677), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204824] = 4, + [201054] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5788), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5554), 1, sym_comment, - ACTIONS(8607), 5, + STATE(6960), 1, + sym__initializer, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [204841] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5789), 1, - sym_comment, - STATE(6080), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [204866] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5790), 1, - sym_comment, - ACTIONS(6338), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [204883] = 6, + [201075] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5791), 1, + STATE(5555), 1, sym_comment, - STATE(7189), 1, + STATE(6974), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204904] = 4, + [201096] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5792), 1, - sym_comment, - ACTIONS(6322), 5, + ACTIONS(8817), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [204921] = 6, + ACTIONS(9401), 1, + anon_sym_COMMA, + ACTIONS(9403), 1, + anon_sym_RBRACE, + STATE(5556), 1, + sym_comment, + STATE(7023), 1, + aux_sym_enum_body_repeat1, + STATE(7161), 1, + sym__initializer, + [201121] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5793), 1, + STATE(5557), 1, sym_comment, - STATE(6816), 1, + STATE(6685), 1, sym__initializer, - ACTIONS(9405), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204942] = 8, + [201142] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4942), 1, - sym_formal_parameters, - STATE(5794), 1, + STATE(5558), 1, sym_comment, - STATE(7340), 1, - sym__call_signature, - STATE(8017), 1, - sym_type_parameters, - [204967] = 8, + ACTIONS(9206), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [201159] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5795), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5559), 1, sym_comment, - STATE(5951), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [204992] = 4, + STATE(6977), 1, + sym__initializer, + ACTIONS(9366), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [201180] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5796), 1, - sym_comment, - ACTIONS(9407), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(9393), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [205009] = 4, + ACTIONS(9395), 1, + sym__automatic_semicolon, + ACTIONS(9397), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9405), 1, + anon_sym_LBRACE, + STATE(348), 1, + sym_statement_block, + STATE(5560), 1, + sym_comment, + [201205] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5797), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5561), 1, sym_comment, - ACTIONS(9407), 5, + ACTIONS(9407), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [205026] = 8, + [201228] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5798), 1, + STATE(5562), 1, sym_comment, - STATE(8111), 1, + STATE(7312), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [205051] = 4, + [201253] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5799), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5563), 1, sym_comment, - ACTIONS(9409), 5, + STATE(6678), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [205068] = 4, + [201274] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5800), 1, + STATE(5564), 1, sym_comment, - ACTIONS(9411), 5, + ACTIONS(9409), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [205085] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201291] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(9361), 1, - sym_identifier, - STATE(5801), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9391), 1, + anon_sym_LBRACE, + ACTIONS(9411), 1, + anon_sym_SEMI, + ACTIONS(9413), 1, + sym__automatic_semicolon, + ACTIONS(9415), 1, + sym__function_signature_automatic_semicolon, + STATE(1033), 1, + sym_statement_block, + STATE(5565), 1, sym_comment, - STATE(6566), 1, - sym_string, - STATE(6779), 1, - sym__module_export_name, - [205110] = 6, + [201316] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5802), 1, + STATE(5566), 1, sym_comment, - STATE(6799), 1, + STATE(6953), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205131] = 6, + [201337] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5803), 1, + STATE(5567), 1, sym_comment, - STATE(7190), 1, + STATE(6619), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205152] = 6, + [201358] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5804), 1, + STATE(5568), 1, sym_comment, - STATE(7333), 1, + STATE(6696), 1, sym__initializer, - ACTIONS(9415), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205173] = 4, + [201379] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5805), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5569), 1, sym_comment, - ACTIONS(7044), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [205190] = 6, + STATE(7212), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [201404] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5806), 1, + STATE(5570), 1, sym_comment, - STATE(7195), 1, + STATE(6666), 1, sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205211] = 8, + [201425] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9343), 1, - anon_sym_class, - ACTIONS(9345), 1, - anon_sym_abstract, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(5807), 1, + STATE(5571), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [205236] = 4, + ACTIONS(9417), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [201442] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5808), 1, + STATE(5572), 1, sym_comment, - ACTIONS(6306), 5, + ACTIONS(7130), 5, anon_sym_EQ, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, anon_sym_COLON, - [205253] = 6, + anon_sym_QMARK, + [201459] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5809), 1, + STATE(5573), 1, sym_comment, - STATE(6798), 1, + STATE(6610), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205274] = 8, + [201480] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8723), 1, + anon_sym_LBRACE, + ACTIONS(8725), 1, + anon_sym_LBRACE_PIPE, + STATE(1146), 1, + sym_object_type, + STATE(5574), 1, + sym_comment, + STATE(7034), 1, + sym_extends_type_clause, + [201505] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, sym_formal_parameters, - STATE(5810), 1, + STATE(5575), 1, sym_comment, - STATE(8123), 1, + STATE(5863), 1, sym__call_signature, - STATE(8189), 1, + STATE(7873), 1, sym_type_parameters, - [205299] = 7, + [201530] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(5811), 1, + ACTIONS(9405), 1, + anon_sym_LBRACE, + ACTIONS(9411), 1, + anon_sym_SEMI, + ACTIONS(9413), 1, + sym__automatic_semicolon, + ACTIONS(9415), 1, + sym__function_signature_automatic_semicolon, + STATE(363), 1, + sym_statement_block, + STATE(5576), 1, sym_comment, - ACTIONS(9417), 2, - anon_sym_COMMA, - anon_sym_GT, - [205322] = 4, + [201555] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5812), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5577), 1, sym_comment, - ACTIONS(7096), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [205339] = 6, + STATE(7334), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [201580] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5813), 1, + STATE(5578), 1, sym_comment, - STATE(6795), 1, + STATE(7062), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205360] = 6, + [201601] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5814), 1, + STATE(5579), 1, sym_comment, - STATE(6791), 1, + STATE(7084), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205381] = 5, + [201622] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6121), 1, - anon_sym_in, - STATE(5815), 1, - sym_comment, - ACTIONS(6917), 4, + ACTIONS(7868), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(7872), 1, anon_sym_LT, - anon_sym_QMARK, - [205400] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5816), 1, + STATE(5340), 1, + sym_formal_parameters, + STATE(5580), 1, sym_comment, - STATE(6781), 1, - sym__initializer, - ACTIONS(9413), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [205421] = 8, + STATE(7427), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [201647] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5817), 1, - sym_comment, - STATE(5971), 1, + STATE(5576), 1, sym__call_signature, - STATE(7675), 1, + STATE(5581), 1, + sym_comment, + STATE(7873), 1, sym_type_parameters, - [205446] = 6, + [201672] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5818), 1, + STATE(5582), 1, sym_comment, - STATE(6780), 1, + STATE(6789), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9381), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205467] = 4, + [201693] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5819), 1, - sym_comment, - ACTIONS(6684), 5, + ACTIONS(7862), 1, anon_sym_EQ, + STATE(5583), 1, + sym_comment, + STATE(7131), 1, + sym__initializer, + ACTIONS(9366), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [205484] = 6, + anon_sym_SEMI, + [201714] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5820), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5565), 1, + sym__call_signature, + STATE(5584), 1, sym_comment, - STATE(6596), 1, - sym__initializer, - ACTIONS(9415), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [205505] = 6, + STATE(7873), 1, + sym_type_parameters, + [201739] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5821), 1, + STATE(5585), 1, sym_comment, - STATE(6778), 1, + STATE(6712), 1, sym__initializer, - ACTIONS(9419), 3, + ACTIONS(9381), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205526] = 6, + [201760] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5822), 1, + STATE(5586), 1, sym_comment, - STATE(6767), 1, + STATE(7134), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205547] = 6, + [201781] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5823), 1, + STATE(5587), 1, sym_comment, - STATE(6766), 1, + STATE(6715), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205568] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8138), 1, - anon_sym_list, - ACTIONS(9421), 1, - sym_identifier, - STATE(5824), 1, - sym_comment, - STATE(8436), 1, - sym_nested_identifier, - STATE(4508), 2, - sym_nested_type_identifier, - sym_ui_list_property_type, - [205591] = 8, + [201802] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(5049), 1, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, sym_formal_parameters, - STATE(5825), 1, + STATE(5588), 1, sym_comment, - STATE(5983), 1, + STATE(7472), 1, sym__call_signature, - STATE(7675), 1, + STATE(7801), 1, sym_type_parameters, - [205616] = 4, + [201827] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5826), 1, + STATE(5589), 1, sym_comment, - ACTIONS(9423), 5, + ACTIONS(9419), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [205633] = 8, + [201844] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5560), 1, + sym__call_signature, + STATE(5590), 1, + sym_comment, + STATE(7873), 1, + sym_type_parameters, + [201869] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5827), 1, + STATE(5591), 1, sym_comment, - STATE(8058), 1, + STATE(7367), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, + sym_type_parameters, + [201894] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5550), 1, + sym__call_signature, + STATE(5592), 1, + sym_comment, + STATE(7873), 1, sym_type_parameters, - [205658] = 6, + [201919] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5593), 1, + sym_comment, + ACTIONS(9419), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [201936] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5828), 1, + STATE(5594), 1, sym_comment, - STATE(7196), 1, + STATE(6608), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9381), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205679] = 8, + [201957] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5829), 1, + STATE(5595), 1, sym_comment, - STATE(7606), 1, + STATE(7384), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [205704] = 6, + [201982] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5830), 1, + STATE(5596), 1, sym_comment, - STATE(6765), 1, - sym__initializer, - ACTIONS(9419), 3, + ACTIONS(9421), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [205725] = 4, + anon_sym_PIPE_RBRACE, + [201999] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5831), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5597), 1, sym_comment, - ACTIONS(9425), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [205742] = 4, + STATE(7170), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [202024] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8123), 1, + anon_sym_list, + ACTIONS(9423), 1, + sym_identifier, + STATE(5598), 1, + sym_comment, + STATE(7940), 1, + sym_nested_identifier, + STATE(4286), 2, + sym_nested_type_identifier, + sym_ui_list_property_type, + [202047] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5832), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5599), 1, sym_comment, - ACTIONS(9407), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [205759] = 4, + STATE(7801), 1, + sym_type_parameters, + STATE(7878), 1, + sym__call_signature, + [202072] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5833), 1, + STATE(5600), 1, sym_comment, - ACTIONS(9407), 5, + ACTIONS(9425), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [205776] = 4, + [202089] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5834), 1, + STATE(5601), 1, sym_comment, - ACTIONS(9407), 5, + ACTIONS(7015), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [205793] = 6, + [202106] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5835), 1, + STATE(5602), 1, sym_comment, - STATE(6759), 1, + STATE(6682), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205814] = 7, + [202127] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(8282), 1, - anon_sym_DOT, - STATE(5180), 1, - sym_arguments, - STATE(5836), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5603), 1, sym_comment, - ACTIONS(9427), 2, + STATE(7029), 1, + sym__initializer, + ACTIONS(9373), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [205837] = 6, + anon_sym_SEMI, + [202148] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5837), 1, + STATE(5604), 1, sym_comment, - STATE(7315), 1, + STATE(6637), 1, sym__initializer, - ACTIONS(9415), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205858] = 8, + [202169] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9403), 1, - sym__template_chars, - ACTIONS(9429), 1, - anon_sym_BQUOTE, - STATE(5838), 1, + STATE(5605), 1, sym_comment, - STATE(6177), 1, - aux_sym_template_literal_type_repeat1, - STATE(7022), 1, - sym_template_type, - [205883] = 6, + ACTIONS(9419), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [202186] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5839), 1, + STATE(5606), 1, sym_comment, - STATE(7217), 1, + STATE(6719), 1, sym__initializer, - ACTIONS(9415), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205904] = 6, + [202207] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5840), 1, + STATE(5607), 1, sym_comment, - STATE(6758), 1, - sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9419), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [205925] = 8, + anon_sym_PIPE_RBRACE, + [202224] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5841), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5608), 1, sym_comment, - STATE(7454), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [205950] = 6, + ACTIONS(9427), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5842), 1, + STATE(5609), 1, sym_comment, - STATE(6754), 1, - sym__initializer, - ACTIONS(9419), 3, + ACTIONS(9419), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [205971] = 8, + anon_sym_PIPE_RBRACE, + [202264] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5843), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5610), 1, sym_comment, - STATE(5996), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [205996] = 8, + STATE(7022), 1, + sym__initializer, + ACTIONS(9366), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202285] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5844), 1, + STATE(5611), 1, sym_comment, - STATE(8038), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [206021] = 8, + ACTIONS(9419), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [202302] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5845), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5612), 1, sym_comment, - STATE(7460), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [206046] = 6, + ACTIONS(9429), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202325] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5846), 1, + STATE(5613), 1, sym_comment, - STATE(6736), 1, + STATE(7019), 1, sym__initializer, - ACTIONS(9419), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [206067] = 6, + [202346] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5847), 1, - sym_comment, - STATE(7216), 1, - sym__initializer, - ACTIONS(9431), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(9431), 1, + anon_sym_LBRACE, + ACTIONS(9433), 1, anon_sym_SEMI, - [206088] = 6, + ACTIONS(9435), 1, + sym__automatic_semicolon, + ACTIONS(9437), 1, + sym__function_signature_automatic_semicolon, + STATE(1057), 1, + sym_statement_block, + STATE(5614), 1, + sym_comment, + [202371] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5848), 1, + STATE(5615), 1, sym_comment, - STATE(6818), 1, + STATE(7009), 1, sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [206109] = 8, + [202392] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5849), 1, + STATE(5616), 1, sym_comment, - STATE(7478), 1, + STATE(7201), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [206134] = 6, + [202417] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5850), 1, + STATE(5617), 1, sym_comment, - STATE(6718), 1, + STATE(7003), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [206155] = 6, + [202438] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9236), 1, + anon_sym_abstract, + ACTIONS(9439), 1, + anon_sym_class, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5618), 1, + sym_comment, + STATE(6120), 1, + sym_decorator, + [202463] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(8817), 1, anon_sym_EQ, - STATE(5851), 1, + ACTIONS(9441), 1, + anon_sym_COMMA, + ACTIONS(9443), 1, + anon_sym_RBRACE, + STATE(5619), 1, sym_comment, - STATE(7215), 1, + STATE(7072), 1, + aux_sym_enum_body_repeat1, + STATE(7161), 1, + sym__initializer, + [202488] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5620), 1, + sym_comment, + STATE(6832), 1, sym__initializer, - ACTIONS(9431), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [206176] = 4, + [202509] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5852), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5621), 1, sym_comment, - ACTIONS(9433), 5, + STATE(6640), 1, + sym__initializer, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [206193] = 4, + [202530] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5853), 1, + ACTIONS(9433), 1, + anon_sym_SEMI, + ACTIONS(9435), 1, + sym__automatic_semicolon, + ACTIONS(9437), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9445), 1, + anon_sym_LBRACE, + STATE(391), 1, + sym_statement_block, + STATE(5622), 1, + sym_comment, + [202555] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5623), 1, sym_comment, - ACTIONS(9407), 5, + ACTIONS(8815), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [206210] = 8, + [202572] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5854), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5624), 1, sym_comment, - STATE(7491), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [206235] = 6, + STATE(6683), 1, + sym__initializer, + ACTIONS(9399), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [202593] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5855), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5625), 1, sym_comment, - STATE(6716), 1, - sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9447), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [206256] = 6, + [202616] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5856), 1, + STATE(5626), 1, sym_comment, - STATE(6714), 1, + STATE(6741), 1, sym__initializer, - ACTIONS(9419), 3, + ACTIONS(9381), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [206277] = 4, + [202637] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5857), 1, - sym_comment, - ACTIONS(9435), 5, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(9431), 1, + anon_sym_LBRACE, + ACTIONS(9449), 1, anon_sym_SEMI, - anon_sym_DOT, - aux_sym_ui_version_specifier_token1, - [206294] = 8, + ACTIONS(9451), 1, + sym__automatic_semicolon, + ACTIONS(9453), 1, + sym__function_signature_automatic_semicolon, + STATE(1159), 1, + sym_statement_block, + STATE(5627), 1, + sym_comment, + [202662] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, sym_formal_parameters, - STATE(5858), 1, + STATE(5628), 1, sym_comment, - STATE(7560), 1, + STATE(5722), 1, sym__call_signature, - STATE(8189), 1, + STATE(7660), 1, sym_type_parameters, - [206319] = 8, + [202687] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_COLON, + ACTIONS(9455), 1, + anon_sym_EQ_GT, + STATE(5629), 1, + sym_comment, + STATE(7779), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [202708] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5859), 1, + STATE(5630), 1, sym_comment, - STATE(7566), 1, + STATE(7366), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [206344] = 6, + [202733] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5860), 1, + STATE(5631), 1, sym_comment, - STATE(6624), 1, + STATE(6597), 1, sym__initializer, - ACTIONS(9415), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [206365] = 4, + [202754] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5861), 1, + STATE(5632), 1, sym_comment, - ACTIONS(8615), 5, + ACTIONS(9458), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [206382] = 8, + [202771] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5862), 1, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8695), 1, + anon_sym_LBRACE, + ACTIONS(8697), 1, + anon_sym_LBRACE_PIPE, + STATE(1253), 1, + sym_object_type, + STATE(5633), 1, sym_comment, - STATE(6071), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [206407] = 7, + STATE(7075), 1, + sym_extends_type_clause, + [202796] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(5863), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9360), 1, + sym__template_chars, + ACTIONS(9460), 1, + anon_sym_BQUOTE, + STATE(5634), 1, sym_comment, - ACTIONS(9437), 2, - anon_sym_COMMA, - anon_sym_GT, - [206430] = 4, + STATE(5821), 1, + aux_sym_template_literal_type_repeat1, + STATE(6984), 1, + sym_template_type, + [202821] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5864), 1, + ACTIONS(9445), 1, + anon_sym_LBRACE, + ACTIONS(9449), 1, + anon_sym_SEMI, + ACTIONS(9451), 1, + sym__automatic_semicolon, + ACTIONS(9453), 1, + sym__function_signature_automatic_semicolon, + STATE(396), 1, + sym_statement_block, + STATE(5635), 1, sym_comment, - ACTIONS(9439), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [206447] = 6, + [202846] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5865), 1, + STATE(5636), 1, sym_comment, - STATE(7115), 1, - sym__initializer, - ACTIONS(9441), 3, + ACTIONS(8803), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [206468] = 8, + anon_sym_PIPE_RBRACE, + [202863] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, sym_formal_parameters, - STATE(5866), 1, + STATE(5637), 1, sym_comment, - STATE(7652), 1, + STATE(5675), 1, sym__call_signature, - STATE(8189), 1, + STATE(7873), 1, sym_type_parameters, - [206493] = 8, + [202888] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5638), 1, + sym_comment, + ACTIONS(9462), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [202905] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5867), 1, + STATE(5639), 1, sym_comment, - STATE(6119), 1, + STATE(5728), 1, sym__call_signature, - STATE(7675), 1, + STATE(7873), 1, sym_type_parameters, - [206518] = 6, + [202930] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5868), 1, + STATE(5640), 1, sym_comment, - STATE(6706), 1, + STATE(6749), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9381), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [206539] = 8, + [202951] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5869), 1, + STATE(5641), 1, sym_comment, - STATE(7662), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [206564] = 7, + ACTIONS(9464), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [202968] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9443), 1, - anon_sym_BQUOTE, - ACTIONS(9445), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9448), 1, - sym__template_chars, - STATE(7022), 1, - sym_template_type, - STATE(5870), 2, + STATE(5642), 1, sym_comment, - aux_sym_template_literal_type_repeat1, - [206587] = 8, + ACTIONS(9464), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [202985] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(5049), 1, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, sym_formal_parameters, - STATE(5871), 1, + STATE(5643), 1, sym_comment, - STATE(6038), 1, + STATE(7235), 1, sym__call_signature, - STATE(7675), 1, + STATE(7801), 1, sym_type_parameters, - [206612] = 8, + [203010] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5872), 1, + STATE(5644), 1, sym_comment, - STATE(8140), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [206637] = 6, + ACTIONS(9466), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203027] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5873), 1, + STATE(5645), 1, sym_comment, - STATE(6704), 1, + STATE(6750), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [206658] = 4, + [203048] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5874), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5646), 1, sym_comment, - ACTIONS(2340), 5, + STATE(6819), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [206675] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5875), 1, - sym_comment, - STATE(7680), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [206700] = 8, + [203069] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5876), 1, + STATE(5647), 1, sym_comment, - STATE(6024), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [206725] = 6, + ACTIONS(7117), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203086] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5877), 1, + STATE(5648), 1, sym_comment, - STATE(7197), 1, - sym__initializer, - ACTIONS(9367), 3, + ACTIONS(8815), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [206746] = 8, + anon_sym_PIPE_RBRACE, + [203103] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9403), 1, - sym__template_chars, - ACTIONS(9451), 1, - anon_sym_BQUOTE, - STATE(5878), 1, + STATE(5649), 1, sym_comment, - STATE(5941), 1, - aux_sym_template_literal_type_repeat1, - STATE(7022), 1, - sym_template_type, - [206771] = 8, + ACTIONS(9468), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203120] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9242), 1, - anon_sym_class, - ACTIONS(9244), 1, - anon_sym_abstract, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(5879), 1, + STATE(5650), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [206796] = 6, + ACTIONS(7084), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203137] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5880), 1, + STATE(5651), 1, sym_comment, - STATE(6820), 1, - sym__initializer, - ACTIONS(9355), 3, + ACTIONS(8803), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [206817] = 6, + anon_sym_PIPE_RBRACE, + [203154] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7783), 1, - anon_sym_LBRACK, - ACTIONS(9453), 1, - anon_sym_RBRACE, - STATE(5881), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(9470), 1, + sym_identifier, + STATE(5652), 1, sym_comment, - ACTIONS(5703), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [206838] = 8, + STATE(6263), 1, + sym_string, + STATE(8175), 1, + sym__module_export_name, + [203179] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5882), 1, + STATE(5653), 1, sym_comment, - STATE(7833), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [206863] = 8, + ACTIONS(9472), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203196] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5883), 1, + STATE(5654), 1, sym_comment, - STATE(5910), 1, + STATE(5681), 1, sym__call_signature, - STATE(8017), 1, + STATE(7873), 1, sym_type_parameters, - [206888] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5884), 1, - sym_comment, - STATE(6703), 1, - sym__initializer, - ACTIONS(9413), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [206909] = 4, + [203221] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5885), 1, + STATE(5655), 1, sym_comment, - ACTIONS(8731), 5, + ACTIONS(6987), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [206926] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8833), 1, - anon_sym_COLON, - ACTIONS(9455), 1, - anon_sym_EQ_GT, - STATE(5886), 1, - sym_comment, - STATE(7893), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [206947] = 6, + [203238] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5887), 1, + STATE(5656), 1, sym_comment, - STATE(7227), 1, + STATE(6631), 1, sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [206968] = 8, + [203259] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5888), 1, + STATE(5657), 1, sym_comment, - STATE(7744), 1, + STATE(7266), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [206993] = 6, + [203284] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5889), 1, + STATE(5658), 1, sym_comment, - STATE(7237), 1, + STATE(6579), 1, sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207014] = 8, + [203305] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5890), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8925), 1, + anon_sym_class, + ACTIONS(8927), 1, + anon_sym_abstract, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5659), 1, sym_comment, - STATE(7746), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [207039] = 8, + STATE(6120), 1, + sym_decorator, + [203330] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(9470), 1, + sym_identifier, + STATE(5660), 1, + sym_comment, + STATE(6263), 1, + sym_string, + STATE(6569), 1, + sym__module_export_name, + [203355] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9403), 1, - sym__template_chars, - ACTIONS(9458), 1, - anon_sym_BQUOTE, - STATE(5870), 1, - aux_sym_template_literal_type_repeat1, - STATE(5891), 1, + STATE(5661), 1, sym_comment, - STATE(7022), 1, - sym_template_type, - [207064] = 8, + ACTIONS(6400), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [203372] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, sym_formal_parameters, - STATE(5892), 1, + STATE(5662), 1, sym_comment, - STATE(8067), 1, + STATE(6776), 1, sym__call_signature, - STATE(8189), 1, + STATE(7660), 1, sym_type_parameters, - [207089] = 6, + [203397] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5893), 1, + STATE(5663), 1, sym_comment, - STATE(6869), 1, + STATE(6621), 1, sym__initializer, - ACTIONS(9460), 3, + ACTIONS(9474), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207110] = 8, + [203418] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5208), 1, - anon_sym_COLON, - ACTIONS(7883), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(9371), 1, + STATE(5664), 1, + sym_comment, + STATE(7006), 1, + sym__initializer, + ACTIONS(9474), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9462), 1, - anon_sym_RBRACE, - STATE(5894), 1, + anon_sym_SEMI, + [203439] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + ACTIONS(9476), 1, + anon_sym_DOT, + STATE(5665), 1, sym_comment, - STATE(6997), 1, - aux_sym_object_pattern_repeat1, - [207135] = 8, + STATE(7532), 1, + sym_statement_block, + ACTIONS(2294), 2, + anon_sym_else, + anon_sym_while, + [203462] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5666), 1, + sym_comment, + ACTIONS(9478), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203479] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5895), 1, + STATE(5667), 1, sym_comment, - STATE(5960), 1, + STATE(5878), 1, sym__call_signature, - STATE(7675), 1, + STATE(7873), 1, sym_type_parameters, - [207160] = 6, + [203504] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5896), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5668), 1, sym_comment, - STATE(7239), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [207181] = 6, + STATE(7459), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [203529] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5897), 1, + STATE(5669), 1, sym_comment, - STATE(7247), 1, + STATE(6783), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9480), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207202] = 6, + [203550] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5898), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5670), 1, sym_comment, - STATE(6822), 1, - sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9482), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [207223] = 6, + [203573] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5899), 1, + STATE(5671), 1, sym_comment, - STATE(6702), 1, + STATE(6993), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207244] = 7, + [203594] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(5900), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5672), 1, sym_comment, - ACTIONS(9464), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [207267] = 6, + STATE(5683), 1, + sym__call_signature, + STATE(7873), 1, + sym_type_parameters, + [203619] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5901), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5673), 1, sym_comment, - STATE(6868), 1, - sym__initializer, - ACTIONS(9460), 3, + ACTIONS(9484), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [207288] = 8, + [203642] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5902), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8951), 1, + anon_sym_class, + ACTIONS(8953), 1, + anon_sym_abstract, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5674), 1, sym_comment, - STATE(7794), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [207313] = 5, + STATE(6120), 1, + sym_decorator, + [203667] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9466), 1, - anon_sym_EQ, - STATE(5903), 1, + ACTIONS(9486), 1, + anon_sym_LBRACE, + ACTIONS(9488), 1, + anon_sym_SEMI, + ACTIONS(9490), 1, + sym__automatic_semicolon, + ACTIONS(9492), 1, + sym__function_signature_automatic_semicolon, + STATE(1384), 1, + sym_statement_block, + STATE(5675), 1, sym_comment, - ACTIONS(4706), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [207332] = 6, + [203692] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5904), 1, + STATE(5676), 1, sym_comment, - STATE(6995), 1, + STATE(6945), 1, sym__initializer, - ACTIONS(9468), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207353] = 4, + [203713] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5905), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5677), 1, sym_comment, - ACTIONS(9470), 5, + STATE(7005), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207370] = 6, + [203734] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(8817), 1, anon_sym_EQ, - STATE(5906), 1, + ACTIONS(9494), 1, + anon_sym_COMMA, + ACTIONS(9496), 1, + anon_sym_RBRACE, + STATE(5678), 1, sym_comment, - STATE(7260), 1, + STATE(7119), 1, + aux_sym_enum_body_repeat1, + STATE(7161), 1, sym__initializer, - ACTIONS(9353), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [207391] = 8, + [203759] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5907), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8927), 1, + anon_sym_abstract, + ACTIONS(9498), 1, + anon_sym_class, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5679), 1, sym_comment, - STATE(6231), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [207416] = 6, + STATE(6120), 1, + sym_decorator, + [203784] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(9500), 1, anon_sym_EQ, - STATE(5908), 1, + STATE(5680), 1, sym_comment, - STATE(7000), 1, - sym__initializer, - ACTIONS(9415), 3, - sym__automatic_semicolon, + ACTIONS(4709), 4, anon_sym_COMMA, - anon_sym_SEMI, - [207437] = 6, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [203803] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5909), 1, - sym_comment, - STATE(6701), 1, - sym__initializer, - ACTIONS(9419), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(5602), 1, + anon_sym_LBRACE, + ACTIONS(9502), 1, anon_sym_SEMI, - [207458] = 4, + ACTIONS(9504), 1, + sym__automatic_semicolon, + ACTIONS(9506), 1, + sym__function_signature_automatic_semicolon, + STATE(3407), 1, + sym_statement_block, + STATE(5681), 1, + sym_comment, + [203828] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5910), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5682), 1, sym_comment, - ACTIONS(8617), 5, + ACTIONS(9508), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207475] = 6, + [203851] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5911), 1, - sym_comment, - STATE(7268), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(9486), 1, + anon_sym_LBRACE, + ACTIONS(9510), 1, anon_sym_SEMI, - [207496] = 6, + ACTIONS(9512), 1, + sym__automatic_semicolon, + ACTIONS(9514), 1, + sym__function_signature_automatic_semicolon, + STATE(1377), 1, + sym_statement_block, + STATE(5683), 1, + sym_comment, + [203876] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5912), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5684), 1, sym_comment, - STATE(7286), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [207517] = 8, + STATE(7205), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [203901] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5913), 1, + STATE(5685), 1, sym_comment, - STATE(6155), 1, + STATE(5694), 1, sym__call_signature, - STATE(8017), 1, + STATE(7873), 1, sym_type_parameters, - [207542] = 4, + [203926] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5914), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5686), 1, + sym_comment, + STATE(7230), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [203951] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5687), 1, sym_comment, - ACTIONS(8599), 5, + STATE(6690), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207559] = 4, + [203972] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5915), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5688), 1, sym_comment, - ACTIONS(9472), 5, + STATE(6560), 1, + sym__initializer, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207576] = 4, + [203993] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5916), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5689), 1, sym_comment, - ACTIONS(7082), 5, + STATE(6614), 1, + sym__initializer, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207593] = 8, + [204014] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9474), 1, - anon_sym_class, - ACTIONS(9476), 1, - anon_sym_abstract, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(5917), 1, + ACTIONS(5210), 1, + anon_sym_COLON, + ACTIONS(7900), 1, + anon_sym_EQ, + ACTIONS(9516), 1, + anon_sym_COMMA, + ACTIONS(9518), 1, + anon_sym_RBRACE, + STATE(5690), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [207618] = 4, + STATE(7026), 1, + aux_sym_object_pattern_repeat1, + [204039] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5918), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + ACTIONS(9520), 1, + anon_sym_DOT, + STATE(5691), 1, sym_comment, - ACTIONS(8599), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207635] = 4, + STATE(7532), 1, + sym_statement_block, + ACTIONS(2294), 2, + anon_sym_else, + anon_sym_while, + [204062] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5919), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5692), 1, sym_comment, - ACTIONS(9478), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207652] = 4, + STATE(5703), 1, + sym__call_signature, + STATE(7873), 1, + sym_type_parameters, + [204087] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1575), 1, + anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5920), 1, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8683), 1, + anon_sym_LBRACE_PIPE, + STATE(5693), 1, sym_comment, - ACTIONS(8617), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(6041), 1, + sym_object_type, + STATE(7101), 1, + sym_extends_type_clause, + [204112] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + ACTIONS(9522), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207669] = 4, + ACTIONS(9524), 1, + sym__automatic_semicolon, + ACTIONS(9526), 1, + sym__function_signature_automatic_semicolon, + STATE(3579), 1, + sym_statement_block, + STATE(5694), 1, + sym_comment, + [204137] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5921), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5695), 1, sym_comment, - ACTIONS(9480), 5, + STATE(6946), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207686] = 4, + [204158] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5922), 1, + STATE(5696), 1, sym_comment, - ACTIONS(9482), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207703] = 8, + ACTIONS(6333), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [204175] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5923), 1, + STATE(5697), 1, sym_comment, - STATE(7946), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [207728] = 4, + ACTIONS(6258), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [204192] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5924), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5698), 1, sym_comment, - ACTIONS(9484), 5, + STATE(6787), 1, + sym__initializer, + ACTIONS(9528), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207745] = 8, + [204213] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(5049), 1, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, sym_formal_parameters, - STATE(5925), 1, + STATE(5699), 1, sym_comment, - STATE(6310), 1, + STATE(7360), 1, sym__call_signature, - STATE(7675), 1, + STATE(7801), 1, sym_type_parameters, - [207770] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8833), 1, - anon_sym_COLON, - ACTIONS(9486), 1, - anon_sym_EQ_GT, - STATE(5926), 1, - sym_comment, - STATE(7701), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [207791] = 8, + [204238] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5927), 1, + STATE(5700), 1, sym_comment, - STATE(8050), 1, + STATE(7420), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [207816] = 8, + [204263] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5596), 1, + STATE(5367), 1, sym__call_signature, - STATE(5928), 1, + STATE(5701), 1, sym_comment, - STATE(7675), 1, + STATE(7873), 1, sym_type_parameters, - [207841] = 4, + [204288] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5929), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5702), 1, sym_comment, - ACTIONS(8731), 5, + STATE(6556), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [207858] = 8, + [204309] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5930), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + ACTIONS(9530), 1, + anon_sym_SEMI, + ACTIONS(9532), 1, + sym__automatic_semicolon, + ACTIONS(9534), 1, + sym__function_signature_automatic_semicolon, + STATE(3538), 1, + sym_statement_block, + STATE(5703), 1, sym_comment, - STATE(7612), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [207883] = 6, + [204334] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5931), 1, + STATE(5704), 1, sym_comment, - STATE(6695), 1, + STATE(6944), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207904] = 6, + [204355] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5932), 1, + STATE(5705), 1, sym_comment, - STATE(6692), 1, - sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9536), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [207925] = 7, + anon_sym_PIPE_RBRACE, + [204372] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(124), 1, + anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, + ACTIONS(8571), 1, anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(5933), 1, + ACTIONS(8713), 1, + anon_sym_LBRACE_PIPE, + STATE(5706), 1, sym_comment, - ACTIONS(9489), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207948] = 6, + STATE(6853), 1, + sym_extends_type_clause, + STATE(7700), 1, + sym_object_type, + [204397] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5934), 1, + STATE(5707), 1, sym_comment, - STATE(6688), 1, + STATE(6648), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9474), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207969] = 6, + [204418] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5935), 1, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(9538), 1, + anon_sym_COLON, + ACTIONS(9540), 1, + anon_sym_DOT, + ACTIONS(9542), 1, + anon_sym_on, + STATE(4158), 1, + sym_ui_object_initializer, + STATE(5708), 1, sym_comment, - STATE(7212), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [207990] = 6, + [204443] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5936), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9234), 1, + anon_sym_class, + ACTIONS(9236), 1, + anon_sym_abstract, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5709), 1, sym_comment, - STATE(6685), 1, - sym__initializer, - ACTIONS(9413), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208011] = 4, + STATE(6120), 1, + sym_decorator, + [204468] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5937), 1, + STATE(5710), 1, sym_comment, - ACTIONS(9491), 5, + ACTIONS(9544), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [208028] = 6, + [204485] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5938), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5711), 1, sym_comment, - STATE(6823), 1, - sym__initializer, - ACTIONS(9355), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208049] = 6, + STATE(5767), 1, + sym__call_signature, + STATE(7873), 1, + sym_type_parameters, + [204510] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5939), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5351), 1, + sym__call_signature, + STATE(5712), 1, sym_comment, - STATE(7321), 1, - sym__initializer, - ACTIONS(9353), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208070] = 6, + STATE(7873), 1, + sym_type_parameters, + [204535] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5940), 1, + STATE(5713), 1, sym_comment, - STATE(7274), 1, + STATE(6549), 1, sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [208091] = 8, + [204556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9403), 1, - sym__template_chars, - ACTIONS(9493), 1, - anon_sym_BQUOTE, - STATE(5870), 1, - aux_sym_template_literal_type_repeat1, - STATE(5941), 1, + STATE(5714), 1, sym_comment, - STATE(7022), 1, - sym_template_type, - [208116] = 6, + ACTIONS(9536), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [204573] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5942), 1, + STATE(5715), 1, sym_comment, - STATE(6678), 1, - sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9546), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [208137] = 7, + anon_sym_PIPE_RBRACE, + [204590] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - ACTIONS(9495), 1, - anon_sym_DOT, - STATE(5943), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5716), 1, sym_comment, - STATE(7731), 1, - sym_statement_block, - ACTIONS(2303), 2, - anon_sym_else, - anon_sym_while, - [208160] = 7, + STATE(7759), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [204615] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - ACTIONS(9497), 1, - anon_sym_DOT, - STATE(5944), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5717), 1, sym_comment, - STATE(7731), 1, - sym_statement_block, - ACTIONS(2303), 2, - anon_sym_else, - anon_sym_while, - [208183] = 6, + STATE(6546), 1, + sym__initializer, + ACTIONS(9381), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204636] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5945), 1, + STATE(5718), 1, sym_comment, - STATE(7231), 1, + STATE(6548), 1, sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [208204] = 4, + [204657] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5946), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5719), 1, sym_comment, - ACTIONS(9499), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208221] = 6, + STATE(5781), 1, + sym__call_signature, + STATE(7873), 1, + sym_type_parameters, + [204682] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5947), 1, + STATE(5720), 1, sym_comment, - STATE(7165), 1, - sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9548), 5, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_as, anon_sym_SEMI, - [208242] = 6, + anon_sym_DOT, + aux_sym_ui_version_specifier_token1, + [204699] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5948), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5721), 1, sym_comment, - STATE(7222), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208263] = 4, + STATE(5942), 1, + sym__call_signature, + STATE(7873), 1, + sym_type_parameters, + [204724] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5949), 1, + STATE(5722), 1, sym_comment, - ACTIONS(9501), 5, + ACTIONS(8799), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [208280] = 6, + [204741] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5950), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5723), 1, sym_comment, - STATE(7191), 1, - sym__initializer, - ACTIONS(9353), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208301] = 8, + STATE(7740), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [204766] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9503), 1, - anon_sym_LBRACE, - ACTIONS(9505), 1, - anon_sym_SEMI, - ACTIONS(9507), 1, - sym__automatic_semicolon, - ACTIONS(9509), 1, - sym__function_signature_automatic_semicolon, - STATE(1889), 1, - sym_statement_block, - STATE(5951), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, + sym_formal_parameters, + STATE(5724), 1, sym_comment, - [208326] = 6, + STATE(5837), 1, + sym__call_signature, + STATE(7660), 1, + sym_type_parameters, + [204791] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5952), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5725), 1, sym_comment, - STATE(6675), 1, - sym__initializer, - ACTIONS(9413), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208347] = 7, + STATE(7776), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [204816] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(5953), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5726), 1, sym_comment, - ACTIONS(9511), 2, + STATE(6615), 1, + sym__initializer, + ACTIONS(9381), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [208370] = 8, + [204837] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8827), 1, - anon_sym_LBRACE, - ACTIONS(8829), 1, - anon_sym_LBRACE_PIPE, - STATE(4115), 1, - sym_object_type, - STATE(5954), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5727), 1, sym_comment, - STATE(6819), 1, - sym_extends_type_clause, - [208395] = 8, + STATE(7179), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [204862] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9513), 1, + ACTIONS(9550), 1, anon_sym_LBRACE, - ACTIONS(9515), 1, + ACTIONS(9552), 1, anon_sym_SEMI, - ACTIONS(9517), 1, + ACTIONS(9554), 1, sym__automatic_semicolon, - ACTIONS(9519), 1, + ACTIONS(9556), 1, sym__function_signature_automatic_semicolon, - STATE(4046), 1, + STATE(506), 1, sym_statement_block, - STATE(5955), 1, + STATE(5728), 1, sym_comment, - [208420] = 4, + [204887] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5956), 1, + STATE(5729), 1, sym_comment, - ACTIONS(9521), 5, + ACTIONS(9558), 5, sym__automatic_semicolon, anon_sym_as, anon_sym_SEMI, anon_sym_DOT, aux_sym_ui_version_specifier_token1, - [208437] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5957), 1, - sym_comment, - STATE(7184), 1, - sym__initializer, - ACTIONS(9353), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208458] = 6, + [204904] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5958), 1, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8749), 1, + anon_sym_LBRACE, + ACTIONS(8751), 1, + anon_sym_LBRACE_PIPE, + STATE(1576), 1, + sym_object_type, + STATE(5730), 1, sym_comment, - STATE(7175), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208479] = 6, + STATE(6411), 1, + sym_extends_type_clause, + [204929] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5959), 1, + STATE(5731), 1, sym_comment, - STATE(6864), 1, - sym__initializer, - ACTIONS(9355), 3, + ACTIONS(6971), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [208500] = 8, + anon_sym_PIPE_RBRACE, + [204946] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - ACTIONS(9523), 1, - anon_sym_SEMI, - ACTIONS(9525), 1, - sym__automatic_semicolon, - ACTIONS(9527), 1, - sym__function_signature_automatic_semicolon, - STATE(3596), 1, - sym_statement_block, - STATE(5960), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5732), 1, sym_comment, - [208525] = 8, + STATE(5814), 1, + sym__call_signature, + STATE(7873), 1, + sym_type_parameters, + [204971] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9154), 1, - anon_sym_abstract, - ACTIONS(9529), 1, - anon_sym_class, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(5961), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5733), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [208550] = 4, + STATE(7801), 1, + sym_type_parameters, + STATE(7882), 1, + sym__call_signature, + [204996] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5962), 1, + STATE(5734), 1, sym_comment, - ACTIONS(8898), 5, + ACTIONS(9560), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [208567] = 8, + [205013] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8568), 1, - anon_sym_LBRACE_PIPE, - STATE(5963), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5735), 1, sym_comment, - STATE(7252), 1, - sym_extends_type_clause, - STATE(7539), 1, - sym_object_type, - [208592] = 4, + STATE(7801), 1, + sym_type_parameters, + STATE(7874), 1, + sym__call_signature, + [205038] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5964), 1, + STATE(5736), 1, sym_comment, - ACTIONS(8735), 5, + ACTIONS(8801), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [208609] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5965), 1, - sym_comment, - STATE(7138), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208630] = 6, + [205055] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5966), 1, + STATE(5737), 1, sym_comment, - STATE(7164), 1, + STATE(6440), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [208651] = 8, + [205076] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(9313), 1, - anon_sym_abstract, - ACTIONS(9531), 1, + ACTIONS(9138), 1, anon_sym_class, - STATE(5701), 1, + ACTIONS(9140), 1, + anon_sym_abstract, + STATE(5385), 1, aux_sym_export_statement_repeat1, - STATE(5967), 1, + STATE(5738), 1, sym_comment, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - [208676] = 6, + [205101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5968), 1, + STATE(5739), 1, sym_comment, - STATE(7159), 1, - sym__initializer, - ACTIONS(9367), 3, + ACTIONS(6995), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [208697] = 6, + anon_sym_PIPE_RBRACE, + [205118] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8833), 1, - anon_sym_COLON, - ACTIONS(9533), 1, - anon_sym_EQ_GT, - STATE(5969), 1, + STATE(5740), 1, sym_comment, - STATE(7893), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [208718] = 8, + ACTIONS(7001), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [205135] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5970), 1, + STATE(5741), 1, sym_comment, - STATE(6306), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [208743] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9505), 1, - anon_sym_SEMI, - ACTIONS(9507), 1, + ACTIONS(8799), 5, sym__automatic_semicolon, - ACTIONS(9509), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(9536), 1, - anon_sym_LBRACE, - STATE(4025), 1, - sym_statement_block, - STATE(5971), 1, - sym_comment, - [208768] = 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [205152] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5972), 1, + STATE(5742), 1, sym_comment, - STATE(7156), 1, + STATE(6669), 1, sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [208789] = 7, + [205173] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(5973), 1, + ACTIONS(8965), 1, + anon_sym_COLON, + ACTIONS(9562), 1, + anon_sym_EQ_GT, + STATE(5743), 1, sym_comment, - ACTIONS(9538), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208812] = 4, + STATE(7779), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [205194] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5974), 1, + ACTIONS(8965), 1, + anon_sym_COLON, + ACTIONS(9565), 1, + anon_sym_EQ_GT, + STATE(5744), 1, sym_comment, - ACTIONS(9540), 5, - sym__automatic_semicolon, + STATE(7301), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [205215] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5745), 1, + sym_comment, + ACTIONS(7056), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208829] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [205232] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5975), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5746), 1, sym_comment, - ACTIONS(9542), 5, + STATE(6531), 1, + sym__initializer, + ACTIONS(9568), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208846] = 4, + [205253] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5976), 1, + STATE(5747), 1, sym_comment, - ACTIONS(9544), 5, - sym__automatic_semicolon, + ACTIONS(7062), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208863] = 8, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [205270] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5977), 1, + STATE(5748), 1, sym_comment, - STATE(7958), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [208888] = 6, + ACTIONS(7062), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [205287] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5978), 1, + STATE(5749), 1, sym_comment, - STATE(6672), 1, - sym__initializer, - ACTIONS(9419), 3, - sym__automatic_semicolon, + ACTIONS(7062), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [208909] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [205304] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5979), 1, + ACTIONS(8607), 1, + anon_sym_LT, + ACTIONS(9570), 1, + anon_sym_LBRACE, + STATE(5750), 1, sym_comment, - ACTIONS(9546), 5, - sym__automatic_semicolon, + STATE(6623), 1, + sym_type_arguments, + ACTIONS(9572), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208926] = 6, + anon_sym_LBRACE_PIPE, + [205327] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5980), 1, + STATE(5751), 1, sym_comment, - STATE(6871), 1, + STATE(6600), 1, sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [208947] = 6, + [205348] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - STATE(5981), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5752), 1, sym_comment, - STATE(7925), 1, - sym_type_annotation, - ACTIONS(4699), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [208968] = 8, + ACTIONS(9574), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205371] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(5049), 1, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, sym_formal_parameters, - STATE(5982), 1, + STATE(5753), 1, sym_comment, - STATE(6294), 1, + STATE(7438), 1, sym__call_signature, - STATE(7675), 1, + STATE(7801), 1, sym_type_parameters, - [208993] = 8, + [205396] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9503), 1, - anon_sym_LBRACE, - ACTIONS(9548), 1, - anon_sym_SEMI, - ACTIONS(9550), 1, - sym__automatic_semicolon, - ACTIONS(9552), 1, - sym__function_signature_automatic_semicolon, - STATE(1870), 1, - sym_statement_block, - STATE(5983), 1, + STATE(5754), 1, sym_comment, - [209018] = 6, + ACTIONS(8836), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [205413] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5984), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5755), 1, sym_comment, - STATE(7082), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [209039] = 8, + STATE(7648), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [205438] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8635), 1, - anon_sym_EQ, - ACTIONS(9554), 1, - anon_sym_COMMA, - ACTIONS(9556), 1, - anon_sym_RBRACE, - STATE(5985), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5756), 1, sym_comment, - STATE(6850), 1, - aux_sym_enum_body_repeat1, - STATE(7986), 1, - sym__initializer, - [209064] = 8, + STATE(7524), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [205463] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8635), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(9558), 1, - anon_sym_COMMA, - ACTIONS(9560), 1, - anon_sym_RBRACE, - STATE(5986), 1, + STATE(5757), 1, sym_comment, - STATE(6757), 1, - aux_sym_enum_body_repeat1, - STATE(7986), 1, + STATE(6535), 1, sym__initializer, - [209089] = 8, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [205484] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5987), 1, + STATE(5758), 1, sym_comment, - STATE(7889), 1, + STATE(7517), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [209114] = 6, + [205509] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5988), 1, + STATE(5759), 1, sym_comment, - STATE(6867), 1, + STATE(6660), 1, sym__initializer, - ACTIONS(9460), 3, + ACTIONS(9576), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [209135] = 6, + [205530] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5760), 1, + sym_comment, + ACTIONS(9578), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [205547] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5989), 1, + STATE(5761), 1, sym_comment, - STATE(6866), 1, + STATE(6520), 1, sym__initializer, - ACTIONS(9460), 3, + ACTIONS(9580), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [209156] = 8, + [205568] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5990), 1, + STATE(5762), 1, sym_comment, - STATE(7659), 1, + STATE(7500), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [209181] = 6, + [205593] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(5991), 1, + STATE(5763), 1, sym_comment, - STATE(6650), 1, + STATE(6596), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [209202] = 6, + [205614] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(5992), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5764), 1, sym_comment, - STATE(6645), 1, - sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9582), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [209223] = 4, + [205637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5993), 1, + STATE(5765), 1, sym_comment, - ACTIONS(2436), 5, + ACTIONS(7058), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [209240] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(5994), 1, - sym_comment, - STATE(8002), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [209265] = 8, + [205654] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(5995), 1, + STATE(5766), 1, sym_comment, - STATE(8134), 1, + STATE(7310), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [209290] = 8, + [205679] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9536), 1, + ACTIONS(8531), 1, anon_sym_LBRACE, - ACTIONS(9548), 1, + ACTIONS(9530), 1, anon_sym_SEMI, - ACTIONS(9550), 1, + ACTIONS(9532), 1, sym__automatic_semicolon, - ACTIONS(9552), 1, + ACTIONS(9534), 1, sym__function_signature_automatic_semicolon, - STATE(3996), 1, - sym_statement_block, - STATE(5996), 1, - sym_comment, - [209315] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(5997), 1, - sym_comment, - ACTIONS(8613), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [209332] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(5998), 1, + STATE(5767), 1, sym_comment, - ACTIONS(9562), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [209355] = 4, + STATE(6618), 1, + sym_statement_block, + [205704] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(5999), 1, + STATE(5768), 1, sym_comment, - ACTIONS(9564), 5, + ACTIONS(9584), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [209372] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8833), 1, - anon_sym_COLON, - ACTIONS(9566), 1, - anon_sym_EQ_GT, - STATE(6000), 1, - sym_comment, - STATE(7893), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [209393] = 6, + [205721] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8833), 1, - anon_sym_COLON, - ACTIONS(9569), 1, - anon_sym_EQ_GT, - STATE(6001), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9011), 1, + anon_sym_abstract, + ACTIONS(9586), 1, + anon_sym_class, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5769), 1, sym_comment, - STATE(7701), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [209414] = 7, + STATE(6120), 1, + sym_decorator, + [205746] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(8082), 1, + ACTIONS(8089), 1, anon_sym_extends, - ACTIONS(9351), 1, + ACTIONS(9387), 1, anon_sym_PIPE, - STATE(6002), 1, + STATE(5770), 1, sym_comment, - ACTIONS(9572), 2, + ACTIONS(9588), 2, sym__automatic_semicolon, anon_sym_SEMI, - [209437] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9515), 1, - anon_sym_SEMI, - ACTIONS(9517), 1, - sym__automatic_semicolon, - ACTIONS(9519), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(9574), 1, - anon_sym_LBRACE, - STATE(1915), 1, - sym_statement_block, - STATE(6003), 1, - sym_comment, - [209462] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6004), 1, - sym_comment, - STATE(7717), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [209487] = 6, + [205769] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6005), 1, + STATE(5771), 1, sym_comment, - STATE(7149), 1, + STATE(6978), 1, sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [209508] = 6, + [205790] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6006), 1, + STATE(5772), 1, sym_comment, - STATE(7106), 1, + STATE(6523), 1, sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [209529] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4942), 1, - sym_formal_parameters, - STATE(5861), 1, - sym__call_signature, - STATE(6007), 1, - sym_comment, - STATE(8017), 1, - sym_type_parameters, - [209554] = 7, + [205811] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(8082), 1, + ACTIONS(8089), 1, anon_sym_extends, - ACTIONS(9351), 1, + ACTIONS(9387), 1, anon_sym_PIPE, - STATE(6008), 1, + STATE(5773), 1, sym_comment, - ACTIONS(9576), 2, + ACTIONS(9592), 2, sym__automatic_semicolon, anon_sym_SEMI, - [209577] = 8, + [205834] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(6009), 1, + STATE(5774), 1, sym_comment, - STATE(7473), 1, + STATE(7701), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [209602] = 6, + [205859] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6010), 1, - sym_comment, - STATE(7102), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8531), 1, + anon_sym_LBRACE, + ACTIONS(9502), 1, anon_sym_SEMI, - [209623] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6011), 1, - sym_comment, - STATE(7091), 1, - sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9504), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [209644] = 6, + ACTIONS(9506), 1, + sym__function_signature_automatic_semicolon, + STATE(5775), 1, + sym_comment, + STATE(5960), 1, + sym_statement_block, + [205884] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6012), 1, + STATE(5776), 1, sym_comment, - STATE(7078), 1, + STATE(6522), 1, sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9381), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [209665] = 7, + [205905] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6013), 1, + STATE(5777), 1, sym_comment, - ACTIONS(9578), 2, + ACTIONS(8741), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [209688] = 7, + anon_sym_PIPE_RBRACE, + [205922] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8675), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(9580), 1, - anon_sym_LBRACE, - STATE(6014), 1, + STATE(5340), 1, + sym_formal_parameters, + STATE(5778), 1, sym_comment, - STATE(7313), 1, - sym_type_arguments, - ACTIONS(9582), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [209711] = 6, + STATE(7801), 1, + sym_type_parameters, + STATE(7842), 1, + sym__call_signature, + [205947] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6015), 1, + STATE(5779), 1, sym_comment, - STATE(6639), 1, + STATE(6973), 1, sym__initializer, - ACTIONS(9419), 3, + ACTIONS(9590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [209732] = 6, + [205968] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6016), 1, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(8363), 1, + anon_sym_COLON, + ACTIONS(8365), 1, + anon_sym_DOT, + ACTIONS(8367), 1, + anon_sym_on, + STATE(4160), 1, + sym_ui_object_initializer, + STATE(5780), 1, sym_comment, - STATE(7070), 1, - sym__initializer, - ACTIONS(9353), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [209753] = 8, + [205993] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9513), 1, + ACTIONS(5602), 1, anon_sym_LBRACE, - ACTIONS(9584), 1, + ACTIONS(9594), 1, anon_sym_SEMI, - ACTIONS(9586), 1, + ACTIONS(9596), 1, sym__automatic_semicolon, - ACTIONS(9588), 1, + ACTIONS(9598), 1, sym__function_signature_automatic_semicolon, - STATE(4055), 1, + STATE(3411), 1, sym_statement_block, - STATE(6017), 1, + STATE(5781), 1, sym_comment, - [209778] = 6, + [206018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6018), 1, + STATE(5782), 1, sym_comment, - STATE(7050), 1, - sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9600), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [209799] = 6, + anon_sym_PIPE_RBRACE, + [206035] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(8817), 1, anon_sym_EQ, - STATE(6019), 1, + ACTIONS(9602), 1, + anon_sym_COMMA, + ACTIONS(9604), 1, + anon_sym_RBRACE, + STATE(5783), 1, sym_comment, - STATE(7049), 1, + STATE(6883), 1, + aux_sym_enum_body_repeat1, + STATE(7161), 1, sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [209820] = 6, + [206060] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6020), 1, + STATE(5784), 1, sym_comment, - STATE(7048), 1, + STATE(6513), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [209841] = 4, + [206081] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6021), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5785), 1, sym_comment, - ACTIONS(8611), 5, + STATE(6594), 1, + sym__initializer, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [209858] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(6022), 1, - sym_comment, - STATE(6223), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [209883] = 6, + [206102] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(8817), 1, anon_sym_EQ, - STATE(6023), 1, + ACTIONS(9606), 1, + anon_sym_COMMA, + ACTIONS(9608), 1, + anon_sym_RBRACE, + STATE(5786), 1, sym_comment, - STATE(7034), 1, + STATE(6707), 1, + aux_sym_enum_body_repeat1, + STATE(7161), 1, sym__initializer, - ACTIONS(9353), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [209904] = 8, + [206127] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, - anon_sym_LBRACE, - ACTIONS(9523), 1, + ACTIONS(9488), 1, anon_sym_SEMI, - ACTIONS(9525), 1, + ACTIONS(9490), 1, sym__automatic_semicolon, - ACTIONS(9527), 1, + ACTIONS(9492), 1, sym__function_signature_automatic_semicolon, - STATE(6024), 1, - sym_comment, - STATE(7085), 1, + ACTIONS(9610), 1, + anon_sym_LBRACE, + STATE(478), 1, sym_statement_block, - [209929] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6025), 1, + STATE(5787), 1, sym_comment, - ACTIONS(9590), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [209946] = 6, + [206152] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6026), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5788), 1, sym_comment, - STATE(7025), 1, - sym__initializer, - ACTIONS(9353), 3, + ACTIONS(9612), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [209967] = 6, + [206175] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6027), 1, - sym_comment, - STATE(6914), 1, - sym__initializer, - ACTIONS(9592), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8531), 1, + anon_sym_LBRACE, + ACTIONS(9522), 1, anon_sym_SEMI, - [209988] = 6, + ACTIONS(9524), 1, + sym__automatic_semicolon, + ACTIONS(9526), 1, + sym__function_signature_automatic_semicolon, + STATE(5789), 1, + sym_comment, + STATE(5958), 1, + sym_statement_block, + [206200] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6028), 1, + STATE(5790), 1, sym_comment, - STATE(7024), 1, + STATE(6578), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [210009] = 6, + [206221] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6029), 1, + STATE(5791), 1, sym_comment, - STATE(7012), 1, + STATE(6469), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [210030] = 8, + [206242] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9281), 1, - anon_sym_class, - ACTIONS(9283), 1, - anon_sym_abstract, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6030), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, + sym_formal_parameters, + STATE(5237), 1, + sym__call_signature, + STATE(5792), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [210055] = 6, + STATE(7660), 1, + sym_type_parameters, + [206267] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6031), 1, + STATE(5793), 1, sym_comment, - STATE(6980), 1, + STATE(6519), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9381), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [210076] = 4, + [206288] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6032), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5794), 1, sym_comment, - ACTIONS(9594), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [210093] = 6, + STATE(7801), 1, + sym_type_parameters, + STATE(7881), 1, + sym__call_signature, + [206313] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6033), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5775), 1, + sym__call_signature, + STATE(5795), 1, sym_comment, - STATE(6983), 1, - sym__initializer, - ACTIONS(9353), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [210114] = 4, + STATE(7873), 1, + sym_type_parameters, + [206338] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6034), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5796), 1, sym_comment, - ACTIONS(9596), 5, + STATE(6575), 1, + sym__initializer, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [210131] = 4, + [206359] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6035), 1, + STATE(5797), 1, sym_comment, - ACTIONS(9598), 5, + ACTIONS(8832), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [210148] = 8, + [206376] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(6036), 1, - sym_comment, - STATE(6112), 1, + STATE(5623), 1, sym__call_signature, - STATE(7675), 1, + STATE(5798), 1, + sym_comment, + STATE(7660), 1, sym_type_parameters, - [210173] = 6, + [206401] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6037), 1, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8653), 1, + anon_sym_LBRACE, + ACTIONS(8655), 1, + anon_sym_LBRACE_PIPE, + STATE(1487), 1, + sym_object_type, + STATE(5799), 1, sym_comment, - STATE(7032), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [210194] = 8, + STATE(6852), 1, + sym_extends_type_clause, + [206426] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - ACTIONS(9600), 1, + ACTIONS(9510), 1, anon_sym_SEMI, - ACTIONS(9602), 1, + ACTIONS(9512), 1, sym__automatic_semicolon, - ACTIONS(9604), 1, + ACTIONS(9514), 1, sym__function_signature_automatic_semicolon, - STATE(3544), 1, + ACTIONS(9610), 1, + anon_sym_LBRACE, + STATE(473), 1, sym_statement_block, - STATE(6038), 1, + STATE(5800), 1, sym_comment, - [210219] = 4, + [206451] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6039), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9272), 1, + anon_sym_class, + ACTIONS(9274), 1, + anon_sym_abstract, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5801), 1, + sym_comment, + STATE(6120), 1, + sym_decorator, + [206476] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5802), 1, sym_comment, - ACTIONS(9606), 5, + ACTIONS(7071), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [210236] = 6, + [206493] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6040), 1, + STATE(5803), 1, sym_comment, - STATE(6972), 1, + STATE(6826), 1, sym__initializer, - ACTIONS(9608), 3, + ACTIONS(9590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [210257] = 4, + [206514] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6041), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + STATE(5804), 1, + sym_comment, + STATE(7921), 1, + sym_type_annotation, + ACTIONS(4685), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + [206535] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_COLON, + ACTIONS(9614), 1, + anon_sym_EQ_GT, + STATE(5805), 1, + sym_comment, + STATE(7779), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [206556] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5806), 1, sym_comment, - ACTIONS(9610), 5, + STATE(6700), 1, + sym__initializer, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [210274] = 4, + [206577] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6042), 1, + STATE(5807), 1, sym_comment, - ACTIONS(9612), 5, + ACTIONS(9617), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [210291] = 8, + [206594] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8635), 1, - anon_sym_EQ, - ACTIONS(9614), 1, - anon_sym_COMMA, - ACTIONS(9616), 1, - anon_sym_RBRACE, - STATE(6043), 1, + ACTIONS(8965), 1, + anon_sym_COLON, + ACTIONS(9619), 1, + anon_sym_EQ_GT, + STATE(5808), 1, sym_comment, - STATE(7270), 1, - aux_sym_enum_body_repeat1, - STATE(7986), 1, - sym__initializer, - [210316] = 6, + STATE(7301), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [206615] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6044), 1, + STATE(5809), 1, sym_comment, - STATE(6981), 1, + STATE(6948), 1, sym__initializer, - ACTIONS(9367), 3, + ACTIONS(9590), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [210337] = 4, + [206636] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6045), 1, + ACTIONS(8965), 1, + anon_sym_COLON, + ACTIONS(9622), 1, + anon_sym_EQ_GT, + STATE(5810), 1, sym_comment, - ACTIONS(9618), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [210354] = 8, + STATE(7301), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [206657] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9403), 1, - sym__template_chars, - ACTIONS(9620), 1, - anon_sym_BQUOTE, - STATE(6046), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(5811), 1, sym_comment, - STATE(6174), 1, - aux_sym_template_literal_type_repeat1, - STATE(7022), 1, - sym_template_type, - [210379] = 7, + ACTIONS(9625), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [206680] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6047), 1, + STATE(5812), 1, sym_comment, - ACTIONS(9622), 2, + ACTIONS(8834), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [210402] = 4, + anon_sym_PIPE_RBRACE, + [206697] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6048), 1, + STATE(5813), 1, sym_comment, - ACTIONS(9624), 5, + ACTIONS(8832), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [210419] = 8, + [206714] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4942), 1, - sym_formal_parameters, - STATE(5299), 1, - sym__call_signature, - STATE(6049), 1, + ACTIONS(8531), 1, + anon_sym_LBRACE, + ACTIONS(9594), 1, + anon_sym_SEMI, + ACTIONS(9596), 1, + sym__automatic_semicolon, + ACTIONS(9598), 1, + sym__function_signature_automatic_semicolon, + STATE(5814), 1, sym_comment, - STATE(8017), 1, - sym_type_parameters, - [210444] = 8, + STATE(6570), 1, + sym_statement_block, + [206739] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, ACTIONS(2989), 1, anon_sym_AT, - ACTIONS(9283), 1, + ACTIONS(8884), 1, anon_sym_abstract, - ACTIONS(9626), 1, + ACTIONS(9627), 1, anon_sym_class, - STATE(5701), 1, + STATE(5385), 1, aux_sym_export_statement_repeat1, - STATE(6050), 1, + STATE(5815), 1, sym_comment, - STATE(6589), 1, + STATE(6120), 1, sym_decorator, - [210469] = 7, + [206764] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5816), 1, + sym_comment, + ACTIONS(9629), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206781] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(8082), 1, + ACTIONS(8089), 1, anon_sym_extends, - ACTIONS(9351), 1, + ACTIONS(9387), 1, anon_sym_PIPE, - STATE(6051), 1, + STATE(5817), 1, sym_comment, - ACTIONS(9628), 2, + ACTIONS(9631), 2, sym__automatic_semicolon, anon_sym_SEMI, - [210492] = 8, + [206804] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, - anon_sym_LBRACE, - ACTIONS(9632), 1, - anon_sym_SEMI, - ACTIONS(9634), 1, - sym__automatic_semicolon, - ACTIONS(9636), 1, - sym__function_signature_automatic_semicolon, - STATE(1040), 1, - sym_statement_block, - STATE(6052), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5818), 1, sym_comment, - [210517] = 8, + ACTIONS(9633), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206827] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(6053), 1, + ACTIONS(7832), 1, + anon_sym_LBRACK, + ACTIONS(9635), 1, + anon_sym_RBRACE, + STATE(5819), 1, sym_comment, - STATE(6205), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [210542] = 8, + ACTIONS(5750), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [206848] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(5049), 1, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, sym_formal_parameters, - STATE(6054), 1, + STATE(5820), 1, sym_comment, - STATE(6196), 1, + STATE(7754), 1, sym__call_signature, - STATE(7675), 1, + STATE(7801), 1, sym_type_parameters, - [210567] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8635), 1, - anon_sym_EQ, - ACTIONS(9638), 1, - anon_sym_COMMA, - ACTIONS(9640), 1, - anon_sym_RBRACE, - STATE(6055), 1, - sym_comment, - STATE(7256), 1, - aux_sym_enum_body_repeat1, - STATE(7986), 1, - sym__initializer, - [210592] = 8, + [206873] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9632), 1, - anon_sym_SEMI, - ACTIONS(9634), 1, - sym__automatic_semicolon, - ACTIONS(9636), 1, - sym__function_signature_automatic_semicolon, + ACTIONS(9637), 1, + anon_sym_BQUOTE, + ACTIONS(9639), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(9642), 1, - anon_sym_LBRACE, - STATE(351), 1, - sym_statement_block, - STATE(6056), 1, + sym__template_chars, + STATE(6984), 1, + sym_template_type, + STATE(5821), 2, sym_comment, - [210617] = 7, + aux_sym_template_literal_type_repeat1, + [206896] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6057), 1, + STATE(5822), 1, sym_comment, - ACTIONS(9644), 2, + ACTIONS(8834), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [210640] = 8, + anon_sym_PIPE_RBRACE, + [206913] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, - anon_sym_LBRACE, - ACTIONS(9646), 1, - anon_sym_SEMI, - ACTIONS(9648), 1, - sym__automatic_semicolon, - ACTIONS(9650), 1, - sym__function_signature_automatic_semicolon, - STATE(1046), 1, - sym_statement_block, - STATE(6058), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(5823), 1, sym_comment, - [210665] = 8, + ACTIONS(9645), 2, + anon_sym_COMMA, + anon_sym_GT, + [206936] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6059), 1, + STATE(5824), 1, sym_comment, - STATE(7378), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [210690] = 8, + ACTIONS(9647), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206953] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(6060), 1, + STATE(5825), 1, sym_comment, - STATE(6188), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [210715] = 8, + ACTIONS(9649), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206970] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8797), 1, - anon_sym_LBRACE, - ACTIONS(8799), 1, - anon_sym_LBRACE_PIPE, - STATE(1148), 1, - sym_object_type, - STATE(6061), 1, + STATE(5826), 1, sym_comment, - STATE(7263), 1, - sym_extends_type_clause, - [210740] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9642), 1, - anon_sym_LBRACE, - ACTIONS(9646), 1, - anon_sym_SEMI, - ACTIONS(9648), 1, + ACTIONS(8779), 5, sym__automatic_semicolon, - ACTIONS(9650), 1, - sym__function_signature_automatic_semicolon, - STATE(363), 1, - sym_statement_block, - STATE(6062), 1, - sym_comment, - [210765] = 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206987] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5736), 1, - sym__call_signature, - STATE(6063), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5827), 1, sym_comment, - STATE(7675), 1, - sym_type_parameters, - [210790] = 4, + STATE(6488), 1, + sym__initializer, + ACTIONS(9474), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207008] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6064), 1, + STATE(5828), 1, sym_comment, - ACTIONS(8570), 5, + ACTIONS(9651), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [210807] = 6, + [207025] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8833), 1, - anon_sym_COLON, - ACTIONS(9652), 1, - anon_sym_EQ_GT, - STATE(6065), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5829), 1, sym_comment, - STATE(7701), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [210828] = 8, + STATE(6515), 1, + sym__initializer, + ACTIONS(9373), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207046] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6066), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9360), 1, + sym__template_chars, + ACTIONS(9653), 1, + anon_sym_BQUOTE, + STATE(5522), 1, + aux_sym_template_literal_type_repeat1, + STATE(5830), 1, sym_comment, - STATE(7373), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [210853] = 8, + STATE(6984), 1, + sym_template_type, + [207071] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6067), 1, - sym_comment, - STATE(6282), 1, + STATE(5787), 1, sym__call_signature, - STATE(7675), 1, + STATE(5831), 1, + sym_comment, + STATE(7873), 1, sym_type_parameters, - [210878] = 4, + [207096] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6068), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5832), 1, sym_comment, - ACTIONS(9655), 5, + STATE(6463), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [210895] = 4, + [207117] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6069), 1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(8265), 1, + anon_sym_DOT, + STATE(4980), 1, + sym_arguments, + STATE(5833), 1, sym_comment, - ACTIONS(9657), 5, - sym__automatic_semicolon, + ACTIONS(9655), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [210912] = 8, + anon_sym_GT, + [207140] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8710), 1, - anon_sym_LBRACE, - ACTIONS(8712), 1, - anon_sym_LBRACE_PIPE, - STATE(4422), 1, - sym_object_type, - STATE(6070), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, + sym_formal_parameters, + STATE(5274), 1, + sym__call_signature, + STATE(5834), 1, sym_comment, - STATE(6713), 1, - sym_extends_type_clause, - [210937] = 8, + STATE(7660), 1, + sym_type_parameters, + [207165] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, - anon_sym_LBRACE, - ACTIONS(9600), 1, - anon_sym_SEMI, - ACTIONS(9602), 1, - sym__automatic_semicolon, - ACTIONS(9604), 1, - sym__function_signature_automatic_semicolon, - STATE(6071), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5835), 1, sym_comment, - STATE(7054), 1, - sym_statement_block, - [210962] = 4, + STATE(7801), 1, + sym_type_parameters, + STATE(7868), 1, + sym__call_signature, + [207190] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6072), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(5836), 1, sym_comment, - ACTIONS(6976), 5, - anon_sym_EQ, + ACTIONS(9657), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [210979] = 4, + anon_sym_GT, + [207213] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6073), 1, + STATE(5837), 1, sym_comment, - ACTIONS(9659), 5, + ACTIONS(8781), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [210996] = 7, + [207230] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6074), 1, + STATE(5838), 1, sym_comment, - ACTIONS(9661), 2, + ACTIONS(2452), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [211019] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6075), 1, - sym_comment, - STATE(7427), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [211044] = 4, + anon_sym_PIPE_RBRACE, + [207247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6076), 1, + STATE(5839), 1, sym_comment, - ACTIONS(9663), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211061] = 4, + ACTIONS(9659), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [207264] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6077), 1, + STATE(5840), 1, sym_comment, - ACTIONS(9665), 5, + ACTIONS(9661), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [211078] = 8, + [207281] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, sym_formal_parameters, - STATE(6078), 1, - sym_comment, - STATE(7865), 1, + STATE(5789), 1, sym__call_signature, - STATE(8189), 1, + STATE(5841), 1, + sym_comment, + STATE(7873), 1, sym_type_parameters, - [211103] = 4, + [207306] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6079), 1, + STATE(5842), 1, sym_comment, - ACTIONS(9657), 5, + ACTIONS(9663), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [211120] = 8, + [207323] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9574), 1, - anon_sym_LBRACE, - ACTIONS(9584), 1, - anon_sym_SEMI, - ACTIONS(9586), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5843), 1, + sym_comment, + STATE(6399), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, - ACTIONS(9588), 1, - sym__function_signature_automatic_semicolon, - STATE(1910), 1, - sym_statement_block, - STATE(6080), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [207344] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5844), 1, sym_comment, - [211145] = 4, + STATE(6935), 1, + sym__initializer, + ACTIONS(9665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207365] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6081), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5845), 1, sym_comment, - ACTIONS(9667), 5, + STATE(6726), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211162] = 6, + [207386] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8833), 1, - anon_sym_COLON, - ACTIONS(9669), 1, - anon_sym_EQ_GT, - STATE(6082), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5846), 1, sym_comment, - STATE(7701), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [211183] = 4, + STATE(6934), 1, + sym__initializer, + ACTIONS(9665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207407] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6083), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5847), 1, sym_comment, - ACTIONS(9672), 5, + STATE(6932), 1, + sym__initializer, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211200] = 8, + [207428] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, sym_formal_parameters, - STATE(6084), 1, - sym_comment, - STATE(7740), 1, + STATE(5754), 1, sym__call_signature, - STATE(8189), 1, + STATE(5848), 1, + sym_comment, + STATE(7660), 1, sym_type_parameters, - [211225] = 4, + [207453] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6085), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(5849), 1, sym_comment, - ACTIONS(6976), 5, - anon_sym_EQ, + ACTIONS(9667), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207476] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2472), 1, + anon_sym_DOT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6068), 1, + anon_sym_LBRACE, + STATE(5850), 1, + sym_comment, + ACTIONS(6070), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [211242] = 7, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [207497] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(8082), 1, + ACTIONS(8089), 1, anon_sym_extends, - ACTIONS(9351), 1, + ACTIONS(9387), 1, anon_sym_PIPE, - STATE(6086), 1, + STATE(5851), 1, sym_comment, - ACTIONS(9674), 2, + ACTIONS(9669), 2, sym__automatic_semicolon, anon_sym_SEMI, - [211265] = 7, + [207520] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(8082), 1, + ACTIONS(8089), 1, anon_sym_extends, - ACTIONS(9351), 1, + ACTIONS(9387), 1, anon_sym_PIPE, - STATE(6087), 1, + STATE(5852), 1, sym_comment, - ACTIONS(9676), 2, + ACTIONS(9671), 2, sym__automatic_semicolon, anon_sym_SEMI, - [211288] = 8, + [207543] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2468), 1, + anon_sym_DOT, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6068), 1, + anon_sym_LBRACE, + STATE(5853), 1, + sym_comment, + ACTIONS(6070), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [207564] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9678), 1, + ACTIONS(9673), 1, anon_sym_LBRACE, - ACTIONS(9680), 1, + ACTIONS(9675), 1, anon_sym_SEMI, - ACTIONS(9682), 1, + ACTIONS(9677), 1, sym__automatic_semicolon, - ACTIONS(9684), 1, + ACTIONS(9679), 1, sym__function_signature_automatic_semicolon, - STATE(1065), 1, + STATE(3851), 1, sym_statement_block, - STATE(6088), 1, + STATE(5854), 1, sym_comment, - [211313] = 4, + [207589] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6089), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9360), 1, + sym__template_chars, + ACTIONS(9681), 1, + anon_sym_BQUOTE, + STATE(5539), 1, + aux_sym_template_literal_type_repeat1, + STATE(5855), 1, sym_comment, - ACTIONS(9686), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211330] = 4, + STATE(6984), 1, + sym_template_type, + [207614] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6090), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9683), 1, + anon_sym_class, + ACTIONS(9685), 1, + anon_sym_abstract, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5856), 1, sym_comment, - ACTIONS(6976), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [211347] = 8, + STATE(6120), 1, + sym_decorator, + [207639] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(4942), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(5223), 1, + STATE(5278), 1, sym__call_signature, - STATE(6091), 1, + STATE(5857), 1, sym_comment, - STATE(8017), 1, + STATE(7660), 1, sym_type_parameters, - [211372] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + [207664] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(9361), 1, - sym_identifier, - STATE(6092), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5858), 1, sym_comment, - STATE(6566), 1, - sym_string, - STATE(7658), 1, - sym__module_export_name, - [211397] = 6, + STATE(7626), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [207689] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(8817), 1, anon_sym_EQ, - STATE(6093), 1, + ACTIONS(9687), 1, + anon_sym_COMMA, + ACTIONS(9689), 1, + anon_sym_RBRACE, + STATE(5859), 1, sym_comment, - STATE(6620), 1, + STATE(6593), 1, + aux_sym_enum_body_repeat1, + STATE(7161), 1, sym__initializer, - ACTIONS(9413), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [211418] = 6, + [207714] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6094), 1, + STATE(5860), 1, sym_comment, - STATE(6618), 1, + STATE(6376), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [211439] = 8, + [207735] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8635), 1, - anon_sym_EQ, - ACTIONS(9688), 1, - anon_sym_COMMA, - ACTIONS(9690), 1, - anon_sym_RBRACE, - STATE(6095), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, + sym_formal_parameters, + STATE(5246), 1, + sym__call_signature, + STATE(5861), 1, sym_comment, - STATE(7276), 1, - aux_sym_enum_body_repeat1, - STATE(7986), 1, - sym__initializer, - [211464] = 6, + STATE(7660), 1, + sym_type_parameters, + [207760] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6096), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9685), 1, + anon_sym_abstract, + ACTIONS(9691), 1, + anon_sym_class, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5862), 1, sym_comment, - STATE(6614), 1, - sym__initializer, - ACTIONS(9419), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [211485] = 8, + STATE(6120), 1, + sym_decorator, + [207785] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9680), 1, + ACTIONS(9675), 1, anon_sym_SEMI, - ACTIONS(9682), 1, + ACTIONS(9677), 1, sym__automatic_semicolon, - ACTIONS(9684), 1, + ACTIONS(9679), 1, sym__function_signature_automatic_semicolon, - ACTIONS(9692), 1, + ACTIONS(9693), 1, anon_sym_LBRACE, - STATE(409), 1, + STATE(1717), 1, sym_statement_block, - STATE(6097), 1, - sym_comment, - [211510] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6098), 1, + STATE(5863), 1, sym_comment, - STATE(6977), 1, - sym__initializer, - ACTIONS(9367), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [211531] = 7, + [207810] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(8082), 1, + ACTIONS(8089), 1, anon_sym_extends, - ACTIONS(9351), 1, + ACTIONS(9387), 1, anon_sym_PIPE, - STATE(6099), 1, + STATE(5864), 1, sym_comment, - ACTIONS(9694), 2, + ACTIONS(9695), 2, sym__automatic_semicolon, anon_sym_SEMI, - [211554] = 8, + [207833] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9678), 1, - anon_sym_LBRACE, - ACTIONS(9696), 1, - anon_sym_SEMI, - ACTIONS(9698), 1, - sym__automatic_semicolon, - ACTIONS(9700), 1, - sym__function_signature_automatic_semicolon, - STATE(1100), 1, - sym_statement_block, - STATE(6100), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, + sym_formal_parameters, + STATE(5219), 1, + sym__call_signature, + STATE(5865), 1, sym_comment, - [211579] = 6, + STATE(7660), 1, + sym_type_parameters, + [207858] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6101), 1, + STATE(5866), 1, sym_comment, - STATE(6969), 1, + STATE(6377), 1, sym__initializer, - ACTIONS(9419), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [211600] = 6, + [207879] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6102), 1, - sym_comment, - STATE(6863), 1, - sym__initializer, - ACTIONS(9355), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(9673), 1, + anon_sym_LBRACE, + ACTIONS(9697), 1, anon_sym_SEMI, - [211621] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6103), 1, - sym_comment, - STATE(7469), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [211646] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8936), 1, - aux_sym_ui_version_specifier_token1, - ACTIONS(8960), 1, - anon_sym_as, - STATE(6104), 1, - sym_comment, - STATE(6738), 1, - sym_ui_version_specifier, - ACTIONS(8962), 2, + ACTIONS(9699), 1, sym__automatic_semicolon, - anon_sym_SEMI, - [211669] = 8, + ACTIONS(9701), 1, + sym__function_signature_automatic_semicolon, + STATE(3896), 1, + sym_statement_block, + STATE(5867), 1, + sym_comment, + [207904] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7902), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4747), 1, sym_formal_parameters, - STATE(6105), 1, - sym_comment, - STATE(6107), 1, + STATE(5284), 1, sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [211694] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8655), 1, - anon_sym_LBRACE, - ACTIONS(8657), 1, - anon_sym_LBRACE_PIPE, - STATE(1309), 1, - sym_object_type, - STATE(6106), 1, - sym_comment, - STATE(7280), 1, - sym_extends_type_clause, - [211719] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9692), 1, - anon_sym_LBRACE, - ACTIONS(9696), 1, - anon_sym_SEMI, - ACTIONS(9698), 1, - sym__automatic_semicolon, - ACTIONS(9700), 1, - sym__function_signature_automatic_semicolon, - STATE(392), 1, - sym_statement_block, - STATE(6107), 1, + STATE(5868), 1, sym_comment, - [211744] = 4, + STATE(7660), 1, + sym_type_parameters, + [207929] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6108), 1, + STATE(5869), 1, sym_comment, - ACTIONS(6988), 5, + ACTIONS(9703), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [211761] = 7, + [207946] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6109), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5870), 1, sym_comment, - ACTIONS(9702), 2, + STATE(6433), 1, + sym__initializer, + ACTIONS(9474), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [211784] = 4, + [207967] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6110), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(9470), 1, + sym_identifier, + STATE(5871), 1, sym_comment, - ACTIONS(9704), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211801] = 4, + STATE(6263), 1, + sym_string, + STATE(7839), 1, + sym__module_export_name, + [207992] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6111), 1, + STATE(5872), 1, sym_comment, - ACTIONS(6986), 5, + ACTIONS(9705), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [211818] = 8, + [208009] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9706), 1, - anon_sym_LBRACE, - ACTIONS(9708), 1, - anon_sym_SEMI, - ACTIONS(9710), 1, - sym__automatic_semicolon, - ACTIONS(9712), 1, - sym__function_signature_automatic_semicolon, - STATE(517), 1, - sym_statement_block, - STATE(6112), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5800), 1, + sym__call_signature, + STATE(5873), 1, sym_comment, - [211843] = 4, + STATE(7873), 1, + sym_type_parameters, + [208034] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6113), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5874), 1, sym_comment, - ACTIONS(6968), 5, + STATE(6379), 1, + sym__initializer, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211860] = 8, + [208055] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(5232), 1, - sym__call_signature, - STATE(6114), 1, + STATE(5875), 1, sym_comment, - STATE(8017), 1, + STATE(6090), 1, + sym__call_signature, + STATE(7873), 1, sym_type_parameters, - [211885] = 8, + [208080] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(6115), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5876), 1, sym_comment, - STATE(6242), 1, - sym__call_signature, - STATE(7675), 1, - sym_type_parameters, - [211910] = 4, + STATE(6709), 1, + sym__initializer, + ACTIONS(9707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6116), 1, + STATE(5877), 1, sym_comment, - ACTIONS(9714), 5, + ACTIONS(9709), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [211927] = 4, + [208118] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6117), 1, + ACTIONS(9552), 1, + anon_sym_SEMI, + ACTIONS(9554), 1, + sym__automatic_semicolon, + ACTIONS(9556), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9711), 1, + anon_sym_LBRACE, + STATE(1457), 1, + sym_statement_block, + STATE(5878), 1, sym_comment, - ACTIONS(6806), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [211944] = 8, + [208143] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4942), 1, - sym_formal_parameters, - STATE(5277), 1, - sym__call_signature, - STATE(6118), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5879), 1, sym_comment, - STATE(8017), 1, - sym_type_parameters, - [211969] = 8, + STATE(6925), 1, + sym__initializer, + ACTIONS(9665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208164] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9708), 1, - anon_sym_SEMI, - ACTIONS(9710), 1, - sym__automatic_semicolon, - ACTIONS(9712), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(9716), 1, - anon_sym_LBRACE, - STATE(1534), 1, - sym_statement_block, - STATE(6119), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5880), 1, sym_comment, - [211994] = 6, + STATE(6398), 1, + sym__initializer, + ACTIONS(9373), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208185] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6120), 1, + STATE(5881), 1, sym_comment, - STATE(6862), 1, + STATE(6705), 1, sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9474), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [212015] = 8, + [208206] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6100), 1, + STATE(5386), 1, sym__call_signature, - STATE(6121), 1, + STATE(5882), 1, sym_comment, - STATE(7675), 1, + STATE(7873), 1, sym_type_parameters, - [212040] = 8, + [208231] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(4942), 1, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, sym_formal_parameters, - STATE(5281), 1, - sym__call_signature, - STATE(6122), 1, + STATE(5883), 1, sym_comment, - STATE(8017), 1, + STATE(7801), 1, sym_type_parameters, - [212065] = 8, + STATE(7885), 1, + sym__call_signature, + [208256] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(6123), 1, + STATE(5884), 1, sym_comment, - STATE(8170), 1, + STATE(7433), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [212090] = 7, + [208281] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(8082), 1, + ACTIONS(8089), 1, anon_sym_extends, - ACTIONS(9351), 1, + ACTIONS(9387), 1, anon_sym_PIPE, - STATE(6124), 1, + STATE(5885), 1, sym_comment, - ACTIONS(9718), 2, + ACTIONS(9713), 2, sym__automatic_semicolon, anon_sym_SEMI, - [212113] = 8, + [208304] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4942), 1, - sym_formal_parameters, - STATE(5283), 1, - sym__call_signature, - STATE(6125), 1, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8633), 1, + anon_sym_LBRACE, + ACTIONS(8635), 1, + anon_sym_LBRACE_PIPE, + STATE(3975), 1, + sym_object_type, + STATE(5886), 1, sym_comment, - STATE(8017), 1, - sym_type_parameters, - [212138] = 4, + STATE(6562), 1, + sym_extends_type_clause, + [208329] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6126), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5887), 1, sym_comment, - ACTIONS(8556), 5, + STATE(6924), 1, + sym__initializer, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212155] = 4, + [208350] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6127), 1, - sym_comment, - ACTIONS(9720), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(9693), 1, + anon_sym_LBRACE, + ACTIONS(9697), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212172] = 4, + ACTIONS(9699), 1, + sym__automatic_semicolon, + ACTIONS(9701), 1, + sym__function_signature_automatic_semicolon, + STATE(1733), 1, + sym_statement_block, + STATE(5888), 1, + sym_comment, + [208375] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6128), 1, + STATE(5889), 1, sym_comment, - ACTIONS(9722), 5, + ACTIONS(9715), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212189] = 4, + [208392] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6129), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5890), 1, + sym_comment, + STATE(7778), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [208417] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5891), 1, sym_comment, - ACTIONS(9724), 5, + STATE(6922), 1, + sym__initializer, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212206] = 8, + [208438] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9476), 1, - anon_sym_abstract, - ACTIONS(9726), 1, - anon_sym_class, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6130), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9360), 1, + sym__template_chars, + ACTIONS(9717), 1, + anon_sym_BQUOTE, + STATE(5821), 1, + aux_sym_template_literal_type_repeat1, + STATE(5892), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [212231] = 4, + STATE(6984), 1, + sym_template_type, + [208463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6131), 1, + STATE(5893), 1, sym_comment, - ACTIONS(8570), 5, + ACTIONS(9719), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212248] = 4, + [208480] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6132), 1, + STATE(5894), 1, sym_comment, - ACTIONS(9728), 5, + ACTIONS(9721), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212265] = 4, + [208497] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6133), 1, + STATE(5895), 1, sym_comment, - ACTIONS(8720), 5, + ACTIONS(9723), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212282] = 4, + [208514] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6134), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5896), 1, sym_comment, - ACTIONS(9730), 5, + STATE(6918), 1, + sym__initializer, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212299] = 8, + [208535] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(6097), 1, - sym__call_signature, - STATE(6135), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5897), 1, sym_comment, - STATE(7675), 1, - sym_type_parameters, - [212324] = 4, + STATE(6382), 1, + sym__initializer, + ACTIONS(9474), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [208556] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6136), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5898), 1, sym_comment, - ACTIONS(9732), 5, + STATE(6430), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212341] = 4, + [208577] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6137), 1, + STATE(5899), 1, sym_comment, - ACTIONS(9734), 5, + ACTIONS(9725), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212358] = 4, + [208594] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6138), 1, + STATE(5900), 1, sym_comment, - ACTIONS(9734), 5, + ACTIONS(9727), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212375] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4942), 1, - sym_formal_parameters, - STATE(6139), 1, - sym_comment, - STATE(6143), 1, - sym__call_signature, - STATE(8017), 1, - sym_type_parameters, - [212400] = 4, + [208611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6140), 1, + STATE(5901), 1, sym_comment, - ACTIONS(9734), 5, + ACTIONS(9729), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212417] = 4, + [208628] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6141), 1, + STATE(5902), 1, sym_comment, - ACTIONS(9736), 5, + ACTIONS(8795), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212434] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6142), 1, - sym_comment, - STATE(7517), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [212459] = 4, + [208645] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6143), 1, + STATE(5903), 1, sym_comment, - ACTIONS(8572), 5, + ACTIONS(9731), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212476] = 8, + [208662] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4942), 1, - sym_formal_parameters, - STATE(5788), 1, - sym__call_signature, - STATE(6144), 1, + ACTIONS(8898), 1, + aux_sym_ui_version_specifier_token1, + ACTIONS(8973), 1, + anon_sym_as, + STATE(5904), 1, sym_comment, - STATE(8017), 1, - sym_type_parameters, - [212501] = 4, + STATE(6529), 1, + sym_ui_version_specifier, + ACTIONS(8975), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208685] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6145), 1, + STATE(5905), 1, sym_comment, - ACTIONS(9738), 5, + ACTIONS(8797), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212518] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(5535), 1, - sym__call_signature, - STATE(6146), 1, - sym_comment, - STATE(7675), 1, - sym_type_parameters, - [212543] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(6088), 1, - sym__call_signature, - STATE(6147), 1, - sym_comment, - STATE(7675), 1, - sym_type_parameters, - [212568] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6148), 1, - sym_comment, - STATE(7535), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [212593] = 6, + [208702] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6149), 1, + STATE(5906), 1, sym_comment, - STATE(6861), 1, - sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9733), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [212614] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6150), 1, - sym_comment, - STATE(7569), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [212639] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6151), 1, - sym_comment, - STATE(7624), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [212664] = 6, + anon_sym_PIPE_RBRACE, + [208719] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6152), 1, + STATE(5907), 1, sym_comment, - STATE(6693), 1, + STATE(6680), 1, sym__initializer, - ACTIONS(9740), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [212685] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6153), 1, - sym_comment, - STATE(7591), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [212710] = 4, + [208740] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6154), 1, + STATE(5908), 1, sym_comment, - ACTIONS(9742), 5, + ACTIONS(9735), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212727] = 4, + [208757] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6155), 1, + STATE(5909), 1, sym_comment, - ACTIONS(8556), 5, + ACTIONS(8797), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212744] = 4, + [208774] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6156), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, + sym_formal_parameters, + STATE(5797), 1, + sym__call_signature, + STATE(5910), 1, sym_comment, - ACTIONS(6966), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [212761] = 6, + STATE(7660), 1, + sym_type_parameters, + [208799] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6157), 1, + STATE(5911), 1, sym_comment, - STATE(6859), 1, - sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9737), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [212782] = 4, + anon_sym_PIPE_RBRACE, + [208816] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6158), 1, + STATE(5912), 1, sym_comment, - ACTIONS(9744), 5, + ACTIONS(8795), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212799] = 4, + [208833] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6159), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5913), 1, sym_comment, - ACTIONS(9746), 5, + STATE(6835), 1, + sym__initializer, + ACTIONS(9739), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212816] = 4, + [208854] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6160), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5914), 1, sym_comment, - ACTIONS(9748), 5, + STATE(6428), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212833] = 4, + [208875] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6161), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5915), 1, sym_comment, - ACTIONS(9750), 5, + STATE(6911), 1, + sym__initializer, + ACTIONS(9741), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212850] = 4, + [208896] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6162), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5916), 1, sym_comment, - ACTIONS(9752), 5, + STATE(6926), 1, + sym__initializer, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212867] = 4, + [208917] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6163), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8953), 1, + anon_sym_abstract, + ACTIONS(9743), 1, + anon_sym_class, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5917), 1, sym_comment, - ACTIONS(9752), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212884] = 4, + STATE(6120), 1, + sym_decorator, + [208942] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6164), 1, + STATE(5918), 1, sym_comment, - ACTIONS(9752), 5, + ACTIONS(9745), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212901] = 4, + [208959] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6165), 1, + STATE(5919), 1, sym_comment, - ACTIONS(8595), 5, + ACTIONS(9747), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212918] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5049), 1, - sym_formal_parameters, - STATE(6062), 1, - sym__call_signature, - STATE(6166), 1, - sym_comment, - STATE(7675), 1, - sym_type_parameters, - [212943] = 6, + [208976] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6167), 1, + STATE(5920), 1, sym_comment, - STATE(6828), 1, + STATE(6870), 1, sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [212964] = 6, + [208997] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6168), 1, + STATE(5921), 1, sym_comment, - STATE(6899), 1, + STATE(6427), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [212985] = 8, + [209018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6169), 1, + STATE(5922), 1, sym_comment, - STATE(7403), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [213010] = 4, + ACTIONS(9749), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209035] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6170), 1, + STATE(5923), 1, sym_comment, - ACTIONS(9754), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [213027] = 6, + ACTIONS(9751), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209052] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6171), 1, + STATE(5924), 1, sym_comment, - STATE(6627), 1, + STATE(6420), 1, sym__initializer, - ACTIONS(9756), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213048] = 6, + [209073] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6172), 1, + STATE(5925), 1, sym_comment, - STATE(6992), 1, + STATE(6727), 1, sym__initializer, - ACTIONS(9592), 3, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213069] = 4, + [209094] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6173), 1, + STATE(5926), 1, sym_comment, - ACTIONS(8572), 5, + ACTIONS(9753), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [213086] = 8, + [209111] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9403), 1, - sym__template_chars, - ACTIONS(9758), 1, - anon_sym_BQUOTE, - STATE(5870), 1, - aux_sym_template_literal_type_repeat1, - STATE(6174), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5927), 1, sym_comment, - STATE(7022), 1, - sym_template_type, - [213111] = 8, + STATE(6721), 1, + sym__initializer, + ACTIONS(9665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [209132] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9403), 1, - sym__template_chars, - ACTIONS(9760), 1, - anon_sym_BQUOTE, - STATE(5870), 1, - aux_sym_template_literal_type_repeat1, - STATE(6175), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5928), 1, sym_comment, - STATE(7022), 1, - sym_template_type, - [213136] = 4, + STATE(7538), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [209157] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6176), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5929), 1, sym_comment, - ACTIONS(9762), 5, + STATE(6408), 1, + sym__initializer, + ACTIONS(9373), 3, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [213153] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9403), 1, - sym__template_chars, - ACTIONS(9764), 1, - anon_sym_BQUOTE, - STATE(5870), 1, - aux_sym_template_literal_type_repeat1, - STATE(6177), 1, - sym_comment, - STATE(7022), 1, - sym_template_type, - [213178] = 4, + anon_sym_COMMA, + anon_sym_SEMI, + [209178] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6178), 1, - sym_comment, - ACTIONS(6910), 5, + ACTIONS(7862), 1, anon_sym_EQ, + STATE(5930), 1, + sym_comment, + STATE(6919), 1, + sym__initializer, + ACTIONS(9755), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [213195] = 8, + anon_sym_SEMI, + [209199] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7873), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(4942), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6179), 1, + STATE(5931), 1, sym_comment, - STATE(6610), 1, + STATE(6072), 1, sym__call_signature, - STATE(8017), 1, + STATE(7873), 1, sym_type_parameters, - [213220] = 4, + [209224] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6180), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5932), 1, sym_comment, - ACTIONS(9766), 5, + STATE(6921), 1, + sym__initializer, + ACTIONS(9755), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [213237] = 8, + [209245] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9345), 1, - anon_sym_abstract, - ACTIONS(9768), 1, - anon_sym_class, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6181), 1, + STATE(5933), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [213262] = 6, + ACTIONS(9757), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209262] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6182), 1, + STATE(5934), 1, sym_comment, - STATE(6901), 1, + STATE(6923), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213283] = 4, + [209283] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6183), 1, + STATE(5935), 1, sym_comment, - ACTIONS(9770), 5, + ACTIONS(9759), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [213300] = 8, + [209300] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6058), 1, + STATE(5443), 1, sym__call_signature, - STATE(6184), 1, + STATE(5936), 1, sym_comment, - STATE(7675), 1, + STATE(7873), 1, sym_type_parameters, - [213325] = 7, + [209325] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6185), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9009), 1, + anon_sym_class, + ACTIONS(9011), 1, + anon_sym_abstract, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5937), 1, sym_comment, - ACTIONS(9772), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [213348] = 7, + STATE(6120), 1, + sym_decorator, + [209350] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6186), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5938), 1, + sym_comment, + STATE(7479), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [209375] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5939), 1, + sym_comment, + STATE(7429), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [209400] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5940), 1, sym_comment, - ACTIONS(9774), 2, + ACTIONS(9761), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [213371] = 6, + anon_sym_PIPE_RBRACE, + [209417] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6187), 1, + STATE(5941), 1, sym_comment, - STATE(6605), 1, + STATE(7002), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213392] = 8, + [209438] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9778), 1, + ACTIONS(9550), 1, anon_sym_LBRACE, - ACTIONS(9780), 1, + ACTIONS(9763), 1, anon_sym_SEMI, - ACTIONS(9782), 1, + ACTIONS(9765), 1, sym__automatic_semicolon, - ACTIONS(9784), 1, + ACTIONS(9767), 1, sym__function_signature_automatic_semicolon, - STATE(1379), 1, + STATE(518), 1, sym_statement_block, - STATE(6188), 1, + STATE(5942), 1, sym_comment, - [213417] = 6, + [209463] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6189), 1, + STATE(5943), 1, sym_comment, - STATE(6607), 1, + STATE(6507), 1, sym__initializer, - ACTIONS(9592), 3, + ACTIONS(9769), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213438] = 4, + [209484] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6190), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5944), 1, sym_comment, - ACTIONS(8595), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [213455] = 6, + STATE(6051), 1, + sym__call_signature, + STATE(7873), 1, + sym_type_parameters, + [209509] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2412), 1, - anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5989), 1, - anon_sym_LBRACE, - STATE(6191), 1, + STATE(5945), 1, sym_comment, - ACTIONS(5991), 3, + ACTIONS(2464), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [213476] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209526] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6192), 1, + STATE(5946), 1, sym_comment, - STATE(7246), 1, - sym__initializer, - ACTIONS(9592), 3, + ACTIONS(9771), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [213497] = 8, + anon_sym_PIPE_RBRACE, + [209543] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8635), 1, - anon_sym_EQ, - ACTIONS(9786), 1, - anon_sym_COMMA, - ACTIONS(9788), 1, - anon_sym_RBRACE, - STATE(6193), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5947), 1, sym_comment, - STATE(7356), 1, - aux_sym_enum_body_repeat1, - STATE(7986), 1, - sym__initializer, - [213522] = 4, + STATE(6048), 1, + sym__call_signature, + STATE(7873), 1, + sym_type_parameters, + [209568] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6194), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5948), 1, sym_comment, - ACTIONS(9790), 5, + STATE(7053), 1, + sym__initializer, + ACTIONS(9739), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [213539] = 4, + [209589] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6195), 1, + STATE(5949), 1, sym_comment, - ACTIONS(9792), 5, + ACTIONS(9773), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [213556] = 8, + [209606] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - ACTIONS(9794), 1, - anon_sym_SEMI, - ACTIONS(9796), 1, - sym__automatic_semicolon, - ACTIONS(9798), 1, - sym__function_signature_automatic_semicolon, - STATE(3520), 1, - sym_statement_block, - STATE(6196), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9360), 1, + sym__template_chars, + ACTIONS(9775), 1, + anon_sym_BQUOTE, + STATE(5892), 1, + aux_sym_template_literal_type_repeat1, + STATE(5950), 1, sym_comment, - [213581] = 6, + STATE(6984), 1, + sym_template_type, + [209631] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6197), 1, + STATE(5951), 1, sym_comment, - STATE(6982), 1, - sym__initializer, - ACTIONS(9419), 3, + ACTIONS(9777), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [213602] = 6, + anon_sym_PIPE_RBRACE, + [209648] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6198), 1, + STATE(5952), 1, sym_comment, - STATE(6619), 1, + STATE(6412), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213623] = 4, + [209669] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6199), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9140), 1, + anon_sym_abstract, + ACTIONS(9779), 1, + anon_sym_class, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5953), 1, sym_comment, - ACTIONS(9800), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [213640] = 8, + STATE(6120), 1, + sym_decorator, + [209694] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8753), 1, - anon_sym_LBRACE, - ACTIONS(8755), 1, - anon_sym_LBRACE_PIPE, - STATE(1753), 1, - sym_object_type, - STATE(6200), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(5954), 1, sym_comment, - STATE(6694), 1, - sym_extends_type_clause, - [213665] = 6, + STATE(7448), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [209719] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6201), 1, + STATE(5955), 1, sym_comment, - STATE(6643), 1, + STATE(7077), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9739), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213686] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6202), 1, - sym_comment, - ACTIONS(9802), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [213709] = 6, + [209740] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6203), 1, + STATE(5956), 1, sym_comment, - STATE(6644), 1, + STATE(6505), 1, sym__initializer, - ACTIONS(9592), 3, + ACTIONS(9781), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213730] = 8, + [209761] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(5049), 1, + STATE(4867), 1, sym_formal_parameters, - STATE(6056), 1, - sym__call_signature, - STATE(6204), 1, + STATE(5957), 1, sym_comment, - STATE(7675), 1, + STATE(6039), 1, + sym__call_signature, + STATE(7873), 1, sym_type_parameters, - [213755] = 8, + [209786] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9778), 1, - anon_sym_LBRACE, - ACTIONS(9804), 1, - anon_sym_SEMI, - ACTIONS(9806), 1, + ACTIONS(7141), 1, sym__automatic_semicolon, - ACTIONS(9808), 1, - sym__function_signature_automatic_semicolon, - STATE(1361), 1, - sym_statement_block, - STATE(6205), 1, + STATE(5958), 1, sym_comment, - [213780] = 4, + ACTIONS(7108), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209805] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6206), 1, - sym_comment, - ACTIONS(9810), 5, - sym__automatic_semicolon, + ACTIONS(8817), 1, + anon_sym_EQ, + ACTIONS(9783), 1, anon_sym_COMMA, + ACTIONS(9785), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [213797] = 4, + STATE(5959), 1, + sym_comment, + STATE(7135), 1, + aux_sym_enum_body_repeat1, + STATE(7161), 1, + sym__initializer, + [209830] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6207), 1, - sym_comment, - ACTIONS(9812), 5, + ACTIONS(6977), 1, sym__automatic_semicolon, + STATE(5960), 1, + sym_comment, + ACTIONS(6975), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [213814] = 4, + [209849] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6208), 1, - sym_comment, - ACTIONS(9814), 5, + ACTIONS(6985), 1, sym__automatic_semicolon, + STATE(5961), 1, + sym_comment, + ACTIONS(6981), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [213831] = 6, + [209868] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6209), 1, + STATE(5962), 1, sym_comment, - STATE(6990), 1, + STATE(6654), 1, sym__initializer, - ACTIONS(9592), 3, + ACTIONS(9474), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213852] = 6, + [209889] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6210), 1, - sym_comment, - STATE(6611), 1, - sym__initializer, - ACTIONS(9816), 3, + ACTIONS(7052), 1, sym__automatic_semicolon, + STATE(5963), 1, + sym_comment, + ACTIONS(7050), 4, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [213873] = 6, + anon_sym_PIPE_RBRACE, + [209908] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6211), 1, + STATE(5964), 1, sym_comment, - STATE(6829), 1, + STATE(6539), 1, sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213894] = 6, + [209929] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2372), 1, - anon_sym_DOT, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5989), 1, - anon_sym_LBRACE, - STATE(6212), 1, + STATE(5965), 1, sym_comment, - ACTIONS(5991), 3, + ACTIONS(9787), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [213915] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209946] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6213), 1, + STATE(5966), 1, sym_comment, - STATE(6646), 1, + STATE(6417), 1, sym__initializer, - ACTIONS(9592), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213936] = 8, + [209967] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(5049), 1, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, sym_formal_parameters, - STATE(6052), 1, - sym__call_signature, - STATE(6214), 1, + STATE(5967), 1, sym_comment, - STATE(7675), 1, + STATE(7151), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - [213961] = 5, + [209992] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6984), 1, - sym__automatic_semicolon, - STATE(6215), 1, + STATE(5968), 1, sym_comment, - ACTIONS(6982), 4, + ACTIONS(9789), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [213980] = 6, + [210009] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6216), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, + sym_formal_parameters, + STATE(5969), 1, sym_comment, - STATE(6858), 1, - sym__initializer, - ACTIONS(9355), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [214001] = 5, + STATE(6499), 1, + sym__call_signature, + STATE(7660), 1, + sym_type_parameters, + [210034] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6866), 1, - sym__automatic_semicolon, - STATE(6217), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5970), 1, sym_comment, - ACTIONS(6864), 4, + STATE(6670), 1, + sym__initializer, + ACTIONS(9399), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214020] = 5, + [210055] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6862), 1, - sym__automatic_semicolon, - STATE(6218), 1, + STATE(5971), 1, sym_comment, - ACTIONS(6860), 4, + ACTIONS(7021), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214039] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [210072] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6219), 1, + STATE(5972), 1, sym_comment, - STATE(6668), 1, + STATE(6834), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214060] = 5, + [210093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6854), 1, - sym__automatic_semicolon, - STATE(6220), 1, + STATE(5973), 1, sym_comment, - ACTIONS(6852), 4, + ACTIONS(7040), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214079] = 8, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [210110] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1569), 1, - anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8597), 1, - anon_sym_LBRACE_PIPE, - STATE(6159), 1, - sym_object_type, - STATE(6221), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, + sym_formal_parameters, + STATE(5974), 1, sym_comment, - STATE(7358), 1, - sym_extends_type_clause, - [214104] = 6, + STATE(7133), 1, + sym__call_signature, + STATE(7660), 1, + sym_type_parameters, + [210135] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6222), 1, + STATE(5975), 1, sym_comment, - STATE(6690), 1, - sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9791), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [214125] = 8, + anon_sym_PIPE_RBRACE, + [210152] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - ACTIONS(9818), 1, - anon_sym_SEMI, - ACTIONS(9820), 1, - sym__automatic_semicolon, - ACTIONS(9822), 1, - sym__function_signature_automatic_semicolon, - STATE(3550), 1, - sym_statement_block, - STATE(6223), 1, + STATE(5976), 1, sym_comment, - [214150] = 6, + ACTIONS(7040), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [210169] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6224), 1, + STATE(5977), 1, sym_comment, - STATE(6717), 1, - sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9793), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [214171] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [210186] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2267), 1, - anon_sym_DQUOTE, - ACTIONS(2269), 1, - anon_sym_SQUOTE, - ACTIONS(9361), 1, - sym_identifier, - STATE(6225), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(5978), 1, sym_comment, - STATE(6566), 1, - sym_string, - STATE(7768), 1, - sym__module_export_name, - [214196] = 6, + ACTIONS(9795), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210203] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6226), 1, + STATE(5979), 1, sym_comment, - STATE(6720), 1, - sym__initializer, - ACTIONS(9592), 3, - sym__automatic_semicolon, + ACTIONS(7040), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [214217] = 8, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [210220] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9152), 1, - anon_sym_class, - ACTIONS(9154), 1, - anon_sym_abstract, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6227), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5314), 1, + sym__call_signature, + STATE(5980), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [214242] = 6, + STATE(7873), 1, + sym_type_parameters, + [210245] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6228), 1, + STATE(5981), 1, sym_comment, - STATE(6721), 1, - sym__initializer, - ACTIONS(9592), 3, - sym__automatic_semicolon, + ACTIONS(6825), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [214263] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [210262] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6229), 1, + STATE(5982), 1, sym_comment, - STATE(7075), 1, + STATE(6498), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214284] = 4, + [210283] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6230), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5983), 1, sym_comment, - ACTIONS(9824), 5, + STATE(6698), 1, + sym__initializer, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214301] = 8, + [210304] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9804), 1, - anon_sym_SEMI, - ACTIONS(9806), 1, - sym__automatic_semicolon, - ACTIONS(9808), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(9826), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_statement_block, - STATE(6231), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9274), 1, + anon_sym_abstract, + ACTIONS(9797), 1, + anon_sym_class, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(5984), 1, sym_comment, - [214326] = 6, + STATE(6120), 1, + sym_decorator, + [210329] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6232), 1, + STATE(5985), 1, sym_comment, - STATE(6753), 1, + STATE(6821), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214347] = 8, + [210350] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8566), 1, - anon_sym_extends, - ACTIONS(8757), 1, - anon_sym_LBRACE, - ACTIONS(8759), 1, - anon_sym_LBRACE_PIPE, - STATE(1583), 1, - sym_object_type, - STATE(6233), 1, + ACTIONS(5210), 1, + anon_sym_COLON, + ACTIONS(7900), 1, + anon_sym_EQ, + ACTIONS(9516), 1, + anon_sym_COMMA, + ACTIONS(9799), 1, + anon_sym_RBRACE, + STATE(5986), 1, sym_comment, - STATE(7109), 1, - sym_extends_type_clause, - [214372] = 4, + STATE(6837), 1, + aux_sym_object_pattern_repeat1, + [210375] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6234), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5987), 1, sym_comment, - ACTIONS(9262), 5, + STATE(6495), 1, + sym__initializer, + ACTIONS(9366), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [214389] = 4, + [210396] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6235), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5988), 1, sym_comment, - ACTIONS(9264), 5, + STATE(6970), 1, + sym__initializer, + ACTIONS(9801), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [214406] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6236), 1, - sym_comment, - STATE(7641), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [214431] = 6, + [210417] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6237), 1, + STATE(5989), 1, sym_comment, - STATE(6949), 1, + STATE(6387), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9803), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214452] = 8, + [210438] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(8460), 1, - anon_sym_COLON, - ACTIONS(8462), 1, - anon_sym_DOT, - ACTIONS(8464), 1, - anon_sym_on, - STATE(4262), 1, - sym_ui_object_initializer, - STATE(6238), 1, + ACTIONS(6116), 1, + anon_sym_in, + STATE(5990), 1, sym_comment, - [214477] = 4, + ACTIONS(7028), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [210457] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6239), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5991), 1, sym_comment, - ACTIONS(9828), 5, + STATE(6397), 1, + sym__initializer, + ACTIONS(9805), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214494] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9319), 1, - anon_sym_abstract, - ACTIONS(9830), 1, - anon_sym_class, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6240), 1, - sym_comment, - STATE(6589), 1, - sym_decorator, - [214519] = 4, + [210478] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6241), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5992), 1, sym_comment, - ACTIONS(9828), 5, + STATE(7088), 1, + sym__initializer, + ACTIONS(9807), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214536] = 8, + [210499] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9716), 1, - anon_sym_LBRACE, - ACTIONS(9832), 1, - anon_sym_SEMI, - ACTIONS(9834), 1, - sym__automatic_semicolon, - ACTIONS(9836), 1, - sym__function_signature_automatic_semicolon, - STATE(1656), 1, - sym_statement_block, - STATE(6242), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5993), 1, sym_comment, - [214561] = 6, + STATE(6419), 1, + sym__initializer, + ACTIONS(9366), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [210520] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8833), 1, - anon_sym_COLON, - ACTIONS(9838), 1, - anon_sym_EQ_GT, - STATE(6243), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5994), 1, sym_comment, - STATE(7893), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [214582] = 4, + STATE(6955), 1, + sym__initializer, + ACTIONS(9665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [210541] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6244), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5995), 1, sym_comment, - ACTIONS(9841), 5, + STATE(6961), 1, + sym__initializer, + ACTIONS(9474), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214599] = 4, + [210562] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6245), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5996), 1, sym_comment, - ACTIONS(9266), 5, + STATE(6441), 1, + sym__initializer, + ACTIONS(9809), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [214616] = 4, + [210583] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6246), 1, + STATE(5997), 1, sym_comment, - ACTIONS(6868), 5, + ACTIONS(9811), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [214633] = 4, + [210600] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6247), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(5998), 1, sym_comment, - ACTIONS(6858), 5, - sym__automatic_semicolon, + ACTIONS(9813), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214650] = 4, + [210623] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6248), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(5999), 1, sym_comment, - ACTIONS(9843), 5, + STATE(6737), 1, + sym__initializer, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214667] = 8, + [210644] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9214), 1, - anon_sym_abstract, - ACTIONS(9845), 1, - anon_sym_class, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6249), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4747), 1, + sym_formal_parameters, + STATE(5912), 1, + sym__call_signature, + STATE(6000), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [214692] = 4, + STATE(7660), 1, + sym_type_parameters, + [210669] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6250), 1, + STATE(6001), 1, sym_comment, - ACTIONS(6856), 5, + ACTIONS(8760), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [214709] = 4, + [210686] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6251), 1, + STATE(6002), 1, sym_comment, - ACTIONS(9847), 5, + ACTIONS(9815), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [214726] = 6, + [210703] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9851), 1, - anon_sym_in, - ACTIONS(9853), 1, - anon_sym_of, - STATE(6252), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(6003), 1, sym_comment, - ACTIONS(9849), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [214747] = 6, + STATE(7749), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [210728] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6253), 1, + STATE(6004), 1, sym_comment, - STATE(6783), 1, + STATE(6421), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214768] = 6, + [210749] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6254), 1, + STATE(6005), 1, sym_comment, - STATE(6916), 1, + STATE(6422), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214789] = 6, + [210770] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9855), 1, - anon_sym_in, - ACTIONS(9857), 1, - anon_sym_of, - STATE(6255), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6006), 1, sym_comment, - ACTIONS(9849), 3, + STATE(6668), 1, + sym__initializer, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214810] = 6, + [210791] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6256), 1, + STATE(6007), 1, sym_comment, - STATE(6854), 1, + STATE(6975), 1, sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9474), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214831] = 6, + [210812] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6257), 1, + STATE(6008), 1, sym_comment, - STATE(6917), 1, + STATE(6432), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214852] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6258), 1, - sym_comment, - STATE(7417), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [214877] = 6, + [210833] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6259), 1, + STATE(6009), 1, sym_comment, - STATE(6851), 1, + STATE(6818), 1, sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214898] = 6, + [210854] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6260), 1, + STATE(6010), 1, sym_comment, - STATE(6788), 1, - sym__initializer, - ACTIONS(9776), 3, + ACTIONS(8760), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [214919] = 6, + anon_sym_PIPE_RBRACE, + [210871] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6261), 1, + STATE(6011), 1, sym_comment, - STATE(6846), 1, + STATE(6490), 1, sym__initializer, - ACTIONS(9405), 3, + ACTIONS(9373), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214940] = 8, + [210892] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, sym_formal_parameters, - STATE(6262), 1, - sym_comment, - STATE(7424), 1, + STATE(5429), 1, sym__call_signature, - STATE(8189), 1, + STATE(6012), 1, + sym_comment, + STATE(7873), 1, sym_type_parameters, - [214965] = 6, + [210917] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6263), 1, + STATE(6013), 1, sym_comment, - STATE(6789), 1, - sym__initializer, - ACTIONS(9592), 3, + ACTIONS(9817), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [214986] = 6, + anon_sym_PIPE_RBRACE, + [210934] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6264), 1, + STATE(6014), 1, sym_comment, - STATE(6918), 1, - sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9819), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215007] = 4, + anon_sym_PIPE_RBRACE, + [210951] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6265), 1, - sym_comment, - ACTIONS(7151), 5, + ACTIONS(7862), 1, anon_sym_EQ, + STATE(6015), 1, + sym_comment, + STATE(6980), 1, + sym__initializer, + ACTIONS(9399), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [215024] = 6, + anon_sym_SEMI, + [210972] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6266), 1, + STATE(6016), 1, sym_comment, - STATE(6870), 1, - sym__initializer, - ACTIONS(9592), 3, + ACTIONS(8905), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215045] = 6, + anon_sym_PIPE_RBRACE, + [210989] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9821), 1, + sym_identifier, + ACTIONS(9823), 1, + anon_sym_RPAREN, + STATE(6017), 1, + sym_comment, + STATE(6867), 1, + sym_ui_signal_parameter, + STATE(7959), 1, + sym_nested_identifier, + STATE(8100), 1, + sym_nested_type_identifier, + [211014] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6267), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(9825), 1, + anon_sym_as, + ACTIONS(9827), 1, + anon_sym_RBRACK, + STATE(6018), 1, sym_comment, - STATE(6919), 1, - sym__initializer, - ACTIONS(9413), 3, + [211039] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6019), 1, + sym_comment, + ACTIONS(8775), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215066] = 6, + anon_sym_PIPE_RBRACE, + [211056] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6268), 1, + STATE(6020), 1, sym_comment, - STATE(6921), 1, + STATE(6489), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215087] = 4, + [211077] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6269), 1, + STATE(6021), 1, sym_comment, - ACTIONS(7151), 5, - anon_sym_EQ, + ACTIONS(9829), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [215104] = 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211094] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6270), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6022), 1, sym_comment, - STATE(7842), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [215129] = 4, + STATE(6817), 1, + sym__initializer, + ACTIONS(9665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [211115] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6271), 1, + STATE(6023), 1, sym_comment, - ACTIONS(7151), 5, + ACTIONS(7126), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [215146] = 6, + [211132] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6272), 1, + STATE(6024), 1, sym_comment, - STATE(6925), 1, + STATE(6805), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215167] = 6, + [211153] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6273), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(6025), 1, sym_comment, - STATE(6928), 1, - sym__initializer, - ACTIONS(9419), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [215188] = 4, + STATE(7569), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [211178] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6274), 1, + STATE(6026), 1, sym_comment, - ACTIONS(7082), 5, + ACTIONS(9831), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [215205] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(5514), 1, - sym_formal_parameters, - STATE(6275), 1, - sym_comment, - STATE(7718), 1, - sym__call_signature, - STATE(8189), 1, - sym_type_parameters, - [215230] = 4, + [211195] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6276), 1, - sym_comment, - ACTIONS(7144), 5, + ACTIONS(7862), 1, anon_sym_EQ, + STATE(6027), 1, + sym_comment, + STATE(6802), 1, + sym__initializer, + ACTIONS(9665), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [215247] = 6, + anon_sym_SEMI, + [211216] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6277), 1, + STATE(6028), 1, sym_comment, - STATE(6940), 1, + STATE(6801), 1, sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215268] = 6, + [211237] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6278), 1, + STATE(6029), 1, sym_comment, - STATE(6825), 1, - sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9833), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215289] = 6, + anon_sym_PIPE_RBRACE, + [211254] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6279), 1, + STATE(6030), 1, sym_comment, - STATE(6944), 1, - sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9833), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215310] = 6, + anon_sym_PIPE_RBRACE, + [211271] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6280), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(6031), 1, sym_comment, - STATE(6946), 1, - sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9835), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [215331] = 6, + [211294] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6281), 1, + STATE(6032), 1, sym_comment, - STATE(6955), 1, - sym__initializer, - ACTIONS(9413), 3, + ACTIONS(9833), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215352] = 8, + anon_sym_PIPE_RBRACE, + [211311] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9706), 1, - anon_sym_LBRACE, - ACTIONS(9832), 1, - anon_sym_SEMI, - ACTIONS(9834), 1, - sym__automatic_semicolon, - ACTIONS(9836), 1, - sym__function_signature_automatic_semicolon, - STATE(492), 1, - sym_statement_block, - STATE(6282), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6033), 1, sym_comment, - [215377] = 4, + STATE(6626), 1, + sym__initializer, + ACTIONS(9399), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [211332] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6283), 1, + STATE(6034), 1, sym_comment, - ACTIONS(9321), 5, + ACTIONS(9837), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215394] = 8, + anon_sym_PIPE_RBRACE, + [211349] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9244), 1, - anon_sym_abstract, - ACTIONS(9859), 1, - anon_sym_class, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6284), 1, + ACTIONS(8965), 1, + anon_sym_COLON, + ACTIONS(9839), 1, + anon_sym_EQ_GT, + STATE(6035), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [215419] = 6, + STATE(7301), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [211370] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6285), 1, + STATE(6036), 1, sym_comment, - STATE(6840), 1, - sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9842), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215440] = 6, + anon_sym_PIPE_RBRACE, + [211387] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6286), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(6037), 1, sym_comment, - STATE(6964), 1, - sym__initializer, - ACTIONS(9861), 3, + ACTIONS(9844), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [215461] = 6, + [211410] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6287), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(6038), 1, sym_comment, - STATE(6833), 1, - sym__initializer, - ACTIONS(9355), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [215482] = 7, + STATE(7196), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [211435] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6288), 1, - sym_comment, - ACTIONS(9863), 2, - sym__automatic_semicolon, + ACTIONS(9846), 1, + anon_sym_LBRACE, + ACTIONS(9848), 1, anon_sym_SEMI, - [215505] = 6, + ACTIONS(9850), 1, + sym__automatic_semicolon, + ACTIONS(9852), 1, + sym__function_signature_automatic_semicolon, + STATE(3904), 1, + sym_statement_block, + STATE(6039), 1, + sym_comment, + [211460] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6289), 1, + STATE(6040), 1, sym_comment, - STATE(6880), 1, + STATE(6482), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215526] = 4, + [211481] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6290), 1, + STATE(6041), 1, sym_comment, - ACTIONS(6850), 5, + ACTIONS(9854), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [215543] = 6, + [211498] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6291), 1, + STATE(6042), 1, sym_comment, - STATE(6873), 1, + STATE(6434), 1, sym__initializer, - ACTIONS(9865), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215564] = 7, + [211519] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6292), 1, + STATE(6043), 1, sym_comment, - ACTIONS(9867), 2, + ACTIONS(9856), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215587] = 6, + anon_sym_PIPE_RBRACE, + [211536] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6293), 1, + STATE(6044), 1, sym_comment, - STATE(6895), 1, + STATE(6481), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215608] = 8, + [211557] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, - anon_sym_LBRACE, - ACTIONS(9794), 1, - anon_sym_SEMI, - ACTIONS(9796), 1, - sym__automatic_semicolon, - ACTIONS(9798), 1, - sym__function_signature_automatic_semicolon, - STATE(6217), 1, - sym_statement_block, - STATE(6294), 1, - sym_comment, - [215633] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9403), 1, - sym__template_chars, - ACTIONS(9869), 1, - anon_sym_BQUOTE, - STATE(6175), 1, - aux_sym_template_literal_type_repeat1, - STATE(6295), 1, + ACTIONS(8817), 1, + anon_sym_EQ, + ACTIONS(9858), 1, + anon_sym_COMMA, + ACTIONS(9860), 1, + anon_sym_RBRACE, + STATE(6045), 1, sym_comment, - STATE(7022), 1, - sym_template_type, - [215658] = 4, + STATE(7087), 1, + aux_sym_enum_body_repeat1, + STATE(7161), 1, + sym__initializer, + [211582] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6296), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(6046), 1, sym_comment, - ACTIONS(9871), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [215675] = 6, + STATE(7790), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [211607] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6297), 1, + STATE(6047), 1, sym_comment, - STATE(6831), 1, + STATE(7074), 1, sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9474), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215696] = 4, + [211628] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6298), 1, - sym_comment, - ACTIONS(9873), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(9848), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [215713] = 7, + ACTIONS(9850), 1, + sym__automatic_semicolon, + ACTIONS(9852), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9862), 1, + anon_sym_LBRACE, + STATE(1754), 1, + sym_statement_block, + STATE(6048), 1, + sym_comment, + [211653] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, + ACTIONS(8085), 1, anon_sym_AMP, - ACTIONS(8082), 1, + ACTIONS(8089), 1, anon_sym_extends, - ACTIONS(9351), 1, + ACTIONS(9387), 1, anon_sym_PIPE, - STATE(6299), 1, + STATE(6049), 1, sym_comment, - ACTIONS(9875), 2, + ACTIONS(9864), 2, sym__automatic_semicolon, anon_sym_SEMI, - [215736] = 6, + [211676] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6300), 1, + STATE(6050), 1, sym_comment, - STATE(6830), 1, + STATE(6688), 1, sym__initializer, - ACTIONS(9355), 3, + ACTIONS(9399), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215757] = 8, + [211697] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7889), 1, + ACTIONS(9846), 1, + anon_sym_LBRACE, + ACTIONS(9866), 1, + anon_sym_SEMI, + ACTIONS(9868), 1, + sym__automatic_semicolon, + ACTIONS(9870), 1, + sym__function_signature_automatic_semicolon, + STATE(3967), 1, + sym_statement_block, + STATE(6051), 1, + sym_comment, + [211722] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(5049), 1, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, sym_formal_parameters, - STATE(5741), 1, - sym__call_signature, - STATE(6301), 1, + STATE(6052), 1, sym_comment, - STATE(7675), 1, + STATE(7748), 1, + sym__call_signature, + STATE(7801), 1, sym_type_parameters, - [215782] = 4, + [211747] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6302), 1, + STATE(6053), 1, sym_comment, - ACTIONS(9877), 5, + ACTIONS(9872), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [215799] = 8, + [211764] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8635), 1, - anon_sym_EQ, - ACTIONS(9879), 1, + STATE(6054), 1, + sym_comment, + ACTIONS(9874), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9881), 1, anon_sym_RBRACE, - STATE(6303), 1, - sym_comment, - STATE(7140), 1, - aux_sym_enum_body_repeat1, - STATE(7986), 1, - sym__initializer, - [215824] = 8, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211781] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(9883), 1, - anon_sym_COLON, - ACTIONS(9885), 1, - anon_sym_DOT, - ACTIONS(9887), 1, - anon_sym_on, - STATE(4266), 1, - sym_ui_object_initializer, - STATE(6304), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9360), 1, + sym__template_chars, + ACTIONS(9876), 1, + anon_sym_BQUOTE, + STATE(6055), 1, sym_comment, - [215849] = 6, + STATE(6083), 1, + aux_sym_template_literal_type_repeat1, + STATE(6984), 1, + sym_template_type, + [211806] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6305), 1, + STATE(6056), 1, sym_comment, - STATE(6904), 1, + STATE(6782), 1, sym__initializer, - ACTIONS(9776), 3, + ACTIONS(9665), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215870] = 8, + [211827] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9780), 1, - anon_sym_SEMI, - ACTIONS(9782), 1, - sym__automatic_semicolon, - ACTIONS(9784), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(9826), 1, - anon_sym_LBRACE, - STATE(454), 1, - sym_statement_block, - STATE(6306), 1, + STATE(6057), 1, sym_comment, - [215895] = 6, + ACTIONS(9878), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [211844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7855), 1, - anon_sym_EQ, - STATE(6307), 1, + STATE(6058), 1, sym_comment, - STATE(6905), 1, - sym__initializer, - ACTIONS(9592), 3, + ACTIONS(9880), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215916] = 7, + anon_sym_PIPE_RBRACE, + [211861] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(6308), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6059), 1, sym_comment, - ACTIONS(9889), 2, + STATE(6473), 1, + sym__initializer, + ACTIONS(9366), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [215939] = 8, + [211882] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8635), 1, + ACTIONS(7862), 1, anon_sym_EQ, - ACTIONS(9891), 1, - anon_sym_COMMA, - ACTIONS(9893), 1, - anon_sym_RBRACE, - STATE(6309), 1, + STATE(6060), 1, sym_comment, - STATE(6839), 1, - aux_sym_enum_body_repeat1, - STATE(7986), 1, + STATE(6436), 1, sym__initializer, - [215964] = 8, + ACTIONS(9373), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [211903] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, - anon_sym_LBRACE, - ACTIONS(9818), 1, - anon_sym_SEMI, - ACTIONS(9820), 1, - sym__automatic_semicolon, - ACTIONS(9822), 1, - sym__function_signature_automatic_semicolon, - STATE(6215), 1, - sym_statement_block, - STATE(6310), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6061), 1, sym_comment, - [215989] = 8, + STATE(6778), 1, + sym__initializer, + ACTIONS(9665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [211924] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(5514), 1, + STATE(5340), 1, sym_formal_parameters, - STATE(6311), 1, + STATE(6062), 1, sym_comment, - STATE(8145), 1, + STATE(7318), 1, sym__call_signature, - STATE(8189), 1, + STATE(7801), 1, sym_type_parameters, - [216014] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9212), 1, - anon_sym_class, - ACTIONS(9214), 1, - anon_sym_abstract, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6312), 1, - sym_comment, - STATE(6589), 1, - sym_decorator, - [216039] = 6, + [211949] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9895), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - STATE(6313), 1, - sym_comment, - STATE(6544), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [216059] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(7681), 1, - anon_sym_LT, - STATE(4572), 1, - sym_arguments, - STATE(4675), 1, - sym_type_arguments, - STATE(6314), 1, - sym_comment, - [216081] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9899), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - STATE(6315), 1, - sym_comment, - STATE(6546), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [216101] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9899), 1, - anon_sym_DQUOTE, - STATE(6316), 1, + ACTIONS(9470), 1, + sym_identifier, + STATE(6063), 1, sym_comment, - STATE(6544), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [216121] = 7, + STATE(6263), 1, + sym_string, + STATE(7666), 1, + sym__module_export_name, + [211974] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8671), 1, - anon_sym_COMMA, - ACTIONS(9026), 1, - anon_sym_LBRACE, - ACTIONS(9028), 1, - anon_sym_LBRACE_PIPE, - STATE(6317), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6064), 1, sym_comment, - STATE(6519), 1, - aux_sym_extends_type_clause_repeat1, - [216143] = 7, + STATE(6797), 1, + sym__initializer, + ACTIONS(9665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [211995] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8629), 1, - anon_sym_DOT, - ACTIONS(9903), 1, - anon_sym_COMMA, - ACTIONS(9905), 1, - anon_sym_GT, - STATE(6318), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5854), 1, + sym__call_signature, + STATE(6065), 1, sym_comment, - STATE(7005), 1, - aux_sym_type_arguments_repeat1, - [216165] = 5, + STATE(7873), 1, + sym_type_parameters, + [212020] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9909), 1, - anon_sym_DOT, - STATE(6319), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6066), 1, sym_comment, - ACTIONS(9907), 3, + STATE(6449), 1, + sym__initializer, + ACTIONS(9373), 3, sym__automatic_semicolon, - anon_sym_as, + anon_sym_COMMA, anon_sym_SEMI, - [216183] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212041] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9911), 1, - anon_sym_SQUOTE, - STATE(6315), 1, - aux_sym_string_repeat2, - STATE(6320), 1, - sym_comment, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [216203] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9911), 1, - anon_sym_DQUOTE, - STATE(6316), 1, - aux_sym_string_repeat1, - STATE(6321), 1, + ACTIONS(9884), 1, + anon_sym_in, + ACTIONS(9886), 1, + anon_sym_of, + STATE(6067), 1, sym_comment, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [216223] = 7, + ACTIONS(9882), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212062] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(9913), 1, - anon_sym_COLON, - STATE(6322), 1, + ACTIONS(9888), 1, + anon_sym_in, + ACTIONS(9890), 1, + anon_sym_of, + STATE(6068), 1, sym_comment, - [216245] = 7, + ACTIONS(9882), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212083] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(9915), 1, - anon_sym_export, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6323), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6069), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [216267] = 4, + STATE(6777), 1, + sym__initializer, + ACTIONS(9665), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212104] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6324), 1, - sym_comment, - ACTIONS(9521), 4, + ACTIONS(8567), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_on, - [216283] = 6, + ACTIONS(8571), 1, + anon_sym_extends, + ACTIONS(8573), 1, + anon_sym_LBRACE_PIPE, + STATE(4222), 1, + sym_object_type, + STATE(6070), 1, + sym_comment, + STATE(6999), 1, + sym_extends_type_clause, + [212129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6325), 1, + STATE(6071), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9919), 2, + ACTIONS(9892), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216303] = 7, + anon_sym_PIPE_RBRACE, + [212146] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(9921), 1, - anon_sym_QMARK, - STATE(6326), 1, + ACTIONS(9862), 1, + anon_sym_LBRACE, + ACTIONS(9866), 1, + anon_sym_SEMI, + ACTIONS(9868), 1, + sym__automatic_semicolon, + ACTIONS(9870), 1, + sym__function_signature_automatic_semicolon, + STATE(1760), 1, + sym_statement_block, + STATE(6072), 1, sym_comment, - [216325] = 7, + [212171] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - ACTIONS(9925), 1, - anon_sym_SEMI, - ACTIONS(9927), 1, - sym__automatic_semicolon, - STATE(6327), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6073), 1, sym_comment, - STATE(7894), 1, - sym_import_attribute, - [216347] = 6, + STATE(7058), 1, + sym__initializer, + ACTIONS(9399), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212192] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9056), 1, - anon_sym_finally, - STATE(6328), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(5340), 1, + sym_formal_parameters, + STATE(6074), 1, sym_comment, - STATE(8084), 1, - sym_finally_clause, - ACTIONS(9929), 2, - anon_sym_else, - anon_sym_while, - [216367] = 6, + STATE(7515), 1, + sym__call_signature, + STATE(7801), 1, + sym_type_parameters, + [212217] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6329), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6075), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9931), 2, + STATE(6527), 1, + sym__initializer, + ACTIONS(9474), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [216387] = 4, + [212238] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6330), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6076), 1, sym_comment, - ACTIONS(9933), 4, - anon_sym_default, - anon_sym_readonly, - anon_sym_property, - anon_sym_required, - [216403] = 7, + STATE(6774), 1, + sym__initializer, + ACTIONS(9741), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8629), 1, - anon_sym_DOT, - ACTIONS(9935), 1, - anon_sym_COMMA, - ACTIONS(9937), 1, - anon_sym_GT, - STATE(6331), 1, + STATE(6077), 1, sym_comment, - STATE(7296), 1, - aux_sym_type_arguments_repeat1, - [216425] = 6, + ACTIONS(9894), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [212276] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6325), 1, - aux_sym_variable_declaration_repeat1, - STATE(6332), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6078), 1, sym_comment, - ACTIONS(9939), 2, + STATE(6464), 1, + sym__initializer, + ACTIONS(9373), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [216445] = 6, + [212297] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8635), 1, + ACTIONS(7862), 1, anon_sym_EQ, - STATE(6333), 1, + STATE(6079), 1, sym_comment, - STATE(7623), 1, + STATE(7057), 1, sym__initializer, - ACTIONS(9941), 2, + ACTIONS(9399), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [216465] = 6, + anon_sym_SEMI, + [212318] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6334), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6080), 1, sym_comment, - STATE(7456), 1, - sym_import_attribute, - ACTIONS(9943), 2, + STATE(6848), 1, + sym__initializer, + ACTIONS(9896), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [216485] = 6, + [212339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6335), 1, + STATE(6081), 1, sym_comment, - STATE(7457), 1, - sym__from_clause, - ACTIONS(9947), 2, + ACTIONS(9894), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216505] = 6, + anon_sym_PIPE_RBRACE, + [212356] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6336), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6082), 1, sym_comment, - STATE(8116), 1, - sym__from_clause, - ACTIONS(9949), 2, + STATE(6459), 1, + sym__initializer, + ACTIONS(9366), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [216525] = 7, + [212377] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(9951), 1, - anon_sym_RBRACK, - STATE(6337), 1, + ACTIONS(9358), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9360), 1, + sym__template_chars, + ACTIONS(9898), 1, + anon_sym_BQUOTE, + STATE(5821), 1, + aux_sym_template_literal_type_repeat1, + STATE(6083), 1, sym_comment, - [216547] = 6, + STATE(6984), 1, + sym_template_type, + [212402] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6338), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5888), 1, + sym__call_signature, + STATE(6084), 1, sym_comment, - STATE(8114), 1, - sym_import_attribute, - ACTIONS(9953), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [216567] = 6, + STATE(7873), 1, + sym_type_parameters, + [212427] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6339), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6085), 1, sym_comment, - STATE(8121), 1, - sym_import_attribute, - ACTIONS(9955), 2, + STATE(6458), 1, + sym__initializer, + ACTIONS(9366), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [216587] = 6, + [212448] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6340), 1, + STATE(6086), 1, sym_comment, - STATE(6413), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9957), 2, + ACTIONS(9894), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216607] = 6, + anon_sym_PIPE_RBRACE, + [212465] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6341), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(8882), 1, + anon_sym_class, + ACTIONS(8884), 1, + anon_sym_abstract, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(6087), 1, sym_comment, - STATE(7482), 1, - sym_import_attribute, - ACTIONS(9959), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [216627] = 6, + STATE(6120), 1, + sym_decorator, + [212490] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6342), 1, + ACTIONS(7862), 1, + anon_sym_EQ, + STATE(6088), 1, sym_comment, - STATE(7451), 1, - sym_import_attribute, - ACTIONS(9961), 2, + STATE(6742), 1, + sym__initializer, + ACTIONS(9665), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [216647] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212511] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9963), 1, - anon_sym_DQUOTE, - STATE(6343), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7880), 1, + anon_sym_LPAREN, + STATE(4867), 1, + sym_formal_parameters, + STATE(5867), 1, + sym__call_signature, + STATE(6089), 1, sym_comment, - STATE(6544), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [216667] = 7, + STATE(7873), 1, + sym_type_parameters, + [212536] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(9965), 1, - anon_sym_RPAREN, - STATE(6344), 1, + ACTIONS(9711), 1, + anon_sym_LBRACE, + ACTIONS(9763), 1, + anon_sym_SEMI, + ACTIONS(9765), 1, + sym__automatic_semicolon, + ACTIONS(9767), 1, + sym__function_signature_automatic_semicolon, + STATE(1413), 1, + sym_statement_block, + STATE(6090), 1, sym_comment, - [216689] = 6, + [212561] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6345), 1, + STATE(6091), 1, sym_comment, - STATE(6366), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9967), 2, + ACTIONS(9900), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216709] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9963), 1, - anon_sym_SQUOTE, - STATE(6346), 1, - sym_comment, - STATE(6546), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [216729] = 6, + anon_sym_PIPE_RBRACE, + [212578] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6329), 1, - aux_sym_variable_declaration_repeat1, - STATE(6347), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6092), 1, sym_comment, - ACTIONS(9969), 2, + STATE(7371), 1, + sym_import_attribute, + ACTIONS(9904), 2, sym__automatic_semicolon, anon_sym_SEMI, - [216749] = 6, + [212598] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9971), 1, - anon_sym_SQUOTE, - STATE(6348), 1, + ACTIONS(9906), 1, + anon_sym_DQUOTE, + STATE(6093), 1, sym_comment, - STATE(6546), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, + STATE(6370), 1, + aux_sym_string_repeat1, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [216769] = 6, + [212618] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9971), 1, + ACTIONS(9910), 1, anon_sym_DQUOTE, - STATE(6349), 1, + STATE(6094), 1, sym_comment, - STATE(6544), 1, + STATE(6107), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [216789] = 6, + [212638] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9975), 1, - anon_sym_COMMA, - STATE(6350), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6095), 1, sym_comment, - STATE(6379), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(9973), 2, - anon_sym_LBRACE, - anon_sym_implements, - [216809] = 6, - ACTIONS(3), 1, + STATE(7714), 1, + sym_import_attribute, + ACTIONS(9912), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [212658] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6096), 1, + sym_comment, + STATE(7684), 1, + sym_import_attribute, + ACTIONS(9914), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [212678] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9977), 1, - anon_sym_SQUOTE, - STATE(6348), 1, - aux_sym_string_repeat2, - STATE(6351), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6097), 1, sym_comment, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [216829] = 6, + STATE(6156), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9918), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [212698] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9977), 1, - anon_sym_DQUOTE, - STATE(6349), 1, - aux_sym_string_repeat1, - STATE(6352), 1, + ACTIONS(9910), 1, + anon_sym_SQUOTE, + STATE(6098), 1, sym_comment, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, + STATE(6108), 1, + aux_sym_string_repeat2, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [216849] = 7, + [212718] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(9979), 1, + ACTIONS(9922), 1, anon_sym_QMARK, - STATE(6353), 1, + STATE(6099), 1, sym_comment, - [216871] = 4, + [212740] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6354), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(9924), 1, + anon_sym_QMARK, + STATE(6100), 1, sym_comment, - ACTIONS(9435), 4, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_on, - [216887] = 4, + [212762] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6355), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(9926), 1, + anon_sym_QMARK, + STATE(6101), 1, sym_comment, - ACTIONS(3466), 4, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - [216903] = 4, + [212784] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6356), 1, + STATE(6102), 1, sym_comment, - ACTIONS(6601), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [216919] = 6, + ACTIONS(8361), 4, + anon_sym_default, + anon_sym_readonly, + anon_sym_property, + anon_sym_required, + [212800] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6357), 1, + STATE(6103), 1, sym_comment, - STATE(7395), 1, - sym__from_clause, - ACTIONS(6588), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [216939] = 6, + ACTIONS(9928), 4, + anon_sym_default, + anon_sym_readonly, + anon_sym_property, + anon_sym_required, + [212816] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6358), 1, + STATE(6104), 1, sym_comment, - STATE(7386), 1, - sym_import_attribute, - ACTIONS(9981), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [216959] = 6, + ACTIONS(9558), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_on, + [212832] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6359), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(9930), 1, + anon_sym_QMARK, + STATE(6105), 1, sym_comment, - STATE(7385), 1, - sym_import_attribute, - ACTIONS(9983), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [216979] = 6, + [212854] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6360), 1, + ACTIONS(9934), 1, + anon_sym_DOT, + STATE(6106), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9985), 2, + ACTIONS(9932), 3, sym__automatic_semicolon, + anon_sym_as, anon_sym_SEMI, - [216999] = 7, + [212872] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(9936), 1, + anon_sym_DQUOTE, + STATE(6107), 1, + sym_comment, + STATE(6114), 1, + aux_sym_string_repeat1, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [212892] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - ACTIONS(9987), 1, - anon_sym_SEMI, - ACTIONS(9989), 1, - sym__automatic_semicolon, - STATE(6361), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9936), 1, + anon_sym_SQUOTE, + STATE(6108), 1, sym_comment, - STATE(7383), 1, - sym_import_attribute, - [217021] = 7, + STATE(6115), 1, + aux_sym_string_repeat2, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [212912] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - ACTIONS(9991), 1, - anon_sym_SEMI, - ACTIONS(9993), 1, - sym__automatic_semicolon, - STATE(6362), 1, + STATE(6109), 1, sym_comment, - STATE(7966), 1, - sym_import_attribute, - [217043] = 6, + ACTIONS(9548), 4, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_on, + [212928] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6363), 1, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(9938), 1, + sym_identifier, + STATE(6110), 1, sym_comment, - STATE(7968), 1, - sym_import_attribute, - ACTIONS(9995), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [217063] = 6, + STATE(6116), 1, + sym_string, + [212950] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6364), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6111), 1, sym_comment, - STATE(7970), 1, - sym_import_attribute, - ACTIONS(9997), 2, + STATE(6126), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9940), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217083] = 6, + [212970] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6365), 1, + ACTIONS(9942), 1, + anon_sym_LPAREN, + STATE(6112), 1, sym_comment, - STATE(7978), 1, - sym__from_clause, - ACTIONS(6411), 2, + STATE(7913), 1, + sym_ui_signal_parameters, + ACTIONS(9944), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217103] = 6, + [212990] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6366), 1, + ACTIONS(9166), 1, + anon_sym_finally, + STATE(6113), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9999), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [217123] = 7, + STATE(7469), 1, + sym_finally_clause, + ACTIONS(9946), 2, + anon_sym_else, + anon_sym_while, + [213010] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(9948), 1, + anon_sym_DQUOTE, + ACTIONS(9950), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + STATE(6114), 2, + sym_comment, + aux_sym_string_repeat1, + [213028] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(10001), 1, - anon_sym_LT, - STATE(3431), 1, - sym_arguments, - STATE(3433), 1, - sym_type_arguments, - STATE(6367), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9953), 1, + anon_sym_SQUOTE, + ACTIONS(9955), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + STATE(6115), 2, sym_comment, - [217145] = 4, + aux_sym_string_repeat2, + [213046] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6368), 1, + ACTIONS(9958), 1, + anon_sym_COMMA, + STATE(6116), 1, sym_comment, - ACTIONS(8458), 4, - anon_sym_default, - anon_sym_readonly, - anon_sym_property, - anon_sym_required, - [217161] = 5, + STATE(6129), 1, + aux_sym_ui_pragma_repeat1, + ACTIONS(9960), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [213066] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10003), 1, - anon_sym_COMMA, - ACTIONS(6653), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(6369), 2, + ACTIONS(6088), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + anon_sym_LT, + STATE(3255), 1, + sym_type_arguments, + STATE(3256), 1, + sym_arguments, + STATE(6117), 1, sym_comment, - aux_sym_array_repeat1, - [217179] = 4, + [213088] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6370), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(6118), 1, sym_comment, - ACTIONS(3430), 4, - sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - [217195] = 7, + STATE(7715), 1, + sym_type_parameters, + STATE(8061), 1, + sym_formal_parameters, + [213110] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10006), 1, - sym_identifier, - STATE(5600), 1, - sym_nested_type_identifier, - STATE(6317), 1, - sym_generic_type, - STATE(6371), 1, + ACTIONS(9964), 1, + sym__glimmer_template_content, + ACTIONS(9966), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3607), 1, + sym_glimmer_closing_tag, + STATE(6119), 1, sym_comment, - STATE(8430), 1, - sym_nested_identifier, - [217217] = 7, + STATE(6141), 1, + aux_sym_glimmer_template_repeat1, + [213132] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - ACTIONS(10008), 1, - anon_sym_SEMI, - ACTIONS(10010), 1, - sym__automatic_semicolon, - STATE(6372), 1, + STATE(6120), 1, sym_comment, - STATE(7372), 1, - sym_import_attribute, - [217239] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9968), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [213148] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(10012), 1, - sym_identifier, - STATE(6373), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(6121), 1, sym_comment, - STATE(6471), 1, - sym_string, - [217261] = 7, + STATE(7726), 1, + sym_type_parameters, + STATE(7956), 1, + sym_formal_parameters, + [213170] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(10014), 1, + ACTIONS(9970), 1, anon_sym_RPAREN, - STATE(6374), 1, + STATE(6122), 1, sym_comment, - [217283] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213192] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10016), 1, - anon_sym_DQUOTE, - STATE(6375), 1, - sym_comment, - STATE(6377), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [217303] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10016), 1, - anon_sym_SQUOTE, - STATE(6376), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(9972), 1, + anon_sym_class, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(6123), 1, sym_comment, - STATE(6378), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [217323] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213214] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10018), 1, - anon_sym_DQUOTE, - STATE(6377), 1, - sym_comment, - STATE(6544), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [217343] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(9974), 1, + anon_sym_EQ, + ACTIONS(9976), 1, + anon_sym_COMMA, + ACTIONS(9978), 1, + anon_sym_RBRACK, + STATE(6124), 1, + sym_comment, + STATE(6845), 1, + aux_sym_array_pattern_repeat1, + [213236] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10018), 1, - anon_sym_SQUOTE, - STATE(6378), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(6125), 1, sym_comment, - STATE(6546), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [217363] = 6, + STATE(7829), 1, + sym_type_parameters, + STATE(8280), 1, + sym_formal_parameters, + [213258] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9975), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6379), 1, + STATE(6126), 1, sym_comment, - STATE(6575), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(10020), 2, - anon_sym_LBRACE, - anon_sym_implements, - [217383] = 7, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9980), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [213278] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10022), 1, - anon_sym_RPAREN, - STATE(6380), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(6127), 1, + sym_comment, + STATE(7835), 1, + sym_type_parameters, + STATE(8381), 1, + sym_formal_parameters, + [213300] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2512), 1, + anon_sym_DQUOTE, + ACTIONS(2514), 1, + anon_sym_SQUOTE, + ACTIONS(9982), 1, + sym_identifier, + STATE(6128), 1, sym_comment, - [217405] = 6, + STATE(6881), 1, + sym_string, + [213322] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8017), 1, - anon_sym_EQ, - STATE(6381), 1, - sym_comment, - STATE(7997), 1, - sym_default_type, - ACTIONS(10024), 2, + ACTIONS(9958), 1, anon_sym_COMMA, - anon_sym_GT, - [217425] = 6, + ACTIONS(9984), 1, + anon_sym_SEMI, + ACTIONS(9986), 1, + sym__automatic_semicolon, + STATE(6129), 1, + sym_comment, + STATE(6154), 1, + aux_sym_ui_pragma_repeat1, + [213344] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6382), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6130), 1, sym_comment, - STATE(6387), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10026), 2, + STATE(7717), 1, + sym__from_clause, + ACTIONS(9990), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217445] = 7, + [213364] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7833), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - ACTIONS(7839), 1, + ACTIONS(7872), 1, anon_sym_LT, - STATE(4886), 1, - sym_arguments, - STATE(5105), 1, - sym_type_arguments, - STATE(6383), 1, + STATE(6131), 1, sym_comment, - [217467] = 7, + STATE(7879), 1, + sym_type_parameters, + STATE(8235), 1, + sym_formal_parameters, + [213386] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(10028), 1, + ACTIONS(9992), 1, anon_sym_RBRACK, - STATE(6384), 1, - sym_comment, - [217489] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10030), 1, - anon_sym_QMARK, - STATE(6385), 1, + STATE(6132), 1, sym_comment, - [217511] = 7, + [213408] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(10032), 1, + ACTIONS(9994), 1, anon_sym_RBRACK, - STATE(6386), 1, + STATE(6133), 1, sym_comment, - [217533] = 6, + [213430] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6387), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(6134), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10034), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [217553] = 6, + STATE(7865), 1, + sym_type_parameters, + STATE(8019), 1, + sym_formal_parameters, + [213452] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10036), 1, - anon_sym_EQ, - STATE(6388), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(6135), 1, sym_comment, - STATE(7726), 1, - sym__initializer, - ACTIONS(8164), 2, - anon_sym_in, - anon_sym_of, - [217573] = 7, + STATE(7481), 1, + sym_type_parameters, + STATE(8260), 1, + sym_formal_parameters, + [213474] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8629), 1, + ACTIONS(8701), 1, anon_sym_DOT, - ACTIONS(10038), 1, + ACTIONS(9996), 1, anon_sym_COMMA, - ACTIONS(10040), 1, + ACTIONS(9998), 1, anon_sym_GT, - STATE(6389), 1, + STATE(6136), 1, sym_comment, - STATE(7307), 1, + STATE(6998), 1, aux_sym_type_arguments_repeat1, - [217595] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8635), 1, - anon_sym_EQ, - STATE(6390), 1, - sym_comment, - STATE(7784), 1, - sym__initializer, - ACTIONS(10042), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [217615] = 7, + [213496] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - ACTIONS(10044), 1, - anon_sym_SEMI, - ACTIONS(10046), 1, - sym__automatic_semicolon, - STATE(6391), 1, + STATE(6137), 1, sym_comment, - STATE(7702), 1, - sym_import_attribute, - [217637] = 6, + ACTIONS(10000), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [213512] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6392), 1, + STATE(6138), 1, sym_comment, - STATE(7477), 1, - sym__from_clause, - ACTIONS(10048), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [217657] = 7, + ACTIONS(8791), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [213528] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(6088), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(6393), 1, + ACTIONS(6124), 1, + anon_sym_BQUOTE, + STATE(6139), 1, sym_comment, - STATE(8000), 1, - sym_type_parameters, - STATE(8339), 1, - sym_formal_parameters, - [217679] = 6, + STATE(3375), 2, + sym_template_string, + sym_arguments, + [213548] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(6168), 1, anon_sym_COMMA, - STATE(6360), 1, - aux_sym_variable_declaration_repeat1, - STATE(6394), 1, + STATE(6140), 1, sym_comment, - ACTIONS(10050), 2, + STATE(6224), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(9190), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217699] = 7, + [213568] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(5441), 1, - sym_formal_parameters, - STATE(6395), 1, + ACTIONS(9964), 1, + sym__glimmer_template_content, + ACTIONS(9966), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3380), 1, + sym_glimmer_closing_tag, + STATE(6141), 1, sym_comment, - STATE(7505), 1, - sym_type_parameters, - [217721] = 6, + STATE(7016), 1, + aux_sym_glimmer_template_repeat1, + [213590] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6396), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10002), 1, + anon_sym_RBRACK, + STATE(6142), 1, sym_comment, - STATE(7481), 1, - sym_import_attribute, - ACTIONS(10052), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [217741] = 6, + [213612] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6397), 1, + ACTIONS(5210), 1, + anon_sym_COLON, + ACTIONS(7900), 1, + anon_sym_EQ, + STATE(6143), 1, sym_comment, - STATE(7943), 1, - sym_import_attribute, - ACTIONS(10054), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [217761] = 6, + ACTIONS(10004), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [213632] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6398), 1, - sym_comment, - STATE(8039), 1, - sym_import_attribute, - ACTIONS(10056), 2, + ACTIONS(10006), 1, + anon_sym_COMMA, + ACTIONS(10009), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217781] = 6, + STATE(6144), 2, + sym_comment, + aux_sym_variable_declaration_repeat1, + [213650] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6399), 1, + ACTIONS(10011), 1, + anon_sym_DQUOTE, + STATE(6145), 1, sym_comment, - STATE(8043), 1, - sym_import_attribute, - ACTIONS(10058), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [217801] = 6, + STATE(6148), 1, + aux_sym_string_repeat1, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [213670] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6400), 1, + ACTIONS(10011), 1, + anon_sym_SQUOTE, + STATE(6146), 1, sym_comment, - STATE(6407), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10060), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [217821] = 6, + STATE(6149), 1, + aux_sym_string_repeat2, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [213690] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, + ACTIONS(9988), 1, anon_sym_from, - STATE(6401), 1, + STATE(6147), 1, sym_comment, - STATE(7502), 1, + STATE(7491), 1, sym__from_clause, - ACTIONS(6639), 2, + ACTIONS(6623), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217841] = 6, + [213710] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10013), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + aux_sym_string_repeat1, + STATE(6148), 1, + sym_comment, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [213730] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10013), 1, + anon_sym_SQUOTE, + STATE(6115), 1, + aux_sym_string_repeat2, + STATE(6149), 1, + sym_comment, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [213750] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6402), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6150), 1, sym_comment, - STATE(7510), 1, - sym_import_attribute, - ACTIONS(10062), 2, + STATE(6161), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10015), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217861] = 6, + [213770] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - STATE(6403), 1, + STATE(6151), 1, sym_comment, - STATE(7511), 1, + STATE(7477), 1, sym_import_attribute, - ACTIONS(10064), 2, + ACTIONS(10017), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217881] = 6, + [213790] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6404), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6152), 1, sym_comment, - STATE(8149), 1, - sym__from_clause, - ACTIONS(6657), 2, + STATE(7474), 1, + sym_import_attribute, + ACTIONS(10019), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217901] = 7, + [213810] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - ACTIONS(10066), 1, + ACTIONS(10021), 1, anon_sym_SEMI, - ACTIONS(10068), 1, + ACTIONS(10023), 1, sym__automatic_semicolon, - STATE(6405), 1, + STATE(6153), 1, sym_comment, - STATE(7514), 1, + STATE(7457), 1, sym_import_attribute, - [217923] = 6, + [213832] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6406), 1, - sym_comment, - STATE(8046), 1, - sym__from_clause, - ACTIONS(10070), 2, + ACTIONS(10025), 1, + anon_sym_COMMA, + ACTIONS(10028), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217943] = 6, + STATE(6154), 2, + sym_comment, + aux_sym_ui_pragma_repeat1, + [213850] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6407), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(6155), 1, sym_comment, - STATE(6529), 1, + STATE(7706), 1, + sym_type_parameters, + STATE(8179), 1, + sym_formal_parameters, + [213872] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6144), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(10072), 2, + STATE(6156), 1, + sym_comment, + ACTIONS(10030), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217963] = 6, + [213892] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9964), 1, + sym__glimmer_template_content, + ACTIONS(10032), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2983), 1, + sym_glimmer_closing_tag, + STATE(6157), 1, + sym_comment, + STATE(6273), 1, + aux_sym_glimmer_template_repeat1, + [213914] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6408), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6158), 1, sym_comment, - STATE(8128), 1, - sym_import_attribute, - ACTIONS(10074), 2, + STATE(7158), 1, + sym__from_clause, + ACTIONS(10034), 2, sym__automatic_semicolon, anon_sym_SEMI, - [217983] = 6, + [213934] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6409), 1, + STATE(6159), 1, sym_comment, - STATE(8124), 1, - sym_import_attribute, - ACTIONS(10076), 2, + ACTIONS(10036), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(10038), 2, sym__automatic_semicolon, anon_sym_SEMI, - [218003] = 7, + [213952] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - ACTIONS(10078), 1, - anon_sym_SEMI, - ACTIONS(10080), 1, - sym__automatic_semicolon, - STATE(6410), 1, + ACTIONS(9974), 1, + anon_sym_EQ, + ACTIONS(9976), 1, + anon_sym_COMMA, + ACTIONS(10040), 1, + anon_sym_RBRACK, + STATE(6160), 1, sym_comment, - STATE(8081), 1, - sym_import_attribute, - [218025] = 7, + STATE(7036), 1, + aux_sym_array_pattern_repeat1, + [213974] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10082), 1, - anon_sym_COLON, - STATE(6411), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + STATE(6161), 1, sym_comment, - [218047] = 7, + ACTIONS(10042), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [213994] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - ACTIONS(10084), 1, - anon_sym_SEMI, - ACTIONS(10086), 1, - sym__automatic_semicolon, - STATE(6412), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(6162), 1, sym_comment, - STATE(7534), 1, - sym_import_attribute, - [218069] = 6, + STATE(7532), 1, + sym_statement_block, + ACTIONS(2294), 2, + anon_sym_else, + anon_sym_while, + [214014] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6413), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6163), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10088), 2, + STATE(7369), 1, + sym_import_attribute, + ACTIONS(10044), 2, sym__automatic_semicolon, anon_sym_SEMI, - [218089] = 6, + [214034] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6414), 1, + STATE(6164), 1, sym_comment, - STATE(6586), 1, + STATE(6289), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(10090), 2, + ACTIONS(10046), 2, sym__automatic_semicolon, anon_sym_SEMI, - [218109] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214054] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10092), 1, - anon_sym_DQUOTE, - STATE(6415), 1, - sym_comment, - STATE(6418), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [218129] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10092), 1, - anon_sym_SQUOTE, - STATE(6416), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(6165), 1, sym_comment, - STATE(6419), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [218149] = 7, + STATE(7680), 1, + sym_type_parameters, + STATE(8414), 1, + sym_formal_parameters, + [214076] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8629), 1, - anon_sym_DOT, - ACTIONS(10094), 1, - anon_sym_COMMA, - ACTIONS(10096), 1, - anon_sym_GT, - STATE(6417), 1, + ACTIONS(10048), 1, + anon_sym_EQ_GT, + STATE(6166), 1, sym_comment, - STATE(7021), 1, - aux_sym_type_arguments_repeat1, - [218171] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(5210), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [214094] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10098), 1, - anon_sym_DQUOTE, - STATE(6418), 1, - sym_comment, - STATE(6544), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [218191] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(10050), 1, + anon_sym_EQ_GT, + STATE(6167), 1, + sym_comment, + ACTIONS(5210), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [214112] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10098), 1, - anon_sym_SQUOTE, - STATE(6419), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10052), 1, + anon_sym_EQ, + ACTIONS(10054), 1, + anon_sym_COMMA, + ACTIONS(10056), 1, + anon_sym_RBRACE, + STATE(6168), 1, sym_comment, - STATE(6546), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [218211] = 6, + STATE(7113), 1, + aux_sym__qml_enum_body_repeat1, + [214134] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6420), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(10058), 1, + anon_sym_class, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(6169), 1, sym_comment, - STATE(6421), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10100), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218231] = 6, + [214156] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6421), 1, + ACTIONS(8817), 1, + anon_sym_EQ, + STATE(6170), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10102), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218251] = 5, + STATE(7558), 1, + sym__initializer, + ACTIONS(10060), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [214176] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6422), 1, + ACTIONS(10062), 1, + anon_sym_COMMA, + ACTIONS(6677), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(6171), 2, sym_comment, - ACTIONS(10104), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(10106), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218269] = 6, + aux_sym_array_repeat1, + [214194] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10108), 1, - anon_sym_LPAREN, - STATE(6423), 1, + STATE(6172), 1, sym_comment, - STATE(8152), 1, - sym_ui_signal_parameters, - ACTIONS(10110), 2, + ACTIONS(6483), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [218289] = 6, + [214210] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6424), 1, + ACTIONS(8701), 1, + anon_sym_DOT, + ACTIONS(10065), 1, + anon_sym_COMMA, + ACTIONS(10067), 1, + anon_sym_GT, + STATE(6173), 1, sym_comment, - STATE(7599), 1, - sym__from_clause, - ACTIONS(10112), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218309] = 6, + STATE(6788), 1, + aux_sym_type_arguments_repeat1, + [214232] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(10071), 1, anon_sym_COMMA, - STATE(6425), 1, + STATE(6174), 1, sym_comment, - STATE(6430), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10114), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218329] = 6, + STATE(6308), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(10069), 2, + anon_sym_LBRACE, + anon_sym_implements, + [214252] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10116), 1, + ACTIONS(10073), 1, anon_sym_SQUOTE, - STATE(6346), 1, + STATE(6115), 1, aux_sym_string_repeat2, - STATE(6426), 1, + STATE(6175), 1, sym_comment, - ACTIONS(9901), 2, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [218349] = 6, + [214272] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6427), 1, + ACTIONS(10073), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + aux_sym_string_repeat1, + STATE(6176), 1, sym_comment, - STATE(7613), 1, - sym__from_clause, - ACTIONS(6655), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218369] = 7, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [214292] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10118), 1, - anon_sym_QMARK, - STATE(6428), 1, + ACTIONS(10075), 1, + anon_sym_SQUOTE, + STATE(6175), 1, + aux_sym_string_repeat2, + STATE(6177), 1, sym_comment, - [218391] = 6, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [214312] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10116), 1, + ACTIONS(10075), 1, anon_sym_DQUOTE, - STATE(6343), 1, + STATE(6176), 1, aux_sym_string_repeat1, - STATE(6429), 1, + STATE(6178), 1, sym_comment, - ACTIONS(9897), 2, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [218411] = 6, + [214332] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6430), 1, + ACTIONS(2989), 1, + anon_sym_AT, + ACTIONS(10077), 1, + anon_sym_export, + STATE(5385), 1, + aux_sym_export_statement_repeat1, + STATE(6120), 1, + sym_decorator, + STATE(6179), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10120), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218431] = 6, + [214354] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(7692), 1, + anon_sym_LT, + STATE(4358), 1, + sym_arguments, + STATE(4465), 1, + sym_type_arguments, + STATE(6180), 1, + sym_comment, + [214376] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10122), 1, - anon_sym_DQUOTE, - STATE(6431), 1, + ACTIONS(10079), 1, + anon_sym_SQUOTE, + STATE(6115), 1, + aux_sym_string_repeat2, + STATE(6181), 1, sym_comment, - STATE(6455), 1, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [214396] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10079), 1, + anon_sym_DQUOTE, + STATE(6114), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + STATE(6182), 1, + sym_comment, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [218451] = 7, + [214416] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10124), 1, - sym_identifier, - ACTIONS(10126), 1, - anon_sym_const, - ACTIONS(10128), 1, - anon_sym_GT, - STATE(6432), 1, + ACTIONS(10081), 1, + anon_sym_SQUOTE, + STATE(6181), 1, + aux_sym_string_repeat2, + STATE(6183), 1, sym_comment, - STATE(8132), 1, - sym_type_parameter, - [218473] = 6, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [214436] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10130), 1, + ACTIONS(10081), 1, anon_sym_DQUOTE, - STATE(6433), 1, - sym_comment, - STATE(6436), 1, + STATE(6182), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + STATE(6184), 1, + sym_comment, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [218493] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8635), 1, - anon_sym_EQ, - STATE(6434), 1, - sym_comment, - STATE(7986), 1, - sym__initializer, - ACTIONS(10132), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [218513] = 6, + [214456] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10130), 1, + ACTIONS(10083), 1, anon_sym_SQUOTE, - STATE(6435), 1, - sym_comment, - STATE(6437), 1, + STATE(6115), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6185), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [218533] = 6, + [214476] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10134), 1, + ACTIONS(10083), 1, anon_sym_DQUOTE, - STATE(6436), 1, - sym_comment, - STATE(6544), 1, + STATE(6114), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + STATE(6186), 1, + sym_comment, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [218553] = 6, + [214496] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10134), 1, + ACTIONS(10085), 1, anon_sym_SQUOTE, - STATE(6437), 1, - sym_comment, - STATE(6546), 1, + STATE(6185), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6187), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [218573] = 6, + [214516] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6438), 1, + ACTIONS(10085), 1, + anon_sym_DQUOTE, + STATE(6186), 1, + aux_sym_string_repeat1, + STATE(6188), 1, sym_comment, - STATE(6440), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10136), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218593] = 6, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [214536] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6439), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10087), 1, + anon_sym_RPAREN, + STATE(6189), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10138), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218613] = 6, + [214558] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6440), 1, + ACTIONS(10089), 1, + anon_sym_SQUOTE, + STATE(6115), 1, + aux_sym_string_repeat2, + STATE(6190), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10140), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218633] = 4, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [214578] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6441), 1, + ACTIONS(10089), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + aux_sym_string_repeat1, + STATE(6191), 1, sym_comment, - ACTIONS(10142), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [218649] = 6, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [214598] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6439), 1, - aux_sym_variable_declaration_repeat1, - STATE(6442), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10091), 1, + anon_sym_RBRACK, + STATE(6192), 1, sym_comment, - ACTIONS(10144), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218669] = 6, + [214620] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10146), 1, + ACTIONS(10093), 1, anon_sym_SQUOTE, - STATE(6443), 1, - sym_comment, - STATE(6546), 1, + STATE(6190), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6193), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [218689] = 6, + [214640] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10146), 1, + ACTIONS(10093), 1, anon_sym_DQUOTE, - STATE(6444), 1, - sym_comment, - STATE(6544), 1, + STATE(6191), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + STATE(6194), 1, + sym_comment, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [218709] = 6, + [214660] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10148), 1, + ACTIONS(10095), 1, anon_sym_SQUOTE, - STATE(6443), 1, + STATE(6115), 1, aux_sym_string_repeat2, - STATE(6445), 1, + STATE(6195), 1, sym_comment, - ACTIONS(9901), 2, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [218729] = 6, + [214680] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10122), 1, - anon_sym_SQUOTE, - STATE(6446), 1, + ACTIONS(10095), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + aux_sym_string_repeat1, + STATE(6196), 1, sym_comment, - STATE(6461), 1, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [214700] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10097), 1, + anon_sym_SQUOTE, + STATE(6195), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6197), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [218749] = 6, + [214720] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10148), 1, + ACTIONS(10097), 1, anon_sym_DQUOTE, - STATE(6444), 1, + STATE(6196), 1, aux_sym_string_repeat1, - STATE(6447), 1, + STATE(6198), 1, sym_comment, - ACTIONS(9897), 2, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [218769] = 6, + [214740] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6448), 1, + ACTIONS(10099), 1, + anon_sym_SQUOTE, + STATE(6115), 1, + aux_sym_string_repeat2, + STATE(6199), 1, sym_comment, - STATE(6453), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10150), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218789] = 7, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [214760] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10152), 1, - anon_sym_RBRACK, - STATE(6449), 1, + ACTIONS(10099), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + aux_sym_string_repeat1, + STATE(6200), 1, sym_comment, - [218811] = 5, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [214780] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10154), 1, - anon_sym_EQ_GT, - STATE(6450), 1, + ACTIONS(10101), 1, + anon_sym_SQUOTE, + STATE(6199), 1, + aux_sym_string_repeat2, + STATE(6201), 1, sym_comment, - ACTIONS(5208), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [218829] = 5, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [214800] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10156), 1, - anon_sym_EQ_GT, - STATE(6451), 1, + ACTIONS(10101), 1, + anon_sym_DQUOTE, + STATE(6200), 1, + aux_sym_string_repeat1, + STATE(6202), 1, sym_comment, - ACTIONS(5208), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [218847] = 7, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [214820] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - ACTIONS(10158), 1, + ACTIONS(10103), 1, anon_sym_SEMI, - ACTIONS(10160), 1, + ACTIONS(10105), 1, sym__automatic_semicolon, - STATE(6452), 1, + STATE(6203), 1, sym_comment, - STATE(7573), 1, + STATE(7298), 1, sym_import_attribute, - [218869] = 6, + [214842] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6453), 1, + STATE(6204), 1, sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10162), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [218889] = 6, + ACTIONS(2468), 4, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_DOT, + [214858] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10164), 1, + STATE(6205), 1, + sym_comment, + ACTIONS(2472), 4, anon_sym_LBRACE, - ACTIONS(10166), 1, - anon_sym_COMMA, - ACTIONS(10169), 1, - anon_sym_LBRACE_PIPE, - STATE(6454), 2, + anon_sym_else, + anon_sym_while, + anon_sym_DOT, + [214874] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8012), 1, + anon_sym_EQ, + STATE(6206), 1, sym_comment, - aux_sym_extends_type_clause_repeat1, - [218909] = 6, + STATE(7862), 1, + sym_default_type, + ACTIONS(10107), 2, + anon_sym_COMMA, + anon_sym_GT, + [214894] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10171), 1, - anon_sym_DQUOTE, - STATE(6455), 1, + ACTIONS(10109), 1, + anon_sym_SQUOTE, + STATE(6115), 1, + aux_sym_string_repeat2, + STATE(6207), 1, sym_comment, - STATE(6544), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [218929] = 6, + [214914] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10173), 1, + ACTIONS(10109), 1, anon_sym_DQUOTE, - STATE(6456), 1, - sym_comment, - STATE(6458), 1, + STATE(6114), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + STATE(6208), 1, + sym_comment, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [218949] = 6, + [214934] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10173), 1, + ACTIONS(10111), 1, anon_sym_SQUOTE, - STATE(6457), 1, - sym_comment, - STATE(6459), 1, + STATE(6207), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6209), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [218969] = 6, + [214954] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10175), 1, + ACTIONS(10111), 1, anon_sym_DQUOTE, - STATE(6458), 1, - sym_comment, - STATE(6544), 1, + STATE(6208), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + STATE(6210), 1, + sym_comment, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [218989] = 6, + [214974] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + ACTIONS(7872), 1, + anon_sym_LT, + STATE(6211), 1, + sym_comment, + STATE(7844), 1, + sym_type_parameters, + STATE(7958), 1, + sym_formal_parameters, + [214996] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8701), 1, + anon_sym_DOT, + ACTIONS(10113), 1, + anon_sym_COMMA, + ACTIONS(10115), 1, + anon_sym_GT, + STATE(6212), 1, + sym_comment, + STATE(7116), 1, + aux_sym_type_arguments_repeat1, + [215018] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10175), 1, + ACTIONS(10117), 1, anon_sym_SQUOTE, - STATE(6459), 1, - sym_comment, - STATE(6546), 1, + STATE(6115), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6213), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [219009] = 7, + [215038] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - ACTIONS(10177), 1, - anon_sym_SEMI, - ACTIONS(10179), 1, - sym__automatic_semicolon, - STATE(6460), 1, + ACTIONS(10117), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + aux_sym_string_repeat1, + STATE(6214), 1, sym_comment, - STATE(7850), 1, - sym_import_attribute, - [219031] = 6, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [215058] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10171), 1, + ACTIONS(10119), 1, anon_sym_SQUOTE, - STATE(6461), 1, - sym_comment, - STATE(6546), 1, + STATE(6213), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6215), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [219051] = 6, + [215078] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6462), 1, + ACTIONS(10119), 1, + anon_sym_DQUOTE, + STATE(6214), 1, + aux_sym_string_repeat1, + STATE(6216), 1, sym_comment, - STATE(6466), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10181), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [219071] = 7, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [215098] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10124), 1, + ACTIONS(10121), 1, sym_identifier, - ACTIONS(10126), 1, + ACTIONS(10123), 1, anon_sym_const, - ACTIONS(10183), 1, + ACTIONS(10125), 1, anon_sym_GT, - STATE(6463), 1, + STATE(6217), 1, sym_comment, - STATE(8132), 1, + STATE(7816), 1, sym_type_parameter, - [219093] = 7, + [215120] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10185), 1, - anon_sym_RBRACK, - STATE(6464), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + STATE(6218), 1, sym_comment, - [219115] = 7, + ACTIONS(10127), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215140] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10187), 1, - anon_sym_COLON, - STATE(6465), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(5582), 1, + anon_sym_BQUOTE, + STATE(6219), 1, sym_comment, - [219137] = 6, + STATE(2887), 2, + sym_template_string, + sym_arguments, + [215160] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6466), 1, - sym_comment, - STATE(6529), 1, + STATE(6218), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(10189), 2, + STATE(6220), 1, + sym_comment, + ACTIONS(10129), 2, sym__automatic_semicolon, anon_sym_SEMI, - [219157] = 6, + [215180] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8017), 1, - anon_sym_EQ, - STATE(6467), 1, + STATE(6221), 1, + sym_comment, + ACTIONS(10131), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [215196] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10133), 1, + sym_identifier, + STATE(5750), 1, + sym_nested_type_identifier, + STATE(6222), 1, sym_comment, - STATE(7587), 1, - sym_default_type, - ACTIONS(10191), 2, - anon_sym_COMMA, - anon_sym_GT, - [219177] = 6, + STATE(6959), 1, + sym_generic_type, + STATE(8173), 1, + sym_nested_identifier, + [215218] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6468), 1, - sym_comment, - STATE(6559), 1, + STATE(6144), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(10193), 2, + STATE(6223), 1, + sym_comment, + ACTIONS(10135), 2, sym__automatic_semicolon, anon_sym_SEMI, - [219197] = 6, + [215238] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6469), 1, - sym_comment, - STATE(7849), 1, - sym_import_attribute, - ACTIONS(10195), 2, + ACTIONS(10137), 1, + anon_sym_COMMA, + ACTIONS(5728), 2, sym__automatic_semicolon, anon_sym_SEMI, - [219217] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10197), 1, - anon_sym_DQUOTE, - STATE(6470), 1, + STATE(6224), 2, sym_comment, - STATE(6473), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [219237] = 6, + aux_sym_sequence_expression_repeat1, + [215256] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10199), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6471), 1, + STATE(6223), 1, + aux_sym_variable_declaration_repeat1, + STATE(6225), 1, sym_comment, - STATE(6572), 1, - aux_sym_ui_pragma_repeat1, - ACTIONS(10201), 2, + ACTIONS(10140), 2, sym__automatic_semicolon, anon_sym_SEMI, - [219257] = 6, + [215276] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10197), 1, + ACTIONS(10142), 1, anon_sym_SQUOTE, - STATE(6472), 1, - sym_comment, - STATE(6474), 1, + STATE(6115), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6226), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [219277] = 6, + [215296] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10203), 1, + ACTIONS(10142), 1, anon_sym_DQUOTE, - STATE(6473), 1, - sym_comment, - STATE(6544), 1, + STATE(6114), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + STATE(6227), 1, + sym_comment, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [219297] = 6, + [215316] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10203), 1, + ACTIONS(10144), 1, anon_sym_SQUOTE, - STATE(6474), 1, - sym_comment, - STATE(6546), 1, + STATE(6226), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6228), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [219317] = 6, + [215336] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10205), 1, + ACTIONS(10144), 1, anon_sym_DQUOTE, - STATE(6475), 1, - sym_comment, - STATE(6477), 1, + STATE(6227), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + STATE(6229), 1, + sym_comment, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [219337] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215356] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10205), 1, - anon_sym_SQUOTE, - STATE(6476), 1, - sym_comment, - STATE(6478), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [219357] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10207), 1, - anon_sym_DQUOTE, - STATE(6477), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6230), 1, sym_comment, - STATE(6544), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [219377] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(7262), 1, + sym__from_clause, + ACTIONS(10146), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215376] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10207), 1, - anon_sym_SQUOTE, - STATE(6478), 1, - sym_comment, - STATE(6546), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [219397] = 7, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10209), 1, - sym_identifier, - STATE(6014), 1, - sym_nested_type_identifier, - STATE(6479), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6231), 1, sym_comment, - STATE(7243), 1, - sym_generic_type, - STATE(8430), 1, - sym_nested_identifier, - [219419] = 7, + STATE(7288), 1, + sym_import_attribute, + ACTIONS(10148), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215396] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - ACTIONS(10211), 1, - anon_sym_SEMI, - ACTIONS(10213), 1, - sym__automatic_semicolon, - STATE(6480), 1, + STATE(6232), 1, sym_comment, - STATE(8026), 1, + STATE(7306), 1, sym_import_attribute, - [219441] = 7, + ACTIONS(10150), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215416] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8671), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - ACTIONS(10215), 1, - anon_sym_LBRACE, - ACTIONS(10217), 1, - anon_sym_LBRACE_PIPE, - STATE(6454), 1, - aux_sym_extends_type_clause_repeat1, - STATE(6481), 1, + STATE(6233), 1, sym_comment, - [219463] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6281), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10152), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215436] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10219), 1, - anon_sym_DQUOTE, - STATE(6482), 1, - sym_comment, - STATE(6484), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [219483] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10219), 1, - anon_sym_SQUOTE, - STATE(6483), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + STATE(6234), 1, sym_comment, - STATE(6486), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [219503] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10154), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215456] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10221), 1, - anon_sym_DQUOTE, - STATE(6484), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6235), 1, sym_comment, - STATE(6544), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [219523] = 7, + STATE(7356), 1, + sym__from_clause, + ACTIONS(6476), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215476] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10223), 1, - anon_sym_RBRACK, - STATE(6485), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6234), 1, + aux_sym_variable_declaration_repeat1, + STATE(6236), 1, sym_comment, - [219545] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10156), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215496] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10221), 1, - anon_sym_SQUOTE, - STATE(6486), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6237), 1, sym_comment, - STATE(6546), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [219565] = 7, + STATE(7342), 1, + sym__from_clause, + ACTIONS(10158), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215516] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8671), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - ACTIONS(10225), 1, - anon_sym_LBRACE, - ACTIONS(10227), 1, - anon_sym_LBRACE_PIPE, - STATE(6454), 1, - aux_sym_extends_type_clause_repeat1, - STATE(6487), 1, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + STATE(6238), 1, sym_comment, - [219587] = 6, + ACTIONS(10160), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215536] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6488), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6238), 1, + aux_sym_variable_declaration_repeat1, + STATE(6239), 1, sym_comment, - STATE(7644), 1, - sym__from_clause, - ACTIONS(10229), 2, + ACTIONS(10162), 2, sym__automatic_semicolon, anon_sym_SEMI, - [219607] = 6, + [215556] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10231), 1, - anon_sym_DQUOTE, - STATE(6489), 1, + ACTIONS(10164), 1, + anon_sym_SQUOTE, + STATE(6115), 1, + aux_sym_string_repeat2, + STATE(6240), 1, sym_comment, - STATE(6491), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [219627] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215576] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10231), 1, - anon_sym_SQUOTE, - STATE(6490), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8603), 1, + anon_sym_COMMA, + ACTIONS(10166), 1, + anon_sym_LBRACE, + ACTIONS(10168), 1, + anon_sym_LBRACE_PIPE, + STATE(6241), 1, sym_comment, - STATE(6493), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [219647] = 6, + STATE(6310), 1, + aux_sym_extends_type_clause_repeat1, + [215598] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10233), 1, + ACTIONS(10164), 1, anon_sym_DQUOTE, - STATE(6491), 1, - sym_comment, - STATE(6544), 1, + STATE(6114), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + STATE(6242), 1, + sym_comment, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [219667] = 6, + [215618] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10235), 1, - anon_sym_STAR, - ACTIONS(10237), 1, + ACTIONS(8603), 1, + anon_sym_COMMA, + ACTIONS(10170), 1, anon_sym_LBRACE, - STATE(6492), 1, + ACTIONS(10172), 1, + anon_sym_LBRACE_PIPE, + STATE(6243), 1, sym_comment, - STATE(8509), 2, - sym_namespace_import, - sym_named_imports, - [219687] = 6, + STATE(6310), 1, + aux_sym_extends_type_clause_repeat1, + [215640] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10233), 1, + ACTIONS(10174), 1, anon_sym_SQUOTE, - STATE(6493), 1, - sym_comment, - STATE(6546), 1, + STATE(6240), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6244), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [219707] = 6, + [215660] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10239), 1, + ACTIONS(10174), 1, anon_sym_DQUOTE, - STATE(6313), 1, + STATE(6242), 1, aux_sym_string_repeat1, - STATE(6494), 1, + STATE(6245), 1, sym_comment, - ACTIONS(9897), 2, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [219727] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215680] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10239), 1, - anon_sym_SQUOTE, - STATE(6495), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(4543), 1, + anon_sym_LPAREN, + ACTIONS(7754), 1, + anon_sym_LT, + STATE(4565), 1, + sym_arguments, + STATE(4668), 1, + sym_type_arguments, + STATE(6246), 1, sym_comment, - STATE(6498), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [219747] = 5, + [215702] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10241), 1, - sym_escape_sequence, - STATE(6496), 1, + ACTIONS(9902), 1, + anon_sym_with, + ACTIONS(10176), 1, + anon_sym_SEMI, + ACTIONS(10178), 1, + sym__automatic_semicolon, + STATE(6247), 1, sym_comment, - ACTIONS(10243), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [219765] = 7, + STATE(7277), 1, + sym_import_attribute, + [215724] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(10246), 1, - anon_sym_RBRACK, - STATE(6497), 1, + ACTIONS(10180), 1, + anon_sym_RPAREN, + STATE(6248), 1, sym_comment, - [219787] = 6, + [215746] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9895), 1, - anon_sym_SQUOTE, - STATE(6498), 1, + ACTIONS(9821), 1, + sym_identifier, + STATE(6249), 1, sym_comment, - STATE(6546), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [219807] = 6, + STATE(7720), 1, + sym_ui_signal_parameter, + STATE(7959), 1, + sym_nested_identifier, + STATE(8100), 1, + sym_nested_type_identifier, + [215768] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6499), 1, - sym_comment, - STATE(6529), 1, + STATE(6144), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(10248), 2, + STATE(6250), 1, + sym_comment, + ACTIONS(10182), 2, sym__automatic_semicolon, anon_sym_SEMI, - [219827] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10250), 1, - anon_sym_DQUOTE, - STATE(6500), 1, - sym_comment, - STATE(6513), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [219847] = 7, + [215788] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - ACTIONS(10252), 1, + ACTIONS(10184), 1, anon_sym_SEMI, - ACTIONS(10254), 1, + ACTIONS(10186), 1, sym__automatic_semicolon, - STATE(6501), 1, + STATE(6251), 1, sym_comment, - STATE(7671), 1, + STATE(7257), 1, sym_import_attribute, - [219869] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6502), 1, - sym_comment, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(10256), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [219889] = 7, + [215810] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - ACTIONS(10258), 1, - anon_sym_SEMI, - ACTIONS(10260), 1, - sym__automatic_semicolon, - STATE(6503), 1, + STATE(6252), 1, sym_comment, - STATE(7938), 1, + STATE(7254), 1, sym_import_attribute, - [219911] = 6, + ACTIONS(10188), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215830] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - STATE(6504), 1, + STATE(6253), 1, sym_comment, - STATE(7935), 1, + STATE(7253), 1, sym_import_attribute, - ACTIONS(10262), 2, + ACTIONS(10190), 2, sym__automatic_semicolon, anon_sym_SEMI, - [219931] = 7, + [215850] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10264), 1, - anon_sym_RBRACK, - STATE(6505), 1, + ACTIONS(8603), 1, + anon_sym_COMMA, + ACTIONS(10170), 1, + anon_sym_LBRACE, + ACTIONS(10172), 1, + anon_sym_LBRACE_PIPE, + STATE(6254), 1, sym_comment, - [219953] = 6, + STATE(6310), 1, + aux_sym_extends_type_clause_repeat1, + [215872] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6506), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6255), 1, sym_comment, - STATE(7933), 1, - sym_import_attribute, - ACTIONS(10266), 2, + STATE(7245), 1, + sym__from_clause, + ACTIONS(6629), 2, sym__automatic_semicolon, anon_sym_SEMI, - [219973] = 7, + [215892] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10268), 1, - anon_sym_RBRACK, - STATE(6507), 1, + ACTIONS(10121), 1, + sym_identifier, + ACTIONS(10123), 1, + anon_sym_const, + ACTIONS(10192), 1, + anon_sym_GT, + STATE(6256), 1, sym_comment, - [219995] = 6, + STATE(7816), 1, + sym_type_parameter, + [215914] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6508), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6250), 1, + aux_sym_variable_declaration_repeat1, + STATE(6257), 1, sym_comment, - STATE(7913), 1, - sym__from_clause, - ACTIONS(6645), 2, + ACTIONS(10194), 2, sym__automatic_semicolon, anon_sym_SEMI, - [220015] = 6, + [215934] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - STATE(6509), 1, + STATE(6258), 1, sym_comment, - STATE(7362), 1, + STATE(7225), 1, sym_import_attribute, - ACTIONS(10270), 2, + ACTIONS(10196), 2, sym__automatic_semicolon, anon_sym_SEMI, - [220035] = 6, + [215954] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - STATE(6510), 1, + STATE(6259), 1, sym_comment, - STATE(7610), 1, + STATE(7224), 1, sym_import_attribute, - ACTIONS(10272), 2, + ACTIONS(10198), 2, sym__automatic_semicolon, anon_sym_SEMI, - [220055] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215974] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10250), 1, - anon_sym_SQUOTE, - STATE(6511), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6260), 1, sym_comment, - STATE(6514), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [220075] = 5, + STATE(7220), 1, + sym__from_clause, + ACTIONS(10200), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [215994] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10274), 1, - anon_sym_COMMA, - ACTIONS(6003), 2, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6261), 1, + sym_comment, + STATE(7562), 1, + sym__from_clause, + ACTIONS(6390), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(6512), 2, - sym_comment, - aux_sym_sequence_expression_repeat1, - [220093] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [216014] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10277), 1, - anon_sym_DQUOTE, - STATE(6513), 1, - sym_comment, - STATE(6544), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [220113] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(8701), 1, + anon_sym_DOT, + ACTIONS(10202), 1, + anon_sym_COMMA, + ACTIONS(10204), 1, + anon_sym_GT, + STATE(6262), 1, + sym_comment, + STATE(7112), 1, + aux_sym_type_arguments_repeat1, + [216036] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10277), 1, - anon_sym_SQUOTE, - STATE(6514), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6263), 1, sym_comment, - STATE(6546), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [220133] = 7, + ACTIONS(10206), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [216052] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(10279), 1, - anon_sym_COLON, - STATE(6515), 1, + ACTIONS(10208), 1, + anon_sym_RBRACK, + STATE(6264), 1, sym_comment, - [220155] = 6, + [216074] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(6516), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + STATE(6265), 1, sym_comment, - STATE(7731), 1, - sym_statement_block, - ACTIONS(2303), 2, - anon_sym_else, - anon_sym_while, - [220175] = 6, + ACTIONS(10210), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216094] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6517), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10212), 1, + anon_sym_RBRACK, + STATE(6266), 1, sym_comment, - STATE(7686), 1, - sym__from_clause, - ACTIONS(6663), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [220195] = 7, + [216116] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(10281), 1, - anon_sym_RPAREN, - STATE(6518), 1, + ACTIONS(10214), 1, + anon_sym_COLON, + STATE(6267), 1, sym_comment, - [220217] = 7, + [216138] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8671), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - ACTIONS(10225), 1, - anon_sym_LBRACE, - ACTIONS(10227), 1, - anon_sym_LBRACE_PIPE, - STATE(6454), 1, - aux_sym_extends_type_clause_repeat1, - STATE(6519), 1, + STATE(6265), 1, + aux_sym_variable_declaration_repeat1, + STATE(6268), 1, sym_comment, - [220239] = 6, + ACTIONS(10216), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216158] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10283), 1, - anon_sym_DQUOTE, - STATE(6520), 1, + ACTIONS(10218), 1, + anon_sym_SQUOTE, + STATE(6115), 1, + aux_sym_string_repeat2, + STATE(6269), 1, sym_comment, - STATE(6523), 1, - aux_sym_string_repeat1, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [220259] = 7, + [216178] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(10285), 1, - anon_sym_LT, - STATE(2823), 1, - sym_arguments, - STATE(2824), 1, - sym_type_arguments, - STATE(6521), 1, + ACTIONS(10218), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + aux_sym_string_repeat1, + STATE(6270), 1, sym_comment, - [220281] = 6, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [216198] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10283), 1, + ACTIONS(10220), 1, anon_sym_SQUOTE, - STATE(6522), 1, - sym_comment, - STATE(6525), 1, + STATE(6269), 1, aux_sym_string_repeat2, - ACTIONS(9901), 2, + STATE(6271), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [220301] = 6, + [216218] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10287), 1, + ACTIONS(10220), 1, anon_sym_DQUOTE, - STATE(6523), 1, - sym_comment, - STATE(6544), 1, + STATE(6270), 1, aux_sym_string_repeat1, - ACTIONS(9897), 2, + STATE(6272), 1, + sym_comment, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [220321] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10289), 1, - anon_sym_COLON, - STATE(6524), 1, - sym_comment, - [220343] = 6, + [216238] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10287), 1, - anon_sym_SQUOTE, - STATE(6525), 1, + ACTIONS(9964), 1, + sym__glimmer_template_content, + ACTIONS(10032), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2869), 1, + sym_glimmer_closing_tag, + STATE(6273), 1, sym_comment, - STATE(6546), 1, - aux_sym_string_repeat2, - ACTIONS(9901), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [220363] = 7, + STATE(7016), 1, + aux_sym_glimmer_template_repeat1, + [216260] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - ACTIONS(10291), 1, + ACTIONS(10222), 1, anon_sym_SEMI, - ACTIONS(10293), 1, + ACTIONS(10224), 1, sym__automatic_semicolon, - STATE(6526), 1, + STATE(6274), 1, sym_comment, - STATE(7804), 1, + STATE(7204), 1, sym_import_attribute, - [220385] = 5, + [216282] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10295), 1, - anon_sym_COMMA, - ACTIONS(10298), 2, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6275), 1, + sym_comment, + STATE(7632), 1, + sym__from_clause, + ACTIONS(6679), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(6527), 2, - sym_comment, - aux_sym_ui_pragma_repeat1, - [220403] = 7, + [216302] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10300), 1, - anon_sym_EQ, - ACTIONS(10302), 1, - anon_sym_COMMA, - ACTIONS(10304), 1, - anon_sym_RBRACE, - STATE(6528), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6276), 1, sym_comment, - STATE(6623), 1, - aux_sym__qml_enum_body_repeat1, - [220425] = 5, + STATE(7350), 1, + sym_import_attribute, + ACTIONS(10226), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216322] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10306), 1, - anon_sym_COMMA, - ACTIONS(10309), 2, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6277), 1, + sym_comment, + STATE(7348), 1, + sym_import_attribute, + ACTIONS(10228), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(6529), 2, - sym_comment, - aux_sym_variable_declaration_repeat1, - [220443] = 7, + [216342] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(10311), 1, - anon_sym_class, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6530), 1, - sym_comment, - STATE(6589), 1, - sym_decorator, - [220465] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10313), 1, - sym__glimmer_template_content, - ACTIONS(10315), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3017), 1, - sym_glimmer_closing_tag, - STATE(6531), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6278), 1, sym_comment, - STATE(6574), 1, - aux_sym_glimmer_template_repeat1, - [220487] = 7, + STATE(7694), 1, + sym_import_attribute, + ACTIONS(10230), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216362] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(6532), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6279), 1, sym_comment, - STATE(7937), 1, - sym_type_parameters, - STATE(8392), 1, - sym_formal_parameters, - [220509] = 6, + STATE(7702), 1, + sym_import_attribute, + ACTIONS(10232), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216382] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5208), 1, - anon_sym_COLON, - ACTIONS(7883), 1, - anon_sym_EQ, - STATE(6533), 1, + ACTIONS(9902), 1, + anon_sym_with, + ACTIONS(10234), 1, + anon_sym_SEMI, + ACTIONS(10236), 1, + sym__automatic_semicolon, + STATE(6280), 1, sym_comment, - ACTIONS(10317), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [220529] = 7, + STATE(7707), 1, + sym_import_attribute, + [216404] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(6534), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + STATE(6281), 1, sym_comment, - STATE(7979), 1, - sym_type_parameters, - STATE(8371), 1, - sym_formal_parameters, - [220551] = 6, + ACTIONS(10238), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216424] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6502), 1, + STATE(6144), 1, aux_sym_variable_declaration_repeat1, - STATE(6535), 1, + STATE(6282), 1, sym_comment, - ACTIONS(10319), 2, + ACTIONS(10240), 2, sym__automatic_semicolon, anon_sym_SEMI, - [220571] = 6, + [216444] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - STATE(6536), 1, + ACTIONS(10242), 1, + anon_sym_SEMI, + ACTIONS(10244), 1, + sym__automatic_semicolon, + STATE(6283), 1, sym_comment, - STATE(7803), 1, + STATE(7242), 1, sym_import_attribute, - ACTIONS(10321), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [220591] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [216466] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10313), 1, - sym__glimmer_template_content, - ACTIONS(10323), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3589), 1, - sym_glimmer_closing_tag, - STATE(6537), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6284), 1, sym_comment, - STATE(6732), 1, - aux_sym_glimmer_template_repeat1, - [220613] = 6, + STATE(7244), 1, + sym_import_attribute, + ACTIONS(10246), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216486] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - STATE(6538), 1, + STATE(6285), 1, sym_comment, - STATE(7802), 1, + STATE(7248), 1, sym_import_attribute, - ACTIONS(10325), 2, + ACTIONS(10248), 2, sym__automatic_semicolon, anon_sym_SEMI, - [220633] = 6, + [216506] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, + ACTIONS(9988), 1, anon_sym_from, - STATE(6539), 1, + STATE(6286), 1, sym_comment, - STATE(7792), 1, + STATE(7256), 1, sym__from_clause, - ACTIONS(10327), 2, + ACTIONS(6656), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216526] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9902), 1, + anon_sym_with, + ACTIONS(10250), 1, + anon_sym_SEMI, + ACTIONS(10252), 1, + sym__automatic_semicolon, + STATE(6287), 1, + sym_comment, + STATE(7308), 1, + sym_import_attribute, + [216548] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10254), 1, + anon_sym_STAR, + ACTIONS(10256), 1, + anon_sym_LBRACE, + STATE(6288), 1, + sym_comment, + STATE(8411), 2, + sym_namespace_import, + sym_named_imports, + [216568] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + STATE(6289), 1, + sym_comment, + ACTIONS(10258), 2, sym__automatic_semicolon, anon_sym_SEMI, - [220653] = 6, + [216588] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6085), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6512), 1, - aux_sym_sequence_expression_repeat1, - STATE(6540), 1, + STATE(6282), 1, + aux_sym_variable_declaration_repeat1, + STATE(6290), 1, sym_comment, - ACTIONS(9329), 2, + ACTIONS(10260), 2, sym__automatic_semicolon, anon_sym_SEMI, - [220673] = 6, + [216608] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - STATE(6541), 1, + STATE(6291), 1, sym_comment, - STATE(7807), 1, + STATE(7331), 1, sym_import_attribute, - ACTIONS(10329), 2, + ACTIONS(10262), 2, sym__automatic_semicolon, anon_sym_SEMI, - [220693] = 6, + [216628] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - STATE(6542), 1, + STATE(6292), 1, sym_comment, - STATE(7820), 1, + STATE(7333), 1, sym_import_attribute, - ACTIONS(10331), 2, + ACTIONS(10264), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216648] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6293), 1, + sym_comment, + STATE(7336), 1, + sym__from_clause, + ACTIONS(10266), 2, sym__automatic_semicolon, anon_sym_SEMI, - [220713] = 7, + [216668] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10124), 1, + ACTIONS(10268), 1, sym_identifier, - ACTIONS(10126), 1, - anon_sym_const, - ACTIONS(10333), 1, + STATE(5334), 1, + sym_nested_type_identifier, + STATE(6294), 1, + sym_comment, + STATE(6369), 1, + sym_generic_type, + STATE(8173), 1, + sym_nested_identifier, + [216690] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8701), 1, + anon_sym_DOT, + ACTIONS(10270), 1, + anon_sym_COMMA, + ACTIONS(10272), 1, anon_sym_GT, - STATE(6543), 1, + STATE(6295), 1, sym_comment, - STATE(8132), 1, - sym_type_parameter, - [220735] = 5, - ACTIONS(3), 1, + STATE(7039), 1, + aux_sym_type_arguments_repeat1, + [216712] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(8817), 1, + anon_sym_EQ, + STATE(6296), 1, + sym_comment, + STATE(7161), 1, + sym__initializer, + ACTIONS(10274), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [216732] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10335), 1, - anon_sym_DQUOTE, - ACTIONS(10337), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - STATE(6544), 2, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + STATE(6297), 1, sym_comment, - aux_sym_string_repeat1, - [220753] = 6, + ACTIONS(10276), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216752] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - ACTIONS(6131), 1, - anon_sym_BQUOTE, - STATE(6545), 1, + ACTIONS(8817), 1, + anon_sym_EQ, + STATE(6298), 1, sym_comment, - STATE(3704), 2, - sym_template_string, - sym_arguments, - [220773] = 5, + STATE(7157), 1, + sym__initializer, + ACTIONS(10278), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [216772] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6297), 1, + aux_sym_variable_declaration_repeat1, + STATE(6299), 1, + sym_comment, + ACTIONS(10280), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [216792] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10340), 1, + ACTIONS(10282), 1, anon_sym_SQUOTE, - ACTIONS(10342), 2, + STATE(6115), 1, + aux_sym_string_repeat2, + STATE(6300), 1, + sym_comment, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - STATE(6546), 2, + [216812] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10282), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + aux_sym_string_repeat1, + STATE(6301), 1, sym_comment, - aux_sym_string_repeat2, - [220791] = 4, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [216832] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(10284), 1, + anon_sym_SQUOTE, + STATE(6300), 1, + aux_sym_string_repeat2, + STATE(6302), 1, + sym_comment, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [216852] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(6547), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10284), 1, + anon_sym_DQUOTE, + STATE(6301), 1, + aux_sym_string_repeat1, + STATE(6303), 1, sym_comment, - ACTIONS(8679), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [220807] = 7, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [216872] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(10345), 1, - anon_sym_RPAREN, - STATE(6548), 1, + ACTIONS(10286), 1, + anon_sym_RBRACK, + STATE(6304), 1, sym_comment, - [220829] = 7, + [216894] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(6549), 1, + ACTIONS(10121), 1, + sym_identifier, + ACTIONS(10123), 1, + anon_sym_const, + ACTIONS(10288), 1, + anon_sym_GT, + STATE(6305), 1, sym_comment, - STATE(7995), 1, - sym_type_parameters, - STATE(8288), 1, - sym_formal_parameters, - [220851] = 4, + STATE(7816), 1, + sym_type_parameter, + [216916] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6550), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10290), 1, + anon_sym_RBRACK, + STATE(6306), 1, sym_comment, - ACTIONS(10241), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [220867] = 7, + [216938] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8629), 1, - anon_sym_DOT, - ACTIONS(10347), 1, - anon_sym_COMMA, - ACTIONS(10349), 1, - anon_sym_GT, - STATE(6551), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10292), 1, + anon_sym_RBRACK, + STATE(6307), 1, sym_comment, - STATE(6735), 1, - aux_sym_type_arguments_repeat1, - [220889] = 7, + [216960] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(6552), 1, + ACTIONS(10071), 1, + anon_sym_COMMA, + STATE(6308), 1, sym_comment, - STATE(7963), 1, - sym_type_parameters, - STATE(8572), 1, - sym_formal_parameters, - [220911] = 5, + STATE(6324), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(10294), 2, + anon_sym_LBRACE, + anon_sym_implements, + [216980] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9453), 1, - anon_sym_RBRACE, - STATE(6553), 1, - sym_comment, - ACTIONS(5703), 3, + ACTIONS(7786), 1, anon_sym_AMP, + ACTIONS(7792), 1, anon_sym_PIPE, + ACTIONS(7794), 1, anon_sym_extends, - [220929] = 7, + ACTIONS(10296), 1, + anon_sym_COLON, + STATE(6309), 1, + sym_comment, + [217002] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4553), 1, - anon_sym_LPAREN, - ACTIONS(7747), 1, - anon_sym_LT, - STATE(4797), 1, - sym_arguments, - STATE(4915), 1, - sym_type_arguments, - STATE(6554), 1, + ACTIONS(10298), 1, + anon_sym_LBRACE, + ACTIONS(10300), 1, + anon_sym_COMMA, + ACTIONS(10303), 1, + anon_sym_LBRACE_PIPE, + STATE(6310), 2, sym_comment, - [220951] = 7, + aux_sym_extends_type_clause_repeat1, + [217022] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - ACTIONS(10351), 1, - anon_sym_RBRACK, - STATE(6555), 1, + ACTIONS(9902), 1, + anon_sym_with, + ACTIONS(10305), 1, + anon_sym_SEMI, + ACTIONS(10307), 1, + sym__automatic_semicolon, + STATE(6311), 1, sym_comment, - [220973] = 4, + STATE(7912), 1, + sym_import_attribute, + [217044] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6556), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(5016), 1, + sym_formal_parameters, + STATE(6312), 1, sym_comment, - ACTIONS(2412), 4, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_DOT, - [220989] = 7, + STATE(7573), 1, + sym_type_parameters, + [217066] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10353), 1, - anon_sym_EQ, - ACTIONS(10355), 1, - anon_sym_COMMA, - ACTIONS(10357), 1, - anon_sym_RBRACK, - STATE(6557), 1, + ACTIONS(9902), 1, + anon_sym_with, + ACTIONS(10309), 1, + anon_sym_SEMI, + ACTIONS(10311), 1, + sym__automatic_semicolon, + STATE(6313), 1, sym_comment, - STATE(7036), 1, - aux_sym_array_pattern_repeat1, - [221011] = 7, + STATE(7703), 1, + sym_import_attribute, + [217088] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8629), 1, - anon_sym_DOT, - ACTIONS(10359), 1, - anon_sym_COMMA, - ACTIONS(10361), 1, - anon_sym_GT, - STATE(6558), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10313), 1, + anon_sym_RBRACK, + STATE(6314), 1, sym_comment, - STATE(6953), 1, - aux_sym_type_arguments_repeat1, - [221033] = 6, + [217110] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6529), 1, + STATE(6144), 1, aux_sym_variable_declaration_repeat1, - STATE(6559), 1, + STATE(6315), 1, sym_comment, - ACTIONS(10363), 2, + ACTIONS(10315), 2, sym__automatic_semicolon, anon_sym_SEMI, - [221053] = 4, + [217130] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6560), 1, + ACTIONS(9902), 1, + anon_sym_with, + ACTIONS(10317), 1, + anon_sym_SEMI, + ACTIONS(10319), 1, + sym__automatic_semicolon, + STATE(6316), 1, sym_comment, - ACTIONS(2372), 4, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_DOT, - [221069] = 7, + STATE(7762), 1, + sym_import_attribute, + [217152] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(6561), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6317), 1, sym_comment, - STATE(8053), 1, - sym_type_parameters, - STATE(8323), 1, - sym_formal_parameters, - [221091] = 6, + STATE(7763), 1, + sym_import_attribute, + ACTIONS(10321), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [217172] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6499), 1, + STATE(6144), 1, aux_sym_variable_declaration_repeat1, - STATE(6562), 1, + STATE(6318), 1, sym_comment, - ACTIONS(10365), 2, + ACTIONS(10323), 2, sym__automatic_semicolon, anon_sym_SEMI, - [221111] = 6, + [217192] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, + ACTIONS(9902), 1, anon_sym_with, - STATE(6563), 1, + STATE(6319), 1, sym_comment, - STATE(7775), 1, + STATE(7766), 1, sym_import_attribute, - ACTIONS(10367), 2, + ACTIONS(10325), 2, sym__automatic_semicolon, anon_sym_SEMI, - [221131] = 6, + [217212] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9923), 1, - anon_sym_with, - STATE(6564), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6320), 1, sym_comment, - STATE(7776), 1, - sym_import_attribute, - ACTIONS(10369), 2, + STATE(7783), 1, + sym__from_clause, + ACTIONS(6283), 2, sym__automatic_semicolon, anon_sym_SEMI, - [221151] = 6, + [217232] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6565), 1, + ACTIONS(8012), 1, + anon_sym_EQ, + STATE(6321), 1, sym_comment, - STATE(7778), 1, - sym__from_clause, - ACTIONS(10371), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [221171] = 4, + STATE(7163), 1, + sym_default_type, + ACTIONS(10327), 2, + anon_sym_COMMA, + anon_sym_GT, + [217252] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6566), 1, + ACTIONS(10000), 1, + sym_escape_sequence, + STATE(6322), 1, sym_comment, - ACTIONS(10373), 4, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [221187] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10329), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [217270] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2524), 1, - anon_sym_DQUOTE, - ACTIONS(2526), 1, - anon_sym_SQUOTE, - ACTIONS(10375), 1, - sym_identifier, - STATE(6567), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10332), 1, + anon_sym_RPAREN, + STATE(6323), 1, sym_comment, - STATE(7182), 1, - sym_string, - [221209] = 7, + [217292] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(6568), 1, + ACTIONS(10336), 1, + anon_sym_COMMA, + ACTIONS(10334), 2, + anon_sym_LBRACE, + anon_sym_implements, + STATE(6324), 2, sym_comment, - STATE(8109), 1, - sym_type_parameters, - STATE(8417), 1, - sym_formal_parameters, - [221231] = 7, + aux_sym_extends_clause_repeat1, + [217310] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7804), 1, anon_sym_LPAREN, - ACTIONS(7865), 1, + ACTIONS(7810), 1, anon_sym_LT, - STATE(6569), 1, - sym_comment, - STATE(8122), 1, - sym_type_parameters, - STATE(8290), 1, - sym_formal_parameters, - [221253] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9383), 1, - sym_identifier, - STATE(6570), 1, + STATE(4678), 1, + sym_arguments, + STATE(4846), 1, + sym_type_arguments, + STATE(6325), 1, sym_comment, - STATE(8098), 1, - sym_ui_signal_parameter, - STATE(8216), 1, - sym_nested_identifier, - STATE(8474), 1, - sym_nested_type_identifier, - [221275] = 7, + [217332] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(9635), 1, + anon_sym_RBRACE, + STATE(6326), 1, + sym_comment, + ACTIONS(5750), 3, anon_sym_AMP, - ACTIONS(7771), 1, anon_sym_PIPE, - ACTIONS(7773), 1, anon_sym_extends, - ACTIONS(10377), 1, - anon_sym_QMARK, - STATE(6571), 1, - sym_comment, - [221297] = 7, + [217350] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10199), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - ACTIONS(10379), 1, - anon_sym_SEMI, - ACTIONS(10381), 1, + STATE(6315), 1, + aux_sym_variable_declaration_repeat1, + STATE(6327), 1, + sym_comment, + ACTIONS(10339), 2, sym__automatic_semicolon, - STATE(6527), 1, - aux_sym_ui_pragma_repeat1, - STATE(6572), 1, + anon_sym_SEMI, + [217370] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6328), 1, sym_comment, - [221319] = 6, + STATE(7866), 1, + sym_import_attribute, + ACTIONS(10341), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [217390] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_BQUOTE, - STATE(6573), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6329), 1, sym_comment, - STATE(3148), 2, - sym_template_string, - sym_arguments, - [221339] = 7, - ACTIONS(3), 1, + STATE(7867), 1, + sym_import_attribute, + ACTIONS(10343), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [217410] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6330), 1, + sym_comment, + STATE(7876), 1, + sym__from_clause, + ACTIONS(10345), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [217430] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10313), 1, - sym__glimmer_template_content, - ACTIONS(10315), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3109), 1, - sym_glimmer_closing_tag, - STATE(6574), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10347), 1, + anon_sym_EQ, + STATE(6331), 1, sym_comment, - STATE(6732), 1, - aux_sym_glimmer_template_repeat1, - [221361] = 5, + STATE(7914), 1, + sym__initializer, + ACTIONS(8113), 2, + anon_sym_in, + anon_sym_of, + [217450] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10385), 1, + ACTIONS(8701), 1, + anon_sym_DOT, + ACTIONS(10349), 1, anon_sym_COMMA, - ACTIONS(10383), 2, - anon_sym_LBRACE, - anon_sym_implements, - STATE(6575), 2, + ACTIONS(10351), 1, + anon_sym_GT, + STATE(6332), 1, sym_comment, - aux_sym_extends_clause_repeat1, - [221379] = 7, + STATE(6764), 1, + aux_sym_type_arguments_repeat1, + [217472] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(10388), 1, - anon_sym_RBRACK, - STATE(6576), 1, + ACTIONS(10353), 1, + anon_sym_QMARK, + STATE(6333), 1, sym_comment, - [221401] = 6, + [217494] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6529), 1, + STATE(6144), 1, aux_sym_variable_declaration_repeat1, - STATE(6577), 1, + STATE(6334), 1, sym_comment, - ACTIONS(10390), 2, + ACTIONS(10355), 2, sym__automatic_semicolon, anon_sym_SEMI, - [221421] = 7, + [217514] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8629), 1, - anon_sym_DOT, - ACTIONS(10392), 1, - anon_sym_COMMA, - ACTIONS(10394), 1, + ACTIONS(10121), 1, + sym_identifier, + ACTIONS(10123), 1, + anon_sym_const, + ACTIONS(10357), 1, anon_sym_GT, - STATE(6578), 1, + STATE(6335), 1, sym_comment, - STATE(7126), 1, - aux_sym_type_arguments_repeat1, - [221443] = 7, + STATE(7816), 1, + sym_type_parameter, + [217536] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(6579), 1, - sym_comment, - STATE(8136), 1, - sym_type_parameters, - STATE(8231), 1, - sym_formal_parameters, - [221465] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10396), 1, - anon_sym_DQUOTE, - STATE(6544), 1, - aux_sym_string_repeat1, - STATE(6580), 1, + STATE(6336), 1, sym_comment, - ACTIONS(9897), 2, - sym_unescaped_double_string_fragment, + ACTIONS(10359), 4, + sym__template_chars, sym_escape_sequence, - [221485] = 6, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [217552] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, + ACTIONS(9916), 1, anon_sym_COMMA, - STATE(6577), 1, + STATE(6334), 1, aux_sym_variable_declaration_repeat1, - STATE(6581), 1, + STATE(6337), 1, sym_comment, - ACTIONS(10398), 2, + ACTIONS(10361), 2, sym__automatic_semicolon, anon_sym_SEMI, - [221505] = 7, + [217572] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10124), 1, - sym_identifier, - ACTIONS(10126), 1, - anon_sym_const, - ACTIONS(10400), 1, - anon_sym_GT, - STATE(6582), 1, + ACTIONS(10363), 1, + anon_sym_SQUOTE, + STATE(6115), 1, + aux_sym_string_repeat2, + STATE(6338), 1, sym_comment, - STATE(8132), 1, - sym_type_parameter, - [221527] = 6, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [217592] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10363), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + aux_sym_string_repeat1, + STATE(6339), 1, + sym_comment, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [217612] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10396), 1, + ACTIONS(10365), 1, anon_sym_SQUOTE, - STATE(6546), 1, + STATE(6338), 1, aux_sym_string_repeat2, - STATE(6583), 1, + STATE(6340), 1, sym_comment, - ACTIONS(9901), 2, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [221547] = 6, + [217632] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6584), 1, + ACTIONS(10365), 1, + anon_sym_DQUOTE, + STATE(6339), 1, + aux_sym_string_repeat1, + STATE(6341), 1, sym_comment, - STATE(7901), 1, - sym__from_clause, - ACTIONS(6203), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [221567] = 4, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [217652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6585), 1, + STATE(6342), 1, sym_comment, - ACTIONS(10402), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [221583] = 6, + ACTIONS(3466), 4, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + [217668] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9917), 1, - anon_sym_COMMA, - STATE(6529), 1, - aux_sym_variable_declaration_repeat1, - STATE(6586), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10367), 1, + anon_sym_COLON, + STATE(6343), 1, sym_comment, - ACTIONS(10404), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [221603] = 7, + [217690] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10353), 1, - anon_sym_EQ, - ACTIONS(10355), 1, - anon_sym_COMMA, - ACTIONS(10406), 1, - anon_sym_RBRACK, - STATE(6587), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10369), 1, + anon_sym_COLON, + STATE(6344), 1, sym_comment, - STATE(7151), 1, - aux_sym_array_pattern_repeat1, - [221625] = 7, + [217712] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(2989), 1, - anon_sym_AT, - ACTIONS(10408), 1, - anon_sym_class, - STATE(5701), 1, - aux_sym_export_statement_repeat1, - STATE(6588), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10371), 1, + anon_sym_RBRACK, + STATE(6345), 1, sym_comment, - STATE(6589), 1, - sym_decorator, - [221647] = 4, + [217734] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6589), 1, + ACTIONS(9902), 1, + anon_sym_with, + ACTIONS(10373), 1, + anon_sym_SEMI, + ACTIONS(10375), 1, + sym__automatic_semicolon, + STATE(6346), 1, sym_comment, - ACTIONS(10410), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [221663] = 7, + STATE(7553), 1, + sym_import_attribute, + [217756] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10313), 1, - sym__glimmer_template_content, - ACTIONS(10323), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3761), 1, - sym_glimmer_closing_tag, - STATE(6537), 1, - aux_sym_glimmer_template_repeat1, - STATE(6590), 1, + ACTIONS(10377), 1, + anon_sym_DQUOTE, + STATE(6347), 1, sym_comment, - [221685] = 7, + STATE(6350), 1, + aux_sym_string_repeat1, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [217776] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - ACTIONS(7865), 1, - anon_sym_LT, - STATE(6591), 1, + ACTIONS(10377), 1, + anon_sym_SQUOTE, + STATE(6348), 1, sym_comment, - STATE(8131), 1, - sym_type_parameters, - STATE(8522), 1, - sym_formal_parameters, - [221707] = 7, + STATE(6351), 1, + aux_sym_string_repeat2, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [217796] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7769), 1, + ACTIONS(7786), 1, anon_sym_AMP, - ACTIONS(7771), 1, + ACTIONS(7792), 1, anon_sym_PIPE, - ACTIONS(7773), 1, + ACTIONS(7794), 1, anon_sym_extends, - ACTIONS(10412), 1, + ACTIONS(10379), 1, anon_sym_RBRACK, - STATE(6592), 1, + STATE(6349), 1, sym_comment, - [221729] = 6, + [217818] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10414), 1, + ACTIONS(10381), 1, anon_sym_DQUOTE, - STATE(6580), 1, + STATE(6114), 1, aux_sym_string_repeat1, - STATE(6593), 1, + STATE(6350), 1, sym_comment, - ACTIONS(9897), 2, + ACTIONS(9908), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [221749] = 6, + [217838] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10414), 1, + ACTIONS(10381), 1, anon_sym_SQUOTE, - STATE(6583), 1, + STATE(6115), 1, aux_sym_string_repeat2, - STATE(6594), 1, + STATE(6351), 1, sym_comment, - ACTIONS(9901), 2, + ACTIONS(9920), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [221769] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10416), 1, - sym_identifier, - ACTIONS(10418), 1, - anon_sym_require, - STATE(6595), 1, - sym_comment, - STATE(7251), 1, - sym_nested_identifier, - [221788] = 4, + [217858] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6596), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6352), 1, sym_comment, - ACTIONS(10420), 3, + STATE(6367), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(10383), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [221803] = 5, + [217878] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9393), 1, - anon_sym_LBRACE, - ACTIONS(10422), 1, - anon_sym_COMMA, - STATE(6597), 2, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10385), 1, + anon_sym_COLON, + STATE(6353), 1, sym_comment, - aux_sym_implements_clause_repeat1, - [221820] = 4, + [217900] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6598), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + STATE(6354), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10387), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [221835] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6599), 1, - sym_comment, - ACTIONS(10427), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [221850] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10429), 1, - anon_sym_DQUOTE, - ACTIONS(10431), 1, - anon_sym_SQUOTE, - STATE(6600), 1, - sym_comment, - STATE(6796), 1, - sym_string, - [221869] = 6, + [217920] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4773), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_DOT, - STATE(6601), 1, + ACTIONS(9902), 1, + anon_sym_with, + ACTIONS(10389), 1, + anon_sym_SEMI, + ACTIONS(10391), 1, + sym__automatic_semicolon, + STATE(6355), 1, sym_comment, - STATE(6642), 1, - sym_ui_object_initializer, - [221888] = 4, + STATE(7505), 1, + sym_import_attribute, + [217942] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6602), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6356), 1, sym_comment, - ACTIONS(10433), 3, + STATE(7504), 1, + sym_import_attribute, + ACTIONS(10393), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [221903] = 4, + [217962] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6603), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6357), 1, sym_comment, - ACTIONS(10425), 3, + STATE(7503), 1, + sym_import_attribute, + ACTIONS(10395), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [221918] = 4, + [217982] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6604), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6358), 1, sym_comment, - ACTIONS(10435), 3, + STATE(7485), 1, + sym__from_clause, + ACTIONS(6598), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [221933] = 4, + [218002] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6605), 1, - sym_comment, - ACTIONS(10437), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(9902), 1, + anon_sym_with, + ACTIONS(10397), 1, anon_sym_SEMI, - [221948] = 4, + ACTIONS(10399), 1, + sym__automatic_semicolon, + STATE(6359), 1, + sym_comment, + STATE(7725), 1, + sym_import_attribute, + [218024] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6606), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6318), 1, + aux_sym_variable_declaration_repeat1, + STATE(6360), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10401), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [221963] = 4, + [218044] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6607), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6354), 1, + aux_sym_variable_declaration_repeat1, + STATE(6361), 1, sym_comment, - ACTIONS(10439), 3, + ACTIONS(10403), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [221978] = 4, + [218064] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6608), 1, + STATE(6362), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(3456), 4, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [221993] = 6, + [218080] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4773), 1, - anon_sym_LBRACE, - ACTIONS(9885), 1, - anon_sym_DOT, - STATE(6609), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + ACTIONS(10405), 1, + anon_sym_LT, + STATE(2818), 1, + sym_type_arguments, + STATE(2819), 1, + sym_arguments, + STATE(6363), 1, sym_comment, - STATE(6664), 1, - sym_ui_object_initializer, - [222012] = 4, + [218102] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6610), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + ACTIONS(10407), 1, + anon_sym_RPAREN, + STATE(6364), 1, sym_comment, - ACTIONS(10443), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [222027] = 4, + [218124] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6611), 1, + ACTIONS(10409), 1, + anon_sym_SQUOTE, + STATE(6115), 1, + aux_sym_string_repeat2, + STATE(6365), 1, sym_comment, - ACTIONS(10445), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [222042] = 4, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218144] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6612), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6366), 1, sym_comment, - ACTIONS(10447), 3, + STATE(7370), 1, + sym__from_clause, + ACTIONS(10411), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [222057] = 4, + [218164] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6613), 1, + ACTIONS(9916), 1, + anon_sym_COMMA, + STATE(6144), 1, + aux_sym_variable_declaration_repeat1, + STATE(6367), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10413), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [222072] = 4, + [218184] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6614), 1, - sym_comment, - ACTIONS(10449), 3, - sym__automatic_semicolon, + ACTIONS(8701), 1, + anon_sym_DOT, + ACTIONS(10415), 1, anon_sym_COMMA, - anon_sym_SEMI, - [222087] = 6, + ACTIONS(10417), 1, + anon_sym_GT, + STATE(6368), 1, + sym_comment, + STATE(6478), 1, + aux_sym_type_arguments_repeat1, + [218206] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10302), 1, + ACTIONS(8603), 1, anon_sym_COMMA, - ACTIONS(10451), 1, - anon_sym_RBRACE, - STATE(6615), 1, + ACTIONS(8943), 1, + anon_sym_LBRACE, + ACTIONS(8945), 1, + anon_sym_LBRACE_PIPE, + STATE(6254), 1, + aux_sym_extends_type_clause_repeat1, + STATE(6369), 1, sym_comment, - STATE(6835), 1, - aux_sym__qml_enum_body_repeat1, - [222106] = 4, + [218228] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6616), 1, + ACTIONS(10409), 1, + anon_sym_DQUOTE, + STATE(6114), 1, + aux_sym_string_repeat1, + STATE(6370), 1, sym_comment, - ACTIONS(10447), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [222121] = 4, + ACTIONS(9908), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [218248] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6617), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6371), 1, sym_comment, - ACTIONS(10435), 3, + STATE(7399), 1, + sym_import_attribute, + ACTIONS(10419), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [222136] = 4, + [218268] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6618), 1, + ACTIONS(9902), 1, + anon_sym_with, + STATE(6372), 1, sym_comment, - ACTIONS(10453), 3, + STATE(7400), 1, + sym_import_attribute, + ACTIONS(10421), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [222151] = 4, + [218288] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6619), 1, + ACTIONS(9906), 1, + anon_sym_SQUOTE, + STATE(6365), 1, + aux_sym_string_repeat2, + STATE(6373), 1, sym_comment, - ACTIONS(10437), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [222166] = 4, + ACTIONS(9920), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [218308] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6620), 1, - sym_comment, - ACTIONS(10453), 3, - sym__automatic_semicolon, + ACTIONS(10423), 1, anon_sym_COMMA, - anon_sym_SEMI, - [222181] = 4, + ACTIONS(10425), 1, + anon_sym_RPAREN, + STATE(6374), 1, + sym_comment, + STATE(6939), 1, + aux_sym_formal_parameters_repeat1, + [218327] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6621), 1, - sym_comment, - ACTIONS(10441), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(10427), 1, + sym_identifier, + ACTIONS(10429), 1, anon_sym_SEMI, - [222196] = 4, + ACTIONS(10431), 1, + sym__automatic_semicolon, + STATE(6375), 1, + sym_comment, + [218346] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6622), 1, + STATE(6376), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222211] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10302), 1, - anon_sym_COMMA, - ACTIONS(10455), 1, - anon_sym_RBRACE, - STATE(6623), 1, - sym_comment, - STATE(6835), 1, - aux_sym__qml_enum_body_repeat1, - [222230] = 4, + [218361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6624), 1, + STATE(6377), 1, sym_comment, - ACTIONS(10420), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222245] = 4, + [218376] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6625), 1, + STATE(6378), 1, sym_comment, - ACTIONS(10457), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222260] = 4, + [218391] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6626), 1, + STATE(6379), 1, sym_comment, - ACTIONS(10459), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222275] = 4, + [218406] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6627), 1, + STATE(6380), 1, sym_comment, - ACTIONS(10461), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222290] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(10463), 1, - anon_sym_EQ, - STATE(6628), 1, - sym_comment, - STATE(8717), 1, - sym_type_parameters, - [222309] = 6, + [218421] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10465), 1, - anon_sym_DASH, - ACTIONS(10467), 1, - sym_number, - STATE(6629), 1, + STATE(6381), 1, sym_comment, - STATE(8055), 1, - sym__qml_enum_negative_number, - [222328] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10469), 1, + ACTIONS(10441), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10471), 1, - anon_sym_RPAREN, - STATE(6630), 1, - sym_comment, - STATE(6865), 1, - aux_sym_ui_signal_parameters_repeat1, - [222347] = 4, + anon_sym_SEMI, + [218436] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6631), 1, + STATE(6382), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222362] = 6, + [218451] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10473), 1, + ACTIONS(10445), 1, sym_identifier, - ACTIONS(10475), 1, + ACTIONS(10447), 1, anon_sym_SEMI, - ACTIONS(10477), 1, + ACTIONS(10449), 1, sym__automatic_semicolon, - STATE(6632), 1, + STATE(6383), 1, sym_comment, - [222381] = 6, + [218470] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10479), 1, + ACTIONS(10451), 1, sym_identifier, - ACTIONS(10481), 1, + ACTIONS(10453), 1, anon_sym_SEMI, - ACTIONS(10483), 1, + ACTIONS(10455), 1, sym__automatic_semicolon, - STATE(6633), 1, + STATE(6384), 1, sym_comment, - [222400] = 4, + [218489] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6634), 1, + ACTIONS(4758), 1, + anon_sym_LBRACE, + ACTIONS(8365), 1, + anon_sym_DOT, + STATE(6385), 1, sym_comment, - ACTIONS(10457), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [222415] = 4, + STATE(6404), 1, + sym_ui_object_initializer, + [218508] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6635), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(10457), 1, + anon_sym_RPAREN, + STATE(6386), 1, sym_comment, - ACTIONS(10485), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [222430] = 5, + STATE(8177), 1, + sym_type_annotation, + [218527] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10487), 1, - anon_sym_EQ, - STATE(6636), 1, + STATE(6387), 1, sym_comment, - ACTIONS(10489), 2, + ACTIONS(10459), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [222447] = 6, + anon_sym_SEMI, + [218542] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(10491), 1, - anon_sym_EQ, - STATE(6637), 1, - sym_comment, - STATE(8699), 1, - sym_type_parameters, - [222466] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10493), 1, - sym_identifier, - STATE(6638), 1, + ACTIONS(4754), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(6388), 1, sym_comment, - STATE(8117), 1, - sym_nested_type_identifier, - STATE(8457), 1, - sym_nested_identifier, - [222485] = 4, + STATE(7656), 1, + sym_ui_object_initializer, + [218561] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6639), 1, + STATE(6389), 1, sym_comment, - ACTIONS(10449), 3, + ACTIONS(10461), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222500] = 4, + [218576] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6640), 1, + STATE(6390), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222515] = 4, + [218591] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6641), 1, + STATE(6391), 1, sym_comment, - ACTIONS(10457), 3, + ACTIONS(10463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222530] = 4, + [218606] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6642), 1, + ACTIONS(4758), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(6392), 1, sym_comment, - ACTIONS(10495), 3, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACK, - [222545] = 4, + STATE(6454), 1, + sym_ui_object_initializer, + [218625] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6643), 1, + STATE(6393), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222560] = 4, + [218640] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6644), 1, + STATE(6394), 1, sym_comment, - ACTIONS(10439), 3, + ACTIONS(10467), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222575] = 4, + [218655] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6645), 1, + STATE(6395), 1, sym_comment, - ACTIONS(10453), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [222590] = 4, + ACTIONS(8773), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [218670] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6646), 1, + STATE(6396), 1, sym_comment, - ACTIONS(10439), 3, + ACTIONS(10441), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222605] = 5, + [218685] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10497), 1, - anon_sym_EQ, - STATE(6647), 1, + STATE(6397), 1, sym_comment, - ACTIONS(10489), 2, + ACTIONS(10469), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [222622] = 4, + anon_sym_SEMI, + [218700] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6648), 1, + STATE(6398), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222637] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(10499), 1, - anon_sym_EQ, - STATE(6649), 1, - sym_comment, - STATE(8679), 1, - sym_type_parameters, - [222656] = 4, + [218715] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6650), 1, + STATE(6399), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222671] = 6, + [218730] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(10501), 1, - anon_sym_RPAREN, - STATE(6651), 1, + STATE(6400), 1, sym_comment, - STATE(8240), 1, - sym_type_annotation, - [222690] = 4, + ACTIONS(10473), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [218745] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6652), 1, + STATE(6401), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222705] = 4, + [218760] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6653), 1, + STATE(6402), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222720] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6654), 1, - sym_comment, - ACTIONS(10503), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [222735] = 4, + [218775] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6655), 1, + STATE(6403), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10461), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222750] = 5, + [218790] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10505), 1, - anon_sym_EQ, - STATE(6656), 1, + STATE(6404), 1, sym_comment, - ACTIONS(10489), 2, + ACTIONS(10475), 3, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_from, - [222767] = 4, + anon_sym_RBRACK, + [218805] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6657), 1, + STATE(6405), 1, sym_comment, - ACTIONS(10507), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [222782] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(10509), 1, - anon_sym_EQ, - STATE(6658), 1, - sym_comment, - STATE(8655), 1, - sym_type_parameters, - [222801] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10511), 1, anon_sym_COMMA, - ACTIONS(10513), 1, - anon_sym_RBRACE, - STATE(6659), 1, - sym_comment, - STATE(6774), 1, - aux_sym_export_clause_repeat1, - [222820] = 5, + anon_sym_SEMI, + [218820] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10515), 1, - anon_sym_as, - STATE(6660), 1, + STATE(6406), 1, sym_comment, - ACTIONS(10517), 2, + ACTIONS(10465), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [222837] = 5, + anon_sym_SEMI, + [218835] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10353), 1, - anon_sym_EQ, - STATE(6661), 1, + STATE(6407), 1, sym_comment, - ACTIONS(10519), 2, + ACTIONS(10465), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [222854] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10124), 1, - sym_identifier, - ACTIONS(10126), 1, - anon_sym_const, - STATE(6662), 1, - sym_comment, - STATE(8132), 1, - sym_type_parameter, - [222873] = 4, + anon_sym_SEMI, + [218850] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6663), 1, + STATE(6408), 1, sym_comment, - ACTIONS(10521), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222888] = 4, + [218865] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6664), 1, - sym_comment, - ACTIONS(10523), 3, - ts_builtin_sym_end, + ACTIONS(10477), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [222903] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10525), 1, - anon_sym_LBRACE, - ACTIONS(10527), 1, - anon_sym_DOT, - STATE(4497), 1, - sym_ui_object_initializer, - STATE(6665), 1, + ACTIONS(10479), 1, + anon_sym_RBRACE, + STATE(6409), 1, sym_comment, - [222922] = 4, + STATE(7085), 1, + aux_sym_enum_body_repeat1, + [218884] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6666), 1, + STATE(6410), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222937] = 4, + [218899] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6667), 1, + ACTIONS(8749), 1, + anon_sym_LBRACE, + ACTIONS(8751), 1, + anon_sym_LBRACE_PIPE, + STATE(1640), 1, + sym_object_type, + STATE(6411), 1, sym_comment, - ACTIONS(10441), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [222952] = 4, + [218918] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6668), 1, + STATE(6412), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222967] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10529), 1, - anon_sym_EQ, - STATE(6669), 1, - sym_comment, - ACTIONS(10489), 2, - anon_sym_COMMA, - anon_sym_from, - [222984] = 6, + [218933] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, + ACTIONS(7872), 1, anon_sym_LT, - ACTIONS(10531), 1, + ACTIONS(10481), 1, anon_sym_EQ, - STATE(6670), 1, + STATE(6413), 1, sym_comment, - STATE(8630), 1, + STATE(8460), 1, sym_type_parameters, - [223003] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6671), 1, - sym_comment, - ACTIONS(8825), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [223018] = 4, + [218952] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6672), 1, + STATE(6414), 1, sym_comment, - ACTIONS(10449), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223033] = 4, + [218967] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6673), 1, + STATE(6415), 1, sym_comment, - ACTIONS(10533), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [223048] = 5, + [218982] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10535), 1, - anon_sym_COMMA, - ACTIONS(10538), 1, - anon_sym_RBRACE, - STATE(6674), 2, + STATE(6416), 1, sym_comment, - aux_sym_export_clause_repeat1, - [223065] = 4, + ACTIONS(10483), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [218997] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6675), 1, + STATE(6417), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223080] = 4, + [219012] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6676), 1, + STATE(6418), 1, sym_comment, - ACTIONS(10485), 3, + ACTIONS(10465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223095] = 4, + [219027] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6677), 1, + STATE(6419), 1, sym_comment, ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223110] = 4, + [219042] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6678), 1, + STATE(6420), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223125] = 4, + [219057] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6679), 1, + STATE(6421), 1, sym_comment, ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223140] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10540), 1, - anon_sym_EQ, - STATE(6680), 1, - sym_comment, - ACTIONS(10489), 2, - anon_sym_COMMA, - anon_sym_from, - [223157] = 4, + [219072] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6681), 1, + STATE(6422), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223172] = 6, + [219087] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(10542), 1, + ACTIONS(10485), 1, anon_sym_EQ, - STATE(6682), 1, + STATE(6423), 1, sym_comment, - STATE(8604), 1, - sym_type_parameters, - [223191] = 4, + ACTIONS(10487), 2, + anon_sym_COMMA, + anon_sym_from, + [219104] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6683), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(10489), 1, + anon_sym_EQ, + STATE(6424), 1, sym_comment, - ACTIONS(10425), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [223206] = 4, + STATE(8442), 1, + sym_type_parameters, + [219123] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6684), 1, + STATE(6425), 1, sym_comment, - ACTIONS(10544), 3, + ACTIONS(10483), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [223221] = 4, + anon_sym_SEMI, + [219138] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6685), 1, + STATE(6426), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223236] = 6, + [219153] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10546), 1, - anon_sym_COMMA, - ACTIONS(10548), 1, - anon_sym_RBRACE, - STATE(6686), 1, + STATE(6427), 1, sym_comment, - STATE(6853), 1, - aux_sym_enum_body_repeat1, - [223255] = 4, + ACTIONS(10471), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219168] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6687), 1, + STATE(6428), 1, sym_comment, - ACTIONS(10550), 3, - ts_builtin_sym_end, + ACTIONS(10471), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [223270] = 4, + anon_sym_SEMI, + [219183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6688), 1, + STATE(6429), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223285] = 5, + [219198] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10552), 1, - anon_sym_EQ, - STATE(6689), 1, + STATE(6430), 1, sym_comment, - ACTIONS(10489), 2, + ACTIONS(10471), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [223302] = 4, + anon_sym_SEMI, + [219213] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6690), 1, + STATE(6431), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10483), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223317] = 4, + [219228] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6691), 1, + STATE(6432), 1, sym_comment, ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223332] = 4, + [219243] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6692), 1, + STATE(6433), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223347] = 4, + [219258] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6693), 1, + STATE(6434), 1, sym_comment, - ACTIONS(10554), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223362] = 6, + [219273] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8753), 1, - anon_sym_LBRACE, - ACTIONS(8755), 1, - anon_sym_LBRACE_PIPE, - STATE(1783), 1, - sym_object_type, - STATE(6694), 1, + ACTIONS(10491), 1, + anon_sym_COMMA, + ACTIONS(10494), 1, + anon_sym_RBRACE, + STATE(6435), 2, sym_comment, - [223381] = 4, + aux_sym_named_imports_repeat1, + [219290] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6695), 1, + STATE(6436), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223396] = 5, + [219305] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10373), 1, - anon_sym_as, - STATE(6696), 1, + STATE(6437), 1, sym_comment, - ACTIONS(10489), 2, + ACTIONS(10435), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [223413] = 4, + anon_sym_SEMI, + [219320] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6697), 1, + STATE(6438), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10483), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223428] = 4, + [219335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6698), 1, + STATE(6439), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223443] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7919), 1, - anon_sym_type, - ACTIONS(10556), 1, - sym_identifier, - STATE(6699), 1, - sym_comment, - STATE(7757), 1, - sym__import_identifier, - [223462] = 6, + [219350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10558), 1, - anon_sym_COMMA, - ACTIONS(10560), 1, - anon_sym_RBRACE, - STATE(6700), 1, + STATE(6440), 1, sym_comment, - STATE(6746), 1, - aux_sym_named_imports_repeat1, - [223481] = 4, + ACTIONS(10471), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219365] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6701), 1, + STATE(6441), 1, sym_comment, - ACTIONS(10449), 3, + ACTIONS(10498), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223496] = 4, + [219380] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6702), 1, + STATE(6442), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223511] = 4, + [219395] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6703), 1, + STATE(6443), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223526] = 4, + [219410] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6704), 1, + STATE(6444), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10483), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223541] = 4, + [219425] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6705), 1, + STATE(6445), 1, sym_comment, - ACTIONS(10562), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223556] = 4, + [219440] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6706), 1, + ACTIONS(10500), 1, + anon_sym_EQ, + STATE(6446), 1, sym_comment, - ACTIONS(10453), 3, - sym__automatic_semicolon, + ACTIONS(10487), 2, anon_sym_COMMA, - anon_sym_SEMI, - [223571] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_from, + [219457] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10418), 1, - anon_sym_require, - ACTIONS(10564), 1, - sym_identifier, - STATE(6707), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(10502), 1, + anon_sym_EQ, + STATE(6447), 1, sym_comment, - STATE(6740), 1, - sym_nested_identifier, - [223590] = 4, + STATE(8422), 1, + sym_type_parameters, + [219476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6708), 1, + STATE(6448), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10504), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223605] = 6, - ACTIONS(3), 1, + [219491] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + STATE(6449), 1, + sym_comment, + ACTIONS(10437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219506] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7919), 1, - anon_sym_type, - ACTIONS(10556), 1, - sym_identifier, - STATE(6709), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6450), 1, sym_comment, - STATE(7751), 1, - sym__import_identifier, - [223624] = 4, + ACTIONS(10439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219521] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6710), 1, + STATE(6451), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223639] = 5, + [219536] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10566), 1, - anon_sym_EQ, - STATE(6711), 1, + STATE(6452), 1, sym_comment, - ACTIONS(10489), 2, + ACTIONS(10435), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [223656] = 6, + anon_sym_SEMI, + [219551] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(10568), 1, - anon_sym_EQ, - STATE(6712), 1, + STATE(6453), 1, sym_comment, - STATE(8562), 1, - sym_type_parameters, - [223675] = 6, + ACTIONS(10465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219566] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8710), 1, - anon_sym_LBRACE, - ACTIONS(8712), 1, - anon_sym_LBRACE_PIPE, - STATE(4245), 1, - sym_object_type, - STATE(6713), 1, + STATE(6454), 1, sym_comment, - [223694] = 4, + ACTIONS(10506), 3, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACK, + [219581] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6714), 1, + STATE(6455), 1, sym_comment, - ACTIONS(10449), 3, + ACTIONS(10483), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223709] = 6, + [219596] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10570), 1, + ACTIONS(10508), 1, anon_sym_LBRACE, - ACTIONS(10572), 1, - anon_sym_LPAREN, - STATE(4005), 1, - sym_statement_block, - STATE(6715), 1, + ACTIONS(10510), 1, + anon_sym_DOT, + STATE(4283), 1, + sym_ui_object_initializer, + STATE(6456), 1, sym_comment, - [223728] = 4, + [219615] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6716), 1, + STATE(6457), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223743] = 4, + [219630] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6717), 1, + STATE(6458), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223758] = 4, + [219645] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6718), 1, + STATE(6459), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223773] = 5, + [219660] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10574), 1, + ACTIONS(10512), 1, + anon_sym_LBRACE, + ACTIONS(10514), 1, + anon_sym_LPAREN, + STATE(3855), 1, + sym_statement_block, + STATE(6460), 1, + sym_comment, + [219679] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10516), 1, + anon_sym_EQ, + STATE(6461), 1, + sym_comment, + ACTIONS(10487), 2, anon_sym_COMMA, - ACTIONS(10577), 1, - anon_sym_RBRACE, - STATE(6719), 2, + anon_sym_from, + [219696] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(10518), 1, + anon_sym_EQ, + STATE(6462), 1, sym_comment, - aux_sym_named_imports_repeat1, - [223790] = 4, + STATE(8398), 1, + sym_type_parameters, + [219715] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6720), 1, + STATE(6463), 1, sym_comment, - ACTIONS(10439), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223805] = 4, + [219730] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6721), 1, + STATE(6464), 1, sym_comment, - ACTIONS(10439), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223820] = 4, + [219745] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6722), 1, + ACTIONS(8533), 1, + anon_sym_DOT, + STATE(6465), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(10520), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [223835] = 4, + [219762] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6723), 1, + STATE(6466), 1, sym_comment, - ACTIONS(10579), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223850] = 4, + [219777] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6724), 1, + ACTIONS(8535), 1, + anon_sym_DOT, + STATE(6467), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(10520), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [223865] = 6, + [219794] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7759), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_SQUOTE, - STATE(6725), 1, + ACTIONS(10522), 1, + anon_sym_COMMA, + ACTIONS(10524), 1, + anon_sym_RBRACE, + STATE(6435), 1, + aux_sym_named_imports_repeat1, + STATE(6468), 1, sym_comment, - STATE(8541), 1, - sym_string, - [223884] = 4, + [219813] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6726), 1, + STATE(6469), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223899] = 4, + [219828] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6727), 1, + ACTIONS(10528), 1, + anon_sym_COLON, + STATE(6470), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10526), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [223914] = 6, + [219845] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10581), 1, + ACTIONS(10530), 1, anon_sym_COMMA, - ACTIONS(10583), 1, + ACTIONS(10532), 1, anon_sym_RBRACK, - STATE(6728), 1, + STATE(6471), 1, sym_comment, - STATE(6790), 1, + STATE(6533), 1, aux_sym_tuple_type_repeat1, - [223933] = 5, + [219864] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10585), 1, - anon_sym_as, - STATE(6729), 1, + STATE(6472), 1, sym_comment, - ACTIONS(10587), 2, + ACTIONS(10465), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [223950] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [219879] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10589), 1, - anon_sym_DQUOTE, - STATE(6730), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6473), 1, sym_comment, - ACTIONS(10591), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [223967] = 6, + ACTIONS(10433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219894] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5751), 1, + ACTIONS(5714), 1, anon_sym_extends, - ACTIONS(10593), 1, + ACTIONS(10534), 1, anon_sym_AMP, - ACTIONS(10595), 1, + ACTIONS(10536), 1, anon_sym_PIPE, - STATE(6731), 1, + STATE(6474), 1, sym_comment, - [223986] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [219913] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10597), 1, - sym__glimmer_template_content, - ACTIONS(10600), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(6732), 2, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6475), 1, sym_comment, - aux_sym_glimmer_template_repeat1, - [224003] = 6, + ACTIONS(10435), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219928] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10602), 1, + ACTIONS(10538), 1, anon_sym_COMMA, - ACTIONS(10604), 1, + ACTIONS(10540), 1, anon_sym_GT, - STATE(6733), 1, + STATE(6476), 1, sym_comment, - STATE(7029), 1, + STATE(6689), 1, aux_sym_type_arguments_repeat1, - [224022] = 5, + [219947] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10606), 1, - anon_sym_SQUOTE, - STATE(6734), 1, + ACTIONS(7906), 1, + anon_sym_type, + ACTIONS(10542), 1, + sym_identifier, + STATE(6477), 1, sym_comment, - ACTIONS(10608), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [224039] = 6, + STATE(7426), 1, + sym__import_identifier, + [219966] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10610), 1, + ACTIONS(10544), 1, anon_sym_COMMA, - ACTIONS(10612), 1, + ACTIONS(10546), 1, anon_sym_GT, - STATE(6735), 1, + STATE(6478), 1, sym_comment, - STATE(7029), 1, + STATE(6689), 1, aux_sym_type_arguments_repeat1, - [224058] = 4, + [219985] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6736), 1, + STATE(6479), 1, sym_comment, - ACTIONS(10449), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [224073] = 6, + ACTIONS(10548), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [220000] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10614), 1, + ACTIONS(10550), 1, anon_sym_COMMA, - ACTIONS(10616), 1, + ACTIONS(10552), 1, anon_sym_GT, - STATE(6737), 1, + STATE(6480), 1, sym_comment, - STATE(7029), 1, + STATE(6689), 1, aux_sym_type_arguments_repeat1, - [224092] = 5, + [220019] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10618), 1, - anon_sym_as, - STATE(6738), 1, + STATE(6481), 1, sym_comment, - ACTIONS(10620), 2, + ACTIONS(10433), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [224109] = 4, + [220034] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6739), 1, + STATE(6482), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224124] = 5, + [220049] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8532), 1, - anon_sym_DOT, - STATE(6740), 1, + ACTIONS(10554), 1, + anon_sym_EQ, + STATE(6483), 1, sym_comment, - ACTIONS(10622), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [224141] = 6, + ACTIONS(10487), 2, + anon_sym_COMMA, + anon_sym_from, + [220066] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(6546), 1, + ACTIONS(6673), 1, anon_sym_RPAREN, - STATE(6741), 1, + STATE(6484), 1, sym_comment, - STATE(6797), 1, + STATE(6540), 1, aux_sym_array_repeat1, - [224160] = 6, + [220085] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(6546), 1, + ACTIONS(6673), 1, anon_sym_RPAREN, - STATE(6369), 1, + STATE(6171), 1, aux_sym_array_repeat1, - STATE(6742), 1, + STATE(6485), 1, + sym_comment, + [220104] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7906), 1, + anon_sym_type, + ACTIONS(10542), 1, + sym_identifier, + STATE(6486), 1, sym_comment, - [224179] = 4, + STATE(7473), 1, + sym__import_identifier, + [220123] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6743), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(10556), 1, + anon_sym_EQ, + STATE(6487), 1, sym_comment, - ACTIONS(10433), 3, + STATE(8373), 1, + sym_type_parameters, + [220142] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6488), 1, + sym_comment, + ACTIONS(10443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224194] = 5, + [220157] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8528), 1, - anon_sym_DOT, - STATE(6744), 1, + STATE(6489), 1, sym_comment, - ACTIONS(10622), 2, + ACTIONS(10433), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [224211] = 4, + [220172] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6745), 1, + STATE(6490), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224226] = 6, + [220187] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10624), 1, + ACTIONS(10558), 1, + anon_sym_as, + STATE(6491), 1, + sym_comment, + ACTIONS(10560), 2, anon_sym_COMMA, - ACTIONS(10626), 1, anon_sym_RBRACE, - STATE(6719), 1, - aux_sym_named_imports_repeat1, - STATE(6746), 1, - sym_comment, - [224245] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7919), 1, - anon_sym_type, - ACTIONS(10556), 1, - sym_identifier, - STATE(6747), 1, - sym_comment, - STATE(7735), 1, - sym__import_identifier, - [224264] = 5, + [220204] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10630), 1, - anon_sym_COLON, - STATE(6748), 1, + STATE(6492), 1, sym_comment, - ACTIONS(10628), 2, + ACTIONS(10439), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [224281] = 4, + [220219] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6749), 1, + STATE(6493), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224296] = 4, + [220234] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6750), 1, + STATE(6494), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10441), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224311] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10632), 1, - sym_identifier, - ACTIONS(10634), 1, - anon_sym_LBRACE, - STATE(6427), 1, - sym_export_clause, - STATE(6751), 1, - sym_comment, - [224330] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - ACTIONS(10636), 1, - anon_sym_as, - STATE(6752), 1, - sym_comment, - STATE(7592), 1, - sym__from_clause, - [224349] = 4, + [220249] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6753), 1, + STATE(6495), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224364] = 4, + [220264] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6754), 1, + STATE(6496), 1, sym_comment, - ACTIONS(10449), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224379] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7919), 1, - anon_sym_type, - ACTIONS(10556), 1, - sym_identifier, - STATE(6755), 1, - sym_comment, - STATE(7724), 1, - sym__import_identifier, - [224398] = 6, + [220279] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10638), 1, - anon_sym_COMMA, - ACTIONS(10640), 1, - anon_sym_RBRACE, - STATE(6756), 1, + STATE(6497), 1, sym_comment, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - [224417] = 6, + ACTIONS(10562), 3, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACK, + [220294] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10642), 1, - anon_sym_COMMA, - ACTIONS(10644), 1, - anon_sym_RBRACE, - STATE(6757), 1, + STATE(6498), 1, sym_comment, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - [224436] = 4, + ACTIONS(10433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [220309] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6758), 1, + STATE(6499), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10564), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224451] = 4, + [220324] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6759), 1, + STATE(6500), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10566), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224466] = 4, + [220339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6760), 1, + STATE(6501), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224481] = 4, + [220354] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6761), 1, + ACTIONS(10570), 1, + anon_sym_EQ, + STATE(6502), 1, sym_comment, - ACTIONS(10441), 3, - sym__automatic_semicolon, + ACTIONS(10487), 2, anon_sym_COMMA, - anon_sym_SEMI, - [224496] = 6, + anon_sym_from, + [220371] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(10646), 1, - anon_sym_RPAREN, - STATE(6762), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(10572), 1, + anon_sym_EQ, + STATE(6503), 1, sym_comment, - STATE(8473), 1, - sym_type_annotation, - [224515] = 4, + STATE(8347), 1, + sym_type_parameters, + [220390] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6763), 1, + STATE(6504), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10574), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224530] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [220405] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10418), 1, - anon_sym_require, - ACTIONS(10648), 1, - sym_identifier, - STATE(6764), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6505), 1, sym_comment, - STATE(7265), 1, - sym_nested_identifier, - [224549] = 4, + ACTIONS(10576), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [220420] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6765), 1, + STATE(6506), 1, sym_comment, - ACTIONS(10449), 3, + ACTIONS(10566), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224564] = 4, + [220435] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6766), 1, + STATE(6507), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10578), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224579] = 4, + [220450] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6767), 1, + STATE(6508), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224594] = 4, + [220465] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6768), 1, + ACTIONS(7064), 1, + sym__automatic_semicolon, + STATE(6509), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(7050), 2, + anon_sym_else, + anon_sym_while, + [220482] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7906), 1, + anon_sym_type, + ACTIONS(10542), 1, + sym_identifier, + STATE(6510), 1, + sym_comment, + STATE(7718), 1, + sym__import_identifier, + [220501] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6511), 1, + sym_comment, + ACTIONS(10496), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224609] = 6, + [220516] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8827), 1, + ACTIONS(8633), 1, anon_sym_LBRACE, - ACTIONS(8829), 1, + ACTIONS(8635), 1, anon_sym_LBRACE_PIPE, - STATE(4116), 1, + STATE(3976), 1, sym_object_type, - STATE(6769), 1, + STATE(6512), 1, sym_comment, - [224628] = 4, + [220535] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6770), 1, + STATE(6513), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224643] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [220550] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10634), 1, - anon_sym_LBRACE, - ACTIONS(10650), 1, - sym_identifier, - STATE(6401), 1, - sym_export_clause, - STATE(6771), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6514), 1, sym_comment, - [224662] = 4, + ACTIONS(10439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [220565] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6772), 1, + STATE(6515), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224677] = 6, + [220580] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - ACTIONS(10636), 1, - anon_sym_as, - STATE(6773), 1, + STATE(6516), 1, sym_comment, - STATE(7470), 1, - sym__from_clause, - [224696] = 6, + ACTIONS(10435), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [220595] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10652), 1, + ACTIONS(8579), 1, anon_sym_COMMA, - ACTIONS(10654), 1, + ACTIONS(10580), 1, anon_sym_RBRACE, - STATE(6674), 1, - aux_sym_export_clause_repeat1, - STATE(6774), 1, + STATE(6517), 1, sym_comment, - [224715] = 4, + STATE(6979), 1, + aux_sym_object_repeat1, + [220614] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6775), 1, + ACTIONS(10582), 1, + anon_sym_as, + STATE(6518), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10584), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [224730] = 4, + [220631] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6776), 1, + STATE(6519), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224745] = 4, + [220646] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6777), 1, + STATE(6520), 1, sym_comment, - ACTIONS(10656), 3, + ACTIONS(10588), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [224760] = 4, + [220661] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6778), 1, + ACTIONS(10590), 1, + anon_sym_DQUOTE, + STATE(6521), 1, sym_comment, - ACTIONS(10449), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [224775] = 5, + ACTIONS(10592), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [220678] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10658), 1, - anon_sym_as, - STATE(6779), 1, + STATE(6522), 1, sym_comment, - ACTIONS(10660), 2, + ACTIONS(10586), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [224792] = 4, + anon_sym_SEMI, + [220693] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6780), 1, + STATE(6523), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224807] = 4, + [220708] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10596), 1, + anon_sym_SQUOTE, + STATE(6524), 1, + sym_comment, + ACTIONS(10598), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [220725] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6781), 1, + ACTIONS(10600), 1, + anon_sym_EQ, + STATE(6525), 1, sym_comment, - ACTIONS(10453), 3, - sym__automatic_semicolon, + ACTIONS(10487), 2, anon_sym_COMMA, - anon_sym_SEMI, - [224822] = 6, + anon_sym_from, + [220742] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(10662), 1, - anon_sym_RPAREN, - STATE(6782), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(10602), 1, + anon_sym_EQ, + STATE(6526), 1, sym_comment, - STATE(8427), 1, - sym_type_annotation, - [224841] = 4, + STATE(8305), 1, + sym_type_parameters, + [220761] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6783), 1, + STATE(6527), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224856] = 4, + [220776] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6784), 1, + STATE(6528), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224871] = 6, + [220791] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_DOT, - STATE(4262), 1, - sym_ui_object_initializer, - STATE(6785), 1, + ACTIONS(10606), 1, + anon_sym_as, + STATE(6529), 1, sym_comment, - [224890] = 4, + ACTIONS(10608), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [220808] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6786), 1, + STATE(6530), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10610), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224905] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(9885), 1, - anon_sym_DOT, - STATE(4266), 1, - sym_ui_object_initializer, - STATE(6787), 1, - sym_comment, - [224924] = 4, + [220823] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6788), 1, + STATE(6531), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10612), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224939] = 4, + [220838] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6789), 1, - sym_comment, - ACTIONS(10439), 3, - sym__automatic_semicolon, + ACTIONS(8579), 1, anon_sym_COMMA, - anon_sym_SEMI, - [224954] = 6, + ACTIONS(10614), 1, + anon_sym_RBRACE, + STATE(6532), 1, + sym_comment, + STATE(6979), 1, + aux_sym_object_repeat1, + [220857] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10664), 1, + ACTIONS(10616), 1, anon_sym_COMMA, - ACTIONS(10666), 1, + ACTIONS(10618), 1, anon_sym_RBRACK, - STATE(6790), 1, + STATE(6533), 1, sym_comment, - STATE(6881), 1, + STATE(7015), 1, aux_sym_tuple_type_repeat1, - [224973] = 4, + [220876] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6791), 1, + STATE(6534), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224988] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10418), 1, - anon_sym_require, - ACTIONS(10668), 1, - sym_identifier, - STATE(6792), 1, - sym_comment, - STATE(7281), 1, - sym_nested_identifier, - [225007] = 4, + [220891] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6793), 1, + STATE(6535), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(10594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225022] = 6, + [220906] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(10527), 1, - anon_sym_DOT, - STATE(4459), 1, - sym_ui_object_initializer, - STATE(6794), 1, + STATE(6536), 1, sym_comment, - [225041] = 4, + ACTIONS(10604), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [220921] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6795), 1, + STATE(6537), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225056] = 4, + [220936] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6796), 1, + ACTIONS(10620), 1, + anon_sym_COMMA, + ACTIONS(10622), 1, + anon_sym_RBRACE, + STATE(6538), 1, + sym_comment, + STATE(6816), 1, + aux_sym_export_clause_repeat1, + [220955] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6539), 1, sym_comment, - ACTIONS(10670), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [225071] = 6, + [220970] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(10672), 1, + ACTIONS(10624), 1, anon_sym_RPAREN, - STATE(6369), 1, + STATE(6171), 1, aux_sym_array_repeat1, - STATE(6797), 1, + STATE(6540), 1, sym_comment, - [225090] = 4, + [220989] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6798), 1, + STATE(6541), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225105] = 4, + [221004] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6799), 1, + STATE(6542), 1, sym_comment, - ACTIONS(10453), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [225120] = 4, + ACTIONS(10628), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [221019] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6800), 1, + STATE(6543), 1, sym_comment, - ACTIONS(10674), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225135] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10634), 1, - anon_sym_LBRACE, - ACTIONS(10676), 1, - sym_identifier, - STATE(6357), 1, - sym_export_clause, - STATE(6801), 1, - sym_comment, - [225154] = 6, + [221034] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - ACTIONS(10636), 1, - anon_sym_as, - STATE(6802), 1, + ACTIONS(10630), 1, + anon_sym_COMMA, + ACTIONS(10632), 1, + anon_sym_RPAREN, + STATE(6544), 1, sym_comment, - STATE(7471), 1, - sym__from_clause, - [225173] = 4, + STATE(6966), 1, + aux_sym_formal_parameters_repeat1, + [221053] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6803), 1, + STATE(6545), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225188] = 4, + [221068] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6804), 1, + STATE(6546), 1, sym_comment, - ACTIONS(10678), 3, + ACTIONS(10586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225203] = 6, + [221083] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10680), 1, - anon_sym_LPAREN, - ACTIONS(10682), 1, - anon_sym_await, - STATE(123), 1, - sym__for_header, - STATE(6805), 1, + STATE(6547), 1, sym_comment, - [225222] = 4, + ACTIONS(10634), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [221098] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6806), 1, + STATE(6548), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225237] = 4, + [221113] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6807), 1, + STATE(6549), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225252] = 5, + [221128] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10686), 1, - anon_sym_as, - STATE(6808), 1, + STATE(6550), 1, sym_comment, - ACTIONS(10544), 2, + ACTIONS(10435), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [225269] = 4, + anon_sym_SEMI, + [221143] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6809), 1, + STATE(6551), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225284] = 5, + [221158] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8528), 1, - anon_sym_DOT, - STATE(6810), 1, + STATE(6552), 1, sym_comment, - ACTIONS(10688), 2, + ACTIONS(10604), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [225301] = 5, + [221173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8532), 1, + ACTIONS(8535), 1, anon_sym_DOT, - STATE(6811), 1, + STATE(6553), 1, sym_comment, - ACTIONS(10688), 2, + ACTIONS(10636), 2, sym__automatic_semicolon, anon_sym_SEMI, - [225318] = 4, + [221190] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6812), 1, + ACTIONS(8533), 1, + anon_sym_DOT, + STATE(6554), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10636), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [225333] = 4, + [221207] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6813), 1, + STATE(6555), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225348] = 4, + [221222] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6814), 1, + STATE(6556), 1, sym_comment, - ACTIONS(10690), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225363] = 4, + [221237] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6815), 1, + STATE(6557), 1, sym_comment, - ACTIONS(10690), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225378] = 4, + [221252] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10638), 1, + sym_identifier, + ACTIONS(10640), 1, + anon_sym_LBRACE, + STATE(6235), 1, + sym_export_clause, + STATE(6558), 1, + sym_comment, + [221271] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6816), 1, + ACTIONS(9988), 1, + anon_sym_from, + ACTIONS(10642), 1, + anon_sym_as, + STATE(6559), 1, sym_comment, - ACTIONS(10692), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [225393] = 4, + STATE(7335), 1, + sym__from_clause, + [221290] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6817), 1, + STATE(6560), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225408] = 4, + [221305] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6818), 1, + STATE(6561), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225423] = 6, + [221320] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8827), 1, + ACTIONS(8633), 1, anon_sym_LBRACE, - ACTIONS(8829), 1, + ACTIONS(8635), 1, anon_sym_LBRACE_PIPE, - STATE(4082), 1, + STATE(3939), 1, sym_object_type, - STATE(6819), 1, + STATE(6562), 1, sym_comment, - [225442] = 4, + [221339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6820), 1, + STATE(6563), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225457] = 6, + [221354] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10694), 1, + ACTIONS(10644), 1, anon_sym_COMMA, - ACTIONS(10696), 1, + ACTIONS(10646), 1, anon_sym_RBRACE, - STATE(6821), 1, + STATE(6564), 1, sym_comment, - STATE(6852), 1, + STATE(6595), 1, aux_sym_enum_body_repeat1, - [225476] = 4, + [221373] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6822), 1, + STATE(6565), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10648), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [225491] = 4, + [221388] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6823), 1, + STATE(6566), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225506] = 4, + [221403] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6824), 1, - sym_comment, - ACTIONS(10425), 3, + ACTIONS(6983), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [225521] = 4, + STATE(6567), 1, + sym_comment, + ACTIONS(6981), 2, + anon_sym_else, + anon_sym_while, + [221420] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6825), 1, + STATE(6568), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225536] = 4, + [221435] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6826), 1, + ACTIONS(10650), 1, + anon_sym_as, + STATE(6569), 1, sym_comment, - ACTIONS(10441), 3, - sym__automatic_semicolon, + ACTIONS(10652), 2, anon_sym_COMMA, - anon_sym_SEMI, - [225551] = 6, + anon_sym_RBRACE, + [221452] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10698), 1, - anon_sym_COMMA, - ACTIONS(10700), 1, - anon_sym_RBRACE, - STATE(6756), 1, - aux_sym_enum_body_repeat1, - STATE(6827), 1, + ACTIONS(6979), 1, + sym__automatic_semicolon, + STATE(6570), 1, sym_comment, - [225570] = 4, + ACTIONS(6975), 2, + anon_sym_else, + anon_sym_while, + [221469] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6828), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(10654), 1, + anon_sym_RPAREN, + STATE(6571), 1, sym_comment, - ACTIONS(10684), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [225585] = 4, + STATE(8216), 1, + sym_type_annotation, + [221488] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6829), 1, + STATE(6572), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225600] = 4, + [221503] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6830), 1, + STATE(6573), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225615] = 4, + [221518] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6831), 1, + STATE(6574), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225630] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(10702), 1, - anon_sym_RPAREN, - STATE(6832), 1, - sym_comment, - STATE(8368), 1, - sym_type_annotation, - [225649] = 4, + [221533] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6833), 1, + STATE(6575), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225664] = 4, + [221548] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6834), 1, + STATE(6576), 1, sym_comment, - ACTIONS(10704), 3, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACK, - [225679] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10706), 1, + ACTIONS(10626), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10709), 1, - anon_sym_RBRACE, - STATE(6835), 2, - sym_comment, - aux_sym__qml_enum_body_repeat1, - [225696] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10711), 1, - sym_identifier, - STATE(2104), 1, - sym_decorator_member_expression, - STATE(2148), 1, - sym_decorator_call_expression, - STATE(6836), 1, - sym_comment, - [225715] = 6, + anon_sym_SEMI, + [221563] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10418), 1, - anon_sym_require, - ACTIONS(10713), 1, + ACTIONS(10656), 1, sym_identifier, - STATE(6837), 1, - sym_comment, - STATE(7101), 1, - sym_nested_identifier, - [225734] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10715), 1, - anon_sym_COMMA, - ACTIONS(10717), 1, - anon_sym_GT, - STATE(6838), 1, - sym_comment, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - [225753] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10719), 1, - anon_sym_COMMA, - ACTIONS(10721), 1, - anon_sym_RBRACE, - STATE(6839), 1, + ACTIONS(10658), 1, + anon_sym_require, + STATE(6577), 1, sym_comment, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - [225772] = 4, + STATE(7038), 1, + sym_nested_identifier, + [221582] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6840), 1, + STATE(6578), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225787] = 4, + [221597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6841), 1, + STATE(6579), 1, sym_comment, - ACTIONS(10690), 3, + ACTIONS(10594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225802] = 5, + [221612] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10300), 1, - anon_sym_EQ, - STATE(6842), 1, + STATE(6580), 1, sym_comment, - ACTIONS(10723), 2, + ACTIONS(10604), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [225819] = 6, + anon_sym_SEMI, + [221627] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9371), 1, - anon_sym_COMMA, - ACTIONS(10725), 1, - anon_sym_RBRACE, - STATE(6843), 1, + STATE(6581), 1, sym_comment, - STATE(7001), 1, - aux_sym_object_pattern_repeat1, - [225838] = 4, + ACTIONS(10568), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [221642] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6844), 1, + STATE(6582), 1, sym_comment, - ACTIONS(10690), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225853] = 6, + [221657] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9371), 1, - anon_sym_COMMA, - ACTIONS(10725), 1, - anon_sym_RBRACE, - STATE(6845), 1, + STATE(6583), 1, sym_comment, - STATE(7145), 1, - aux_sym_object_pattern_repeat1, - [225872] = 4, + ACTIONS(10626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [221672] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6846), 1, + ACTIONS(4373), 1, + anon_sym_LBRACE, + STATE(6584), 1, sym_comment, - ACTIONS(10692), 3, - sym__automatic_semicolon, + ACTIONS(5800), 2, anon_sym_COMMA, - anon_sym_SEMI, - [225887] = 6, + anon_sym_LBRACE_PIPE, + [221689] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10634), 1, + ACTIONS(10640), 1, anon_sym_LBRACE, - ACTIONS(10727), 1, + ACTIONS(10660), 1, sym_identifier, - STATE(6365), 1, + STATE(6255), 1, sym_export_clause, - STATE(6847), 1, + STATE(6585), 1, sym_comment, - [225906] = 6, + [221708] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, + ACTIONS(9988), 1, anon_sym_from, - ACTIONS(10636), 1, + ACTIONS(10642), 1, anon_sym_as, - STATE(6848), 1, + STATE(6586), 1, sym_comment, - STATE(8057), 1, + STATE(7213), 1, sym__from_clause, - [225925] = 4, + [221727] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6849), 1, + ACTIONS(4371), 1, + anon_sym_LBRACE, + STATE(6587), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(5812), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [221744] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6588), 1, + sym_comment, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225940] = 6, + [221759] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10729), 1, - anon_sym_COMMA, - ACTIONS(10731), 1, - anon_sym_RBRACE, - STATE(6850), 1, + ACTIONS(10662), 1, + anon_sym_else, + ACTIONS(10664), 1, + anon_sym_while, + STATE(6589), 1, sym_comment, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - [225959] = 4, + STATE(7498), 1, + sym_else_clause, + [221778] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6851), 1, + ACTIONS(4369), 1, + anon_sym_LBRACE, + STATE(6590), 1, sym_comment, - ACTIONS(10684), 3, - sym__automatic_semicolon, + ACTIONS(5816), 2, anon_sym_COMMA, - anon_sym_SEMI, - [225974] = 6, + anon_sym_LBRACE_PIPE, + [221795] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10733), 1, + STATE(6591), 1, + sym_comment, + ACTIONS(10666), 3, + ts_builtin_sym_end, anon_sym_COMMA, - ACTIONS(10735), 1, - anon_sym_RBRACE, - STATE(6852), 1, + anon_sym_RBRACK, + [221810] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6592), 1, sym_comment, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - [225993] = 6, + ACTIONS(10668), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [221825] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10737), 1, + ACTIONS(10670), 1, anon_sym_COMMA, - ACTIONS(10739), 1, + ACTIONS(10672), 1, anon_sym_RBRACE, - STATE(6853), 1, + STATE(6593), 1, sym_comment, - STATE(7271), 1, + STATE(6985), 1, aux_sym_enum_body_repeat1, - [226012] = 4, + [221844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6854), 1, + STATE(6594), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226027] = 4, + [221859] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6855), 1, + ACTIONS(10674), 1, + anon_sym_COMMA, + ACTIONS(10676), 1, + anon_sym_RBRACE, + STATE(6595), 1, + sym_comment, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + [221878] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6596), 1, sym_comment, ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226042] = 6, + [221893] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10355), 1, - anon_sym_COMMA, - ACTIONS(10357), 1, - anon_sym_RBRACK, - STATE(6856), 1, + STATE(6597), 1, sym_comment, - STATE(7036), 1, - aux_sym_array_pattern_repeat1, - [226061] = 6, + ACTIONS(10594), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [221908] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10741), 1, - anon_sym_LPAREN, - ACTIONS(10743), 1, - anon_sym_await, - STATE(132), 1, - sym__for_header, - STATE(6857), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(10678), 1, + anon_sym_RPAREN, + STATE(6598), 1, sym_comment, - [226080] = 4, + STATE(8170), 1, + sym_type_annotation, + [221927] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6858), 1, + STATE(6599), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226095] = 4, + [221942] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6859), 1, + STATE(6600), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226110] = 6, + [221957] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10355), 1, + STATE(6601), 1, + sym_comment, + ACTIONS(10604), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10357), 1, - anon_sym_RBRACK, - STATE(6860), 1, + anon_sym_SEMI, + [221972] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10658), 1, + anon_sym_require, + ACTIONS(10680), 1, + sym_identifier, + STATE(6602), 1, sym_comment, - STATE(7152), 1, - aux_sym_array_pattern_repeat1, - [226129] = 4, + STATE(7078), 1, + sym_nested_identifier, + [221991] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6861), 1, + STATE(6603), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226144] = 4, + [222006] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6862), 1, + STATE(6604), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226159] = 4, + [222021] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6863), 1, + STATE(6605), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226174] = 4, + [222036] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6864), 1, + ACTIONS(10640), 1, + anon_sym_LBRACE, + ACTIONS(10682), 1, + sym_identifier, + STATE(6286), 1, + sym_export_clause, + STATE(6606), 1, sym_comment, - ACTIONS(10684), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [226189] = 5, + [222055] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10745), 1, - anon_sym_COMMA, - ACTIONS(10748), 1, - anon_sym_RPAREN, - STATE(6865), 2, + ACTIONS(9988), 1, + anon_sym_from, + ACTIONS(10642), 1, + anon_sym_as, + STATE(6607), 1, sym_comment, - aux_sym_ui_signal_parameters_repeat1, - [226206] = 4, + STATE(7359), 1, + sym__from_clause, + [222074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6866), 1, + STATE(6608), 1, sym_comment, - ACTIONS(10750), 3, + ACTIONS(10586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226221] = 4, + [222089] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6867), 1, + STATE(6609), 1, sym_comment, - ACTIONS(10750), 3, + ACTIONS(10586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226236] = 4, + [222104] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6868), 1, + STATE(6610), 1, sym_comment, - ACTIONS(10750), 3, + ACTIONS(10594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226251] = 4, + [222119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6869), 1, + STATE(6611), 1, sym_comment, - ACTIONS(10750), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226266] = 4, + [222134] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6870), 1, + ACTIONS(10684), 1, + anon_sym_LPAREN, + ACTIONS(10686), 1, + anon_sym_await, + STATE(122), 1, + sym__for_header, + STATE(6612), 1, sym_comment, - ACTIONS(10439), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [226281] = 4, + [222153] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6871), 1, + STATE(6613), 1, sym_comment, - ACTIONS(10684), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226296] = 5, + [222168] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8532), 1, - anon_sym_DOT, - STATE(6872), 1, + STATE(6614), 1, sym_comment, - ACTIONS(10752), 2, + ACTIONS(10437), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [226313] = 4, + [222183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6873), 1, + STATE(6615), 1, sym_comment, - ACTIONS(10754), 3, + ACTIONS(10586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226328] = 6, + [222198] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(10756), 1, - anon_sym_RPAREN, - STATE(6874), 1, + ACTIONS(7906), 1, + anon_sym_type, + ACTIONS(10542), 1, + sym_identifier, + STATE(6616), 1, sym_comment, - STATE(8287), 1, - sym_type_annotation, - [226347] = 4, + STATE(7551), 1, + sym__import_identifier, + [222217] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6875), 1, + STATE(6617), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226362] = 4, + [222232] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6876), 1, - sym_comment, - ACTIONS(10425), 3, + ACTIONS(7110), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [226377] = 5, + STATE(6618), 1, + sym_comment, + ACTIONS(7108), 2, + anon_sym_else, + anon_sym_while, + [222249] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8528), 1, - anon_sym_DOT, - STATE(6877), 1, + STATE(6619), 1, sym_comment, - ACTIONS(10752), 2, + ACTIONS(10594), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [226394] = 5, + [222264] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7691), 1, - anon_sym_DOT, - STATE(6878), 1, - sym_comment, - ACTIONS(10758), 2, - anon_sym_COMMA, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(10688), 1, anon_sym_RPAREN, - [226411] = 4, + STATE(6620), 1, + sym_comment, + STATE(8111), 1, + sym_type_annotation, + [222283] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6879), 1, + STATE(6621), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226426] = 4, + [222298] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6880), 1, + STATE(6622), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226441] = 5, + [222313] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10760), 1, - anon_sym_COMMA, - ACTIONS(10763), 1, - anon_sym_RBRACK, - STATE(6881), 2, + ACTIONS(6044), 1, + anon_sym_LBRACE, + STATE(6623), 1, sym_comment, - aux_sym_tuple_type_repeat1, - [226458] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(6046), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [222330] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10418), 1, - anon_sym_require, - ACTIONS(10765), 1, - sym_identifier, - STATE(6811), 1, - sym_nested_identifier, - STATE(6882), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(5968), 1, + anon_sym_LBRACE, + STATE(6624), 1, sym_comment, - [226477] = 6, + ACTIONS(5970), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [222347] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(10690), 1, anon_sym_COMMA, - ACTIONS(6544), 1, - anon_sym_RPAREN, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(6883), 1, + ACTIONS(10693), 1, + anon_sym_RBRACE, + STATE(6625), 2, sym_comment, - [226496] = 6, + aux_sym__qml_enum_body_repeat1, + [222364] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6544), 1, - anon_sym_RPAREN, - STATE(6884), 1, + STATE(6626), 1, sym_comment, - STATE(6967), 1, - aux_sym_array_repeat1, - [226515] = 4, + ACTIONS(10471), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222379] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6885), 1, + STATE(6627), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226530] = 6, + [222394] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10767), 1, - anon_sym_LPAREN, - ACTIONS(10769), 1, - anon_sym_await, - STATE(97), 1, - sym__for_header, - STATE(6886), 1, + ACTIONS(10052), 1, + anon_sym_EQ, + STATE(6628), 1, sym_comment, - [226549] = 4, + ACTIONS(10695), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [222411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6887), 1, + STATE(6629), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226564] = 4, + [222426] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6888), 1, + STATE(6630), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226579] = 4, + [222441] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6889), 1, + STATE(6631), 1, sym_comment, ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226594] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [222456] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10771), 1, - sym_identifier, - ACTIONS(10773), 1, - anon_sym_SEMI, - ACTIONS(10775), 1, - sym__automatic_semicolon, - STATE(6890), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10697), 1, + anon_sym_COMMA, + ACTIONS(10700), 1, + anon_sym_RPAREN, + STATE(6632), 2, sym_comment, - [226613] = 4, + aux_sym_ui_signal_parameters_repeat1, + [222473] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6891), 1, + STATE(6633), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226628] = 6, + [222488] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10777), 1, + ACTIONS(10658), 1, + anon_sym_require, + ACTIONS(10702), 1, sym_identifier, - ACTIONS(10779), 1, - anon_sym_SEMI, - ACTIONS(10781), 1, - sym__automatic_semicolon, - STATE(6892), 1, + STATE(6634), 1, sym_comment, - [226647] = 4, + STATE(6844), 1, + sym_nested_identifier, + [222507] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6893), 1, + STATE(6635), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226662] = 4, + [222522] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6894), 1, + ACTIONS(7698), 1, + anon_sym_DOT, + STATE(6636), 1, sym_comment, - ACTIONS(10579), 3, - sym__automatic_semicolon, + ACTIONS(10704), 2, anon_sym_COMMA, - anon_sym_SEMI, - [226677] = 4, + anon_sym_RPAREN, + [222539] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6895), 1, + STATE(6637), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226692] = 4, + [222554] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6896), 1, + STATE(6638), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226707] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [222569] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10783), 1, - sym_identifier, - STATE(5375), 1, - sym_decorator_member_expression, - STATE(6547), 1, - sym_decorator_call_expression, - STATE(6897), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9813), 1, + anon_sym_LBRACE, + ACTIONS(10706), 1, + anon_sym_COMMA, + STATE(6639), 2, sym_comment, - [226726] = 4, + aux_sym_implements_clause_repeat1, + [222586] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6898), 1, + STATE(6640), 1, sym_comment, ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226741] = 4, + [222601] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6899), 1, + STATE(6641), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226756] = 4, + [222616] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6900), 1, + STATE(6642), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226771] = 4, + [222631] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10711), 1, + sym_identifier, + STATE(5234), 1, + sym_decorator_member_expression, + STATE(6138), 1, + sym_decorator_call_expression, + STATE(6643), 1, + sym_comment, + [222650] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6901), 1, + STATE(6644), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226786] = 4, + [222665] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6902), 1, + STATE(6645), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226801] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10634), 1, - anon_sym_LBRACE, - ACTIONS(10785), 1, - sym_identifier, - STATE(6508), 1, - sym_export_clause, - STATE(6903), 1, - sym_comment, - [226820] = 4, + [222680] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6904), 1, + STATE(6646), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226835] = 4, + [222695] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6905), 1, + STATE(6647), 1, sym_comment, ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226850] = 6, + [222710] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - ACTIONS(10636), 1, - anon_sym_as, - STATE(6906), 1, + STATE(6648), 1, sym_comment, - STATE(7771), 1, - sym__from_clause, - [226869] = 6, + ACTIONS(10443), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222725] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + STATE(6649), 1, + sym_comment, + ACTIONS(10439), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10787), 1, - anon_sym_RPAREN, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(6907), 1, + anon_sym_SEMI, + [222740] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10640), 1, + anon_sym_LBRACE, + ACTIONS(10713), 1, + sym_identifier, + STATE(6320), 1, + sym_export_clause, + STATE(6650), 1, sym_comment, - [226888] = 4, + [222759] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6908), 1, + ACTIONS(9988), 1, + anon_sym_from, + ACTIONS(10642), 1, + anon_sym_as, + STATE(6651), 1, sym_comment, - ACTIONS(10789), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [226903] = 4, + STATE(7884), 1, + sym__from_clause, + [222778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6909), 1, + STATE(6652), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10568), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [226918] = 6, + [222793] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, - anon_sym_COMMA, - ACTIONS(10791), 1, - anon_sym_RBRACE, - STATE(6910), 1, + STATE(6653), 1, sym_comment, - STATE(7088), 1, - aux_sym_object_repeat1, - [226937] = 6, + ACTIONS(10715), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222808] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, - anon_sym_COMMA, - ACTIONS(10791), 1, - anon_sym_RBRACE, - STATE(6911), 1, + STATE(6654), 1, sym_comment, - STATE(7288), 1, - aux_sym_object_repeat1, - [226956] = 6, + ACTIONS(10443), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222823] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10793), 1, - anon_sym_LPAREN, - ACTIONS(10795), 1, - anon_sym_await, - STATE(116), 1, - sym__for_header, - STATE(6912), 1, + STATE(6655), 1, sym_comment, - [226975] = 6, + ACTIONS(10461), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222838] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10797), 1, - anon_sym_COMMA, - ACTIONS(10799), 1, - anon_sym_RBRACK, - STATE(6881), 1, - aux_sym_tuple_type_repeat1, - STATE(6913), 1, + STATE(6656), 1, sym_comment, - [226994] = 4, + ACTIONS(10715), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222853] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6914), 1, - sym_comment, - ACTIONS(10439), 3, - sym__automatic_semicolon, + ACTIONS(6448), 1, anon_sym_COMMA, - anon_sym_SEMI, - [227009] = 4, + ACTIONS(10717), 1, + anon_sym_RPAREN, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(6657), 1, + sym_comment, + [222872] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6915), 1, + STATE(6658), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227024] = 4, + [222887] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6916), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + ACTIONS(10719), 1, + anon_sym_LPAREN, + STATE(6542), 1, + sym_statement_block, + STATE(6659), 1, sym_comment, - ACTIONS(10453), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [227039] = 4, + [222906] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6917), 1, + STATE(6660), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10721), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227054] = 4, + [222921] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6918), 1, + ACTIONS(10723), 1, + anon_sym_LPAREN, + ACTIONS(10725), 1, + anon_sym_await, + STATE(94), 1, + sym__for_header, + STATE(6661), 1, sym_comment, - ACTIONS(10453), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [227069] = 4, + [222940] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6919), 1, + STATE(6662), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227084] = 4, + [222955] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6920), 1, + ACTIONS(10727), 1, + anon_sym_COMMA, + ACTIONS(10730), 1, + anon_sym_GT, + STATE(6663), 2, sym_comment, - ACTIONS(10801), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [227099] = 4, + aux_sym_type_parameters_repeat1, + [222972] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6921), 1, + STATE(6664), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227114] = 6, + [222987] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4730), 1, + ACTIONS(4732), 1, anon_sym_LBRACE, - ACTIONS(8462), 1, + ACTIONS(8365), 1, anon_sym_DOT, - STATE(4435), 1, + STATE(4229), 1, sym_ui_object_initializer, - STATE(6922), 1, + STATE(6665), 1, sym_comment, - [227133] = 6, + [223006] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(9885), 1, - anon_sym_DOT, - STATE(4436), 1, - sym_ui_object_initializer, - STATE(6923), 1, + STATE(6666), 1, sym_comment, - [227152] = 6, + ACTIONS(10437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223021] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10803), 1, - anon_sym_COMMA, - ACTIONS(10805), 1, - anon_sym_RPAREN, - STATE(6924), 1, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(4230), 1, + sym_ui_object_initializer, + STATE(6667), 1, sym_comment, - STATE(7099), 1, - aux_sym_formal_parameters_repeat1, - [227171] = 4, + [223040] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6925), 1, + STATE(6668), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227186] = 4, + [223055] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6926), 1, + STATE(6669), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227201] = 5, + [223070] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10807), 1, - anon_sym_EQ, - STATE(6927), 1, + STATE(6670), 1, sym_comment, - ACTIONS(4765), 2, - anon_sym_in, - anon_sym_of, - [227218] = 4, + ACTIONS(10471), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223085] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6928), 1, + STATE(6671), 1, sym_comment, - ACTIONS(10449), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227233] = 6, + [223100] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9371), 1, - anon_sym_COMMA, - ACTIONS(10809), 1, - anon_sym_RBRACE, - STATE(6929), 1, + STATE(6672), 1, sym_comment, - STATE(7144), 1, - aux_sym_object_pattern_repeat1, - [227252] = 6, + ACTIONS(10604), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223115] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10811), 1, + ACTIONS(10732), 1, sym_identifier, - ACTIONS(10813), 1, + ACTIONS(10734), 1, anon_sym_SEMI, - ACTIONS(10815), 1, + ACTIONS(10736), 1, sym__automatic_semicolon, - STATE(6930), 1, + STATE(6673), 1, sym_comment, - [227271] = 6, + [223134] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10817), 1, + ACTIONS(10738), 1, sym_identifier, - ACTIONS(10819), 1, + ACTIONS(10740), 1, anon_sym_SEMI, - ACTIONS(10821), 1, + ACTIONS(10742), 1, sym__automatic_semicolon, - STATE(6931), 1, + STATE(6674), 1, sym_comment, - [227290] = 6, + [223153] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9371), 1, + ACTIONS(9516), 1, anon_sym_COMMA, - ACTIONS(10809), 1, + ACTIONS(10744), 1, anon_sym_RBRACE, - STATE(6932), 1, + STATE(6675), 1, sym_comment, - STATE(7145), 1, + STATE(6839), 1, aux_sym_object_pattern_repeat1, - [227309] = 4, + [223172] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6933), 1, + ACTIONS(9516), 1, + anon_sym_COMMA, + ACTIONS(10744), 1, + anon_sym_RBRACE, + STATE(6676), 1, sym_comment, - ACTIONS(10823), 3, - sym__automatic_semicolon, - anon_sym_with, - anon_sym_SEMI, - [227324] = 4, + STATE(6840), 1, + aux_sym_object_pattern_repeat1, + [223191] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6934), 1, + STATE(6677), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227339] = 4, + [223206] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6935), 1, + STATE(6678), 1, sym_comment, - ACTIONS(10825), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227354] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10355), 1, - anon_sym_COMMA, - ACTIONS(10406), 1, - anon_sym_RBRACK, - STATE(6936), 1, - sym_comment, - STATE(7151), 1, - aux_sym_array_pattern_repeat1, - [227373] = 4, + [223221] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6937), 1, + STATE(6679), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227388] = 4, + [223236] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6938), 1, + STATE(6680), 1, sym_comment, - ACTIONS(10441), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227403] = 4, + [223251] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6939), 1, - sym_comment, - ACTIONS(10674), 3, - sym__automatic_semicolon, + ACTIONS(9976), 1, anon_sym_COMMA, - anon_sym_SEMI, - [227418] = 4, + ACTIONS(9978), 1, + anon_sym_RBRACK, + STATE(6681), 1, + sym_comment, + STATE(6845), 1, + aux_sym_array_pattern_repeat1, + [223270] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6940), 1, + STATE(6682), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227433] = 6, + [223285] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10355), 1, - anon_sym_COMMA, - ACTIONS(10406), 1, - anon_sym_RBRACK, - STATE(6941), 1, + STATE(6683), 1, sym_comment, - STATE(7152), 1, - aux_sym_array_pattern_repeat1, - [227452] = 4, + ACTIONS(10471), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223300] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6942), 1, + STATE(6684), 1, sym_comment, - ACTIONS(9849), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227467] = 6, + [223315] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6580), 1, - anon_sym_RBRACK, - STATE(6943), 1, + STATE(6685), 1, sym_comment, - STATE(7105), 1, - aux_sym_array_repeat1, - [227486] = 4, + ACTIONS(10594), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223330] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6944), 1, + STATE(6686), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227501] = 6, + [223345] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10827), 1, - anon_sym_COMMA, - ACTIONS(10829), 1, - anon_sym_GT, - STATE(6945), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(10746), 1, + anon_sym_RPAREN, + STATE(6687), 1, sym_comment, - STATE(6970), 1, - aux_sym_type_parameters_repeat1, - [227520] = 4, + STATE(8030), 1, + sym_type_annotation, + [223364] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6946), 1, + STATE(6688), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227535] = 6, + [223379] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10831), 1, + ACTIONS(9657), 1, + anon_sym_GT, + ACTIONS(10748), 1, anon_sym_COMMA, - ACTIONS(10833), 1, - anon_sym_RBRACK, - STATE(6947), 1, + STATE(6689), 2, sym_comment, - STATE(7107), 1, - aux_sym_ui_object_array_repeat1, - [227554] = 4, + aux_sym_type_arguments_repeat1, + [223396] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6948), 1, + STATE(6690), 1, sym_comment, - ACTIONS(9849), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227569] = 4, + [223411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6949), 1, + STATE(6691), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227584] = 6, + [223426] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10835), 1, - anon_sym_COMMA, - ACTIONS(10837), 1, - anon_sym_GT, - STATE(6950), 1, + STATE(6692), 1, sym_comment, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - [227603] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(10626), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6580), 1, - anon_sym_RBRACK, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(6951), 1, - sym_comment, - [227622] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10124), 1, - sym_identifier, - ACTIONS(10126), 1, - anon_sym_const, - STATE(6952), 1, - sym_comment, - STATE(7116), 1, - sym_type_parameter, - [227641] = 6, + anon_sym_SEMI, + [223441] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10839), 1, + ACTIONS(8701), 1, + anon_sym_DOT, + STATE(6693), 1, + sym_comment, + ACTIONS(10751), 2, anon_sym_COMMA, - ACTIONS(10841), 1, anon_sym_GT, - STATE(6953), 1, - sym_comment, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - [227660] = 4, + [223458] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6954), 1, + STATE(6694), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227675] = 4, + [223473] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6955), 1, + STATE(6695), 1, sym_comment, - ACTIONS(10453), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227690] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(8462), 1, - anon_sym_DOT, - STATE(4373), 1, - sym_ui_object_initializer, - STATE(6956), 1, - sym_comment, - [227709] = 6, + [223488] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4730), 1, - anon_sym_LBRACE, - ACTIONS(9885), 1, - anon_sym_DOT, - STATE(4367), 1, - sym_ui_object_initializer, - STATE(6957), 1, + STATE(6696), 1, sym_comment, - [227728] = 5, + ACTIONS(10594), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223503] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10845), 1, - anon_sym_COLON, - STATE(6958), 1, + ACTIONS(9976), 1, + anon_sym_COMMA, + ACTIONS(9978), 1, + anon_sym_RBRACK, + STATE(6697), 1, sym_comment, - ACTIONS(10843), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [227745] = 5, + STATE(6846), 1, + aux_sym_array_pattern_repeat1, + [223522] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10849), 1, - anon_sym_COLON, - STATE(6959), 1, + STATE(6698), 1, sym_comment, - ACTIONS(10847), 2, + ACTIONS(10753), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [227762] = 6, + [223537] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10851), 1, + ACTIONS(10658), 1, + anon_sym_require, + ACTIONS(10755), 1, sym_identifier, - STATE(6960), 1, - sym_comment, - STATE(8457), 1, + STATE(6554), 1, sym_nested_identifier, - STATE(8471), 1, - sym_nested_type_identifier, - [227781] = 5, + STATE(6699), 1, + sym_comment, + [223556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10855), 1, - anon_sym_COLON, - STATE(6961), 1, + STATE(6700), 1, sym_comment, - ACTIONS(10853), 2, + ACTIONS(10437), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [227798] = 6, + [223571] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8710), 1, - anon_sym_LBRACE, - ACTIONS(8712), 1, - anon_sym_LBRACE_PIPE, - STATE(4424), 1, - sym_object_type, - STATE(6962), 1, + STATE(6701), 1, sym_comment, - [227817] = 5, + ACTIONS(10757), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223586] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10859), 1, - anon_sym_COLON, - STATE(6963), 1, + ACTIONS(6748), 1, + anon_sym_extends, + ACTIONS(10759), 1, + anon_sym_AMP, + ACTIONS(10761), 1, + anon_sym_PIPE, + STATE(6702), 1, sym_comment, - ACTIONS(10857), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [227834] = 4, + [223605] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6964), 1, + STATE(6703), 1, sym_comment, - ACTIONS(10861), 3, + ACTIONS(9882), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227849] = 4, + [223620] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6965), 1, + STATE(6704), 1, sym_comment, - ACTIONS(10863), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227864] = 4, + [223635] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6966), 1, + STATE(6705), 1, sym_comment, - ACTIONS(10865), 3, + ACTIONS(10443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227879] = 6, + [223650] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(10763), 1, anon_sym_COMMA, - ACTIONS(10867), 1, - anon_sym_RPAREN, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(6967), 1, + ACTIONS(10765), 1, + anon_sym_RBRACE, + STATE(6706), 1, sym_comment, - [227898] = 6, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + [223669] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(10869), 1, - anon_sym_RPAREN, - STATE(6968), 1, + ACTIONS(10767), 1, + anon_sym_COMMA, + ACTIONS(10769), 1, + anon_sym_RBRACE, + STATE(6707), 1, sym_comment, - STATE(8249), 1, - sym_type_annotation, - [227917] = 4, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + [223688] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6969), 1, + STATE(6708), 1, sym_comment, - ACTIONS(10449), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227932] = 5, + [223703] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10871), 1, - anon_sym_COMMA, - ACTIONS(10874), 1, - anon_sym_GT, - STATE(6970), 2, + STATE(6709), 1, sym_comment, - aux_sym_type_parameters_repeat1, - [227949] = 4, + ACTIONS(10771), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223718] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6971), 1, + STATE(6710), 1, sym_comment, - ACTIONS(10425), 3, + ACTIONS(10626), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227964] = 4, + [223733] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6972), 1, + STATE(6711), 1, sym_comment, - ACTIONS(10876), 3, + ACTIONS(9882), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227979] = 4, + [223748] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6973), 1, + STATE(6712), 1, sym_comment, - ACTIONS(10825), 3, + ACTIONS(10586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [227994] = 6, + [223763] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10418), 1, - anon_sym_require, - ACTIONS(10878), 1, + ACTIONS(10640), 1, + anon_sym_LBRACE, + ACTIONS(10773), 1, sym_identifier, - STATE(6872), 1, - sym_nested_identifier, - STATE(6974), 1, + STATE(6358), 1, + sym_export_clause, + STATE(6713), 1, sym_comment, - [228013] = 6, + [223782] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4553), 1, - anon_sym_LPAREN, - ACTIONS(10880), 1, - anon_sym_DOT, - STATE(5184), 1, - sym_arguments, - STATE(6975), 1, + ACTIONS(9988), 1, + anon_sym_from, + ACTIONS(10642), 1, + anon_sym_as, + STATE(6714), 1, sym_comment, - [228032] = 4, + STATE(7326), 1, + sym__from_clause, + [223801] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6976), 1, + STATE(6715), 1, sym_comment, - ACTIONS(10674), 3, + ACTIONS(10594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228047] = 4, + [223816] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6977), 1, + STATE(6716), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228062] = 6, + [223831] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10884), 1, - anon_sym_COMMA, - ACTIONS(10886), 1, - anon_sym_GT, - STATE(6978), 1, + STATE(6717), 1, sym_comment, - STATE(7131), 1, - aux_sym_type_parameters_repeat1, - [228081] = 4, + ACTIONS(10604), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223846] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(6979), 1, + ACTIONS(10121), 1, + sym_identifier, + ACTIONS(10123), 1, + anon_sym_const, + STATE(6718), 1, sym_comment, - ACTIONS(10888), 3, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - [228096] = 4, + STATE(6813), 1, + sym_type_parameter, + [223865] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6980), 1, + STATE(6719), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10594), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228111] = 4, + [223880] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6981), 1, - sym_comment, - ACTIONS(10882), 3, + ACTIONS(7066), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [228126] = 4, + STATE(6720), 1, + sym_comment, + ACTIONS(7058), 2, + anon_sym_else, + anon_sym_while, + [223897] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6982), 1, + STATE(6721), 1, sym_comment, - ACTIONS(10449), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228141] = 4, + [223912] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6983), 1, + ACTIONS(10775), 1, + anon_sym_LPAREN, + ACTIONS(10777), 1, + anon_sym_await, + STATE(138), 1, + sym__for_header, + STATE(6722), 1, sym_comment, - ACTIONS(10890), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [228156] = 6, + [223931] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10634), 1, - anon_sym_LBRACE, - ACTIONS(10892), 1, + ACTIONS(10779), 1, sym_identifier, - STATE(6404), 1, - sym_export_clause, - STATE(6984), 1, + STATE(3581), 1, + sym_decorator_member_expression, + STATE(3785), 1, + sym_decorator_call_expression, + STATE(6723), 1, sym_comment, - [228175] = 5, + [223950] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6962), 1, + STATE(6724), 1, + sym_comment, + ACTIONS(10435), 3, sym__automatic_semicolon, - STATE(6985), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [223965] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6725), 1, sym_comment, - ACTIONS(6852), 2, - anon_sym_else, - anon_sym_while, - [228192] = 6, + ACTIONS(10781), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223980] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + STATE(6726), 1, + sym_comment, + ACTIONS(10471), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6614), 1, - anon_sym_RPAREN, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(6986), 1, + anon_sym_SEMI, + [223995] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6727), 1, sym_comment, - [228211] = 4, + ACTIONS(10753), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224010] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6987), 1, + STATE(6728), 1, sym_comment, - ACTIONS(10433), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228226] = 6, + [224025] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - ACTIONS(10636), 1, - anon_sym_as, - STATE(6988), 1, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(8365), 1, + anon_sym_DOT, + STATE(4234), 1, + sym_ui_object_initializer, + STATE(6729), 1, sym_comment, - STATE(8112), 1, - sym__from_clause, - [228245] = 4, + [224044] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6989), 1, + STATE(6730), 1, sym_comment, - ACTIONS(10894), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228260] = 4, + [224059] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6990), 1, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(4231), 1, + sym_ui_object_initializer, + STATE(6731), 1, sym_comment, - ACTIONS(10439), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [228275] = 4, + [224078] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6991), 1, + ACTIONS(10785), 1, + anon_sym_COLON, + STATE(6732), 1, sym_comment, - ACTIONS(10896), 3, + ACTIONS(10783), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [228290] = 4, + [224095] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6992), 1, + ACTIONS(10787), 1, + anon_sym_COMMA, + ACTIONS(10789), 1, + anon_sym_RBRACK, + STATE(6733), 1, sym_comment, - ACTIONS(10439), 3, + STATE(7015), 1, + aux_sym_tuple_type_repeat1, + [224114] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(10793), 1, + anon_sym_COLON, + STATE(6734), 1, + sym_comment, + ACTIONS(10791), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [228305] = 6, + [224131] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10898), 1, + ACTIONS(10795), 1, sym_identifier, - ACTIONS(10900), 1, - anon_sym_LBRACK, - ACTIONS(10902), 1, - sym_private_property_identifier, - STATE(6993), 1, + STATE(6735), 1, sym_comment, - [228324] = 6, + STATE(8073), 1, + sym_nested_type_identifier, + STATE(8171), 1, + sym_nested_identifier, + [224150] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6614), 1, - anon_sym_RPAREN, - STATE(6907), 1, - aux_sym_array_repeat1, - STATE(6994), 1, + ACTIONS(10799), 1, + anon_sym_COLON, + STATE(6736), 1, sym_comment, - [228343] = 4, + ACTIONS(10797), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [224167] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6995), 1, + STATE(6737), 1, sym_comment, - ACTIONS(10904), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228358] = 4, + [224182] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6996), 1, + ACTIONS(10803), 1, + anon_sym_COLON, + STATE(6738), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10801), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [228373] = 6, + [224199] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9371), 1, - anon_sym_COMMA, - ACTIONS(10908), 1, - anon_sym_RBRACE, - STATE(6997), 1, + STATE(6739), 1, sym_comment, - STATE(7145), 1, - aux_sym_object_pattern_repeat1, - [228392] = 4, + ACTIONS(10626), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224214] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(6998), 1, + STATE(6740), 1, sym_comment, - ACTIONS(10894), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228407] = 6, + [224229] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10910), 1, - anon_sym_COMMA, - ACTIONS(10912), 1, - anon_sym_GT, - STATE(6999), 1, + STATE(6741), 1, sym_comment, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - [228426] = 4, + ACTIONS(10586), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7000), 1, + STATE(6742), 1, sym_comment, - ACTIONS(10420), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228441] = 6, + [224259] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6743), 1, + sym_comment, + ACTIONS(10805), 3, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + [224274] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9371), 1, + ACTIONS(10807), 1, anon_sym_COMMA, - ACTIONS(10914), 1, - anon_sym_RBRACE, - STATE(7001), 1, + ACTIONS(10809), 1, + anon_sym_RBRACK, + STATE(6744), 1, sym_comment, - STATE(7145), 1, - aux_sym_object_pattern_repeat1, - [228460] = 6, + STATE(6995), 1, + aux_sym_tuple_type_repeat1, + [224293] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10916), 1, + ACTIONS(10811), 1, anon_sym_LBRACE, - ACTIONS(10918), 1, + ACTIONS(10813), 1, anon_sym_LPAREN, - STATE(1456), 1, + STATE(1382), 1, sym_statement_block, - STATE(7002), 1, + STATE(6745), 1, sym_comment, - [228479] = 6, + [224312] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10920), 1, + ACTIONS(10815), 1, anon_sym_LPAREN, - ACTIONS(10922), 1, + ACTIONS(10817), 1, anon_sym_await, - STATE(106), 1, + STATE(137), 1, sym__for_header, - STATE(7003), 1, + STATE(6746), 1, sym_comment, - [228498] = 6, + [224331] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7769), 1, - anon_sym_AMP, - ACTIONS(7771), 1, - anon_sym_PIPE, - ACTIONS(7773), 1, - anon_sym_extends, - STATE(7004), 1, + ACTIONS(10819), 1, + sym_identifier, + ACTIONS(10821), 1, + anon_sym_SEMI, + ACTIONS(10823), 1, + sym__automatic_semicolon, + STATE(6747), 1, sym_comment, - [228517] = 6, + [224350] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10924), 1, - anon_sym_COMMA, - ACTIONS(10926), 1, - anon_sym_GT, - STATE(7005), 1, + ACTIONS(10825), 1, + sym_identifier, + ACTIONS(10827), 1, + anon_sym_SEMI, + ACTIONS(10829), 1, + sym__automatic_semicolon, + STATE(6748), 1, sym_comment, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - [228536] = 4, + [224369] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7006), 1, + STATE(6749), 1, sym_comment, - ACTIONS(10825), 3, + ACTIONS(10586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228551] = 6, + [224384] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10928), 1, - anon_sym_COMMA, - ACTIONS(10930), 1, - anon_sym_GT, - STATE(7007), 1, + STATE(6750), 1, sym_comment, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - [228570] = 4, + ACTIONS(10594), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224399] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7008), 1, + STATE(6751), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10604), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228585] = 5, + [224414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4383), 1, - anon_sym_LBRACE, - STATE(7009), 1, + STATE(6752), 1, sym_comment, - ACTIONS(5905), 2, + ACTIONS(10831), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [228602] = 5, + anon_sym_SEMI, + [224429] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10932), 1, - anon_sym_EQ, - STATE(7010), 1, - sym_comment, - ACTIONS(4699), 2, + ACTIONS(8579), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [228619] = 6, + ACTIONS(10833), 1, + anon_sym_RBRACE, + STATE(6753), 1, + sym_comment, + STATE(6928), 1, + aux_sym_object_repeat1, + [224448] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10935), 1, - anon_sym_LPAREN, - ACTIONS(10937), 1, - anon_sym_await, - STATE(129), 1, - sym__for_header, - STATE(7011), 1, + STATE(6754), 1, sym_comment, - [228638] = 4, + ACTIONS(10604), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7012), 1, + STATE(6755), 1, sym_comment, - ACTIONS(10882), 3, - sym__automatic_semicolon, + ACTIONS(10835), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [228653] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_implements, + [224478] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10939), 1, - sym_identifier, - ACTIONS(10941), 1, - anon_sym_SEMI, - ACTIONS(10943), 1, - sym__automatic_semicolon, - STATE(7013), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8579), 1, + anon_sym_COMMA, + ACTIONS(10833), 1, + anon_sym_RBRACE, + STATE(6756), 1, sym_comment, - [228672] = 6, + STATE(6979), 1, + aux_sym_object_repeat1, + [224497] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10945), 1, + ACTIONS(10837), 1, anon_sym_COMMA, - ACTIONS(10947), 1, + ACTIONS(10839), 1, anon_sym_RBRACK, - STATE(7014), 1, + STATE(6757), 1, sym_comment, - STATE(7080), 1, + STATE(6823), 1, aux_sym_tuple_type_repeat1, - [228691] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [224516] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10949), 1, - sym_identifier, - ACTIONS(10951), 1, - anon_sym_SEMI, - ACTIONS(10953), 1, - sym__automatic_semicolon, - STATE(7015), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6758), 1, sym_comment, - [228710] = 5, + ACTIONS(8689), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [224531] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4381), 1, - anon_sym_LBRACE, - STATE(7016), 1, + STATE(6759), 1, sym_comment, - ACTIONS(5903), 2, + ACTIONS(10841), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [228727] = 6, + anon_sym_SEMI, + [224546] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8264), 1, + ACTIONS(8223), 1, anon_sym_AMP, - ACTIONS(8266), 1, + ACTIONS(8225), 1, anon_sym_PIPE, - ACTIONS(8268), 1, + ACTIONS(8227), 1, anon_sym_extends, - STATE(7017), 1, + STATE(6760), 1, sym_comment, - [228746] = 6, + [224565] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6737), 1, - anon_sym_extends, - ACTIONS(10955), 1, - anon_sym_AMP, - ACTIONS(10957), 1, - anon_sym_PIPE, - STATE(7018), 1, + STATE(6761), 1, sym_comment, - [228765] = 6, + ACTIONS(10831), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224580] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10959), 1, + ACTIONS(10843), 1, anon_sym_COMMA, - ACTIONS(10961), 1, + ACTIONS(10845), 1, anon_sym_GT, - STATE(7019), 1, - sym_comment, - STATE(7029), 1, + STATE(6689), 1, aux_sym_type_arguments_repeat1, - [228784] = 4, + STATE(6762), 1, + sym_comment, + [224599] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7020), 1, + STATE(6763), 1, sym_comment, - ACTIONS(10963), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [228799] = 6, + ACTIONS(10847), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224614] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10965), 1, + ACTIONS(10849), 1, anon_sym_COMMA, - ACTIONS(10967), 1, + ACTIONS(10851), 1, anon_sym_GT, - STATE(7021), 1, - sym_comment, - STATE(7029), 1, + STATE(6689), 1, aux_sym_type_arguments_repeat1, - [228818] = 4, + STATE(6764), 1, + sym_comment, + [224633] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7022), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6586), 1, + anon_sym_RBRACK, + STATE(6765), 1, sym_comment, - ACTIONS(10969), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [228833] = 6, + STATE(6949), 1, + aux_sym_array_repeat1, + [224652] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10971), 1, + ACTIONS(10853), 1, anon_sym_COMMA, - ACTIONS(10973), 1, + ACTIONS(10855), 1, anon_sym_GT, - STATE(7023), 1, - sym_comment, - STATE(7029), 1, + STATE(6689), 1, aux_sym_type_arguments_repeat1, - [228852] = 4, + STATE(6766), 1, + sym_comment, + [224671] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7024), 1, - sym_comment, - ACTIONS(10882), 3, - sym__automatic_semicolon, + ACTIONS(10857), 1, anon_sym_COMMA, - anon_sym_SEMI, - [228867] = 4, + ACTIONS(10859), 1, + anon_sym_RBRACK, + STATE(6767), 1, + sym_comment, + STATE(6950), 1, + aux_sym_ui_object_array_repeat1, + [224690] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7025), 1, - sym_comment, - ACTIONS(10890), 3, - sym__automatic_semicolon, + ACTIONS(6448), 1, anon_sym_COMMA, - anon_sym_SEMI, - [228882] = 6, + ACTIONS(6586), 1, + anon_sym_RBRACK, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(6768), 1, + sym_comment, + [224709] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10975), 1, - anon_sym_COMMA, - ACTIONS(10977), 1, - anon_sym_RBRACK, - STATE(6913), 1, - aux_sym_tuple_type_repeat1, - STATE(7026), 1, + ACTIONS(8207), 1, + anon_sym_implements, + ACTIONS(10861), 1, + anon_sym_LBRACE, + STATE(6769), 1, sym_comment, - [228901] = 6, + STATE(8191), 1, + sym_implements_clause, + [224728] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(6449), 1, + ACTIONS(6537), 1, anon_sym_RPAREN, - STATE(7027), 1, + STATE(6770), 1, sym_comment, - STATE(7087), 1, + STATE(6830), 1, aux_sym_array_repeat1, - [228920] = 6, + [224747] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(6449), 1, + ACTIONS(6537), 1, anon_sym_RPAREN, - STATE(6369), 1, + STATE(6171), 1, aux_sym_array_repeat1, - STATE(7028), 1, + STATE(6771), 1, sym_comment, - [228939] = 5, + [224766] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9417), 1, - anon_sym_GT, - ACTIONS(10979), 1, - anon_sym_COMMA, - STATE(7029), 2, + ACTIONS(7003), 1, + sym__automatic_semicolon, + STATE(6772), 1, sym_comment, - aux_sym_type_arguments_repeat1, - [228956] = 4, + ACTIONS(7001), 2, + anon_sym_else, + anon_sym_while, + [224783] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7030), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(10863), 1, + anon_sym_RPAREN, + STATE(6773), 1, sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [228971] = 5, + STATE(7965), 1, + sym_type_annotation, + [224802] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4379), 1, - anon_sym_LBRACE, - STATE(7031), 1, + STATE(6774), 1, sym_comment, - ACTIONS(5901), 2, + ACTIONS(10865), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [228988] = 4, + anon_sym_SEMI, + [224817] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7032), 1, + STATE(6775), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229003] = 6, + [224832] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, - anon_sym_COMMA, - ACTIONS(10982), 1, - anon_sym_RBRACE, - STATE(7033), 1, + STATE(6776), 1, sym_comment, - STATE(7269), 1, - aux_sym_object_repeat1, - [229022] = 4, + ACTIONS(10867), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224847] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7034), 1, + STATE(6777), 1, sym_comment, - ACTIONS(10890), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229037] = 4, + [224862] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7035), 1, + STATE(6778), 1, sym_comment, - ACTIONS(10984), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229052] = 6, + [224877] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10355), 1, - anon_sym_COMMA, - ACTIONS(10986), 1, - anon_sym_RBRACK, - STATE(7036), 1, + ACTIONS(10869), 1, + sym_identifier, + ACTIONS(10871), 1, + anon_sym_SEMI, + ACTIONS(10873), 1, + sym__automatic_semicolon, + STATE(6779), 1, sym_comment, - STATE(7152), 1, - aux_sym_array_pattern_repeat1, - [229071] = 4, + [224896] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7037), 1, + STATE(6780), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10847), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229086] = 6, + [224911] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8753), 1, - anon_sym_LBRACE, - ACTIONS(8755), 1, - anon_sym_LBRACE_PIPE, - STATE(1756), 1, - sym_object_type, - STATE(7038), 1, + STATE(6781), 1, sym_comment, - [229105] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8661), 1, + ACTIONS(10465), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10982), 1, - anon_sym_RBRACE, - STATE(7039), 1, - sym_comment, - STATE(7288), 1, - aux_sym_object_repeat1, - [229124] = 4, + anon_sym_SEMI, + [224926] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7040), 1, + STATE(6782), 1, sym_comment, - ACTIONS(8601), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [229139] = 4, + ACTIONS(10753), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224941] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7041), 1, + STATE(6783), 1, sym_comment, - ACTIONS(10988), 3, + ACTIONS(10875), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229154] = 4, + [224956] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7042), 1, + STATE(6784), 1, sym_comment, - ACTIONS(10984), 3, + ACTIONS(10877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229169] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [224971] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(10990), 1, - anon_sym_COMMA, - ACTIONS(10992), 1, - anon_sym_RPAREN, - STATE(7043), 1, - sym_comment, - STATE(7312), 1, - aux_sym_formal_parameters_repeat1, - [229188] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - ACTIONS(10994), 1, - anon_sym_LPAREN, - STATE(7020), 1, - sym_statement_block, - STATE(7044), 1, + ACTIONS(10658), 1, + anon_sym_require, + ACTIONS(10879), 1, + sym_identifier, + STATE(6785), 1, sym_comment, - [229207] = 4, + STATE(6986), 1, + sym_nested_identifier, + [224990] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7045), 1, + STATE(6786), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10877), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229222] = 4, + [225005] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7046), 1, + STATE(6787), 1, sym_comment, - ACTIONS(10865), 3, + ACTIONS(10881), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229237] = 6, + [225020] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10996), 1, + ACTIONS(10883), 1, anon_sym_COMMA, - ACTIONS(10998), 1, - anon_sym_RPAREN, - STATE(7047), 1, + ACTIONS(10885), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(6788), 1, sym_comment, - STATE(7199), 1, - aux_sym_formal_parameters_repeat1, - [229256] = 4, + [225039] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7048), 1, + STATE(6789), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10586), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229271] = 4, + [225054] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7049), 1, - sym_comment, - ACTIONS(10882), 3, + ACTIONS(6997), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [229286] = 4, + STATE(6790), 1, + sym_comment, + ACTIONS(6995), 2, + anon_sym_else, + anon_sym_while, + [225071] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7050), 1, - sym_comment, - ACTIONS(10890), 3, - sym__automatic_semicolon, + ACTIONS(10887), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229301] = 6, + ACTIONS(10889), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(6791), 1, + sym_comment, + [225090] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6594), 1, - anon_sym_RBRACK, - STATE(7051), 1, + ACTIONS(10891), 1, + sym_identifier, + ACTIONS(10893), 1, + anon_sym_LBRACK, + ACTIONS(10895), 1, + sym_private_property_identifier, + STATE(6792), 1, sym_comment, - STATE(7348), 1, - aux_sym_array_repeat1, - [229320] = 5, + [225109] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6972), 1, + ACTIONS(6973), 1, sym__automatic_semicolon, - STATE(7052), 1, + STATE(6793), 1, sym_comment, - ACTIONS(6860), 2, + ACTIONS(6971), 2, anon_sym_else, anon_sym_while, - [229337] = 6, + [225126] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10640), 1, + anon_sym_LBRACE, + ACTIONS(10897), 1, + sym_identifier, + STATE(6147), 1, + sym_export_clause, + STATE(6794), 1, + sym_comment, + [225145] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10831), 1, - anon_sym_COMMA, - ACTIONS(11000), 1, - anon_sym_RBRACK, - STATE(7053), 1, + ACTIONS(9988), 1, + anon_sym_from, + ACTIONS(10642), 1, + anon_sym_as, + STATE(6795), 1, sym_comment, - STATE(7336), 1, - aux_sym_ui_object_array_repeat1, - [229356] = 5, + STATE(7771), 1, + sym__from_clause, + [225164] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6978), 1, - sym__automatic_semicolon, - STATE(7054), 1, + ACTIONS(10899), 1, + anon_sym_LPAREN, + ACTIONS(10901), 1, + anon_sym_await, + STATE(116), 1, + sym__for_header, + STATE(6796), 1, sym_comment, - ACTIONS(6864), 2, - anon_sym_else, - anon_sym_while, - [229373] = 6, + [225183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8757), 1, + STATE(6797), 1, + sym_comment, + ACTIONS(10753), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225198] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8653), 1, anon_sym_LBRACE, - ACTIONS(8759), 1, + ACTIONS(8655), 1, anon_sym_LBRACE_PIPE, - STATE(1582), 1, + STATE(1488), 1, sym_object_type, - STATE(7055), 1, + STATE(6798), 1, sym_comment, - [229392] = 6, + [225217] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, - anon_sym_COMMA, - ACTIONS(11002), 1, - anon_sym_RBRACE, - STATE(7056), 1, + STATE(6799), 1, sym_comment, - STATE(7288), 1, - aux_sym_object_repeat1, - [229411] = 6, + ACTIONS(10903), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [225232] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6594), 1, - anon_sym_RBRACK, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(7057), 1, + STATE(6800), 1, sym_comment, - [229430] = 6, + ACTIONS(10439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11004), 1, - anon_sym_COMMA, - ACTIONS(11006), 1, - anon_sym_RBRACK, - STATE(7058), 1, + STATE(6801), 1, sym_comment, - STATE(7118), 1, - aux_sym_tuple_type_repeat1, - [229449] = 4, + ACTIONS(10753), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225262] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7059), 1, + STATE(6802), 1, sym_comment, - ACTIONS(11008), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229464] = 4, + [225277] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7060), 1, + ACTIONS(10905), 1, + anon_sym_EQ, + STATE(6803), 1, sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, + ACTIONS(4685), 2, anon_sym_COMMA, - anon_sym_SEMI, - [229479] = 6, + anon_sym_RBRACK, + [225294] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8214), 1, - anon_sym_implements, - ACTIONS(11010), 1, + ACTIONS(4391), 1, anon_sym_LBRACE, - STATE(7061), 1, + STATE(6804), 1, sym_comment, - STATE(8610), 1, - sym_implements_clause, - [229498] = 4, + ACTIONS(5972), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [225311] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7062), 1, + STATE(6805), 1, sym_comment, - ACTIONS(10988), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229513] = 4, + [225326] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7063), 1, + ACTIONS(4399), 1, + anon_sym_LBRACE, + STATE(6806), 1, sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, + ACTIONS(5978), 2, anon_sym_COMMA, - anon_sym_SEMI, - [229528] = 6, + anon_sym_LBRACE_PIPE, + [225343] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, - anon_sym_COMMA, - ACTIONS(11012), 1, - anon_sym_RBRACE, - STATE(7064), 1, + ACTIONS(4501), 1, + anon_sym_LPAREN, + ACTIONS(10908), 1, + anon_sym_DOT, + STATE(4981), 1, + sym_arguments, + STATE(6807), 1, sym_comment, - STATE(7288), 1, - aux_sym_object_repeat1, - [229547] = 6, + [225362] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11014), 1, + ACTIONS(10910), 1, sym_identifier, - ACTIONS(11016), 1, + ACTIONS(10912), 1, anon_sym_LBRACK, - ACTIONS(11018), 1, + ACTIONS(10914), 1, sym_private_property_identifier, - STATE(7065), 1, + STATE(6808), 1, sym_comment, - [229566] = 4, + [225381] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7066), 1, + ACTIONS(4399), 1, + anon_sym_LBRACE, + STATE(6809), 1, sym_comment, - ACTIONS(10988), 3, - sym__automatic_semicolon, + ACTIONS(5978), 2, anon_sym_COMMA, - anon_sym_SEMI, - [229581] = 6, + anon_sym_LBRACE_PIPE, + [225398] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11020), 1, + ACTIONS(10916), 1, sym_identifier, - ACTIONS(11022), 1, + ACTIONS(10918), 1, anon_sym_LBRACK, - ACTIONS(11024), 1, + ACTIONS(10920), 1, sym_private_property_identifier, - STATE(7067), 1, + STATE(6810), 1, sym_comment, - [229600] = 4, + [225417] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7068), 1, + ACTIONS(4407), 1, + anon_sym_LBRACE, + STATE(6811), 1, sym_comment, - ACTIONS(10865), 3, - sym__automatic_semicolon, + ACTIONS(5980), 2, anon_sym_COMMA, - anon_sym_SEMI, - [229615] = 6, + anon_sym_LBRACE_PIPE, + [225434] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11026), 1, + ACTIONS(10922), 1, sym_identifier, - ACTIONS(11028), 1, + ACTIONS(10924), 1, anon_sym_LBRACK, - ACTIONS(11030), 1, + ACTIONS(10926), 1, sym_private_property_identifier, - STATE(7069), 1, + STATE(6812), 1, sym_comment, - [229634] = 4, + [225453] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7070), 1, - sym_comment, - ACTIONS(10890), 3, - sym__automatic_semicolon, + ACTIONS(10928), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229649] = 6, + ACTIONS(10930), 1, + anon_sym_GT, + STATE(6813), 1, + sym_comment, + STATE(7007), 1, + aux_sym_type_parameters_repeat1, + [225472] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11032), 1, + ACTIONS(10932), 1, sym_identifier, - ACTIONS(11034), 1, + ACTIONS(10934), 1, anon_sym_LBRACK, - ACTIONS(11036), 1, + ACTIONS(10936), 1, sym_private_property_identifier, - STATE(7071), 1, + STATE(6814), 1, + sym_comment, + [225491] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10938), 1, + sym_identifier, + ACTIONS(10940), 1, + anon_sym_LBRACK, + ACTIONS(10942), 1, + sym_private_property_identifier, + STATE(6815), 1, sym_comment, - [229668] = 5, + [225510] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8629), 1, - anon_sym_DOT, - STATE(7072), 1, - sym_comment, - ACTIONS(11038), 2, + ACTIONS(10944), 1, anon_sym_COMMA, - anon_sym_GT, - [229685] = 4, + ACTIONS(10947), 1, + anon_sym_RBRACE, + STATE(6816), 2, + sym_comment, + aux_sym_export_clause_repeat1, + [225527] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7073), 1, + STATE(6817), 1, sym_comment, - ACTIONS(10988), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229700] = 4, + [225542] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7074), 1, + STATE(6818), 1, sym_comment, - ACTIONS(11040), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229715] = 4, + [225557] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7075), 1, + STATE(6819), 1, sym_comment, - ACTIONS(10437), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229730] = 4, + [225572] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10949), 1, + sym_identifier, + ACTIONS(10951), 1, + anon_sym_LBRACK, + ACTIONS(10953), 1, + sym_private_property_identifier, + STATE(6820), 1, + sym_comment, + [225591] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7076), 1, + STATE(6821), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229745] = 4, + [225606] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7077), 1, + ACTIONS(4407), 1, + anon_sym_LBRACE, + STATE(6822), 1, sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, + ACTIONS(5980), 2, anon_sym_COMMA, - anon_sym_SEMI, - [229760] = 4, + anon_sym_LBRACE_PIPE, + [225623] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7078), 1, + ACTIONS(10955), 1, + anon_sym_COMMA, + ACTIONS(10957), 1, + anon_sym_RBRACK, + STATE(6823), 1, + sym_comment, + STATE(7015), 1, + aux_sym_tuple_type_repeat1, + [225642] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6824), 1, sym_comment, - ACTIONS(10890), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229775] = 4, + [225657] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7079), 1, + ACTIONS(10959), 1, + anon_sym_COMMA, + ACTIONS(10961), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(6825), 1, + sym_comment, + [225676] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6826), 1, sym_comment, - ACTIONS(11040), 3, + ACTIONS(10963), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229790] = 6, + [225691] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8727), 1, + sym_identifier, + STATE(6827), 1, + sym_comment, + ACTIONS(8731), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [225708] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10965), 1, + sym_identifier, + ACTIONS(10967), 1, + anon_sym_LBRACK, + ACTIONS(10969), 1, + sym_private_property_identifier, + STATE(6828), 1, + sym_comment, + [225727] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11042), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(11044), 1, - anon_sym_RBRACK, - STATE(6881), 1, - aux_sym_tuple_type_repeat1, - STATE(7080), 1, + ACTIONS(6582), 1, + anon_sym_RPAREN, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(6829), 1, sym_comment, - [229809] = 4, + [225746] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7081), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(10971), 1, + anon_sym_RPAREN, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(6830), 1, sym_comment, - ACTIONS(10865), 3, + [225765] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10973), 1, + sym_identifier, + ACTIONS(10975), 1, + anon_sym_LBRACK, + ACTIONS(10977), 1, + sym_private_property_identifier, + STATE(6831), 1, + sym_comment, + [225784] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6832), 1, + sym_comment, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229824] = 4, + [225799] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7082), 1, + STATE(6833), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229839] = 4, + [225814] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7083), 1, + STATE(6834), 1, sym_comment, - ACTIONS(11008), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229854] = 4, + [225829] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7084), 1, + STATE(6835), 1, sym_comment, - ACTIONS(11046), 3, + ACTIONS(10979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229869] = 5, + [225844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7065), 1, + STATE(6836), 1, + sym_comment, + ACTIONS(10757), 3, sym__automatic_semicolon, - STATE(7085), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [225859] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9516), 1, + anon_sym_COMMA, + ACTIONS(10981), 1, + anon_sym_RBRACE, + STATE(6837), 1, sym_comment, - ACTIONS(6982), 2, - anon_sym_else, - anon_sym_while, - [229886] = 4, + STATE(6840), 1, + aux_sym_object_pattern_repeat1, + [225878] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7086), 1, + STATE(6838), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229901] = 6, + [225893] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(9516), 1, anon_sym_COMMA, - ACTIONS(11048), 1, - anon_sym_RPAREN, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(7087), 1, + ACTIONS(10983), 1, + anon_sym_RBRACE, + STATE(6839), 1, sym_comment, - [229920] = 6, + STATE(6840), 1, + aux_sym_object_pattern_repeat1, + [225912] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, + ACTIONS(10985), 1, anon_sym_COMMA, - ACTIONS(11050), 1, + ACTIONS(10988), 1, anon_sym_RBRACE, - STATE(7088), 1, + STATE(6840), 2, sym_comment, - STATE(7288), 1, - aux_sym_object_repeat1, - [229939] = 4, + aux_sym_object_pattern_repeat1, + [225929] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7089), 1, + ACTIONS(9974), 1, + anon_sym_EQ, + STATE(6841), 1, + sym_comment, + ACTIONS(10990), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [225946] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6842), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10992), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229954] = 4, + [225961] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7090), 1, + ACTIONS(8535), 1, + anon_sym_DOT, + STATE(6843), 1, sym_comment, - ACTIONS(10865), 3, + ACTIONS(10994), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [229969] = 4, + [225978] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7091), 1, + ACTIONS(8533), 1, + anon_sym_DOT, + STATE(6844), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10994), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [229984] = 5, + [225995] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11052), 1, - anon_sym_LBRACE, - STATE(7092), 1, + ACTIONS(9976), 1, + anon_sym_COMMA, + ACTIONS(10996), 1, + anon_sym_RBRACK, + STATE(6845), 1, sym_comment, - ACTIONS(9618), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [230001] = 6, + STATE(6846), 1, + aux_sym_array_pattern_repeat1, + [226014] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, + ACTIONS(10990), 1, + anon_sym_RBRACK, + ACTIONS(10998), 1, anon_sym_COMMA, - ACTIONS(11054), 1, - anon_sym_RBRACE, - STATE(7093), 1, + STATE(6846), 2, sym_comment, - STATE(7288), 1, - aux_sym_object_repeat1, - [230020] = 4, + aux_sym_array_pattern_repeat1, + [226031] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7094), 1, + STATE(6847), 1, sym_comment, - ACTIONS(10984), 3, + ACTIONS(11001), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230035] = 6, + [226046] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - ACTIONS(11056), 1, - anon_sym_RPAREN, - STATE(7095), 1, + STATE(6848), 1, sym_comment, - STATE(8346), 1, - sym_type_annotation, - [230054] = 4, + ACTIONS(11003), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226061] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7096), 1, + STATE(6849), 1, sym_comment, - ACTIONS(10988), 3, + ACTIONS(10009), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230069] = 6, + [226076] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, + STATE(6850), 1, + sym_comment, + ACTIONS(10465), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226091] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11005), 1, anon_sym_COMMA, - ACTIONS(11058), 1, + ACTIONS(11007), 1, anon_sym_RBRACE, - STATE(7056), 1, - aux_sym_object_repeat1, - STATE(7097), 1, + STATE(6706), 1, + aux_sym_enum_body_repeat1, + STATE(6851), 1, sym_comment, - [230088] = 6, + [226110] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4533), 1, - anon_sym_LPAREN, - ACTIONS(11060), 1, - anon_sym_DOT, - STATE(5190), 1, - sym_arguments, - STATE(7098), 1, + ACTIONS(8653), 1, + anon_sym_LBRACE, + ACTIONS(8655), 1, + anon_sym_LBRACE_PIPE, + STATE(1393), 1, + sym_object_type, + STATE(6852), 1, sym_comment, - [230107] = 6, + [226129] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(124), 1, + anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11062), 1, - anon_sym_COMMA, - ACTIONS(11064), 1, - anon_sym_RPAREN, - STATE(7099), 1, + ACTIONS(8713), 1, + anon_sym_LBRACE_PIPE, + STATE(6853), 1, sym_comment, - STATE(7199), 1, - aux_sym_formal_parameters_repeat1, - [230126] = 5, + STATE(7800), 1, + sym_object_type, + [226148] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8528), 1, - anon_sym_DOT, - STATE(7100), 1, + ACTIONS(11009), 1, + anon_sym_COMMA, + ACTIONS(11011), 1, + anon_sym_RBRACE, + STATE(6854), 1, sym_comment, - ACTIONS(11066), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [230143] = 5, + STATE(6885), 1, + aux_sym_enum_body_repeat1, + [226167] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8532), 1, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(8365), 1, anon_sym_DOT, - STATE(7101), 1, + STATE(4160), 1, + sym_ui_object_initializer, + STATE(6855), 1, sym_comment, - ACTIONS(11066), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [230160] = 4, + [226186] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7102), 1, - sym_comment, - ACTIONS(10882), 3, + ACTIONS(6989), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [230175] = 6, + STATE(6856), 1, + sym_comment, + ACTIONS(6987), 2, + anon_sym_else, + anon_sym_while, + [226203] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11068), 1, + ACTIONS(4732), 1, anon_sym_LBRACE, - ACTIONS(11070), 1, - anon_sym_LPAREN, - STATE(1654), 1, - sym_statement_block, - STATE(7103), 1, + ACTIONS(9540), 1, + anon_sym_DOT, + STATE(4158), 1, + sym_ui_object_initializer, + STATE(6857), 1, sym_comment, - [230194] = 5, + [226222] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(7104), 1, + STATE(6858), 1, sym_comment, - ACTIONS(5839), 2, + ACTIONS(10465), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [230211] = 6, + anon_sym_SEMI, + [226237] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(11072), 1, - anon_sym_RBRACK, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(7105), 1, + ACTIONS(7115), 1, + sym__automatic_semicolon, + STATE(6859), 1, sym_comment, - [230230] = 4, + ACTIONS(7084), 2, + anon_sym_else, + anon_sym_while, + [226254] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7106), 1, + STATE(6860), 1, sym_comment, - ACTIONS(10890), 3, + ACTIONS(11013), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [230245] = 6, + [226269] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10831), 1, - anon_sym_COMMA, - ACTIONS(11074), 1, - anon_sym_RBRACK, - STATE(7107), 1, + STATE(6861), 1, sym_comment, - STATE(7264), 1, - aux_sym_ui_object_array_repeat1, - [230264] = 4, + ACTIONS(10504), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226284] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7108), 1, - sym_comment, - ACTIONS(10984), 3, + ACTIONS(7119), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [230279] = 6, + STATE(6862), 1, + sym_comment, + ACTIONS(7117), 2, + anon_sym_else, + anon_sym_while, + [226301] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8757), 1, + ACTIONS(4732), 1, anon_sym_LBRACE, - ACTIONS(8759), 1, - anon_sym_LBRACE_PIPE, - STATE(1619), 1, - sym_object_type, - STATE(7109), 1, + ACTIONS(10510), 1, + anon_sym_DOT, + STATE(4237), 1, + sym_ui_object_initializer, + STATE(6863), 1, + sym_comment, + [226320] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11015), 1, + sym_identifier, + ACTIONS(11017), 1, + anon_sym_COLON, + ACTIONS(11019), 1, + anon_sym_DOT, + STATE(6864), 1, sym_comment, - [230298] = 5, + [226339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4391), 1, + STATE(6865), 1, + sym_comment, + ACTIONS(10992), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226354] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11021), 1, anon_sym_LBRACE, - STATE(7110), 1, + STATE(6866), 1, sym_comment, - ACTIONS(5837), 2, - anon_sym_COMMA, + ACTIONS(9878), 2, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [230315] = 6, + [226371] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11076), 1, + ACTIONS(11023), 1, anon_sym_COMMA, - ACTIONS(11078), 1, - anon_sym_RBRACE, - STATE(7111), 1, + ACTIONS(11025), 1, + anon_sym_RPAREN, + STATE(6867), 1, sym_comment, - STATE(7142), 1, - aux_sym_enum_body_repeat1, - [230334] = 4, + STATE(7106), 1, + aux_sym_ui_signal_parameters_repeat1, + [226390] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7112), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + ACTIONS(11027), 1, + anon_sym_RPAREN, + STATE(6868), 1, sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [230349] = 4, + STATE(8081), 1, + sym_type_annotation, + [226409] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7113), 1, + STATE(6869), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230364] = 5, + [226424] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4391), 1, - anon_sym_LBRACE, - STATE(7114), 1, + STATE(6870), 1, sym_comment, - ACTIONS(5837), 2, + ACTIONS(10979), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [230381] = 4, + anon_sym_SEMI, + [226439] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7115), 1, + STATE(6871), 1, sym_comment, - ACTIONS(11080), 3, + ACTIONS(10831), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230396] = 6, + [226454] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11082), 1, + ACTIONS(10054), 1, anon_sym_COMMA, - ACTIONS(11084), 1, - anon_sym_GT, - STATE(6945), 1, - aux_sym_type_parameters_repeat1, - STATE(7116), 1, + ACTIONS(11029), 1, + anon_sym_RBRACE, + STATE(6872), 1, sym_comment, - [230415] = 6, + STATE(7115), 1, + aux_sym__qml_enum_body_repeat1, + [226473] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7833), 1, - anon_sym_LPAREN, - ACTIONS(11086), 1, - anon_sym_DOT, - STATE(5594), 1, - sym_arguments, - STATE(7117), 1, + ACTIONS(11033), 1, + anon_sym_COLON, + STATE(6873), 1, sym_comment, - [230434] = 6, + ACTIONS(11031), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [226490] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11088), 1, - anon_sym_COMMA, - ACTIONS(11090), 1, - anon_sym_RBRACK, - STATE(6881), 1, - aux_sym_tuple_type_repeat1, - STATE(7118), 1, + ACTIONS(11037), 1, + anon_sym_COLON, + STATE(6874), 1, sym_comment, - [230453] = 4, + ACTIONS(11035), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [226507] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7119), 1, + ACTIONS(11041), 1, + anon_sym_COLON, + STATE(6875), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(11039), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [230468] = 5, + [226524] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(7120), 1, + ACTIONS(8533), 1, + anon_sym_DOT, + STATE(6876), 1, sym_comment, - ACTIONS(5835), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [230485] = 6, + ACTIONS(11043), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [226541] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11092), 1, - anon_sym_COMMA, - ACTIONS(11094), 1, - anon_sym_RBRACK, - STATE(7121), 1, + ACTIONS(8535), 1, + anon_sym_DOT, + STATE(6877), 1, sym_comment, - STATE(7234), 1, - aux_sym_tuple_type_repeat1, - [230504] = 4, + ACTIONS(11043), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [226558] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7122), 1, + STATE(6878), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230519] = 6, + [226573] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8078), 1, - anon_sym_AMP, - ACTIONS(8082), 1, - anon_sym_extends, - ACTIONS(9351), 1, - anon_sym_PIPE, - STATE(7123), 1, + ACTIONS(11047), 1, + anon_sym_COLON, + STATE(6879), 1, sym_comment, - [230538] = 6, + ACTIONS(11045), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [226590] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11096), 1, + STATE(6880), 1, + sym_comment, + ACTIONS(10757), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(11098), 1, - anon_sym_GT, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - STATE(7124), 1, + anon_sym_SEMI, + [226605] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(6881), 1, sym_comment, - [230557] = 5, + ACTIONS(11049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226620] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8585), 1, + ACTIONS(10658), 1, + anon_sym_require, + ACTIONS(11051), 1, sym_identifier, - STATE(7125), 1, + STATE(6876), 1, + sym_nested_identifier, + STATE(6882), 1, sym_comment, - ACTIONS(8589), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [230574] = 6, + [226639] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11100), 1, + ACTIONS(11053), 1, anon_sym_COMMA, - ACTIONS(11102), 1, - anon_sym_GT, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - STATE(7126), 1, + ACTIONS(11055), 1, + anon_sym_RBRACE, + STATE(6883), 1, sym_comment, - [230593] = 4, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + [226658] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7127), 1, + STATE(6884), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10992), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230608] = 5, + [226673] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, - anon_sym_LBRACE, - STATE(7128), 1, - sym_comment, - ACTIONS(5835), 2, + ACTIONS(11057), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [230625] = 6, + ACTIONS(11059), 1, + anon_sym_RBRACE, + STATE(6885), 1, + sym_comment, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + [226692] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10634), 1, - anon_sym_LBRACE, - ACTIONS(11104), 1, + ACTIONS(11061), 1, sym_identifier, - STATE(6517), 1, - sym_export_clause, - STATE(7129), 1, + STATE(1865), 1, + sym_decorator_member_expression, + STATE(1999), 1, + sym_decorator_call_expression, + STATE(6886), 1, sym_comment, - [230644] = 6, + [226711] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, + ACTIONS(9988), 1, anon_sym_from, - ACTIONS(10636), 1, + ACTIONS(10642), 1, anon_sym_as, - STATE(7130), 1, + STATE(6887), 1, sym_comment, - STATE(7788), 1, + STATE(7169), 1, sym__from_clause, - [230663] = 6, + [226730] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11106), 1, - anon_sym_COMMA, - ACTIONS(11108), 1, - anon_sym_GT, - STATE(6970), 1, - aux_sym_type_parameters_repeat1, - STATE(7131), 1, + STATE(6888), 1, sym_comment, - [230682] = 6, + ACTIONS(10435), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226745] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11110), 1, + ACTIONS(10640), 1, + anon_sym_LBRACE, + ACTIONS(11063), 1, sym_identifier, - ACTIONS(11112), 1, - anon_sym_LBRACK, - ACTIONS(11114), 1, - sym_private_property_identifier, - STATE(7132), 1, + STATE(6261), 1, + sym_export_clause, + STATE(6889), 1, sym_comment, - [230701] = 4, + [226764] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7133), 1, - sym_comment, - ACTIONS(11116), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(11065), 1, + sym_identifier, + ACTIONS(11067), 1, anon_sym_SEMI, - [230716] = 4, + ACTIONS(11069), 1, + sym__automatic_semicolon, + STATE(6890), 1, + sym_comment, + [226783] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7134), 1, + STATE(6891), 1, sym_comment, - ACTIONS(10988), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230731] = 6, + [226798] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(6578), 1, + ACTIONS(6582), 1, anon_sym_RPAREN, - STATE(7135), 1, + STATE(6892), 1, sym_comment, - STATE(7240), 1, - aux_sym_array_repeat1, - [230750] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6578), 1, - anon_sym_RPAREN, - STATE(6369), 1, + STATE(6976), 1, aux_sym_array_repeat1, - STATE(7136), 1, - sym_comment, - [230769] = 4, + [226817] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7137), 1, + STATE(6893), 1, sym_comment, - ACTIONS(10865), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230784] = 4, + [226832] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7138), 1, - sym_comment, - ACTIONS(10882), 3, - sym__automatic_semicolon, + ACTIONS(9516), 1, anon_sym_COMMA, - anon_sym_SEMI, - [230799] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7139), 1, + ACTIONS(11071), 1, + anon_sym_RBRACE, + STATE(6894), 1, sym_comment, - ACTIONS(11008), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [230814] = 6, + STATE(7030), 1, + aux_sym_object_pattern_repeat1, + [226851] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11118), 1, + ACTIONS(9516), 1, anon_sym_COMMA, - ACTIONS(11120), 1, + ACTIONS(11071), 1, anon_sym_RBRACE, - STATE(7140), 1, + STATE(6840), 1, + aux_sym_object_pattern_repeat1, + STATE(6895), 1, sym_comment, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - [230833] = 6, + [226870] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9371), 1, - anon_sym_COMMA, - ACTIONS(11122), 1, - anon_sym_RBRACE, - STATE(7141), 1, + STATE(6896), 1, sym_comment, - STATE(7145), 1, - aux_sym_object_pattern_repeat1, - [230852] = 6, + ACTIONS(10992), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [226885] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11124), 1, - anon_sym_COMMA, - ACTIONS(11126), 1, - anon_sym_RBRACE, - STATE(7142), 1, + ACTIONS(10640), 1, + anon_sym_LBRACE, + ACTIONS(11073), 1, + sym_identifier, + STATE(6275), 1, + sym_export_clause, + STATE(6897), 1, sym_comment, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - [230871] = 5, + [226904] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8693), 1, - anon_sym_EQ, - STATE(7143), 1, + ACTIONS(9988), 1, + anon_sym_from, + ACTIONS(10642), 1, + anon_sym_as, + STATE(6898), 1, sym_comment, - ACTIONS(4765), 2, - anon_sym_in, - anon_sym_of, - [230888] = 6, + STATE(7233), 1, + sym__from_clause, + [226923] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9371), 1, + ACTIONS(9976), 1, anon_sym_COMMA, - ACTIONS(11128), 1, - anon_sym_RBRACE, - STATE(7144), 1, + ACTIONS(10040), 1, + anon_sym_RBRACK, + STATE(6899), 1, sym_comment, - STATE(7145), 1, - aux_sym_object_pattern_repeat1, - [230907] = 5, + STATE(7036), 1, + aux_sym_array_pattern_repeat1, + [226942] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11130), 1, - anon_sym_COMMA, - ACTIONS(11133), 1, - anon_sym_RBRACE, - STATE(7145), 2, + ACTIONS(7766), 1, + anon_sym_DQUOTE, + ACTIONS(7768), 1, + anon_sym_SQUOTE, + STATE(6900), 1, sym_comment, - aux_sym_object_pattern_repeat1, - [230924] = 6, + STATE(7996), 1, + sym_string, + [226961] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11135), 1, + ACTIONS(9976), 1, anon_sym_COMMA, - ACTIONS(11137), 1, - anon_sym_GT, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - STATE(7146), 1, + ACTIONS(10040), 1, + anon_sym_RBRACK, + STATE(6846), 1, + aux_sym_array_pattern_repeat1, + STATE(6901), 1, sym_comment, - [230943] = 6, + [226980] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11139), 1, - anon_sym_LPAREN, - ACTIONS(11141), 1, - anon_sym_await, - STATE(162), 1, - sym__for_header, - STATE(7147), 1, - sym_comment, - [230962] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10124), 1, - sym_identifier, - ACTIONS(10126), 1, - anon_sym_const, - STATE(6978), 1, - sym_type_parameter, - STATE(7148), 1, + ACTIONS(8579), 1, + anon_sym_COMMA, + ACTIONS(11075), 1, + anon_sym_RBRACE, + STATE(6902), 1, sym_comment, - [230981] = 4, + STATE(6979), 1, + aux_sym_object_repeat1, + [226999] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7149), 1, + STATE(6903), 1, sym_comment, - ACTIONS(10890), 3, + ACTIONS(10465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230996] = 5, + [227014] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10353), 1, + ACTIONS(7872), 1, + anon_sym_LT, + ACTIONS(11077), 1, anon_sym_EQ, - STATE(7150), 1, + STATE(6904), 1, sym_comment, - ACTIONS(11143), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [231013] = 6, + STATE(8421), 1, + sym_type_parameters, + [227033] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10355), 1, - anon_sym_COMMA, - ACTIONS(11145), 1, - anon_sym_RBRACK, - STATE(7151), 1, + ACTIONS(11079), 1, + anon_sym_EQ, + STATE(6905), 1, sym_comment, - STATE(7152), 1, - aux_sym_array_pattern_repeat1, - [231032] = 5, + ACTIONS(10487), 2, + anon_sym_COMMA, + anon_sym_from, + [227050] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11143), 1, - anon_sym_RBRACK, - ACTIONS(11147), 1, - anon_sym_COMMA, - STATE(7152), 2, + ACTIONS(8567), 1, + anon_sym_LBRACE, + ACTIONS(8573), 1, + anon_sym_LBRACE_PIPE, + STATE(4223), 1, + sym_object_type, + STATE(6906), 1, sym_comment, - aux_sym_array_pattern_repeat1, - [231049] = 4, + [227069] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7153), 1, + STATE(6907), 1, sym_comment, - ACTIONS(11150), 3, + ACTIONS(10992), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231064] = 4, + [227084] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7154), 1, + STATE(6908), 1, sym_comment, - ACTIONS(11152), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231079] = 4, + [227099] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7155), 1, + STATE(6909), 1, sym_comment, - ACTIONS(10309), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231094] = 4, + [227114] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7156), 1, + ACTIONS(11081), 1, + anon_sym_LPAREN, + ACTIONS(11083), 1, + anon_sym_await, + STATE(161), 1, + sym__for_header, + STATE(6910), 1, sym_comment, - ACTIONS(10890), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [231109] = 4, + [227133] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7157), 1, + STATE(6911), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10865), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231124] = 4, + [227148] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7158), 1, + STATE(6912), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231139] = 4, + [227163] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11085), 1, + sym_identifier, + ACTIONS(11087), 1, + anon_sym_SEMI, + ACTIONS(11089), 1, + sym__automatic_semicolon, + STATE(6913), 1, + sym_comment, + [227182] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7159), 1, + ACTIONS(11091), 1, + anon_sym_LPAREN, + ACTIONS(11093), 1, + anon_sym_await, + STATE(145), 1, + sym__for_header, + STATE(6914), 1, sym_comment, - ACTIONS(10882), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [231154] = 6, + [227201] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11154), 1, - anon_sym_else, - ACTIONS(11156), 1, - anon_sym_while, - STATE(7160), 1, + ACTIONS(9290), 1, + anon_sym_COMMA, + ACTIONS(11095), 1, + anon_sym_LBRACE, + STATE(6639), 1, + aux_sym_implements_clause_repeat1, + STATE(6915), 1, sym_comment, - STATE(8070), 1, - sym_else_clause, - [231173] = 4, + [227220] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7161), 1, + STATE(6916), 1, sym_comment, - ACTIONS(11008), 3, + ACTIONS(10992), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231188] = 6, + [227235] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11158), 1, + ACTIONS(10121), 1, sym_identifier, - ACTIONS(11160), 1, - anon_sym_COLON, - ACTIONS(11162), 1, - anon_sym_DOT, - STATE(7162), 1, + ACTIONS(10123), 1, + anon_sym_const, + STATE(6917), 1, sym_comment, - [231207] = 6, + STATE(6994), 1, + sym_type_parameter, + [227254] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10469), 1, - anon_sym_COMMA, - ACTIONS(11164), 1, - anon_sym_RPAREN, - STATE(6630), 1, - aux_sym_ui_signal_parameters_repeat1, - STATE(7163), 1, + STATE(6918), 1, sym_comment, - [231226] = 4, + ACTIONS(10753), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [227269] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7164), 1, + STATE(6919), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(11097), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231241] = 4, + [227284] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7165), 1, + STATE(6920), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(11099), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231256] = 4, + [227299] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7166), 1, + STATE(6921), 1, sym_comment, - ACTIONS(11166), 3, + ACTIONS(11097), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231271] = 4, + [227314] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7167), 1, + STATE(6922), 1, sym_comment, - ACTIONS(11168), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231286] = 4, + [227329] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7168), 1, + STATE(6923), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231301] = 5, + [227344] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11172), 1, - anon_sym_COLON, - STATE(7169), 1, + STATE(6924), 1, sym_comment, - ACTIONS(11170), 2, + ACTIONS(10753), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [231318] = 5, + [227359] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11176), 1, - anon_sym_COLON, - STATE(7170), 1, + STATE(6925), 1, sym_comment, - ACTIONS(11174), 2, + ACTIONS(10753), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [231335] = 4, + [227374] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7171), 1, + STATE(6926), 1, sym_comment, - ACTIONS(11008), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231350] = 4, + [227389] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7172), 1, - sym_comment, - ACTIONS(11178), 3, - anon_sym_default, + ACTIONS(8579), 1, + anon_sym_COMMA, + ACTIONS(11101), 1, anon_sym_RBRACE, - anon_sym_case, - [231365] = 5, + STATE(6927), 1, + sym_comment, + STATE(7063), 1, + aux_sym_object_repeat1, + [227408] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11182), 1, - anon_sym_COLON, - STATE(7173), 1, + ACTIONS(8579), 1, + anon_sym_COMMA, + ACTIONS(11103), 1, + anon_sym_RBRACE, + STATE(6928), 1, sym_comment, - ACTIONS(11180), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [231382] = 5, + STATE(6979), 1, + aux_sym_object_repeat1, + [227427] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11186), 1, - anon_sym_COLON, - STATE(7174), 1, + STATE(6929), 1, sym_comment, - ACTIONS(11184), 2, + ACTIONS(10757), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [231399] = 4, + [227442] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7175), 1, - sym_comment, - ACTIONS(10882), 3, - sym__automatic_semicolon, + ACTIONS(8579), 1, anon_sym_COMMA, - anon_sym_SEMI, - [231414] = 4, + ACTIONS(11101), 1, + anon_sym_RBRACE, + STATE(6930), 1, + sym_comment, + STATE(6979), 1, + aux_sym_object_repeat1, + [227461] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7176), 1, - sym_comment, - ACTIONS(11116), 3, - sym__automatic_semicolon, + ACTIONS(11105), 1, anon_sym_COMMA, - anon_sym_SEMI, - [231429] = 4, + ACTIONS(11108), 1, + anon_sym_RBRACK, + STATE(6931), 2, + sym_comment, + aux_sym_ui_object_array_repeat1, + [227478] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7177), 1, + STATE(6932), 1, sym_comment, - ACTIONS(11188), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231444] = 4, + [227493] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7178), 1, + STATE(6933), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231459] = 4, + [227508] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7179), 1, + STATE(6934), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231474] = 4, + [227523] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7180), 1, + STATE(6935), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231489] = 4, + [227538] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7181), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(11110), 1, + anon_sym_RPAREN, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(6936), 1, sym_comment, - ACTIONS(8716), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [231504] = 4, + [227557] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7182), 1, + STATE(6937), 1, sym_comment, - ACTIONS(11190), 3, + ACTIONS(10992), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231519] = 4, + [227572] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7183), 1, + STATE(6938), 1, sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [231534] = 4, + ACTIONS(8707), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [227587] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7184), 1, - sym_comment, - ACTIONS(10890), 3, - sym__automatic_semicolon, + ACTIONS(11112), 1, anon_sym_COMMA, - anon_sym_SEMI, - [231549] = 4, + ACTIONS(11114), 1, + anon_sym_RPAREN, + STATE(6939), 1, + sym_comment, + STATE(6966), 1, + aux_sym_formal_parameters_repeat1, + [227606] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7185), 1, - sym_comment, - ACTIONS(10890), 3, - sym__automatic_semicolon, + ACTIONS(11116), 1, anon_sym_COMMA, - anon_sym_SEMI, - [231564] = 4, + ACTIONS(11118), 1, + anon_sym_RPAREN, + STATE(6940), 1, + sym_comment, + STATE(7065), 1, + aux_sym_formal_parameters_repeat1, + [227625] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7186), 1, - sym_comment, - ACTIONS(10882), 3, - sym__automatic_semicolon, + ACTIONS(11120), 1, anon_sym_COMMA, - anon_sym_SEMI, - [231579] = 4, + ACTIONS(11122), 1, + anon_sym_RBRACK, + STATE(6941), 1, + sym_comment, + STATE(7015), 1, + aux_sym_tuple_type_repeat1, + [227644] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7187), 1, + ACTIONS(11124), 1, + anon_sym_LBRACE, + ACTIONS(11126), 1, + anon_sym_LPAREN, + STATE(3900), 1, + sym_statement_block, + STATE(6942), 1, sym_comment, - ACTIONS(10882), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [231594] = 4, + [227663] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7188), 1, - sym_comment, - ACTIONS(10906), 3, + ACTIONS(7017), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [231609] = 4, + STATE(6943), 1, + sym_comment, + ACTIONS(7015), 2, + anon_sym_else, + anon_sym_while, + [227680] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7189), 1, + STATE(6944), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231624] = 4, + [227695] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7190), 1, + STATE(6945), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231639] = 4, + [227710] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7191), 1, + STATE(6946), 1, sym_comment, - ACTIONS(10890), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231654] = 6, + [227725] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - ACTIONS(10636), 1, - anon_sym_as, - STATE(7192), 1, + STATE(6947), 1, sym_comment, - STATE(7404), 1, - sym__from_clause, - [231673] = 4, + ACTIONS(6677), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [227740] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7193), 1, + STATE(6948), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10963), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231688] = 6, + [227755] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11192), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(11194), 1, - anon_sym_RPAREN, - STATE(7047), 1, - aux_sym_formal_parameters_repeat1, - STATE(7194), 1, + ACTIONS(11128), 1, + anon_sym_RBRACK, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(6949), 1, sym_comment, - [231707] = 4, + [227774] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7195), 1, - sym_comment, - ACTIONS(10890), 3, - sym__automatic_semicolon, + ACTIONS(10857), 1, anon_sym_COMMA, - anon_sym_SEMI, - [231722] = 4, + ACTIONS(11130), 1, + anon_sym_RBRACK, + STATE(6931), 1, + aux_sym_ui_object_array_repeat1, + STATE(6950), 1, + sym_comment, + [227793] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7196), 1, + STATE(6951), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(6483), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231737] = 4, + [227808] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7197), 1, + STATE(6952), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10992), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231752] = 5, + [227823] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4413), 1, - anon_sym_LBRACE, - STATE(7198), 1, + STATE(6953), 1, sym_comment, - ACTIONS(5777), 2, + ACTIONS(10471), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [231769] = 5, + anon_sym_SEMI, + [227838] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11196), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(11199), 1, - anon_sym_RPAREN, - STATE(7199), 2, + ACTIONS(6675), 1, + anon_sym_RBRACK, + STATE(6954), 1, sym_comment, - aux_sym_formal_parameters_repeat1, - [231786] = 4, + STATE(7069), 1, + aux_sym_array_repeat1, + [227857] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7200), 1, + STATE(6955), 1, sym_comment, - ACTIONS(11008), 3, + ACTIONS(10753), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231801] = 6, + [227872] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, + ACTIONS(10857), 1, anon_sym_COMMA, - ACTIONS(11058), 1, - anon_sym_RBRACE, - STATE(7201), 1, + ACTIONS(11132), 1, + anon_sym_RBRACK, + STATE(6956), 1, sym_comment, - STATE(7288), 1, - aux_sym_object_repeat1, - [231820] = 5, + STATE(7071), 1, + aux_sym_ui_object_array_repeat1, + [227891] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4421), 1, - anon_sym_LBRACE, - STATE(7202), 1, - sym_comment, - ACTIONS(5775), 2, + ACTIONS(6448), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [231837] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10634), 1, - anon_sym_LBRACE, - ACTIONS(11201), 1, - sym_identifier, - STATE(6584), 1, - sym_export_clause, - STATE(7203), 1, + ACTIONS(6675), 1, + anon_sym_RBRACK, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(6957), 1, sym_comment, - [231856] = 5, + [227910] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4423), 1, + ACTIONS(11134), 1, anon_sym_LBRACE, - STATE(7204), 1, + STATE(6958), 1, sym_comment, - ACTIONS(5773), 2, - anon_sym_COMMA, + ACTIONS(9659), 2, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [231873] = 4, + [227927] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7205), 1, + ACTIONS(9570), 1, + anon_sym_LBRACE, + STATE(6959), 1, sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, + ACTIONS(9572), 2, anon_sym_COMMA, - anon_sym_SEMI, - [231888] = 4, + anon_sym_LBRACE_PIPE, + [227944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7206), 1, + STATE(6960), 1, sym_comment, - ACTIONS(11203), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [231903] = 4, + [227959] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7207), 1, + STATE(6961), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231918] = 4, + [227974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7208), 1, + STATE(6962), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231933] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(124), 1, - anon_sym_LBRACE, - ACTIONS(2987), 1, + [227989] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8568), 1, - anon_sym_LBRACE_PIPE, - STATE(7209), 1, - sym_comment, - STATE(7543), 1, - sym_object_type, - [231952] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8661), 1, - anon_sym_COMMA, - ACTIONS(11205), 1, - anon_sym_RBRACE, - STATE(7210), 1, + ACTIONS(11136), 1, + sym_identifier, + ACTIONS(11138), 1, + anon_sym_SEMI, + ACTIONS(11140), 1, + sym__automatic_semicolon, + STATE(6963), 1, sym_comment, - STATE(7288), 1, - aux_sym_object_repeat1, - [231971] = 6, + [228008] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7865), 1, - anon_sym_LT, - ACTIONS(11207), 1, - anon_sym_EQ, - STATE(7211), 1, + ACTIONS(11142), 1, + sym_identifier, + ACTIONS(11144), 1, + anon_sym_SEMI, + ACTIONS(11146), 1, + sym__automatic_semicolon, + STATE(6964), 1, sym_comment, - STATE(8596), 1, - sym_type_parameters, - [231990] = 4, + [228027] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7212), 1, - sym_comment, - ACTIONS(10882), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(11148), 1, + sym_identifier, + ACTIONS(11150), 1, anon_sym_SEMI, - [232005] = 4, + ACTIONS(11152), 1, + sym__automatic_semicolon, + STATE(6965), 1, + sym_comment, + [228046] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7213), 1, - sym_comment, - ACTIONS(10865), 3, - sym__automatic_semicolon, + ACTIONS(11154), 1, anon_sym_COMMA, - anon_sym_SEMI, - [232020] = 6, + ACTIONS(11157), 1, + anon_sym_RPAREN, + STATE(6966), 2, + sym_comment, + aux_sym_formal_parameters_repeat1, + [228063] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11209), 1, + ACTIONS(10121), 1, sym_identifier, - ACTIONS(11211), 1, - anon_sym_LBRACK, - ACTIONS(11213), 1, - sym_private_property_identifier, - STATE(7214), 1, + ACTIONS(10123), 1, + anon_sym_const, + STATE(6967), 1, sym_comment, - [232039] = 4, + STATE(7816), 1, + sym_type_parameter, + [228082] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7215), 1, + STATE(6968), 1, sym_comment, - ACTIONS(11215), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [232054] = 4, + ACTIONS(8735), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [228097] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7216), 1, + ACTIONS(7804), 1, + anon_sym_LPAREN, + ACTIONS(11159), 1, + anon_sym_DOT, + STATE(5506), 1, + sym_arguments, + STATE(6969), 1, sym_comment, - ACTIONS(11215), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [232069] = 4, + [228116] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7217), 1, + STATE(6970), 1, sym_comment, - ACTIONS(10420), 3, + ACTIONS(11161), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232084] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11217), 1, - anon_sym_LBRACE, - STATE(7218), 1, - sym_comment, - ACTIONS(9397), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [232101] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11219), 1, - sym_identifier, - ACTIONS(11221), 1, - anon_sym_LBRACK, - ACTIONS(11223), 1, - sym_private_property_identifier, - STATE(7219), 1, - sym_comment, - [232120] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11225), 1, - sym_identifier, - ACTIONS(11227), 1, - anon_sym_SEMI, - ACTIONS(11229), 1, - sym__automatic_semicolon, - STATE(7220), 1, - sym_comment, - [232139] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11231), 1, - sym_identifier, - ACTIONS(11233), 1, - anon_sym_SEMI, - ACTIONS(11235), 1, - sym__automatic_semicolon, - STATE(7221), 1, - sym_comment, - [232158] = 4, + [228131] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7222), 1, + STATE(6971), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232173] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11237), 1, - sym_identifier, - ACTIONS(11239), 1, - anon_sym_LBRACK, - ACTIONS(11241), 1, - sym_private_property_identifier, - STATE(7223), 1, - sym_comment, - [232192] = 4, + [228146] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7224), 1, + STATE(6972), 1, sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [232207] = 4, + ACTIONS(11163), 3, + anon_sym_default, + anon_sym_RBRACE, + anon_sym_case, + [228161] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7225), 1, + STATE(6973), 1, sym_comment, - ACTIONS(11008), 3, + ACTIONS(10963), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232222] = 4, + [228176] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7226), 1, + STATE(6974), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232237] = 4, + [228191] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7227), 1, + STATE(6975), 1, sym_comment, - ACTIONS(10890), 3, + ACTIONS(10443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232252] = 6, + [228206] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10302), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(11243), 1, - anon_sym_RBRACE, - STATE(6615), 1, - aux_sym__qml_enum_body_repeat1, - STATE(7228), 1, + ACTIONS(11165), 1, + anon_sym_RPAREN, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(6976), 1, sym_comment, - [232271] = 4, + [228225] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7229), 1, + STATE(6977), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232286] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11245), 1, - sym_identifier, - ACTIONS(11247), 1, - anon_sym_SEMI, - ACTIONS(11249), 1, - sym__automatic_semicolon, - STATE(7230), 1, - sym_comment, - [232305] = 4, + [228240] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7231), 1, + STATE(6978), 1, sym_comment, - ACTIONS(10890), 3, + ACTIONS(10963), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232320] = 4, + [228255] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7232), 1, - sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, + ACTIONS(11167), 1, anon_sym_COMMA, - anon_sym_SEMI, - [232335] = 5, + ACTIONS(11170), 1, + anon_sym_RBRACE, + STATE(6979), 2, + sym_comment, + aux_sym_object_repeat1, + [228272] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11251), 1, - anon_sym_EQ, - STATE(7233), 1, + STATE(6980), 1, sym_comment, - ACTIONS(10489), 2, + ACTIONS(10471), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [232352] = 6, + anon_sym_SEMI, + [228287] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11253), 1, + ACTIONS(11172), 1, anon_sym_COMMA, - ACTIONS(11255), 1, + ACTIONS(11174), 1, anon_sym_RBRACK, - STATE(6881), 1, + STATE(6733), 1, aux_sym_tuple_type_repeat1, - STATE(7234), 1, + STATE(6981), 1, sym_comment, - [232371] = 4, + [228306] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7235), 1, + ACTIONS(8535), 1, + anon_sym_DOT, + STATE(6982), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(11176), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [232386] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11257), 1, - sym_identifier, - ACTIONS(11259), 1, - anon_sym_SEMI, - ACTIONS(11261), 1, - sym__automatic_semicolon, - STATE(7236), 1, - sym_comment, - [232405] = 4, + [228323] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7237), 1, + STATE(6983), 1, sym_comment, - ACTIONS(10890), 3, + ACTIONS(10465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232420] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11263), 1, - sym_identifier, - ACTIONS(11265), 1, - anon_sym_LBRACK, - ACTIONS(11267), 1, - sym_private_property_identifier, - STATE(7238), 1, - sym_comment, - [232439] = 4, + [228338] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7239), 1, + STATE(6984), 1, sym_comment, - ACTIONS(10882), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [232454] = 6, + ACTIONS(11178), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [228353] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(11180), 1, anon_sym_COMMA, - ACTIONS(11269), 1, - anon_sym_RPAREN, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(7240), 1, + ACTIONS(11183), 1, + anon_sym_RBRACE, + STATE(6985), 2, sym_comment, - [232473] = 4, + aux_sym_enum_body_repeat1, + [228370] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7241), 1, + ACTIONS(8533), 1, + anon_sym_DOT, + STATE(6986), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(11176), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [232488] = 4, + [228387] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7242), 1, + ACTIONS(7786), 1, + anon_sym_AMP, + ACTIONS(7792), 1, + anon_sym_PIPE, + ACTIONS(7794), 1, + anon_sym_extends, + STATE(6987), 1, sym_comment, - ACTIONS(10984), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [232503] = 5, + [228406] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9580), 1, - anon_sym_LBRACE, - STATE(7243), 1, + STATE(6988), 1, sym_comment, - ACTIONS(9582), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [232520] = 6, + ACTIONS(11185), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [228421] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11271), 1, + ACTIONS(11187), 1, sym_identifier, - ACTIONS(11273), 1, + ACTIONS(11189), 1, anon_sym_LBRACK, - ACTIONS(11275), 1, + ACTIONS(11191), 1, sym_private_property_identifier, - STATE(7244), 1, + STATE(6989), 1, sym_comment, - [232539] = 4, + [228440] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7245), 1, + ACTIONS(4543), 1, + anon_sym_LPAREN, + ACTIONS(11193), 1, + anon_sym_DOT, + STATE(4985), 1, + sym_arguments, + STATE(6990), 1, sym_comment, - ACTIONS(10984), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [232554] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [228459] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(7246), 1, - sym_comment, - ACTIONS(10439), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [232569] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7247), 1, + ACTIONS(11195), 1, + sym_identifier, + ACTIONS(11197), 1, + anon_sym_LBRACK, + ACTIONS(11199), 1, + sym_private_property_identifier, + STATE(6991), 1, sym_comment, - ACTIONS(10882), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [232584] = 5, + [228478] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7136), 1, - sym__automatic_semicolon, - STATE(7248), 1, + ACTIONS(8749), 1, + anon_sym_LBRACE, + ACTIONS(8751), 1, + anon_sym_LBRACE_PIPE, + STATE(1578), 1, + sym_object_type, + STATE(6992), 1, sym_comment, - ACTIONS(7096), 2, - anon_sym_else, - anon_sym_while, - [232601] = 5, + [228497] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8528), 1, - anon_sym_DOT, - STATE(7249), 1, + STATE(6993), 1, sym_comment, - ACTIONS(11277), 2, + ACTIONS(10471), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [232618] = 4, + [228512] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7250), 1, - sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, + ACTIONS(11201), 1, anon_sym_COMMA, - anon_sym_SEMI, - [232633] = 5, + ACTIONS(11203), 1, + anon_sym_GT, + STATE(6994), 1, + sym_comment, + STATE(7122), 1, + aux_sym_type_parameters_repeat1, + [228531] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8532), 1, - anon_sym_DOT, - STATE(7251), 1, + ACTIONS(11205), 1, + anon_sym_COMMA, + ACTIONS(11207), 1, + anon_sym_RBRACK, + STATE(6995), 1, sym_comment, - ACTIONS(11277), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [232650] = 6, + STATE(7015), 1, + aux_sym_tuple_type_repeat1, + [228550] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_LBRACE, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8568), 1, - anon_sym_LBRACE_PIPE, - STATE(7252), 1, + ACTIONS(11209), 1, + sym_identifier, + ACTIONS(11211), 1, + anon_sym_LBRACK, + ACTIONS(11213), 1, + sym_private_property_identifier, + STATE(6996), 1, sym_comment, - STATE(7420), 1, - sym_object_type, - [232669] = 4, + [228569] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7253), 1, - sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, + ACTIONS(11215), 1, anon_sym_COMMA, - anon_sym_SEMI, - [232684] = 6, + ACTIONS(11217), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(6997), 1, + sym_comment, + [228588] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11279), 1, + ACTIONS(11219), 1, anon_sym_COMMA, - ACTIONS(11281), 1, - anon_sym_RBRACE, - STATE(7254), 1, + ACTIONS(11221), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(6998), 1, sym_comment, - STATE(7272), 1, - aux_sym_enum_body_repeat1, - [232703] = 6, + [228607] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11283), 1, - anon_sym_COMMA, - ACTIONS(11285), 1, - anon_sym_RBRACE, - STATE(7255), 1, + ACTIONS(8567), 1, + anon_sym_LBRACE, + ACTIONS(8573), 1, + anon_sym_LBRACE_PIPE, + STATE(4097), 1, + sym_object_type, + STATE(6999), 1, sym_comment, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - [232722] = 6, + [228626] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11287), 1, + ACTIONS(11223), 1, anon_sym_COMMA, - ACTIONS(11289), 1, - anon_sym_RBRACE, - STATE(7256), 1, + ACTIONS(11225), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(7000), 1, sym_comment, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - [232741] = 6, + [228645] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11291), 1, + ACTIONS(11227), 1, sym_identifier, - ACTIONS(11293), 1, + ACTIONS(11229), 1, anon_sym_LBRACK, - ACTIONS(11295), 1, + ACTIONS(11231), 1, sym_private_property_identifier, - STATE(7257), 1, + STATE(7001), 1, sym_comment, - [232760] = 4, + [228664] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7258), 1, + STATE(7002), 1, sym_comment, - ACTIONS(10865), 3, + ACTIONS(10979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232775] = 6, + [228679] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11297), 1, - anon_sym_COMMA, - ACTIONS(11299), 1, - anon_sym_RBRACE, - STATE(7255), 1, - aux_sym_enum_body_repeat1, - STATE(7259), 1, + STATE(7003), 1, sym_comment, - [232794] = 4, + ACTIONS(10433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [228694] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7260), 1, - sym_comment, - ACTIONS(10890), 3, - sym__automatic_semicolon, + ACTIONS(11233), 1, anon_sym_COMMA, - anon_sym_SEMI, - [232809] = 4, + ACTIONS(11235), 1, + anon_sym_RBRACE, + STATE(7004), 1, + sym_comment, + STATE(7102), 1, + aux_sym_enum_body_repeat1, + [228713] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7261), 1, + STATE(7005), 1, sym_comment, - ACTIONS(11008), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232824] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11301), 1, - sym_identifier, - STATE(3652), 1, - sym_decorator_member_expression, - STATE(3994), 1, - sym_decorator_call_expression, - STATE(7262), 1, - sym_comment, - [232843] = 6, + [228728] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8797), 1, - anon_sym_LBRACE, - ACTIONS(8799), 1, - anon_sym_LBRACE_PIPE, - STATE(1184), 1, - sym_object_type, - STATE(7263), 1, + STATE(7006), 1, sym_comment, - [232862] = 5, + ACTIONS(10443), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [228743] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11303), 1, + ACTIONS(11237), 1, anon_sym_COMMA, - ACTIONS(11306), 1, - anon_sym_RBRACK, - STATE(7264), 2, + ACTIONS(11239), 1, + anon_sym_GT, + STATE(6663), 1, + aux_sym_type_parameters_repeat1, + STATE(7007), 1, sym_comment, - aux_sym_ui_object_array_repeat1, - [232879] = 5, + [228762] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8532), 1, - anon_sym_DOT, - STATE(7265), 1, + STATE(7008), 1, sym_comment, - ACTIONS(11308), 2, + ACTIONS(10435), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [232896] = 5, + [228777] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8528), 1, - anon_sym_DOT, - STATE(7266), 1, + STATE(7009), 1, sym_comment, - ACTIONS(11308), 2, + ACTIONS(10433), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [232913] = 6, + [228792] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8797), 1, - anon_sym_LBRACE, - ACTIONS(8799), 1, - anon_sym_LBRACE_PIPE, - STATE(1145), 1, - sym_object_type, - STATE(7267), 1, + STATE(7010), 1, sym_comment, - [232932] = 4, + ACTIONS(10757), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [228807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7268), 1, + STATE(7011), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [232947] = 6, + [228822] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8661), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(11310), 1, - anon_sym_RBRACE, - STATE(7269), 1, + ACTIONS(6487), 1, + anon_sym_RPAREN, + STATE(6657), 1, + aux_sym_array_repeat1, + STATE(7012), 1, sym_comment, - STATE(7288), 1, - aux_sym_object_repeat1, - [232966] = 6, + [228841] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11312), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(11314), 1, - anon_sym_RBRACE, - STATE(7270), 1, + ACTIONS(6487), 1, + anon_sym_RPAREN, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(7013), 1, sym_comment, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - [232985] = 5, + [228860] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11316), 1, - anon_sym_COMMA, - ACTIONS(11319), 1, - anon_sym_RBRACE, - STATE(7271), 2, + ACTIONS(8787), 1, + anon_sym_EQ, + STATE(7014), 1, sym_comment, - aux_sym_enum_body_repeat1, - [233002] = 6, + ACTIONS(4778), 2, + anon_sym_in, + anon_sym_of, + [228877] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11321), 1, + ACTIONS(11241), 1, anon_sym_COMMA, - ACTIONS(11323), 1, - anon_sym_RBRACE, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - STATE(7272), 1, + ACTIONS(11244), 1, + anon_sym_RBRACK, + STATE(7015), 2, sym_comment, - [233021] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + aux_sym_tuple_type_repeat1, + [228894] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(7273), 1, - sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [233036] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7274), 1, + ACTIONS(11246), 1, + sym__glimmer_template_content, + ACTIONS(11249), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(7016), 2, sym_comment, - ACTIONS(10890), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [233051] = 6, + aux_sym_glimmer_template_repeat1, + [228911] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11325), 1, - anon_sym_COMMA, - ACTIONS(11327), 1, - anon_sym_RBRACE, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - STATE(7275), 1, + ACTIONS(11251), 1, + anon_sym_EQ, + STATE(7017), 1, sym_comment, - [233070] = 6, + ACTIONS(4778), 2, + anon_sym_in, + anon_sym_of, + [228928] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11329), 1, - anon_sym_COMMA, - ACTIONS(11331), 1, - anon_sym_RBRACE, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - STATE(7276), 1, + ACTIONS(11253), 1, + sym_identifier, + ACTIONS(11255), 1, + anon_sym_LBRACK, + ACTIONS(11257), 1, + sym_private_property_identifier, + STATE(7018), 1, sym_comment, - [233089] = 4, + [228947] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7277), 1, + STATE(7019), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10433), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233104] = 4, + [228962] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7278), 1, + STATE(7020), 1, sym_comment, - ACTIONS(10906), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233119] = 6, + [228977] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11333), 1, + ACTIONS(11259), 1, anon_sym_COMMA, - ACTIONS(11335), 1, + ACTIONS(11261), 1, anon_sym_RBRACE, - STATE(7275), 1, + STATE(6985), 1, aux_sym_enum_body_repeat1, - STATE(7279), 1, + STATE(7021), 1, sym_comment, - [233138] = 6, + [228996] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8655), 1, - anon_sym_LBRACE, - ACTIONS(8657), 1, - anon_sym_LBRACE_PIPE, - STATE(1341), 1, - sym_object_type, - STATE(7280), 1, + STATE(7022), 1, sym_comment, - [233157] = 5, + ACTIONS(10433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229011] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8532), 1, - anon_sym_DOT, - STATE(7281), 1, + ACTIONS(11263), 1, + anon_sym_COMMA, + ACTIONS(11265), 1, + anon_sym_RBRACE, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + STATE(7023), 1, sym_comment, - ACTIONS(11337), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [233174] = 4, + [229030] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7282), 1, + STATE(7024), 1, sym_comment, - ACTIONS(11008), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233189] = 5, + [229045] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(124), 1, + anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8528), 1, - anon_sym_DOT, - STATE(7283), 1, + ACTIONS(8713), 1, + anon_sym_LBRACE_PIPE, + STATE(7025), 1, sym_comment, - ACTIONS(11337), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [233206] = 6, + STATE(7699), 1, + sym_object_type, + [229064] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11339), 1, - anon_sym_LBRACE, - ACTIONS(11341), 1, - anon_sym_LPAREN, - STATE(1066), 1, - sym_statement_block, - STATE(7284), 1, + ACTIONS(9516), 1, + anon_sym_COMMA, + ACTIONS(11267), 1, + anon_sym_RBRACE, + STATE(6840), 1, + aux_sym_object_pattern_repeat1, + STATE(7026), 1, sym_comment, - [233225] = 5, + [229083] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11343), 1, + ACTIONS(11269), 1, anon_sym_LBRACE, - STATE(7285), 1, + ACTIONS(11271), 1, + anon_sym_LPAREN, + STATE(1060), 1, + sym_statement_block, + STATE(7027), 1, sym_comment, - ACTIONS(9754), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [233242] = 4, + [229102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7286), 1, + STATE(7028), 1, sym_comment, - ACTIONS(10882), 3, + ACTIONS(10992), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233257] = 6, + [229117] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(11345), 1, - anon_sym_RPAREN, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(7287), 1, + STATE(7029), 1, sym_comment, - [233276] = 5, + ACTIONS(10437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229132] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11347), 1, + ACTIONS(9516), 1, anon_sym_COMMA, - ACTIONS(11350), 1, + ACTIONS(11273), 1, anon_sym_RBRACE, - STATE(7288), 2, + STATE(6840), 1, + aux_sym_object_pattern_repeat1, + STATE(7030), 1, sym_comment, - aux_sym_object_repeat1, - [233293] = 4, + [229151] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7289), 1, + STATE(7031), 1, sym_comment, - ACTIONS(10865), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233308] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [229166] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11352), 1, - sym_identifier, - ACTIONS(11354), 1, - anon_sym_LBRACK, - ACTIONS(11356), 1, - sym_private_property_identifier, - STATE(7290), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11275), 1, + anon_sym_COMMA, + ACTIONS(11277), 1, + anon_sym_RBRACE, + STATE(7021), 1, + aux_sym_enum_body_repeat1, + STATE(7032), 1, sym_comment, - [233327] = 6, + [229185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4741), 1, - anon_sym_LBRACE, - ACTIONS(9885), 1, - anon_sym_DOT, - STATE(7291), 1, + STATE(7033), 1, sym_comment, - STATE(7597), 1, - sym_ui_object_initializer, - [233346] = 6, + ACTIONS(10992), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229200] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8655), 1, + ACTIONS(8723), 1, anon_sym_LBRACE, - ACTIONS(8657), 1, + ACTIONS(8725), 1, anon_sym_LBRACE_PIPE, - STATE(1308), 1, + STATE(1127), 1, sym_object_type, - STATE(7292), 1, + STATE(7034), 1, sym_comment, - [233365] = 4, + [229219] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7293), 1, + STATE(7035), 1, sym_comment, - ACTIONS(6601), 3, + ACTIONS(11279), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233380] = 6, + [229234] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9976), 1, + anon_sym_COMMA, + ACTIONS(11281), 1, + anon_sym_RBRACK, + STATE(6846), 1, + aux_sym_array_pattern_repeat1, + STATE(7036), 1, + sym_comment, + [229253] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11358), 1, + ACTIONS(11283), 1, anon_sym_COMMA, - ACTIONS(11360), 1, + ACTIONS(11285), 1, anon_sym_GT, - STATE(7029), 1, + STATE(6689), 1, aux_sym_type_arguments_repeat1, - STATE(7294), 1, + STATE(7037), 1, sym_comment, - [233399] = 5, + [229272] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7072), 1, - sym__automatic_semicolon, - STATE(7295), 1, + ACTIONS(8533), 1, + anon_sym_DOT, + STATE(7038), 1, sym_comment, - ACTIONS(6988), 2, - anon_sym_else, - anon_sym_while, - [233416] = 6, + ACTIONS(11287), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [229289] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11362), 1, + ACTIONS(11289), 1, anon_sym_COMMA, - ACTIONS(11364), 1, + ACTIONS(11291), 1, anon_sym_GT, - STATE(7029), 1, + STATE(6689), 1, aux_sym_type_arguments_repeat1, - STATE(7296), 1, + STATE(7039), 1, sym_comment, - [233435] = 5, + [229308] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7067), 1, - sym__automatic_semicolon, - STATE(7297), 1, + ACTIONS(8535), 1, + anon_sym_DOT, + STATE(7040), 1, sym_comment, - ACTIONS(6986), 2, - anon_sym_else, - anon_sym_while, - [233452] = 6, + ACTIONS(11287), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [229325] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11366), 1, + ACTIONS(11293), 1, anon_sym_COMMA, - ACTIONS(11368), 1, + ACTIONS(11295), 1, anon_sym_GT, - STATE(7029), 1, + STATE(6689), 1, aux_sym_type_arguments_repeat1, - STATE(7298), 1, + STATE(7041), 1, sym_comment, - [233471] = 5, + [229344] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7061), 1, - sym__automatic_semicolon, - STATE(7299), 1, + ACTIONS(4431), 1, + anon_sym_LBRACE, + STATE(7042), 1, sym_comment, - ACTIONS(6968), 2, - anon_sym_else, - anon_sym_while, - [233488] = 6, + ACTIONS(6066), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [229361] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(6603), 1, + ACTIONS(6450), 1, anon_sym_RPAREN, - STATE(7300), 1, + STATE(7043), 1, sym_comment, - STATE(7338), 1, + STATE(7081), 1, aux_sym_array_repeat1, - [233507] = 6, + [229380] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(6603), 1, + ACTIONS(6450), 1, anon_sym_RPAREN, - STATE(6369), 1, + STATE(6171), 1, aux_sym_array_repeat1, - STATE(7301), 1, + STATE(7044), 1, sym_comment, - [233526] = 5, + [229399] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6970), 1, - sym__automatic_semicolon, - STATE(7302), 1, + ACTIONS(10658), 1, + anon_sym_require, + ACTIONS(11297), 1, + sym_identifier, + STATE(6465), 1, + sym_nested_identifier, + STATE(7045), 1, sym_comment, - ACTIONS(6850), 2, - anon_sym_else, - anon_sym_while, - [233543] = 4, + [229418] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7303), 1, + ACTIONS(4429), 1, + anon_sym_LBRACE, + STATE(7046), 1, sym_comment, - ACTIONS(10865), 3, - sym__automatic_semicolon, + ACTIONS(6064), 2, anon_sym_COMMA, - anon_sym_SEMI, - [233558] = 6, + anon_sym_LBRACE_PIPE, + [229435] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(8579), 1, anon_sym_COMMA, - ACTIONS(6616), 1, - anon_sym_RPAREN, - STATE(6369), 1, - aux_sym_array_repeat1, - STATE(7304), 1, + ACTIONS(11299), 1, + anon_sym_RBRACE, + STATE(6979), 1, + aux_sym_object_repeat1, + STATE(7047), 1, sym_comment, - [233577] = 6, + [229454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, - anon_sym_COMMA, - ACTIONS(6616), 1, - anon_sym_RPAREN, - STATE(7287), 1, - aux_sym_array_repeat1, - STATE(7305), 1, + STATE(7048), 1, sym_comment, - [233596] = 6, + ACTIONS(10992), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229469] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11370), 1, + ACTIONS(11301), 1, anon_sym_COMMA, - ACTIONS(11372), 1, - anon_sym_GT, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - STATE(7306), 1, + ACTIONS(11303), 1, + anon_sym_RBRACE, + STATE(6468), 1, + aux_sym_named_imports_repeat1, + STATE(7049), 1, sym_comment, - [233615] = 6, + [229488] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11374), 1, - anon_sym_COMMA, - ACTIONS(11376), 1, - anon_sym_GT, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - STATE(7307), 1, + ACTIONS(8723), 1, + anon_sym_LBRACE, + ACTIONS(8725), 1, + anon_sym_LBRACE_PIPE, + STATE(1147), 1, + sym_object_type, + STATE(7050), 1, sym_comment, - [233634] = 6, + [229507] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11378), 1, - anon_sym_COMMA, - ACTIONS(11380), 1, - anon_sym_GT, - STATE(7029), 1, - aux_sym_type_arguments_repeat1, - STATE(7308), 1, + ACTIONS(10206), 1, + anon_sym_as, + STATE(7051), 1, sym_comment, - [233653] = 5, + ACTIONS(10487), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [229524] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5741), 1, + ACTIONS(4427), 1, anon_sym_LBRACE, - STATE(7309), 1, + STATE(7052), 1, sym_comment, - ACTIONS(5743), 2, + ACTIONS(6048), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [233670] = 4, + [229541] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7310), 1, + STATE(7053), 1, sym_comment, - ACTIONS(10865), 3, + ACTIONS(10979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233685] = 4, + [229556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7311), 1, + STATE(7054), 1, sym_comment, - ACTIONS(8649), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [233700] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11382), 1, + ACTIONS(10757), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(11384), 1, - anon_sym_RPAREN, - STATE(7199), 1, - aux_sym_formal_parameters_repeat1, - STATE(7312), 1, - sym_comment, - [233719] = 5, + anon_sym_SEMI, + [229571] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5769), 1, + ACTIONS(11305), 1, anon_sym_LBRACE, - STATE(7313), 1, + STATE(7055), 1, sym_comment, - ACTIONS(5771), 2, - anon_sym_COMMA, + ACTIONS(9383), 2, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [233736] = 4, + [229588] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7314), 1, + STATE(7056), 1, sym_comment, - ACTIONS(11008), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233751] = 4, + [229603] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7315), 1, + STATE(7057), 1, sym_comment, - ACTIONS(10420), 3, + ACTIONS(10471), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233766] = 6, + [229618] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11386), 1, - anon_sym_LBRACE, - ACTIONS(11388), 1, - anon_sym_LPAREN, - STATE(1053), 1, - sym_statement_block, - STATE(7316), 1, - sym_comment, - [233785] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11390), 1, - sym_identifier, - ACTIONS(11392), 1, - anon_sym_LBRACK, - ACTIONS(11394), 1, - sym_private_property_identifier, - STATE(7317), 1, + STATE(7058), 1, sym_comment, - [233804] = 4, + ACTIONS(10471), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229633] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7318), 1, + STATE(7059), 1, sym_comment, - ACTIONS(10984), 3, + ACTIONS(10757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233819] = 4, + [229648] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7319), 1, + ACTIONS(9974), 1, + anon_sym_EQ, + STATE(7060), 1, sym_comment, - ACTIONS(11396), 3, - sym__automatic_semicolon, + ACTIONS(11307), 2, anon_sym_COMMA, - anon_sym_SEMI, - [233834] = 4, + anon_sym_RBRACE, + [229665] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7320), 1, + STATE(7061), 1, sym_comment, - ACTIONS(11396), 3, + ACTIONS(10992), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233849] = 4, + [229680] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7321), 1, + STATE(7062), 1, sym_comment, - ACTIONS(10890), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233864] = 4, + [229695] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7322), 1, - sym_comment, - ACTIONS(11398), 3, - sym__automatic_semicolon, + ACTIONS(8579), 1, anon_sym_COMMA, - anon_sym_SEMI, - [233879] = 4, + ACTIONS(11309), 1, + anon_sym_RBRACE, + STATE(6979), 1, + aux_sym_object_repeat1, + STATE(7063), 1, + sym_comment, + [229714] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7323), 1, + STATE(7064), 1, sym_comment, - ACTIONS(10984), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [233894] = 6, + [229729] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11311), 1, + anon_sym_COMMA, + ACTIONS(11313), 1, + anon_sym_RPAREN, + STATE(6966), 1, + aux_sym_formal_parameters_repeat1, + STATE(7065), 1, + sym_comment, + [229748] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11400), 1, + ACTIONS(11315), 1, anon_sym_LBRACE, - ACTIONS(11402), 1, + ACTIONS(11317), 1, anon_sym_LPAREN, - STATE(4071), 1, + STATE(1421), 1, sym_statement_block, - STATE(7324), 1, + STATE(7066), 1, + sym_comment, + [229767] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7067), 1, sym_comment, - [233913] = 6, + ACTIONS(10992), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229782] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1569), 1, + ACTIONS(1575), 1, anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8597), 1, + ACTIONS(8683), 1, anon_sym_LBRACE_PIPE, - STATE(6160), 1, + STATE(6036), 1, sym_object_type, - STATE(7325), 1, + STATE(7068), 1, sym_comment, - [233932] = 4, + [229801] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7326), 1, - sym_comment, - ACTIONS(11008), 3, - sym__automatic_semicolon, + ACTIONS(6448), 1, anon_sym_COMMA, - anon_sym_SEMI, - [233947] = 4, + ACTIONS(11319), 1, + anon_sym_RBRACK, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(7069), 1, + sym_comment, + [229820] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7327), 1, - sym_comment, - ACTIONS(11404), 3, - sym__automatic_semicolon, + ACTIONS(11321), 1, anon_sym_COMMA, - anon_sym_SEMI, - [233962] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(11323), 1, + anon_sym_RBRACE, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + STATE(7070), 1, + sym_comment, + [229839] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11406), 1, - sym_identifier, - ACTIONS(11408), 1, - anon_sym_SEMI, - ACTIONS(11410), 1, - sym__automatic_semicolon, - STATE(7328), 1, - sym_comment, - [233981] = 6, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(10857), 1, + anon_sym_COMMA, + ACTIONS(11325), 1, + anon_sym_RBRACK, + STATE(6931), 1, + aux_sym_ui_object_array_repeat1, + STATE(7071), 1, + sym_comment, + [229858] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11412), 1, - sym_identifier, - ACTIONS(11414), 1, - anon_sym_SEMI, - ACTIONS(11416), 1, - sym__automatic_semicolon, - STATE(7329), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11327), 1, + anon_sym_COMMA, + ACTIONS(11329), 1, + anon_sym_RBRACE, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + STATE(7072), 1, sym_comment, - [234000] = 4, + [229877] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7330), 1, - sym_comment, - ACTIONS(11008), 3, - sym__automatic_semicolon, + ACTIONS(11331), 1, anon_sym_COMMA, - anon_sym_SEMI, - [234015] = 4, + ACTIONS(11333), 1, + anon_sym_RBRACE, + STATE(7070), 1, + aux_sym_enum_body_repeat1, + STATE(7073), 1, + sym_comment, + [229896] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7331), 1, + STATE(7074), 1, sym_comment, - ACTIONS(11008), 3, + ACTIONS(10443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [234030] = 6, + [229911] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9086), 1, - anon_sym_COMMA, - ACTIONS(11418), 1, + ACTIONS(8695), 1, anon_sym_LBRACE, - STATE(6597), 1, - aux_sym_implements_clause_repeat1, - STATE(7332), 1, + ACTIONS(8697), 1, + anon_sym_LBRACE_PIPE, + STATE(1236), 1, + sym_object_type, + STATE(7075), 1, sym_comment, - [234049] = 4, + [229930] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7333), 1, + STATE(7076), 1, sym_comment, - ACTIONS(10420), 3, + ACTIONS(10439), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [234064] = 4, + [229945] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7334), 1, + STATE(7077), 1, sym_comment, - ACTIONS(6653), 3, + ACTIONS(10979), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [234079] = 4, + anon_sym_SEMI, + [229960] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7335), 1, + ACTIONS(8533), 1, + anon_sym_DOT, + STATE(7078), 1, sym_comment, - ACTIONS(11420), 3, + ACTIONS(11335), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [234094] = 6, + [229977] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10831), 1, + ACTIONS(8579), 1, anon_sym_COMMA, - ACTIONS(11422), 1, - anon_sym_RBRACK, - STATE(7264), 1, - aux_sym_ui_object_array_repeat1, - STATE(7336), 1, + ACTIONS(11337), 1, + anon_sym_RBRACE, + STATE(6532), 1, + aux_sym_object_repeat1, + STATE(7079), 1, sym_comment, - [234113] = 4, + [229996] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7337), 1, + STATE(7080), 1, sym_comment, - ACTIONS(10865), 3, + ACTIONS(10435), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [234128] = 6, + [230011] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(11424), 1, + ACTIONS(11339), 1, anon_sym_RPAREN, - STATE(6369), 1, + STATE(6171), 1, aux_sym_array_repeat1, - STATE(7338), 1, + STATE(7081), 1, sym_comment, - [234147] = 4, + [230030] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7339), 1, + ACTIONS(8535), 1, + anon_sym_DOT, + STATE(7082), 1, sym_comment, - ACTIONS(11404), 3, + ACTIONS(11335), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [234162] = 4, + [230047] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7340), 1, + STATE(7083), 1, sym_comment, - ACTIONS(11426), 3, + ACTIONS(10757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [234177] = 4, + [230062] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7341), 1, + STATE(7084), 1, sym_comment, - ACTIONS(11428), 3, + ACTIONS(10437), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [234192] = 4, + [230077] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7342), 1, - sym_comment, - ACTIONS(11426), 3, - sym__automatic_semicolon, + ACTIONS(11341), 1, anon_sym_COMMA, - anon_sym_SEMI, - [234207] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7343), 1, + ACTIONS(11343), 1, + anon_sym_RBRACE, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + STATE(7085), 1, sym_comment, - ACTIONS(10984), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [234222] = 4, + [230096] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7344), 1, + STATE(7086), 1, sym_comment, - ACTIONS(11396), 3, + ACTIONS(11279), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [234237] = 4, + [230111] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7345), 1, - sym_comment, - ACTIONS(10984), 3, - sym__automatic_semicolon, + ACTIONS(11345), 1, anon_sym_COMMA, - anon_sym_SEMI, - [234252] = 4, + ACTIONS(11347), 1, + anon_sym_RBRACE, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + STATE(7087), 1, + sym_comment, + [230130] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7346), 1, + STATE(7088), 1, sym_comment, - ACTIONS(10984), 3, + ACTIONS(11349), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [234267] = 4, + [230145] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7347), 1, - sym_comment, - ACTIONS(11008), 3, - sym__automatic_semicolon, + ACTIONS(8579), 1, anon_sym_COMMA, - anon_sym_SEMI, - [234282] = 6, + ACTIONS(11337), 1, + anon_sym_RBRACE, + STATE(6979), 1, + aux_sym_object_repeat1, + STATE(7089), 1, + sym_comment, + [230164] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6447), 1, + ACTIONS(6448), 1, anon_sym_COMMA, - ACTIONS(11430), 1, - anon_sym_RBRACK, - STATE(6369), 1, + ACTIONS(11351), 1, + anon_sym_RPAREN, + STATE(6171), 1, aux_sym_array_repeat1, - STATE(7348), 1, + STATE(7090), 1, + sym_comment, + [230183] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11353), 1, + sym_identifier, + STATE(7091), 1, sym_comment, - [234301] = 5, + STATE(7721), 1, + sym_nested_type_identifier, + STATE(8171), 1, + sym_nested_identifier, + [230202] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8528), 1, + ACTIONS(8535), 1, anon_sym_DOT, - STATE(7349), 1, + STATE(7092), 1, sym_comment, - ACTIONS(11432), 2, + ACTIONS(11355), 2, sym__automatic_semicolon, anon_sym_SEMI, - [234318] = 5, + [230219] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8532), 1, + ACTIONS(8533), 1, anon_sym_DOT, - STATE(7350), 1, + STATE(7093), 1, sym_comment, - ACTIONS(11432), 2, + ACTIONS(11355), 2, sym__automatic_semicolon, anon_sym_SEMI, - [234335] = 4, + [230236] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7351), 1, - sym_comment, - ACTIONS(10906), 3, - sym__automatic_semicolon, + ACTIONS(11357), 1, anon_sym_COMMA, - anon_sym_SEMI, - [234350] = 4, + ACTIONS(11359), 1, + anon_sym_RBRACK, + STATE(6941), 1, + aux_sym_tuple_type_repeat1, + STATE(7094), 1, + sym_comment, + [230255] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7352), 1, + ACTIONS(11361), 1, + anon_sym_DASH, + ACTIONS(11363), 1, + sym_number, + STATE(7095), 1, sym_comment, - ACTIONS(11008), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [234365] = 6, + STATE(7711), 1, + sym__qml_enum_negative_number, + [230274] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11434), 1, + ACTIONS(11365), 1, anon_sym_COMMA, - ACTIONS(11436), 1, - anon_sym_RBRACE, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - STATE(7353), 1, + ACTIONS(11367), 1, + anon_sym_RPAREN, + STATE(6544), 1, + aux_sym_formal_parameters_repeat1, + STATE(7096), 1, sym_comment, - [234384] = 4, + [230293] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7354), 1, - sym_comment, - ACTIONS(11438), 3, - sym__automatic_semicolon, + ACTIONS(11369), 1, anon_sym_COMMA, - anon_sym_SEMI, - [234399] = 5, + ACTIONS(11371), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(7097), 1, + sym_comment, + [230312] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6980), 1, - sym__automatic_semicolon, - STATE(7355), 1, + ACTIONS(8085), 1, + anon_sym_AMP, + ACTIONS(8089), 1, + anon_sym_extends, + ACTIONS(9387), 1, + anon_sym_PIPE, + STATE(7098), 1, sym_comment, - ACTIONS(6868), 2, - anon_sym_else, - anon_sym_while, - [234416] = 6, + [230331] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11440), 1, - anon_sym_COMMA, - ACTIONS(11442), 1, - anon_sym_RBRACE, - STATE(7271), 1, - aux_sym_enum_body_repeat1, - STATE(7356), 1, + ACTIONS(8695), 1, + anon_sym_LBRACE, + ACTIONS(8697), 1, + anon_sym_LBRACE_PIPE, + STATE(1254), 1, + sym_object_type, + STATE(7099), 1, sym_comment, - [234435] = 5, + [230350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6912), 1, - sym__automatic_semicolon, - STATE(7357), 1, + STATE(7100), 1, sym_comment, - ACTIONS(6858), 2, - anon_sym_else, - anon_sym_while, - [234452] = 6, + ACTIONS(10992), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230365] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1569), 1, + ACTIONS(1575), 1, anon_sym_LBRACE, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8597), 1, + ACTIONS(8683), 1, anon_sym_LBRACE_PIPE, - STATE(6129), 1, + STATE(5977), 1, sym_object_type, - STATE(7358), 1, + STATE(7101), 1, sym_comment, - [234471] = 5, + [230384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6924), 1, - sym__automatic_semicolon, - STATE(7359), 1, + ACTIONS(11373), 1, + anon_sym_COMMA, + ACTIONS(11375), 1, + anon_sym_RBRACE, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + STATE(7102), 1, sym_comment, - ACTIONS(6856), 2, - anon_sym_else, - anon_sym_while, - [234488] = 6, + [230403] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11444), 1, + ACTIONS(11377), 1, anon_sym_COMMA, - ACTIONS(11446), 1, + ACTIONS(11379), 1, anon_sym_RBRACE, - STATE(7353), 1, - aux_sym_enum_body_repeat1, - STATE(7360), 1, + STATE(7103), 1, sym_comment, - [234507] = 4, + STATE(7121), 1, + aux_sym_enum_body_repeat1, + [230422] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7361), 1, + ACTIONS(11381), 1, + anon_sym_EQ, + STATE(7104), 1, sym_comment, - ACTIONS(10984), 3, - sym__automatic_semicolon, + ACTIONS(10487), 2, anon_sym_COMMA, - anon_sym_SEMI, - [234522] = 4, + anon_sym_from, + [230439] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7362), 1, + STATE(7105), 1, sym_comment, - ACTIONS(11448), 2, + ACTIONS(10435), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [234536] = 5, + [230454] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3255), 1, - sym_statement_block, - STATE(7363), 1, + ACTIONS(11023), 1, + anon_sym_COMMA, + ACTIONS(11383), 1, + anon_sym_RPAREN, + STATE(6632), 1, + aux_sym_ui_signal_parameters_repeat1, + STATE(7106), 1, sym_comment, - [234552] = 4, + [230473] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7364), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6627), 1, + anon_sym_RPAREN, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(7107), 1, sym_comment, - ACTIONS(9686), 2, - anon_sym_else, - anon_sym_while, - [234566] = 4, + [230492] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7365), 1, + STATE(7108), 1, sym_comment, - ACTIONS(9610), 2, - anon_sym_else, - anon_sym_while, - [234580] = 5, + ACTIONS(10560), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [230507] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3518), 1, - sym_class_body, - STATE(7366), 1, + STATE(7109), 1, sym_comment, - [234596] = 5, + ACTIONS(10439), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230522] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8408), 1, - anon_sym_LBRACE, - STATE(1329), 1, - sym_class_body, - STATE(7367), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6627), 1, + anon_sym_RPAREN, + STATE(7090), 1, + aux_sym_array_repeat1, + STATE(7110), 1, sym_comment, - [234612] = 5, + [230541] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3228), 1, - sym_statement_block, - STATE(7368), 1, + ACTIONS(11385), 1, + anon_sym_COMMA, + ACTIONS(11387), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(7111), 1, sym_comment, - [234628] = 5, + [230560] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8408), 1, - anon_sym_LBRACE, - STATE(1327), 1, - sym_class_body, - STATE(7369), 1, + ACTIONS(11389), 1, + anon_sym_COMMA, + ACTIONS(11391), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(7112), 1, sym_comment, - [234644] = 4, + [230579] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7370), 1, + ACTIONS(10054), 1, + anon_sym_COMMA, + ACTIONS(11393), 1, + anon_sym_RBRACE, + STATE(6625), 1, + aux_sym__qml_enum_body_repeat1, + STATE(7113), 1, sym_comment, - ACTIONS(11450), 2, - anon_sym_else, - anon_sym_while, - [234658] = 5, + [230598] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3164), 1, - sym_statement_block, - STATE(7371), 1, + ACTIONS(11395), 1, + anon_sym_COMMA, + ACTIONS(11397), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(7114), 1, sym_comment, - [234674] = 5, + [230617] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11452), 1, - anon_sym_SEMI, - ACTIONS(11454), 1, - sym__automatic_semicolon, - STATE(7372), 1, + ACTIONS(10054), 1, + anon_sym_COMMA, + ACTIONS(11399), 1, + anon_sym_RBRACE, + STATE(6625), 1, + aux_sym__qml_enum_body_repeat1, + STATE(7115), 1, sym_comment, - [234690] = 5, + [230636] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - STATE(3515), 1, - sym_statement_block, - STATE(7373), 1, + ACTIONS(11401), 1, + anon_sym_COMMA, + ACTIONS(11403), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(7116), 1, sym_comment, - [234706] = 5, + [230655] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(6083), 1, - sym_class_body, - STATE(7374), 1, + STATE(7117), 1, sym_comment, - [234722] = 5, + ACTIONS(10757), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230670] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3173), 1, - sym_statement_block, - STATE(7375), 1, + ACTIONS(11405), 1, + anon_sym_COMMA, + ACTIONS(11407), 1, + anon_sym_GT, + STATE(6689), 1, + aux_sym_type_arguments_repeat1, + STATE(7118), 1, sym_comment, - [234738] = 4, + [230689] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7376), 1, + ACTIONS(11409), 1, + anon_sym_COMMA, + ACTIONS(11411), 1, + anon_sym_RBRACE, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + STATE(7119), 1, sym_comment, - ACTIONS(11456), 2, - anon_sym_else, - anon_sym_while, - [234752] = 5, + [230708] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, + ACTIONS(11413), 1, anon_sym_LBRACE, - STATE(6136), 1, - sym_class_body, - STATE(7377), 1, + ACTIONS(11415), 1, + anon_sym_LPAREN, + STATE(1023), 1, + sym_statement_block, + STATE(7120), 1, sym_comment, - [234768] = 5, + [230727] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - STATE(3519), 1, - sym_statement_block, - STATE(7378), 1, + ACTIONS(11417), 1, + anon_sym_COMMA, + ACTIONS(11419), 1, + anon_sym_RBRACE, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + STATE(7121), 1, sym_comment, - [234784] = 5, + [230746] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3513), 1, - sym_class_body, - STATE(7379), 1, + ACTIONS(11421), 1, + anon_sym_COMMA, + ACTIONS(11423), 1, + anon_sym_GT, + STATE(6663), 1, + aux_sym_type_parameters_repeat1, + STATE(7122), 1, sym_comment, - [234800] = 5, + [230765] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(5976), 1, - sym_class_body, - STATE(7380), 1, + STATE(7123), 1, sym_comment, - [234816] = 5, + ACTIONS(10992), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230780] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3521), 1, - sym_class_body, - STATE(7381), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6640), 1, + anon_sym_RPAREN, + STATE(6936), 1, + aux_sym_array_repeat1, + STATE(7124), 1, sym_comment, - [234832] = 5, + [230799] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11339), 1, - anon_sym_LBRACE, - STATE(1074), 1, - sym_statement_block, - STATE(7382), 1, + ACTIONS(11425), 1, + anon_sym_DQUOTE, + ACTIONS(11427), 1, + anon_sym_SQUOTE, + STATE(6592), 1, + sym_string, + STATE(7125), 1, sym_comment, - [234848] = 5, + [230818] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11458), 1, - anon_sym_SEMI, - ACTIONS(11460), 1, - sym__automatic_semicolon, - STATE(7383), 1, + ACTIONS(6448), 1, + anon_sym_COMMA, + ACTIONS(6640), 1, + anon_sym_RPAREN, + STATE(6171), 1, + aux_sym_array_repeat1, + STATE(7126), 1, sym_comment, - [234864] = 5, + [230837] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8408), 1, - anon_sym_LBRACE, - STATE(1317), 1, - sym_class_body, - STATE(7384), 1, + STATE(7127), 1, sym_comment, - [234880] = 4, + ACTIONS(11279), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230852] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7385), 1, + STATE(7128), 1, sym_comment, - ACTIONS(11462), 2, + ACTIONS(11429), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [234894] = 4, + [230867] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7386), 1, + STATE(7129), 1, sym_comment, - ACTIONS(11464), 2, + ACTIONS(10439), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [234908] = 4, + [230882] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7387), 1, + STATE(7130), 1, sym_comment, - ACTIONS(6472), 2, + ACTIONS(11431), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [234922] = 5, + anon_sym_SEMI, + [230897] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(6025), 1, - sym_class_body, - STATE(7388), 1, + STATE(7131), 1, sym_comment, - [234938] = 5, + ACTIONS(10433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230912] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11339), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_statement_block, - STATE(7389), 1, + STATE(7132), 1, sym_comment, - [234954] = 5, + ACTIONS(11433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230927] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3171), 1, - sym_statement_block, - STATE(7390), 1, + STATE(7133), 1, sym_comment, - [234970] = 4, + ACTIONS(11431), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230942] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7391), 1, + STATE(7134), 1, sym_comment, - ACTIONS(11466), 2, - anon_sym_else, - anon_sym_while, - [234984] = 4, + ACTIONS(10433), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230957] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7392), 1, + ACTIONS(11435), 1, + anon_sym_COMMA, + ACTIONS(11437), 1, + anon_sym_RBRACE, + STATE(6985), 1, + aux_sym_enum_body_repeat1, + STATE(7135), 1, sym_comment, - ACTIONS(11468), 2, - anon_sym_else, - anon_sym_while, - [234998] = 5, + [230976] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8408), 1, - anon_sym_LBRACE, - STATE(1378), 1, - sym_class_body, - STATE(7393), 1, + STATE(7136), 1, sym_comment, - [235014] = 4, + ACTIONS(11429), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230991] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7394), 1, + STATE(7137), 1, sym_comment, - ACTIONS(11470), 2, + ACTIONS(11439), 3, sym__automatic_semicolon, + anon_sym_from, anon_sym_SEMI, - [235028] = 5, + [231006] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11472), 1, - anon_sym_SEMI, - ACTIONS(11474), 1, - sym__automatic_semicolon, - STATE(7395), 1, + ACTIONS(11441), 1, + anon_sym_COMMA, + ACTIONS(11443), 1, + anon_sym_RBRACE, + STATE(6538), 1, + aux_sym_export_clause_repeat1, + STATE(7138), 1, sym_comment, - [235044] = 5, + [231025] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(139), 1, - sym_parenthesized_expression, - STATE(7396), 1, + ACTIONS(11445), 1, + anon_sym_as, + STATE(7139), 1, sym_comment, - [235060] = 5, + ACTIONS(11447), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [231042] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11478), 1, - anon_sym_LBRACE, - STATE(963), 1, - sym_statement_block, - STATE(7397), 1, + ACTIONS(11449), 1, + sym_identifier, + ACTIONS(11451), 1, + anon_sym_SEMI, + ACTIONS(11453), 1, + sym__automatic_semicolon, + STATE(7140), 1, sym_comment, - [235076] = 4, + [231061] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7398), 1, + ACTIONS(11455), 1, + anon_sym_LBRACE, + STATE(1365), 1, + sym_switch_body, + STATE(7141), 1, sym_comment, - ACTIONS(9704), 2, - anon_sym_else, - anon_sym_while, - [235090] = 4, + [231077] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7399), 1, + ACTIONS(11457), 1, + anon_sym_LPAREN, + STATE(7142), 1, sym_comment, - ACTIONS(6193), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [235104] = 4, + STATE(7159), 1, + sym_parenthesized_expression, + [231093] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7400), 1, + ACTIONS(8249), 1, + anon_sym_LBRACE, + STATE(3950), 1, + sym_class_body, + STATE(7143), 1, sym_comment, - ACTIONS(9665), 2, - anon_sym_else, - anon_sym_while, - [235118] = 4, + [231109] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7401), 1, + ACTIONS(11459), 1, + sym_identifier, + ACTIONS(11461), 1, + anon_sym_STAR, + STATE(7144), 1, sym_comment, - ACTIONS(11480), 2, - anon_sym_else, - anon_sym_while, - [235132] = 4, + [231125] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7402), 1, + STATE(7145), 1, sym_comment, - ACTIONS(9663), 2, - anon_sym_else, - anon_sym_while, - [235146] = 5, + ACTIONS(6207), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [231139] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - STATE(3746), 1, - sym_statement_block, - STATE(7403), 1, + STATE(7146), 1, sym_comment, - [235162] = 5, + ACTIONS(11463), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [231153] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11482), 1, - anon_sym_SEMI, - ACTIONS(11484), 1, - sym__automatic_semicolon, - STATE(7404), 1, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(3752), 1, + sym_class_body, + STATE(7147), 1, sym_comment, - [235178] = 4, + [231169] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7405), 1, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3430), 1, + sym_class_body, + STATE(7148), 1, sym_comment, - ACTIONS(9659), 2, - anon_sym_else, - anon_sym_while, - [235192] = 4, + [231185] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7406), 1, + ACTIONS(11465), 1, + anon_sym_SEMI, + ACTIONS(11467), 1, + sym__automatic_semicolon, + STATE(7149), 1, sym_comment, - ACTIONS(9655), 2, - anon_sym_else, - anon_sym_while, - [235206] = 4, + [231201] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7407), 1, + STATE(7150), 1, sym_comment, - ACTIONS(11486), 2, + ACTIONS(11469), 2, sym__automatic_semicolon, anon_sym_SEMI, - [235220] = 4, + [231215] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7408), 1, + ACTIONS(9862), 1, + anon_sym_LBRACE, + STATE(1773), 1, + sym_statement_block, + STATE(7151), 1, sym_comment, - ACTIONS(9828), 2, - anon_sym_else, - anon_sym_while, - [235234] = 4, + [231231] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7409), 1, + STATE(7152), 1, sym_comment, - ACTIONS(9828), 2, + ACTIONS(9880), 2, anon_sym_else, anon_sym_while, - [235248] = 5, + [231245] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11488), 1, + ACTIONS(11471), 1, anon_sym_LBRACE, - STATE(1108), 1, + STATE(1082), 1, sym_switch_body, - STATE(7410), 1, + STATE(7153), 1, sym_comment, - [235264] = 4, + [231261] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7411), 1, + ACTIONS(11473), 1, + anon_sym_LBRACE, + STATE(960), 1, + sym_statement_block, + STATE(7154), 1, sym_comment, - ACTIONS(11490), 2, - anon_sym_else, - anon_sym_while, - [235278] = 5, + [231277] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(3288), 1, - sym_statement_block, - STATE(7412), 1, + STATE(3750), 1, + sym_class_body, + STATE(7155), 1, sym_comment, - [235294] = 4, + [231293] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7413), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(102), 1, + sym_parenthesized_expression, + STATE(7156), 1, sym_comment, - ACTIONS(9720), 2, - anon_sym_else, - anon_sym_while, - [235308] = 5, + [231309] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11492), 1, - anon_sym_LBRACE, - STATE(4433), 1, - sym_statement_block, - STATE(7414), 1, + STATE(7157), 1, sym_comment, - [235324] = 4, + ACTIONS(11477), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [231323] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7415), 1, + ACTIONS(11479), 1, + anon_sym_SEMI, + ACTIONS(11481), 1, + sym__automatic_semicolon, + STATE(7158), 1, sym_comment, - ACTIONS(11494), 2, - anon_sym_else, - anon_sym_while, - [235338] = 5, + [231339] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, + ACTIONS(11483), 1, anon_sym_LBRACE, - STATE(3752), 1, - sym_statement_block, - STATE(7416), 1, + STATE(7159), 1, sym_comment, - [235354] = 5, + STATE(7568), 1, + sym_switch_body, + [231355] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - STATE(3751), 1, - sym_statement_block, - STATE(7417), 1, + ACTIONS(11485), 1, + sym_identifier, + STATE(6456), 1, + sym_ui_simple_nested_identifier, + STATE(7160), 1, sym_comment, - [235370] = 4, + [231371] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7418), 1, + STATE(7161), 1, sym_comment, - ACTIONS(9544), 2, - anon_sym_else, - anon_sym_while, - [235384] = 4, + ACTIONS(11487), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [231385] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7419), 1, + ACTIONS(11489), 1, + anon_sym_LBRACE, + STATE(4037), 1, + sym_switch_body, + STATE(7162), 1, sym_comment, - ACTIONS(9722), 2, - anon_sym_else, - anon_sym_while, - [235398] = 4, + [231401] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7420), 1, + STATE(7163), 1, sym_comment, - ACTIONS(9724), 2, - anon_sym_else, - anon_sym_while, - [235412] = 5, + ACTIONS(11491), 2, + anon_sym_COMMA, + anon_sym_GT, + [231415] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8247), 1, anon_sym_LBRACE, - STATE(3249), 1, - sym_statement_block, - STATE(7421), 1, + STATE(4148), 1, + sym_class_body, + STATE(7164), 1, sym_comment, - [235428] = 4, + [231431] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7422), 1, + STATE(7165), 1, sym_comment, - ACTIONS(9730), 2, + ACTIONS(11493), 2, anon_sym_else, anon_sym_while, - [235442] = 4, + [231445] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7423), 1, + ACTIONS(8231), 1, + anon_sym_LBRACE, + STATE(510), 1, + sym_class_body, + STATE(7166), 1, sym_comment, - ACTIONS(9732), 2, - anon_sym_else, - anon_sym_while, - [235456] = 5, + [231461] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, + ACTIONS(11269), 1, anon_sym_LBRACE, - STATE(3681), 1, + STATE(1068), 1, sym_statement_block, - STATE(7424), 1, + STATE(7167), 1, sym_comment, - [235472] = 4, + [231477] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7425), 1, + ACTIONS(11495), 1, + sym_identifier, + ACTIONS(11497), 1, + anon_sym_STAR, + STATE(7168), 1, sym_comment, - ACTIONS(9624), 2, - anon_sym_else, - anon_sym_while, - [235486] = 4, + [231493] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7426), 1, + ACTIONS(11499), 1, + anon_sym_SEMI, + ACTIONS(11501), 1, + sym__automatic_semicolon, + STATE(7169), 1, sym_comment, - ACTIONS(9734), 2, - anon_sym_else, - anon_sym_while, - [235500] = 5, + [231509] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9678), 1, + ACTIONS(9431), 1, anon_sym_LBRACE, - STATE(1248), 1, + STATE(1059), 1, sym_statement_block, - STATE(7427), 1, + STATE(7170), 1, sym_comment, - [235516] = 4, + [231525] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7428), 1, + STATE(7171), 1, sym_comment, - ACTIONS(2330), 2, - anon_sym_else, - anon_sym_while, - [235530] = 5, + ACTIONS(6569), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [231539] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6391), 1, - sym__from_clause, - STATE(7429), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3026), 1, + sym_statement_block, + STATE(7172), 1, sym_comment, - [235546] = 5, + [231555] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(3556), 1, + STATE(5889), 1, sym_class_body, - STATE(7430), 1, + STATE(7173), 1, sym_comment, - [235562] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [231571] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(7431), 1, - sym_comment, - ACTIONS(9734), 2, - anon_sym_else, - anon_sym_while, - [235576] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11496), 1, - anon_sym_LPAREN, - STATE(1055), 1, - sym_parenthesized_expression, - STATE(7432), 1, + ACTIONS(11503), 1, + sym_identifier, + ACTIONS(11505), 1, + anon_sym_STAR, + STATE(7174), 1, sym_comment, - [235592] = 5, + [231587] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(5463), 1, - sym_formal_parameters, - STATE(7433), 1, + ACTIONS(8245), 1, + anon_sym_LBRACE, + STATE(1318), 1, + sym_class_body, + STATE(7175), 1, sym_comment, - [235608] = 5, + [231603] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11400), 1, + ACTIONS(8237), 1, anon_sym_LBRACE, - STATE(4048), 1, - sym_statement_block, - STATE(7434), 1, + STATE(1647), 1, + sym_class_body, + STATE(7176), 1, sym_comment, - [235624] = 5, + [231619] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11390), 1, + ACTIONS(11507), 1, sym_identifier, - ACTIONS(11394), 1, - sym_private_property_identifier, - STATE(7435), 1, + ACTIONS(11509), 1, + anon_sym_STAR, + STATE(7177), 1, sym_comment, - [235640] = 5, + [231635] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11498), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(6183), 1, - sym_enum_body, - STATE(7436), 1, + STATE(3137), 1, + sym_statement_block, + STATE(7178), 1, sym_comment, - [235656] = 4, + [231651] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7437), 1, + ACTIONS(9550), 1, + anon_sym_LBRACE, + STATE(517), 1, + sym_statement_block, + STATE(7179), 1, + sym_comment, + [231667] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7180), 1, sym_comment, - ACTIONS(11500), 2, + ACTIONS(11511), 2, sym__automatic_semicolon, anon_sym_SEMI, - [235670] = 4, + [231681] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7438), 1, + STATE(7181), 1, sym_comment, - ACTIONS(11502), 2, + ACTIONS(11513), 2, sym__automatic_semicolon, anon_sym_SEMI, - [235684] = 4, + [231695] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7439), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7182), 1, sym_comment, - ACTIONS(9734), 2, - anon_sym_else, - anon_sym_while, - [235698] = 4, + STATE(7440), 1, + sym_statement_block, + [231711] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7440), 1, + STATE(7183), 1, sym_comment, - ACTIONS(6245), 2, + ACTIONS(6363), 2, sym__automatic_semicolon, anon_sym_SEMI, - [235712] = 4, + [231725] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7441), 1, + ACTIONS(11269), 1, + anon_sym_LBRACE, + STATE(1067), 1, + sym_statement_block, + STATE(7184), 1, sym_comment, - ACTIONS(11504), 2, - anon_sym_else, - anon_sym_while, - [235726] = 4, + [231741] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7442), 1, + STATE(7185), 1, sym_comment, - ACTIONS(6247), 2, + ACTIONS(6353), 2, sym__automatic_semicolon, anon_sym_SEMI, - [235740] = 4, + [231755] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7443), 1, + ACTIONS(11515), 1, + sym_identifier, + ACTIONS(11517), 1, + anon_sym_STAR, + STATE(7186), 1, sym_comment, - ACTIONS(11506), 2, - anon_sym_else, - anon_sym_while, - [235754] = 4, + [231771] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7444), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3125), 1, + sym_statement_block, + STATE(7187), 1, sym_comment, - ACTIONS(11508), 2, - anon_sym_else, - anon_sym_while, - [235768] = 5, + [231787] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11510), 1, + ACTIONS(11519), 1, anon_sym_LBRACE, - STATE(1262), 1, + STATE(1284), 1, sym_statement_block, - STATE(7445), 1, + STATE(7188), 1, sym_comment, - [235784] = 4, + [231803] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7446), 1, + ACTIONS(5536), 1, + anon_sym_LPAREN, + STATE(2959), 1, + sym_arguments, + STATE(7189), 1, sym_comment, - ACTIONS(11512), 2, - anon_sym_else, - anon_sym_while, - [235798] = 5, + [231819] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11514), 1, + ACTIONS(11521), 1, anon_sym_LBRACE, - STATE(1265), 1, + STATE(1282), 1, sym_enum_body, - STATE(7447), 1, + STATE(7190), 1, sym_comment, - [235814] = 4, + [231835] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7448), 1, - sym_comment, - ACTIONS(11512), 2, - anon_sym_else, - anon_sym_while, - [235828] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11516), 1, - sym_identifier, - ACTIONS(11518), 1, - sym_private_property_identifier, - STATE(7449), 1, + ACTIONS(8219), 1, + anon_sym_LBRACE, + STATE(5911), 1, + sym_class_body, + STATE(7191), 1, sym_comment, - [235844] = 4, + [231851] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7450), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7192), 1, sym_comment, - ACTIONS(2444), 2, - anon_sym_else, - anon_sym_while, - [235858] = 4, + STATE(7431), 1, + sym_statement_block, + [231867] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7451), 1, + ACTIONS(11523), 1, + anon_sym_LPAREN, + STATE(142), 1, + sym__for_header, + STATE(7193), 1, sym_comment, - ACTIONS(9983), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [235872] = 5, + [231883] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11520), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(1251), 1, - sym_statement_block, - STATE(7452), 1, + STATE(3456), 1, + sym_class_body, + STATE(7194), 1, sym_comment, - [235888] = 4, + [231899] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7453), 1, + ACTIONS(11525), 1, + anon_sym_LBRACE, + STATE(1187), 1, + sym_statement_block, + STATE(7195), 1, sym_comment, - ACTIONS(11522), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [235902] = 5, + [231915] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(9673), 1, anon_sym_LBRACE, - STATE(3161), 1, + STATE(3854), 1, sym_statement_block, - STATE(7454), 1, + STATE(7196), 1, + sym_comment, + [231931] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11527), 1, + sym_identifier, + ACTIONS(11529), 1, + anon_sym_STAR, + STATE(7197), 1, sym_comment, - [235918] = 5, + [231947] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3155), 1, + STATE(3099), 1, sym_statement_block, - STATE(7455), 1, + STATE(7198), 1, sym_comment, - [235934] = 4, + [231963] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7456), 1, + ACTIONS(8219), 1, + anon_sym_LBRACE, + STATE(5926), 1, + sym_class_body, + STATE(7199), 1, sym_comment, - ACTIONS(11524), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [235948] = 5, + [231979] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11526), 1, - anon_sym_SEMI, - ACTIONS(11528), 1, - sym__automatic_semicolon, - STATE(7457), 1, + ACTIONS(11531), 1, + sym_identifier, + ACTIONS(11533), 1, + sym_private_property_identifier, + STATE(7200), 1, sym_comment, - [235964] = 4, + [231995] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7458), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + STATE(3452), 1, + sym_statement_block, + STATE(7201), 1, sym_comment, - ACTIONS(11530), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [235978] = 4, + [232011] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7459), 1, + STATE(7202), 1, sym_comment, - ACTIONS(9736), 2, + ACTIONS(9364), 2, anon_sym_else, anon_sym_while, - [235992] = 5, + [232025] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3154), 1, - sym_statement_block, - STATE(7460), 1, + STATE(7203), 1, sym_comment, - [236008] = 5, + ACTIONS(7071), 2, + anon_sym_else, + anon_sym_while, + [232039] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11532), 1, + ACTIONS(11535), 1, anon_sym_SEMI, - ACTIONS(11534), 1, + ACTIONS(11537), 1, sym__automatic_semicolon, - STATE(7461), 1, + STATE(7204), 1, sym_comment, - [236024] = 4, + [232055] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7462), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7205), 1, sym_comment, - ACTIONS(11536), 2, - anon_sym_else, - anon_sym_while, - [236038] = 4, + STATE(7837), 1, + sym_statement_block, + [232071] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7463), 1, + STATE(7206), 1, sym_comment, - ACTIONS(6492), 2, + ACTIONS(6541), 2, anon_sym_COMMA, anon_sym_RBRACE, - [236052] = 4, + [232085] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7464), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3126), 1, + sym_statement_block, + STATE(7207), 1, sym_comment, - ACTIONS(11538), 2, - anon_sym_else, - anon_sym_while, - [236066] = 4, + [232101] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7465), 1, + ACTIONS(8245), 1, + anon_sym_LBRACE, + STATE(1324), 1, + sym_class_body, + STATE(7208), 1, sym_comment, - ACTIONS(6542), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [236080] = 4, + [232117] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7466), 1, + ACTIONS(11539), 1, + sym_identifier, + STATE(7209), 1, sym_comment, - ACTIONS(11468), 2, - anon_sym_else, - anon_sym_while, - [236094] = 5, + STATE(7698), 1, + sym__qml_enum_assignment, + [232133] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3236), 1, + STATE(3033), 1, sym_statement_block, - STATE(7467), 1, + STATE(7210), 1, sym_comment, - [236110] = 4, + [232149] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7468), 1, + ACTIONS(8245), 1, + anon_sym_LBRACE, + STATE(1325), 1, + sym_class_body, + STATE(7211), 1, sym_comment, - ACTIONS(9672), 2, - anon_sym_else, - anon_sym_while, - [236124] = 5, + [232165] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9678), 1, + ACTIONS(9431), 1, anon_sym_LBRACE, - STATE(1070), 1, + STATE(1062), 1, sym_statement_block, - STATE(7469), 1, + STATE(7212), 1, sym_comment, - [236140] = 5, + [232181] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11540), 1, + ACTIONS(11541), 1, anon_sym_SEMI, - ACTIONS(11542), 1, + ACTIONS(11543), 1, sym__automatic_semicolon, - STATE(7470), 1, + STATE(7213), 1, sym_comment, - [236156] = 5, + [232197] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11544), 1, - anon_sym_SEMI, - ACTIONS(11546), 1, - sym__automatic_semicolon, - STATE(7471), 1, + ACTIONS(11545), 1, + sym_identifier, + ACTIONS(11547), 1, + sym_private_property_identifier, + STATE(7214), 1, sym_comment, - [236172] = 4, + [232213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7472), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(6400), 1, + sym_statement_block, + STATE(7215), 1, sym_comment, - ACTIONS(9738), 2, - anon_sym_else, - anon_sym_while, - [236186] = 5, + [232229] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9778), 1, - anon_sym_LBRACE, - STATE(1421), 1, - sym_statement_block, - STATE(7473), 1, + STATE(7216), 1, sym_comment, - [236202] = 5, + ACTIONS(11549), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [232243] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(3185), 1, - sym_statement_block, - STATE(7474), 1, + STATE(2932), 1, + sym_class_body, + STATE(7217), 1, sym_comment, - [236218] = 4, + [232259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7475), 1, + STATE(7218), 1, sym_comment, - ACTIONS(11548), 2, + ACTIONS(11551), 2, anon_sym_else, anon_sym_while, - [236232] = 5, + [232273] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11550), 1, + ACTIONS(11553), 1, anon_sym_SEMI, - ACTIONS(11552), 1, + ACTIONS(11555), 1, sym__automatic_semicolon, - STATE(7476), 1, + STATE(7219), 1, sym_comment, - [236248] = 5, + [232289] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11554), 1, + ACTIONS(11557), 1, anon_sym_SEMI, - ACTIONS(11556), 1, + ACTIONS(11559), 1, sym__automatic_semicolon, - STATE(7477), 1, + STATE(7220), 1, sym_comment, - [236264] = 5, + [232305] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(3187), 1, + STATE(6479), 1, sym_statement_block, - STATE(7478), 1, + STATE(7221), 1, sym_comment, - [236280] = 5, + [232321] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11068), 1, + ACTIONS(8247), 1, anon_sym_LBRACE, - STATE(1642), 1, - sym_statement_block, - STATE(7479), 1, + STATE(4221), 1, + sym_class_body, + STATE(7222), 1, sym_comment, - [236296] = 5, + [232337] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8352), 1, + ACTIONS(8261), 1, anon_sym_LBRACE, - STATE(7480), 1, - sym_comment, - STATE(7498), 1, + STATE(1768), 1, sym_class_body, - [236312] = 4, + STATE(7223), 1, + sym_comment, + [232353] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7481), 1, + STATE(7224), 1, sym_comment, - ACTIONS(11558), 2, + ACTIONS(11561), 2, sym__automatic_semicolon, anon_sym_SEMI, - [236326] = 4, + [232367] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7482), 1, + STATE(7225), 1, sym_comment, - ACTIONS(10064), 2, + ACTIONS(10188), 2, sym__automatic_semicolon, anon_sym_SEMI, - [236340] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [232381] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11560), 1, - sym_identifier, - STATE(6665), 1, - sym_ui_simple_nested_identifier, - STATE(7483), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7226), 1, sym_comment, - [236356] = 5, + ACTIONS(11563), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [232395] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11514), 1, + ACTIONS(11521), 1, anon_sym_LBRACE, - STATE(1288), 1, + STATE(1260), 1, sym_enum_body, - STATE(7484), 1, + STATE(7227), 1, sym_comment, - [236372] = 5, + [232411] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11562), 1, + ACTIONS(11565), 1, anon_sym_LPAREN, - STATE(1035), 1, + STATE(1018), 1, sym_parenthesized_expression, - STATE(7485), 1, + STATE(7228), 1, sym_comment, - [236388] = 5, + [232427] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8256), 1, + ACTIONS(8257), 1, anon_sym_LBRACE, - STATE(411), 1, + STATE(403), 1, sym_class_body, - STATE(7486), 1, + STATE(7229), 1, sym_comment, - [236404] = 4, + [232443] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7487), 1, + ACTIONS(9711), 1, + anon_sym_LBRACE, + STATE(1545), 1, + sym_statement_block, + STATE(7230), 1, sym_comment, - ACTIONS(11564), 2, - anon_sym_else, - anon_sym_while, - [236418] = 5, + [232459] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3229), 1, - sym_statement_block, - STATE(7488), 1, + ACTIONS(11567), 1, + sym_identifier, + ACTIONS(11569), 1, + sym_private_property_identifier, + STATE(7231), 1, sym_comment, - [236434] = 4, + [232475] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7489), 1, + STATE(7232), 1, sym_comment, - ACTIONS(9667), 2, + ACTIONS(11571), 2, anon_sym_else, anon_sym_while, - [236448] = 4, + [232489] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7490), 1, + ACTIONS(11573), 1, + anon_sym_SEMI, + ACTIONS(11575), 1, + sym__automatic_semicolon, + STATE(7233), 1, sym_comment, - ACTIONS(9598), 2, - anon_sym_else, - anon_sym_while, - [236462] = 5, + [232505] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(3231), 1, - sym_statement_block, - STATE(7491), 1, + STATE(5997), 1, + sym_class_body, + STATE(7234), 1, sym_comment, - [236478] = 4, + [232521] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7492), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + STATE(3413), 1, + sym_statement_block, + STATE(7235), 1, sym_comment, - ACTIONS(9657), 2, - anon_sym_else, - anon_sym_while, - [236492] = 4, + [232537] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7493), 1, + STATE(7236), 1, sym_comment, - ACTIONS(9657), 2, + ACTIONS(9661), 2, anon_sym_else, anon_sym_while, - [236506] = 4, + [232551] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7494), 1, + STATE(7237), 1, sym_comment, - ACTIONS(9596), 2, - anon_sym_else, - anon_sym_while, - [236520] = 5, + ACTIONS(11577), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [232565] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(7302), 1, + STATE(3559), 1, sym_class_body, - STATE(7495), 1, + STATE(7238), 1, sym_comment, - [236536] = 4, + [232581] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7496), 1, + STATE(7239), 1, sym_comment, - ACTIONS(11566), 2, - anon_sym_else, - anon_sym_while, - [236550] = 5, + ACTIONS(11579), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [232595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(146), 1, - sym_parenthesized_expression, - STATE(7497), 1, + STATE(7240), 1, sym_comment, - [236566] = 4, + ACTIONS(11581), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [232609] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7498), 1, + STATE(7241), 1, sym_comment, - ACTIONS(9590), 2, - anon_sym_else, - anon_sym_while, - [236580] = 5, + ACTIONS(11583), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [232623] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11568), 1, - anon_sym_LBRACE, - STATE(3787), 1, - sym_statement_block, - STATE(7499), 1, + ACTIONS(11585), 1, + anon_sym_SEMI, + ACTIONS(11587), 1, + sym__automatic_semicolon, + STATE(7242), 1, sym_comment, - [236596] = 4, + [232639] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7500), 1, + STATE(7243), 1, sym_comment, - ACTIONS(6413), 2, + ACTIONS(11589), 2, sym__automatic_semicolon, anon_sym_SEMI, - [236610] = 5, + [232653] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3616), 1, - sym_class_body, - STATE(7501), 1, + STATE(7244), 1, sym_comment, - [236626] = 5, + ACTIONS(11591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [232667] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11570), 1, + ACTIONS(11593), 1, anon_sym_SEMI, - ACTIONS(11572), 1, + ACTIONS(11595), 1, sym__automatic_semicolon, - STATE(7502), 1, + STATE(7245), 1, sym_comment, - [236642] = 4, + [232683] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7503), 1, + STATE(7246), 1, sym_comment, - ACTIONS(11574), 2, + ACTIONS(11597), 2, sym__automatic_semicolon, anon_sym_SEMI, - [236656] = 5, + [232697] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8296), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(1171), 1, + STATE(1219), 1, sym_class_body, - STATE(7504), 1, + STATE(7247), 1, sym_comment, - [236672] = 5, + [232713] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(5247), 1, - sym_formal_parameters, - STATE(7505), 1, + STATE(7248), 1, sym_comment, - [236688] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(11599), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [232727] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11576), 1, - sym_identifier, - ACTIONS(11578), 1, - anon_sym_STAR, - STATE(7506), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7249), 1, sym_comment, - [236704] = 4, + ACTIONS(11601), 2, + anon_sym_else, + anon_sym_while, + [232741] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7507), 1, + STATE(7250), 1, sym_comment, - ACTIONS(11580), 2, + ACTIONS(9663), 2, anon_sym_else, anon_sym_while, - [236718] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [232755] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11582), 1, - sym_identifier, - STATE(7508), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8245), 1, + anon_sym_LBRACE, + STATE(1335), 1, + sym_class_body, + STATE(7251), 1, sym_comment, - STATE(7982), 1, - sym__qml_enum_assignment, - [236734] = 4, + [232771] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7509), 1, + STATE(7252), 1, sym_comment, - ACTIONS(11584), 2, + ACTIONS(6184), 2, sym__automatic_semicolon, anon_sym_SEMI, - [236748] = 4, + [232785] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7510), 1, + STATE(7253), 1, sym_comment, - ACTIONS(11586), 2, + ACTIONS(11603), 2, sym__automatic_semicolon, anon_sym_SEMI, - [236762] = 4, + [232799] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7511), 1, + STATE(7254), 1, sym_comment, - ACTIONS(11588), 2, + ACTIONS(11605), 2, sym__automatic_semicolon, anon_sym_SEMI, - [236776] = 5, + [232813] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11510), 1, - anon_sym_LBRACE, - STATE(1462), 1, - sym_statement_block, - STATE(7512), 1, + STATE(7255), 1, sym_comment, - [236792] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(11607), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [232827] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11590), 1, - sym_identifier, - ACTIONS(11592), 1, - anon_sym_STAR, - STATE(7513), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11609), 1, + anon_sym_SEMI, + ACTIONS(11611), 1, + sym__automatic_semicolon, + STATE(7256), 1, sym_comment, - [236808] = 5, + [232843] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11594), 1, + ACTIONS(11613), 1, anon_sym_SEMI, - ACTIONS(11596), 1, + ACTIONS(11615), 1, sym__automatic_semicolon, - STATE(7514), 1, + STATE(7257), 1, sym_comment, - [236824] = 5, + [232859] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8256), 1, + ACTIONS(8257), 1, anon_sym_LBRACE, - STATE(407), 1, + STATE(386), 1, sym_class_body, - STATE(7515), 1, + STATE(7258), 1, sym_comment, - [236840] = 4, + [232875] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7516), 1, - sym_comment, - ACTIONS(11598), 2, - sym__automatic_semicolon, + ACTIONS(11617), 1, anon_sym_SEMI, - [236854] = 5, + ACTIONS(11619), 1, + sym__automatic_semicolon, + STATE(7259), 1, + sym_comment, + [232891] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9692), 1, + ACTIONS(9445), 1, anon_sym_LBRACE, - STATE(413), 1, + STATE(393), 1, sym_statement_block, - STATE(7517), 1, + STATE(7260), 1, sym_comment, - [236870] = 5, + [232907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8284), 1, + ACTIONS(8287), 1, anon_sym_LBRACE, - STATE(1339), 1, + STATE(1238), 1, sym_class_body, - STATE(7518), 1, + STATE(7261), 1, sym_comment, - [236886] = 4, + [232923] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7519), 1, + ACTIONS(11621), 1, + anon_sym_SEMI, + ACTIONS(11623), 1, + sym__automatic_semicolon, + STATE(7262), 1, sym_comment, - ACTIONS(11600), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [236900] = 4, + [232939] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7520), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3154), 1, + sym_statement_block, + STATE(7263), 1, sym_comment, - ACTIONS(6488), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [236914] = 5, + [232955] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8247), 1, + anon_sym_LBRACE, + STATE(4212), 1, + sym_class_body, + STATE(7264), 1, + sym_comment, + [232971] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11602), 1, + ACTIONS(11625), 1, sym_identifier, - ACTIONS(11604), 1, + ACTIONS(11627), 1, anon_sym_STAR, - STATE(7521), 1, + STATE(7265), 1, sym_comment, - [236930] = 5, + [232987] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11498), 1, + ACTIONS(6058), 1, anon_sym_LBRACE, - STATE(6206), 1, - sym_enum_body, - STATE(7522), 1, - sym_comment, - [236946] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7523), 1, + STATE(2915), 1, + sym_statement_block, + STATE(7266), 1, sym_comment, - ACTIONS(6550), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [236960] = 5, + [233003] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8256), 1, + ACTIONS(8257), 1, anon_sym_LBRACE, - STATE(396), 1, + STATE(380), 1, sym_class_body, - STATE(7524), 1, + STATE(7267), 1, sym_comment, - [236976] = 4, + [233019] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7525), 1, + ACTIONS(6058), 1, + anon_sym_LBRACE, + STATE(2896), 1, + sym_statement_block, + STATE(7268), 1, sym_comment, - ACTIONS(10489), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [236990] = 5, + [233035] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, - anon_sym_LBRACE, - STATE(6208), 1, - sym_statement_block, - STATE(7526), 1, + STATE(7269), 1, sym_comment, - [237006] = 4, + ACTIONS(11629), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233049] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7527), 1, + STATE(7270), 1, sym_comment, - ACTIONS(11606), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [237020] = 5, + ACTIONS(11631), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233063] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(6058), 1, anon_sym_LBRACE, - STATE(1716), 1, - sym_class_body, - STATE(7528), 1, + STATE(2839), 1, + sym_statement_block, + STATE(7271), 1, sym_comment, - [237036] = 5, + [233079] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8296), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(1098), 1, + STATE(1208), 1, sym_class_body, - STATE(7529), 1, + STATE(7272), 1, sym_comment, - [237052] = 5, + [233095] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11068), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(1650), 1, - sym_statement_block, - STATE(7530), 1, + STATE(2846), 1, + sym_class_body, + STATE(7273), 1, sym_comment, - [237068] = 5, + [233111] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8296), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(1097), 1, + STATE(1207), 1, sym_class_body, - STATE(7531), 1, + STATE(7274), 1, sym_comment, - [237084] = 4, + [233127] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7532), 1, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(2851), 1, + sym_class_body, + STATE(7275), 1, sym_comment, - ACTIONS(9877), 2, - anon_sym_else, - anon_sym_while, - [237098] = 5, + [233143] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8352), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(7418), 1, - sym_class_body, - STATE(7533), 1, + STATE(3010), 1, + sym_statement_block, + STATE(7276), 1, sym_comment, - [237114] = 5, + [233159] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11608), 1, + ACTIONS(11633), 1, anon_sym_SEMI, - ACTIONS(11610), 1, + ACTIONS(11635), 1, sym__automatic_semicolon, - STATE(7534), 1, + STATE(7277), 1, sym_comment, - [237130] = 5, + [233175] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9692), 1, + ACTIONS(9445), 1, anon_sym_LBRACE, - STATE(410), 1, + STATE(402), 1, sym_statement_block, - STATE(7535), 1, + STATE(7278), 1, sym_comment, - [237146] = 5, + [233191] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8284), 1, + ACTIONS(8287), 1, anon_sym_LBRACE, - STATE(1401), 1, + STATE(1222), 1, sym_class_body, - STATE(7536), 1, + STATE(7279), 1, sym_comment, - [237162] = 4, + [233207] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7537), 1, + STATE(7280), 1, sym_comment, - ACTIONS(9744), 2, + ACTIONS(11637), 2, anon_sym_else, anon_sym_while, - [237176] = 4, + [233221] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7538), 1, + STATE(7281), 1, sym_comment, - ACTIONS(6536), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [237190] = 4, + ACTIONS(6252), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233235] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7539), 1, + STATE(7282), 1, sym_comment, - ACTIONS(9746), 2, + ACTIONS(7071), 2, anon_sym_else, anon_sym_while, - [237204] = 4, + [233249] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7540), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3067), 1, + sym_statement_block, + STATE(7283), 1, sym_comment, - ACTIONS(6592), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [237218] = 5, + [233265] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8256), 1, + ACTIONS(8257), 1, anon_sym_LBRACE, - STATE(424), 1, + STATE(410), 1, sym_class_body, - STATE(7541), 1, + STATE(7284), 1, sym_comment, - [237234] = 5, + [233281] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8284), 1, + ACTIONS(8287), 1, anon_sym_LBRACE, - STATE(1428), 1, + STATE(1275), 1, sym_class_body, - STATE(7542), 1, + STATE(7285), 1, sym_comment, - [237250] = 4, + [233297] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7543), 1, + STATE(7286), 1, sym_comment, - ACTIONS(9748), 2, - anon_sym_else, - anon_sym_while, - [237264] = 5, + ACTIONS(10494), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [233311] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11386), 1, + ACTIONS(11413), 1, anon_sym_LBRACE, - STATE(1038), 1, + STATE(1022), 1, sym_statement_block, - STATE(7544), 1, + STATE(7287), 1, sym_comment, - [237280] = 4, + [233327] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7545), 1, + STATE(7288), 1, sym_comment, - ACTIONS(9750), 2, - anon_sym_else, - anon_sym_while, - [237294] = 5, + ACTIONS(11639), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233341] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8296), 1, + ACTIONS(8285), 1, anon_sym_LBRACE, - STATE(1067), 1, + STATE(1190), 1, sym_class_body, - STATE(7546), 1, + STATE(7289), 1, sym_comment, - [237310] = 5, + [233357] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, + ACTIONS(11641), 1, anon_sym_LBRACE, - STATE(3540), 1, - sym_class_body, - STATE(7547), 1, + STATE(1616), 1, + sym_statement_block, + STATE(7290), 1, sym_comment, - [237326] = 4, + [233373] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7548), 1, + STATE(7291), 1, sym_comment, - ACTIONS(6418), 2, + ACTIONS(11643), 2, sym__automatic_semicolon, anon_sym_SEMI, - [237340] = 4, + [233387] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7549), 1, + STATE(7292), 1, sym_comment, - ACTIONS(6568), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [237354] = 5, + ACTIONS(11645), 2, + anon_sym_else, + anon_sym_while, + [233401] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8284), 1, + ACTIONS(8287), 1, anon_sym_LBRACE, - STATE(1437), 1, + STATE(1285), 1, sym_class_body, - STATE(7550), 1, + STATE(7293), 1, sym_comment, - [237370] = 5, + [233417] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11386), 1, + ACTIONS(11413), 1, anon_sym_LBRACE, - STATE(1037), 1, + STATE(1024), 1, sym_statement_block, - STATE(7551), 1, + STATE(7294), 1, sym_comment, - [237386] = 4, + [233433] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7552), 1, + STATE(7295), 1, sym_comment, - ACTIONS(6432), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [237400] = 4, + ACTIONS(2452), 2, + anon_sym_else, + anon_sym_while, + [233447] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7553), 1, + ACTIONS(11647), 1, + anon_sym_LBRACE, + STATE(4018), 1, + sym_statement_block, + STATE(7296), 1, sym_comment, - ACTIONS(10495), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [237414] = 4, + [233463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7554), 1, + STATE(7297), 1, sym_comment, - ACTIONS(11612), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [237428] = 5, + ACTIONS(11649), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [233477] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8352), 1, - anon_sym_LBRACE, - STATE(7468), 1, - sym_class_body, - STATE(7555), 1, + ACTIONS(11651), 1, + anon_sym_SEMI, + ACTIONS(11653), 1, + sym__automatic_semicolon, + STATE(7298), 1, sym_comment, - [237444] = 5, + [233493] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3275), 1, - sym_statement_block, - STATE(7556), 1, + ACTIONS(11655), 1, + sym_identifier, + ACTIONS(11657), 1, + anon_sym_STAR, + STATE(7299), 1, sym_comment, - [237460] = 4, + [233509] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7557), 1, + STATE(7300), 1, sym_comment, - ACTIONS(9752), 2, - anon_sym_else, - anon_sym_while, - [237474] = 4, + ACTIONS(11659), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233523] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7558), 1, + STATE(7301), 1, sym_comment, - ACTIONS(9752), 2, - anon_sym_else, - anon_sym_while, - [237488] = 4, + ACTIONS(9280), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [233537] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7559), 1, + STATE(7302), 1, sym_comment, - ACTIONS(6441), 2, + ACTIONS(6234), 2, sym__automatic_semicolon, anon_sym_SEMI, - [237502] = 5, + [233551] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - STATE(3532), 1, - sym_statement_block, - STATE(7560), 1, + STATE(3917), 1, + sym_class_body, + STATE(7303), 1, sym_comment, - [237518] = 4, + [233567] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7561), 1, - sym_comment, - ACTIONS(11614), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [237532] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11616), 1, - sym_identifier, - ACTIONS(11618), 1, - anon_sym_STAR, - STATE(7562), 1, + ACTIONS(11661), 1, + anon_sym_LBRACE, + STATE(4015), 1, + sym_enum_body, + STATE(7304), 1, sym_comment, - [237548] = 5, + [233583] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(11647), 1, anon_sym_LBRACE, - STATE(7563), 1, - sym_comment, - STATE(7953), 1, + STATE(4010), 1, sym_statement_block, - [237564] = 4, + STATE(7305), 1, + sym_comment, + [233599] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7564), 1, + STATE(7306), 1, sym_comment, - ACTIONS(9752), 2, - anon_sym_else, - anon_sym_while, - [237578] = 4, + ACTIONS(10232), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7565), 1, + STATE(7307), 1, sym_comment, - ACTIONS(11620), 2, + ACTIONS(11663), 2, sym__automatic_semicolon, anon_sym_SEMI, - [237592] = 5, + [233627] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3277), 1, - sym_statement_block, - STATE(7566), 1, + ACTIONS(11665), 1, + anon_sym_SEMI, + ACTIONS(11667), 1, + sym__automatic_semicolon, + STATE(7308), 1, + sym_comment, + [233643] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11669), 1, + sym_identifier, + ACTIONS(11671), 1, + anon_sym_STAR, + STATE(7309), 1, sym_comment, - [237608] = 4, + [233659] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7567), 1, + ACTIONS(9846), 1, + anon_sym_LBRACE, + STATE(3899), 1, + sym_statement_block, + STATE(7310), 1, sym_comment, - ACTIONS(11622), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [237622] = 4, + [233675] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7568), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3004), 1, + sym_statement_block, + STATE(7311), 1, sym_comment, - ACTIONS(11624), 2, - anon_sym_else, - anon_sym_while, - [237636] = 5, + [233691] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, + ACTIONS(9391), 1, anon_sym_LBRACE, - STATE(1015), 1, + STATE(1046), 1, sym_statement_block, - STATE(7569), 1, + STATE(7312), 1, + sym_comment, + [233707] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7313), 1, sym_comment, - [237652] = 5, + ACTIONS(11673), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [233721] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11626), 1, + ACTIONS(11675), 1, sym_identifier, - ACTIONS(11628), 1, + ACTIONS(11677), 1, anon_sym_STAR, - STATE(7570), 1, + STATE(7314), 1, sym_comment, - [237668] = 4, + [233737] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7571), 1, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3590), 1, + sym_class_body, + STATE(7315), 1, sym_comment, - ACTIONS(11630), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [237682] = 4, + [233753] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7572), 1, - sym_comment, - ACTIONS(9266), 2, + ACTIONS(11679), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [237696] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11632), 1, - anon_sym_SEMI, - ACTIONS(11634), 1, - sym__automatic_semicolon, - STATE(7573), 1, + STATE(7316), 1, sym_comment, - [237712] = 5, + STATE(7476), 1, + sym_enum_body, + [233769] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(7357), 1, - sym_class_body, - STATE(7574), 1, + STATE(7317), 1, sym_comment, - [237728] = 5, + STATE(7453), 1, + sym_statement_block, + [233785] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, + ACTIONS(9673), 1, anon_sym_LBRACE, - STATE(7355), 1, - sym_class_body, - STATE(7575), 1, + STATE(3852), 1, + sym_statement_block, + STATE(7318), 1, sym_comment, - [237744] = 5, + [233801] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, + ACTIONS(8249), 1, anon_sym_LBRACE, - STATE(2987), 1, + STATE(3916), 1, sym_class_body, - STATE(7576), 1, + STATE(7319), 1, sym_comment, - [237760] = 4, + [233817] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7577), 1, + ACTIONS(11681), 1, + anon_sym_LPAREN, + STATE(1066), 1, + sym_parenthesized_expression, + STATE(7320), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [237774] = 4, + [233833] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7578), 1, + STATE(7321), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [237788] = 5, + ACTIONS(6227), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233847] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11520), 1, + ACTIONS(11525), 1, anon_sym_LBRACE, - STATE(1059), 1, + STATE(1169), 1, sym_statement_block, - STATE(7579), 1, + STATE(7322), 1, sym_comment, - [237804] = 4, + [233863] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7580), 1, + STATE(7323), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [237818] = 5, + ACTIONS(6225), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233877] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11636), 1, + ACTIONS(11683), 1, anon_sym_LBRACE, - STATE(1071), 1, + STATE(1167), 1, sym_enum_body, - STATE(7581), 1, + STATE(7324), 1, sym_comment, - [237834] = 4, + [233893] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7582), 1, + ACTIONS(11685), 1, + anon_sym_LBRACE, + STATE(6026), 1, + sym_enum_body, + STATE(7325), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [237848] = 5, + [233909] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11638), 1, - anon_sym_LBRACE, - STATE(4145), 1, - sym_switch_body, - STATE(7583), 1, + ACTIONS(11687), 1, + anon_sym_SEMI, + ACTIONS(11689), 1, + sym__automatic_semicolon, + STATE(7326), 1, sym_comment, - [237864] = 5, + [233925] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11640), 1, + ACTIONS(8231), 1, anon_sym_LBRACE, - STATE(1747), 1, - sym_enum_body, - STATE(7584), 1, + STATE(499), 1, + sym_class_body, + STATE(7327), 1, sym_comment, - [237880] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [233941] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11642), 1, - sym_identifier, - ACTIONS(11644), 1, - anon_sym_STAR, - STATE(7585), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7328), 1, sym_comment, - [237896] = 4, + ACTIONS(11691), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233955] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7586), 1, + STATE(7329), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [237910] = 4, + ACTIONS(11307), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [233969] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7587), 1, + STATE(7330), 1, sym_comment, - ACTIONS(11646), 2, - anon_sym_COMMA, - anon_sym_GT, - [237924] = 5, + ACTIONS(11693), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233983] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11648), 1, - anon_sym_LBRACE, - STATE(1742), 1, - sym_statement_block, - STATE(7588), 1, + STATE(7331), 1, sym_comment, - [237940] = 4, + ACTIONS(10246), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233997] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7589), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3013), 1, + sym_statement_block, + STATE(7332), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [237954] = 4, + [234013] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7590), 1, + STATE(7333), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [237968] = 5, + ACTIONS(11695), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234027] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, + ACTIONS(9391), 1, anon_sym_LBRACE, - STATE(1043), 1, + STATE(1019), 1, sym_statement_block, - STATE(7591), 1, + STATE(7334), 1, sym_comment, - [237984] = 5, + [234043] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11650), 1, + ACTIONS(11697), 1, anon_sym_SEMI, - ACTIONS(11652), 1, + ACTIONS(11699), 1, sym__automatic_semicolon, - STATE(7592), 1, + STATE(7335), 1, sym_comment, - [238000] = 4, + [234059] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7593), 1, + ACTIONS(11701), 1, + anon_sym_SEMI, + ACTIONS(11703), 1, + sym__automatic_semicolon, + STATE(7336), 1, sym_comment, - ACTIONS(11654), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [238014] = 4, + [234075] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7594), 1, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3397), 1, + sym_class_body, + STATE(7337), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [238028] = 4, + [234091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7595), 1, + STATE(7338), 1, sym_comment, - ACTIONS(11580), 2, + ACTIONS(11705), 2, anon_sym_else, anon_sym_while, - [238042] = 5, + [234105] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3756), 1, - sym_class_body, - STATE(7596), 1, + ACTIONS(11707), 1, + sym_identifier, + ACTIONS(11709), 1, + anon_sym_STAR, + STATE(7339), 1, sym_comment, - [238058] = 4, + [234121] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7597), 1, - sym_comment, - ACTIONS(10523), 2, - sym__automatic_semicolon, + ACTIONS(11711), 1, anon_sym_SEMI, - [238072] = 5, + ACTIONS(11713), 1, + sym__automatic_semicolon, + STATE(7340), 1, + sym_comment, + [234137] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11656), 1, + ACTIONS(11715), 1, anon_sym_SEMI, - ACTIONS(11658), 1, + ACTIONS(11717), 1, sym__automatic_semicolon, - STATE(7598), 1, + STATE(7341), 1, sym_comment, - [238088] = 5, + [234153] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11660), 1, + ACTIONS(11719), 1, anon_sym_SEMI, - ACTIONS(11662), 1, + ACTIONS(11721), 1, sym__automatic_semicolon, - STATE(7599), 1, + STATE(7342), 1, sym_comment, - [238104] = 5, + [234169] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3240), 1, - sym_statement_block, - STATE(7600), 1, + STATE(7343), 1, sym_comment, - [238120] = 5, + ACTIONS(11244), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [234183] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11636), 1, + ACTIONS(11683), 1, anon_sym_LBRACE, - STATE(1132), 1, + STATE(1153), 1, sym_enum_body, - STATE(7601), 1, + STATE(7344), 1, sym_comment, - [238136] = 5, + [234199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8324), 1, + ACTIONS(8317), 1, anon_sym_LBRACE, - STATE(377), 1, + STATE(365), 1, sym_class_body, - STATE(7602), 1, + STATE(7345), 1, sym_comment, - [238152] = 4, + [234215] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7603), 1, + ACTIONS(11679), 1, + anon_sym_LBRACE, + STATE(7346), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [238166] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(7633), 1, + sym_enum_body, + [234231] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11664), 1, - sym_identifier, - ACTIONS(11666), 1, - anon_sym_STAR, - STATE(7604), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11523), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__for_header, + STATE(7347), 1, sym_comment, - [238182] = 4, + [234247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7605), 1, + STATE(7348), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [238196] = 5, + ACTIONS(11723), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234261] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, + ACTIONS(8237), 1, anon_sym_LBRACE, - STATE(3536), 1, - sym_statement_block, - STATE(7606), 1, + STATE(1612), 1, + sym_class_body, + STATE(7349), 1, sym_comment, - [238212] = 4, + [234277] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7607), 1, + STATE(7350), 1, sym_comment, - ACTIONS(10763), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [238226] = 4, + ACTIONS(11725), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234291] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7608), 1, + STATE(7351), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [238240] = 4, + ACTIONS(11727), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234305] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7609), 1, + STATE(7352), 1, sym_comment, - ACTIONS(11580), 2, + ACTIONS(9409), 2, anon_sym_else, anon_sym_while, - [238254] = 4, + [234319] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7610), 1, + STATE(7353), 1, sym_comment, - ACTIONS(11668), 2, + ACTIONS(6432), 2, sym__automatic_semicolon, anon_sym_SEMI, - [238268] = 5, + [234333] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(3876), 1, - sym_class_body, - STATE(7611), 1, + STATE(7354), 1, sym_comment, - [238284] = 5, + ACTIONS(11729), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [234347] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9513), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(4198), 1, + STATE(3046), 1, sym_statement_block, - STATE(7612), 1, + STATE(7355), 1, sym_comment, - [238300] = 5, + [234363] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11670), 1, + ACTIONS(11731), 1, anon_sym_SEMI, - ACTIONS(11672), 1, + ACTIONS(11733), 1, sym__automatic_semicolon, - STATE(7613), 1, + STATE(7356), 1, sym_comment, - [238316] = 4, + [234379] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7614), 1, + STATE(7357), 1, sym_comment, - ACTIONS(11674), 2, + ACTIONS(11735), 2, sym__automatic_semicolon, anon_sym_SEMI, - [238330] = 5, + [234393] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8420), 1, + ACTIONS(8335), 1, anon_sym_LBRACE, - STATE(1025), 1, + STATE(1026), 1, sym_class_body, - STATE(7615), 1, + STATE(7358), 1, sym_comment, - [238346] = 4, + [234409] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7616), 1, + ACTIONS(11737), 1, + anon_sym_SEMI, + ACTIONS(11739), 1, + sym__automatic_semicolon, + STATE(7359), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [238360] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [234425] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11676), 1, - sym_identifier, - ACTIONS(11678), 1, - anon_sym_STAR, - STATE(7617), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9486), 1, + anon_sym_LBRACE, + STATE(1381), 1, + sym_statement_block, + STATE(7360), 1, sym_comment, - [238376] = 4, + [234441] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7618), 1, + ACTIONS(11741), 1, + anon_sym_SEMI, + ACTIONS(11743), 1, + sym__automatic_semicolon, + STATE(7361), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [238390] = 4, + [234457] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7619), 1, + ACTIONS(11745), 1, + sym_identifier, + ACTIONS(11747), 1, + anon_sym_STAR, + STATE(7362), 1, sym_comment, - ACTIONS(10519), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [238404] = 5, + [234473] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3559), 1, - sym_class_body, - STATE(7620), 1, + STATE(7363), 1, sym_comment, - [238420] = 5, + ACTIONS(11749), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234487] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(126), 1, - sym_parenthesized_expression, - STATE(7621), 1, + ACTIONS(11751), 1, + anon_sym_LBRACE, + STATE(7307), 1, + sym_object, + STATE(7364), 1, sym_comment, - [238436] = 5, + [234503] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8324), 1, + ACTIONS(8317), 1, anon_sym_LBRACE, - STATE(357), 1, + STATE(347), 1, sym_class_body, - STATE(7622), 1, + STATE(7365), 1, sym_comment, - [238452] = 4, + [234519] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7623), 1, + ACTIONS(9711), 1, + anon_sym_LBRACE, + STATE(1412), 1, + sym_statement_block, + STATE(7366), 1, sym_comment, - ACTIONS(11680), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [238466] = 5, + [234535] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9642), 1, + ACTIONS(9405), 1, anon_sym_LBRACE, - STATE(354), 1, + STATE(349), 1, sym_statement_block, - STATE(7624), 1, + STATE(7367), 1, sym_comment, - [238482] = 5, + [234551] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8418), 1, + ACTIONS(8337), 1, anon_sym_LBRACE, - STATE(1181), 1, + STATE(1129), 1, sym_class_body, - STATE(7625), 1, + STATE(7368), 1, sym_comment, - [238498] = 4, + [234567] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7626), 1, + STATE(7369), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [238512] = 5, + ACTIONS(11753), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234581] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(5613), 1, - sym_statement_block, - STATE(7627), 1, + ACTIONS(11755), 1, + anon_sym_SEMI, + ACTIONS(11757), 1, + sym__automatic_semicolon, + STATE(7370), 1, sym_comment, - [238528] = 5, + [234597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3301), 1, - sym_statement_block, - STATE(7628), 1, + STATE(7371), 1, sym_comment, - [238544] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10228), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234611] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11682), 1, - sym_identifier, - ACTIONS(11684), 1, - anon_sym_STAR, - STATE(7629), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(130), 1, + sym_parenthesized_expression, + STATE(7372), 1, sym_comment, - [238560] = 4, + [234627] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7630), 1, + STATE(7373), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [238574] = 5, + ACTIONS(9278), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [234641] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8324), 1, + ACTIONS(8317), 1, anon_sym_LBRACE, - STATE(370), 1, + STATE(352), 1, sym_class_body, - STATE(7631), 1, + STATE(7374), 1, sym_comment, - [238590] = 4, + [234657] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7632), 1, + ACTIONS(11759), 1, + anon_sym_LBRACE, + STATE(1671), 1, + sym_enum_body, + STATE(7375), 1, sym_comment, - ACTIONS(11580), 2, - anon_sym_else, - anon_sym_while, - [238604] = 4, + [234673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7633), 1, + STATE(7376), 1, sym_comment, - ACTIONS(11580), 2, + ACTIONS(9379), 2, anon_sym_else, anon_sym_while, - [238618] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [234687] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11686), 1, - sym_identifier, - ACTIONS(11688), 1, - anon_sym_STAR, - STATE(7634), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7377), 1, sym_comment, - [238634] = 4, + ACTIONS(9268), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [234701] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7635), 1, + ACTIONS(11761), 1, + anon_sym_LPAREN, + STATE(6159), 1, + sym_parenthesized_expression, + STATE(7378), 1, sym_comment, - ACTIONS(11690), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [238648] = 5, + [234717] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8420), 1, + ACTIONS(8335), 1, anon_sym_LBRACE, - STATE(1050), 1, + STATE(1029), 1, sym_class_body, - STATE(7636), 1, + STATE(7379), 1, sym_comment, - [238664] = 5, + [234733] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11692), 1, - anon_sym_SEMI, - ACTIONS(11694), 1, - sym__automatic_semicolon, - STATE(7637), 1, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3545), 1, + sym_class_body, + STATE(7380), 1, sym_comment, - [238680] = 5, + [234749] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8420), 1, + ACTIONS(8335), 1, anon_sym_LBRACE, - STATE(1051), 1, + STATE(1030), 1, sym_class_body, - STATE(7638), 1, + STATE(7381), 1, sym_comment, - [238696] = 4, + [234765] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7639), 1, + ACTIONS(11519), 1, + anon_sym_LBRACE, + STATE(1348), 1, + sym_statement_block, + STATE(7382), 1, sym_comment, - ACTIONS(9770), 2, - anon_sym_else, - anon_sym_while, - [238710] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [234781] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11696), 1, - sym_identifier, - ACTIONS(11698), 1, - anon_sym_STAR, - STATE(7640), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11763), 1, + anon_sym_LBRACE, + STATE(3647), 1, + sym_statement_block, + STATE(7383), 1, sym_comment, - [238726] = 5, + [234797] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9642), 1, + ACTIONS(9405), 1, anon_sym_LBRACE, - STATE(355), 1, + STATE(357), 1, sym_statement_block, - STATE(7641), 1, + STATE(7384), 1, sym_comment, - [238742] = 5, + [234813] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8418), 1, + ACTIONS(8337), 1, anon_sym_LBRACE, - STATE(1131), 1, + STATE(1115), 1, sym_class_body, - STATE(7642), 1, + STATE(7385), 1, sym_comment, - [238758] = 4, + [234829] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7643), 1, + STATE(7386), 1, sym_comment, - ACTIONS(9433), 2, + ACTIONS(11765), 2, anon_sym_else, anon_sym_while, - [238772] = 5, + [234843] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11700), 1, - anon_sym_SEMI, - ACTIONS(11702), 1, - sym__automatic_semicolon, - STATE(7644), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3047), 1, + sym_statement_block, + STATE(7387), 1, sym_comment, - [238788] = 4, + [234859] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7645), 1, + STATE(7388), 1, sym_comment, - ACTIONS(11704), 2, + ACTIONS(11767), 2, anon_sym_else, anon_sym_while, - [238802] = 4, + [234873] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7646), 1, + ACTIONS(11685), 1, + anon_sym_LBRACE, + STATE(5965), 1, + sym_enum_body, + STATE(7389), 1, sym_comment, - ACTIONS(10538), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [238816] = 5, + [234889] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8324), 1, + ACTIONS(8317), 1, anon_sym_LBRACE, - STATE(349), 1, + STATE(376), 1, sym_class_body, - STATE(7647), 1, + STATE(7390), 1, sym_comment, - [238832] = 5, + [234905] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8418), 1, + ACTIONS(8337), 1, anon_sym_LBRACE, - STATE(1246), 1, + STATE(1108), 1, sym_class_body, - STATE(7648), 1, + STATE(7391), 1, sym_comment, - [238848] = 4, + [234921] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7649), 1, + ACTIONS(8531), 1, + anon_sym_LBRACE, + STATE(5935), 1, + sym_statement_block, + STATE(7392), 1, sym_comment, - ACTIONS(11706), 2, - anon_sym_else, - anon_sym_while, - [238862] = 4, + [234937] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7650), 1, + STATE(7393), 1, sym_comment, - ACTIONS(11706), 2, + ACTIONS(9458), 2, anon_sym_else, anon_sym_while, - [238876] = 5, + [234951] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8420), 1, + ACTIONS(8335), 1, anon_sym_LBRACE, - STATE(1049), 1, + STATE(1052), 1, sym_class_body, - STATE(7651), 1, + STATE(7394), 1, sym_comment, - [238892] = 5, + [234967] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(2989), 1, - sym_statement_block, - STATE(7652), 1, + STATE(2984), 1, + sym_class_body, + STATE(7395), 1, sym_comment, - [238908] = 4, + [234983] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7653), 1, + STATE(7396), 1, sym_comment, - ACTIONS(11708), 2, - anon_sym_else, - anon_sym_while, - [238922] = 4, + ACTIONS(6436), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234997] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7654), 1, + ACTIONS(6088), 1, + anon_sym_LPAREN, + STATE(3429), 1, + sym_arguments, + STATE(7397), 1, sym_comment, - ACTIONS(11710), 2, - anon_sym_else, - anon_sym_while, - [238936] = 5, + [235013] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8418), 1, + ACTIONS(8337), 1, anon_sym_LBRACE, - STATE(1222), 1, + STATE(1098), 1, sym_class_body, - STATE(7655), 1, + STATE(7398), 1, sym_comment, - [238952] = 4, + [235029] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7656), 1, + STATE(7399), 1, sym_comment, - ACTIONS(11712), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [238966] = 5, + ACTIONS(11769), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [235043] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3526), 1, - sym_class_body, - STATE(7657), 1, + STATE(7400), 1, sym_comment, - [238982] = 4, + ACTIONS(10393), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [235057] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7658), 1, + ACTIONS(8203), 1, + anon_sym_LBRACE, + STATE(7401), 1, sym_comment, - ACTIONS(11714), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [238996] = 5, + STATE(7825), 1, + sym_class_body, + [235073] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9778), 1, + ACTIONS(11661), 1, anon_sym_LBRACE, - STATE(1380), 1, - sym_statement_block, - STATE(7659), 1, + STATE(3983), 1, + sym_enum_body, + STATE(7402), 1, sym_comment, - [239012] = 5, + [235089] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8352), 1, - anon_sym_LBRACE, - STATE(7423), 1, - sym_class_body, - STATE(7660), 1, + ACTIONS(11771), 1, + sym_identifier, + ACTIONS(11773), 1, + anon_sym_STAR, + STATE(7403), 1, sym_comment, - [239028] = 4, + [235105] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7661), 1, + ACTIONS(11775), 1, + anon_sym_LPAREN, + STATE(3837), 1, + sym_parenthesized_expression, + STATE(7404), 1, sym_comment, - ACTIONS(9407), 2, - anon_sym_else, - anon_sym_while, - [239042] = 5, + [235121] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - STATE(3541), 1, - sym_statement_block, - STATE(7662), 1, + STATE(7405), 1, sym_comment, - [239058] = 4, + ACTIONS(6454), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [235135] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7663), 1, + ACTIONS(11777), 1, + anon_sym_LPAREN, + STATE(1408), 1, + sym_parenthesized_expression, + STATE(7406), 1, sym_comment, - ACTIONS(9407), 2, - anon_sym_else, - anon_sym_while, - [239072] = 4, + [235151] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7664), 1, + ACTIONS(8215), 1, + anon_sym_LBRACE, + STATE(1742), 1, + sym_class_body, + STATE(7407), 1, sym_comment, - ACTIONS(9407), 2, - anon_sym_else, - anon_sym_while, - [239086] = 5, + [235167] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11716), 1, - sym_identifier, - ACTIONS(11718), 1, + ACTIONS(11773), 1, anon_sym_STAR, - STATE(7665), 1, + ACTIONS(11779), 1, + sym_identifier, + STATE(7408), 1, sym_comment, - [239102] = 5, + [235183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3266), 1, - sym_statement_block, - STATE(7666), 1, + STATE(7409), 1, sym_comment, - [239118] = 5, + ACTIONS(11781), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [235197] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3546), 1, - sym_class_body, - STATE(7667), 1, + STATE(7410), 1, sym_comment, - [239134] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(11783), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [235211] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(7668), 1, - sym_comment, - ACTIONS(9407), 2, - anon_sym_else, - anon_sym_while, - [239148] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(7669), 1, + ACTIONS(11785), 1, + sym_identifier, + ACTIONS(11787), 1, + sym_private_property_identifier, + STATE(7411), 1, sym_comment, - STATE(7829), 1, - sym_statement_block, - [239164] = 5, + [235227] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8210), 1, - anon_sym_LBRACE, - STATE(523), 1, - sym_class_body, - STATE(7670), 1, + STATE(7412), 1, sym_comment, - [239180] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11720), 1, - anon_sym_SEMI, - ACTIONS(11722), 1, + ACTIONS(10562), 2, sym__automatic_semicolon, - STATE(7671), 1, - sym_comment, - [239196] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_LBRACE, - STATE(1651), 1, - sym_class_body, - STATE(7672), 1, - sym_comment, - [239212] = 4, + anon_sym_SEMI, + [235241] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7673), 1, + STATE(7413), 1, sym_comment, - ACTIONS(6367), 2, + ACTIONS(10666), 2, sym__automatic_semicolon, anon_sym_SEMI, - [239226] = 5, + [235255] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, + ACTIONS(8237), 1, anon_sym_LBRACE, - STATE(3591), 1, + STATE(1564), 1, sym_class_body, - STATE(7674), 1, + STATE(7414), 1, sym_comment, - [239242] = 5, + [235271] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7889), 1, - anon_sym_LPAREN, - STATE(5006), 1, - sym_formal_parameters, - STATE(7675), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7415), 1, sym_comment, - [239258] = 4, + STATE(7904), 1, + sym_statement_block, + [235287] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7676), 1, + STATE(7416), 1, sym_comment, - ACTIONS(9411), 2, + ACTIONS(9872), 2, anon_sym_else, anon_sym_while, - [239272] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7677), 1, - sym_comment, - ACTIONS(11306), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [239286] = 4, + [235301] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7678), 1, + ACTIONS(8231), 1, + anon_sym_LBRACE, + STATE(500), 1, + sym_class_body, + STATE(7417), 1, sym_comment, - ACTIONS(9594), 2, - anon_sym_else, - anon_sym_while, - [239300] = 5, + [235317] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, + ACTIONS(6058), 1, anon_sym_LBRACE, - STATE(3569), 1, + STATE(2863), 1, sym_statement_block, - STATE(7679), 1, + STATE(7418), 1, sym_comment, - [239316] = 5, + [235333] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3252), 1, - sym_statement_block, - STATE(7680), 1, + STATE(7419), 1, sym_comment, - [239332] = 4, + ACTIONS(6660), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [235347] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7681), 1, + ACTIONS(6058), 1, + anon_sym_LBRACE, + STATE(2889), 1, + sym_statement_block, + STATE(7420), 1, sym_comment, - ACTIONS(9407), 2, - anon_sym_else, - anon_sym_while, - [239346] = 5, + [235363] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, + ACTIONS(8261), 1, anon_sym_LBRACE, - STATE(7295), 1, + STATE(1758), 1, sym_class_body, - STATE(7682), 1, + STATE(7421), 1, sym_comment, - [239362] = 4, + [235379] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7683), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7422), 1, sym_comment, - ACTIONS(6326), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [239376] = 4, + STATE(7864), 1, + sym_statement_block, + [235395] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7684), 1, + ACTIONS(11253), 1, + sym_identifier, + ACTIONS(11257), 1, + sym_private_property_identifier, + STATE(7423), 1, sym_comment, - ACTIONS(11724), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [239390] = 4, + [235411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7685), 1, + STATE(7424), 1, sym_comment, - ACTIONS(9407), 2, + ACTIONS(9815), 2, anon_sym_else, anon_sym_while, - [239404] = 5, + [235425] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11726), 1, - anon_sym_SEMI, - ACTIONS(11728), 1, - sym__automatic_semicolon, - STATE(7686), 1, + ACTIONS(11789), 1, + sym_identifier, + ACTIONS(11791), 1, + sym_private_property_identifier, + STATE(7425), 1, sym_comment, - [239420] = 5, + [235441] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(3049), 1, - sym_class_body, - STATE(7687), 1, + STATE(7426), 1, sym_comment, - [239436] = 5, + ACTIONS(11793), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [235455] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9536), 1, + ACTIONS(6058), 1, anon_sym_LBRACE, - STATE(4007), 1, + STATE(2898), 1, sym_statement_block, - STATE(7688), 1, + STATE(7427), 1, sym_comment, - [239452] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [235471] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(3053), 1, - sym_class_body, - STATE(7689), 1, - sym_comment, - [239468] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7690), 1, + ACTIONS(11227), 1, + sym_identifier, + ACTIONS(11231), 1, + sym_private_property_identifier, + STATE(7428), 1, sym_comment, - ACTIONS(6324), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [239482] = 5, + [235487] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, + ACTIONS(9550), 1, anon_sym_LBRACE, - STATE(1640), 1, - sym_class_body, - STATE(7691), 1, + STATE(493), 1, + sym_statement_block, + STATE(7429), 1, sym_comment, - [239498] = 5, + [235503] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11730), 1, + ACTIONS(11795), 1, sym_identifier, - ACTIONS(11732), 1, - anon_sym_STAR, - STATE(7692), 1, + ACTIONS(11797), 1, + sym_private_property_identifier, + STATE(7430), 1, sym_comment, - [239514] = 4, + [235519] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7693), 1, + STATE(7431), 1, sym_comment, - ACTIONS(6461), 2, + ACTIONS(6462), 2, anon_sym_COMMA, anon_sym_RBRACE, - [239528] = 4, + [235533] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7694), 1, + ACTIONS(8247), 1, + anon_sym_LBRACE, + STATE(4075), 1, + sym_class_body, + STATE(7432), 1, sym_comment, - ACTIONS(11734), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [239542] = 4, + [235549] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7695), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7433), 1, sym_comment, - ACTIONS(11736), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [239556] = 5, + STATE(7773), 1, + sym_statement_block, + [235565] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3576), 1, - sym_class_body, - STATE(7696), 1, + ACTIONS(11799), 1, + sym_identifier, + ACTIONS(11801), 1, + sym_private_property_identifier, + STATE(7434), 1, sym_comment, - [239572] = 5, + [235581] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8250), 1, - anon_sym_LBRACE, - STATE(4059), 1, - sym_class_body, - STATE(7697), 1, + STATE(7435), 1, sym_comment, - [239588] = 4, + ACTIONS(6359), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [235595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7698), 1, + STATE(7436), 1, sym_comment, - ACTIONS(6542), 2, + ACTIONS(6474), 2, anon_sym_COMMA, anon_sym_RBRACE, - [239602] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [235609] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11732), 1, - anon_sym_STAR, - ACTIONS(11738), 1, - sym_identifier, - STATE(7699), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7437), 1, sym_comment, - [239618] = 5, + ACTIONS(11803), 2, + anon_sym_else, + anon_sym_while, + [235623] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11740), 1, - anon_sym_LPAREN, - STATE(155), 1, - sym__for_header, - STATE(7700), 1, + ACTIONS(9486), 1, + anon_sym_LBRACE, + STATE(1383), 1, + sym_statement_block, + STATE(7438), 1, sym_comment, - [239634] = 4, + [235639] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7701), 1, + ACTIONS(11805), 1, + sym_identifier, + ACTIONS(11807), 1, + anon_sym_STAR, + STATE(7439), 1, sym_comment, - ACTIONS(9262), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [239648] = 5, + [235655] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11742), 1, - anon_sym_SEMI, - ACTIONS(11744), 1, - sym__automatic_semicolon, - STATE(7702), 1, + STATE(7440), 1, sym_comment, - [239664] = 5, + ACTIONS(6497), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [235669] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11746), 1, + ACTIONS(11809), 1, sym_identifier, - ACTIONS(11748), 1, + ACTIONS(11811), 1, sym_private_property_identifier, - STATE(7703), 1, - sym_comment, - [239680] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3222), 1, - sym_statement_block, - STATE(7704), 1, + STATE(7441), 1, sym_comment, - [239696] = 5, + [235685] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11750), 1, + ACTIONS(11813), 1, sym_identifier, - ACTIONS(11752), 1, + ACTIONS(11815), 1, sym_private_property_identifier, - STATE(7705), 1, + STATE(7442), 1, sym_comment, - [239712] = 5, + [235701] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11754), 1, - anon_sym_COMMA, - ACTIONS(11756), 1, - anon_sym_from, - STATE(7706), 1, + STATE(7443), 1, sym_comment, - [239728] = 5, + ACTIONS(11817), 2, + anon_sym_else, + anon_sym_while, + [235715] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, - anon_sym_LBRACE, - STATE(3538), 1, - sym_statement_block, - STATE(7707), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6359), 1, + sym__from_clause, + STATE(7444), 1, sym_comment, - [239744] = 4, + [235731] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7708), 1, + ACTIONS(11819), 1, + sym_identifier, + ACTIONS(11821), 1, + sym_private_property_identifier, + STATE(7445), 1, sym_comment, - ACTIONS(9264), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [239758] = 4, + [235747] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7709), 1, + STATE(7446), 1, sym_comment, - ACTIONS(11758), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [239772] = 4, + ACTIONS(11823), 2, + anon_sym_else, + anon_sym_while, + [235761] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7710), 1, + STATE(7447), 1, sym_comment, - ACTIONS(11760), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [239786] = 5, + ACTIONS(11825), 2, + anon_sym_else, + anon_sym_while, + [235775] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(9862), 1, anon_sym_LBRACE, - STATE(1776), 1, - sym_class_body, - STATE(7711), 1, + STATE(1755), 1, + sym_statement_block, + STATE(7448), 1, sym_comment, - [239802] = 4, + [235791] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7712), 1, + STATE(7449), 1, sym_comment, - ACTIONS(11762), 2, - anon_sym_COMMA, - anon_sym_GT, - [239816] = 5, + ACTIONS(11827), 2, + anon_sym_else, + anon_sym_while, + [235805] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(11829), 1, anon_sym_LBRACE, - STATE(7713), 1, - sym_comment, - STATE(8077), 1, + STATE(4127), 1, sym_statement_block, - [239832] = 4, + STATE(7450), 1, + sym_comment, + [235821] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7714), 1, + ACTIONS(11831), 1, + sym_identifier, + ACTIONS(11833), 1, + sym_private_property_identifier, + STATE(7451), 1, sym_comment, - ACTIONS(6550), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [239846] = 5, + [235837] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6526), 1, - sym__from_clause, - STATE(7715), 1, + ACTIONS(11835), 1, + sym_identifier, + ACTIONS(11837), 1, + sym_private_property_identifier, + STATE(7452), 1, sym_comment, - [239862] = 4, + [235853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7716), 1, + STATE(7453), 1, sym_comment, - ACTIONS(9564), 2, + ACTIONS(9759), 2, anon_sym_else, anon_sym_while, - [239876] = 5, + [235867] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8261), 1, anon_sym_LBRACE, - STATE(7717), 1, + STATE(1761), 1, + sym_class_body, + STATE(7454), 1, sym_comment, - STATE(8135), 1, - sym_statement_block, - [239892] = 5, + [235883] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(11839), 1, + sym_identifier, + ACTIONS(11841), 1, + sym_private_property_identifier, + STATE(7455), 1, + sym_comment, + [235899] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9706), 1, - anon_sym_LBRACE, - STATE(515), 1, - sym_statement_block, - STATE(7718), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11843), 1, + sym_identifier, + ACTIONS(11845), 1, + sym_private_property_identifier, + STATE(7456), 1, sym_comment, - [239908] = 4, + [235915] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7719), 1, + ACTIONS(11847), 1, + anon_sym_SEMI, + ACTIONS(11849), 1, + sym__automatic_semicolon, + STATE(7457), 1, sym_comment, - ACTIONS(11764), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [239922] = 4, + [235931] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7720), 1, + ACTIONS(11124), 1, + anon_sym_LBRACE, + STATE(3968), 1, + sym_statement_block, + STATE(7458), 1, sym_comment, - ACTIONS(6488), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [239936] = 4, + [235947] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7721), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7459), 1, sym_comment, - ACTIONS(6430), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [239950] = 4, + STATE(7734), 1, + sym_statement_block, + [235963] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7722), 1, + ACTIONS(11851), 1, + anon_sym_LBRACE, + STATE(4131), 1, + sym_enum_body, + STATE(7460), 1, sym_comment, - ACTIONS(6428), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [239964] = 5, + [235979] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11766), 1, + ACTIONS(11853), 1, sym_identifier, - ACTIONS(11768), 1, + ACTIONS(11855), 1, anon_sym_STAR, - STATE(7723), 1, + STATE(7461), 1, sym_comment, - [239980] = 4, + [235995] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7724), 1, + STATE(7462), 1, sym_comment, - ACTIONS(11770), 2, + ACTIONS(11857), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [239994] = 5, + anon_sym_GT, + [236009] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(6908), 1, - sym_statement_block, - STATE(7725), 1, + STATE(7463), 1, sym_comment, - [240010] = 5, + ACTIONS(9771), 2, + anon_sym_else, + anon_sym_while, + [236023] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9855), 1, - anon_sym_in, - ACTIONS(9857), 1, - anon_sym_of, - STATE(7726), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3043), 1, + sym_statement_block, + STATE(7464), 1, sym_comment, - [240026] = 5, + [236039] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11772), 1, + ACTIONS(8251), 1, anon_sym_LBRACE, - STATE(4209), 1, - sym_statement_block, - STATE(7727), 1, + STATE(1507), 1, + sym_class_body, + STATE(7465), 1, sym_comment, - [240042] = 5, + [236055] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11774), 1, - anon_sym_LBRACE, - STATE(1287), 1, - sym_switch_body, - STATE(7728), 1, + ACTIONS(11859), 1, + sym_identifier, + STATE(6465), 1, + sym_nested_identifier, + STATE(7466), 1, sym_comment, - [240058] = 4, + [236071] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7729), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3034), 1, + sym_statement_block, + STATE(7467), 1, sym_comment, - ACTIONS(11350), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [240072] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [236087] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11776), 1, - sym_identifier, - ACTIONS(11778), 1, - sym_private_property_identifier, - STATE(7730), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7468), 1, sym_comment, - [240088] = 4, + ACTIONS(11861), 2, + anon_sym_else, + anon_sym_while, + [236101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7731), 1, + STATE(7469), 1, sym_comment, - ACTIONS(2340), 2, + ACTIONS(11863), 2, anon_sym_else, anon_sym_while, - [240102] = 4, + [236115] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7732), 1, + ACTIONS(8237), 1, + anon_sym_LBRACE, + STATE(1657), 1, + sym_class_body, + STATE(7470), 1, sym_comment, - ACTIONS(11780), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [240116] = 4, + [236131] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7733), 1, + STATE(7471), 1, sym_comment, - ACTIONS(11782), 2, + ACTIONS(11865), 2, anon_sym_else, anon_sym_while, - [240130] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [236145] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11784), 1, - sym_identifier, - ACTIONS(11786), 1, - sym_private_property_identifier, - STATE(7734), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7171), 1, + sym_statement_block, + STATE(7472), 1, sym_comment, - [240146] = 4, + [236161] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7735), 1, + STATE(7473), 1, sym_comment, - ACTIONS(11788), 2, + ACTIONS(11867), 2, anon_sym_COMMA, anon_sym_RBRACE, - [240160] = 5, + [236175] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7474), 1, + sym_comment, + ACTIONS(11869), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [236189] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11790), 1, + ACTIONS(11871), 1, sym_identifier, - ACTIONS(11792), 1, + ACTIONS(11873), 1, sym_private_property_identifier, - STATE(7736), 1, + STATE(7475), 1, sym_comment, - [240176] = 5, + [236205] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11794), 1, - anon_sym_LBRACE, - STATE(4212), 1, - sym_enum_body, - STATE(7737), 1, + STATE(7476), 1, sym_comment, - [240192] = 4, + ACTIONS(9787), 2, + anon_sym_else, + anon_sym_while, + [236219] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7738), 1, + STATE(7477), 1, sym_comment, - ACTIONS(6093), 2, + ACTIONS(11875), 2, sym__automatic_semicolon, anon_sym_SEMI, - [240206] = 5, + [236233] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11271), 1, + ACTIONS(11747), 1, + anon_sym_STAR, + ACTIONS(11877), 1, sym_identifier, - ACTIONS(11275), 1, - sym_private_property_identifier, - STATE(7739), 1, + STATE(7478), 1, sym_comment, - [240222] = 5, + [236249] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9706), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(494), 1, + STATE(7206), 1, sym_statement_block, - STATE(7740), 1, + STATE(7479), 1, sym_comment, - [240238] = 5, + [236265] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8258), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(4449), 1, + STATE(3754), 1, sym_class_body, - STATE(7741), 1, + STATE(7480), 1, sym_comment, - [240254] = 4, + [236281] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7742), 1, - sym_comment, - ACTIONS(10577), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [240268] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11796), 1, - sym_identifier, - ACTIONS(11798), 1, - anon_sym_STAR, - STATE(7743), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7481), 1, sym_comment, - [240284] = 5, + STATE(7962), 1, + sym_formal_parameters, + [236297] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3124), 1, + STATE(3042), 1, sym_statement_block, - STATE(7744), 1, + STATE(7482), 1, sym_comment, - [240300] = 5, + [236313] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11772), 1, - anon_sym_LBRACE, - STATE(4192), 1, - sym_statement_block, - STATE(7745), 1, + STATE(7483), 1, sym_comment, - [240316] = 5, + ACTIONS(11879), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [236327] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_LBRACE, - STATE(3125), 1, - sym_statement_block, - STATE(7746), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(127), 1, + sym_parenthesized_expression, + STATE(7484), 1, sym_comment, - [240332] = 5, + [236343] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_LBRACE, - STATE(3126), 1, - sym_statement_block, - STATE(7747), 1, + ACTIONS(11881), 1, + anon_sym_SEMI, + ACTIONS(11883), 1, + sym__automatic_semicolon, + STATE(7485), 1, sym_comment, - [240348] = 5, + [236359] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(7748), 1, + STATE(7486), 1, sym_comment, - STATE(7859), 1, - sym_statement_block, - [240364] = 5, + ACTIONS(9336), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [236373] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8210), 1, - anon_sym_LBRACE, - STATE(496), 1, - sym_class_body, - STATE(7749), 1, + STATE(7487), 1, sym_comment, - [240380] = 5, + ACTIONS(11885), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [236387] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(3127), 1, - sym_class_body, - STATE(7750), 1, + STATE(7488), 1, sym_comment, - [240396] = 4, + ACTIONS(11887), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [236401] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7751), 1, + ACTIONS(8249), 1, + anon_sym_LBRACE, + STATE(3942), 1, + sym_class_body, + STATE(7489), 1, sym_comment, - ACTIONS(11800), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [240410] = 4, + [236417] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7752), 1, + STATE(7490), 1, sym_comment, - ACTIONS(2295), 2, + ACTIONS(11889), 2, sym__automatic_semicolon, anon_sym_SEMI, - [240424] = 5, + [236431] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(161), 1, - sym_parenthesized_expression, - STATE(7753), 1, + ACTIONS(11891), 1, + anon_sym_SEMI, + ACTIONS(11893), 1, + sym__automatic_semicolon, + STATE(7491), 1, sym_comment, - [240440] = 5, + [236447] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(7637), 1, - sym__from_clause, - STATE(7754), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + STATE(7492), 1, sym_comment, - [240456] = 5, + STATE(7921), 1, + sym_type_annotation, + [236463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(6082), 1, - sym_formal_parameters, - STATE(7755), 1, + STATE(7493), 1, sym_comment, - [240472] = 5, + ACTIONS(11895), 2, + anon_sym_else, + anon_sym_while, + [236477] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8271), 1, anon_sym_LBRACE, - STATE(3156), 1, - sym_statement_block, - STATE(7756), 1, + STATE(3883), 1, + sym_class_body, + STATE(7494), 1, sym_comment, - [240488] = 4, + [236493] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7757), 1, + STATE(7495), 1, sym_comment, - ACTIONS(11802), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [240502] = 5, + ACTIONS(7627), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [236507] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(3879), 1, - sym_class_body, - STATE(7758), 1, + STATE(7496), 1, sym_comment, - [240518] = 5, + ACTIONS(11897), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [236521] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, - anon_sym_LBRACE, - STATE(1572), 1, - sym_class_body, - STATE(7759), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(100), 1, + sym_parenthesized_expression, + STATE(7497), 1, sym_comment, - [240534] = 5, + [236537] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6089), 1, - anon_sym_LPAREN, - STATE(3578), 1, - sym_arguments, - STATE(7760), 1, + STATE(7498), 1, sym_comment, - [240550] = 5, + ACTIONS(11899), 2, + anon_sym_else, + anon_sym_while, + [236551] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11804), 1, + ACTIONS(11901), 1, sym_identifier, - ACTIONS(11806), 1, - anon_sym_STAR, - STATE(7761), 1, - sym_comment, - [240566] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7762), 1, + ACTIONS(11903), 1, + sym_private_property_identifier, + STATE(7499), 1, sym_comment, - ACTIONS(11808), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [240580] = 5, + [236567] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3873), 1, - sym_class_body, - STATE(7763), 1, + STATE(3133), 1, + sym_statement_block, + STATE(7500), 1, sym_comment, - [240596] = 5, + [236583] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11810), 1, + ACTIONS(11905), 1, sym_identifier, - STATE(7265), 1, + STATE(7038), 1, sym_nested_identifier, - STATE(7764), 1, + STATE(7501), 1, sym_comment, - [240612] = 5, + [236599] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11812), 1, - anon_sym_LBRACE, - STATE(981), 1, - sym_statement_block, - STATE(7765), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(5810), 1, + sym_formal_parameters, + STATE(7502), 1, sym_comment, - [240628] = 5, + [236615] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3600), 1, - sym_class_body, - STATE(7766), 1, + STATE(7503), 1, sym_comment, - [240644] = 5, + ACTIONS(11907), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [236629] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11814), 1, - anon_sym_LPAREN, - STATE(6422), 1, - sym_parenthesized_expression, - STATE(7767), 1, + STATE(7504), 1, sym_comment, - [240660] = 4, + ACTIONS(11909), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [236643] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7768), 1, + ACTIONS(11911), 1, + anon_sym_SEMI, + ACTIONS(11913), 1, + sym__automatic_semicolon, + STATE(7505), 1, sym_comment, - ACTIONS(11816), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [240674] = 5, + [236659] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9536), 1, - anon_sym_LBRACE, - STATE(4016), 1, - sym_statement_block, - STATE(7769), 1, + STATE(7506), 1, sym_comment, - [240690] = 5, + ACTIONS(6404), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [236673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11818), 1, - anon_sym_LBRACE, - STATE(7639), 1, - sym_enum_body, - STATE(7770), 1, + STATE(7507), 1, sym_comment, - [240706] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11820), 1, - anon_sym_SEMI, - ACTIONS(11822), 1, + ACTIONS(11915), 2, sym__automatic_semicolon, - STATE(7771), 1, - sym_comment, - [240722] = 5, + anon_sym_SEMI, + [236687] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11824), 1, - anon_sym_LBRACE, - STATE(7762), 1, - sym_object, - STATE(7772), 1, + STATE(7508), 1, sym_comment, - [240738] = 5, + ACTIONS(11917), 2, + anon_sym_else, + anon_sym_while, + [236701] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8215), 1, anon_sym_LBRACE, - STATE(6920), 1, - sym_statement_block, - STATE(7773), 1, + STATE(1719), 1, + sym_class_body, + STATE(7509), 1, sym_comment, - [240754] = 5, + [236717] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(152), 1, - sym_parenthesized_expression, - STATE(7774), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(7341), 1, + sym__from_clause, + STATE(7510), 1, sym_comment, - [240770] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [236733] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(7775), 1, - sym_comment, - ACTIONS(10270), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [240784] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7776), 1, + ACTIONS(11919), 1, + sym_identifier, + ACTIONS(11921), 1, + sym_private_property_identifier, + STATE(7511), 1, sym_comment, - ACTIONS(11826), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [240798] = 5, + [236749] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3220), 1, + STATE(3135), 1, sym_statement_block, - STATE(7777), 1, + STATE(7512), 1, sym_comment, - [240814] = 5, + [236765] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11828), 1, - anon_sym_SEMI, - ACTIONS(11830), 1, - sym__automatic_semicolon, - STATE(7778), 1, + ACTIONS(6058), 1, + anon_sym_LBRACE, + STATE(2928), 1, + sym_statement_block, + STATE(7513), 1, sym_comment, - [240830] = 5, + [236781] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11832), 1, - anon_sym_SEMI, - ACTIONS(11834), 1, - sym__automatic_semicolon, - STATE(7779), 1, + STATE(7514), 1, sym_comment, - [240846] = 5, + ACTIONS(9417), 2, + anon_sym_else, + anon_sym_while, + [236795] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(9693), 1, anon_sym_LBRACE, - STATE(3179), 1, + STATE(1709), 1, sym_statement_block, - STATE(7780), 1, + STATE(7515), 1, sym_comment, - [240862] = 5, + [236811] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8258), 1, + ACTIONS(8243), 1, anon_sym_LBRACE, - STATE(4417), 1, + STATE(3944), 1, sym_class_body, - STATE(7781), 1, + STATE(7516), 1, sym_comment, - [240878] = 5, + [236827] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(7598), 1, - sym__from_clause, - STATE(7782), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3136), 1, + sym_statement_block, + STATE(7517), 1, sym_comment, - [240894] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [236843] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(7783), 1, - sym_comment, - ACTIONS(11836), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [240908] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7784), 1, + ACTIONS(2466), 1, + anon_sym_DOT, + ACTIONS(6070), 1, + sym_identifier, + STATE(7518), 1, sym_comment, - ACTIONS(11838), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [240922] = 4, + [236859] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7785), 1, + ACTIONS(2470), 1, + anon_sym_DOT, + ACTIONS(6070), 1, + sym_identifier, + STATE(7519), 1, sym_comment, - ACTIONS(11840), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [240936] = 4, + [236875] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7786), 1, + STATE(7520), 1, sym_comment, - ACTIONS(11842), 2, + ACTIONS(6446), 2, sym__automatic_semicolon, anon_sym_SEMI, - [240950] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11844), 1, - sym_identifier, - ACTIONS(11846), 1, - sym_private_property_identifier, - STATE(7787), 1, - sym_comment, - [240966] = 5, + [236889] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11848), 1, - anon_sym_SEMI, - ACTIONS(11850), 1, - sym__automatic_semicolon, - STATE(7788), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3140), 1, + sym_statement_block, + STATE(7521), 1, sym_comment, - [240982] = 5, + [236905] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11852), 1, - anon_sym_LBRACE, - STATE(7733), 1, - sym_switch_body, - STATE(7789), 1, + STATE(7522), 1, sym_comment, - [240998] = 5, + ACTIONS(11157), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [236919] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8234), 1, + ACTIONS(8215), 1, anon_sym_LBRACE, - STATE(1908), 1, + STATE(1734), 1, sym_class_body, - STATE(7790), 1, + STATE(7523), 1, sym_comment, - [241014] = 5, + [236935] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11854), 1, - anon_sym_SEMI, - ACTIONS(11856), 1, - sym__automatic_semicolon, - STATE(7791), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3141), 1, + sym_statement_block, + STATE(7524), 1, sym_comment, - [241030] = 5, + [236951] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11858), 1, - anon_sym_SEMI, - ACTIONS(11860), 1, - sym__automatic_semicolon, - STATE(7792), 1, + ACTIONS(11315), 1, + anon_sym_LBRACE, + STATE(1439), 1, + sym_statement_block, + STATE(7525), 1, sym_comment, - [241046] = 4, + [236967] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7793), 1, + ACTIONS(11923), 1, + sym_identifier, + STATE(7078), 1, + sym_nested_identifier, + STATE(7526), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [241060] = 5, + [236983] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9716), 1, - anon_sym_LBRACE, - STATE(1653), 1, - sym_statement_block, - STATE(7794), 1, + STATE(7527), 1, sym_comment, - [241076] = 4, + ACTIONS(11925), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [236997] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7795), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6247), 1, + sym__from_clause, + STATE(7528), 1, sym_comment, - ACTIONS(6568), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [241090] = 5, + [237013] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8258), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(4402), 1, + STATE(3600), 1, sym_class_body, - STATE(7796), 1, + STATE(7529), 1, sym_comment, - [241106] = 5, + [237029] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(11927), 1, + sym_identifier, + ACTIONS(11929), 1, + sym_private_property_identifier, + STATE(7530), 1, + sym_comment, + [237045] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(3062), 1, - sym_class_body, - STATE(7797), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11931), 1, + sym_identifier, + ACTIONS(11933), 1, + sym_private_property_identifier, + STATE(7531), 1, sym_comment, - [241122] = 4, + [237061] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7798), 1, + STATE(7532), 1, sym_comment, - ACTIONS(11864), 2, + ACTIONS(2464), 2, anon_sym_else, anon_sym_while, - [241136] = 4, + [237075] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7799), 1, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(2937), 1, + sym_class_body, + STATE(7533), 1, sym_comment, - ACTIONS(11199), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [241150] = 5, + [237091] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3285), 1, + STATE(3151), 1, sym_statement_block, - STATE(7800), 1, + STATE(7534), 1, sym_comment, - [241166] = 4, + [237107] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7801), 1, + ACTIONS(8271), 1, + anon_sym_LBRACE, + STATE(3892), 1, + sym_class_body, + STATE(7535), 1, sym_comment, - ACTIONS(11866), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [241180] = 4, + [237123] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7802), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6251), 1, + sym__from_clause, + STATE(7536), 1, sym_comment, - ACTIONS(11868), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [241194] = 4, + [237139] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7803), 1, + STATE(7537), 1, sym_comment, - ACTIONS(10262), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [241208] = 5, + ACTIONS(9419), 2, + anon_sym_else, + anon_sym_while, + [237153] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11870), 1, - anon_sym_SEMI, - ACTIONS(11872), 1, - sym__automatic_semicolon, - STATE(7804), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + STATE(3580), 1, + sym_statement_block, + STATE(7538), 1, sym_comment, - [241224] = 5, + [237169] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9574), 1, + ACTIONS(5602), 1, anon_sym_LBRACE, - STATE(1914), 1, + STATE(3570), 1, sym_statement_block, - STATE(7805), 1, + STATE(7539), 1, sym_comment, - [241240] = 4, + [237185] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7806), 1, + ACTIONS(8203), 1, + anon_sym_LBRACE, + STATE(7540), 1, sym_comment, - ACTIONS(11143), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [241254] = 4, + STATE(7922), 1, + sym_class_body, + [237201] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7807), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + STATE(3557), 1, + sym_statement_block, + STATE(7541), 1, sym_comment, - ACTIONS(11874), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [241268] = 4, + [237217] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7808), 1, + STATE(7542), 1, sym_comment, - ACTIONS(9546), 2, - anon_sym_else, - anon_sym_while, - [241282] = 5, + ACTIONS(6355), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [237231] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10916), 1, - anon_sym_LBRACE, - STATE(1292), 1, - sym_statement_block, - STATE(7809), 1, + STATE(7543), 1, sym_comment, - [241298] = 5, + ACTIONS(11935), 2, + anon_sym_else, + anon_sym_while, + [237245] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8336), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(1649), 1, + STATE(3527), 1, sym_class_body, - STATE(7810), 1, + STATE(7544), 1, sym_comment, - [241314] = 5, + [237261] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11794), 1, - anon_sym_LBRACE, - STATE(4161), 1, - sym_enum_body, - STATE(7811), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(7219), 1, + sym__from_clause, + STATE(7545), 1, sym_comment, - [241330] = 4, + [237277] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7812), 1, + ACTIONS(8271), 1, + anon_sym_LBRACE, + STATE(3893), 1, + sym_class_body, + STATE(7546), 1, sym_comment, - ACTIONS(6345), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [241344] = 4, + [237293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7813), 1, + STATE(7547), 1, sym_comment, - ACTIONS(11876), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [241358] = 4, + ACTIONS(8113), 2, + anon_sym_in, + anon_sym_of, + [237307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7814), 1, + ACTIONS(8251), 1, + anon_sym_LBRACE, + STATE(1473), 1, + sym_class_body, + STATE(7548), 1, sym_comment, - ACTIONS(11878), 2, - anon_sym_else, - anon_sym_while, - [241372] = 5, + [237323] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(6290), 1, + STATE(3518), 1, sym_class_body, - STATE(7815), 1, + STATE(7549), 1, sym_comment, - [241388] = 5, + [237339] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11718), 1, - anon_sym_STAR, - ACTIONS(11880), 1, + ACTIONS(11937), 1, sym_identifier, - STATE(7816), 1, + ACTIONS(11939), 1, + sym_private_property_identifier, + STATE(7550), 1, sym_comment, - [241404] = 5, + [237355] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11882), 1, - anon_sym_LPAREN, - STATE(3963), 1, - sym_parenthesized_expression, - STATE(7817), 1, + STATE(7551), 1, sym_comment, - [241420] = 5, + ACTIONS(11941), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [237369] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7691), 1, - anon_sym_DOT, - ACTIONS(11884), 1, - anon_sym_GT, - STATE(7818), 1, + STATE(7552), 1, sym_comment, - [241436] = 5, + ACTIONS(9419), 2, + anon_sym_else, + anon_sym_while, + [237383] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3181), 1, - sym_statement_block, - STATE(7819), 1, + ACTIONS(11943), 1, + anon_sym_SEMI, + ACTIONS(11945), 1, + sym__automatic_semicolon, + STATE(7553), 1, sym_comment, - [241452] = 4, + [237399] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7820), 1, + STATE(7554), 1, sym_comment, - ACTIONS(11886), 2, + ACTIONS(6357), 2, sym__automatic_semicolon, anon_sym_SEMI, - [241466] = 4, + [237413] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7821), 1, + ACTIONS(11947), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym_statement_block, + STATE(7555), 1, sym_comment, - ACTIONS(6304), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [241480] = 4, + [237429] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7822), 1, + STATE(7556), 1, sym_comment, - ACTIONS(9369), 2, + ACTIONS(9421), 2, anon_sym_else, anon_sym_while, - [241494] = 4, + [237443] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7823), 1, + STATE(7557), 1, sym_comment, - ACTIONS(9810), 2, + ACTIONS(9425), 2, anon_sym_else, anon_sym_while, - [241508] = 4, + [237457] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7824), 1, + STATE(7558), 1, sym_comment, - ACTIONS(9812), 2, - anon_sym_else, - anon_sym_while, - [241522] = 4, + ACTIONS(11949), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [237471] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7825), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(162), 1, + sym_parenthesized_expression, + STATE(7559), 1, sym_comment, - ACTIONS(9814), 2, - anon_sym_else, - anon_sym_while, - [241536] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [237487] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11888), 1, - sym_identifier, - STATE(7281), 1, - sym_nested_identifier, - STATE(7826), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(3727), 1, + sym_class_body, + STATE(7560), 1, sym_comment, - [241552] = 5, + [237503] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9513), 1, + ACTIONS(11829), 1, anon_sym_LBRACE, - STATE(4047), 1, + STATE(4171), 1, sym_statement_block, - STATE(7827), 1, + STATE(7561), 1, sym_comment, - [241568] = 5, + [237519] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9513), 1, - anon_sym_LBRACE, - STATE(4046), 1, - sym_statement_block, - STATE(7828), 1, + ACTIONS(11951), 1, + anon_sym_SEMI, + ACTIONS(11953), 1, + sym__automatic_semicolon, + STATE(7562), 1, sym_comment, - [241584] = 4, + [237535] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7829), 1, + ACTIONS(11124), 1, + anon_sym_LBRACE, + STATE(3905), 1, + sym_statement_block, + STATE(7563), 1, sym_comment, - ACTIONS(6472), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [241598] = 5, + [237551] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5508), 1, - anon_sym_LPAREN, - STATE(3044), 1, - sym_arguments, - STATE(7830), 1, + STATE(7564), 1, sym_comment, - [241614] = 5, + ACTIONS(9419), 2, + anon_sym_else, + anon_sym_while, + [237565] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8218), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(1882), 1, - sym_class_body, - STATE(7831), 1, + STATE(3009), 1, + sym_statement_block, + STATE(7565), 1, sym_comment, - [241630] = 5, + [237581] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6412), 1, - sym__from_clause, - STATE(7832), 1, + STATE(7566), 1, sym_comment, - [241646] = 5, + ACTIONS(11955), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [237595] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(11957), 1, anon_sym_LBRACE, - STATE(7698), 1, - sym_statement_block, - STATE(7833), 1, + STATE(1672), 1, + sym_switch_body, + STATE(7567), 1, sym_comment, - [241662] = 4, + [237611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7834), 1, + STATE(7568), 1, sym_comment, - ACTIONS(11890), 2, + ACTIONS(11959), 2, anon_sym_else, anon_sym_while, - [241676] = 4, + [237625] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7835), 1, + ACTIONS(9693), 1, + anon_sym_LBRACE, + STATE(1705), 1, + sym_statement_block, + STATE(7569), 1, sym_comment, - ACTIONS(11892), 2, - anon_sym_else, - anon_sym_while, - [241690] = 4, + [237641] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7836), 1, + STATE(7570), 1, sym_comment, - ACTIONS(11894), 2, + ACTIONS(11961), 2, anon_sym_else, anon_sym_while, - [241704] = 4, + [237655] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7837), 1, + STATE(7571), 1, + sym_comment, + ACTIONS(6367), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [237669] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7572), 1, sym_comment, - ACTIONS(11896), 2, + ACTIONS(9419), 2, anon_sym_else, anon_sym_while, - [241718] = 4, + [237683] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7838), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(5052), 1, + sym_formal_parameters, + STATE(7573), 1, sym_comment, - ACTIONS(8164), 2, - anon_sym_in, - anon_sym_of, - [241732] = 4, + [237699] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7839), 1, + STATE(7574), 1, sym_comment, - ACTIONS(11898), 2, + ACTIONS(9419), 2, anon_sym_else, anon_sym_while, - [241746] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [237713] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11900), 1, - sym_identifier, - STATE(6794), 1, - sym_ui_simple_nested_identifier, - STATE(7840), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7575), 1, sym_comment, - [241762] = 4, + ACTIONS(11108), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [237727] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7841), 1, + STATE(7576), 1, sym_comment, - ACTIONS(11862), 2, + ACTIONS(9419), 2, anon_sym_else, anon_sym_while, - [241776] = 5, + [237741] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8243), 1, anon_sym_LBRACE, - STATE(7720), 1, - sym_statement_block, - STATE(7842), 1, + STATE(3927), 1, + sym_class_body, + STATE(7577), 1, sym_comment, - [241792] = 5, + [237757] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(131), 1, - sym_parenthesized_expression, - STATE(7843), 1, + STATE(7578), 1, sym_comment, - [241808] = 5, + ACTIONS(11963), 2, + anon_sym_else, + anon_sym_while, + [237771] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11902), 1, - anon_sym_LPAREN, - STATE(7844), 1, + STATE(7579), 1, sym_comment, - STATE(8191), 1, - sym_parenthesized_expression, - [241824] = 5, + ACTIONS(11965), 2, + anon_sym_else, + anon_sym_while, + [237785] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8244), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(1524), 1, - sym_class_body, - STATE(7845), 1, + STATE(7405), 1, + sym_statement_block, + STATE(7580), 1, sym_comment, - [241840] = 5, + [237801] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6405), 1, - sym__from_clause, - STATE(7846), 1, + ACTIONS(11967), 1, + sym_identifier, + ACTIONS(11969), 1, + sym_private_property_identifier, + STATE(7581), 1, sym_comment, - [241856] = 4, + [237817] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7847), 1, + ACTIONS(11457), 1, + anon_sym_LPAREN, + STATE(7153), 1, + sym_parenthesized_expression, + STATE(7582), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [241870] = 4, + [237833] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7848), 1, + ACTIONS(11971), 1, + sym_identifier, + STATE(6863), 1, + sym_ui_simple_nested_identifier, + STATE(7583), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [241884] = 4, + [237849] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7849), 1, + ACTIONS(8215), 1, + anon_sym_LBRACE, + STATE(1708), 1, + sym_class_body, + STATE(7584), 1, sym_comment, - ACTIONS(11904), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [241898] = 5, + [237865] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11906), 1, - anon_sym_SEMI, - ACTIONS(11908), 1, - sym__automatic_semicolon, - STATE(7850), 1, + ACTIONS(8243), 1, + anon_sym_LBRACE, + STATE(3920), 1, + sym_class_body, + STATE(7585), 1, sym_comment, - [241914] = 5, + [237881] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(7476), 1, - sym__from_clause, - STATE(7851), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(154), 1, + sym_parenthesized_expression, + STATE(7586), 1, sym_comment, - [241930] = 5, + [237897] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8250), 1, - anon_sym_LBRACE, - STATE(4126), 1, - sym_class_body, - STATE(7852), 1, + ACTIONS(11457), 1, + anon_sym_LPAREN, + STATE(7567), 1, + sym_parenthesized_expression, + STATE(7587), 1, sym_comment, - [241946] = 5, + [237913] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8250), 1, + ACTIONS(11759), 1, anon_sym_LBRACE, - STATE(4127), 1, - sym_class_body, - STATE(7853), 1, + STATE(1625), 1, + sym_enum_body, + STATE(7588), 1, sym_comment, - [241962] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [237929] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11910), 1, - sym_identifier, - STATE(6740), 1, - sym_nested_identifier, - STATE(7854), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11973), 1, + anon_sym_LBRACE, + STATE(3223), 1, + sym_statement_block, + STATE(7589), 1, sym_comment, - [241978] = 4, + [237945] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7855), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3153), 1, + sym_statement_block, + STATE(7590), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [241992] = 4, + [237961] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7856), 1, + ACTIONS(10512), 1, + anon_sym_LBRACE, + STATE(3858), 1, + sym_statement_block, + STATE(7591), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242006] = 4, + [237977] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7857), 1, + STATE(7592), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242020] = 4, + ACTIONS(11975), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [237991] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7858), 1, + ACTIONS(11641), 1, + anon_sym_LBRACE, + STATE(1565), 1, + sym_statement_block, + STATE(7593), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242034] = 4, + [238007] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7859), 1, + STATE(7594), 1, sym_comment, - ACTIONS(6492), 2, + ACTIONS(11977), 2, anon_sym_COMMA, anon_sym_RBRACE, - [242048] = 5, + [238021] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(102), 1, - sym_parenthesized_expression, - STATE(7860), 1, + STATE(7595), 1, sym_comment, - [242064] = 4, + ACTIONS(11979), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [238035] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7861), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3109), 1, + sym_statement_block, + STATE(7596), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242078] = 4, + [238051] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7862), 1, - sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242092] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11912), 1, - sym_identifier, - ACTIONS(11914), 1, - sym_private_property_identifier, - STATE(7863), 1, + ACTIONS(8229), 1, + anon_sym_LBRACE, + STATE(2885), 1, + sym_class_body, + STATE(7597), 1, sym_comment, - [242108] = 5, + [238067] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11916), 1, + ACTIONS(11981), 1, sym_identifier, - ACTIONS(11918), 1, - sym_private_property_identifier, - STATE(7864), 1, + STATE(6844), 1, + sym_nested_identifier, + STATE(7598), 1, sym_comment, - [242124] = 5, + [238083] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(7693), 1, + STATE(3148), 1, sym_statement_block, - STATE(7865), 1, + STATE(7599), 1, sym_comment, - [242140] = 4, + [238099] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7866), 1, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3572), 1, + sym_class_body, + STATE(7600), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242154] = 4, + [238115] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7867), 1, + STATE(7601), 1, sym_comment, - ACTIONS(11862), 2, + ACTIONS(11861), 2, anon_sym_else, anon_sym_while, - [242168] = 5, + [238129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10916), 1, - anon_sym_LBRACE, - STATE(1293), 1, - sym_statement_block, - STATE(7868), 1, + STATE(7602), 1, sym_comment, - [242184] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(11983), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [238143] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11920), 1, - sym_identifier, - ACTIONS(11922), 1, - sym_private_property_identifier, - STATE(7869), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(93), 1, + sym_parenthesized_expression, + STATE(7603), 1, sym_comment, - [242200] = 4, + [238159] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7870), 1, + STATE(7604), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242214] = 4, + ACTIONS(11985), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [238173] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7871), 1, + STATE(7605), 1, sym_comment, - ACTIONS(11862), 2, + ACTIONS(11987), 2, anon_sym_else, anon_sym_while, - [242228] = 4, + [238187] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7872), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6274), 1, + sym__from_clause, + STATE(7606), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242242] = 4, + [238203] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7873), 1, + STATE(7607), 1, sym_comment, - ACTIONS(11862), 2, + ACTIONS(9705), 2, anon_sym_else, anon_sym_while, - [242256] = 4, + [238217] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7874), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3059), 1, + sym_statement_block, + STATE(7608), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242270] = 4, + [238233] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7875), 1, + ACTIONS(10811), 1, + anon_sym_LBRACE, + STATE(1375), 1, + sym_statement_block, + STATE(7609), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242284] = 4, + [238249] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7876), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + STATE(3609), 1, + sym_statement_block, + STATE(7610), 1, sym_comment, - ACTIONS(11862), 2, - anon_sym_else, - anon_sym_while, - [242298] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [238265] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11924), 1, - sym_identifier, - ACTIONS(11926), 1, - sym_private_property_identifier, - STATE(7877), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(120), 1, + sym_parenthesized_expression, + STATE(7611), 1, sym_comment, - [242314] = 5, + [238281] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11902), 1, - anon_sym_LPAREN, - STATE(7410), 1, - sym_parenthesized_expression, - STATE(7878), 1, + STATE(7612), 1, sym_comment, - [242330] = 4, + ACTIONS(2304), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [238295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7879), 1, + STATE(7613), 1, sym_comment, - ACTIONS(11862), 2, + ACTIONS(9773), 2, anon_sym_else, anon_sym_while, - [242344] = 4, + [238309] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7880), 1, + STATE(7614), 1, sym_comment, - ACTIONS(11928), 2, + ACTIONS(6223), 2, sym__automatic_semicolon, anon_sym_SEMI, - [242358] = 5, + [238323] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(7881), 1, + STATE(7615), 1, sym_comment, - STATE(8415), 1, - sym_formal_parameters, - [242374] = 5, + ACTIONS(6229), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [238337] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8336), 1, - anon_sym_LBRACE, - STATE(1639), 1, - sym_class_body, - STATE(7882), 1, + STATE(7616), 1, sym_comment, - [242390] = 4, + ACTIONS(11989), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [238351] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7883), 1, + STATE(7617), 1, sym_comment, - ACTIONS(11133), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [242404] = 4, + ACTIONS(11991), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [238365] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7884), 1, + STATE(7618), 1, sym_comment, - ACTIONS(7631), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [242418] = 5, + ACTIONS(9560), 2, + anon_sym_else, + anon_sym_while, + [238379] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8332), 1, + ACTIONS(5602), 1, anon_sym_LBRACE, - STATE(466), 1, - sym_class_body, - STATE(7885), 1, + STATE(3604), 1, + sym_statement_block, + STATE(7619), 1, sym_comment, - [242434] = 4, + [238395] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7886), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + STATE(3603), 1, + sym_statement_block, + STATE(7620), 1, sym_comment, - ACTIONS(11930), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [242448] = 5, + [238411] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3238), 1, + STATE(3121), 1, sym_statement_block, - STATE(7887), 1, + STATE(7621), 1, sym_comment, - [242464] = 5, + [238427] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8336), 1, - anon_sym_LBRACE, - STATE(1631), 1, - sym_class_body, - STATE(7888), 1, + ACTIONS(11523), 1, + anon_sym_LPAREN, + STATE(133), 1, + sym__for_header, + STATE(7622), 1, sym_comment, - [242480] = 5, + [238443] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9826), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(465), 1, - sym_statement_block, - STATE(7889), 1, + STATE(2899), 1, + sym_class_body, + STATE(7623), 1, sym_comment, - [242496] = 4, + [238459] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7890), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7624), 1, sym_comment, - ACTIONS(11932), 2, - anon_sym_else, - anon_sym_while, - [242510] = 5, - ACTIONS(3), 1, + STATE(8424), 1, + sym_formal_parameters, + [238475] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6283), 1, + sym__from_clause, + STATE(7625), 1, + sym_comment, + [238491] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11934), 1, - sym_identifier, - STATE(7101), 1, - sym_nested_identifier, - STATE(7891), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8531), 1, + anon_sym_LBRACE, + STATE(6567), 1, + sym_statement_block, + STATE(7626), 1, sym_comment, - [242526] = 4, + [238507] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7892), 1, + ACTIONS(10811), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_statement_block, + STATE(7627), 1, sym_comment, - ACTIONS(9423), 2, - anon_sym_else, - anon_sym_while, - [242540] = 4, + [238523] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7893), 1, + ACTIONS(11993), 1, + anon_sym_COMMA, + ACTIONS(11995), 1, + anon_sym_from, + STATE(7628), 1, sym_comment, - ACTIONS(9321), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [242554] = 5, + [238539] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11936), 1, - anon_sym_SEMI, - ACTIONS(11938), 1, - sym__automatic_semicolon, - STATE(7894), 1, + ACTIONS(8221), 1, + anon_sym_LBRACE, + STATE(1429), 1, + sym_class_body, + STATE(7629), 1, sym_comment, - [242570] = 4, + [238555] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7895), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3138), 1, + sym_statement_block, + STATE(7630), 1, sym_comment, - ACTIONS(11940), 2, - anon_sym_else, - anon_sym_while, - [242584] = 4, + [238571] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7896), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6287), 1, + sym__from_clause, + STATE(7631), 1, sym_comment, - ACTIONS(11942), 2, - anon_sym_else, - anon_sym_while, - [242598] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [238587] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(7897), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11997), 1, + anon_sym_SEMI, + ACTIONS(11999), 1, + sym__automatic_semicolon, + STATE(7632), 1, sym_comment, - ACTIONS(11944), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [242612] = 4, + [238603] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7898), 1, + STATE(7633), 1, sym_comment, - ACTIONS(9409), 2, + ACTIONS(9831), 2, anon_sym_else, anon_sym_while, - [242626] = 5, + [238617] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8210), 1, - anon_sym_LBRACE, - STATE(506), 1, - sym_class_body, - STATE(7899), 1, + STATE(7634), 1, sym_comment, - [242642] = 4, + ACTIONS(12001), 2, + anon_sym_else, + anon_sym_while, + [238631] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7900), 1, + STATE(7635), 1, sym_comment, - ACTIONS(11946), 2, + ACTIONS(12003), 2, anon_sym_else, anon_sym_while, - [242656] = 5, + [238645] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11948), 1, - anon_sym_SEMI, - ACTIONS(11950), 1, - sym__automatic_semicolon, - STATE(7901), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(7340), 1, + sym__from_clause, + STATE(7636), 1, sym_comment, - [242672] = 5, + [238661] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(6247), 1, - sym_class_body, - STATE(7902), 1, + STATE(7471), 1, + sym_statement_block, + STATE(7637), 1, sym_comment, - [242688] = 5, + [238677] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6372), 1, - sym__from_clause, - STATE(7903), 1, + STATE(7638), 1, sym_comment, - [242704] = 4, + ACTIONS(11170), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [238691] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7904), 1, + STATE(7639), 1, sym_comment, - ACTIONS(11450), 2, - anon_sym_else, - anon_sym_while, - [242718] = 5, + ACTIONS(10487), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [238705] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(6246), 1, - sym_class_body, - STATE(7905), 1, + STATE(7640), 1, sym_comment, - [242734] = 4, + ACTIONS(12005), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [238719] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7906), 1, + ACTIONS(8219), 1, + anon_sym_LBRACE, + STATE(6862), 1, + sym_class_body, + STATE(7641), 1, sym_comment, - ACTIONS(9425), 2, - anon_sym_else, - anon_sym_while, - [242748] = 5, + [238735] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11952), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(4353), 1, - sym__qml_enum_body, - STATE(7907), 1, + STATE(5438), 1, + sym_statement_block, + STATE(7642), 1, sym_comment, - [242764] = 5, + [238751] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(7779), 1, - sym__from_clause, - STATE(7908), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(5017), 1, + sym_formal_parameters, + STATE(7643), 1, sym_comment, - [242780] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [238767] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11954), 1, - sym_identifier, - ACTIONS(11956), 1, - sym_private_property_identifier, - STATE(7909), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8219), 1, + anon_sym_LBRACE, + STATE(5765), 1, + sym_class_body, + STATE(7644), 1, sym_comment, - [242796] = 5, + [238783] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6361), 1, - sym__from_clause, - STATE(7910), 1, + ACTIONS(8271), 1, + anon_sym_LBRACE, + STATE(3856), 1, + sym_class_body, + STATE(7645), 1, sym_comment, - [242812] = 4, + [238799] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7911), 1, + STATE(7646), 1, sym_comment, - ACTIONS(11958), 2, + ACTIONS(12007), 2, sym__automatic_semicolon, anon_sym_SEMI, - [242826] = 5, + [238813] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6501), 1, - sym__from_clause, - STATE(7912), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(150), 1, + sym_parenthesized_expression, + STATE(7647), 1, sym_comment, - [242842] = 5, + [238829] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11960), 1, - anon_sym_SEMI, - ACTIONS(11962), 1, - sym__automatic_semicolon, - STATE(7913), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3156), 1, + sym_statement_block, + STATE(7648), 1, sym_comment, - [242858] = 5, + [238845] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11740), 1, - anon_sym_LPAREN, - STATE(115), 1, - sym__for_header, - STATE(7914), 1, + STATE(7649), 1, sym_comment, - [242874] = 5, + ACTIONS(9709), 2, + anon_sym_else, + anon_sym_while, + [238859] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3169), 1, - sym_statement_block, - STATE(7915), 1, + STATE(7650), 1, sym_comment, - [242890] = 5, + ACTIONS(12009), 2, + anon_sym_else, + anon_sym_while, + [238873] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, + ACTIONS(9988), 1, anon_sym_from, - STATE(7461), 1, + STATE(7259), 1, sym__from_clause, - STATE(7916), 1, - sym_comment, - [242906] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11964), 1, - sym_identifier, - ACTIONS(11966), 1, - sym_private_property_identifier, - STATE(7917), 1, + STATE(7651), 1, sym_comment, - [242922] = 5, + [238889] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - STATE(7593), 1, - sym_type_annotation, - STATE(7918), 1, - sym_comment, - [242938] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11110), 1, - sym_identifier, - ACTIONS(11114), 1, - sym_private_property_identifier, - STATE(7919), 1, + STATE(7652), 1, sym_comment, - [242954] = 4, + ACTIONS(12011), 2, + anon_sym_else, + anon_sym_while, + [238903] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7920), 1, + STATE(7653), 1, sym_comment, - ACTIONS(11968), 2, + ACTIONS(12013), 2, sym__automatic_semicolon, anon_sym_SEMI, - [242968] = 5, + [238917] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8370), 1, + ACTIONS(8261), 1, anon_sym_LBRACE, - STATE(4030), 1, + STATE(1749), 1, sym_class_body, - STATE(7921), 1, + STATE(7654), 1, sym_comment, - [242984] = 4, + [238933] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7922), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6280), 1, + sym__from_clause, + STATE(7655), 1, sym_comment, - ACTIONS(11970), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [242998] = 4, + [238949] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7923), 1, + STATE(7656), 1, sym_comment, - ACTIONS(11972), 2, + ACTIONS(10506), 2, sym__automatic_semicolon, anon_sym_SEMI, - [243012] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [238963] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11974), 1, - sym_identifier, - ACTIONS(11976), 1, - sym_private_property_identifier, - STATE(7924), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11523), 1, + anon_sym_LPAREN, + STATE(124), 1, + sym__for_header, + STATE(7657), 1, sym_comment, - [243028] = 4, + [238979] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7925), 1, + ACTIONS(12015), 1, + anon_sym_LPAREN, + STATE(3862), 1, + sym_parenthesized_expression, + STATE(7658), 1, sym_comment, - ACTIONS(11978), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [243042] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [238995] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11980), 1, - sym_identifier, - ACTIONS(11982), 1, - sym_private_property_identifier, - STATE(7926), 1, - sym_comment, - [243058] = 5, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11984), 1, - sym_identifier, - ACTIONS(11986), 1, - sym_private_property_identifier, - STATE(7927), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(7149), 1, + sym__from_clause, + STATE(7659), 1, sym_comment, - [243074] = 5, + [239011] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(7714), 1, - sym_statement_block, - STATE(7928), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + STATE(4749), 1, + sym_formal_parameters, + STATE(7660), 1, sym_comment, - [243090] = 4, + [239027] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7929), 1, + STATE(7661), 1, sym_comment, - ACTIONS(6476), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [243104] = 4, + ACTIONS(12017), 2, + anon_sym_else, + anon_sym_while, + [239041] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(7930), 1, + ACTIONS(12019), 1, + sym_identifier, + ACTIONS(12021), 1, + anon_sym_STAR, + STATE(7662), 1, sym_comment, - ACTIONS(11988), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [243118] = 5, + [239057] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, + ACTIONS(11457), 1, anon_sym_LPAREN, - STATE(159), 1, + STATE(7141), 1, sym_parenthesized_expression, - STATE(7931), 1, + STATE(7663), 1, sym_comment, - [243134] = 5, + [239073] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, + ACTIONS(11475), 1, anon_sym_LPAREN, - STATE(142), 1, + STATE(129), 1, sym_parenthesized_expression, - STATE(7932), 1, + STATE(7664), 1, sym_comment, - [243150] = 4, + [239089] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7933), 1, + STATE(7665), 1, sym_comment, - ACTIONS(11990), 2, + ACTIONS(6170), 2, sym__automatic_semicolon, anon_sym_SEMI, - [243164] = 4, + [239103] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7934), 1, + STATE(7666), 1, sym_comment, - ACTIONS(11992), 2, + ACTIONS(12023), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [243178] = 4, + anon_sym_RBRACE, + [239117] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7935), 1, + STATE(7667), 1, sym_comment, - ACTIONS(11994), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [243192] = 5, + ACTIONS(9833), 2, + anon_sym_else, + anon_sym_while, + [239131] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(6001), 1, - sym_formal_parameters, - STATE(7936), 1, + STATE(7668), 1, sym_comment, - [243208] = 5, + ACTIONS(12025), 2, + anon_sym_LBRACE, + anon_sym_DOT, + [239145] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(7937), 1, + ACTIONS(8243), 1, + anon_sym_LBRACE, + STATE(3910), 1, + sym_class_body, + STATE(7669), 1, sym_comment, - STATE(8570), 1, - sym_formal_parameters, - [243224] = 5, + [239161] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11996), 1, - anon_sym_SEMI, - ACTIONS(11998), 1, - sym__automatic_semicolon, - STATE(7938), 1, + ACTIONS(10512), 1, + anon_sym_LBRACE, + STATE(3848), 1, + sym_statement_block, + STATE(7670), 1, sym_comment, - [243240] = 5, + [239177] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11902), 1, + ACTIONS(11475), 1, anon_sym_LPAREN, - STATE(7728), 1, + STATE(103), 1, sym_parenthesized_expression, - STATE(7939), 1, + STATE(7671), 1, sym_comment, - [243256] = 5, + [239193] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(11475), 1, anon_sym_LPAREN, - STATE(7940), 1, + STATE(101), 1, + sym_parenthesized_expression, + STATE(7672), 1, sym_comment, - STATE(8225), 1, - sym_formal_parameters, - [243272] = 5, + [239209] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7673), 1, + sym_comment, + ACTIONS(9833), 2, + anon_sym_else, + anon_sym_while, + [239223] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, + ACTIONS(11457), 1, anon_sym_LPAREN, - STATE(120), 1, - sym_parenthesized_expression, - STATE(7941), 1, + STATE(7674), 1, sym_comment, - [243288] = 5, + STATE(7905), 1, + sym_parenthesized_expression, + [239239] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8218), 1, + ACTIONS(12027), 1, anon_sym_LBRACE, - STATE(1874), 1, - sym_class_body, - STATE(7942), 1, + STATE(4155), 1, + sym__qml_enum_body, + STATE(7675), 1, sym_comment, - [243304] = 4, + [239255] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7943), 1, + STATE(7676), 1, sym_comment, - ACTIONS(10329), 2, + ACTIONS(10475), 2, sym__automatic_semicolon, anon_sym_SEMI, - [243318] = 5, + [239269] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12000), 1, - anon_sym_LBRACE, - STATE(1047), 1, - sym_statement_block, - STATE(7944), 1, + STATE(7677), 1, sym_comment, - [243334] = 4, + ACTIONS(12029), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [239283] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7945), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7678), 1, sym_comment, - ACTIONS(12002), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [243348] = 5, + STATE(7843), 1, + sym_statement_block, + [239299] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_LBRACE, - STATE(3009), 1, - sym_statement_block, - STATE(7946), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(5744), 1, + sym_formal_parameters, + STATE(7679), 1, sym_comment, - [243364] = 5, + [239315] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12004), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(1478), 1, - sym_parenthesized_expression, - STATE(7947), 1, + STATE(7680), 1, sym_comment, - [243380] = 5, + STATE(8180), 1, + sym_formal_parameters, + [239331] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6452), 1, - sym__from_clause, - STATE(7948), 1, + ACTIONS(11851), 1, + anon_sym_LBRACE, + STATE(4204), 1, + sym_enum_body, + STATE(7681), 1, sym_comment, - [243396] = 5, + [239347] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, + ACTIONS(12031), 1, anon_sym_LBRACE, - STATE(3011), 1, + STATE(3736), 1, sym_statement_block, - STATE(7949), 1, + STATE(7682), 1, sym_comment, - [243412] = 5, + [239363] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_LBRACE, - STATE(3020), 1, - sym_statement_block, - STATE(7950), 1, + STATE(7683), 1, sym_comment, - [243428] = 5, + ACTIONS(12033), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [239377] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8332), 1, - anon_sym_LBRACE, - STATE(459), 1, - sym_class_body, - STATE(7951), 1, + STATE(7684), 1, sym_comment, - [243444] = 5, + ACTIONS(10019), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [239391] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, + ACTIONS(8221), 1, anon_sym_LBRACE, - STATE(3022), 1, + STATE(1419), 1, sym_class_body, - STATE(7952), 1, + STATE(7685), 1, sym_comment, - [243460] = 4, + [239407] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7953), 1, + STATE(7686), 1, sym_comment, - ACTIONS(6612), 2, + ACTIONS(6474), 2, anon_sym_COMMA, anon_sym_RBRACE, - [243474] = 5, + [239421] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(3026), 1, + STATE(6720), 1, sym_class_body, - STATE(7954), 1, + STATE(7687), 1, sym_comment, - [243490] = 5, + [239437] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8274), 1, - anon_sym_LBRACE, - STATE(4086), 1, - sym_class_body, - STATE(7955), 1, + STATE(7688), 1, sym_comment, - [243506] = 5, + ACTIONS(2436), 2, + anon_sym_else, + anon_sym_while, + [239451] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8234), 1, + ACTIONS(8213), 1, anon_sym_LBRACE, - STATE(1918), 1, + STATE(467), 1, sym_class_body, - STATE(7956), 1, + STATE(7689), 1, sym_comment, - [243522] = 5, + [239467] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8336), 1, - anon_sym_LBRACE, - STATE(1616), 1, - sym_class_body, - STATE(7957), 1, + STATE(7690), 1, sym_comment, - [243538] = 5, + ACTIONS(9833), 2, + anon_sym_else, + anon_sym_while, + [239481] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9826), 1, - anon_sym_LBRACE, - STATE(456), 1, - sym_statement_block, - STATE(7958), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6311), 1, + sym__from_clause, + STATE(7691), 1, sym_comment, - [243554] = 5, + [239497] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3177), 1, - sym_statement_block, - STATE(7959), 1, + STATE(7692), 1, sym_comment, - [243570] = 5, + ACTIONS(12035), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [239511] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11648), 1, - anon_sym_LBRACE, - STATE(1690), 1, - sym_statement_block, - STATE(7960), 1, + STATE(7693), 1, sym_comment, - [243586] = 5, + ACTIONS(9837), 2, + anon_sym_else, + anon_sym_while, + [239525] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(6065), 1, - sym_formal_parameters, - STATE(7961), 1, + STATE(7694), 1, sym_comment, - [243602] = 5, + ACTIONS(12037), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [239539] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8332), 1, + ACTIONS(8221), 1, anon_sym_LBRACE, - STATE(451), 1, + STATE(1410), 1, sym_class_body, - STATE(7962), 1, + STATE(7695), 1, sym_comment, - [243618] = 5, + [239555] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(7963), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3147), 1, + sym_statement_block, + STATE(7696), 1, sym_comment, - STATE(8667), 1, - sym_formal_parameters, - [243634] = 5, + [239571] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(12039), 1, anon_sym_LBRACE, - STATE(7964), 1, - sym_comment, - STATE(8146), 1, + STATE(1037), 1, sym_statement_block, - [243650] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12006), 1, - sym_identifier, - STATE(7251), 1, - sym_nested_identifier, - STATE(7965), 1, + STATE(7697), 1, sym_comment, - [243666] = 5, + [239587] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12008), 1, - anon_sym_SEMI, - ACTIONS(12010), 1, - sym__automatic_semicolon, - STATE(7966), 1, + STATE(7698), 1, sym_comment, - [243682] = 5, + ACTIONS(12041), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [239601] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(7967), 1, + STATE(7699), 1, sym_comment, - STATE(7998), 1, - sym_statement_block, - [243698] = 4, + ACTIONS(9842), 2, + anon_sym_else, + anon_sym_while, + [239615] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7968), 1, + STATE(7700), 1, sym_comment, - ACTIONS(12012), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [243712] = 5, + ACTIONS(9854), 2, + anon_sym_else, + anon_sym_while, + [239629] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(9610), 1, anon_sym_LBRACE, - STATE(3221), 1, + STATE(472), 1, sym_statement_block, - STATE(7969), 1, + STATE(7701), 1, sym_comment, - [243728] = 4, + [239645] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7970), 1, + STATE(7702), 1, sym_comment, - ACTIONS(12014), 2, + ACTIONS(12043), 2, sym__automatic_semicolon, anon_sym_SEMI, - [243742] = 5, + [239659] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3237), 1, - sym_statement_block, - STATE(7971), 1, + ACTIONS(12045), 1, + anon_sym_SEMI, + ACTIONS(12047), 1, + sym__automatic_semicolon, + STATE(7703), 1, sym_comment, - [243758] = 5, + [239675] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8218), 1, - anon_sym_LBRACE, - STATE(1854), 1, - sym_class_body, - STATE(7972), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(5808), 1, + sym_formal_parameters, + STATE(7704), 1, sym_comment, - [243774] = 5, + [239691] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(1749), 1, + STATE(5739), 1, sym_class_body, - STATE(7973), 1, + STATE(7705), 1, sym_comment, - [243790] = 5, + [239707] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8360), 1, - anon_sym_LBRACE, - STATE(6108), 1, - sym_class_body, - STATE(7974), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7706), 1, + sym_comment, + STATE(7953), 1, + sym_formal_parameters, + [239723] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12049), 1, + anon_sym_SEMI, + ACTIONS(12051), 1, + sym__automatic_semicolon, + STATE(7707), 1, sym_comment, - [243806] = 5, + [239739] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12016), 1, + ACTIONS(12053), 1, sym_identifier, - STATE(7350), 1, + STATE(6876), 1, sym_nested_identifier, - STATE(7975), 1, + STATE(7708), 1, sym_comment, - [243822] = 4, + [239755] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7976), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(160), 1, + sym_parenthesized_expression, + STATE(7709), 1, sym_comment, - ACTIONS(12018), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [243836] = 5, + [239771] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(3254), 1, - sym_statement_block, - STATE(7977), 1, + STATE(5731), 1, + sym_class_body, + STATE(7710), 1, sym_comment, - [243852] = 5, + [239787] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12020), 1, - anon_sym_SEMI, - ACTIONS(12022), 1, - sym__automatic_semicolon, - STATE(7978), 1, + STATE(7711), 1, sym_comment, - [243868] = 5, + ACTIONS(12055), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [239801] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(7979), 1, + STATE(7712), 1, sym_comment, - STATE(8406), 1, - sym_formal_parameters, - [243884] = 4, + ACTIONS(12057), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [239815] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12059), 1, + sym_identifier, + STATE(7093), 1, + sym_nested_identifier, + STATE(7713), 1, + sym_comment, + [239831] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7980), 1, + STATE(7714), 1, sym_comment, - ACTIONS(12024), 2, + ACTIONS(12061), 2, sym__automatic_semicolon, anon_sym_SEMI, - [243898] = 5, - ACTIONS(3), 1, + [239845] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7715), 1, + sym_comment, + STATE(8098), 1, + sym_formal_parameters, + [239861] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12026), 1, - sym_identifier, - ACTIONS(12028), 1, - sym_private_property_identifier, - STATE(7981), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7716), 1, sym_comment, - [243914] = 4, + ACTIONS(9462), 2, + anon_sym_else, + anon_sym_while, + [239875] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7982), 1, + ACTIONS(12063), 1, + anon_sym_SEMI, + ACTIONS(12065), 1, + sym__automatic_semicolon, + STATE(7717), 1, + sym_comment, + [239891] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7718), 1, sym_comment, - ACTIONS(12030), 2, + ACTIONS(12067), 2, anon_sym_COMMA, anon_sym_RBRACE, - [243928] = 5, + [239905] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11818), 1, - anon_sym_LBRACE, - STATE(7823), 1, - sym_enum_body, - STATE(7983), 1, + ACTIONS(12069), 1, + anon_sym_SEMI, + ACTIONS(12071), 1, + sym__automatic_semicolon, + STATE(7719), 1, sym_comment, - [243944] = 5, + [239921] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11740), 1, - anon_sym_LPAREN, - STATE(156), 1, - sym__for_header, - STATE(7984), 1, + STATE(7720), 1, sym_comment, - [243960] = 5, + ACTIONS(10700), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [239935] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6327), 1, - sym__from_clause, - STATE(7985), 1, + STATE(7721), 1, sym_comment, - [243976] = 4, + ACTIONS(12073), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [239949] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7986), 1, + STATE(7722), 1, sym_comment, - ACTIONS(12032), 2, + ACTIONS(6497), 2, anon_sym_COMMA, anon_sym_RBRACE, - [243990] = 5, + [239963] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(7825), 1, - sym_statement_block, - STATE(7987), 1, + STATE(7723), 1, sym_comment, - [244006] = 5, + ACTIONS(9856), 2, + anon_sym_else, + anon_sym_while, + [239977] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3234), 1, - sym_statement_block, - STATE(7988), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6313), 1, + sym__from_clause, + STATE(7724), 1, sym_comment, - [244022] = 5, + [239993] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12034), 1, + ACTIONS(12075), 1, anon_sym_SEMI, - ACTIONS(12036), 1, + ACTIONS(12077), 1, sym__automatic_semicolon, - STATE(7989), 1, + STATE(7725), 1, sym_comment, - [244038] = 4, + [240009] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7990), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7726), 1, sym_comment, - ACTIONS(6407), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244052] = 5, + STATE(8060), 1, + sym_formal_parameters, + [240025] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8370), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(4036), 1, + STATE(3425), 1, sym_class_body, - STATE(7991), 1, + STATE(7727), 1, sym_comment, - [244068] = 4, + [240041] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7992), 1, + STATE(7728), 1, sym_comment, - ACTIONS(6409), 2, + ACTIONS(12079), 2, sym__automatic_semicolon, anon_sym_SEMI, - [244082] = 4, + [240055] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7993), 1, + STATE(7729), 1, sym_comment, - ACTIONS(12038), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244096] = 5, + ACTIONS(6621), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [240069] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(5926), 1, - sym_formal_parameters, - STATE(7994), 1, + STATE(7730), 1, sym_comment, - [244112] = 5, + ACTIONS(9464), 2, + anon_sym_else, + anon_sym_while, + [240083] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(7995), 1, + STATE(7731), 1, sym_comment, - STATE(8342), 1, - sym_formal_parameters, - [244128] = 4, + ACTIONS(9466), 2, + anon_sym_else, + anon_sym_while, + [240097] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7996), 1, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3419), 1, + sym_class_body, + STATE(7732), 1, sym_comment, - ACTIONS(12040), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244142] = 4, + [240113] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7997), 1, + STATE(7733), 1, sym_comment, - ACTIONS(12042), 2, + ACTIONS(6545), 2, anon_sym_COMMA, - anon_sym_GT, - [244156] = 4, + anon_sym_RBRACE, + [240127] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7998), 1, + STATE(7734), 1, sym_comment, - ACTIONS(6562), 2, + ACTIONS(6470), 2, anon_sym_COMMA, anon_sym_RBRACE, - [244170] = 4, + [240141] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(7999), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3116), 1, + sym_statement_block, + STATE(7735), 1, sym_comment, - ACTIONS(12044), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244184] = 5, + [240157] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(8000), 1, + ACTIONS(7698), 1, + anon_sym_DOT, + ACTIONS(12081), 1, + anon_sym_GT, + STATE(7736), 1, sym_comment, - STATE(8644), 1, - sym_formal_parameters, - [244200] = 5, + [240173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12046), 1, - anon_sym_LBRACE, - STATE(4257), 1, - sym_enum_body, - STATE(8001), 1, + ACTIONS(11523), 1, + anon_sym_LPAREN, + STATE(136), 1, + sym__for_header, + STATE(7737), 1, sym_comment, - [244216] = 5, + [240189] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(8002), 1, + STATE(3405), 1, + sym_class_body, + STATE(7738), 1, sym_comment, - STATE(8144), 1, - sym_statement_block, - [244232] = 4, + [240205] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8003), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3022), 1, + sym_statement_block, + STATE(7739), 1, sym_comment, - ACTIONS(12048), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244246] = 4, + [240221] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8004), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + STATE(3412), 1, + sym_statement_block, + STATE(7740), 1, sym_comment, - ACTIONS(6255), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244260] = 4, + [240237] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8005), 1, + STATE(7741), 1, sym_comment, - ACTIONS(12050), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244274] = 4, + ACTIONS(9892), 2, + anon_sym_else, + anon_sym_while, + [240251] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8006), 1, + ACTIONS(8213), 1, + anon_sym_LBRACE, + STATE(475), 1, + sym_class_body, + STATE(7742), 1, sym_comment, - ACTIONS(9841), 2, - anon_sym_else, - anon_sym_while, - [244288] = 4, + [240267] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8007), 1, + STATE(7743), 1, sym_comment, - ACTIONS(9847), 2, + ACTIONS(12083), 2, anon_sym_else, anon_sym_while, - [244302] = 4, + [240281] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8008), 1, + STATE(7744), 1, sym_comment, - ACTIONS(6286), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244316] = 4, + ACTIONS(12083), 2, + anon_sym_else, + anon_sym_while, + [240295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8009), 1, + STATE(7745), 1, sym_comment, - ACTIONS(12052), 2, + ACTIONS(12085), 2, anon_sym_else, anon_sym_while, - [244330] = 4, + [240309] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8010), 1, + ACTIONS(8203), 1, + anon_sym_LBRACE, + STATE(7746), 1, sym_comment, - ACTIONS(12054), 2, - anon_sym_else, - anon_sym_while, - [244344] = 4, + STATE(7796), 1, + sym_class_body, + [240325] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8011), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6316), 1, + sym__from_clause, + STATE(7747), 1, sym_comment, - ACTIONS(12056), 2, - anon_sym_else, - anon_sym_while, - [244358] = 4, + [240341] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8012), 1, + ACTIONS(9846), 1, + anon_sym_LBRACE, + STATE(3903), 1, + sym_statement_block, + STATE(7748), 1, sym_comment, - ACTIONS(12058), 2, - anon_sym_else, - anon_sym_while, - [244372] = 5, + [240357] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8370), 1, + ACTIONS(9846), 1, anon_sym_LBRACE, - STATE(4037), 1, - sym_class_body, - STATE(8013), 1, + STATE(3904), 1, + sym_statement_block, + STATE(7749), 1, sym_comment, - [244388] = 4, + [240373] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8014), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3101), 1, + sym_statement_block, + STATE(7750), 1, sym_comment, - ACTIONS(10550), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244402] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [240389] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12060), 1, - sym_identifier, - ACTIONS(12062), 1, - sym_private_property_identifier, - STATE(8015), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7751), 1, sym_comment, - [244418] = 5, + ACTIONS(10947), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [240403] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11740), 1, - anon_sym_LPAREN, - STATE(127), 1, - sym__for_header, - STATE(8016), 1, + STATE(7752), 1, sym_comment, - [244434] = 5, + ACTIONS(12087), 2, + anon_sym_else, + anon_sym_while, + [240417] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7873), 1, - anon_sym_LPAREN, - STATE(4967), 1, - sym_formal_parameters, - STATE(8017), 1, + ACTIONS(8221), 1, + anon_sym_LBRACE, + STATE(1400), 1, + sym_class_body, + STATE(7753), 1, sym_comment, - [244450] = 5, + [240433] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5567), 1, + ACTIONS(9610), 1, anon_sym_LBRACE, - STATE(3612), 1, + STATE(484), 1, sym_statement_block, - STATE(8018), 1, + STATE(7754), 1, sym_comment, - [244466] = 5, - ACTIONS(3), 1, + [240449] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + STATE(7755), 1, + sym_comment, + ACTIONS(9900), 2, + anon_sym_else, + anon_sym_while, + [240463] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12064), 1, - sym_identifier, - ACTIONS(12066), 1, - sym_private_property_identifier, - STATE(8019), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7756), 1, sym_comment, - [244482] = 5, - ACTIONS(3), 1, + ACTIONS(12089), 2, + anon_sym_else, + anon_sym_while, + [240477] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + STATE(7757), 1, + sym_comment, + ACTIONS(12089), 2, + anon_sym_else, + anon_sym_while, + [240491] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12068), 1, - sym_identifier, - ACTIONS(12070), 1, - sym_private_property_identifier, - STATE(8020), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7758), 1, sym_comment, - [244498] = 5, + ACTIONS(12091), 2, + anon_sym_else, + anon_sym_while, + [240505] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8258), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(4248), 1, - sym_class_body, - STATE(8021), 1, + STATE(3114), 1, + sym_statement_block, + STATE(7759), 1, sym_comment, - [244514] = 5, + [240521] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11740), 1, - anon_sym_LPAREN, - STATE(144), 1, - sym__for_header, - STATE(8022), 1, + ACTIONS(8213), 1, + anon_sym_LBRACE, + STATE(461), 1, + sym_class_body, + STATE(7760), 1, sym_comment, - [244530] = 5, + [240537] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11014), 1, + ACTIONS(10965), 1, sym_identifier, - ACTIONS(11018), 1, + ACTIONS(10969), 1, sym_private_property_identifier, - STATE(8023), 1, + STATE(7761), 1, sym_comment, - [244546] = 5, + [240553] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6362), 1, - sym__from_clause, - STATE(8024), 1, + ACTIONS(12093), 1, + anon_sym_SEMI, + ACTIONS(12095), 1, + sym__automatic_semicolon, + STATE(7762), 1, sym_comment, - [244562] = 4, + [240569] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8025), 1, + STATE(7763), 1, sym_comment, - ACTIONS(6284), 2, + ACTIONS(12097), 2, sym__automatic_semicolon, anon_sym_SEMI, - [244576] = 5, + [240583] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12072), 1, - anon_sym_SEMI, - ACTIONS(12074), 1, - sym__automatic_semicolon, - STATE(8026), 1, + STATE(7764), 1, sym_comment, - [244592] = 4, + ACTIONS(10990), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [240597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8027), 1, + STATE(7765), 1, sym_comment, - ACTIONS(9012), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [244606] = 5, + ACTIONS(12099), 2, + anon_sym_else, + anon_sym_while, + [240611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3193), 1, - sym_statement_block, - STATE(8028), 1, + STATE(7766), 1, sym_comment, - [244622] = 5, + ACTIONS(12101), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [240625] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3604), 1, - sym_class_body, - STATE(8029), 1, + ACTIONS(12103), 1, + anon_sym_in, + ACTIONS(12105), 1, + anon_sym_COLON, + STATE(7767), 1, sym_comment, - [244638] = 5, + [240641] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3159), 1, + STATE(3035), 1, sym_statement_block, - STATE(8030), 1, + STATE(7768), 1, sym_comment, - [244654] = 5, + [240657] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11492), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(4337), 1, + STATE(3143), 1, sym_statement_block, - STATE(8031), 1, + STATE(7769), 1, sym_comment, - [244670] = 5, + [240673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12046), 1, - anon_sym_LBRACE, - STATE(4327), 1, - sym_enum_body, - STATE(8032), 1, + STATE(7770), 1, sym_comment, - [244686] = 5, + ACTIONS(10988), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [240687] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3176), 1, - sym_statement_block, - STATE(8033), 1, + ACTIONS(12107), 1, + anon_sym_SEMI, + ACTIONS(12109), 1, + sym__automatic_semicolon, + STATE(7771), 1, sym_comment, - [244702] = 5, + [240703] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8332), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(429), 1, + STATE(3422), 1, sym_class_body, - STATE(8034), 1, + STATE(7772), 1, sym_comment, - [244718] = 5, + [240719] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12076), 1, - anon_sym_LPAREN, - STATE(1368), 1, - sym_parenthesized_expression, - STATE(8035), 1, + STATE(7773), 1, sym_comment, - [244734] = 5, + ACTIONS(6654), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [240733] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(8036), 1, + STATE(7774), 1, sym_comment, - STATE(8049), 1, - sym__from_clause, - [244750] = 5, + ACTIONS(12111), 2, + anon_sym_else, + anon_sym_while, + [240747] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12078), 1, - anon_sym_LBRACE, - STATE(1505), 1, - sym_enum_body, - STATE(8037), 1, + STATE(7775), 1, sym_comment, - [244766] = 5, + ACTIONS(9894), 2, + anon_sym_else, + anon_sym_while, + [240761] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9503), 1, + ACTIONS(6058), 1, anon_sym_LBRACE, - STATE(1877), 1, + STATE(2986), 1, sym_statement_block, - STATE(8038), 1, + STATE(7776), 1, sym_comment, - [244782] = 4, + [240777] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8039), 1, + STATE(7777), 1, sym_comment, - ACTIONS(9995), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244796] = 4, + ACTIONS(9894), 2, + anon_sym_else, + anon_sym_while, + [240791] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8040), 1, + ACTIONS(8531), 1, + anon_sym_LBRACE, + STATE(6509), 1, + sym_statement_block, + STATE(7778), 1, sym_comment, - ACTIONS(12080), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [244810] = 5, + [240807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8274), 1, - anon_sym_LBRACE, - STATE(4065), 1, - sym_class_body, - STATE(8041), 1, + STATE(7779), 1, sym_comment, - [244826] = 5, + ACTIONS(9206), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [240821] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9574), 1, + ACTIONS(8219), 1, anon_sym_LBRACE, - STATE(1916), 1, - sym_statement_block, - STATE(8042), 1, + STATE(5647), 1, + sym_class_body, + STATE(7780), 1, sym_comment, - [244842] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [240837] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(8043), 1, - sym_comment, - ACTIONS(12082), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [244856] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(8044), 1, + STATE(7781), 1, sym_comment, - STATE(8083), 1, - sym_statement_block, - [244872] = 4, + ACTIONS(12113), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [240851] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8045), 1, + STATE(7782), 1, sym_comment, - ACTIONS(7082), 2, - anon_sym_else, - anon_sym_while, - [244886] = 5, + ACTIONS(12115), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [240865] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12084), 1, + ACTIONS(12117), 1, anon_sym_SEMI, - ACTIONS(12086), 1, + ACTIONS(12119), 1, sym__automatic_semicolon, - STATE(8046), 1, + STATE(7783), 1, sym_comment, - [244902] = 5, + [240881] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12088), 1, - anon_sym_LBRACE, - STATE(4384), 1, - sym_switch_body, - STATE(8047), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(7784), 1, sym_comment, - [244918] = 4, + STATE(7877), 1, + sym__from_clause, + [240897] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8048), 1, + STATE(7785), 1, sym_comment, - ACTIONS(9484), 2, + ACTIONS(9894), 2, anon_sym_else, anon_sym_while, - [244932] = 5, + [240911] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12090), 1, - anon_sym_SEMI, - ACTIONS(12092), 1, - sym__automatic_semicolon, - STATE(8049), 1, + ACTIONS(12121), 1, + sym_identifier, + ACTIONS(12123), 1, + sym_private_property_identifier, + STATE(7786), 1, sym_comment, - [244948] = 5, + [240927] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(10973), 1, + sym_identifier, + ACTIONS(10977), 1, + sym_private_property_identifier, + STATE(7787), 1, + sym_comment, + [240943] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9716), 1, - anon_sym_LBRACE, - STATE(1655), 1, - sym_statement_block, - STATE(8050), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12125), 1, + sym_identifier, + ACTIONS(12127), 1, + sym_private_property_identifier, + STATE(7788), 1, sym_comment, - [244964] = 4, + [240959] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(8051), 1, + ACTIONS(12129), 1, + sym_identifier, + ACTIONS(12131), 1, + sym_private_property_identifier, + STATE(7789), 1, sym_comment, - ACTIONS(9824), 2, - anon_sym_else, - anon_sym_while, - [244978] = 5, + [240975] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8739), 1, anon_sym_LBRACE, - STATE(3245), 1, - sym_statement_block, - STATE(8052), 1, + STATE(7790), 1, sym_comment, - [244994] = 5, + STATE(7841), 1, + sym_statement_block, + [240991] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(8053), 1, + STATE(7791), 1, sym_comment, - STATE(8377), 1, - sym_formal_parameters, - [245010] = 4, + ACTIONS(2440), 2, + anon_sym_else, + anon_sym_while, + [241005] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8054), 1, + STATE(7792), 1, sym_comment, - ACTIONS(6349), 2, + ACTIONS(6236), 2, sym__automatic_semicolon, anon_sym_SEMI, - [245024] = 4, + [241019] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(12133), 1, + sym_identifier, + ACTIONS(12135), 1, + sym_private_property_identifier, + STATE(7793), 1, + sym_comment, + [241035] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(8055), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12137), 1, + sym_identifier, + ACTIONS(12139), 1, + sym_private_property_identifier, + STATE(7794), 1, sym_comment, - ACTIONS(12094), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [245038] = 4, + [241051] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8056), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7795), 1, sym_comment, - ACTIONS(12096), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [245052] = 5, + STATE(8316), 1, + sym_formal_parameters, + [241067] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12098), 1, - anon_sym_SEMI, - ACTIONS(12100), 1, - sym__automatic_semicolon, - STATE(8057), 1, + STATE(7796), 1, sym_comment, - [245068] = 5, + ACTIONS(9811), 2, + anon_sym_else, + anon_sym_while, + [241081] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9503), 1, - anon_sym_LBRACE, - STATE(1855), 1, - sym_statement_block, - STATE(8058), 1, + STATE(7797), 1, sym_comment, - [245084] = 5, + ACTIONS(9795), 2, + anon_sym_else, + anon_sym_while, + [241095] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(8059), 1, + STATE(7798), 1, sym_comment, - STATE(8291), 1, + STATE(7961), 1, sym_formal_parameters, - [245100] = 4, + [241111] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8060), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3065), 1, + sym_statement_block, + STATE(7799), 1, sym_comment, - ACTIONS(12102), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [245114] = 4, + [241127] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8061), 1, + STATE(7800), 1, sym_comment, - ACTIONS(12104), 2, - anon_sym_LBRACE, - anon_sym_DOT, - [245128] = 5, + ACTIONS(9793), 2, + anon_sym_else, + anon_sym_while, + [241141] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8274), 1, - anon_sym_LBRACE, - STATE(4057), 1, - sym_class_body, - STATE(8062), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(5382), 1, + sym_formal_parameters, + STATE(7801), 1, sym_comment, - [245144] = 5, + [241157] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10570), 1, - anon_sym_LBRACE, - STATE(4039), 1, - sym_statement_block, - STATE(8063), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(141), 1, + sym_parenthesized_expression, + STATE(7802), 1, sym_comment, - [245160] = 5, + [241173] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8234), 1, - anon_sym_LBRACE, - STATE(1913), 1, - sym_class_body, - STATE(8064), 1, + STATE(7803), 1, sym_comment, - [245176] = 5, + ACTIONS(6458), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [241187] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(133), 1, - sym_parenthesized_expression, - STATE(8065), 1, + ACTIONS(12141), 1, + anon_sym_LBRACE, + STATE(992), 1, + sym_statement_block, + STATE(7804), 1, sym_comment, - [245192] = 5, + [241203] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3205), 1, - sym_statement_block, - STATE(8066), 1, + STATE(7805), 1, sym_comment, - [245208] = 5, + ACTIONS(9791), 2, + anon_sym_else, + anon_sym_while, + [241217] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, - anon_sym_LBRACE, - STATE(6220), 1, - sym_statement_block, - STATE(8067), 1, + STATE(7806), 1, sym_comment, - [245224] = 5, + ACTIONS(9789), 2, + anon_sym_else, + anon_sym_while, + [241231] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11902), 1, - anon_sym_LPAREN, - STATE(8068), 1, + ACTIONS(12143), 1, + sym_identifier, + ACTIONS(12145), 1, + sym_private_property_identifier, + STATE(7807), 1, sym_comment, - STATE(8187), 1, - sym_parenthesized_expression, - [245240] = 5, + [241247] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, + ACTIONS(11475), 1, anon_sym_LPAREN, - STATE(128), 1, + STATE(139), 1, sym_parenthesized_expression, - STATE(8069), 1, + STATE(7808), 1, sym_comment, - [245256] = 4, + [241263] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(8070), 1, + ACTIONS(12147), 1, + sym_identifier, + ACTIONS(12149), 1, + sym_private_property_identifier, + STATE(7809), 1, sym_comment, - ACTIONS(12106), 2, - anon_sym_else, - anon_sym_while, - [245270] = 4, + [241279] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8071), 1, + STATE(7810), 1, sym_comment, - ACTIONS(12108), 2, + ACTIONS(9536), 2, anon_sym_else, anon_sym_while, - [245284] = 5, + [241293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(141), 1, - sym_parenthesized_expression, - STATE(8072), 1, + STATE(7811), 1, sym_comment, - [245300] = 5, + ACTIONS(6541), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [241307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, + ACTIONS(11457), 1, anon_sym_LPAREN, - STATE(138), 1, - sym_parenthesized_expression, - STATE(8073), 1, + STATE(7812), 1, sym_comment, - [245316] = 5, + STATE(7824), 1, + sym_parenthesized_expression, + [241323] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12110), 1, + ACTIONS(12151), 1, sym_identifier, - ACTIONS(12112), 1, + ACTIONS(12153), 1, sym_private_property_identifier, - STATE(8074), 1, + STATE(7813), 1, sym_comment, - [245332] = 5, + [241339] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11902), 1, + ACTIONS(11475), 1, anon_sym_LPAREN, - STATE(8047), 1, + STATE(126), 1, sym_parenthesized_expression, - STATE(8075), 1, + STATE(7814), 1, sym_comment, - [245348] = 5, + [241355] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(136), 1, - sym_parenthesized_expression, - STATE(8076), 1, + STATE(7815), 1, sym_comment, - [245364] = 4, + ACTIONS(6361), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [241369] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8077), 1, + STATE(7816), 1, sym_comment, - ACTIONS(6592), 2, + ACTIONS(10730), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [245378] = 5, + anon_sym_GT, + [241383] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8370), 1, - anon_sym_LBRACE, - STATE(4041), 1, - sym_class_body, - STATE(8078), 1, + STATE(7817), 1, sym_comment, - [245394] = 5, + ACTIONS(9536), 2, + anon_sym_else, + anon_sym_while, + [241397] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(103), 1, - sym_parenthesized_expression, - STATE(8079), 1, + STATE(7818), 1, sym_comment, - [245410] = 5, + ACTIONS(12155), 2, + anon_sym_else, + anon_sym_while, + [241411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11902), 1, - anon_sym_LPAREN, - STATE(7789), 1, - sym_parenthesized_expression, - STATE(8080), 1, + STATE(7819), 1, + sym_comment, + ACTIONS(9777), 2, + anon_sym_else, + anon_sym_while, + [241425] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10910), 1, + sym_identifier, + ACTIONS(10914), 1, + sym_private_property_identifier, + STATE(7820), 1, sym_comment, - [245426] = 5, + [241441] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12114), 1, - anon_sym_SEMI, - ACTIONS(12116), 1, + STATE(7821), 1, + sym_comment, + ACTIONS(12157), 2, sym__automatic_semicolon, - STATE(8081), 1, + anon_sym_SEMI, + [241455] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(152), 1, + sym_parenthesized_expression, + STATE(7822), 1, sym_comment, - [245442] = 5, + [241471] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3163), 1, - sym_statement_block, - STATE(8082), 1, + STATE(7823), 1, sym_comment, - [245458] = 4, + ACTIONS(6434), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [241485] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8083), 1, + ACTIONS(12159), 1, + anon_sym_LBRACE, + STATE(1512), 1, + sym_switch_body, + STATE(7824), 1, sym_comment, - ACTIONS(12118), 2, - anon_sym_else, - anon_sym_while, - [245472] = 4, + [241501] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8084), 1, + STATE(7825), 1, sym_comment, - ACTIONS(12120), 2, + ACTIONS(9715), 2, anon_sym_else, anon_sym_while, - [245486] = 4, + [241515] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8085), 1, + STATE(7826), 1, sym_comment, - ACTIONS(12122), 2, - anon_sym_COMMA, - anon_sym_GT, - [245500] = 5, + ACTIONS(12161), 2, + anon_sym_else, + anon_sym_while, + [241529] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12124), 1, + ACTIONS(12163), 1, sym_identifier, - ACTIONS(12126), 1, - sym_private_property_identifier, - STATE(8086), 1, + STATE(6554), 1, + sym_nested_identifier, + STATE(7827), 1, sym_comment, - [245516] = 5, + [241545] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12128), 1, + ACTIONS(12165), 1, sym_identifier, - ACTIONS(12130), 1, + ACTIONS(12167), 1, sym_private_property_identifier, - STATE(8087), 1, + STATE(7828), 1, sym_comment, - [245532] = 5, + [241561] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(118), 1, - sym_parenthesized_expression, - STATE(8088), 1, + STATE(7829), 1, sym_comment, - [245548] = 5, + STATE(8200), 1, + sym_formal_parameters, + [241577] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12132), 1, + ACTIONS(11315), 1, anon_sym_LBRACE, - STATE(1464), 1, + STATE(1462), 1, sym_statement_block, - STATE(8089), 1, + STATE(7830), 1, sym_comment, - [245564] = 5, + [241593] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3267), 1, - sym_statement_block, - STATE(8090), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(114), 1, + sym_parenthesized_expression, + STATE(7831), 1, sym_comment, - [245580] = 5, + [241609] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8274), 1, + ACTIONS(8203), 1, anon_sym_LBRACE, - STATE(4049), 1, + STATE(7832), 1, + sym_comment, + STATE(7934), 1, sym_class_body, - STATE(8091), 1, + [241625] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6346), 1, + sym__from_clause, + STATE(7833), 1, sym_comment, - [245596] = 4, + [241641] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8092), 1, + ACTIONS(7870), 1, + anon_sym_COLON, + STATE(6847), 1, + sym_type_annotation, + STATE(7834), 1, sym_comment, - ACTIONS(12134), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [245610] = 5, + [241657] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10570), 1, - anon_sym_LBRACE, - STATE(4042), 1, - sym_statement_block, - STATE(8093), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7835), 1, sym_comment, - [245626] = 5, + STATE(8282), 1, + sym_formal_parameters, + [241673] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12078), 1, + ACTIONS(8241), 1, anon_sym_LBRACE, - STATE(1483), 1, - sym_enum_body, - STATE(8094), 1, + STATE(3468), 1, + sym_class_body, + STATE(7836), 1, sym_comment, - [245642] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [241689] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(8095), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7837), 1, sym_comment, - ACTIONS(12136), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [245656] = 5, + ACTIONS(6644), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [241703] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12132), 1, - anon_sym_LBRACE, - STATE(1481), 1, - sym_statement_block, - STATE(8096), 1, + STATE(7838), 1, sym_comment, - [245672] = 5, + ACTIONS(9719), 2, + anon_sym_else, + anon_sym_while, + [241717] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(8097), 1, + STATE(7839), 1, sym_comment, - STATE(8276), 1, - sym_formal_parameters, - [245688] = 4, + ACTIONS(12169), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [241731] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8098), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7840), 1, sym_comment, - ACTIONS(10748), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [245702] = 4, + STATE(7995), 1, + sym_formal_parameters, + [241747] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8099), 1, + STATE(7841), 1, sym_comment, - ACTIONS(6328), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [245716] = 4, + ACTIONS(6545), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [241761] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8100), 1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7436), 1, + sym_statement_block, + STATE(7842), 1, sym_comment, - ACTIONS(6292), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [245730] = 4, + [241777] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8101), 1, + STATE(7843), 1, sym_comment, - ACTIONS(12138), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [245744] = 4, + ACTIONS(6621), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [241791] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8102), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7844), 1, sym_comment, - ACTIONS(12140), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [245758] = 5, + STATE(8295), 1, + sym_formal_parameters, + [241807] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10898), 1, + ACTIONS(12171), 1, sym_identifier, - ACTIONS(10902), 1, + ACTIONS(12173), 1, sym_private_property_identifier, - STATE(8103), 1, + STATE(7845), 1, sym_comment, - [245774] = 5, - ACTIONS(3), 1, + [241823] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(8739), 1, + anon_sym_LBRACE, + STATE(7419), 1, + sym_statement_block, + STATE(7846), 1, + sym_comment, + [241839] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12142), 1, - sym_identifier, - STATE(6811), 1, - sym_nested_identifier, - STATE(8104), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7847), 1, sym_comment, - [245790] = 5, + ACTIONS(12175), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [241853] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, + ACTIONS(9988), 1, anon_sym_from, - STATE(7989), 1, + STATE(7719), 1, sym__from_clause, - STATE(8105), 1, + STATE(7848), 1, sym_comment, - [245806] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [241869] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12144), 1, - sym_identifier, - ACTIONS(12146), 1, - sym_private_property_identifier, - STATE(8106), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8213), 1, + anon_sym_LBRACE, + STATE(435), 1, + sym_class_body, + STATE(7849), 1, sym_comment, - [245822] = 4, + [241885] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8107), 1, + STATE(7850), 1, sym_comment, - ACTIONS(9792), 2, + ACTIONS(12177), 2, anon_sym_else, anon_sym_while, - [245836] = 5, + [241899] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, + ACTIONS(9988), 1, anon_sym_from, - STATE(6410), 1, + STATE(6153), 1, sym__from_clause, - STATE(8108), 1, + STATE(7851), 1, sym_comment, - [245852] = 5, + [241915] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(11523), 1, anon_sym_LPAREN, - STATE(8109), 1, + STATE(151), 1, + sym__for_header, + STATE(7852), 1, sym_comment, - STATE(8348), 1, - sym_formal_parameters, - [245868] = 5, + [241931] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11740), 1, + ACTIONS(11523), 1, anon_sym_LPAREN, - STATE(100), 1, + STATE(99), 1, sym__for_header, - STATE(8110), 1, + STATE(7853), 1, sym_comment, - [245884] = 5, + [241947] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, - anon_sym_LBRACE, - STATE(6985), 1, - sym_statement_block, - STATE(8111), 1, + STATE(7854), 1, sym_comment, - [245900] = 5, + ACTIONS(12179), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [241961] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12148), 1, - anon_sym_SEMI, - ACTIONS(12150), 1, - sym__automatic_semicolon, - STATE(8112), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(6355), 1, + sym__from_clause, + STATE(7855), 1, sym_comment, - [245916] = 4, + [241977] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8113), 1, + STATE(7856), 1, sym_comment, - ACTIONS(12152), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [245930] = 4, + ACTIONS(9721), 2, + anon_sym_else, + anon_sym_while, + [241991] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8114), 1, + STATE(7857), 1, sym_comment, - ACTIONS(12154), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [245944] = 4, + ACTIONS(9723), 2, + anon_sym_else, + anon_sym_while, + [242005] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8115), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + STATE(3515), 1, + sym_statement_block, + STATE(7858), 1, sym_comment, - ACTIONS(12156), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [245958] = 5, + [242021] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12158), 1, - anon_sym_SEMI, - ACTIONS(12160), 1, - sym__automatic_semicolon, - STATE(8116), 1, + ACTIONS(12181), 1, + anon_sym_LPAREN, + STATE(1380), 1, + sym_parenthesized_expression, + STATE(7859), 1, sym_comment, - [245974] = 4, + [242037] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8117), 1, + ACTIONS(9988), 1, + anon_sym_from, + STATE(7361), 1, + sym__from_clause, + STATE(7860), 1, sym_comment, - ACTIONS(12162), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [245988] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [242053] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2370), 1, - anon_sym_DOT, - ACTIONS(5991), 1, - sym_identifier, - STATE(8118), 1, - sym_comment, - [246004] = 5, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(8251), 1, + anon_sym_LBRACE, + STATE(1398), 1, + sym_class_body, + STATE(7861), 1, + sym_comment, + [242069] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2410), 1, - anon_sym_DOT, - ACTIONS(5991), 1, - sym_identifier, - STATE(8119), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7862), 1, sym_comment, - [246020] = 4, + ACTIONS(12183), 2, + anon_sym_COMMA, + anon_sym_GT, + [242083] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8120), 1, + ACTIONS(12185), 1, + anon_sym_LBRACE, + STATE(1521), 1, + sym_enum_body, + STATE(7863), 1, sym_comment, - ACTIONS(9790), 2, - anon_sym_else, - anon_sym_while, - [246034] = 4, + [242099] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8121), 1, + STATE(7864), 1, sym_comment, - ACTIONS(10076), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [246048] = 5, + ACTIONS(6458), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [242113] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7868), 1, anon_sym_LPAREN, - STATE(8122), 1, + STATE(7865), 1, sym_comment, - STATE(8230), 1, + STATE(8233), 1, sym_formal_parameters, - [246064] = 5, + [242129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, - anon_sym_LBRACE, - STATE(7052), 1, - sym_statement_block, - STATE(8123), 1, + STATE(7866), 1, sym_comment, - [246080] = 4, + ACTIONS(10321), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [242143] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8124), 1, + STATE(7867), 1, sym_comment, - ACTIONS(12164), 2, + ACTIONS(12187), 2, sym__automatic_semicolon, anon_sym_SEMI, - [246094] = 5, + [242157] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6480), 1, - sym__from_clause, - STATE(8125), 1, + ACTIONS(8531), 1, + anon_sym_LBRACE, + STATE(5961), 1, + sym_statement_block, + STATE(7868), 1, sym_comment, - [246110] = 5, + [242173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(1809), 1, - sym_class_body, - STATE(8126), 1, + STATE(3064), 1, + sym_statement_block, + STATE(7869), 1, sym_comment, - [246126] = 5, + [242189] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(3898), 1, - sym_class_body, - STATE(8127), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7870), 1, sym_comment, - [246142] = 4, + STATE(8366), 1, + sym_formal_parameters, + [242205] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8128), 1, + ACTIONS(8251), 1, + anon_sym_LBRACE, + STATE(1390), 1, + sym_class_body, + STATE(7871), 1, sym_comment, - ACTIONS(12166), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [246156] = 5, + [242221] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, + ACTIONS(9988), 1, anon_sym_from, - STATE(6460), 1, + STATE(6203), 1, sym__from_clause, - STATE(8129), 1, - sym_comment, - [246172] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12168), 1, - sym_identifier, - ACTIONS(12170), 1, - sym_private_property_identifier, - STATE(8130), 1, + STATE(7872), 1, sym_comment, - [246188] = 5, + [242237] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, + ACTIONS(7880), 1, anon_sym_LPAREN, - STATE(8131), 1, - sym_comment, - STATE(8422), 1, + STATE(4865), 1, sym_formal_parameters, - [246204] = 4, + STATE(7873), 1, + sym_comment, + [242253] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8132), 1, + ACTIONS(5602), 1, + anon_sym_LBRACE, + STATE(3460), 1, + sym_statement_block, + STATE(7874), 1, sym_comment, - ACTIONS(10874), 2, - anon_sym_COMMA, - anon_sym_GT, - [246218] = 5, + [242269] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(99), 1, - sym_parenthesized_expression, - STATE(8133), 1, + STATE(7875), 1, sym_comment, - [246234] = 5, + ACTIONS(6430), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [242283] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_LBRACE, - STATE(7795), 1, - sym_statement_block, - STATE(8134), 1, + ACTIONS(12189), 1, + anon_sym_SEMI, + ACTIONS(12191), 1, + sym__automatic_semicolon, + STATE(7876), 1, sym_comment, - [246250] = 4, + [242299] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8135), 1, + ACTIONS(12193), 1, + anon_sym_SEMI, + ACTIONS(12195), 1, + sym__automatic_semicolon, + STATE(7877), 1, sym_comment, - ACTIONS(6536), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [246264] = 5, + [242315] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(8136), 1, - sym_comment, - STATE(8444), 1, - sym_formal_parameters, - [246280] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12172), 1, - sym_identifier, - STATE(6872), 1, - sym_nested_identifier, - STATE(8137), 1, + ACTIONS(9846), 1, + anon_sym_LBRACE, + STATE(3967), 1, + sym_statement_block, + STATE(7878), 1, sym_comment, - [246296] = 5, + [242331] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8250), 1, - anon_sym_LBRACE, - STATE(4184), 1, - sym_class_body, - STATE(8138), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(7879), 1, sym_comment, - [246312] = 5, + STATE(8361), 1, + sym_formal_parameters, + [242347] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12174), 1, + ACTIONS(12197), 1, sym_identifier, - STATE(7228), 1, - sym__qml_enum_assignment, - STATE(8139), 1, + STATE(6986), 1, + sym_nested_identifier, + STATE(7880), 1, sym_comment, - [246328] = 5, + [242363] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8526), 1, + ACTIONS(5602), 1, anon_sym_LBRACE, - STATE(6218), 1, + STATE(3613), 1, sym_statement_block, - STATE(8140), 1, + STATE(7881), 1, sym_comment, - [246344] = 5, + [242379] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3276), 1, + STATE(3062), 1, sym_statement_block, - STATE(8141), 1, + STATE(7882), 1, sym_comment, - [246360] = 4, + [242395] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8142), 1, + STATE(7883), 1, sym_comment, - ACTIONS(12176), 2, - anon_sym_else, - anon_sym_while, - [246374] = 4, + ACTIONS(12199), 2, + anon_sym_COMMA, + anon_sym_GT, + [242409] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8143), 1, - sym_comment, - ACTIONS(12178), 2, - sym__automatic_semicolon, + ACTIONS(12201), 1, anon_sym_SEMI, - [246388] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - STATE(8144), 1, + ACTIONS(12203), 1, + sym__automatic_semicolon, + STATE(7884), 1, sym_comment, - ACTIONS(6453), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [246402] = 5, + [242425] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, + ACTIONS(8531), 1, anon_sym_LBRACE, - STATE(7929), 1, + STATE(5963), 1, sym_statement_block, - STATE(8145), 1, + STATE(7885), 1, sym_comment, - [246418] = 4, + [242441] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8146), 1, + STATE(7886), 1, sym_comment, - ACTIONS(6457), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [246432] = 4, + ACTIONS(12205), 2, + anon_sym_else, + anon_sym_while, + [242455] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8147), 1, + STATE(7887), 1, sym_comment, - ACTIONS(12180), 2, + ACTIONS(9761), 2, anon_sym_else, anon_sym_while, - [246446] = 4, + [242469] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8148), 1, + STATE(7888), 1, sym_comment, - ACTIONS(12182), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [246460] = 5, + ACTIONS(12207), 2, + anon_sym_else, + anon_sym_while, + [242483] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12184), 1, - anon_sym_SEMI, - ACTIONS(12186), 1, - sym__automatic_semicolon, - STATE(8149), 1, + STATE(7889), 1, sym_comment, - [246476] = 5, + ACTIONS(12207), 2, + anon_sym_else, + anon_sym_while, + [242497] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_LBRACE, - STATE(3106), 1, - sym_statement_block, - STATE(8150), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(140), 1, + sym_parenthesized_expression, + STATE(7890), 1, sym_comment, - [246492] = 4, + [242513] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8151), 1, + ACTIONS(8231), 1, + anon_sym_LBRACE, + STATE(519), 1, + sym_class_body, + STATE(7891), 1, sym_comment, - ACTIONS(2436), 2, - anon_sym_else, - anon_sym_while, - [246506] = 4, + [242529] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8152), 1, + STATE(7892), 1, sym_comment, - ACTIONS(12188), 2, + ACTIONS(6398), 2, sym__automatic_semicolon, anon_sym_SEMI, - [246520] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [242543] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12190), 1, - sym_identifier, - ACTIONS(12192), 1, - sym_private_property_identifier, - STATE(8153), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8241), 1, + anon_sym_LBRACE, + STATE(3529), 1, + sym_class_body, + STATE(7893), 1, sym_comment, - [246536] = 5, + [242559] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8218), 1, - anon_sym_LBRACE, - STATE(1857), 1, - sym_class_body, - STATE(8154), 1, + STATE(7894), 1, sym_comment, - [246552] = 4, + ACTIONS(6470), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [242573] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8155), 1, + STATE(7895), 1, sym_comment, - ACTIONS(6266), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [246566] = 5, + ACTIONS(12209), 2, + anon_sym_else, + anon_sym_while, + [242587] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11740), 1, - anon_sym_LPAREN, - STATE(98), 1, - sym__for_header, - STATE(8156), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3132), 1, + sym_statement_block, + STATE(7896), 1, sym_comment, - [246582] = 5, + [242603] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12194), 1, + ACTIONS(11457), 1, anon_sym_LPAREN, - STATE(4034), 1, + STATE(7162), 1, sym_parenthesized_expression, - STATE(8157), 1, + STATE(7897), 1, sym_comment, - [246598] = 5, + [242619] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(6503), 1, - sym__from_clause, - STATE(8158), 1, + ACTIONS(11475), 1, + anon_sym_LPAREN, + STATE(149), 1, + sym_parenthesized_expression, + STATE(7898), 1, sym_comment, - [246614] = 5, + [242635] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8326), 1, - anon_sym_LBRACE, - STATE(3101), 1, - sym_class_body, - STATE(8159), 1, + ACTIONS(7868), 1, + anon_sym_LPAREN, + STATE(6035), 1, + sym_formal_parameters, + STATE(7899), 1, sym_comment, - [246630] = 5, + [242651] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(4622), 1, - anon_sym_COLON, - STATE(7925), 1, - sym_type_annotation, - STATE(8160), 1, + STATE(7900), 1, sym_comment, - [246646] = 5, + ACTIONS(12211), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [242665] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8234), 1, - anon_sym_LBRACE, - STATE(1892), 1, - sym_class_body, - STATE(8161), 1, + STATE(7901), 1, sym_comment, - [246662] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(12213), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [242679] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12196), 1, - sym_identifier, - ACTIONS(12198), 1, - sym_private_property_identifier, - STATE(8162), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7902), 1, sym_comment, - [246678] = 5, + ACTIONS(12215), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [242693] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12200), 1, + ACTIONS(12217), 1, sym_identifier, - ACTIONS(12202), 1, + ACTIONS(12219), 1, sym_private_property_identifier, - STATE(8163), 1, + STATE(7903), 1, sym_comment, - [246694] = 5, + [242709] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11400), 1, - anon_sym_LBRACE, - STATE(4110), 1, - sym_statement_block, - STATE(8164), 1, + STATE(7904), 1, sym_comment, - [246710] = 5, + ACTIONS(6650), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [242723] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9945), 1, - anon_sym_from, - STATE(7791), 1, - sym__from_clause, - STATE(8165), 1, + ACTIONS(12221), 1, + anon_sym_LBRACE, + STATE(4166), 1, + sym_switch_body, + STATE(7905), 1, sym_comment, - [246726] = 4, + [242739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8166), 1, + STATE(7906), 1, sym_comment, - ACTIONS(10704), 2, + ACTIONS(6307), 2, sym__automatic_semicolon, anon_sym_SEMI, - [246740] = 5, + [242753] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11640), 1, - anon_sym_LBRACE, - STATE(1805), 1, - sym_enum_body, - STATE(8167), 1, + STATE(7907), 1, sym_comment, - [246756] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(12223), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [242767] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12204), 1, - sym_identifier, - ACTIONS(12206), 1, - sym_private_property_identifier, - STATE(8168), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3032), 1, + sym_statement_block, + STATE(7908), 1, sym_comment, - [246772] = 5, + [242783] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, - anon_sym_LBRACE, - STATE(3524), 1, - sym_class_body, - STATE(8169), 1, + STATE(7909), 1, sym_comment, - [246788] = 5, + ACTIONS(6440), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [242797] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9513), 1, + ACTIONS(12225), 1, anon_sym_LBRACE, - STATE(4055), 1, + STATE(1399), 1, sym_statement_block, - STATE(8170), 1, + STATE(7910), 1, sym_comment, - [246804] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [242813] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12208), 1, - sym_identifier, - ACTIONS(12210), 1, - sym_private_property_identifier, - STATE(8171), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7911), 1, sym_comment, - [246820] = 5, - ACTIONS(3), 1, + ACTIONS(6462), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [242827] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(12227), 1, + anon_sym_SEMI, + ACTIONS(12229), 1, + sym__automatic_semicolon, + STATE(7912), 1, + sym_comment, + [242843] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12212), 1, - sym_identifier, - ACTIONS(12214), 1, - sym_private_property_identifier, - STATE(8172), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + STATE(7913), 1, sym_comment, - [246836] = 5, + ACTIONS(12231), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [242857] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12216), 1, - anon_sym_LBRACE, - STATE(3887), 1, - sym_statement_block, - STATE(8173), 1, + ACTIONS(9888), 1, + anon_sym_in, + ACTIONS(9890), 1, + anon_sym_of, + STATE(7914), 1, sym_comment, - [246852] = 5, + [242873] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8272), 1, + ACTIONS(8229), 1, anon_sym_LBRACE, - STATE(3529), 1, + STATE(2961), 1, sym_class_body, - STATE(8174), 1, + STATE(7915), 1, sym_comment, - [246868] = 5, + [242889] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(8175), 1, + STATE(7916), 1, sym_comment, - STATE(8510), 1, - sym_formal_parameters, - [246884] = 5, + ACTIONS(9464), 2, + anon_sym_else, + anon_sym_while, + [242903] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(113), 1, - sym_parenthesized_expression, - STATE(8176), 1, + ACTIONS(4586), 1, + anon_sym_COLON, + STATE(7297), 1, + sym_type_annotation, + STATE(7917), 1, sym_comment, - [246900] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [242919] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12218), 1, - sym_identifier, - ACTIONS(12220), 1, - sym_private_property_identifier, - STATE(8177), 1, - sym_comment, - [246916] = 5, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12222), 1, - sym_identifier, - ACTIONS(12224), 1, - sym_private_property_identifier, - STATE(8178), 1, + ACTIONS(8900), 1, + anon_sym_LBRACE, + STATE(3014), 1, + sym_statement_block, + STATE(7918), 1, sym_comment, - [246932] = 4, + [242935] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8179), 1, + ACTIONS(8219), 1, + anon_sym_LBRACE, + STATE(6793), 1, + sym_class_body, + STATE(7919), 1, sym_comment, - ACTIONS(9742), 2, - anon_sym_else, - anon_sym_while, - [246946] = 5, + [242951] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, + ACTIONS(11475), 1, anon_sym_LPAREN, - STATE(109), 1, + STATE(106), 1, sym_parenthesized_expression, - STATE(8180), 1, + STATE(7920), 1, sym_comment, - [246962] = 5, + [242967] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7863), 1, - anon_sym_COLON, - STATE(7153), 1, - sym_type_annotation, - STATE(8181), 1, + STATE(7921), 1, sym_comment, - [246978] = 5, + ACTIONS(12233), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [242981] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12226), 1, - anon_sym_LBRACE, - STATE(1002), 1, - sym_statement_block, - STATE(8182), 1, + STATE(7922), 1, sym_comment, - [246994] = 5, + ACTIONS(9753), 2, + anon_sym_else, + anon_sym_while, + [242995] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11902), 1, - anon_sym_LPAREN, - STATE(7583), 1, - sym_parenthesized_expression, - STATE(8183), 1, + STATE(7923), 1, sym_comment, - [247010] = 5, + ACTIONS(9617), 2, + anon_sym_else, + anon_sym_while, + [243009] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11476), 1, - anon_sym_LPAREN, - STATE(121), 1, - sym_parenthesized_expression, - STATE(8184), 1, + ACTIONS(12225), 1, + anon_sym_LBRACE, + STATE(1480), 1, + sym_statement_block, + STATE(7924), 1, sym_comment, - [247026] = 5, + [243025] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(8210), 1, - anon_sym_LBRACE, - STATE(490), 1, - sym_class_body, - STATE(8185), 1, + ACTIONS(12235), 1, + sym_identifier, + ACTIONS(12237), 1, + sym_private_property_identifier, + STATE(7925), 1, sym_comment, - [247042] = 4, + [243041] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8186), 1, + STATE(7926), 1, sym_comment, - ACTIONS(6213), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [247056] = 5, + ACTIONS(9751), 2, + anon_sym_else, + anon_sym_while, + [243055] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12228), 1, - anon_sym_LBRACE, - STATE(1565), 1, - sym_switch_body, - STATE(8187), 1, + STATE(7927), 1, sym_comment, - [247072] = 5, + ACTIONS(12239), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [243069] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12230), 1, - anon_sym_in, - ACTIONS(12232), 1, - anon_sym_COLON, - STATE(8188), 1, + STATE(7928), 1, sym_comment, - [247088] = 5, + ACTIONS(9747), 2, + anon_sym_else, + anon_sym_while, + [243083] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7861), 1, - anon_sym_LPAREN, - STATE(5702), 1, - sym_formal_parameters, - STATE(8189), 1, + STATE(7929), 1, sym_comment, - [247104] = 5, + ACTIONS(12241), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [243097] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, + ACTIONS(8900), 1, anon_sym_LBRACE, - STATE(3274), 1, + STATE(3006), 1, sym_statement_block, - STATE(8190), 1, + STATE(7930), 1, sym_comment, - [247120] = 5, + [243113] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12234), 1, - anon_sym_LBRACE, - STATE(1677), 1, - sym_switch_body, - STATE(8191), 1, + STATE(7931), 1, sym_comment, - [247136] = 5, + ACTIONS(9745), 2, + anon_sym_else, + anon_sym_while, + [243127] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8837), 1, - anon_sym_LBRACE, - STATE(3271), 1, - sym_statement_block, - STATE(8192), 1, + STATE(7932), 1, sym_comment, - [247152] = 4, + ACTIONS(12243), 2, + anon_sym_else, + anon_sym_while, + [243141] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8193), 1, + STATE(7933), 1, sym_comment, - ACTIONS(12236), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [247166] = 4, + ACTIONS(12245), 2, + anon_sym_else, + anon_sym_while, + [243155] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8194), 1, + STATE(7934), 1, sym_comment, - ACTIONS(6426), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [247180] = 4, + ACTIONS(9737), 2, + anon_sym_else, + anon_sym_while, + [243169] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12247), 1, + sym_identifier, + STATE(6872), 1, + sym__qml_enum_assignment, + STATE(7935), 1, + sym_comment, + [243185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - STATE(8195), 1, + STATE(7936), 1, sym_comment, - ACTIONS(7082), 2, + ACTIONS(9733), 2, anon_sym_else, anon_sym_while, - [247194] = 4, + [243199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12238), 1, - anon_sym_EQ_GT, - STATE(8196), 1, + ACTIONS(12185), 1, + anon_sym_LBRACE, + STATE(1407), 1, + sym_enum_body, + STATE(7937), 1, + sym_comment, + [243215] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(8219), 1, + anon_sym_LBRACE, + STATE(6790), 1, + sym_class_body, + STATE(7938), 1, sym_comment, - [247207] = 4, + [243231] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12240), 1, + ACTIONS(12249), 1, sym_identifier, - STATE(8197), 1, + STATE(7939), 1, sym_comment, - [247220] = 4, + [243244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12242), 1, - anon_sym_EQ_GT, - STATE(8198), 1, + ACTIONS(12251), 1, + anon_sym_DOT, + STATE(7940), 1, sym_comment, - [247233] = 4, + [243257] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12244), 1, + ACTIONS(12253), 1, anon_sym_EQ_GT, - STATE(8199), 1, + STATE(7941), 1, sym_comment, - [247246] = 4, + [243270] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12246), 1, + ACTIONS(12255), 1, anon_sym_EQ_GT, - STATE(8200), 1, + STATE(7942), 1, sym_comment, - [247259] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [243283] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12248), 1, - sym_identifier, - STATE(8201), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12257), 1, + anon_sym_EQ_GT, + STATE(7943), 1, sym_comment, - [247272] = 4, + [243296] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12250), 1, - anon_sym_EQ_GT, - STATE(8202), 1, + ACTIONS(6948), 1, + anon_sym_in, + STATE(7944), 1, sym_comment, - [247285] = 4, + [243309] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12252), 1, + ACTIONS(12259), 1, anon_sym_RPAREN, - STATE(8203), 1, + STATE(7945), 1, sym_comment, - [247298] = 4, + [243322] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6898), 1, - anon_sym_in, - STATE(8204), 1, + ACTIONS(12261), 1, + anon_sym_class, + STATE(7946), 1, sym_comment, - [247311] = 4, + [243335] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12263), 1, + sym_identifier, + STATE(7947), 1, + sym_comment, + [243348] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12254), 1, - anon_sym_EQ, - STATE(8205), 1, + ACTIONS(12265), 1, + sym_identifier, + STATE(7948), 1, sym_comment, - [247324] = 4, + [243361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12256), 1, + ACTIONS(12267), 1, anon_sym_EQ, - STATE(8206), 1, + STATE(7949), 1, sym_comment, - [247337] = 4, + [243374] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12258), 1, - anon_sym_COLON, - STATE(8207), 1, + ACTIONS(6617), 1, + anon_sym_RPAREN, + STATE(7950), 1, sym_comment, - [247350] = 4, + [243387] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12260), 1, + ACTIONS(12269), 1, anon_sym_EQ, - STATE(8208), 1, + STATE(7951), 1, sym_comment, - [247363] = 4, + [243400] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5955), 1, - anon_sym_RPAREN, - STATE(8209), 1, + ACTIONS(12271), 1, + sym_identifier, + STATE(7952), 1, sym_comment, - [247376] = 4, + [243413] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12262), 1, + ACTIONS(12273), 1, anon_sym_EQ_GT, - STATE(8210), 1, + STATE(7953), 1, sym_comment, - [247389] = 4, + [243426] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12264), 1, + ACTIONS(10839), 1, anon_sym_RBRACK, - STATE(8211), 1, + STATE(7954), 1, sym_comment, - [247402] = 4, + [243439] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12266), 1, - anon_sym_RPAREN, - STATE(8212), 1, + ACTIONS(12275), 1, + sym_identifier, + STATE(7955), 1, sym_comment, - [247415] = 4, + [243452] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5687), 1, - anon_sym_RPAREN, - STATE(8213), 1, + ACTIONS(12277), 1, + anon_sym_EQ_GT, + STATE(7956), 1, sym_comment, - [247428] = 4, + [243465] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10807), 1, - anon_sym_EQ, - STATE(8214), 1, + ACTIONS(5927), 1, + anon_sym_RPAREN, + STATE(7957), 1, sym_comment, - [247441] = 4, + [243478] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6167), 1, - anon_sym_in, - STATE(8215), 1, + ACTIONS(12279), 1, + anon_sym_EQ_GT, + STATE(7958), 1, sym_comment, - [247454] = 4, + [243491] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12268), 1, + ACTIONS(12281), 1, anon_sym_DOT, - STATE(8216), 1, + STATE(7959), 1, sym_comment, - [247467] = 4, + [243504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6605), 1, - anon_sym_RBRACE, - STATE(8217), 1, + ACTIONS(12283), 1, + anon_sym_RBRACK, + STATE(7960), 1, sym_comment, - [247480] = 4, + [243517] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12270), 1, + ACTIONS(12285), 1, anon_sym_EQ_GT, - STATE(8218), 1, + STATE(7961), 1, sym_comment, - [247493] = 4, + [243530] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12272), 1, + ACTIONS(12287), 1, anon_sym_EQ_GT, - STATE(8219), 1, + STATE(7962), 1, sym_comment, - [247506] = 4, + [243543] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12274), 1, + ACTIONS(12289), 1, sym_regex_pattern, - STATE(8220), 1, + STATE(7963), 1, sym_comment, - [247519] = 4, + [243556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6582), 1, + ACTIONS(12291), 1, anon_sym_RBRACK, - STATE(8221), 1, + STATE(7964), 1, sym_comment, - [247532] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [243569] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12276), 1, - sym_identifier, - STATE(8222), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12293), 1, + anon_sym_RPAREN, + STATE(7965), 1, sym_comment, - [247545] = 4, + [243582] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12278), 1, - anon_sym_EQ_GT, - STATE(8223), 1, + ACTIONS(6590), 1, + anon_sym_RPAREN, + STATE(7966), 1, sym_comment, - [247558] = 4, + [243595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12280), 1, - anon_sym_RPAREN, - STATE(8224), 1, + ACTIONS(12295), 1, + anon_sym_RBRACK, + STATE(7967), 1, sym_comment, - [247571] = 4, + [243608] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12282), 1, - anon_sym_EQ_GT, - STATE(8225), 1, + ACTIONS(10861), 1, + anon_sym_LBRACE, + STATE(7968), 1, sym_comment, - [247584] = 4, + [243621] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12284), 1, - anon_sym_EQ_GT, - STATE(8226), 1, + ACTIONS(12297), 1, + anon_sym_RBRACK, + STATE(7969), 1, sym_comment, - [247597] = 4, + [243634] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12286), 1, - anon_sym_COLON, - STATE(8227), 1, + ACTIONS(6615), 1, + anon_sym_RPAREN, + STATE(7970), 1, sym_comment, - [247610] = 4, + [243647] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12288), 1, + ACTIONS(12299), 1, sym_identifier, - STATE(8228), 1, + STATE(7971), 1, sym_comment, - [247623] = 4, + [243660] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12290), 1, + ACTIONS(12301), 1, sym_identifier, - STATE(8229), 1, + STATE(7972), 1, sym_comment, - [247636] = 4, + [243673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12292), 1, + ACTIONS(10048), 1, anon_sym_EQ_GT, - STATE(8230), 1, + STATE(7973), 1, + sym_comment, + [243686] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12303), 1, + sym_identifier, + STATE(7974), 1, sym_comment, - [247649] = 4, + [243699] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12294), 1, + ACTIONS(10050), 1, anon_sym_EQ_GT, - STATE(8231), 1, + STATE(7975), 1, sym_comment, - [247662] = 4, + [243712] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12296), 1, - anon_sym_RPAREN, - STATE(8232), 1, + ACTIONS(12305), 1, + anon_sym_EQ_GT, + STATE(7976), 1, sym_comment, - [247675] = 4, + [243725] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(7757), 1, - anon_sym_is, - STATE(8233), 1, + ACTIONS(12307), 1, + sym_identifier, + STATE(7977), 1, sym_comment, - [247688] = 4, + [243738] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12298), 1, - anon_sym_EQ, - STATE(8234), 1, + ACTIONS(12309), 1, + anon_sym_RBRACK, + STATE(7978), 1, sym_comment, - [247701] = 4, + [243751] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12300), 1, + ACTIONS(12311), 1, sym_identifier, - STATE(8235), 1, + STATE(7979), 1, sym_comment, - [247714] = 4, + [243764] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12302), 1, - anon_sym_SLASH2, - STATE(8236), 1, + ACTIONS(12313), 1, + sym_identifier, + STATE(7980), 1, + sym_comment, + [243777] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12315), 1, + sym_identifier, + STATE(7981), 1, sym_comment, - [247727] = 4, + [243790] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12304), 1, - sym_number, - STATE(8237), 1, + ACTIONS(9500), 1, + anon_sym_EQ, + STATE(7982), 1, sym_comment, - [247740] = 4, + [243803] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12306), 1, + ACTIONS(12317), 1, sym_identifier, - STATE(8238), 1, + STATE(7983), 1, + sym_comment, + [243816] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12319), 1, + sym_identifier, + STATE(7984), 1, sym_comment, - [247753] = 4, + [243829] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12308), 1, - anon_sym_symbol, - STATE(8239), 1, + ACTIONS(12321), 1, + anon_sym_while, + STATE(7985), 1, sym_comment, - [247766] = 4, + [243842] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12310), 1, - anon_sym_RPAREN, - STATE(8240), 1, + ACTIONS(12323), 1, + anon_sym_target, + STATE(7986), 1, sym_comment, - [247779] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [243855] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12312), 1, - sym_identifier, - STATE(8241), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12325), 1, + anon_sym_EQ, + STATE(7987), 1, sym_comment, - [247792] = 4, + [243868] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12314), 1, - sym_identifier, - STATE(8242), 1, + ACTIONS(12327), 1, + anon_sym_SLASH2, + STATE(7988), 1, sym_comment, - [247805] = 4, + [243881] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12316), 1, - anon_sym_EQ_GT, - STATE(8243), 1, + ACTIONS(12329), 1, + sym_identifier, + STATE(7989), 1, sym_comment, - [247818] = 4, + [243894] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12318), 1, + ACTIONS(12331), 1, sym_identifier, - STATE(8244), 1, + STATE(7990), 1, sym_comment, - [247831] = 4, + [243907] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12320), 1, - anon_sym_EQ_GT, - STATE(8245), 1, + ACTIONS(12333), 1, + sym_identifier, + STATE(7991), 1, sym_comment, - [247844] = 4, + [243920] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12322), 1, + ACTIONS(12335), 1, sym_identifier, - STATE(8246), 1, + STATE(7992), 1, sym_comment, - [247857] = 4, + [243933] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12324), 1, - anon_sym_EQ_GT, - STATE(8247), 1, + ACTIONS(12337), 1, + anon_sym_RBRACK, + STATE(7993), 1, sym_comment, - [247870] = 4, + [243946] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12326), 1, - anon_sym_EQ_GT, - STATE(8248), 1, + ACTIONS(12339), 1, + anon_sym_RBRACK, + STATE(7994), 1, sym_comment, - [247883] = 4, + [243959] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12328), 1, - anon_sym_RPAREN, - STATE(8249), 1, + ACTIONS(12341), 1, + anon_sym_EQ_GT, + STATE(7995), 1, sym_comment, - [247896] = 4, + [243972] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6661), 1, + ACTIONS(12343), 1, anon_sym_RPAREN, - STATE(8250), 1, + STATE(7996), 1, sym_comment, - [247909] = 4, + [243985] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12330), 1, - anon_sym_target, - STATE(8251), 1, + ACTIONS(12345), 1, + anon_sym_while, + STATE(7997), 1, sym_comment, - [247922] = 4, + [243998] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6121), 1, - anon_sym_in, - STATE(8252), 1, + ACTIONS(12347), 1, + sym_number, + STATE(7998), 1, sym_comment, - [247935] = 4, + [244011] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12332), 1, + ACTIONS(12349), 1, sym_identifier, - STATE(8253), 1, + STATE(7999), 1, sym_comment, - [247948] = 4, + [244024] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12334), 1, - anon_sym_while, - STATE(8254), 1, + ACTIONS(3456), 1, + anon_sym_LBRACE, + STATE(8000), 1, sym_comment, - [247961] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [244037] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12336), 1, - sym_identifier, - STATE(8255), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12351), 1, + anon_sym_RPAREN, + STATE(8001), 1, sym_comment, - [247974] = 4, + [244050] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12338), 1, + ACTIONS(12353), 1, sym_identifier, - STATE(8256), 1, + STATE(8002), 1, sym_comment, - [247987] = 4, + [244063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12340), 1, - anon_sym_EQ, - STATE(8257), 1, - sym_comment, - [248000] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12342), 1, - anon_sym_SLASH2, - STATE(8258), 1, - sym_comment, - [248013] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12344), 1, - sym_identifier, - STATE(8259), 1, + ACTIONS(12355), 1, + anon_sym_EQ_GT, + STATE(8003), 1, sym_comment, - [248026] = 4, + [244076] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12346), 1, - sym_number, - STATE(8260), 1, + ACTIONS(12357), 1, + anon_sym_symbol, + STATE(8004), 1, sym_comment, - [248039] = 4, + [244089] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12348), 1, + ACTIONS(12359), 1, sym_identifier, - STATE(8261), 1, + STATE(8005), 1, sym_comment, - [248052] = 4, + [244102] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12350), 1, + ACTIONS(12361), 1, sym_identifier, - STATE(8262), 1, + STATE(8006), 1, sym_comment, - [248065] = 4, + [244115] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12352), 1, + ACTIONS(12363), 1, sym_identifier, - STATE(8263), 1, + STATE(8007), 1, sym_comment, - [248078] = 4, + [244128] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12354), 1, + ACTIONS(12365), 1, sym_identifier, - STATE(8264), 1, + STATE(8008), 1, sym_comment, - [248091] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [244141] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12356), 1, - sym_regex_pattern, - STATE(8265), 1, - sym_comment, - [248104] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12358), 1, - sym_identifier, - STATE(8266), 1, + ACTIONS(12367), 1, + anon_sym_RPAREN, + STATE(8009), 1, sym_comment, - [248117] = 4, + [244154] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12360), 1, - anon_sym_symbol, - STATE(8267), 1, + ACTIONS(12369), 1, + anon_sym_RPAREN, + STATE(8010), 1, sym_comment, - [248130] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [244167] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12362), 1, - sym_identifier, - STATE(8268), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12371), 1, + sym_number, + STATE(8011), 1, sym_comment, - [248143] = 4, + [244180] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6554), 1, - anon_sym_is, - STATE(8269), 1, + ACTIONS(12373), 1, + anon_sym_RBRACK, + STATE(8012), 1, sym_comment, - [248156] = 4, + [244193] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12364), 1, - anon_sym_while, - STATE(8270), 1, + ACTIONS(12375), 1, + anon_sym_from, + STATE(8013), 1, sym_comment, - [248169] = 4, + [244206] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12366), 1, + ACTIONS(12377), 1, sym_identifier, - STATE(8271), 1, + STATE(8014), 1, sym_comment, - [248182] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [244219] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12368), 1, - sym_identifier, - STATE(8272), 1, - sym_comment, - [248195] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(12379), 1, + anon_sym_RPAREN, + STATE(8015), 1, + sym_comment, + [244232] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12370), 1, - sym_identifier, - STATE(8273), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12381), 1, + anon_sym_RBRACK, + STATE(8016), 1, sym_comment, - [248208] = 4, + [244245] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12372), 1, - sym_identifier, - STATE(8274), 1, + ACTIONS(12383), 1, + anon_sym_SLASH2, + STATE(8017), 1, sym_comment, - [248221] = 4, + [244258] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3466), 1, - anon_sym_LBRACE, - STATE(8275), 1, + ACTIONS(12385), 1, + anon_sym_EQ, + STATE(8018), 1, sym_comment, - [248234] = 4, + [244271] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12374), 1, + ACTIONS(12387), 1, anon_sym_EQ_GT, - STATE(8276), 1, + STATE(8019), 1, sym_comment, - [248247] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [244284] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12376), 1, - sym_identifier, - STATE(8277), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12389), 1, + anon_sym_RBRACK, + STATE(8020), 1, sym_comment, - [248260] = 4, + [244297] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12378), 1, - anon_sym_RPAREN, - STATE(8278), 1, + ACTIONS(12391), 1, + anon_sym_RBRACK, + STATE(8021), 1, sym_comment, - [248273] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [244310] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12380), 1, - sym_identifier, - STATE(8279), 1, - sym_comment, - [248286] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12382), 1, - sym_identifier, - STATE(8280), 1, + ACTIONS(12393), 1, + anon_sym_RBRACK, + STATE(8022), 1, sym_comment, - [248299] = 4, + [244323] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12384), 1, - sym_identifier, - STATE(8281), 1, + ACTIONS(12395), 1, + sym_regex_pattern, + STATE(8023), 1, sym_comment, - [248312] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [244336] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12386), 1, - sym_regex_pattern, - STATE(8282), 1, - sym_comment, - [248325] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(12397), 1, + anon_sym_RBRACK, + STATE(8024), 1, + sym_comment, + [244349] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12388), 1, - sym_identifier, - STATE(8283), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12399), 1, + anon_sym_EQ_GT, + STATE(8025), 1, sym_comment, - [248338] = 4, + [244362] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12390), 1, - anon_sym_DOT, - STATE(8284), 1, + ACTIONS(12401), 1, + anon_sym_EQ_GT, + STATE(8026), 1, sym_comment, - [248351] = 4, + [244375] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6532), 1, - anon_sym_RPAREN, - STATE(8285), 1, + ACTIONS(12403), 1, + anon_sym_EQ_GT, + STATE(8027), 1, sym_comment, - [248364] = 4, + [244388] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10947), 1, - anon_sym_RBRACK, - STATE(8286), 1, + ACTIONS(6464), 1, + anon_sym_RPAREN, + STATE(8028), 1, sym_comment, - [248377] = 4, + [244401] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12392), 1, + ACTIONS(5782), 1, anon_sym_RPAREN, - STATE(8287), 1, + STATE(8029), 1, sym_comment, - [248390] = 4, + [244414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12394), 1, - anon_sym_EQ_GT, - STATE(8288), 1, + ACTIONS(12405), 1, + anon_sym_RPAREN, + STATE(8030), 1, sym_comment, - [248403] = 4, + [244427] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12396), 1, + ACTIONS(12407), 1, anon_sym_RBRACK, - STATE(8289), 1, + STATE(8031), 1, sym_comment, - [248416] = 4, + [244440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12398), 1, - anon_sym_EQ_GT, - STATE(8290), 1, + ACTIONS(12409), 1, + anon_sym_COLON, + STATE(8032), 1, sym_comment, - [248429] = 4, + [244453] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12400), 1, - anon_sym_EQ_GT, - STATE(8291), 1, + ACTIONS(12411), 1, + anon_sym_EQ, + STATE(8033), 1, sym_comment, - [248442] = 4, + [244466] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12402), 1, + ACTIONS(12413), 1, anon_sym_RBRACK, - STATE(8292), 1, + STATE(8034), 1, sym_comment, - [248455] = 4, + [244479] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12404), 1, - anon_sym_RBRACK, - STATE(8293), 1, + ACTIONS(12415), 1, + anon_sym_DOT, + STATE(8035), 1, sym_comment, - [248468] = 4, + [244492] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(12417), 1, + sym_identifier, + STATE(8036), 1, + sym_comment, + [244505] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(12406), 1, - anon_sym_RBRACK, - STATE(8294), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12419), 1, + sym_identifier, + STATE(8037), 1, sym_comment, - [248481] = 4, + [244518] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12408), 1, - anon_sym_RBRACK, - STATE(8295), 1, + ACTIONS(12421), 1, + anon_sym_new, + STATE(8038), 1, sym_comment, - [248494] = 4, + [244531] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12410), 1, - anon_sym_RBRACK, - STATE(8296), 1, + ACTIONS(12423), 1, + sym_identifier, + STATE(8039), 1, sym_comment, - [248507] = 4, + [244544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12412), 1, + ACTIONS(12425), 1, anon_sym_DOT, - STATE(8297), 1, + STATE(8040), 1, sym_comment, - [248520] = 4, + [244557] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12414), 1, - anon_sym_EQ, - STATE(8298), 1, + ACTIONS(12427), 1, + anon_sym_symbol, + STATE(8041), 1, sym_comment, - [248533] = 4, + [244570] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10977), 1, - anon_sym_RBRACK, - STATE(8299), 1, + ACTIONS(12429), 1, + anon_sym_EQ, + STATE(8042), 1, sym_comment, - [248546] = 4, + [244583] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12416), 1, - sym_number, - STATE(8300), 1, + ACTIONS(12431), 1, + anon_sym_EQ, + STATE(8043), 1, sym_comment, - [248559] = 4, + [244596] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12418), 1, + ACTIONS(12433), 1, sym_regex_pattern, - STATE(8301), 1, - sym_comment, - [248572] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12420), 1, - anon_sym_RBRACK, - STATE(8302), 1, + STATE(8044), 1, sym_comment, - [248585] = 4, + [244609] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12422), 1, + ACTIONS(12435), 1, anon_sym_RBRACK, - STATE(8303), 1, + STATE(8045), 1, sym_comment, - [248598] = 4, + [244622] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12424), 1, - anon_sym_RBRACK, - STATE(8304), 1, + ACTIONS(12437), 1, + anon_sym_EQ_GT, + STATE(8046), 1, sym_comment, - [248611] = 4, + [244635] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12426), 1, - anon_sym_RBRACK, - STATE(8305), 1, + ACTIONS(12439), 1, + anon_sym_EQ_GT, + STATE(8047), 1, sym_comment, - [248624] = 4, + [244648] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12428), 1, - anon_sym_class, - STATE(8306), 1, + ACTIONS(6156), 1, + anon_sym_in, + STATE(8048), 1, sym_comment, - [248637] = 4, + [244661] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12430), 1, + ACTIONS(12441), 1, sym_identifier, - STATE(8307), 1, + STATE(8049), 1, sym_comment, - [248650] = 4, - ACTIONS(3), 1, + [244674] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(12443), 1, + anon_sym_EQ_GT, + STATE(8050), 1, + sym_comment, + [244687] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12432), 1, - sym_identifier, - STATE(8308), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12445), 1, + anon_sym_EQ_GT, + STATE(8051), 1, sym_comment, - [248663] = 4, + [244700] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12434), 1, + ACTIONS(12447), 1, sym_identifier, - STATE(8309), 1, + STATE(8052), 1, sym_comment, - [248676] = 4, + [244713] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12436), 1, + ACTIONS(12449), 1, sym_identifier, - STATE(8310), 1, + STATE(8053), 1, sym_comment, - [248689] = 4, + [244726] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12438), 1, - anon_sym_EQ, - STATE(8311), 1, + ACTIONS(12451), 1, + anon_sym_EQ_GT, + STATE(8054), 1, sym_comment, - [248702] = 4, + [244739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12440), 1, - anon_sym_EQ_GT, - STATE(8312), 1, + ACTIONS(12453), 1, + anon_sym_EQ, + STATE(8055), 1, sym_comment, - [248715] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [244752] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12442), 1, - sym_identifier, - STATE(8313), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12455), 1, + anon_sym_EQ_GT, + STATE(8056), 1, sym_comment, - [248728] = 4, + [244765] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12444), 1, - anon_sym_EQ_GT, - STATE(8314), 1, + ACTIONS(10809), 1, + anon_sym_RBRACK, + STATE(8057), 1, sym_comment, - [248741] = 4, + [244778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12446), 1, - anon_sym_EQ_GT, - STATE(8315), 1, + ACTIONS(6912), 1, + anon_sym_in, + STATE(8058), 1, sym_comment, - [248754] = 4, + [244791] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12448), 1, - anon_sym_EQ, - STATE(8316), 1, + ACTIONS(12457), 1, + anon_sym_RBRACK, + STATE(8059), 1, sym_comment, - [248767] = 4, + [244804] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12450), 1, + ACTIONS(12459), 1, anon_sym_EQ_GT, - STATE(8317), 1, + STATE(8060), 1, sym_comment, - [248780] = 4, + [244817] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6952), 1, - anon_sym_in, - STATE(8318), 1, + ACTIONS(12461), 1, + anon_sym_EQ_GT, + STATE(8061), 1, sym_comment, - [248793] = 4, + [244830] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5637), 1, - anon_sym_RPAREN, - STATE(8319), 1, + ACTIONS(5678), 1, + anon_sym_in, + STATE(8062), 1, sym_comment, - [248806] = 4, + [244843] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12452), 1, + ACTIONS(12463), 1, sym_identifier, - STATE(8320), 1, + STATE(8063), 1, sym_comment, - [248819] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [244856] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12454), 1, - sym_identifier, - STATE(8321), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6584), 1, + anon_sym_RBRACK, + STATE(8064), 1, sym_comment, - [248832] = 4, + [244869] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12456), 1, + ACTIONS(12465), 1, sym_identifier, - STATE(8322), 1, + STATE(8065), 1, sym_comment, - [248845] = 4, + [244882] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12458), 1, - anon_sym_EQ_GT, - STATE(8323), 1, + ACTIONS(8193), 1, + anon_sym_is, + STATE(8066), 1, sym_comment, - [248858] = 4, + [244895] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12460), 1, - anon_sym_RPAREN, - STATE(8324), 1, + ACTIONS(12467), 1, + anon_sym_RBRACK, + STATE(8067), 1, sym_comment, - [248871] = 4, + [244908] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11010), 1, - anon_sym_LBRACE, - STATE(8325), 1, + ACTIONS(7764), 1, + anon_sym_is, + STATE(8068), 1, sym_comment, - [248884] = 4, + [244921] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(12469), 1, + sym_identifier, + STATE(8069), 1, + sym_comment, + [244934] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(10156), 1, - anon_sym_EQ_GT, - STATE(8326), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12471), 1, + sym_identifier, + STATE(8070), 1, sym_comment, - [248897] = 4, + [244947] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12462), 1, + ACTIONS(12473), 1, sym_identifier, - STATE(8327), 1, + STATE(8071), 1, sym_comment, - [248910] = 4, + [244960] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10154), 1, - anon_sym_EQ_GT, - STATE(8328), 1, + ACTIONS(11251), 1, + anon_sym_EQ, + STATE(8072), 1, sym_comment, - [248923] = 4, + [244973] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12464), 1, - anon_sym_EQ_GT, - STATE(8329), 1, + ACTIONS(12475), 1, + anon_sym_GT, + STATE(8073), 1, sym_comment, - [248936] = 4, + [244986] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12466), 1, - anon_sym_target, - STATE(8330), 1, + ACTIONS(12477), 1, + anon_sym_EQ_GT, + STATE(8074), 1, sym_comment, - [248949] = 4, + [244999] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12468), 1, - anon_sym_EQ, - STATE(8331), 1, + ACTIONS(12479), 1, + anon_sym_RBRACK, + STATE(8075), 1, sym_comment, - [248962] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [245012] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12470), 1, - sym_identifier, - STATE(8332), 1, - sym_comment, - [248975] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12472), 1, - anon_sym_SLASH2, - STATE(8333), 1, + ACTIONS(12481), 1, + anon_sym_RBRACK, + STATE(8076), 1, sym_comment, - [248988] = 4, + [245025] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12474), 1, - aux_sym_ui_version_specifier_token1, - STATE(8334), 1, + ACTIONS(12483), 1, + anon_sym_RBRACK, + STATE(8077), 1, sym_comment, - [249001] = 4, + [245038] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12476), 1, + ACTIONS(12485), 1, anon_sym_while, - STATE(8335), 1, + STATE(8078), 1, sym_comment, - [249014] = 4, + [245051] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12478), 1, - sym_number, - STATE(8336), 1, + ACTIONS(12487), 1, + anon_sym_RBRACK, + STATE(8079), 1, sym_comment, - [249027] = 4, + [245064] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12480), 1, + ACTIONS(12489), 1, sym_identifier, - STATE(8337), 1, + STATE(8080), 1, sym_comment, - [249040] = 4, + [245077] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11006), 1, - anon_sym_RBRACK, - STATE(8338), 1, + ACTIONS(12491), 1, + anon_sym_RPAREN, + STATE(8081), 1, sym_comment, - [249053] = 4, + [245090] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12482), 1, - anon_sym_EQ_GT, - STATE(8339), 1, + ACTIONS(12493), 1, + sym_identifier, + STATE(8082), 1, sym_comment, - [249066] = 4, + [245103] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12484), 1, - anon_sym_EQ_GT, - STATE(8340), 1, + ACTIONS(12495), 1, + anon_sym_RBRACK, + STATE(8083), 1, sym_comment, - [249079] = 4, + [245116] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8693), 1, - anon_sym_EQ, - STATE(8341), 1, + ACTIONS(6485), 1, + anon_sym_RPAREN, + STATE(8084), 1, sym_comment, - [249092] = 4, + [245129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12486), 1, - anon_sym_EQ_GT, - STATE(8342), 1, + ACTIONS(12497), 1, + anon_sym_RBRACK, + STATE(8085), 1, sym_comment, - [249105] = 4, + [245142] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12488), 1, + ACTIONS(12499), 1, sym_identifier, - STATE(8343), 1, + STATE(8086), 1, sym_comment, - [249118] = 4, + [245155] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12490), 1, - anon_sym_EQ_GT, - STATE(8344), 1, + ACTIONS(12501), 1, + anon_sym_RBRACK, + STATE(8087), 1, sym_comment, - [249131] = 4, + [245168] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12492), 1, + ACTIONS(12503), 1, sym_identifier, - STATE(8345), 1, + STATE(8088), 1, sym_comment, - [249144] = 4, + [245181] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12494), 1, - anon_sym_RPAREN, - STATE(8346), 1, + ACTIONS(6116), 1, + anon_sym_in, + STATE(8089), 1, sym_comment, - [249157] = 4, + [245194] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12496), 1, - anon_sym_new, - STATE(8347), 1, + ACTIONS(12505), 1, + anon_sym_RBRACK, + STATE(8090), 1, sym_comment, - [249170] = 4, + [245207] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12498), 1, - anon_sym_EQ_GT, - STATE(8348), 1, + ACTIONS(12507), 1, + anon_sym_RBRACK, + STATE(8091), 1, sym_comment, - [249183] = 4, + [245220] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6445), 1, - anon_sym_RPAREN, - STATE(8349), 1, + ACTIONS(12509), 1, + anon_sym_RBRACK, + STATE(8092), 1, sym_comment, - [249196] = 4, + [245233] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12500), 1, + ACTIONS(12511), 1, anon_sym_RBRACK, - STATE(8350), 1, + STATE(8093), 1, sym_comment, - [249209] = 4, + [245246] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7192), 1, - anon_sym_in, - STATE(8351), 1, + ACTIONS(12513), 1, + sym_number, + STATE(8094), 1, sym_comment, - [249222] = 4, + [245259] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12502), 1, + ACTIONS(12515), 1, sym_identifier, - STATE(8352), 1, + STATE(8095), 1, sym_comment, - [249235] = 4, + [245272] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8116), 1, - anon_sym_is, - STATE(8353), 1, + ACTIONS(12517), 1, + anon_sym_RBRACK, + STATE(8096), 1, sym_comment, - [249248] = 4, + [245285] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12504), 1, - anon_sym_symbol, - STATE(8354), 1, + ACTIONS(12519), 1, + anon_sym_RBRACK, + STATE(8097), 1, sym_comment, - [249261] = 4, + [245298] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12506), 1, - anon_sym_RBRACK, - STATE(8355), 1, + ACTIONS(12521), 1, + anon_sym_EQ_GT, + STATE(8098), 1, sym_comment, - [249274] = 4, + [245311] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(12523), 1, + sym_regex_pattern, + STATE(8099), 1, + sym_comment, + [245324] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(12508), 1, - anon_sym_RBRACK, - STATE(8356), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12525), 1, + sym_identifier, + STATE(8100), 1, + sym_comment, + [245337] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12527), 1, + sym_identifier, + STATE(8101), 1, sym_comment, - [249287] = 4, + [245350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12510), 1, - anon_sym_RBRACK, - STATE(8357), 1, + ACTIONS(12529), 1, + anon_sym_COLON, + STATE(8102), 1, sym_comment, - [249300] = 4, + [245363] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12512), 1, + ACTIONS(12531), 1, sym_identifier, - STATE(8358), 1, + STATE(8103), 1, sym_comment, - [249313] = 4, + [245376] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12514), 1, - anon_sym_RBRACK, - STATE(8359), 1, + ACTIONS(7186), 1, + anon_sym_in, + STATE(8104), 1, sym_comment, - [249326] = 4, + [245389] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(12533), 1, + sym_identifier, + STATE(8105), 1, + sym_comment, + [245402] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(12516), 1, - anon_sym_RBRACK, - STATE(8360), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12535), 1, + sym_identifier, + STATE(8106), 1, + sym_comment, + [245415] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12537), 1, + sym_identifier, + STATE(8107), 1, sym_comment, - [249339] = 4, + [245428] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12518), 1, + ACTIONS(12539), 1, anon_sym_RBRACK, - STATE(8361), 1, + STATE(8108), 1, sym_comment, - [249352] = 4, + [245441] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12520), 1, - anon_sym_RBRACK, - STATE(8362), 1, + ACTIONS(6634), 1, + anon_sym_RPAREN, + STATE(8109), 1, sym_comment, - [249365] = 4, + [245454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12522), 1, - anon_sym_RBRACK, - STATE(8363), 1, + ACTIONS(12541), 1, + anon_sym_namespace, + STATE(8110), 1, sym_comment, - [249378] = 4, + [245467] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12524), 1, - anon_sym_RBRACK, - STATE(8364), 1, + ACTIONS(12543), 1, + anon_sym_RPAREN, + STATE(8111), 1, sym_comment, - [249391] = 4, + [245480] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6443), 1, + ACTIONS(12545), 1, anon_sym_RBRACK, - STATE(8365), 1, + STATE(8112), 1, sym_comment, - [249404] = 4, + [245493] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6584), 1, - anon_sym_RPAREN, - STATE(8366), 1, + ACTIONS(12547), 1, + anon_sym_RBRACK, + STATE(8113), 1, sym_comment, - [249417] = 4, + [245506] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12526), 1, + ACTIONS(9216), 1, sym_identifier, - STATE(8367), 1, - sym_comment, - [249430] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12528), 1, - anon_sym_RPAREN, - STATE(8368), 1, + STATE(8114), 1, sym_comment, - [249443] = 4, + [245519] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12530), 1, - anon_sym_RPAREN, - STATE(8369), 1, + ACTIONS(12549), 1, + anon_sym_EQ_GT, + STATE(8115), 1, sym_comment, - [249456] = 4, + [245532] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12532), 1, - anon_sym_EQ_GT, - STATE(8370), 1, + ACTIONS(12551), 1, + anon_sym_RBRACK, + STATE(8116), 1, sym_comment, - [249469] = 4, + [245545] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12534), 1, - anon_sym_EQ_GT, - STATE(8371), 1, + ACTIONS(8787), 1, + anon_sym_EQ, + STATE(8117), 1, sym_comment, - [249482] = 4, + [245558] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12536), 1, + ACTIONS(12553), 1, sym_identifier, - STATE(8372), 1, + STATE(8118), 1, sym_comment, - [249495] = 4, + [245571] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12538), 1, + ACTIONS(12555), 1, sym_identifier, - STATE(8373), 1, + STATE(8119), 1, sym_comment, - [249508] = 4, + [245584] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12540), 1, - anon_sym_RBRACK, - STATE(8374), 1, + ACTIONS(12557), 1, + sym_identifier, + STATE(8120), 1, sym_comment, - [249521] = 4, + [245597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12542), 1, - anon_sym_EQ_GT, - STATE(8375), 1, - sym_comment, - [249534] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12544), 1, - sym_identifier, - STATE(8376), 1, + ACTIONS(12559), 1, + anon_sym_DOT, + STATE(8121), 1, sym_comment, - [249547] = 4, + [245610] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12546), 1, - anon_sym_EQ_GT, - STATE(8377), 1, + ACTIONS(12561), 1, + anon_sym_while, + STATE(8122), 1, sym_comment, - [249560] = 4, + [245623] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12548), 1, - anon_sym_DOT, - STATE(8378), 1, + ACTIONS(12563), 1, + anon_sym_function, + STATE(8123), 1, sym_comment, - [249573] = 4, + [245636] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12550), 1, + ACTIONS(12565), 1, sym_identifier, - STATE(8379), 1, + STATE(8124), 1, sym_comment, - [249586] = 4, + [245649] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12552), 1, + ACTIONS(12567), 1, anon_sym_RBRACK, - STATE(8380), 1, + STATE(8125), 1, sym_comment, - [249599] = 4, + [245662] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12554), 1, + ACTIONS(12569), 1, anon_sym_RBRACK, - STATE(8381), 1, + STATE(8126), 1, sym_comment, - [249612] = 4, + [245675] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12556), 1, + ACTIONS(12571), 1, anon_sym_RBRACK, - STATE(8382), 1, + STATE(8127), 1, sym_comment, - [249625] = 4, + [245688] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12558), 1, + ACTIONS(12573), 1, anon_sym_RBRACK, - STATE(8383), 1, + STATE(8128), 1, sym_comment, - [249638] = 4, + [245701] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12560), 1, + ACTIONS(12575), 1, anon_sym_RBRACK, - STATE(8384), 1, + STATE(8129), 1, sym_comment, - [249651] = 4, + [245714] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12562), 1, + ACTIONS(12577), 1, anon_sym_RBRACK, - STATE(8385), 1, + STATE(8130), 1, sym_comment, - [249664] = 4, + [245727] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(11094), 1, + ACTIONS(12579), 1, anon_sym_RBRACK, - STATE(8386), 1, + STATE(8131), 1, sym_comment, - [249677] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [245740] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(12564), 1, - anon_sym_RBRACK, - STATE(8387), 1, - sym_comment, - [249690] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12566), 1, - anon_sym_RBRACK, - STATE(8388), 1, + ACTIONS(12581), 1, + sym_identifier, + STATE(8132), 1, sym_comment, - [249703] = 4, + [245753] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12568), 1, + ACTIONS(12583), 1, sym_identifier, - STATE(8389), 1, + STATE(8133), 1, sym_comment, - [249716] = 4, + [245766] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12570), 1, + ACTIONS(12585), 1, sym_identifier, - STATE(8390), 1, + STATE(8134), 1, sym_comment, - [249729] = 4, + [245779] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12572), 1, - anon_sym_RBRACK, - STATE(8391), 1, + ACTIONS(12587), 1, + sym_identifier, + STATE(8135), 1, sym_comment, - [249742] = 4, + [245792] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12574), 1, - anon_sym_EQ_GT, - STATE(8392), 1, + ACTIONS(12589), 1, + sym_identifier, + STATE(8136), 1, sym_comment, - [249755] = 4, + [245805] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12576), 1, + ACTIONS(12591), 1, anon_sym_RBRACK, - STATE(8393), 1, - sym_comment, - [249768] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12578), 1, - sym_identifier, - STATE(8394), 1, + STATE(8137), 1, sym_comment, - [249781] = 4, + [245818] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12580), 1, + ACTIONS(12593), 1, anon_sym_RBRACK, - STATE(8395), 1, + STATE(8138), 1, sym_comment, - [249794] = 4, + [245831] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12582), 1, + ACTIONS(12595), 1, anon_sym_RBRACK, - STATE(8396), 1, + STATE(8139), 1, sym_comment, - [249807] = 4, + [245844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12584), 1, - anon_sym_while, - STATE(8397), 1, + ACTIONS(12597), 1, + anon_sym_RBRACK, + STATE(8140), 1, sym_comment, - [249820] = 4, + [245857] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12586), 1, + ACTIONS(12599), 1, anon_sym_RBRACK, - STATE(8398), 1, + STATE(8141), 1, sym_comment, - [249833] = 4, + [245870] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12588), 1, + ACTIONS(12601), 1, sym_identifier, - STATE(8399), 1, + STATE(8142), 1, sym_comment, - [249846] = 4, + [245883] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12590), 1, - anon_sym_RBRACK, - STATE(8400), 1, + ACTIONS(12603), 1, + anon_sym_as, + STATE(8143), 1, sym_comment, - [249859] = 4, + [245896] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12592), 1, + ACTIONS(12605), 1, sym_identifier, - STATE(8401), 1, + STATE(8144), 1, sym_comment, - [249872] = 4, + [245909] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5573), 1, - anon_sym_is, - STATE(8402), 1, + ACTIONS(11995), 1, + anon_sym_from, + STATE(8145), 1, sym_comment, - [249885] = 4, + [245922] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12594), 1, - anon_sym_symbol, - STATE(8403), 1, + ACTIONS(12607), 1, + sym_identifier, + STATE(8146), 1, sym_comment, - [249898] = 4, + [245935] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12596), 1, + ACTIONS(12609), 1, sym_identifier, - STATE(8404), 1, + STATE(8147), 1, sym_comment, - [249911] = 4, + [245948] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12598), 1, + ACTIONS(12611), 1, anon_sym_while, - STATE(8405), 1, + STATE(8148), 1, sym_comment, - [249924] = 4, + [245961] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12600), 1, - anon_sym_EQ_GT, - STATE(8406), 1, + ACTIONS(12613), 1, + anon_sym_RBRACK, + STATE(8149), 1, sym_comment, - [249937] = 4, + [245974] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12602), 1, + ACTIONS(12615), 1, sym_identifier, - STATE(8407), 1, + STATE(8150), 1, sym_comment, - [249950] = 4, + [245987] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12604), 1, - anon_sym_RBRACK, - STATE(8408), 1, + ACTIONS(12617), 1, + anon_sym_while, + STATE(8151), 1, sym_comment, - [249963] = 4, + [246000] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12606), 1, + ACTIONS(12619), 1, sym_identifier, - STATE(8409), 1, + STATE(8152), 1, sym_comment, - [249976] = 4, + [246013] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12608), 1, + ACTIONS(12621), 1, sym_identifier, - STATE(8410), 1, + STATE(8153), 1, sym_comment, - [249989] = 4, + [246026] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12610), 1, + ACTIONS(12623), 1, sym_identifier, - STATE(8411), 1, + STATE(8154), 1, + sym_comment, + [246039] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12625), 1, + anon_sym_RBRACK, + STATE(8155), 1, sym_comment, - [250002] = 4, + [246052] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12612), 1, + ACTIONS(12627), 1, sym_identifier, - STATE(8412), 1, + STATE(8156), 1, sym_comment, - [250015] = 4, + [246065] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12614), 1, + ACTIONS(12629), 1, sym_identifier, - STATE(8413), 1, + STATE(8157), 1, sym_comment, - [250028] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [246078] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(12616), 1, - anon_sym_COLON, - STATE(8414), 1, - sym_comment, - [250041] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12618), 1, - anon_sym_EQ_GT, - STATE(8415), 1, + ACTIONS(12631), 1, + sym_identifier, + STATE(8158), 1, sym_comment, - [250054] = 4, + [246091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(3430), 1, - anon_sym_LBRACE, - STATE(8416), 1, + ACTIONS(12633), 1, + anon_sym_RBRACK, + STATE(8159), 1, sym_comment, - [250067] = 4, + [246104] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12620), 1, - anon_sym_EQ_GT, - STATE(8417), 1, - sym_comment, - [250080] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12622), 1, - sym_identifier, - STATE(8418), 1, + ACTIONS(12635), 1, + aux_sym_ui_version_specifier_token1, + STATE(8160), 1, sym_comment, - [250093] = 4, + [246117] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12624), 1, - sym_number, - STATE(8419), 1, + ACTIONS(12637), 1, + anon_sym_RBRACK, + STATE(8161), 1, sym_comment, - [250106] = 4, + [246130] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12626), 1, + ACTIONS(11063), 1, sym_identifier, - STATE(8420), 1, + STATE(8162), 1, sym_comment, - [250119] = 4, + [246143] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12628), 1, + ACTIONS(12639), 1, sym_identifier, - STATE(8421), 1, + STATE(8163), 1, sym_comment, - [250132] = 4, + [246156] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12630), 1, - anon_sym_EQ_GT, - STATE(8422), 1, + ACTIONS(6559), 1, + anon_sym_RPAREN, + STATE(8164), 1, sym_comment, - [250145] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [246169] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12632), 1, - sym_identifier, - STATE(8423), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12641), 1, + anon_sym_RBRACK, + STATE(8165), 1, sym_comment, - [250158] = 4, + [246182] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12634), 1, - anon_sym_RBRACK, - STATE(8424), 1, + ACTIONS(8054), 1, + anon_sym_is, + STATE(8166), 1, sym_comment, - [250171] = 4, + [246195] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, + ACTIONS(12643), 1, + sym_regex_pattern, + STATE(8167), 1, + sym_comment, + [246208] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(12636), 1, - anon_sym_RBRACK, - STATE(8425), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12645), 1, + sym_identifier, + STATE(8168), 1, sym_comment, - [250184] = 4, + [246221] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6556), 1, + ACTIONS(6625), 1, anon_sym_RBRACK, - STATE(8426), 1, + STATE(8169), 1, sym_comment, - [250197] = 4, + [246234] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12638), 1, + ACTIONS(12647), 1, anon_sym_RPAREN, - STATE(8427), 1, + STATE(8170), 1, sym_comment, - [250210] = 4, + [246247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12640), 1, - anon_sym_RBRACK, - STATE(8428), 1, + ACTIONS(12649), 1, + anon_sym_DOT, + STATE(8171), 1, sym_comment, - [250223] = 4, + [246260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12642), 1, - anon_sym_RBRACK, - STATE(8429), 1, + ACTIONS(12651), 1, + anon_sym_LBRACK, + STATE(8172), 1, sym_comment, - [250236] = 4, + [246273] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12644), 1, + ACTIONS(12653), 1, anon_sym_DOT, - STATE(8430), 1, + STATE(8173), 1, sym_comment, - [250249] = 4, + [246286] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12646), 1, + ACTIONS(12655), 1, anon_sym_RBRACK, - STATE(8431), 1, + STATE(8174), 1, sym_comment, - [250262] = 4, + [246299] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12648), 1, - anon_sym_RBRACK, - STATE(8432), 1, + ACTIONS(12657), 1, + anon_sym_from, + STATE(8175), 1, sym_comment, - [250275] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [246312] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12650), 1, - anon_sym_SLASH2, - STATE(8433), 1, - sym_comment, - [250288] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(12659), 1, + anon_sym_class, + STATE(8176), 1, + sym_comment, + [246325] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12652), 1, - sym_identifier, - STATE(8434), 1, - sym_comment, - [250301] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(12661), 1, + anon_sym_RPAREN, + STATE(8177), 1, + sym_comment, + [246338] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12654), 1, - sym_identifier, - STATE(8435), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12663), 1, + anon_sym_RPAREN, + STATE(8178), 1, sym_comment, - [250314] = 4, + [246351] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12656), 1, - anon_sym_DOT, - STATE(8436), 1, + ACTIONS(12665), 1, + anon_sym_EQ_GT, + STATE(8179), 1, sym_comment, - [250327] = 4, + [246364] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12658), 1, - anon_sym_RBRACK, - STATE(8437), 1, + ACTIONS(12667), 1, + anon_sym_EQ_GT, + STATE(8180), 1, sym_comment, - [250340] = 4, + [246377] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12660), 1, + ACTIONS(12669), 1, sym_identifier, - STATE(8438), 1, + STATE(8181), 1, sym_comment, - [250353] = 4, + [246390] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12662), 1, + ACTIONS(12671), 1, sym_identifier, - STATE(8439), 1, + STATE(8182), 1, sym_comment, - [250366] = 4, + [246403] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12664), 1, - anon_sym_RBRACK, - STATE(8440), 1, + ACTIONS(6549), 1, + anon_sym_RPAREN, + STATE(8183), 1, sym_comment, - [250379] = 4, + [246416] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12666), 1, - anon_sym_LT, - STATE(8441), 1, + ACTIONS(12673), 1, + anon_sym_RBRACK, + STATE(8184), 1, sym_comment, - [250392] = 4, + [246429] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12668), 1, - anon_sym_RBRACK, - STATE(8442), 1, + ACTIONS(6547), 1, + anon_sym_RPAREN, + STATE(8185), 1, sym_comment, - [250405] = 4, + [246442] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12670), 1, - anon_sym_RBRACK, - STATE(8443), 1, + ACTIONS(12675), 1, + anon_sym_readonly, + STATE(8186), 1, sym_comment, - [250418] = 4, + [246455] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12672), 1, - anon_sym_EQ_GT, - STATE(8444), 1, + ACTIONS(6876), 1, + anon_sym_in, + STATE(8187), 1, sym_comment, - [250431] = 4, + [246468] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12674), 1, - anon_sym_RBRACK, - STATE(8445), 1, + ACTIONS(6084), 1, + anon_sym_RPAREN, + STATE(8188), 1, sym_comment, - [250444] = 4, + [246481] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12676), 1, - anon_sym_RBRACK, - STATE(8446), 1, + ACTIONS(12677), 1, + anon_sym_EQ_GT, + STATE(8189), 1, sym_comment, - [250457] = 4, + [246494] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12678), 1, + ACTIONS(12679), 1, sym_identifier, - STATE(8447), 1, + STATE(8190), 1, sym_comment, - [250470] = 4, + [246507] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12680), 1, - anon_sym_RBRACK, - STATE(8448), 1, + ACTIONS(12681), 1, + anon_sym_LBRACE, + STATE(8191), 1, sym_comment, - [250483] = 4, + [246520] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12682), 1, - anon_sym_RBRACK, - STATE(8449), 1, + ACTIONS(12683), 1, + anon_sym_EQ, + STATE(8192), 1, sym_comment, - [250496] = 4, + [246533] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12684), 1, - sym_regex_pattern, - STATE(8450), 1, + ACTIONS(12685), 1, + sym_identifier, + STATE(8193), 1, sym_comment, - [250509] = 4, + [246546] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12686), 1, + ACTIONS(12687), 1, anon_sym_RBRACK, - STATE(8451), 1, + STATE(8194), 1, sym_comment, - [250522] = 4, + [246559] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12688), 1, + ACTIONS(12689), 1, sym_identifier, - STATE(8452), 1, + STATE(8195), 1, sym_comment, - [250535] = 4, + [246572] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12690), 1, + ACTIONS(12691), 1, anon_sym_while, - STATE(8453), 1, + STATE(8196), 1, sym_comment, - [250548] = 4, + [246585] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12692), 1, - anon_sym_RBRACK, - STATE(8454), 1, + ACTIONS(12693), 1, + anon_sym_new, + STATE(8197), 1, sym_comment, - [250561] = 4, + [246598] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12694), 1, + ACTIONS(12695), 1, sym_identifier, - STATE(8455), 1, + STATE(8198), 1, sym_comment, - [250574] = 4, + [246611] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6649), 1, - anon_sym_RPAREN, - STATE(8456), 1, + ACTIONS(12697), 1, + sym_identifier, + STATE(8199), 1, sym_comment, - [250587] = 4, + [246624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12696), 1, - anon_sym_DOT, - STATE(8457), 1, + ACTIONS(12699), 1, + anon_sym_EQ_GT, + STATE(8200), 1, sym_comment, - [250600] = 4, + [246637] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12698), 1, + ACTIONS(12701), 1, sym_identifier, - STATE(8458), 1, + STATE(8201), 1, sym_comment, - [250613] = 4, + [246650] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12700), 1, + ACTIONS(12703), 1, anon_sym_RBRACK, - STATE(8459), 1, + STATE(8202), 1, sym_comment, - [250626] = 4, + [246663] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12702), 1, + ACTIONS(12705), 1, sym_identifier, - STATE(8460), 1, + STATE(8203), 1, sym_comment, - [250639] = 4, + [246676] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12704), 1, + ACTIONS(12707), 1, anon_sym_RBRACK, - STATE(8461), 1, + STATE(8204), 1, sym_comment, - [250652] = 4, + [246689] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12706), 1, - anon_sym_RBRACK, - STATE(8462), 1, + ACTIONS(12709), 1, + sym_identifier, + STATE(8205), 1, sym_comment, - [250665] = 4, + [246702] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12708), 1, + ACTIONS(12711), 1, anon_sym_RBRACK, - STATE(8463), 1, + STATE(8206), 1, sym_comment, - [250678] = 4, + [246715] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12710), 1, + ACTIONS(12713), 1, anon_sym_RBRACK, - STATE(8464), 1, + STATE(8207), 1, sym_comment, - [250691] = 4, + [246728] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12712), 1, - anon_sym_from, - STATE(8465), 1, + ACTIONS(12715), 1, + anon_sym_RBRACK, + STATE(8208), 1, sym_comment, - [250704] = 4, + [246741] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12714), 1, + ACTIONS(12717), 1, sym_identifier, - STATE(8466), 1, + STATE(8209), 1, sym_comment, - [250717] = 4, + [246754] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12716), 1, + ACTIONS(12719), 1, sym_identifier, - STATE(8467), 1, + STATE(8210), 1, sym_comment, - [250730] = 4, + [246767] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12718), 1, - anon_sym_require, - STATE(8468), 1, + ACTIONS(12721), 1, + anon_sym_RBRACK, + STATE(8211), 1, sym_comment, - [250743] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [246780] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12720), 1, - sym_identifier, - STATE(8469), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12723), 1, + anon_sym_RBRACK, + STATE(8212), 1, sym_comment, - [250756] = 4, + [246793] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12722), 1, - anon_sym_EQ, - STATE(8470), 1, + ACTIONS(12725), 1, + anon_sym_RBRACK, + STATE(8213), 1, sym_comment, - [250769] = 4, + [246806] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12724), 1, - anon_sym_GT, - STATE(8471), 1, + ACTIONS(12727), 1, + anon_sym_RBRACK, + STATE(8214), 1, sym_comment, - [250782] = 4, + [246819] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12726), 1, + ACTIONS(12729), 1, anon_sym_RBRACK, - STATE(8472), 1, + STATE(8215), 1, sym_comment, - [250795] = 4, + [246832] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12728), 1, + ACTIONS(12731), 1, anon_sym_RPAREN, - STATE(8473), 1, + STATE(8216), 1, sym_comment, - [250808] = 4, + [246845] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12730), 1, + ACTIONS(12733), 1, sym_identifier, - STATE(8474), 1, + STATE(8217), 1, sym_comment, - [250821] = 4, + [246858] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12732), 1, - anon_sym_RBRACK, - STATE(8475), 1, + ACTIONS(12735), 1, + anon_sym_EQ_GT, + STATE(8218), 1, sym_comment, - [250834] = 4, + [246871] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12734), 1, + ACTIONS(12737), 1, anon_sym_DOT, - STATE(8476), 1, + STATE(8219), 1, sym_comment, - [250847] = 4, + [246884] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12736), 1, - anon_sym_COLON, - STATE(8477), 1, + ACTIONS(12739), 1, + anon_sym_EQ_GT, + STATE(8220), 1, sym_comment, - [250860] = 4, + [246897] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12738), 1, - anon_sym_from, - STATE(8478), 1, + ACTIONS(12741), 1, + anon_sym_EQ_GT, + STATE(8221), 1, sym_comment, - [250873] = 4, + [246910] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12740), 1, + ACTIONS(12743), 1, anon_sym_EQ, - STATE(8479), 1, + STATE(8222), 1, sym_comment, - [250886] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [246923] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12742), 1, - sym_identifier, - STATE(8480), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6527), 1, + anon_sym_in, + STATE(8223), 1, sym_comment, - [250899] = 4, + [246936] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12744), 1, + ACTIONS(12745), 1, sym_identifier, - STATE(8481), 1, + STATE(8224), 1, sym_comment, - [250912] = 4, + [246949] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12746), 1, + ACTIONS(12747), 1, sym_identifier, - STATE(8482), 1, + STATE(8225), 1, sym_comment, - [250925] = 4, + [246962] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12748), 1, - anon_sym_RBRACK, - STATE(8483), 1, - sym_comment, - [250938] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12750), 1, - sym_identifier, - STATE(8484), 1, + ACTIONS(12749), 1, + anon_sym_symbol, + STATE(8226), 1, sym_comment, - [250951] = 4, + [246975] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12752), 1, - anon_sym_as, - STATE(8485), 1, + ACTIONS(12751), 1, + anon_sym_EQ_GT, + STATE(8227), 1, sym_comment, - [250964] = 4, + [246988] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5987), 1, - anon_sym_RPAREN, - STATE(8486), 1, + ACTIONS(12753), 1, + anon_sym_EQ_GT, + STATE(8228), 1, sym_comment, - [250977] = 4, + [247001] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12754), 1, + ACTIONS(12755), 1, sym_identifier, - STATE(8487), 1, + STATE(8229), 1, sym_comment, - [250990] = 4, + [247014] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12756), 1, + ACTIONS(12757), 1, sym_identifier, - STATE(8488), 1, + STATE(8230), 1, sym_comment, - [251003] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [247027] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12758), 1, - sym_identifier, - STATE(8489), 1, - sym_comment, - [251016] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12760), 1, - sym_identifier, - STATE(8490), 1, + ACTIONS(12759), 1, + anon_sym_target, + STATE(8231), 1, sym_comment, - [251029] = 4, + [247040] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12762), 1, + ACTIONS(12761), 1, sym_identifier, - STATE(8491), 1, + STATE(8232), 1, sym_comment, - [251042] = 4, + [247053] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12764), 1, - anon_sym_from, - STATE(8492), 1, + ACTIONS(12763), 1, + anon_sym_EQ_GT, + STATE(8233), 1, sym_comment, - [251055] = 4, + [247066] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12766), 1, + ACTIONS(12765), 1, sym_identifier, - STATE(8493), 1, + STATE(8234), 1, sym_comment, - [251068] = 4, + [247079] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12768), 1, - anon_sym_namespace, - STATE(8494), 1, + ACTIONS(12767), 1, + anon_sym_EQ_GT, + STATE(8235), 1, sym_comment, - [251081] = 4, + [247092] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12770), 1, + ACTIONS(12769), 1, sym_identifier, - STATE(8495), 1, + STATE(8236), 1, sym_comment, - [251094] = 4, + [247105] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12772), 1, + ACTIONS(12771), 1, sym_identifier, - STATE(8496), 1, + STATE(8237), 1, sym_comment, - [251107] = 4, + [247118] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12774), 1, + ACTIONS(12773), 1, sym_identifier, - STATE(8497), 1, + STATE(8238), 1, sym_comment, - [251120] = 4, + [247131] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12776), 1, + ACTIONS(12775), 1, sym_identifier, - STATE(8498), 1, + STATE(8239), 1, sym_comment, - [251133] = 4, + [247144] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8835), 1, + ACTIONS(12777), 1, sym_identifier, - STATE(8499), 1, + STATE(8240), 1, sym_comment, - [251146] = 4, + [247157] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12778), 1, + ACTIONS(12779), 1, sym_identifier, - STATE(8500), 1, + STATE(8241), 1, sym_comment, - [251159] = 4, + [247170] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12780), 1, - anon_sym_LPAREN, - STATE(8501), 1, + ACTIONS(12781), 1, + anon_sym_COLON, + STATE(8242), 1, + sym_comment, + [247183] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12783), 1, + anon_sym_EQ_GT, + STATE(8243), 1, + sym_comment, + [247196] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12785), 1, + sym_number, + STATE(8244), 1, sym_comment, - [251172] = 4, + [247209] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12782), 1, + ACTIONS(12787), 1, sym_identifier, - STATE(8502), 1, + STATE(8245), 1, sym_comment, - [251185] = 4, + [247222] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12784), 1, - anon_sym_function, - STATE(8503), 1, + ACTIONS(12789), 1, + anon_sym_EQ_GT, + STATE(8246), 1, + sym_comment, + [247235] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12791), 1, + anon_sym_COLON, + STATE(8247), 1, + sym_comment, + [247248] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6610), 1, + anon_sym_is, + STATE(8248), 1, sym_comment, - [251198] = 4, + [247261] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12786), 1, + ACTIONS(11174), 1, anon_sym_RBRACK, - STATE(8504), 1, + STATE(8249), 1, sym_comment, - [251211] = 4, + [247274] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12788), 1, + ACTIONS(12793), 1, sym_identifier, - STATE(8505), 1, + STATE(8250), 1, sym_comment, - [251224] = 4, + [247287] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12790), 1, + ACTIONS(12795), 1, sym_identifier, - STATE(8506), 1, + STATE(8251), 1, sym_comment, - [251237] = 4, + [247300] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12792), 1, + ACTIONS(12797), 1, anon_sym_RBRACK, - STATE(8507), 1, + STATE(8252), 1, sym_comment, - [251250] = 4, + [247313] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12794), 1, + ACTIONS(12799), 1, sym_identifier, - STATE(8508), 1, + STATE(8253), 1, sym_comment, - [251263] = 4, + [247326] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12796), 1, - anon_sym_from, - STATE(8509), 1, + ACTIONS(3466), 1, + anon_sym_LBRACE, + STATE(8254), 1, sym_comment, - [251276] = 4, + [247339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12798), 1, - anon_sym_EQ_GT, - STATE(8510), 1, + ACTIONS(12801), 1, + anon_sym_LT, + STATE(8255), 1, sym_comment, - [251289] = 4, + [247352] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12800), 1, + ACTIONS(12803), 1, anon_sym_EQ_GT, - STATE(8511), 1, + STATE(8256), 1, sym_comment, - [251302] = 4, + [247365] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12802), 1, - anon_sym_RBRACK, - STATE(8512), 1, + ACTIONS(12805), 1, + sym_identifier, + STATE(8257), 1, sym_comment, - [251315] = 4, + [247378] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12804), 1, + ACTIONS(12807), 1, sym_identifier, - STATE(8513), 1, + STATE(8258), 1, sym_comment, - [251328] = 4, + [247391] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12806), 1, + ACTIONS(12809), 1, sym_identifier, - STATE(8514), 1, + STATE(8259), 1, sym_comment, - [251341] = 4, + [247404] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(7024), 1, - anon_sym_in, - STATE(8515), 1, + ACTIONS(12811), 1, + anon_sym_EQ_GT, + STATE(8260), 1, sym_comment, - [251354] = 4, + [247417] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12808), 1, + ACTIONS(12813), 1, sym_identifier, - STATE(8516), 1, + STATE(8261), 1, sym_comment, - [251367] = 4, + [247430] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6635), 1, - anon_sym_RPAREN, - STATE(8517), 1, + ACTIONS(12815), 1, + anon_sym_SLASH2, + STATE(8262), 1, sym_comment, - [251380] = 4, + [247443] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12810), 1, - anon_sym_RBRACK, - STATE(8518), 1, + ACTIONS(5600), 1, + anon_sym_is, + STATE(8263), 1, sym_comment, - [251393] = 4, + [247456] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6637), 1, - anon_sym_RPAREN, - STATE(8519), 1, + ACTIONS(6715), 1, + anon_sym_in, + STATE(8264), 1, sym_comment, - [251406] = 4, + [247469] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12812), 1, - anon_sym_RBRACK, - STATE(8520), 1, + ACTIONS(12817), 1, + anon_sym_EQ, + STATE(8265), 1, sym_comment, - [251419] = 4, + [247482] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(6717), 1, - anon_sym_in, - STATE(8521), 1, + ACTIONS(12819), 1, + anon_sym_SLASH2, + STATE(8266), 1, sym_comment, - [251432] = 4, + [247495] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12814), 1, + ACTIONS(12821), 1, anon_sym_EQ_GT, - STATE(8522), 1, + STATE(8267), 1, sym_comment, - [251445] = 4, + [247508] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6647), 1, - anon_sym_RPAREN, - STATE(8523), 1, + ACTIONS(12823), 1, + anon_sym_EQ, + STATE(8268), 1, sym_comment, - [251458] = 4, + [247521] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12816), 1, - anon_sym_EQ_GT, - STATE(8524), 1, + ACTIONS(12825), 1, + anon_sym_EQ, + STATE(8269), 1, sym_comment, - [251471] = 4, + [247534] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12818), 1, + ACTIONS(12827), 1, sym_identifier, - STATE(8525), 1, + STATE(8270), 1, sym_comment, - [251484] = 4, + [247547] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12820), 1, - anon_sym_EQ, - STATE(8526), 1, - sym_comment, - [251497] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12822), 1, - sym_identifier, - STATE(8527), 1, + ACTIONS(12829), 1, + sym_number, + STATE(8271), 1, sym_comment, - [251510] = 4, + [247560] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10583), 1, - anon_sym_RBRACK, - STATE(8528), 1, - sym_comment, - [251523] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(12824), 1, - sym_identifier, - STATE(8529), 1, + ACTIONS(12831), 1, + anon_sym_RPAREN, + STATE(8272), 1, sym_comment, - [251536] = 4, + [247573] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12826), 1, + ACTIONS(12833), 1, anon_sym_RBRACK, - STATE(8530), 1, + STATE(8273), 1, sym_comment, - [251549] = 4, + [247586] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12828), 1, + ACTIONS(12835), 1, anon_sym_class, - STATE(8531), 1, + STATE(8274), 1, sym_comment, - [251562] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [247599] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12830), 1, - anon_sym_SLASH2, - STATE(8532), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12837), 1, + anon_sym_RPAREN, + STATE(8275), 1, sym_comment, - [251575] = 4, + [247612] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12832), 1, + ACTIONS(12839), 1, anon_sym_EQ_GT, - STATE(8533), 1, + STATE(8276), 1, sym_comment, - [251588] = 4, + [247625] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12834), 1, + ACTIONS(12841), 1, anon_sym_EQ_GT, - STATE(8534), 1, + STATE(8277), 1, sym_comment, - [251601] = 4, + [247638] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12836), 1, + ACTIONS(12843), 1, anon_sym_EQ_GT, - STATE(8535), 1, + STATE(8278), 1, sym_comment, - [251614] = 4, + [247651] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12838), 1, - anon_sym_RBRACK, - STATE(8536), 1, + ACTIONS(12845), 1, + sym_identifier, + STATE(8279), 1, sym_comment, - [251627] = 4, + [247664] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12840), 1, + ACTIONS(12847), 1, anon_sym_EQ_GT, - STATE(8537), 1, + STATE(8280), 1, sym_comment, - [251640] = 4, + [247677] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12842), 1, - anon_sym_RBRACK, - STATE(8538), 1, + ACTIONS(12849), 1, + sym_identifier, + STATE(8281), 1, sym_comment, - [251653] = 4, + [247690] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12844), 1, - anon_sym_from, - STATE(8539), 1, + ACTIONS(12851), 1, + anon_sym_EQ_GT, + STATE(8282), 1, sym_comment, - [251666] = 4, + [247703] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12846), 1, - anon_sym_RBRACK, - STATE(8540), 1, + ACTIONS(12853), 1, + sym_identifier, + STATE(8283), 1, sym_comment, - [251679] = 4, + [247716] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12848), 1, - anon_sym_RPAREN, - STATE(8541), 1, + ACTIONS(12855), 1, + sym_identifier, + STATE(8284), 1, sym_comment, - [251692] = 4, + [247729] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12850), 1, + ACTIONS(12857), 1, sym_identifier, - STATE(8542), 1, + STATE(8285), 1, sym_comment, - [251705] = 4, + [247742] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12852), 1, + ACTIONS(12859), 1, anon_sym_EQ, - STATE(8543), 1, + STATE(8286), 1, sym_comment, - [251718] = 4, + [247755] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12854), 1, + ACTIONS(12861), 1, anon_sym_new, - STATE(8544), 1, + STATE(8287), 1, sym_comment, - [251731] = 4, + [247768] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12856), 1, + ACTIONS(12863), 1, anon_sym_namespace, - STATE(8545), 1, + STATE(8288), 1, sym_comment, - [251744] = 4, + [247781] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6667), 1, + ACTIONS(5700), 1, anon_sym_RPAREN, - STATE(8546), 1, + STATE(8289), 1, sym_comment, - [251757] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [247794] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12858), 1, - sym_identifier, - STATE(8547), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12865), 1, + anon_sym_RBRACK, + STATE(8290), 1, sym_comment, - [251770] = 4, + [247807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12860), 1, - anon_sym_RPAREN, - STATE(8548), 1, + ACTIONS(12867), 1, + anon_sym_RBRACK, + STATE(8291), 1, sym_comment, - [251783] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [247820] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12862), 1, - sym_identifier, - STATE(8549), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12869), 1, + anon_sym_RBRACK, + STATE(8292), 1, sym_comment, - [251796] = 4, + [247833] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12864), 1, - anon_sym_EQ, - STATE(8550), 1, + ACTIONS(12871), 1, + anon_sym_RBRACK, + STATE(8293), 1, sym_comment, - [251809] = 4, + [247846] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12866), 1, - anon_sym_from, - STATE(8551), 1, + ACTIONS(12873), 1, + anon_sym_symbol, + STATE(8294), 1, sym_comment, - [251822] = 4, + [247859] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12868), 1, - anon_sym_RBRACK, - STATE(8552), 1, + ACTIONS(12875), 1, + anon_sym_EQ_GT, + STATE(8295), 1, sym_comment, - [251835] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [247872] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12870), 1, - sym_identifier, - STATE(8553), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12877), 1, + anon_sym_EQ, + STATE(8296), 1, sym_comment, - [251848] = 4, + [247885] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12872), 1, - anon_sym_new, - STATE(8554), 1, + ACTIONS(12879), 1, + anon_sym_EQ_GT, + STATE(8297), 1, sym_comment, - [251861] = 4, + [247898] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11104), 1, + ACTIONS(11073), 1, sym_identifier, - STATE(8555), 1, + STATE(8298), 1, sym_comment, - [251874] = 4, + [247911] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12874), 1, + ACTIONS(12881), 1, anon_sym_class, - STATE(8556), 1, + STATE(8299), 1, sym_comment, - [251887] = 4, + [247924] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5767), 1, + ACTIONS(12883), 1, anon_sym_RPAREN, - STATE(8557), 1, + STATE(8300), 1, sym_comment, - [251900] = 4, + [247937] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12876), 1, - anon_sym_EQ_GT, - STATE(8558), 1, + ACTIONS(12885), 1, + sym_identifier, + STATE(8301), 1, sym_comment, - [251913] = 4, + [247950] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12878), 1, - anon_sym_RPAREN, - STATE(8559), 1, + ACTIONS(12887), 1, + anon_sym_EQ_GT, + STATE(8302), 1, sym_comment, - [251926] = 4, + [247963] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12880), 1, + ACTIONS(12889), 1, anon_sym_EQ, - STATE(8560), 1, + STATE(8303), 1, sym_comment, - [251939] = 4, + [247976] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12882), 1, + ACTIONS(12891), 1, sym_identifier, - STATE(8561), 1, + STATE(8304), 1, sym_comment, - [251952] = 4, + [247989] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12884), 1, + ACTIONS(12893), 1, anon_sym_EQ, - STATE(8562), 1, + STATE(8305), 1, sym_comment, - [251965] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [248002] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12886), 1, - sym_identifier, - STATE(8563), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12895), 1, + anon_sym_RBRACK, + STATE(8306), 1, sym_comment, - [251978] = 4, + [248015] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12888), 1, - anon_sym_COLON, - STATE(8564), 1, + ACTIONS(12897), 1, + anon_sym_RBRACK, + STATE(8307), 1, + sym_comment, + [248028] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(12899), 1, + sym_identifier, + STATE(8308), 1, sym_comment, - [251991] = 4, + [248041] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12890), 1, - anon_sym_EQ_GT, - STATE(8565), 1, + ACTIONS(12901), 1, + anon_sym_RBRACK, + STATE(8309), 1, sym_comment, - [252004] = 4, + [248054] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12892), 1, - anon_sym_EQ_GT, - STATE(8566), 1, + ACTIONS(5716), 1, + anon_sym_RPAREN, + STATE(8310), 1, sym_comment, - [252017] = 4, + [248067] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5985), 1, - anon_sym_RPAREN, - STATE(8567), 1, + ACTIONS(12903), 1, + anon_sym_from, + STATE(8311), 1, sym_comment, - [252030] = 4, + [248080] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12894), 1, + ACTIONS(12905), 1, sym_identifier, - STATE(8568), 1, + STATE(8312), 1, sym_comment, - [252043] = 4, + [248093] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(11756), 1, - anon_sym_from, - STATE(8569), 1, + ACTIONS(12907), 1, + sym_identifier, + STATE(8313), 1, sym_comment, - [252056] = 4, + [248106] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12896), 1, - anon_sym_EQ_GT, - STATE(8570), 1, + ACTIONS(12909), 1, + anon_sym_COLON, + STATE(8314), 1, sym_comment, - [252069] = 4, + [248119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12898), 1, - anon_sym_COLON, - STATE(8571), 1, + ACTIONS(12911), 1, + anon_sym_RBRACK, + STATE(8315), 1, sym_comment, - [252082] = 4, + [248132] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12900), 1, + ACTIONS(12913), 1, anon_sym_EQ_GT, - STATE(8572), 1, + STATE(8316), 1, sym_comment, - [252095] = 4, + [248145] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12902), 1, - anon_sym_EQ, - STATE(8573), 1, + ACTIONS(12915), 1, + anon_sym_EQ_GT, + STATE(8317), 1, sym_comment, - [252108] = 4, + [248158] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12904), 1, + ACTIONS(12917), 1, sym_identifier, - STATE(8574), 1, + STATE(8318), 1, sym_comment, - [252121] = 4, + [248171] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12906), 1, - anon_sym_as, - STATE(8575), 1, + ACTIONS(6588), 1, + anon_sym_RBRACE, + STATE(8319), 1, sym_comment, - [252134] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, + [248184] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(6659), 1, - anon_sym_RBRACK, - STATE(8576), 1, - sym_comment, - [252147] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12908), 1, - anon_sym_from, - STATE(8577), 1, + ACTIONS(12919), 1, + sym_identifier, + STATE(8320), 1, sym_comment, - [252160] = 4, + [248197] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12910), 1, + ACTIONS(12921), 1, anon_sym_RPAREN, - STATE(8578), 1, + STATE(8321), 1, sym_comment, - [252173] = 4, + [248210] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12912), 1, + ACTIONS(12923), 1, sym_identifier, - STATE(8579), 1, - sym_comment, - [252186] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(10560), 1, - anon_sym_RBRACE, - STATE(8580), 1, + STATE(8322), 1, sym_comment, - [252199] = 4, + [248223] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12914), 1, + ACTIONS(12925), 1, sym_identifier, - STATE(8581), 1, + STATE(8323), 1, sym_comment, - [252212] = 4, + [248236] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12916), 1, - anon_sym_while, - STATE(8582), 1, + ACTIONS(12927), 1, + anon_sym_RBRACK, + STATE(8324), 1, sym_comment, - [252225] = 4, - ACTIONS(3), 1, + [248249] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(5822), 1, + anon_sym_RPAREN, + STATE(8325), 1, + sym_comment, + [248262] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12918), 1, - sym_identifier, - STATE(8583), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(6669), 1, + anon_sym_RBRACK, + STATE(8326), 1, sym_comment, - [252238] = 4, + [248275] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12920), 1, + ACTIONS(12929), 1, sym_identifier, - STATE(8584), 1, + STATE(8327), 1, sym_comment, - [252251] = 4, + [248288] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12922), 1, + ACTIONS(12931), 1, sym_identifier, - STATE(8585), 1, + STATE(8328), 1, sym_comment, - [252264] = 4, + [248301] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5983), 1, - anon_sym_RPAREN, - STATE(8586), 1, + ACTIONS(12933), 1, + anon_sym_RBRACK, + STATE(8329), 1, sym_comment, - [252277] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [248314] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12924), 1, - sym_identifier, - STATE(8587), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12935), 1, + anon_sym_require, + STATE(8330), 1, sym_comment, - [252290] = 4, + [248327] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12926), 1, + ACTIONS(12937), 1, anon_sym_class, - STATE(8588), 1, + STATE(8331), 1, sym_comment, - [252303] = 4, + [248340] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12928), 1, + ACTIONS(12939), 1, anon_sym_new, - STATE(8589), 1, + STATE(8332), 1, sym_comment, - [252316] = 4, + [248353] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12930), 1, + ACTIONS(12941), 1, anon_sym_namespace, - STATE(8590), 1, + STATE(8333), 1, sym_comment, - [252329] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [248366] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12932), 1, - sym_identifier, - STATE(8591), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12943), 1, + anon_sym_RBRACK, + STATE(8334), 1, sym_comment, - [252342] = 4, + [248379] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(8045), 1, - anon_sym_is, - STATE(8592), 1, + ACTIONS(12945), 1, + anon_sym_RBRACK, + STATE(8335), 1, sym_comment, - [252355] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [248392] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12934), 1, - sym_identifier, - STATE(8593), 1, - sym_comment, - [252368] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(12947), 1, + anon_sym_RBRACK, + STATE(8336), 1, + sym_comment, + [248405] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12936), 1, - sym_identifier, - STATE(8594), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12949), 1, + anon_sym_RBRACK, + STATE(8337), 1, sym_comment, - [252381] = 4, + [248418] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12938), 1, - anon_sym_RPAREN, - STATE(8595), 1, + ACTIONS(12951), 1, + anon_sym_RBRACK, + STATE(8338), 1, sym_comment, - [252394] = 4, + [248431] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12940), 1, - anon_sym_EQ, - STATE(8596), 1, + ACTIONS(12953), 1, + anon_sym_RPAREN, + STATE(8339), 1, sym_comment, - [252407] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [248444] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12942), 1, - sym_identifier, - STATE(8597), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12955), 1, + anon_sym_RBRACK, + STATE(8340), 1, sym_comment, - [252420] = 4, + [248457] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10892), 1, + ACTIONS(10897), 1, sym_identifier, - STATE(8598), 1, + STATE(8341), 1, sym_comment, - [252433] = 4, + [248470] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12944), 1, + ACTIONS(12957), 1, anon_sym_class, - STATE(8599), 1, + STATE(8342), 1, sym_comment, - [252446] = 4, + [248483] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12946), 1, - ts_builtin_sym_end, - STATE(8600), 1, + ACTIONS(12959), 1, + anon_sym_RBRACK, + STATE(8343), 1, sym_comment, - [252459] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [248496] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12948), 1, - sym_identifier, - STATE(8601), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12961), 1, + anon_sym_RBRACK, + STATE(8344), 1, sym_comment, - [252472] = 4, + [248509] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12950), 1, + ACTIONS(12963), 1, anon_sym_EQ, - STATE(8602), 1, + STATE(8345), 1, sym_comment, - [252485] = 4, + [248522] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5981), 1, - anon_sym_RPAREN, - STATE(8603), 1, + ACTIONS(12965), 1, + sym_identifier, + STATE(8346), 1, sym_comment, - [252498] = 4, + [248535] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12952), 1, + ACTIONS(12967), 1, anon_sym_EQ, - STATE(8604), 1, + STATE(8347), 1, sym_comment, - [252511] = 4, + [248548] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12954), 1, - ts_builtin_sym_end, - STATE(8605), 1, + ACTIONS(12969), 1, + sym_identifier, + STATE(8348), 1, sym_comment, - [252524] = 4, + [248561] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12956), 1, - anon_sym_EQ_GT, - STATE(8606), 1, + ACTIONS(5950), 1, + anon_sym_RPAREN, + STATE(8349), 1, sym_comment, - [252537] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [248574] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12958), 1, - sym_identifier, - STATE(8607), 1, - sym_comment, - [252550] = 4, - ACTIONS(3), 1, + ACTIONS(2987), 1, aux_sym_comment_token1, + ACTIONS(12971), 1, + anon_sym_RBRACK, + STATE(8350), 1, + sym_comment, + [248587] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12960), 1, - sym_identifier, - STATE(8608), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12973), 1, + anon_sym_RBRACK, + STATE(8351), 1, sym_comment, - [252563] = 4, + [248600] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12962), 1, + ACTIONS(12975), 1, anon_sym_COLON, - STATE(8609), 1, + STATE(8352), 1, sym_comment, - [252576] = 4, + [248613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12964), 1, - anon_sym_LBRACE, - STATE(8610), 1, + ACTIONS(12977), 1, + anon_sym_RBRACK, + STATE(8353), 1, sym_comment, - [252589] = 4, + [248626] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12966), 1, + ACTIONS(12979), 1, sym_identifier, - STATE(8611), 1, + STATE(8354), 1, sym_comment, - [252602] = 4, + [248639] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12968), 1, + ACTIONS(12981), 1, sym_identifier, - STATE(8612), 1, + STATE(8355), 1, sym_comment, - [252615] = 4, + [248652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12970), 1, - anon_sym_EQ_GT, - STATE(8613), 1, + ACTIONS(12983), 1, + ts_builtin_sym_end, + STATE(8356), 1, sym_comment, - [252628] = 4, + [248665] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6665), 1, - anon_sym_COLON, - STATE(8614), 1, + ACTIONS(12985), 1, + anon_sym_RBRACK, + STATE(8357), 1, sym_comment, - [252641] = 4, + [248678] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12972), 1, + ACTIONS(12987), 1, anon_sym_class, - STATE(8615), 1, + STATE(8358), 1, sym_comment, - [252654] = 4, + [248691] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12974), 1, + ACTIONS(12989), 1, anon_sym_new, - STATE(8616), 1, + STATE(8359), 1, sym_comment, - [252667] = 4, + [248704] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12976), 1, + ACTIONS(12991), 1, anon_sym_namespace, - STATE(8617), 1, + STATE(8360), 1, sym_comment, - [252680] = 4, + [248717] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(9466), 1, - anon_sym_EQ, - STATE(8618), 1, + ACTIONS(12993), 1, + anon_sym_EQ_GT, + STATE(8361), 1, sym_comment, - [252693] = 4, + [248730] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12978), 1, - anon_sym_symbol, - STATE(8619), 1, + ACTIONS(12995), 1, + anon_sym_RPAREN, + STATE(8362), 1, sym_comment, - [252706] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [248743] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12980), 1, - sym_identifier, - STATE(8620), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(12997), 1, + anon_sym_EQ_GT, + STATE(8363), 1, sym_comment, - [252719] = 4, + [248756] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12982), 1, + ACTIONS(12999), 1, anon_sym_RBRACK, - STATE(8621), 1, + STATE(8364), 1, sym_comment, - [252732] = 4, + [248769] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12984), 1, - sym_number, - STATE(8622), 1, + ACTIONS(13001), 1, + anon_sym_as, + STATE(8365), 1, sym_comment, - [252745] = 4, + [248782] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12986), 1, - anon_sym_RBRACK, - STATE(8623), 1, + ACTIONS(13003), 1, + anon_sym_EQ_GT, + STATE(8366), 1, sym_comment, - [252758] = 4, + [248795] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10785), 1, + ACTIONS(10773), 1, sym_identifier, - STATE(8624), 1, + STATE(8367), 1, sym_comment, - [252771] = 4, + [248808] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12988), 1, + ACTIONS(13005), 1, anon_sym_class, - STATE(8625), 1, + STATE(8368), 1, sym_comment, - [252784] = 4, + [248821] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(12990), 1, + ACTIONS(13007), 1, sym_identifier, - STATE(8626), 1, + STATE(8369), 1, sym_comment, - [252797] = 4, + [248834] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12992), 1, - anon_sym_EQ_GT, - STATE(8627), 1, + ACTIONS(13009), 1, + ts_builtin_sym_end, + STATE(8370), 1, sym_comment, - [252810] = 4, + [248847] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12994), 1, + ACTIONS(13011), 1, anon_sym_EQ, - STATE(8628), 1, + STATE(8371), 1, sym_comment, - [252823] = 4, + [248860] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5665), 1, - anon_sym_in, - STATE(8629), 1, + ACTIONS(13013), 1, + sym_identifier, + STATE(8372), 1, sym_comment, - [252836] = 4, + [248873] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(12996), 1, + ACTIONS(13015), 1, anon_sym_EQ, - STATE(8630), 1, + STATE(8373), 1, sym_comment, - [252849] = 4, + [248886] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(12998), 1, - anon_sym_RBRACK, - STATE(8631), 1, + ACTIONS(13017), 1, + sym_identifier, + STATE(8374), 1, sym_comment, - [252862] = 4, + [248899] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13000), 1, - anon_sym_RBRACK, - STATE(8632), 1, + ACTIONS(13019), 1, + anon_sym_from, + STATE(8375), 1, sym_comment, - [252875] = 4, + [248912] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13002), 1, + ACTIONS(13021), 1, anon_sym_EQ, - STATE(8633), 1, + STATE(8376), 1, sym_comment, - [252888] = 4, + [248925] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13004), 1, - anon_sym_RBRACK, - STATE(8634), 1, + ACTIONS(13023), 1, + anon_sym_from, + STATE(8377), 1, sym_comment, - [252901] = 4, + [248938] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13006), 1, + ACTIONS(13025), 1, anon_sym_COLON, - STATE(8635), 1, + STATE(8378), 1, sym_comment, - [252914] = 4, + [248951] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13008), 1, + ACTIONS(13027), 1, sym_identifier, - STATE(8636), 1, + STATE(8379), 1, sym_comment, - [252927] = 4, + [248964] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13010), 1, + ACTIONS(13029), 1, sym_identifier, - STATE(8637), 1, + STATE(8380), 1, sym_comment, - [252940] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [248977] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13012), 1, - sym_identifier, - STATE(8638), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13031), 1, + anon_sym_EQ_GT, + STATE(8381), 1, sym_comment, - [252953] = 4, + [248990] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13014), 1, + ACTIONS(10532), 1, anon_sym_RBRACK, - STATE(8639), 1, + STATE(8382), 1, sym_comment, - [252966] = 4, + [249003] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13016), 1, + ACTIONS(13033), 1, anon_sym_class, - STATE(8640), 1, + STATE(8383), 1, sym_comment, - [252979] = 4, + [249016] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13018), 1, + ACTIONS(13035), 1, anon_sym_new, - STATE(8641), 1, + STATE(8384), 1, sym_comment, - [252992] = 4, + [249029] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13020), 1, + ACTIONS(13037), 1, anon_sym_namespace, - STATE(8642), 1, + STATE(8385), 1, sym_comment, - [253005] = 4, + [249042] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13022), 1, + ACTIONS(13039), 1, anon_sym_RBRACK, - STATE(8643), 1, + STATE(8386), 1, sym_comment, - [253018] = 4, + [249055] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13024), 1, - anon_sym_EQ_GT, - STATE(8644), 1, + ACTIONS(13041), 1, + anon_sym_LPAREN, + STATE(8387), 1, sym_comment, - [253031] = 4, + [249068] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13026), 1, - anon_sym_EQ, - STATE(8645), 1, + ACTIONS(5738), 1, + anon_sym_RPAREN, + STATE(8388), 1, sym_comment, - [253044] = 4, + [249081] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13028), 1, - anon_sym_RBRACK, - STATE(8646), 1, + ACTIONS(13043), 1, + anon_sym_RPAREN, + STATE(8389), 1, sym_comment, - [253057] = 4, + [249094] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13030), 1, - anon_sym_EQ_GT, - STATE(8647), 1, + ACTIONS(13045), 1, + sym_identifier, + STATE(8390), 1, sym_comment, - [253070] = 4, + [249107] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13032), 1, - anon_sym_as, - STATE(8648), 1, + ACTIONS(13047), 1, + anon_sym_RPAREN, + STATE(8391), 1, sym_comment, - [253083] = 4, + [249120] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10676), 1, + ACTIONS(10682), 1, sym_identifier, - STATE(8649), 1, + STATE(8392), 1, sym_comment, - [253096] = 4, + [249133] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13034), 1, + ACTIONS(13049), 1, anon_sym_class, - STATE(8650), 1, + STATE(8393), 1, sym_comment, - [253109] = 4, + [249146] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13036), 1, - anon_sym_EQ_GT, - STATE(8651), 1, + ACTIONS(13051), 1, + anon_sym_RBRACK, + STATE(8394), 1, sym_comment, - [253122] = 4, + [249159] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13038), 1, - anon_sym_RBRACK, - STATE(8652), 1, + ACTIONS(13053), 1, + sym_identifier, + STATE(8395), 1, sym_comment, - [253135] = 4, + [249172] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13040), 1, + ACTIONS(13055), 1, anon_sym_EQ, - STATE(8653), 1, + STATE(8396), 1, sym_comment, - [253148] = 4, + [249185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13042), 1, - anon_sym_RBRACK, - STATE(8654), 1, + ACTIONS(13057), 1, + anon_sym_EQ_GT, + STATE(8397), 1, sym_comment, - [253161] = 4, + [249198] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13044), 1, + ACTIONS(13059), 1, anon_sym_EQ, - STATE(8655), 1, + STATE(8398), 1, sym_comment, - [253174] = 4, + [249211] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11201), 1, + ACTIONS(13061), 1, sym_identifier, - STATE(8656), 1, + STATE(8399), 1, sym_comment, - [253187] = 4, + [249224] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13046), 1, - anon_sym_EQ_GT, - STATE(8657), 1, + ACTIONS(6603), 1, + anon_sym_RPAREN, + STATE(8400), 1, sym_comment, - [253200] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [249237] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13048), 1, - sym_identifier, - STATE(8658), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13063), 1, + anon_sym_EQ_GT, + STATE(8401), 1, sym_comment, - [253213] = 4, + [249250] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13050), 1, + ACTIONS(13065), 1, anon_sym_RBRACK, - STATE(8659), 1, + STATE(8402), 1, sym_comment, - [253226] = 4, + [249263] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13052), 1, + ACTIONS(13067), 1, anon_sym_COLON, - STATE(8660), 1, + STATE(8403), 1, sym_comment, - [253239] = 4, + [249276] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13054), 1, + ACTIONS(13069), 1, sym_identifier, - STATE(8661), 1, + STATE(8404), 1, sym_comment, - [253252] = 4, + [249289] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13056), 1, + ACTIONS(13071), 1, sym_identifier, - STATE(8662), 1, + STATE(8405), 1, sym_comment, - [253265] = 4, + [249302] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13058), 1, - anon_sym_RBRACK, - STATE(8663), 1, + ACTIONS(13073), 1, + anon_sym_from, + STATE(8406), 1, sym_comment, - [253278] = 4, + [249315] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5979), 1, - anon_sym_RPAREN, - STATE(8664), 1, + ACTIONS(13075), 1, + anon_sym_RBRACK, + STATE(8407), 1, sym_comment, - [253291] = 4, + [249328] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13060), 1, + ACTIONS(13077), 1, anon_sym_class, - STATE(8665), 1, + STATE(8408), 1, sym_comment, - [253304] = 4, + [249341] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13062), 1, + ACTIONS(13079), 1, anon_sym_namespace, - STATE(8666), 1, + STATE(8409), 1, sym_comment, - [253317] = 4, + [249354] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13064), 1, - anon_sym_EQ_GT, - STATE(8667), 1, + ACTIONS(11303), 1, + anon_sym_RBRACE, + STATE(8410), 1, sym_comment, - [253330] = 4, + [249367] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13066), 1, - anon_sym_RBRACK, - STATE(8668), 1, + ACTIONS(13081), 1, + anon_sym_from, + STATE(8411), 1, sym_comment, - [253343] = 4, + [249380] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(10513), 1, - anon_sym_RBRACE, - STATE(8669), 1, + ACTIONS(5790), 1, + anon_sym_RPAREN, + STATE(8412), 1, sym_comment, - [253356] = 4, + [249393] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13068), 1, - anon_sym_RPAREN, - STATE(8670), 1, + ACTIONS(11359), 1, + anon_sym_RBRACK, + STATE(8413), 1, sym_comment, - [253369] = 4, + [249406] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6651), 1, - anon_sym_RPAREN, - STATE(8671), 1, + ACTIONS(13083), 1, + anon_sym_EQ_GT, + STATE(8414), 1, sym_comment, - [253382] = 4, + [249419] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13070), 1, - anon_sym_RBRACK, - STATE(8672), 1, + ACTIONS(13085), 1, + anon_sym_as, + STATE(8415), 1, sym_comment, - [253395] = 4, + [249432] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10727), 1, + ACTIONS(10713), 1, sym_identifier, - STATE(8673), 1, + STATE(8416), 1, sym_comment, - [253408] = 4, + [249445] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13072), 1, + ACTIONS(13087), 1, anon_sym_class, - STATE(8674), 1, + STATE(8417), 1, sym_comment, - [253421] = 4, + [249458] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13074), 1, - anon_sym_RBRACK, - STATE(8675), 1, + ACTIONS(13089), 1, + sym_identifier, + STATE(8418), 1, sym_comment, - [253434] = 4, + [249471] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13076), 1, + ACTIONS(13091), 1, sym_identifier, - STATE(8676), 1, + STATE(8419), 1, sym_comment, - [253447] = 4, + [249484] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13078), 1, + ACTIONS(13093), 1, anon_sym_EQ, - STATE(8677), 1, - sym_comment, - [253460] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(13080), 1, - sym_identifier, - STATE(8678), 1, + STATE(8420), 1, sym_comment, - [253473] = 4, + [249497] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13082), 1, + ACTIONS(13095), 1, anon_sym_EQ, - STATE(8679), 1, + STATE(8421), 1, sym_comment, - [253486] = 4, + [249510] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13084), 1, - anon_sym_RBRACK, - STATE(8680), 1, + ACTIONS(13097), 1, + anon_sym_EQ, + STATE(8422), 1, sym_comment, - [253499] = 4, + [249523] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13086), 1, + ACTIONS(13099), 1, sym_identifier, - STATE(8681), 1, + STATE(8423), 1, sym_comment, - [253512] = 4, + [249536] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13088), 1, - anon_sym_COLON, - STATE(8682), 1, + ACTIONS(13101), 1, + anon_sym_EQ_GT, + STATE(8424), 1, sym_comment, - [253525] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [249549] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13090), 1, - sym_identifier, - STATE(8683), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13103), 1, + anon_sym_COLON, + STATE(8425), 1, sym_comment, - [253538] = 4, + [249562] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13092), 1, + ACTIONS(13105), 1, sym_identifier, - STATE(8684), 1, + STATE(8426), 1, sym_comment, - [253551] = 4, + [249575] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13094), 1, + ACTIONS(13107), 1, sym_identifier, - STATE(8685), 1, + STATE(8427), 1, sym_comment, - [253564] = 4, + [249588] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(5977), 1, + ACTIONS(13109), 1, anon_sym_RPAREN, - STATE(8686), 1, + STATE(8428), 1, + sym_comment, + [249601] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13111), 1, + anon_sym_RBRACK, + STATE(8429), 1, sym_comment, - [253577] = 4, + [249614] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13096), 1, + ACTIONS(13113), 1, anon_sym_class, - STATE(8687), 1, + STATE(8430), 1, sym_comment, - [253590] = 4, + [249627] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13098), 1, + ACTIONS(13115), 1, anon_sym_namespace, - STATE(8688), 1, + STATE(8431), 1, sym_comment, - [253603] = 4, + [249640] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13100), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(8689), 1, + STATE(8432), 1, sym_comment, - [253616] = 4, + [249653] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13102), 1, + ACTIONS(13119), 1, anon_sym_RBRACK, - STATE(8690), 1, + STATE(8433), 1, sym_comment, - [253629] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [249666] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13104), 1, - sym_identifier, - STATE(8691), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13121), 1, + anon_sym_COLON, + STATE(8434), 1, sym_comment, - [253642] = 4, + [249679] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13106), 1, + ACTIONS(13123), 1, anon_sym_RBRACK, - STATE(8692), 1, + STATE(8435), 1, sym_comment, - [253655] = 4, + [249692] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13108), 1, - anon_sym_RBRACK, - STATE(8693), 1, + ACTIONS(13125), 1, + anon_sym_EQ_GT, + STATE(8436), 1, sym_comment, - [253668] = 4, + [249705] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13110), 1, - anon_sym_RBRACK, - STATE(8694), 1, + ACTIONS(13127), 1, + anon_sym_symbol, + STATE(8437), 1, sym_comment, - [253681] = 4, + [249718] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10650), 1, + ACTIONS(10660), 1, sym_identifier, - STATE(8695), 1, + STATE(8438), 1, sym_comment, - [253694] = 4, + [249731] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13112), 1, + ACTIONS(13129), 1, anon_sym_class, - STATE(8696), 1, + STATE(8439), 1, sym_comment, - [253707] = 4, + [249744] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13114), 1, + ACTIONS(13131), 1, anon_sym_EQ, - STATE(8697), 1, + STATE(8440), 1, sym_comment, - [253720] = 4, + [249757] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13116), 1, + ACTIONS(13133), 1, anon_sym_RBRACK, - STATE(8698), 1, + STATE(8441), 1, sym_comment, - [253733] = 4, + [249770] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13118), 1, + ACTIONS(13135), 1, anon_sym_EQ, - STATE(8699), 1, + STATE(8442), 1, sym_comment, - [253746] = 4, + [249783] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13120), 1, - anon_sym_RBRACK, - STATE(8700), 1, + ACTIONS(13137), 1, + sym_identifier, + STATE(8443), 1, sym_comment, - [253759] = 4, + [249796] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13122), 1, - anon_sym_RBRACK, - STATE(8701), 1, + ACTIONS(13139), 1, + sym_number, + STATE(8444), 1, sym_comment, - [253772] = 4, + [249809] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13124), 1, + ACTIONS(13141), 1, anon_sym_COLON, - STATE(8702), 1, + STATE(8445), 1, sym_comment, - [253785] = 4, + [249822] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13126), 1, + ACTIONS(13143), 1, sym_identifier, - STATE(8703), 1, + STATE(8446), 1, sym_comment, - [253798] = 4, + [249835] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13128), 1, + ACTIONS(13145), 1, sym_identifier, - STATE(8704), 1, + STATE(8447), 1, sym_comment, - [253811] = 4, + [249848] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13130), 1, + ACTIONS(13147), 1, anon_sym_RBRACK, - STATE(8705), 1, + STATE(8448), 1, sym_comment, - [253824] = 4, + [249861] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13132), 1, + ACTIONS(13149), 1, anon_sym_class, - STATE(8706), 1, + STATE(8449), 1, sym_comment, - [253837] = 4, + [249874] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13134), 1, + ACTIONS(13151), 1, anon_sym_namespace, - STATE(8707), 1, + STATE(8450), 1, sym_comment, - [253850] = 4, + [249887] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13136), 1, - anon_sym_RPAREN, - STATE(8708), 1, + ACTIONS(13153), 1, + sym_identifier, + STATE(8451), 1, sym_comment, - [253863] = 4, + [249900] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13138), 1, - anon_sym_RBRACK, - STATE(8709), 1, + ACTIONS(13155), 1, + anon_sym_SLASH2, + STATE(8452), 1, sym_comment, - [253876] = 4, + [249913] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13140), 1, - anon_sym_RBRACK, - STATE(8710), 1, + ACTIONS(13157), 1, + anon_sym_EQ, + STATE(8453), 1, sym_comment, - [253889] = 4, + [249926] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13142), 1, - anon_sym_RBRACK, - STATE(8711), 1, + ACTIONS(13159), 1, + sym_identifier, + STATE(8454), 1, sym_comment, - [253902] = 4, + [249939] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13144), 1, + ACTIONS(13161), 1, sym_identifier, - STATE(8712), 1, + STATE(8455), 1, sym_comment, - [253915] = 4, + [249952] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10632), 1, + ACTIONS(10638), 1, sym_identifier, - STATE(8713), 1, + STATE(8456), 1, sym_comment, - [253928] = 4, + [249965] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13146), 1, + ACTIONS(13163), 1, anon_sym_class, - STATE(8714), 1, + STATE(8457), 1, sym_comment, - [253941] = 4, + [249978] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13148), 1, + ACTIONS(13165), 1, anon_sym_EQ, - STATE(8715), 1, + STATE(8458), 1, sym_comment, - [253954] = 4, + [249991] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13150), 1, + ACTIONS(6636), 1, anon_sym_RBRACK, - STATE(8716), 1, + STATE(8459), 1, sym_comment, - [253967] = 4, + [250004] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13152), 1, + ACTIONS(13167), 1, anon_sym_EQ, - STATE(8717), 1, + STATE(8460), 1, sym_comment, - [253980] = 4, + [250017] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13154), 1, - anon_sym_LBRACK, - STATE(8718), 1, + ACTIONS(13169), 1, + anon_sym_EQ_GT, + STATE(8461), 1, sym_comment, - [253993] = 4, + [250030] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13156), 1, + ACTIONS(13171), 1, anon_sym_COLON, - STATE(8719), 1, + STATE(8462), 1, sym_comment, - [254006] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [250043] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13158), 1, - sym_identifier, - STATE(8720), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13173), 1, + anon_sym_EQ_GT, + STATE(8463), 1, sym_comment, - [254019] = 4, + [250056] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13160), 1, - ts_builtin_sym_end, - STATE(8721), 1, + ACTIONS(13175), 1, + anon_sym_EQ_GT, + STATE(8464), 1, sym_comment, - [254032] = 4, + [250069] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8861), 1, + ACTIONS(8890), 1, sym_identifier, - STATE(8722), 1, + STATE(8465), 1, sym_comment, - [254045] = 4, + [250082] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13162), 1, + ACTIONS(13177), 1, anon_sym_function, - STATE(8723), 1, + STATE(8466), 1, sym_comment, - [254058] = 4, + [250095] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13164), 1, - anon_sym_class, - STATE(8724), 1, + ACTIONS(13179), 1, + sym_identifier, + STATE(8467), 1, sym_comment, - [254071] = 4, + [250108] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13166), 1, - anon_sym_EQ, - STATE(8725), 1, + ACTIONS(13181), 1, + ts_builtin_sym_end, + STATE(8468), 1, sym_comment, - [254084] = 4, + [250121] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13168), 1, - anon_sym_EQ_GT, - STATE(8726), 1, + ACTIONS(13183), 1, + anon_sym_RBRACK, + STATE(8469), 1, sym_comment, - [254097] = 4, + [250134] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13170), 1, + ACTIONS(13185), 1, sym_identifier, - STATE(8727), 1, + STATE(8470), 1, sym_comment, - [254110] = 4, + [250147] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(6522), 1, - anon_sym_in, - STATE(8728), 1, + ACTIONS(5650), 1, + anon_sym_RPAREN, + STATE(8471), 1, sym_comment, - [254123] = 4, + [250160] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13172), 1, - ts_builtin_sym_end, - STATE(8729), 1, + ACTIONS(13187), 1, + sym_identifier, + STATE(8472), 1, sym_comment, - [254136] = 4, + [250173] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8859), 1, + ACTIONS(8876), 1, sym_identifier, - STATE(8730), 1, + STATE(8473), 1, sym_comment, - [254149] = 4, + [250186] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13174), 1, + ACTIONS(13189), 1, anon_sym_function, - STATE(8731), 1, + STATE(8474), 1, sym_comment, - [254162] = 4, + [250199] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13176), 1, - anon_sym_RBRACK, - STATE(8732), 1, + ACTIONS(13191), 1, + ts_builtin_sym_end, + STATE(8475), 1, sym_comment, - [254175] = 4, + [250212] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13178), 1, - ts_builtin_sym_end, - STATE(8733), 1, + ACTIONS(11443), 1, + anon_sym_RBRACE, + STATE(8476), 1, sym_comment, - [254188] = 4, + [250225] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13180), 1, - anon_sym_RBRACK, - STATE(8734), 1, + ACTIONS(6671), 1, + anon_sym_COLON, + STATE(8477), 1, sym_comment, - [254201] = 4, + [250238] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13182), 1, + ACTIONS(13193), 1, sym_identifier, - STATE(8735), 1, + STATE(8478), 1, sym_comment, - [254214] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [250251] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13184), 1, - sym_identifier, - STATE(8736), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13195), 1, + ts_builtin_sym_end, + STATE(8479), 1, sym_comment, - [254227] = 4, + [250264] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13186), 1, - anon_sym_RBRACK, - STATE(8737), 1, + ACTIONS(13197), 1, + sym_identifier, + STATE(8480), 1, sym_comment, - [254240] = 4, + [250277] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8855), 1, + ACTIONS(8860), 1, sym_identifier, - STATE(8738), 1, + STATE(8481), 1, sym_comment, - [254253] = 4, + [250290] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13188), 1, + ACTIONS(13199), 1, anon_sym_function, - STATE(8739), 1, + STATE(8482), 1, sym_comment, - [254266] = 4, + [250303] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13190), 1, - anon_sym_readonly, - STATE(8740), 1, + ACTIONS(13201), 1, + anon_sym_RBRACK, + STATE(8483), 1, sym_comment, - [254279] = 4, + [250316] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13192), 1, - anon_sym_RPAREN, - STATE(8741), 1, + ACTIONS(13203), 1, + anon_sym_RBRACK, + STATE(8484), 1, sym_comment, - [254292] = 4, + [250329] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13194), 1, + ACTIONS(5804), 1, anon_sym_RPAREN, - STATE(8742), 1, + STATE(8485), 1, sym_comment, - [254305] = 4, + [250342] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13196), 1, + ACTIONS(13205), 1, sym_identifier, - STATE(8743), 1, + STATE(8486), 1, sym_comment, - [254318] = 4, + [250355] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8849), 1, + ACTIONS(8858), 1, sym_identifier, - STATE(8744), 1, + STATE(8487), 1, sym_comment, - [254331] = 4, + [250368] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13198), 1, + ACTIONS(13207), 1, anon_sym_function, - STATE(8745), 1, + STATE(8488), 1, sym_comment, - [254344] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [250381] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13200), 1, - sym_identifier, - STATE(8746), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13209), 1, + anon_sym_EQ, + STATE(8489), 1, sym_comment, - [254357] = 4, + [250394] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(13202), 1, - anon_sym_RBRACK, - STATE(8747), 1, + ACTIONS(13211), 1, + sym_identifier, + STATE(8490), 1, sym_comment, - [254370] = 4, + [250407] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13204), 1, + ACTIONS(13213), 1, sym_identifier, - STATE(8748), 1, + STATE(8491), 1, sym_comment, - [254383] = 4, + [250420] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13206), 1, + ACTIONS(13215), 1, sym_identifier, - STATE(8749), 1, + STATE(8492), 1, sym_comment, - [254396] = 4, + [250433] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8843), 1, + ACTIONS(8856), 1, sym_identifier, - STATE(8750), 1, + STATE(8493), 1, sym_comment, - [254409] = 4, + [250446] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13208), 1, + ACTIONS(13217), 1, anon_sym_function, - STATE(8751), 1, + STATE(8494), 1, sym_comment, - [254422] = 4, + [250459] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2987), 1, - aux_sym_comment_token1, - ACTIONS(5883), 1, - anon_sym_RPAREN, - STATE(8752), 1, + ACTIONS(13219), 1, + sym_identifier, + STATE(8495), 1, sym_comment, - [254435] = 4, + [250472] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13210), 1, + ACTIONS(13221), 1, sym_identifier, - STATE(8753), 1, + STATE(8496), 1, sym_comment, - [254448] = 4, + [250485] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8841), 1, + ACTIONS(8854), 1, sym_identifier, - STATE(8754), 1, + STATE(8497), 1, sym_comment, - [254461] = 4, + [250498] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13212), 1, + ACTIONS(13223), 1, anon_sym_function, - STATE(8755), 1, + STATE(8498), 1, sym_comment, - [254474] = 4, + [250511] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13214), 1, + ACTIONS(13225), 1, sym_identifier, - STATE(8756), 1, + STATE(8499), 1, sym_comment, - [254487] = 4, + [250524] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13216), 1, + ACTIONS(13227), 1, sym_identifier, - STATE(8757), 1, + STATE(8500), 1, sym_comment, - [254500] = 4, + [250537] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8839), 1, + ACTIONS(8848), 1, sym_identifier, - STATE(8758), 1, + STATE(8501), 1, sym_comment, - [254513] = 4, + [250550] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2987), 1, aux_sym_comment_token1, - ACTIONS(13218), 1, + ACTIONS(13229), 1, anon_sym_function, - STATE(8759), 1, + STATE(8502), 1, sym_comment, - [254526] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [250563] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(13220), 1, - sym_identifier, - STATE(8760), 1, + ACTIONS(2987), 1, + aux_sym_comment_token1, + ACTIONS(13231), 1, + anon_sym_RBRACK, + STATE(8503), 1, sym_comment, - [254539] = 1, - ACTIONS(13222), 1, + [250576] = 1, + ACTIONS(13233), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2218)] = 0, - [SMALL_STATE(2219)] = 93, - [SMALL_STATE(2220)] = 186, - [SMALL_STATE(2221)] = 279, - [SMALL_STATE(2222)] = 372, - [SMALL_STATE(2223)] = 465, - [SMALL_STATE(2224)] = 558, - [SMALL_STATE(2225)] = 651, - [SMALL_STATE(2226)] = 744, - [SMALL_STATE(2227)] = 837, - [SMALL_STATE(2228)] = 930, - [SMALL_STATE(2229)] = 1025, - [SMALL_STATE(2230)] = 1118, - [SMALL_STATE(2231)] = 1211, - [SMALL_STATE(2232)] = 1286, - [SMALL_STATE(2233)] = 1379, - [SMALL_STATE(2234)] = 1474, - [SMALL_STATE(2235)] = 1569, - [SMALL_STATE(2236)] = 1662, - [SMALL_STATE(2237)] = 1755, - [SMALL_STATE(2238)] = 1848, - [SMALL_STATE(2239)] = 1923, - [SMALL_STATE(2240)] = 2018, - [SMALL_STATE(2241)] = 2093, - [SMALL_STATE(2242)] = 2188, - [SMALL_STATE(2243)] = 2263, - [SMALL_STATE(2244)] = 2358, - [SMALL_STATE(2245)] = 2451, - [SMALL_STATE(2246)] = 2546, - [SMALL_STATE(2247)] = 2639, - [SMALL_STATE(2248)] = 2734, - [SMALL_STATE(2249)] = 2829, - [SMALL_STATE(2250)] = 2904, - [SMALL_STATE(2251)] = 3001, - [SMALL_STATE(2252)] = 3096, - [SMALL_STATE(2253)] = 3171, - [SMALL_STATE(2254)] = 3264, - [SMALL_STATE(2255)] = 3339, - [SMALL_STATE(2256)] = 3432, - [SMALL_STATE(2257)] = 3525, - [SMALL_STATE(2258)] = 3622, - [SMALL_STATE(2259)] = 3715, - [SMALL_STATE(2260)] = 3808, - [SMALL_STATE(2261)] = 3901, - [SMALL_STATE(2262)] = 3998, - [SMALL_STATE(2263)] = 4090, - [SMALL_STATE(2264)] = 4220, - [SMALL_STATE(2265)] = 4350, - [SMALL_STATE(2266)] = 4428, - [SMALL_STATE(2267)] = 4524, - [SMALL_STATE(2268)] = 4654, - [SMALL_STATE(2269)] = 4784, - [SMALL_STATE(2270)] = 4914, - [SMALL_STATE(2271)] = 5044, - [SMALL_STATE(2272)] = 5174, - [SMALL_STATE(2273)] = 5266, - [SMALL_STATE(2274)] = 5396, - [SMALL_STATE(2275)] = 5526, - [SMALL_STATE(2276)] = 5656, - [SMALL_STATE(2277)] = 5748, - [SMALL_STATE(2278)] = 5840, - [SMALL_STATE(2279)] = 5970, - [SMALL_STATE(2280)] = 6064, - [SMALL_STATE(2281)] = 6194, - [SMALL_STATE(2282)] = 6324, - [SMALL_STATE(2283)] = 6454, - [SMALL_STATE(2284)] = 6584, - [SMALL_STATE(2285)] = 6714, - [SMALL_STATE(2286)] = 6814, - [SMALL_STATE(2287)] = 6944, - [SMALL_STATE(2288)] = 7074, - [SMALL_STATE(2289)] = 7204, - [SMALL_STATE(2290)] = 7334, - [SMALL_STATE(2291)] = 7464, - [SMALL_STATE(2292)] = 7594, - [SMALL_STATE(2293)] = 7724, - [SMALL_STATE(2294)] = 7854, - [SMALL_STATE(2295)] = 7984, - [SMALL_STATE(2296)] = 8114, - [SMALL_STATE(2297)] = 8206, - [SMALL_STATE(2298)] = 8280, - [SMALL_STATE(2299)] = 8410, - [SMALL_STATE(2300)] = 8540, - [SMALL_STATE(2301)] = 8632, - [SMALL_STATE(2302)] = 8762, - [SMALL_STATE(2303)] = 8892, - [SMALL_STATE(2304)] = 9022, - [SMALL_STATE(2305)] = 9118, - [SMALL_STATE(2306)] = 9214, - [SMALL_STATE(2307)] = 9310, - [SMALL_STATE(2308)] = 9440, - [SMALL_STATE(2309)] = 9570, - [SMALL_STATE(2310)] = 9644, - [SMALL_STATE(2311)] = 9736, - [SMALL_STATE(2312)] = 9831, - [SMALL_STATE(2313)] = 9922, - [SMALL_STATE(2314)] = 10013, - [SMALL_STATE(2315)] = 10086, - [SMALL_STATE(2316)] = 10177, - [SMALL_STATE(2317)] = 10268, - [SMALL_STATE(2318)] = 10351, - [SMALL_STATE(2319)] = 10434, - [SMALL_STATE(2320)] = 10527, - [SMALL_STATE(2321)] = 10618, - [SMALL_STATE(2322)] = 10701, - [SMALL_STATE(2323)] = 10774, - [SMALL_STATE(2324)] = 10869, - [SMALL_STATE(2325)] = 10954, - [SMALL_STATE(2326)] = 11051, - [SMALL_STATE(2327)] = 11142, - [SMALL_STATE(2328)] = 11225, - [SMALL_STATE(2329)] = 11316, - [SMALL_STATE(2330)] = 11407, - [SMALL_STATE(2331)] = 11498, - [SMALL_STATE(2332)] = 11589, - [SMALL_STATE(2333)] = 11686, - [SMALL_STATE(2334)] = 11781, - [SMALL_STATE(2335)] = 11872, - [SMALL_STATE(2336)] = 11963, - [SMALL_STATE(2337)] = 12046, - [SMALL_STATE(2338)] = 12129, - [SMALL_STATE(2339)] = 12214, - [SMALL_STATE(2340)] = 12340, - [SMALL_STATE(2341)] = 12466, - [SMALL_STATE(2342)] = 12560, - [SMALL_STATE(2343)] = 12638, - [SMALL_STATE(2344)] = 12720, - [SMALL_STATE(2345)] = 12846, - [SMALL_STATE(2346)] = 12972, - [SMALL_STATE(2347)] = 13062, - [SMALL_STATE(2348)] = 13146, - [SMALL_STATE(2349)] = 13272, - [SMALL_STATE(2350)] = 13352, - [SMALL_STATE(2351)] = 13442, - [SMALL_STATE(2352)] = 13526, - [SMALL_STATE(2353)] = 13652, - [SMALL_STATE(2354)] = 13734, - [SMALL_STATE(2355)] = 13860, - [SMALL_STATE(2356)] = 13986, - [SMALL_STATE(2357)] = 14112, - [SMALL_STATE(2358)] = 14238, - [SMALL_STATE(2359)] = 14320, - [SMALL_STATE(2360)] = 14402, - [SMALL_STATE(2361)] = 14484, - [SMALL_STATE(2362)] = 14564, - [SMALL_STATE(2363)] = 14648, - [SMALL_STATE(2364)] = 14730, - [SMALL_STATE(2365)] = 14810, - [SMALL_STATE(2366)] = 14904, - [SMALL_STATE(2367)] = 14992, - [SMALL_STATE(2368)] = 15070, - [SMALL_STATE(2369)] = 15154, - [SMALL_STATE(2370)] = 15236, - [SMALL_STATE(2371)] = 15324, - [SMALL_STATE(2372)] = 15402, - [SMALL_STATE(2373)] = 15528, - [SMALL_STATE(2374)] = 15620, - [SMALL_STATE(2375)] = 15704, - [SMALL_STATE(2376)] = 15798, - [SMALL_STATE(2377)] = 15924, - [SMALL_STATE(2378)] = 16018, - [SMALL_STATE(2379)] = 16096, - [SMALL_STATE(2380)] = 16190, - [SMALL_STATE(2381)] = 16274, - [SMALL_STATE(2382)] = 16357, - [SMALL_STATE(2383)] = 16428, - [SMALL_STATE(2384)] = 16507, - [SMALL_STATE(2385)] = 16596, - [SMALL_STATE(2386)] = 16675, - [SMALL_STATE(2387)] = 16752, - [SMALL_STATE(2388)] = 16831, - [SMALL_STATE(2389)] = 16916, - [SMALL_STATE(2390)] = 17005, - [SMALL_STATE(2391)] = 17078, - [SMALL_STATE(2392)] = 17151, - [SMALL_STATE(2393)] = 17244, - [SMALL_STATE(2394)] = 17323, - [SMALL_STATE(2395)] = 17394, - [SMALL_STATE(2396)] = 17465, - [SMALL_STATE(2397)] = 17540, - [SMALL_STATE(2398)] = 17633, - [SMALL_STATE(2399)] = 17704, - [SMALL_STATE(2400)] = 17775, - [SMALL_STATE(2401)] = 17846, - [SMALL_STATE(2402)] = 17927, - [SMALL_STATE(2403)] = 18004, - [SMALL_STATE(2404)] = 18083, - [SMALL_STATE(2405)] = 18162, - [SMALL_STATE(2406)] = 18233, - [SMALL_STATE(2407)] = 18304, - [SMALL_STATE(2408)] = 18381, - [SMALL_STATE(2409)] = 18460, - [SMALL_STATE(2410)] = 18537, - [SMALL_STATE(2411)] = 18614, - [SMALL_STATE(2412)] = 18685, - [SMALL_STATE(2413)] = 18764, - [SMALL_STATE(2414)] = 18853, - [SMALL_STATE(2415)] = 18934, - [SMALL_STATE(2416)] = 19021, - [SMALL_STATE(2417)] = 19100, - [SMALL_STATE(2418)] = 19171, - [SMALL_STATE(2419)] = 19248, - [SMALL_STATE(2420)] = 19331, - [SMALL_STATE(2421)] = 19410, - [SMALL_STATE(2422)] = 19487, - [SMALL_STATE(2423)] = 19566, - [SMALL_STATE(2424)] = 19655, - [SMALL_STATE(2425)] = 19726, - [SMALL_STATE(2426)] = 19805, - [SMALL_STATE(2427)] = 19890, - [SMALL_STATE(2428)] = 19965, - [SMALL_STATE(2429)] = 20044, - [SMALL_STATE(2430)] = 20121, - [SMALL_STATE(2431)] = 20200, - [SMALL_STATE(2432)] = 20285, - [SMALL_STATE(2433)] = 20370, - [SMALL_STATE(2434)] = 20451, - [SMALL_STATE(2435)] = 20575, - [SMALL_STATE(2436)] = 20699, - [SMALL_STATE(2437)] = 20823, - [SMALL_STATE(2438)] = 20941, - [SMALL_STATE(2439)] = 21065, - [SMALL_STATE(2440)] = 21149, - [SMALL_STATE(2441)] = 21273, - [SMALL_STATE(2442)] = 21397, - [SMALL_STATE(2443)] = 21521, - [SMALL_STATE(2444)] = 21645, - [SMALL_STATE(2445)] = 21727, - [SMALL_STATE(2446)] = 21845, - [SMALL_STATE(2447)] = 21923, - [SMALL_STATE(2448)] = 22001, - [SMALL_STATE(2449)] = 22125, - [SMALL_STATE(2450)] = 22249, - [SMALL_STATE(2451)] = 22373, - [SMALL_STATE(2452)] = 22497, - [SMALL_STATE(2453)] = 22619, - [SMALL_STATE(2454)] = 22743, - [SMALL_STATE(2455)] = 22867, - [SMALL_STATE(2456)] = 22941, - [SMALL_STATE(2457)] = 23017, - [SMALL_STATE(2458)] = 23141, - [SMALL_STATE(2459)] = 23265, - [SMALL_STATE(2460)] = 23389, - [SMALL_STATE(2461)] = 23471, - [SMALL_STATE(2462)] = 23595, - [SMALL_STATE(2463)] = 23719, - [SMALL_STATE(2464)] = 23801, - [SMALL_STATE(2465)] = 23925, - [SMALL_STATE(2466)] = 24049, - [SMALL_STATE(2467)] = 24173, - [SMALL_STATE(2468)] = 24291, - [SMALL_STATE(2469)] = 24415, - [SMALL_STATE(2470)] = 24491, - [SMALL_STATE(2471)] = 24615, - [SMALL_STATE(2472)] = 24693, - [SMALL_STATE(2473)] = 24817, - [SMALL_STATE(2474)] = 24941, - [SMALL_STATE(2475)] = 25065, - [SMALL_STATE(2476)] = 25189, - [SMALL_STATE(2477)] = 25277, - [SMALL_STATE(2478)] = 25355, - [SMALL_STATE(2479)] = 25473, - [SMALL_STATE(2480)] = 25555, - [SMALL_STATE(2481)] = 25679, - [SMALL_STATE(2482)] = 25757, - [SMALL_STATE(2483)] = 25881, - [SMALL_STATE(2484)] = 26005, - [SMALL_STATE(2485)] = 26129, - [SMALL_STATE(2486)] = 26253, - [SMALL_STATE(2487)] = 26377, - [SMALL_STATE(2488)] = 26501, - [SMALL_STATE(2489)] = 26625, - [SMALL_STATE(2490)] = 26699, - [SMALL_STATE(2491)] = 26777, - [SMALL_STATE(2492)] = 26895, - [SMALL_STATE(2493)] = 26973, - [SMALL_STATE(2494)] = 27097, - [SMALL_STATE(2495)] = 27221, - [SMALL_STATE(2496)] = 27303, - [SMALL_STATE(2497)] = 27427, - [SMALL_STATE(2498)] = 27505, - [SMALL_STATE(2499)] = 27583, - [SMALL_STATE(2500)] = 27661, - [SMALL_STATE(2501)] = 27739, - [SMALL_STATE(2502)] = 27857, - [SMALL_STATE(2503)] = 27975, - [SMALL_STATE(2504)] = 28051, - [SMALL_STATE(2505)] = 28175, - [SMALL_STATE(2506)] = 28251, - [SMALL_STATE(2507)] = 28375, - [SMALL_STATE(2508)] = 28447, - [SMALL_STATE(2509)] = 28519, - [SMALL_STATE(2510)] = 28643, - [SMALL_STATE(2511)] = 28767, - [SMALL_STATE(2512)] = 28891, - [SMALL_STATE(2513)] = 28972, - [SMALL_STATE(2514)] = 29043, - [SMALL_STATE(2515)] = 29116, - [SMALL_STATE(2516)] = 29191, - [SMALL_STATE(2517)] = 29270, - [SMALL_STATE(2518)] = 29347, - [SMALL_STATE(2519)] = 29426, - [SMALL_STATE(2520)] = 29497, - [SMALL_STATE(2521)] = 29576, - [SMALL_STATE(2522)] = 29651, - [SMALL_STATE(2523)] = 29730, - [SMALL_STATE(2524)] = 29807, - [SMALL_STATE(2525)] = 29882, - [SMALL_STATE(2526)] = 29957, - [SMALL_STATE(2527)] = 30031, - [SMALL_STATE(2528)] = 30105, - [SMALL_STATE(2529)] = 30179, - [SMALL_STATE(2530)] = 30253, - [SMALL_STATE(2531)] = 30331, - [SMALL_STATE(2532)] = 30441, - [SMALL_STATE(2533)] = 30519, - [SMALL_STATE(2534)] = 30593, - [SMALL_STATE(2535)] = 30667, - [SMALL_STATE(2536)] = 30743, - [SMALL_STATE(2537)] = 30815, - [SMALL_STATE(2538)] = 30889, - [SMALL_STATE(2539)] = 30963, - [SMALL_STATE(2540)] = 31037, - [SMALL_STATE(2541)] = 31111, - [SMALL_STATE(2542)] = 31185, - [SMALL_STATE(2543)] = 31259, - [SMALL_STATE(2544)] = 31364, - [SMALL_STATE(2545)] = 31437, - [SMALL_STATE(2546)] = 31510, - [SMALL_STATE(2547)] = 31585, - [SMALL_STATE(2548)] = 31692, - [SMALL_STATE(2549)] = 31799, - [SMALL_STATE(2550)] = 31906, - [SMALL_STATE(2551)] = 31979, - [SMALL_STATE(2552)] = 32052, - [SMALL_STATE(2553)] = 32125, - [SMALL_STATE(2554)] = 32198, - [SMALL_STATE(2555)] = 32271, - [SMALL_STATE(2556)] = 32342, - [SMALL_STATE(2557)] = 32415, - [SMALL_STATE(2558)] = 32488, - [SMALL_STATE(2559)] = 32595, - [SMALL_STATE(2560)] = 32668, - [SMALL_STATE(2561)] = 32775, - [SMALL_STATE(2562)] = 32848, - [SMALL_STATE(2563)] = 32955, - [SMALL_STATE(2564)] = 33026, - [SMALL_STATE(2565)] = 33133, - [SMALL_STATE(2566)] = 33240, - [SMALL_STATE(2567)] = 33313, - [SMALL_STATE(2568)] = 33386, - [SMALL_STATE(2569)] = 33459, - [SMALL_STATE(2570)] = 33530, - [SMALL_STATE(2571)] = 33603, - [SMALL_STATE(2572)] = 33676, - [SMALL_STATE(2573)] = 33749, - [SMALL_STATE(2574)] = 33822, - [SMALL_STATE(2575)] = 33895, - [SMALL_STATE(2576)] = 33968, - [SMALL_STATE(2577)] = 34038, - [SMALL_STATE(2578)] = 34140, - [SMALL_STATE(2579)] = 34210, - [SMALL_STATE(2580)] = 34280, - [SMALL_STATE(2581)] = 34350, - [SMALL_STATE(2582)] = 34420, - [SMALL_STATE(2583)] = 34490, - [SMALL_STATE(2584)] = 34592, - [SMALL_STATE(2585)] = 34694, - [SMALL_STATE(2586)] = 34764, - [SMALL_STATE(2587)] = 34866, - [SMALL_STATE(2588)] = 34936, - [SMALL_STATE(2589)] = 35038, - [SMALL_STATE(2590)] = 35108, - [SMALL_STATE(2591)] = 35210, - [SMALL_STATE(2592)] = 35305, - [SMALL_STATE(2593)] = 35400, - [SMALL_STATE(2594)] = 35495, - [SMALL_STATE(2595)] = 35588, - [SMALL_STATE(2596)] = 35681, - [SMALL_STATE(2597)] = 35776, - [SMALL_STATE(2598)] = 35869, - [SMALL_STATE(2599)] = 35964, - [SMALL_STATE(2600)] = 36059, - [SMALL_STATE(2601)] = 36154, - [SMALL_STATE(2602)] = 36247, - [SMALL_STATE(2603)] = 36340, - [SMALL_STATE(2604)] = 36433, - [SMALL_STATE(2605)] = 36521, - [SMALL_STATE(2606)] = 36609, - [SMALL_STATE(2607)] = 36697, - [SMALL_STATE(2608)] = 36785, - [SMALL_STATE(2609)] = 36909, - [SMALL_STATE(2610)] = 37027, - [SMALL_STATE(2611)] = 37121, - [SMALL_STATE(2612)] = 37213, - [SMALL_STATE(2613)] = 37301, - [SMALL_STATE(2614)] = 37425, - [SMALL_STATE(2615)] = 37549, - [SMALL_STATE(2616)] = 37673, - [SMALL_STATE(2617)] = 37797, - [SMALL_STATE(2618)] = 37921, - [SMALL_STATE(2619)] = 38009, - [SMALL_STATE(2620)] = 38101, - [SMALL_STATE(2621)] = 38188, - [SMALL_STATE(2622)] = 38273, - [SMALL_STATE(2623)] = 38358, - [SMALL_STATE(2624)] = 38445, - [SMALL_STATE(2625)] = 38534, - [SMALL_STATE(2626)] = 38623, - [SMALL_STATE(2627)] = 38720, - [SMALL_STATE(2628)] = 38809, - [SMALL_STATE(2629)] = 38898, - [SMALL_STATE(2630)] = 38995, - [SMALL_STATE(2631)] = 39092, - [SMALL_STATE(2632)] = 39181, - [SMALL_STATE(2633)] = 39278, - [SMALL_STATE(2634)] = 39363, - [SMALL_STATE(2635)] = 39452, - [SMALL_STATE(2636)] = 39537, - [SMALL_STATE(2637)] = 39634, - [SMALL_STATE(2638)] = 39723, - [SMALL_STATE(2639)] = 39820, - [SMALL_STATE(2640)] = 39905, - [SMALL_STATE(2641)] = 39994, - [SMALL_STATE(2642)] = 40081, - [SMALL_STATE(2643)] = 40178, - [SMALL_STATE(2644)] = 40260, - [SMALL_STATE(2645)] = 40340, - [SMALL_STATE(2646)] = 40414, - [SMALL_STATE(2647)] = 40494, - [SMALL_STATE(2648)] = 40574, - [SMALL_STATE(2649)] = 40656, - [SMALL_STATE(2650)] = 40744, - [SMALL_STATE(2651)] = 40832, - [SMALL_STATE(2652)] = 40914, - [SMALL_STATE(2653)] = 40988, - [SMALL_STATE(2654)] = 41070, - [SMALL_STATE(2655)] = 41160, - [SMALL_STATE(2656)] = 41248, - [SMALL_STATE(2657)] = 41338, - [SMALL_STATE(2658)] = 41418, - [SMALL_STATE(2659)] = 41508, - [SMALL_STATE(2660)] = 41588, - [SMALL_STATE(2661)] = 41678, - [SMALL_STATE(2662)] = 41758, - [SMALL_STATE(2663)] = 41874, - [SMALL_STATE(2664)] = 41954, - [SMALL_STATE(2665)] = 42034, - [SMALL_STATE(2666)] = 42116, - [SMALL_STATE(2667)] = 42198, - [SMALL_STATE(2668)] = 42272, - [SMALL_STATE(2669)] = 42346, - [SMALL_STATE(2670)] = 42426, - [SMALL_STATE(2671)] = 42488, - [SMALL_STATE(2672)] = 42568, - [SMALL_STATE(2673)] = 42658, - [SMALL_STATE(2674)] = 42740, - [SMALL_STATE(2675)] = 42822, - [SMALL_STATE(2676)] = 42896, - [SMALL_STATE(2677)] = 42970, - [SMALL_STATE(2678)] = 43084, - [SMALL_STATE(2679)] = 43174, - [SMALL_STATE(2680)] = 43254, - [SMALL_STATE(2681)] = 43336, - [SMALL_STATE(2682)] = 43424, - [SMALL_STATE(2683)] = 43512, - [SMALL_STATE(2684)] = 43594, - [SMALL_STATE(2685)] = 43668, - [SMALL_STATE(2686)] = 43750, - [SMALL_STATE(2687)] = 43834, - [SMALL_STATE(2688)] = 43914, - [SMALL_STATE(2689)] = 43988, - [SMALL_STATE(2690)] = 44076, - [SMALL_STATE(2691)] = 44150, - [SMALL_STATE(2692)] = 44230, - [SMALL_STATE(2693)] = 44320, - [SMALL_STATE(2694)] = 44400, - [SMALL_STATE(2695)] = 44462, - [SMALL_STATE(2696)] = 44542, - [SMALL_STATE(2697)] = 44622, - [SMALL_STATE(2698)] = 44702, - [SMALL_STATE(2699)] = 44782, - [SMALL_STATE(2700)] = 44864, - [SMALL_STATE(2701)] = 44946, - [SMALL_STATE(2702)] = 45020, - [SMALL_STATE(2703)] = 45094, - [SMALL_STATE(2704)] = 45176, - [SMALL_STATE(2705)] = 45258, - [SMALL_STATE(2706)] = 45340, - [SMALL_STATE(2707)] = 45420, - [SMALL_STATE(2708)] = 45494, - [SMALL_STATE(2709)] = 45582, - [SMALL_STATE(2710)] = 45682, - [SMALL_STATE(2711)] = 45762, - [SMALL_STATE(2712)] = 45853, - [SMALL_STATE(2713)] = 45928, - [SMALL_STATE(2714)] = 46003, - [SMALL_STATE(2715)] = 46078, - [SMALL_STATE(2716)] = 46153, - [SMALL_STATE(2717)] = 46228, - [SMALL_STATE(2718)] = 46303, - [SMALL_STATE(2719)] = 46386, - [SMALL_STATE(2720)] = 46461, - [SMALL_STATE(2721)] = 46536, - [SMALL_STATE(2722)] = 46611, - [SMALL_STATE(2723)] = 46686, - [SMALL_STATE(2724)] = 46761, - [SMALL_STATE(2725)] = 46836, - [SMALL_STATE(2726)] = 46911, - [SMALL_STATE(2727)] = 46974, - [SMALL_STATE(2728)] = 47049, - [SMALL_STATE(2729)] = 47124, - [SMALL_STATE(2730)] = 47199, - [SMALL_STATE(2731)] = 47268, - [SMALL_STATE(2732)] = 47339, - [SMALL_STATE(2733)] = 47422, - [SMALL_STATE(2734)] = 47511, - [SMALL_STATE(2735)] = 47586, - [SMALL_STATE(2736)] = 47669, - [SMALL_STATE(2737)] = 47744, - [SMALL_STATE(2738)] = 47815, - [SMALL_STATE(2739)] = 47886, - [SMALL_STATE(2740)] = 47969, - [SMALL_STATE(2741)] = 48052, - [SMALL_STATE(2742)] = 48127, - [SMALL_STATE(2743)] = 48202, - [SMALL_STATE(2744)] = 48277, - [SMALL_STATE(2745)] = 48352, - [SMALL_STATE(2746)] = 48435, - [SMALL_STATE(2747)] = 48510, - [SMALL_STATE(2748)] = 48605, - [SMALL_STATE(2749)] = 48682, - [SMALL_STATE(2750)] = 48765, - [SMALL_STATE(2751)] = 48831, - [SMALL_STATE(2752)] = 48917, - [SMALL_STATE(2753)] = 48979, - [SMALL_STATE(2754)] = 49039, - [SMALL_STATE(2755)] = 49099, - [SMALL_STATE(2756)] = 49161, - [SMALL_STATE(2757)] = 49221, - [SMALL_STATE(2758)] = 49285, - [SMALL_STATE(2759)] = 49369, - [SMALL_STATE(2760)] = 49451, - [SMALL_STATE(2761)] = 49513, - [SMALL_STATE(2762)] = 49593, - [SMALL_STATE(2763)] = 49653, - [SMALL_STATE(2764)] = 49717, - [SMALL_STATE(2765)] = 49793, - [SMALL_STATE(2766)] = 49873, - [SMALL_STATE(2767)] = 49955, - [SMALL_STATE(2768)] = 50035, - [SMALL_STATE(2769)] = 50095, - [SMALL_STATE(2770)] = 50175, - [SMALL_STATE(2771)] = 50241, - [SMALL_STATE(2772)] = 50303, - [SMALL_STATE(2773)] = 50379, - [SMALL_STATE(2774)] = 50439, - [SMALL_STATE(2775)] = 50519, - [SMALL_STATE(2776)] = 50595, - [SMALL_STATE(2777)] = 50659, - [SMALL_STATE(2778)] = 50759, - [SMALL_STATE(2779)] = 50835, - [SMALL_STATE(2780)] = 50915, - [SMALL_STATE(2781)] = 50975, - [SMALL_STATE(2782)] = 51041, - [SMALL_STATE(2783)] = 51107, - [SMALL_STATE(2784)] = 51173, - [SMALL_STATE(2785)] = 51249, - [SMALL_STATE(2786)] = 51315, - [SMALL_STATE(2787)] = 51374, - [SMALL_STATE(2788)] = 51499, - [SMALL_STATE(2789)] = 51568, - [SMALL_STATE(2790)] = 51637, - [SMALL_STATE(2791)] = 51700, - [SMALL_STATE(2792)] = 51825, - [SMALL_STATE(2793)] = 51888, - [SMALL_STATE(2794)] = 51961, - [SMALL_STATE(2795)] = 52020, - [SMALL_STATE(2796)] = 52079, - [SMALL_STATE(2797)] = 52138, - [SMALL_STATE(2798)] = 52197, - [SMALL_STATE(2799)] = 52258, - [SMALL_STATE(2800)] = 52317, - [SMALL_STATE(2801)] = 52376, - [SMALL_STATE(2802)] = 52449, - [SMALL_STATE(2803)] = 52508, - [SMALL_STATE(2804)] = 52569, - [SMALL_STATE(2805)] = 52628, - [SMALL_STATE(2806)] = 52687, - [SMALL_STATE(2807)] = 52746, - [SMALL_STATE(2808)] = 52807, - [SMALL_STATE(2809)] = 52866, - [SMALL_STATE(2810)] = 52925, - [SMALL_STATE(2811)] = 52984, - [SMALL_STATE(2812)] = 53049, - [SMALL_STATE(2813)] = 53114, - [SMALL_STATE(2814)] = 53175, - [SMALL_STATE(2815)] = 53236, - [SMALL_STATE(2816)] = 53361, - [SMALL_STATE(2817)] = 53420, - [SMALL_STATE(2818)] = 53479, - [SMALL_STATE(2819)] = 53538, - [SMALL_STATE(2820)] = 53597, - [SMALL_STATE(2821)] = 53666, - [SMALL_STATE(2822)] = 53735, - [SMALL_STATE(2823)] = 53794, - [SMALL_STATE(2824)] = 53853, - [SMALL_STATE(2825)] = 53912, - [SMALL_STATE(2826)] = 53971, - [SMALL_STATE(2827)] = 54030, - [SMALL_STATE(2828)] = 54089, - [SMALL_STATE(2829)] = 54148, - [SMALL_STATE(2830)] = 54215, - [SMALL_STATE(2831)] = 54282, - [SMALL_STATE(2832)] = 54341, - [SMALL_STATE(2833)] = 54400, - [SMALL_STATE(2834)] = 54459, - [SMALL_STATE(2835)] = 54518, - [SMALL_STATE(2836)] = 54583, - [SMALL_STATE(2837)] = 54642, - [SMALL_STATE(2838)] = 54701, - [SMALL_STATE(2839)] = 54760, - [SMALL_STATE(2840)] = 54819, - [SMALL_STATE(2841)] = 54878, - [SMALL_STATE(2842)] = 54937, - [SMALL_STATE(2843)] = 54998, - [SMALL_STATE(2844)] = 55057, - [SMALL_STATE(2845)] = 55116, - [SMALL_STATE(2846)] = 55175, - [SMALL_STATE(2847)] = 55234, - [SMALL_STATE(2848)] = 55293, - [SMALL_STATE(2849)] = 55352, - [SMALL_STATE(2850)] = 55411, - [SMALL_STATE(2851)] = 55470, - [SMALL_STATE(2852)] = 55529, - [SMALL_STATE(2853)] = 55588, - [SMALL_STATE(2854)] = 55647, - [SMALL_STATE(2855)] = 55706, - [SMALL_STATE(2856)] = 55765, - [SMALL_STATE(2857)] = 55842, - [SMALL_STATE(2858)] = 55901, - [SMALL_STATE(2859)] = 56026, - [SMALL_STATE(2860)] = 56085, - [SMALL_STATE(2861)] = 56144, - [SMALL_STATE(2862)] = 56203, - [SMALL_STATE(2863)] = 56272, - [SMALL_STATE(2864)] = 56341, - [SMALL_STATE(2865)] = 56400, - [SMALL_STATE(2866)] = 56459, - [SMALL_STATE(2867)] = 56524, - [SMALL_STATE(2868)] = 56583, - [SMALL_STATE(2869)] = 56642, - [SMALL_STATE(2870)] = 56701, - [SMALL_STATE(2871)] = 56760, - [SMALL_STATE(2872)] = 56825, - [SMALL_STATE(2873)] = 56890, - [SMALL_STATE(2874)] = 56955, - [SMALL_STATE(2875)] = 57014, - [SMALL_STATE(2876)] = 57073, - [SMALL_STATE(2877)] = 57132, - [SMALL_STATE(2878)] = 57191, - [SMALL_STATE(2879)] = 57250, - [SMALL_STATE(2880)] = 57309, - [SMALL_STATE(2881)] = 57368, - [SMALL_STATE(2882)] = 57427, - [SMALL_STATE(2883)] = 57486, - [SMALL_STATE(2884)] = 57545, - [SMALL_STATE(2885)] = 57604, - [SMALL_STATE(2886)] = 57663, - [SMALL_STATE(2887)] = 57722, - [SMALL_STATE(2888)] = 57781, - [SMALL_STATE(2889)] = 57840, - [SMALL_STATE(2890)] = 57899, - [SMALL_STATE(2891)] = 58024, - [SMALL_STATE(2892)] = 58083, - [SMALL_STATE(2893)] = 58142, - [SMALL_STATE(2894)] = 58201, - [SMALL_STATE(2895)] = 58260, - [SMALL_STATE(2896)] = 58319, - [SMALL_STATE(2897)] = 58378, - [SMALL_STATE(2898)] = 58451, - [SMALL_STATE(2899)] = 58510, - [SMALL_STATE(2900)] = 58569, - [SMALL_STATE(2901)] = 58628, - [SMALL_STATE(2902)] = 58687, - [SMALL_STATE(2903)] = 58756, - [SMALL_STATE(2904)] = 58821, - [SMALL_STATE(2905)] = 58894, - [SMALL_STATE(2906)] = 59019, - [SMALL_STATE(2907)] = 59088, - [SMALL_STATE(2908)] = 59157, - [SMALL_STATE(2909)] = 59226, - [SMALL_STATE(2910)] = 59351, - [SMALL_STATE(2911)] = 59410, - [SMALL_STATE(2912)] = 59483, - [SMALL_STATE(2913)] = 59556, - [SMALL_STATE(2914)] = 59629, - [SMALL_STATE(2915)] = 59688, - [SMALL_STATE(2916)] = 59813, - [SMALL_STATE(2917)] = 59938, - [SMALL_STATE(2918)] = 60011, - [SMALL_STATE(2919)] = 60136, - [SMALL_STATE(2920)] = 60211, - [SMALL_STATE(2921)] = 60288, - [SMALL_STATE(2922)] = 60367, - [SMALL_STATE(2923)] = 60436, - [SMALL_STATE(2924)] = 60505, - [SMALL_STATE(2925)] = 60574, - [SMALL_STATE(2926)] = 60643, - [SMALL_STATE(2927)] = 60716, - [SMALL_STATE(2928)] = 60789, - [SMALL_STATE(2929)] = 60862, - [SMALL_STATE(2930)] = 60923, - [SMALL_STATE(2931)] = 61048, - [SMALL_STATE(2932)] = 61115, - [SMALL_STATE(2933)] = 61176, - [SMALL_STATE(2934)] = 61237, - [SMALL_STATE(2935)] = 61310, - [SMALL_STATE(2936)] = 61375, - [SMALL_STATE(2937)] = 61492, - [SMALL_STATE(2938)] = 61557, - [SMALL_STATE(2939)] = 61618, - [SMALL_STATE(2940)] = 61691, - [SMALL_STATE(2941)] = 61764, - [SMALL_STATE(2942)] = 61825, - [SMALL_STATE(2943)] = 61898, - [SMALL_STATE(2944)] = 61959, - [SMALL_STATE(2945)] = 62076, - [SMALL_STATE(2946)] = 62193, - [SMALL_STATE(2947)] = 62310, - [SMALL_STATE(2948)] = 62427, - [SMALL_STATE(2949)] = 62544, - [SMALL_STATE(2950)] = 62661, - [SMALL_STATE(2951)] = 62726, - [SMALL_STATE(2952)] = 62791, - [SMALL_STATE(2953)] = 62854, - [SMALL_STATE(2954)] = 62971, - [SMALL_STATE(2955)] = 63088, - [SMALL_STATE(2956)] = 63197, - [SMALL_STATE(2957)] = 63292, - [SMALL_STATE(2958)] = 63379, - [SMALL_STATE(2959)] = 63464, - [SMALL_STATE(2960)] = 63567, - [SMALL_STATE(2961)] = 63668, - [SMALL_STATE(2962)] = 63767, - [SMALL_STATE(2963)] = 63854, - [SMALL_STATE(2964)] = 63917, - [SMALL_STATE(2965)] = 64024, - [SMALL_STATE(2966)] = 64129, - [SMALL_STATE(2967)] = 64190, - [SMALL_STATE(2968)] = 64271, - [SMALL_STATE(2969)] = 64362, - [SMALL_STATE(2970)] = 64479, - [SMALL_STATE(2971)] = 64596, - [SMALL_STATE(2972)] = 64669, - [SMALL_STATE(2973)] = 64786, - [SMALL_STATE(2974)] = 64865, - [SMALL_STATE(2975)] = 64950, - [SMALL_STATE(2976)] = 65067, - [SMALL_STATE(2977)] = 65144, - [SMALL_STATE(2978)] = 65261, - [SMALL_STATE(2979)] = 65378, - [SMALL_STATE(2980)] = 65449, - [SMALL_STATE(2981)] = 65569, - [SMALL_STATE(2982)] = 65627, - [SMALL_STATE(2983)] = 65743, - [SMALL_STATE(2984)] = 65823, - [SMALL_STATE(2985)] = 65883, - [SMALL_STATE(2986)] = 65999, - [SMALL_STATE(2987)] = 66083, - [SMALL_STATE(2988)] = 66141, - [SMALL_STATE(2989)] = 66227, - [SMALL_STATE(2990)] = 66285, - [SMALL_STATE(2991)] = 66401, - [SMALL_STATE(2992)] = 66459, - [SMALL_STATE(2993)] = 66519, - [SMALL_STATE(2994)] = 66589, - [SMALL_STATE(2995)] = 66709, - [SMALL_STATE(2996)] = 66811, - [SMALL_STATE(2997)] = 66869, - [SMALL_STATE(2998)] = 66927, - [SMALL_STATE(2999)] = 67043, - [SMALL_STATE(3000)] = 67163, - [SMALL_STATE(3001)] = 67279, - [SMALL_STATE(3002)] = 67347, - [SMALL_STATE(3003)] = 67463, - [SMALL_STATE(3004)] = 67531, - [SMALL_STATE(3005)] = 67599, - [SMALL_STATE(3006)] = 67715, - [SMALL_STATE(3007)] = 67835, - [SMALL_STATE(3008)] = 67893, - [SMALL_STATE(3009)] = 67951, - [SMALL_STATE(3010)] = 68009, - [SMALL_STATE(3011)] = 68129, - [SMALL_STATE(3012)] = 68187, - [SMALL_STATE(3013)] = 68245, - [SMALL_STATE(3014)] = 68303, - [SMALL_STATE(3015)] = 68361, - [SMALL_STATE(3016)] = 68461, - [SMALL_STATE(3017)] = 68519, - [SMALL_STATE(3018)] = 68577, - [SMALL_STATE(3019)] = 68635, - [SMALL_STATE(3020)] = 68693, - [SMALL_STATE(3021)] = 68751, - [SMALL_STATE(3022)] = 68809, - [SMALL_STATE(3023)] = 68867, - [SMALL_STATE(3024)] = 68925, - [SMALL_STATE(3025)] = 69045, - [SMALL_STATE(3026)] = 69165, - [SMALL_STATE(3027)] = 69223, - [SMALL_STATE(3028)] = 69281, - [SMALL_STATE(3029)] = 69345, - [SMALL_STATE(3030)] = 69465, - [SMALL_STATE(3031)] = 69523, - [SMALL_STATE(3032)] = 69643, - [SMALL_STATE(3033)] = 69741, - [SMALL_STATE(3034)] = 69799, - [SMALL_STATE(3035)] = 69915, - [SMALL_STATE(3036)] = 70033, - [SMALL_STATE(3037)] = 70097, - [SMALL_STATE(3038)] = 70191, - [SMALL_STATE(3039)] = 70307, - [SMALL_STATE(3040)] = 70423, - [SMALL_STATE(3041)] = 70543, - [SMALL_STATE(3042)] = 70663, - [SMALL_STATE(3043)] = 70783, - [SMALL_STATE(3044)] = 70855, - [SMALL_STATE(3045)] = 70913, - [SMALL_STATE(3046)] = 71033, - [SMALL_STATE(3047)] = 71149, - [SMALL_STATE(3048)] = 71265, - [SMALL_STATE(3049)] = 71381, - [SMALL_STATE(3050)] = 71439, - [SMALL_STATE(3051)] = 71497, - [SMALL_STATE(3052)] = 71555, - [SMALL_STATE(3053)] = 71613, - [SMALL_STATE(3054)] = 71671, - [SMALL_STATE(3055)] = 71733, - [SMALL_STATE(3056)] = 71811, - [SMALL_STATE(3057)] = 71869, - [SMALL_STATE(3058)] = 71985, - [SMALL_STATE(3059)] = 72043, - [SMALL_STATE(3060)] = 72159, - [SMALL_STATE(3061)] = 72275, - [SMALL_STATE(3062)] = 72359, - [SMALL_STATE(3063)] = 72417, - [SMALL_STATE(3064)] = 72533, - [SMALL_STATE(3065)] = 72649, - [SMALL_STATE(3066)] = 72707, - [SMALL_STATE(3067)] = 72769, - [SMALL_STATE(3068)] = 72889, - [SMALL_STATE(3069)] = 73009, - [SMALL_STATE(3070)] = 73095, - [SMALL_STATE(3071)] = 73201, - [SMALL_STATE(3072)] = 73321, - [SMALL_STATE(3073)] = 73395, - [SMALL_STATE(3074)] = 73453, - [SMALL_STATE(3075)] = 73557, - [SMALL_STATE(3076)] = 73673, - [SMALL_STATE(3077)] = 73789, - [SMALL_STATE(3078)] = 73847, - [SMALL_STATE(3079)] = 73917, - [SMALL_STATE(3080)] = 74033, - [SMALL_STATE(3081)] = 74149, - [SMALL_STATE(3082)] = 74207, - [SMALL_STATE(3083)] = 74269, - [SMALL_STATE(3084)] = 74347, - [SMALL_STATE(3085)] = 74405, - [SMALL_STATE(3086)] = 74463, - [SMALL_STATE(3087)] = 74579, - [SMALL_STATE(3088)] = 74687, - [SMALL_STATE(3089)] = 74803, - [SMALL_STATE(3090)] = 74887, - [SMALL_STATE(3091)] = 74995, - [SMALL_STATE(3092)] = 75111, - [SMALL_STATE(3093)] = 75169, - [SMALL_STATE(3094)] = 75227, - [SMALL_STATE(3095)] = 75291, - [SMALL_STATE(3096)] = 75367, - [SMALL_STATE(3097)] = 75425, - [SMALL_STATE(3098)] = 75545, - [SMALL_STATE(3099)] = 75603, - [SMALL_STATE(3100)] = 75697, - [SMALL_STATE(3101)] = 75755, - [SMALL_STATE(3102)] = 75813, - [SMALL_STATE(3103)] = 75871, - [SMALL_STATE(3104)] = 75929, - [SMALL_STATE(3105)] = 75995, - [SMALL_STATE(3106)] = 76053, - [SMALL_STATE(3107)] = 76111, - [SMALL_STATE(3108)] = 76169, - [SMALL_STATE(3109)] = 76227, - [SMALL_STATE(3110)] = 76285, - [SMALL_STATE(3111)] = 76343, - [SMALL_STATE(3112)] = 76433, - [SMALL_STATE(3113)] = 76491, - [SMALL_STATE(3114)] = 76611, - [SMALL_STATE(3115)] = 76731, - [SMALL_STATE(3116)] = 76849, - [SMALL_STATE(3117)] = 76969, - [SMALL_STATE(3118)] = 77055, - [SMALL_STATE(3119)] = 77139, - [SMALL_STATE(3120)] = 77197, - [SMALL_STATE(3121)] = 77277, - [SMALL_STATE(3122)] = 77397, - [SMALL_STATE(3123)] = 77513, - [SMALL_STATE(3124)] = 77571, - [SMALL_STATE(3125)] = 77629, - [SMALL_STATE(3126)] = 77687, - [SMALL_STATE(3127)] = 77745, - [SMALL_STATE(3128)] = 77803, - [SMALL_STATE(3129)] = 77923, - [SMALL_STATE(3130)] = 78039, - [SMALL_STATE(3131)] = 78099, - [SMALL_STATE(3132)] = 78159, - [SMALL_STATE(3133)] = 78219, - [SMALL_STATE(3134)] = 78309, - [SMALL_STATE(3135)] = 78367, - [SMALL_STATE(3136)] = 78487, - [SMALL_STATE(3137)] = 78573, - [SMALL_STATE(3138)] = 78631, - [SMALL_STATE(3139)] = 78733, - [SMALL_STATE(3140)] = 78849, - [SMALL_STATE(3141)] = 78949, - [SMALL_STATE(3142)] = 79069, - [SMALL_STATE(3143)] = 79175, - [SMALL_STATE(3144)] = 79295, - [SMALL_STATE(3145)] = 79399, - [SMALL_STATE(3146)] = 79457, - [SMALL_STATE(3147)] = 79533, - [SMALL_STATE(3148)] = 79631, - [SMALL_STATE(3149)] = 79689, - [SMALL_STATE(3150)] = 79805, - [SMALL_STATE(3151)] = 79925, - [SMALL_STATE(3152)] = 80044, - [SMALL_STATE(3153)] = 80163, - [SMALL_STATE(3154)] = 80282, - [SMALL_STATE(3155)] = 80339, - [SMALL_STATE(3156)] = 80396, - [SMALL_STATE(3157)] = 80453, - [SMALL_STATE(3158)] = 80512, - [SMALL_STATE(3159)] = 80575, - [SMALL_STATE(3160)] = 80632, - [SMALL_STATE(3161)] = 80695, - [SMALL_STATE(3162)] = 80752, - [SMALL_STATE(3163)] = 80833, - [SMALL_STATE(3164)] = 80890, - [SMALL_STATE(3165)] = 80947, - [SMALL_STATE(3166)] = 81004, - [SMALL_STATE(3167)] = 81119, - [SMALL_STATE(3168)] = 81236, - [SMALL_STATE(3169)] = 81355, - [SMALL_STATE(3170)] = 81412, - [SMALL_STATE(3171)] = 81527, - [SMALL_STATE(3172)] = 81584, - [SMALL_STATE(3173)] = 81699, - [SMALL_STATE(3174)] = 81756, - [SMALL_STATE(3175)] = 81875, - [SMALL_STATE(3176)] = 81994, - [SMALL_STATE(3177)] = 82051, - [SMALL_STATE(3178)] = 82108, - [SMALL_STATE(3179)] = 82171, - [SMALL_STATE(3180)] = 82228, - [SMALL_STATE(3181)] = 82285, - [SMALL_STATE(3182)] = 82342, - [SMALL_STATE(3183)] = 82401, - [SMALL_STATE(3184)] = 82520, - [SMALL_STATE(3185)] = 82577, - [SMALL_STATE(3186)] = 82634, - [SMALL_STATE(3187)] = 82691, - [SMALL_STATE(3188)] = 82748, - [SMALL_STATE(3189)] = 82807, - [SMALL_STATE(3190)] = 82922, - [SMALL_STATE(3191)] = 82979, - [SMALL_STATE(3192)] = 83094, - [SMALL_STATE(3193)] = 83209, - [SMALL_STATE(3194)] = 83266, - [SMALL_STATE(3195)] = 83327, - [SMALL_STATE(3196)] = 83434, - [SMALL_STATE(3197)] = 83549, - [SMALL_STATE(3198)] = 83642, - [SMALL_STATE(3199)] = 83707, - [SMALL_STATE(3200)] = 83822, - [SMALL_STATE(3201)] = 83937, - [SMALL_STATE(3202)] = 84022, - [SMALL_STATE(3203)] = 84105, - [SMALL_STATE(3204)] = 84224, - [SMALL_STATE(3205)] = 84281, - [SMALL_STATE(3206)] = 84338, - [SMALL_STATE(3207)] = 84401, - [SMALL_STATE(3208)] = 84502, - [SMALL_STATE(3209)] = 84601, - [SMALL_STATE(3210)] = 84720, - [SMALL_STATE(3211)] = 84817, - [SMALL_STATE(3212)] = 84936, - [SMALL_STATE(3213)] = 85021, - [SMALL_STATE(3214)] = 85126, - [SMALL_STATE(3215)] = 85229, - [SMALL_STATE(3216)] = 85308, - [SMALL_STATE(3217)] = 85397, - [SMALL_STATE(3218)] = 85512, - [SMALL_STATE(3219)] = 85627, - [SMALL_STATE(3220)] = 85684, - [SMALL_STATE(3221)] = 85741, - [SMALL_STATE(3222)] = 85798, - [SMALL_STATE(3223)] = 85855, - [SMALL_STATE(3224)] = 85974, - [SMALL_STATE(3225)] = 86037, - [SMALL_STATE(3226)] = 86098, - [SMALL_STATE(3227)] = 86217, - [SMALL_STATE(3228)] = 86334, - [SMALL_STATE(3229)] = 86391, - [SMALL_STATE(3230)] = 86448, - [SMALL_STATE(3231)] = 86567, - [SMALL_STATE(3232)] = 86624, - [SMALL_STATE(3233)] = 86683, - [SMALL_STATE(3234)] = 86802, - [SMALL_STATE(3235)] = 86859, - [SMALL_STATE(3236)] = 86978, - [SMALL_STATE(3237)] = 87035, - [SMALL_STATE(3238)] = 87092, - [SMALL_STATE(3239)] = 87149, - [SMALL_STATE(3240)] = 87218, - [SMALL_STATE(3241)] = 87275, - [SMALL_STATE(3242)] = 87390, - [SMALL_STATE(3243)] = 87447, - [SMALL_STATE(3244)] = 87512, - [SMALL_STATE(3245)] = 87627, - [SMALL_STATE(3246)] = 87684, - [SMALL_STATE(3247)] = 87741, - [SMALL_STATE(3248)] = 87802, - [SMALL_STATE(3249)] = 87917, - [SMALL_STATE(3250)] = 87974, - [SMALL_STATE(3251)] = 88035, - [SMALL_STATE(3252)] = 88150, - [SMALL_STATE(3253)] = 88207, - [SMALL_STATE(3254)] = 88266, - [SMALL_STATE(3255)] = 88323, - [SMALL_STATE(3256)] = 88380, - [SMALL_STATE(3257)] = 88499, - [SMALL_STATE(3258)] = 88618, - [SMALL_STATE(3259)] = 88737, - [SMALL_STATE(3260)] = 88856, - [SMALL_STATE(3261)] = 88931, - [SMALL_STATE(3262)] = 89050, - [SMALL_STATE(3263)] = 89169, - [SMALL_STATE(3264)] = 89284, - [SMALL_STATE(3265)] = 89367, - [SMALL_STATE(3266)] = 89444, - [SMALL_STATE(3267)] = 89501, - [SMALL_STATE(3268)] = 89558, - [SMALL_STATE(3269)] = 89677, - [SMALL_STATE(3270)] = 89796, - [SMALL_STATE(3271)] = 89913, - [SMALL_STATE(3272)] = 89970, - [SMALL_STATE(3273)] = 90037, - [SMALL_STATE(3274)] = 90094, - [SMALL_STATE(3275)] = 90151, - [SMALL_STATE(3276)] = 90208, - [SMALL_STATE(3277)] = 90265, - [SMALL_STATE(3278)] = 90322, - [SMALL_STATE(3279)] = 90439, - [SMALL_STATE(3280)] = 90558, - [SMALL_STATE(3281)] = 90677, - [SMALL_STATE(3282)] = 90740, - [SMALL_STATE(3283)] = 90859, - [SMALL_STATE(3284)] = 90974, - [SMALL_STATE(3285)] = 91039, - [SMALL_STATE(3286)] = 91096, - [SMALL_STATE(3287)] = 91213, - [SMALL_STATE(3288)] = 91330, - [SMALL_STATE(3289)] = 91387, - [SMALL_STATE(3290)] = 91452, - [SMALL_STATE(3291)] = 91571, - [SMALL_STATE(3292)] = 91686, - [SMALL_STATE(3293)] = 91749, - [SMALL_STATE(3294)] = 91868, - [SMALL_STATE(3295)] = 91985, - [SMALL_STATE(3296)] = 92104, - [SMALL_STATE(3297)] = 92223, - [SMALL_STATE(3298)] = 92284, - [SMALL_STATE(3299)] = 92341, - [SMALL_STATE(3300)] = 92398, - [SMALL_STATE(3301)] = 92459, - [SMALL_STATE(3302)] = 92516, - [SMALL_STATE(3303)] = 92631, - [SMALL_STATE(3304)] = 92746, - [SMALL_STATE(3305)] = 92813, - [SMALL_STATE(3306)] = 92871, - [SMALL_STATE(3307)] = 92933, - [SMALL_STATE(3308)] = 93001, - [SMALL_STATE(3309)] = 93057, - [SMALL_STATE(3310)] = 93171, - [SMALL_STATE(3311)] = 93227, - [SMALL_STATE(3312)] = 93283, - [SMALL_STATE(3313)] = 93339, - [SMALL_STATE(3314)] = 93395, - [SMALL_STATE(3315)] = 93511, - [SMALL_STATE(3316)] = 93569, - [SMALL_STATE(3317)] = 93625, - [SMALL_STATE(3318)] = 93683, - [SMALL_STATE(3319)] = 93741, - [SMALL_STATE(3320)] = 93803, - [SMALL_STATE(3321)] = 93861, - [SMALL_STATE(3322)] = 93919, - [SMALL_STATE(3323)] = 93975, - [SMALL_STATE(3324)] = 94091, - [SMALL_STATE(3325)] = 94205, - [SMALL_STATE(3326)] = 94265, - [SMALL_STATE(3327)] = 94323, - [SMALL_STATE(3328)] = 94385, - [SMALL_STATE(3329)] = 94453, - [SMALL_STATE(3330)] = 94521, - [SMALL_STATE(3331)] = 94593, - [SMALL_STATE(3332)] = 94667, - [SMALL_STATE(3333)] = 94729, - [SMALL_STATE(3334)] = 94787, - [SMALL_STATE(3335)] = 94845, - [SMALL_STATE(3336)] = 94899, - [SMALL_STATE(3337)] = 94955, - [SMALL_STATE(3338)] = 95013, - [SMALL_STATE(3339)] = 95127, - [SMALL_STATE(3340)] = 95241, - [SMALL_STATE(3341)] = 95297, - [SMALL_STATE(3342)] = 95353, - [SMALL_STATE(3343)] = 95415, - [SMALL_STATE(3344)] = 95483, - [SMALL_STATE(3345)] = 95539, - [SMALL_STATE(3346)] = 95595, - [SMALL_STATE(3347)] = 95709, - [SMALL_STATE(3348)] = 95823, - [SMALL_STATE(3349)] = 95879, - [SMALL_STATE(3350)] = 95955, - [SMALL_STATE(3351)] = 96013, - [SMALL_STATE(3352)] = 96069, - [SMALL_STATE(3353)] = 96157, - [SMALL_STATE(3354)] = 96227, - [SMALL_STATE(3355)] = 96283, - [SMALL_STATE(3356)] = 96365, - [SMALL_STATE(3357)] = 96437, - [SMALL_STATE(3358)] = 96493, - [SMALL_STATE(3359)] = 96607, - [SMALL_STATE(3360)] = 96663, - [SMALL_STATE(3361)] = 96737, - [SMALL_STATE(3362)] = 96793, - [SMALL_STATE(3363)] = 96867, - [SMALL_STATE(3364)] = 96921, - [SMALL_STATE(3365)] = 96981, - [SMALL_STATE(3366)] = 97059, - [SMALL_STATE(3367)] = 97113, - [SMALL_STATE(3368)] = 97227, - [SMALL_STATE(3369)] = 97287, - [SMALL_STATE(3370)] = 97403, - [SMALL_STATE(3371)] = 97517, - [SMALL_STATE(3372)] = 97579, - [SMALL_STATE(3373)] = 97641, - [SMALL_STATE(3374)] = 97697, - [SMALL_STATE(3375)] = 97753, - [SMALL_STATE(3376)] = 97809, - [SMALL_STATE(3377)] = 97923, - [SMALL_STATE(3378)] = 97979, - [SMALL_STATE(3379)] = 98093, - [SMALL_STATE(3380)] = 98149, - [SMALL_STATE(3381)] = 98263, - [SMALL_STATE(3382)] = 98319, - [SMALL_STATE(3383)] = 98435, - [SMALL_STATE(3384)] = 98491, - [SMALL_STATE(3385)] = 98605, - [SMALL_STATE(3386)] = 98707, - [SMALL_STATE(3387)] = 98811, - [SMALL_STATE(3388)] = 98925, - [SMALL_STATE(3389)] = 98981, - [SMALL_STATE(3390)] = 99037, - [SMALL_STATE(3391)] = 99121, - [SMALL_STATE(3392)] = 99185, - [SMALL_STATE(3393)] = 99241, - [SMALL_STATE(3394)] = 99297, - [SMALL_STATE(3395)] = 99353, - [SMALL_STATE(3396)] = 99409, - [SMALL_STATE(3397)] = 99463, - [SMALL_STATE(3398)] = 99559, - [SMALL_STATE(3399)] = 99615, - [SMALL_STATE(3400)] = 99671, - [SMALL_STATE(3401)] = 99727, - [SMALL_STATE(3402)] = 99783, - [SMALL_STATE(3403)] = 99883, - [SMALL_STATE(3404)] = 99965, - [SMALL_STATE(3405)] = 100049, - [SMALL_STATE(3406)] = 100105, - [SMALL_STATE(3407)] = 100161, - [SMALL_STATE(3408)] = 100219, - [SMALL_STATE(3409)] = 100277, - [SMALL_STATE(3410)] = 100369, - [SMALL_STATE(3411)] = 100485, - [SMALL_STATE(3412)] = 100591, - [SMALL_STATE(3413)] = 100661, - [SMALL_STATE(3414)] = 100775, - [SMALL_STATE(3415)] = 100831, - [SMALL_STATE(3416)] = 100899, - [SMALL_STATE(3417)] = 100967, - [SMALL_STATE(3418)] = 101037, - [SMALL_STATE(3419)] = 101099, - [SMALL_STATE(3420)] = 101155, - [SMALL_STATE(3421)] = 101211, - [SMALL_STATE(3422)] = 101267, - [SMALL_STATE(3423)] = 101323, - [SMALL_STATE(3424)] = 101437, - [SMALL_STATE(3425)] = 101493, - [SMALL_STATE(3426)] = 101607, - [SMALL_STATE(3427)] = 101723, - [SMALL_STATE(3428)] = 101787, - [SMALL_STATE(3429)] = 101855, - [SMALL_STATE(3430)] = 101923, - [SMALL_STATE(3431)] = 101979, - [SMALL_STATE(3432)] = 102035, - [SMALL_STATE(3433)] = 102097, - [SMALL_STATE(3434)] = 102153, - [SMALL_STATE(3435)] = 102211, - [SMALL_STATE(3436)] = 102267, - [SMALL_STATE(3437)] = 102323, - [SMALL_STATE(3438)] = 102379, - [SMALL_STATE(3439)] = 102441, - [SMALL_STATE(3440)] = 102497, - [SMALL_STATE(3441)] = 102561, - [SMALL_STATE(3442)] = 102619, - [SMALL_STATE(3443)] = 102683, - [SMALL_STATE(3444)] = 102739, - [SMALL_STATE(3445)] = 102853, - [SMALL_STATE(3446)] = 102909, - [SMALL_STATE(3447)] = 102965, - [SMALL_STATE(3448)] = 103021, - [SMALL_STATE(3449)] = 103083, - [SMALL_STATE(3450)] = 103139, - [SMALL_STATE(3451)] = 103197, - [SMALL_STATE(3452)] = 103259, - [SMALL_STATE(3453)] = 103321, - [SMALL_STATE(3454)] = 103377, - [SMALL_STATE(3455)] = 103433, - [SMALL_STATE(3456)] = 103531, - [SMALL_STATE(3457)] = 103587, - [SMALL_STATE(3458)] = 103643, - [SMALL_STATE(3459)] = 103699, - [SMALL_STATE(3460)] = 103757, - [SMALL_STATE(3461)] = 103871, - [SMALL_STATE(3462)] = 103925, - [SMALL_STATE(3463)] = 103997, - [SMALL_STATE(3464)] = 104111, - [SMALL_STATE(3465)] = 104167, - [SMALL_STATE(3466)] = 104229, - [SMALL_STATE(3467)] = 104287, - [SMALL_STATE(3468)] = 104343, - [SMALL_STATE(3469)] = 104397, - [SMALL_STATE(3470)] = 104453, - [SMALL_STATE(3471)] = 104511, - [SMALL_STATE(3472)] = 104567, - [SMALL_STATE(3473)] = 104621, - [SMALL_STATE(3474)] = 104679, - [SMALL_STATE(3475)] = 104739, - [SMALL_STATE(3476)] = 104795, - [SMALL_STATE(3477)] = 104851, - [SMALL_STATE(3478)] = 104965, - [SMALL_STATE(3479)] = 105021, - [SMALL_STATE(3480)] = 105083, - [SMALL_STATE(3481)] = 105139, - [SMALL_STATE(3482)] = 105195, - [SMALL_STATE(3483)] = 105251, - [SMALL_STATE(3484)] = 105307, - [SMALL_STATE(3485)] = 105363, - [SMALL_STATE(3486)] = 105419, - [SMALL_STATE(3487)] = 105475, - [SMALL_STATE(3488)] = 105531, - [SMALL_STATE(3489)] = 105587, - [SMALL_STATE(3490)] = 105643, - [SMALL_STATE(3491)] = 105705, - [SMALL_STATE(3492)] = 105761, - [SMALL_STATE(3493)] = 105817, - [SMALL_STATE(3494)] = 105931, - [SMALL_STATE(3495)] = 105987, - [SMALL_STATE(3496)] = 106043, - [SMALL_STATE(3497)] = 106159, - [SMALL_STATE(3498)] = 106275, - [SMALL_STATE(3499)] = 106343, - [SMALL_STATE(3500)] = 106399, - [SMALL_STATE(3501)] = 106463, - [SMALL_STATE(3502)] = 106525, - [SMALL_STATE(3503)] = 106597, - [SMALL_STATE(3504)] = 106653, - [SMALL_STATE(3505)] = 106709, - [SMALL_STATE(3506)] = 106777, - [SMALL_STATE(3507)] = 106891, - [SMALL_STATE(3508)] = 107005, - [SMALL_STATE(3509)] = 107119, - [SMALL_STATE(3510)] = 107233, - [SMALL_STATE(3511)] = 107307, - [SMALL_STATE(3512)] = 107368, - [SMALL_STATE(3513)] = 107435, - [SMALL_STATE(3514)] = 107492, - [SMALL_STATE(3515)] = 107559, - [SMALL_STATE(3516)] = 107618, - [SMALL_STATE(3517)] = 107685, - [SMALL_STATE(3518)] = 107742, - [SMALL_STATE(3519)] = 107799, - [SMALL_STATE(3520)] = 107858, - [SMALL_STATE(3521)] = 107917, - [SMALL_STATE(3522)] = 107974, - [SMALL_STATE(3523)] = 108087, - [SMALL_STATE(3524)] = 108146, - [SMALL_STATE(3525)] = 108201, - [SMALL_STATE(3526)] = 108256, - [SMALL_STATE(3527)] = 108315, - [SMALL_STATE(3528)] = 108378, - [SMALL_STATE(3529)] = 108437, - [SMALL_STATE(3530)] = 108492, - [SMALL_STATE(3531)] = 108605, - [SMALL_STATE(3532)] = 108672, - [SMALL_STATE(3533)] = 108731, - [SMALL_STATE(3534)] = 108786, - [SMALL_STATE(3535)] = 108845, - [SMALL_STATE(3536)] = 108900, - [SMALL_STATE(3537)] = 108955, - [SMALL_STATE(3538)] = 109012, - [SMALL_STATE(3539)] = 109067, - [SMALL_STATE(3540)] = 109126, - [SMALL_STATE(3541)] = 109185, - [SMALL_STATE(3542)] = 109244, - [SMALL_STATE(3543)] = 109303, - [SMALL_STATE(3544)] = 109362, - [SMALL_STATE(3545)] = 109421, - [SMALL_STATE(3546)] = 109480, - [SMALL_STATE(3547)] = 109539, - [SMALL_STATE(3548)] = 109594, - [SMALL_STATE(3549)] = 109661, - [SMALL_STATE(3550)] = 109720, - [SMALL_STATE(3551)] = 109779, - [SMALL_STATE(3552)] = 109834, - [SMALL_STATE(3553)] = 109891, - [SMALL_STATE(3554)] = 109958, - [SMALL_STATE(3555)] = 110017, - [SMALL_STATE(3556)] = 110072, - [SMALL_STATE(3557)] = 110129, - [SMALL_STATE(3558)] = 110196, - [SMALL_STATE(3559)] = 110309, - [SMALL_STATE(3560)] = 110364, - [SMALL_STATE(3561)] = 110419, - [SMALL_STATE(3562)] = 110486, - [SMALL_STATE(3563)] = 110567, - [SMALL_STATE(3564)] = 110640, - [SMALL_STATE(3565)] = 110753, - [SMALL_STATE(3566)] = 110866, - [SMALL_STATE(3567)] = 110947, - [SMALL_STATE(3568)] = 111022, - [SMALL_STATE(3569)] = 111135, - [SMALL_STATE(3570)] = 111190, - [SMALL_STATE(3571)] = 111245, - [SMALL_STATE(3572)] = 111304, - [SMALL_STATE(3573)] = 111387, - [SMALL_STATE(3574)] = 111448, - [SMALL_STATE(3575)] = 111503, - [SMALL_STATE(3576)] = 111558, - [SMALL_STATE(3577)] = 111613, - [SMALL_STATE(3578)] = 111668, - [SMALL_STATE(3579)] = 111723, - [SMALL_STATE(3580)] = 111790, - [SMALL_STATE(3581)] = 111845, - [SMALL_STATE(3582)] = 111958, - [SMALL_STATE(3583)] = 112021, - [SMALL_STATE(3584)] = 112088, - [SMALL_STATE(3585)] = 112161, - [SMALL_STATE(3586)] = 112216, - [SMALL_STATE(3587)] = 112329, - [SMALL_STATE(3588)] = 112442, - [SMALL_STATE(3589)] = 112497, - [SMALL_STATE(3590)] = 112552, - [SMALL_STATE(3591)] = 112607, - [SMALL_STATE(3592)] = 112662, - [SMALL_STATE(3593)] = 112721, - [SMALL_STATE(3594)] = 112788, - [SMALL_STATE(3595)] = 112851, - [SMALL_STATE(3596)] = 112918, - [SMALL_STATE(3597)] = 112977, - [SMALL_STATE(3598)] = 113032, - [SMALL_STATE(3599)] = 113091, - [SMALL_STATE(3600)] = 113166, - [SMALL_STATE(3601)] = 113225, - [SMALL_STATE(3602)] = 113280, - [SMALL_STATE(3603)] = 113335, - [SMALL_STATE(3604)] = 113396, - [SMALL_STATE(3605)] = 113451, - [SMALL_STATE(3606)] = 113524, - [SMALL_STATE(3607)] = 113587, - [SMALL_STATE(3608)] = 113654, - [SMALL_STATE(3609)] = 113713, - [SMALL_STATE(3610)] = 113768, - [SMALL_STATE(3611)] = 113835, - [SMALL_STATE(3612)] = 113902, - [SMALL_STATE(3613)] = 113957, - [SMALL_STATE(3614)] = 114012, - [SMALL_STATE(3615)] = 114067, - [SMALL_STATE(3616)] = 114142, - [SMALL_STATE(3617)] = 114197, - [SMALL_STATE(3618)] = 114254, - [SMALL_STATE(3619)] = 114321, - [SMALL_STATE(3620)] = 114434, - [SMALL_STATE(3621)] = 114501, - [SMALL_STATE(3622)] = 114564, - [SMALL_STATE(3623)] = 114631, - [SMALL_STATE(3624)] = 114736, - [SMALL_STATE(3625)] = 114803, - [SMALL_STATE(3626)] = 114866, - [SMALL_STATE(3627)] = 114979, - [SMALL_STATE(3628)] = 115046, - [SMALL_STATE(3629)] = 115103, - [SMALL_STATE(3630)] = 115170, - [SMALL_STATE(3631)] = 115283, - [SMALL_STATE(3632)] = 115366, - [SMALL_STATE(3633)] = 115479, - [SMALL_STATE(3634)] = 115592, - [SMALL_STATE(3635)] = 115705, - [SMALL_STATE(3636)] = 115762, - [SMALL_STATE(3637)] = 115875, - [SMALL_STATE(3638)] = 115988, - [SMALL_STATE(3639)] = 116101, - [SMALL_STATE(3640)] = 116166, - [SMALL_STATE(3641)] = 116221, - [SMALL_STATE(3642)] = 116334, - [SMALL_STATE(3643)] = 116447, - [SMALL_STATE(3644)] = 116560, - [SMALL_STATE(3645)] = 116641, - [SMALL_STATE(3646)] = 116754, - [SMALL_STATE(3647)] = 116867, - [SMALL_STATE(3648)] = 116980, - [SMALL_STATE(3649)] = 117093, - [SMALL_STATE(3650)] = 117206, - [SMALL_STATE(3651)] = 117311, - [SMALL_STATE(3652)] = 117402, - [SMALL_STATE(3653)] = 117461, - [SMALL_STATE(3654)] = 117528, - [SMALL_STATE(3655)] = 117611, - [SMALL_STATE(3656)] = 117692, - [SMALL_STATE(3657)] = 117757, - [SMALL_STATE(3658)] = 117856, - [SMALL_STATE(3659)] = 117953, - [SMALL_STATE(3660)] = 118048, - [SMALL_STATE(3661)] = 118131, - [SMALL_STATE(3662)] = 118234, - [SMALL_STATE(3663)] = 118335, - [SMALL_STATE(3664)] = 118412, - [SMALL_STATE(3665)] = 118499, - [SMALL_STATE(3666)] = 118612, - [SMALL_STATE(3667)] = 118725, - [SMALL_STATE(3668)] = 118792, - [SMALL_STATE(3669)] = 118905, - [SMALL_STATE(3670)] = 118996, - [SMALL_STATE(3671)] = 119109, - [SMALL_STATE(3672)] = 119172, - [SMALL_STATE(3673)] = 119255, - [SMALL_STATE(3674)] = 119322, - [SMALL_STATE(3675)] = 119403, - [SMALL_STATE(3676)] = 119470, - [SMALL_STATE(3677)] = 119583, - [SMALL_STATE(3678)] = 119682, - [SMALL_STATE(3679)] = 119737, - [SMALL_STATE(3680)] = 119798, - [SMALL_STATE(3681)] = 119895, - [SMALL_STATE(3682)] = 119950, - [SMALL_STATE(3683)] = 120063, - [SMALL_STATE(3684)] = 120158, - [SMALL_STATE(3685)] = 120225, - [SMALL_STATE(3686)] = 120282, - [SMALL_STATE(3687)] = 120343, - [SMALL_STATE(3688)] = 120400, - [SMALL_STATE(3689)] = 120483, - [SMALL_STATE(3690)] = 120586, - [SMALL_STATE(3691)] = 120687, - [SMALL_STATE(3692)] = 120764, - [SMALL_STATE(3693)] = 120877, - [SMALL_STATE(3694)] = 120990, - [SMALL_STATE(3695)] = 121077, - [SMALL_STATE(3696)] = 121190, - [SMALL_STATE(3697)] = 121303, - [SMALL_STATE(3698)] = 121370, - [SMALL_STATE(3699)] = 121483, - [SMALL_STATE(3700)] = 121596, - [SMALL_STATE(3701)] = 121709, - [SMALL_STATE(3702)] = 121822, - [SMALL_STATE(3703)] = 121935, - [SMALL_STATE(3704)] = 122048, - [SMALL_STATE(3705)] = 122103, - [SMALL_STATE(3706)] = 122216, - [SMALL_STATE(3707)] = 122331, - [SMALL_STATE(3708)] = 122444, - [SMALL_STATE(3709)] = 122549, - [SMALL_STATE(3710)] = 122662, - [SMALL_STATE(3711)] = 122753, - [SMALL_STATE(3712)] = 122808, - [SMALL_STATE(3713)] = 122921, - [SMALL_STATE(3714)] = 122984, - [SMALL_STATE(3715)] = 123051, - [SMALL_STATE(3716)] = 123164, - [SMALL_STATE(3717)] = 123219, - [SMALL_STATE(3718)] = 123332, - [SMALL_STATE(3719)] = 123415, - [SMALL_STATE(3720)] = 123496, - [SMALL_STATE(3721)] = 123551, - [SMALL_STATE(3722)] = 123650, - [SMALL_STATE(3723)] = 123705, - [SMALL_STATE(3724)] = 123760, - [SMALL_STATE(3725)] = 123827, - [SMALL_STATE(3726)] = 123884, - [SMALL_STATE(3727)] = 123981, - [SMALL_STATE(3728)] = 124076, - [SMALL_STATE(3729)] = 124189, - [SMALL_STATE(3730)] = 124250, - [SMALL_STATE(3731)] = 124363, - [SMALL_STATE(3732)] = 124428, - [SMALL_STATE(3733)] = 124515, - [SMALL_STATE(3734)] = 124570, - [SMALL_STATE(3735)] = 124631, - [SMALL_STATE(3736)] = 124692, - [SMALL_STATE(3737)] = 124755, - [SMALL_STATE(3738)] = 124838, - [SMALL_STATE(3739)] = 124905, - [SMALL_STATE(3740)] = 125018, - [SMALL_STATE(3741)] = 125085, - [SMALL_STATE(3742)] = 125188, - [SMALL_STATE(3743)] = 125247, - [SMALL_STATE(3744)] = 125312, - [SMALL_STATE(3745)] = 125389, - [SMALL_STATE(3746)] = 125502, - [SMALL_STATE(3747)] = 125557, - [SMALL_STATE(3748)] = 125612, - [SMALL_STATE(3749)] = 125713, - [SMALL_STATE(3750)] = 125768, - [SMALL_STATE(3751)] = 125825, - [SMALL_STATE(3752)] = 125880, - [SMALL_STATE(3753)] = 125935, - [SMALL_STATE(3754)] = 126048, - [SMALL_STATE(3755)] = 126107, - [SMALL_STATE(3756)] = 126168, - [SMALL_STATE(3757)] = 126223, - [SMALL_STATE(3758)] = 126278, - [SMALL_STATE(3759)] = 126335, - [SMALL_STATE(3760)] = 126394, - [SMALL_STATE(3761)] = 126453, - [SMALL_STATE(3762)] = 126508, - [SMALL_STATE(3763)] = 126567, - [SMALL_STATE(3764)] = 126635, - [SMALL_STATE(3765)] = 126703, - [SMALL_STATE(3766)] = 126775, - [SMALL_STATE(3767)] = 126853, - [SMALL_STATE(3768)] = 126921, - [SMALL_STATE(3769)] = 126989, - [SMALL_STATE(3770)] = 127099, - [SMALL_STATE(3771)] = 127209, - [SMALL_STATE(3772)] = 127319, - [SMALL_STATE(3773)] = 127429, - [SMALL_STATE(3774)] = 127539, - [SMALL_STATE(3775)] = 127607, - [SMALL_STATE(3776)] = 127681, - [SMALL_STATE(3777)] = 127749, - [SMALL_STATE(3778)] = 127809, - [SMALL_STATE(3779)] = 127919, - [SMALL_STATE(3780)] = 128029, - [SMALL_STATE(3781)] = 128097, - [SMALL_STATE(3782)] = 128165, - [SMALL_STATE(3783)] = 128237, - [SMALL_STATE(3784)] = 128305, - [SMALL_STATE(3785)] = 128365, - [SMALL_STATE(3786)] = 128455, - [SMALL_STATE(3787)] = 128523, - [SMALL_STATE(3788)] = 128583, - [SMALL_STATE(3789)] = 128639, - [SMALL_STATE(3790)] = 128707, - [SMALL_STATE(3791)] = 128767, - [SMALL_STATE(3792)] = 128877, - [SMALL_STATE(3793)] = 128945, - [SMALL_STATE(3794)] = 129013, - [SMALL_STATE(3795)] = 129081, - [SMALL_STATE(3796)] = 129149, - [SMALL_STATE(3797)] = 129209, - [SMALL_STATE(3798)] = 129277, - [SMALL_STATE(3799)] = 129345, - [SMALL_STATE(3800)] = 129413, - [SMALL_STATE(3801)] = 129481, - [SMALL_STATE(3802)] = 129549, - [SMALL_STATE(3803)] = 129617, - [SMALL_STATE(3804)] = 129675, - [SMALL_STATE(3805)] = 129757, - [SMALL_STATE(3806)] = 129837, - [SMALL_STATE(3807)] = 129935, - [SMALL_STATE(3808)] = 130031, - [SMALL_STATE(3809)] = 130125, - [SMALL_STATE(3810)] = 130207, - [SMALL_STATE(3811)] = 130309, - [SMALL_STATE(3812)] = 130409, - [SMALL_STATE(3813)] = 130465, - [SMALL_STATE(3814)] = 130541, - [SMALL_STATE(3815)] = 130603, - [SMALL_STATE(3816)] = 130677, - [SMALL_STATE(3817)] = 130733, - [SMALL_STATE(3818)] = 130819, - [SMALL_STATE(3819)] = 130929, - [SMALL_STATE(3820)] = 131039, - [SMALL_STATE(3821)] = 131107, - [SMALL_STATE(3822)] = 131175, - [SMALL_STATE(3823)] = 131243, - [SMALL_STATE(3824)] = 131317, - [SMALL_STATE(3825)] = 131385, - [SMALL_STATE(3826)] = 131453, - [SMALL_STATE(3827)] = 131515, - [SMALL_STATE(3828)] = 131583, - [SMALL_STATE(3829)] = 131645, - [SMALL_STATE(3830)] = 131713, - [SMALL_STATE(3831)] = 131775, - [SMALL_STATE(3832)] = 131835, - [SMALL_STATE(3833)] = 131913, - [SMALL_STATE(3834)] = 131981, - [SMALL_STATE(3835)] = 132043, - [SMALL_STATE(3836)] = 132147, - [SMALL_STATE(3837)] = 132203, - [SMALL_STATE(3838)] = 132277, - [SMALL_STATE(3839)] = 132343, - [SMALL_STATE(3840)] = 132411, - [SMALL_STATE(3841)] = 132473, - [SMALL_STATE(3842)] = 132533, - [SMALL_STATE(3843)] = 132601, - [SMALL_STATE(3844)] = 132711, - [SMALL_STATE(3845)] = 132791, - [SMALL_STATE(3846)] = 132859, - [SMALL_STATE(3847)] = 132927, - [SMALL_STATE(3848)] = 132995, - [SMALL_STATE(3849)] = 133105, - [SMALL_STATE(3850)] = 133173, - [SMALL_STATE(3851)] = 133241, - [SMALL_STATE(3852)] = 133299, - [SMALL_STATE(3853)] = 133361, - [SMALL_STATE(3854)] = 133433, - [SMALL_STATE(3855)] = 133485, - [SMALL_STATE(3856)] = 133563, - [SMALL_STATE(3857)] = 133673, - [SMALL_STATE(3858)] = 133729, - [SMALL_STATE(3859)] = 133839, - [SMALL_STATE(3860)] = 133907, - [SMALL_STATE(3861)] = 133979, - [SMALL_STATE(3862)] = 134089, - [SMALL_STATE(3863)] = 134157, - [SMALL_STATE(3864)] = 134267, - [SMALL_STATE(3865)] = 134327, - [SMALL_STATE(3866)] = 134401, - [SMALL_STATE(3867)] = 134469, - [SMALL_STATE(3868)] = 134537, - [SMALL_STATE(3869)] = 134592, - [SMALL_STATE(3870)] = 134663, - [SMALL_STATE(3871)] = 134734, - [SMALL_STATE(3872)] = 134791, - [SMALL_STATE(3873)] = 134862, - [SMALL_STATE(3874)] = 134917, - [SMALL_STATE(3875)] = 134972, - [SMALL_STATE(3876)] = 135025, - [SMALL_STATE(3877)] = 135080, - [SMALL_STATE(3878)] = 135151, - [SMALL_STATE(3879)] = 135206, - [SMALL_STATE(3880)] = 135261, - [SMALL_STATE(3881)] = 135316, - [SMALL_STATE(3882)] = 135371, - [SMALL_STATE(3883)] = 135424, - [SMALL_STATE(3884)] = 135483, - [SMALL_STATE(3885)] = 135542, - [SMALL_STATE(3886)] = 135609, - [SMALL_STATE(3887)] = 135664, - [SMALL_STATE(3888)] = 135723, - [SMALL_STATE(3889)] = 135794, - [SMALL_STATE(3890)] = 135851, - [SMALL_STATE(3891)] = 135922, - [SMALL_STATE(3892)] = 135981, - [SMALL_STATE(3893)] = 136052, - [SMALL_STATE(3894)] = 136111, - [SMALL_STATE(3895)] = 136182, - [SMALL_STATE(3896)] = 136253, - [SMALL_STATE(3897)] = 136312, - [SMALL_STATE(3898)] = 136383, - [SMALL_STATE(3899)] = 136438, - [SMALL_STATE(3900)] = 136509, - [SMALL_STATE(3901)] = 136562, - [SMALL_STATE(3902)] = 136629, - [SMALL_STATE(3903)] = 136690, - [SMALL_STATE(3904)] = 136761, - [SMALL_STATE(3905)] = 136832, - [SMALL_STATE(3906)] = 136897, - [SMALL_STATE(3907)] = 136968, - [SMALL_STATE(3908)] = 137039, - [SMALL_STATE(3909)] = 137094, - [SMALL_STATE(3910)] = 137165, - [SMALL_STATE(3911)] = 137219, - [SMALL_STATE(3912)] = 137277, - [SMALL_STATE(3913)] = 137327, - [SMALL_STATE(3914)] = 137381, - [SMALL_STATE(3915)] = 137443, - [SMALL_STATE(3916)] = 137505, - [SMALL_STATE(3917)] = 137567, - [SMALL_STATE(3918)] = 137617, - [SMALL_STATE(3919)] = 137679, - [SMALL_STATE(3920)] = 137741, - [SMALL_STATE(3921)] = 137803, - [SMALL_STATE(3922)] = 137865, - [SMALL_STATE(3923)] = 137919, - [SMALL_STATE(3924)] = 137983, - [SMALL_STATE(3925)] = 138045, - [SMALL_STATE(3926)] = 138107, - [SMALL_STATE(3927)] = 138169, - [SMALL_STATE(3928)] = 138233, - [SMALL_STATE(3929)] = 138291, - [SMALL_STATE(3930)] = 138353, - [SMALL_STATE(3931)] = 138403, - [SMALL_STATE(3932)] = 138465, - [SMALL_STATE(3933)] = 138527, - [SMALL_STATE(3934)] = 138591, - [SMALL_STATE(3935)] = 138653, - [SMALL_STATE(3936)] = 138717, - [SMALL_STATE(3937)] = 138767, - [SMALL_STATE(3938)] = 138829, - [SMALL_STATE(3939)] = 138879, - [SMALL_STATE(3940)] = 138941, - [SMALL_STATE(3941)] = 139003, - [SMALL_STATE(3942)] = 139065, - [SMALL_STATE(3943)] = 139117, - [SMALL_STATE(3944)] = 139179, - [SMALL_STATE(3945)] = 139231, - [SMALL_STATE(3946)] = 139293, - [SMALL_STATE(3947)] = 139343, - [SMALL_STATE(3948)] = 139405, - [SMALL_STATE(3949)] = 139469, - [SMALL_STATE(3950)] = 139531, - [SMALL_STATE(3951)] = 139593, - [SMALL_STATE(3952)] = 139655, - [SMALL_STATE(3953)] = 139707, - [SMALL_STATE(3954)] = 139769, - [SMALL_STATE(3955)] = 139821, - [SMALL_STATE(3956)] = 139883, - [SMALL_STATE(3957)] = 139933, - [SMALL_STATE(3958)] = 139995, - [SMALL_STATE(3959)] = 140047, - [SMALL_STATE(3960)] = 140109, - [SMALL_STATE(3961)] = 140171, - [SMALL_STATE(3962)] = 140233, - [SMALL_STATE(3963)] = 140289, - [SMALL_STATE(3964)] = 140343, - [SMALL_STATE(3965)] = 140393, - [SMALL_STATE(3966)] = 140455, - [SMALL_STATE(3967)] = 140519, - [SMALL_STATE(3968)] = 140581, - [SMALL_STATE(3969)] = 140637, - [SMALL_STATE(3970)] = 140701, - [SMALL_STATE(3971)] = 140763, - [SMALL_STATE(3972)] = 140821, - [SMALL_STATE(3973)] = 140879, - [SMALL_STATE(3974)] = 140943, - [SMALL_STATE(3975)] = 141001, - [SMALL_STATE(3976)] = 141055, - [SMALL_STATE(3977)] = 141107, - [SMALL_STATE(3978)] = 141169, - [SMALL_STATE(3979)] = 141231, - [SMALL_STATE(3980)] = 141295, - [SMALL_STATE(3981)] = 141359, - [SMALL_STATE(3982)] = 141421, - [SMALL_STATE(3983)] = 141485, - [SMALL_STATE(3984)] = 141549, - [SMALL_STATE(3985)] = 141611, - [SMALL_STATE(3986)] = 141675, - [SMALL_STATE(3987)] = 141729, - [SMALL_STATE(3988)] = 141791, - [SMALL_STATE(3989)] = 141853, - [SMALL_STATE(3990)] = 141917, - [SMALL_STATE(3991)] = 141979, - [SMALL_STATE(3992)] = 142033, - [SMALL_STATE(3993)] = 142083, - [SMALL_STATE(3994)] = 142145, - [SMALL_STATE(3995)] = 142195, - [SMALL_STATE(3996)] = 142246, - [SMALL_STATE(3997)] = 142297, - [SMALL_STATE(3998)] = 142350, - [SMALL_STATE(3999)] = 142401, - [SMALL_STATE(4000)] = 142452, - [SMALL_STATE(4001)] = 142505, - [SMALL_STATE(4002)] = 142556, - [SMALL_STATE(4003)] = 142609, - [SMALL_STATE(4004)] = 142658, - [SMALL_STATE(4005)] = 142711, - [SMALL_STATE(4006)] = 142760, - [SMALL_STATE(4007)] = 142809, - [SMALL_STATE(4008)] = 142860, - [SMALL_STATE(4009)] = 142911, - [SMALL_STATE(4010)] = 142962, - [SMALL_STATE(4011)] = 143013, - [SMALL_STATE(4012)] = 143066, - [SMALL_STATE(4013)] = 143117, - [SMALL_STATE(4014)] = 143166, - [SMALL_STATE(4015)] = 143215, - [SMALL_STATE(4016)] = 143268, - [SMALL_STATE(4017)] = 143319, - [SMALL_STATE(4018)] = 143368, - [SMALL_STATE(4019)] = 143417, - [SMALL_STATE(4020)] = 143468, - [SMALL_STATE(4021)] = 143519, - [SMALL_STATE(4022)] = 143572, - [SMALL_STATE(4023)] = 143621, - [SMALL_STATE(4024)] = 143670, - [SMALL_STATE(4025)] = 143723, - [SMALL_STATE(4026)] = 143774, - [SMALL_STATE(4027)] = 143827, - [SMALL_STATE(4028)] = 143880, - [SMALL_STATE(4029)] = 143933, - [SMALL_STATE(4030)] = 143984, - [SMALL_STATE(4031)] = 144035, - [SMALL_STATE(4032)] = 144086, - [SMALL_STATE(4033)] = 144137, - [SMALL_STATE(4034)] = 144188, - [SMALL_STATE(4035)] = 144241, - [SMALL_STATE(4036)] = 144294, - [SMALL_STATE(4037)] = 144345, - [SMALL_STATE(4038)] = 144396, - [SMALL_STATE(4039)] = 144447, - [SMALL_STATE(4040)] = 144496, - [SMALL_STATE(4041)] = 144549, - [SMALL_STATE(4042)] = 144600, - [SMALL_STATE(4043)] = 144649, - [SMALL_STATE(4044)] = 144700, - [SMALL_STATE(4045)] = 144748, - [SMALL_STATE(4046)] = 144796, - [SMALL_STATE(4047)] = 144846, - [SMALL_STATE(4048)] = 144896, - [SMALL_STATE(4049)] = 144944, - [SMALL_STATE(4050)] = 144992, - [SMALL_STATE(4051)] = 145040, - [SMALL_STATE(4052)] = 145088, - [SMALL_STATE(4053)] = 145136, - [SMALL_STATE(4054)] = 145184, - [SMALL_STATE(4055)] = 145232, - [SMALL_STATE(4056)] = 145282, - [SMALL_STATE(4057)] = 145330, - [SMALL_STATE(4058)] = 145378, - [SMALL_STATE(4059)] = 145426, - [SMALL_STATE(4060)] = 145476, - [SMALL_STATE(4061)] = 145524, - [SMALL_STATE(4062)] = 145572, - [SMALL_STATE(4063)] = 145620, - [SMALL_STATE(4064)] = 145668, - [SMALL_STATE(4065)] = 145716, - [SMALL_STATE(4066)] = 145764, - [SMALL_STATE(4067)] = 145812, - [SMALL_STATE(4068)] = 145860, - [SMALL_STATE(4069)] = 145908, - [SMALL_STATE(4070)] = 145956, - [SMALL_STATE(4071)] = 146004, - [SMALL_STATE(4072)] = 146052, - [SMALL_STATE(4073)] = 146100, - [SMALL_STATE(4074)] = 146150, - [SMALL_STATE(4075)] = 146198, - [SMALL_STATE(4076)] = 146246, - [SMALL_STATE(4077)] = 146294, - [SMALL_STATE(4078)] = 146342, - [SMALL_STATE(4079)] = 146390, - [SMALL_STATE(4080)] = 146438, - [SMALL_STATE(4081)] = 146486, - [SMALL_STATE(4082)] = 146534, - [SMALL_STATE(4083)] = 146582, - [SMALL_STATE(4084)] = 146630, - [SMALL_STATE(4085)] = 146678, - [SMALL_STATE(4086)] = 146726, - [SMALL_STATE(4087)] = 146774, - [SMALL_STATE(4088)] = 146822, - [SMALL_STATE(4089)] = 146870, - [SMALL_STATE(4090)] = 146918, - [SMALL_STATE(4091)] = 146966, - [SMALL_STATE(4092)] = 147014, - [SMALL_STATE(4093)] = 147062, - [SMALL_STATE(4094)] = 147110, - [SMALL_STATE(4095)] = 147158, - [SMALL_STATE(4096)] = 147206, - [SMALL_STATE(4097)] = 147254, - [SMALL_STATE(4098)] = 147302, - [SMALL_STATE(4099)] = 147350, - [SMALL_STATE(4100)] = 147398, - [SMALL_STATE(4101)] = 147446, - [SMALL_STATE(4102)] = 147494, - [SMALL_STATE(4103)] = 147542, - [SMALL_STATE(4104)] = 147590, - [SMALL_STATE(4105)] = 147638, - [SMALL_STATE(4106)] = 147686, - [SMALL_STATE(4107)] = 147734, - [SMALL_STATE(4108)] = 147782, - [SMALL_STATE(4109)] = 147832, - [SMALL_STATE(4110)] = 147882, - [SMALL_STATE(4111)] = 147930, - [SMALL_STATE(4112)] = 147978, - [SMALL_STATE(4113)] = 148026, - [SMALL_STATE(4114)] = 148074, - [SMALL_STATE(4115)] = 148122, - [SMALL_STATE(4116)] = 148170, - [SMALL_STATE(4117)] = 148218, - [SMALL_STATE(4118)] = 148266, - [SMALL_STATE(4119)] = 148314, - [SMALL_STATE(4120)] = 148362, - [SMALL_STATE(4121)] = 148410, - [SMALL_STATE(4122)] = 148458, - [SMALL_STATE(4123)] = 148508, - [SMALL_STATE(4124)] = 148556, - [SMALL_STATE(4125)] = 148604, - [SMALL_STATE(4126)] = 148652, - [SMALL_STATE(4127)] = 148702, - [SMALL_STATE(4128)] = 148752, - [SMALL_STATE(4129)] = 148800, - [SMALL_STATE(4130)] = 148848, - [SMALL_STATE(4131)] = 148896, - [SMALL_STATE(4132)] = 148944, - [SMALL_STATE(4133)] = 148992, - [SMALL_STATE(4134)] = 149040, - [SMALL_STATE(4135)] = 149088, - [SMALL_STATE(4136)] = 149138, - [SMALL_STATE(4137)] = 149186, - [SMALL_STATE(4138)] = 149234, - [SMALL_STATE(4139)] = 149282, - [SMALL_STATE(4140)] = 149330, - [SMALL_STATE(4141)] = 149378, - [SMALL_STATE(4142)] = 149426, - [SMALL_STATE(4143)] = 149474, - [SMALL_STATE(4144)] = 149522, - [SMALL_STATE(4145)] = 149570, - [SMALL_STATE(4146)] = 149618, - [SMALL_STATE(4147)] = 149666, - [SMALL_STATE(4148)] = 149714, - [SMALL_STATE(4149)] = 149762, - [SMALL_STATE(4150)] = 149810, - [SMALL_STATE(4151)] = 149858, - [SMALL_STATE(4152)] = 149906, - [SMALL_STATE(4153)] = 149954, - [SMALL_STATE(4154)] = 150002, - [SMALL_STATE(4155)] = 150050, - [SMALL_STATE(4156)] = 150098, - [SMALL_STATE(4157)] = 150146, - [SMALL_STATE(4158)] = 150194, - [SMALL_STATE(4159)] = 150242, - [SMALL_STATE(4160)] = 150290, - [SMALL_STATE(4161)] = 150338, - [SMALL_STATE(4162)] = 150386, - [SMALL_STATE(4163)] = 150434, - [SMALL_STATE(4164)] = 150482, - [SMALL_STATE(4165)] = 150530, - [SMALL_STATE(4166)] = 150578, - [SMALL_STATE(4167)] = 150626, - [SMALL_STATE(4168)] = 150674, - [SMALL_STATE(4169)] = 150722, - [SMALL_STATE(4170)] = 150770, - [SMALL_STATE(4171)] = 150818, - [SMALL_STATE(4172)] = 150866, - [SMALL_STATE(4173)] = 150914, - [SMALL_STATE(4174)] = 150962, - [SMALL_STATE(4175)] = 151010, - [SMALL_STATE(4176)] = 151058, - [SMALL_STATE(4177)] = 151106, - [SMALL_STATE(4178)] = 151154, - [SMALL_STATE(4179)] = 151202, - [SMALL_STATE(4180)] = 151250, - [SMALL_STATE(4181)] = 151298, - [SMALL_STATE(4182)] = 151346, - [SMALL_STATE(4183)] = 151396, - [SMALL_STATE(4184)] = 151446, - [SMALL_STATE(4185)] = 151496, - [SMALL_STATE(4186)] = 151544, - [SMALL_STATE(4187)] = 151594, - [SMALL_STATE(4188)] = 151644, - [SMALL_STATE(4189)] = 151692, - [SMALL_STATE(4190)] = 151742, - [SMALL_STATE(4191)] = 151794, - [SMALL_STATE(4192)] = 151842, - [SMALL_STATE(4193)] = 151890, - [SMALL_STATE(4194)] = 151938, - [SMALL_STATE(4195)] = 151986, - [SMALL_STATE(4196)] = 152034, - [SMALL_STATE(4197)] = 152082, - [SMALL_STATE(4198)] = 152130, - [SMALL_STATE(4199)] = 152180, - [SMALL_STATE(4200)] = 152228, - [SMALL_STATE(4201)] = 152276, - [SMALL_STATE(4202)] = 152324, - [SMALL_STATE(4203)] = 152372, - [SMALL_STATE(4204)] = 152420, - [SMALL_STATE(4205)] = 152468, - [SMALL_STATE(4206)] = 152516, - [SMALL_STATE(4207)] = 152564, - [SMALL_STATE(4208)] = 152612, - [SMALL_STATE(4209)] = 152660, - [SMALL_STATE(4210)] = 152708, - [SMALL_STATE(4211)] = 152758, - [SMALL_STATE(4212)] = 152806, - [SMALL_STATE(4213)] = 152854, - [SMALL_STATE(4214)] = 152902, - [SMALL_STATE(4215)] = 152950, - [SMALL_STATE(4216)] = 153000, - [SMALL_STATE(4217)] = 153048, - [SMALL_STATE(4218)] = 153096, - [SMALL_STATE(4219)] = 153144, - [SMALL_STATE(4220)] = 153192, - [SMALL_STATE(4221)] = 153240, - [SMALL_STATE(4222)] = 153288, - [SMALL_STATE(4223)] = 153336, - [SMALL_STATE(4224)] = 153384, - [SMALL_STATE(4225)] = 153432, - [SMALL_STATE(4226)] = 153480, - [SMALL_STATE(4227)] = 153528, - [SMALL_STATE(4228)] = 153576, - [SMALL_STATE(4229)] = 153624, - [SMALL_STATE(4230)] = 153672, - [SMALL_STATE(4231)] = 153720, - [SMALL_STATE(4232)] = 153768, - [SMALL_STATE(4233)] = 153816, - [SMALL_STATE(4234)] = 153864, - [SMALL_STATE(4235)] = 153911, - [SMALL_STATE(4236)] = 153958, - [SMALL_STATE(4237)] = 154005, - [SMALL_STATE(4238)] = 154052, - [SMALL_STATE(4239)] = 154099, - [SMALL_STATE(4240)] = 154146, - [SMALL_STATE(4241)] = 154193, - [SMALL_STATE(4242)] = 154240, - [SMALL_STATE(4243)] = 154287, - [SMALL_STATE(4244)] = 154334, - [SMALL_STATE(4245)] = 154381, - [SMALL_STATE(4246)] = 154428, - [SMALL_STATE(4247)] = 154475, - [SMALL_STATE(4248)] = 154522, - [SMALL_STATE(4249)] = 154569, - [SMALL_STATE(4250)] = 154616, - [SMALL_STATE(4251)] = 154663, - [SMALL_STATE(4252)] = 154710, - [SMALL_STATE(4253)] = 154757, - [SMALL_STATE(4254)] = 154804, - [SMALL_STATE(4255)] = 154851, - [SMALL_STATE(4256)] = 154898, - [SMALL_STATE(4257)] = 154945, - [SMALL_STATE(4258)] = 154992, - [SMALL_STATE(4259)] = 155039, - [SMALL_STATE(4260)] = 155086, - [SMALL_STATE(4261)] = 155133, - [SMALL_STATE(4262)] = 155186, - [SMALL_STATE(4263)] = 155233, - [SMALL_STATE(4264)] = 155280, - [SMALL_STATE(4265)] = 155327, - [SMALL_STATE(4266)] = 155374, - [SMALL_STATE(4267)] = 155421, - [SMALL_STATE(4268)] = 155468, - [SMALL_STATE(4269)] = 155515, - [SMALL_STATE(4270)] = 155562, - [SMALL_STATE(4271)] = 155609, - [SMALL_STATE(4272)] = 155656, - [SMALL_STATE(4273)] = 155703, - [SMALL_STATE(4274)] = 155750, - [SMALL_STATE(4275)] = 155797, - [SMALL_STATE(4276)] = 155844, - [SMALL_STATE(4277)] = 155891, - [SMALL_STATE(4278)] = 155938, - [SMALL_STATE(4279)] = 155985, - [SMALL_STATE(4280)] = 156032, - [SMALL_STATE(4281)] = 156079, - [SMALL_STATE(4282)] = 156126, - [SMALL_STATE(4283)] = 156173, - [SMALL_STATE(4284)] = 156220, - [SMALL_STATE(4285)] = 156267, - [SMALL_STATE(4286)] = 156314, - [SMALL_STATE(4287)] = 156361, - [SMALL_STATE(4288)] = 156408, - [SMALL_STATE(4289)] = 156455, - [SMALL_STATE(4290)] = 156502, - [SMALL_STATE(4291)] = 156549, - [SMALL_STATE(4292)] = 156596, - [SMALL_STATE(4293)] = 156643, - [SMALL_STATE(4294)] = 156690, - [SMALL_STATE(4295)] = 156737, - [SMALL_STATE(4296)] = 156784, - [SMALL_STATE(4297)] = 156831, - [SMALL_STATE(4298)] = 156878, - [SMALL_STATE(4299)] = 156925, - [SMALL_STATE(4300)] = 156972, - [SMALL_STATE(4301)] = 157019, - [SMALL_STATE(4302)] = 157066, - [SMALL_STATE(4303)] = 157113, - [SMALL_STATE(4304)] = 157160, - [SMALL_STATE(4305)] = 157207, - [SMALL_STATE(4306)] = 157254, - [SMALL_STATE(4307)] = 157301, - [SMALL_STATE(4308)] = 157348, - [SMALL_STATE(4309)] = 157395, - [SMALL_STATE(4310)] = 157442, - [SMALL_STATE(4311)] = 157489, - [SMALL_STATE(4312)] = 157536, - [SMALL_STATE(4313)] = 157583, - [SMALL_STATE(4314)] = 157630, - [SMALL_STATE(4315)] = 157677, - [SMALL_STATE(4316)] = 157724, - [SMALL_STATE(4317)] = 157771, - [SMALL_STATE(4318)] = 157818, - [SMALL_STATE(4319)] = 157865, - [SMALL_STATE(4320)] = 157912, - [SMALL_STATE(4321)] = 157959, - [SMALL_STATE(4322)] = 158006, - [SMALL_STATE(4323)] = 158053, - [SMALL_STATE(4324)] = 158100, - [SMALL_STATE(4325)] = 158147, - [SMALL_STATE(4326)] = 158194, - [SMALL_STATE(4327)] = 158241, - [SMALL_STATE(4328)] = 158288, - [SMALL_STATE(4329)] = 158335, - [SMALL_STATE(4330)] = 158382, - [SMALL_STATE(4331)] = 158429, - [SMALL_STATE(4332)] = 158476, - [SMALL_STATE(4333)] = 158523, - [SMALL_STATE(4334)] = 158570, - [SMALL_STATE(4335)] = 158617, - [SMALL_STATE(4336)] = 158664, - [SMALL_STATE(4337)] = 158711, - [SMALL_STATE(4338)] = 158758, - [SMALL_STATE(4339)] = 158805, - [SMALL_STATE(4340)] = 158852, - [SMALL_STATE(4341)] = 158899, - [SMALL_STATE(4342)] = 158946, - [SMALL_STATE(4343)] = 158993, - [SMALL_STATE(4344)] = 159040, - [SMALL_STATE(4345)] = 159087, - [SMALL_STATE(4346)] = 159134, - [SMALL_STATE(4347)] = 159181, - [SMALL_STATE(4348)] = 159228, - [SMALL_STATE(4349)] = 159275, - [SMALL_STATE(4350)] = 159322, - [SMALL_STATE(4351)] = 159369, - [SMALL_STATE(4352)] = 159416, - [SMALL_STATE(4353)] = 159463, - [SMALL_STATE(4354)] = 159510, - [SMALL_STATE(4355)] = 159557, - [SMALL_STATE(4356)] = 159604, - [SMALL_STATE(4357)] = 159651, - [SMALL_STATE(4358)] = 159698, - [SMALL_STATE(4359)] = 159745, - [SMALL_STATE(4360)] = 159792, - [SMALL_STATE(4361)] = 159839, - [SMALL_STATE(4362)] = 159886, - [SMALL_STATE(4363)] = 159933, - [SMALL_STATE(4364)] = 159980, - [SMALL_STATE(4365)] = 160027, - [SMALL_STATE(4366)] = 160074, - [SMALL_STATE(4367)] = 160121, - [SMALL_STATE(4368)] = 160168, - [SMALL_STATE(4369)] = 160215, - [SMALL_STATE(4370)] = 160262, - [SMALL_STATE(4371)] = 160309, - [SMALL_STATE(4372)] = 160356, - [SMALL_STATE(4373)] = 160403, - [SMALL_STATE(4374)] = 160450, - [SMALL_STATE(4375)] = 160497, - [SMALL_STATE(4376)] = 160544, - [SMALL_STATE(4377)] = 160591, - [SMALL_STATE(4378)] = 160638, - [SMALL_STATE(4379)] = 160685, - [SMALL_STATE(4380)] = 160732, - [SMALL_STATE(4381)] = 160779, - [SMALL_STATE(4382)] = 160826, - [SMALL_STATE(4383)] = 160873, - [SMALL_STATE(4384)] = 160920, - [SMALL_STATE(4385)] = 160967, - [SMALL_STATE(4386)] = 161014, - [SMALL_STATE(4387)] = 161061, - [SMALL_STATE(4388)] = 161108, - [SMALL_STATE(4389)] = 161155, - [SMALL_STATE(4390)] = 161202, - [SMALL_STATE(4391)] = 161249, - [SMALL_STATE(4392)] = 161296, - [SMALL_STATE(4393)] = 161343, - [SMALL_STATE(4394)] = 161390, - [SMALL_STATE(4395)] = 161437, - [SMALL_STATE(4396)] = 161484, - [SMALL_STATE(4397)] = 161531, - [SMALL_STATE(4398)] = 161578, - [SMALL_STATE(4399)] = 161625, - [SMALL_STATE(4400)] = 161672, - [SMALL_STATE(4401)] = 161719, - [SMALL_STATE(4402)] = 161766, - [SMALL_STATE(4403)] = 161813, - [SMALL_STATE(4404)] = 161860, - [SMALL_STATE(4405)] = 161907, - [SMALL_STATE(4406)] = 161954, - [SMALL_STATE(4407)] = 162001, - [SMALL_STATE(4408)] = 162048, - [SMALL_STATE(4409)] = 162095, - [SMALL_STATE(4410)] = 162142, - [SMALL_STATE(4411)] = 162189, - [SMALL_STATE(4412)] = 162236, - [SMALL_STATE(4413)] = 162283, - [SMALL_STATE(4414)] = 162330, - [SMALL_STATE(4415)] = 162377, - [SMALL_STATE(4416)] = 162424, - [SMALL_STATE(4417)] = 162471, - [SMALL_STATE(4418)] = 162518, - [SMALL_STATE(4419)] = 162565, - [SMALL_STATE(4420)] = 162612, - [SMALL_STATE(4421)] = 162659, - [SMALL_STATE(4422)] = 162706, - [SMALL_STATE(4423)] = 162753, - [SMALL_STATE(4424)] = 162800, - [SMALL_STATE(4425)] = 162847, - [SMALL_STATE(4426)] = 162894, - [SMALL_STATE(4427)] = 162941, - [SMALL_STATE(4428)] = 162988, - [SMALL_STATE(4429)] = 163035, - [SMALL_STATE(4430)] = 163082, - [SMALL_STATE(4431)] = 163129, - [SMALL_STATE(4432)] = 163176, - [SMALL_STATE(4433)] = 163223, - [SMALL_STATE(4434)] = 163270, - [SMALL_STATE(4435)] = 163317, - [SMALL_STATE(4436)] = 163364, - [SMALL_STATE(4437)] = 163411, - [SMALL_STATE(4438)] = 163458, - [SMALL_STATE(4439)] = 163505, - [SMALL_STATE(4440)] = 163552, - [SMALL_STATE(4441)] = 163599, - [SMALL_STATE(4442)] = 163646, - [SMALL_STATE(4443)] = 163693, - [SMALL_STATE(4444)] = 163740, - [SMALL_STATE(4445)] = 163787, - [SMALL_STATE(4446)] = 163834, - [SMALL_STATE(4447)] = 163881, - [SMALL_STATE(4448)] = 163928, - [SMALL_STATE(4449)] = 163975, - [SMALL_STATE(4450)] = 164022, - [SMALL_STATE(4451)] = 164069, - [SMALL_STATE(4452)] = 164116, - [SMALL_STATE(4453)] = 164163, - [SMALL_STATE(4454)] = 164210, - [SMALL_STATE(4455)] = 164257, - [SMALL_STATE(4456)] = 164304, - [SMALL_STATE(4457)] = 164350, - [SMALL_STATE(4458)] = 164412, - [SMALL_STATE(4459)] = 164470, - [SMALL_STATE(4460)] = 164516, - [SMALL_STATE(4461)] = 164601, - [SMALL_STATE(4462)] = 164656, - [SMALL_STATE(4463)] = 164741, - [SMALL_STATE(4464)] = 164826, - [SMALL_STATE(4465)] = 164911, - [SMALL_STATE(4466)] = 164996, - [SMALL_STATE(4467)] = 165081, - [SMALL_STATE(4468)] = 165166, - [SMALL_STATE(4469)] = 165251, - [SMALL_STATE(4470)] = 165336, - [SMALL_STATE(4471)] = 165421, - [SMALL_STATE(4472)] = 165506, - [SMALL_STATE(4473)] = 165591, - [SMALL_STATE(4474)] = 165676, - [SMALL_STATE(4475)] = 165761, - [SMALL_STATE(4476)] = 165846, - [SMALL_STATE(4477)] = 165931, - [SMALL_STATE(4478)] = 165975, - [SMALL_STATE(4479)] = 166023, - [SMALL_STATE(4480)] = 166067, - [SMALL_STATE(4481)] = 166111, - [SMALL_STATE(4482)] = 166155, - [SMALL_STATE(4483)] = 166199, - [SMALL_STATE(4484)] = 166251, - [SMALL_STATE(4485)] = 166295, - [SMALL_STATE(4486)] = 166339, - [SMALL_STATE(4487)] = 166383, - [SMALL_STATE(4488)] = 166427, - [SMALL_STATE(4489)] = 166471, - [SMALL_STATE(4490)] = 166515, - [SMALL_STATE(4491)] = 166559, - [SMALL_STATE(4492)] = 166603, - [SMALL_STATE(4493)] = 166652, - [SMALL_STATE(4494)] = 166699, - [SMALL_STATE(4495)] = 166748, - [SMALL_STATE(4496)] = 166794, - [SMALL_STATE(4497)] = 166840, - [SMALL_STATE(4498)] = 166882, - [SMALL_STATE(4499)] = 166926, - [SMALL_STATE(4500)] = 166968, - [SMALL_STATE(4501)] = 167014, - [SMALL_STATE(4502)] = 167060, - [SMALL_STATE(4503)] = 167102, - [SMALL_STATE(4504)] = 167146, - [SMALL_STATE(4505)] = 167188, - [SMALL_STATE(4506)] = 167229, - [SMALL_STATE(4507)] = 167270, - [SMALL_STATE(4508)] = 167313, - [SMALL_STATE(4509)] = 167356, - [SMALL_STATE(4510)] = 167391, - [SMALL_STATE(4511)] = 167426, - [SMALL_STATE(4512)] = 167473, - [SMALL_STATE(4513)] = 167520, - [SMALL_STATE(4514)] = 167567, - [SMALL_STATE(4515)] = 167602, - [SMALL_STATE(4516)] = 167636, - [SMALL_STATE(4517)] = 167670, - [SMALL_STATE(4518)] = 167703, - [SMALL_STATE(4519)] = 167736, - [SMALL_STATE(4520)] = 167769, - [SMALL_STATE(4521)] = 167802, - [SMALL_STATE(4522)] = 167835, - [SMALL_STATE(4523)] = 167868, - [SMALL_STATE(4524)] = 167901, - [SMALL_STATE(4525)] = 167934, - [SMALL_STATE(4526)] = 167967, - [SMALL_STATE(4527)] = 168000, - [SMALL_STATE(4528)] = 168033, - [SMALL_STATE(4529)] = 168066, - [SMALL_STATE(4530)] = 168099, - [SMALL_STATE(4531)] = 168132, - [SMALL_STATE(4532)] = 168165, - [SMALL_STATE(4533)] = 168198, - [SMALL_STATE(4534)] = 168231, - [SMALL_STATE(4535)] = 168264, - [SMALL_STATE(4536)] = 168297, - [SMALL_STATE(4537)] = 168330, - [SMALL_STATE(4538)] = 168363, - [SMALL_STATE(4539)] = 168396, - [SMALL_STATE(4540)] = 168429, - [SMALL_STATE(4541)] = 168462, - [SMALL_STATE(4542)] = 168495, - [SMALL_STATE(4543)] = 168528, - [SMALL_STATE(4544)] = 168561, - [SMALL_STATE(4545)] = 168602, - [SMALL_STATE(4546)] = 168635, - [SMALL_STATE(4547)] = 168668, - [SMALL_STATE(4548)] = 168701, - [SMALL_STATE(4549)] = 168734, - [SMALL_STATE(4550)] = 168767, - [SMALL_STATE(4551)] = 168800, - [SMALL_STATE(4552)] = 168833, - [SMALL_STATE(4553)] = 168866, - [SMALL_STATE(4554)] = 168899, - [SMALL_STATE(4555)] = 168953, - [SMALL_STATE(4556)] = 169007, - [SMALL_STATE(4557)] = 169061, - [SMALL_STATE(4558)] = 169115, - [SMALL_STATE(4559)] = 169169, - [SMALL_STATE(4560)] = 169223, - [SMALL_STATE(4561)] = 169261, - [SMALL_STATE(4562)] = 169315, - [SMALL_STATE(4563)] = 169346, - [SMALL_STATE(4564)] = 169377, - [SMALL_STATE(4565)] = 169408, - [SMALL_STATE(4566)] = 169439, - [SMALL_STATE(4567)] = 169470, - [SMALL_STATE(4568)] = 169503, - [SMALL_STATE(4569)] = 169534, - [SMALL_STATE(4570)] = 169565, - [SMALL_STATE(4571)] = 169596, - [SMALL_STATE(4572)] = 169627, - [SMALL_STATE(4573)] = 169658, - [SMALL_STATE(4574)] = 169689, - [SMALL_STATE(4575)] = 169720, - [SMALL_STATE(4576)] = 169763, - [SMALL_STATE(4577)] = 169794, - [SMALL_STATE(4578)] = 169825, - [SMALL_STATE(4579)] = 169860, - [SMALL_STATE(4580)] = 169903, - [SMALL_STATE(4581)] = 169934, - [SMALL_STATE(4582)] = 169965, - [SMALL_STATE(4583)] = 169996, - [SMALL_STATE(4584)] = 170039, - [SMALL_STATE(4585)] = 170074, - [SMALL_STATE(4586)] = 170105, - [SMALL_STATE(4587)] = 170138, - [SMALL_STATE(4588)] = 170169, - [SMALL_STATE(4589)] = 170199, - [SMALL_STATE(4590)] = 170231, - [SMALL_STATE(4591)] = 170263, - [SMALL_STATE(4592)] = 170295, - [SMALL_STATE(4593)] = 170325, - [SMALL_STATE(4594)] = 170354, - [SMALL_STATE(4595)] = 170393, - [SMALL_STATE(4596)] = 170422, - [SMALL_STATE(4597)] = 170451, - [SMALL_STATE(4598)] = 170486, - [SMALL_STATE(4599)] = 170515, - [SMALL_STATE(4600)] = 170546, - [SMALL_STATE(4601)] = 170575, - [SMALL_STATE(4602)] = 170604, - [SMALL_STATE(4603)] = 170633, - [SMALL_STATE(4604)] = 170660, - [SMALL_STATE(4605)] = 170689, - [SMALL_STATE(4606)] = 170716, - [SMALL_STATE(4607)] = 170755, - [SMALL_STATE(4608)] = 170784, - [SMALL_STATE(4609)] = 170813, - [SMALL_STATE(4610)] = 170848, - [SMALL_STATE(4611)] = 170877, - [SMALL_STATE(4612)] = 170906, - [SMALL_STATE(4613)] = 170935, - [SMALL_STATE(4614)] = 170964, - [SMALL_STATE(4615)] = 170991, - [SMALL_STATE(4616)] = 171022, - [SMALL_STATE(4617)] = 171049, - [SMALL_STATE(4618)] = 171078, - [SMALL_STATE(4619)] = 171107, - [SMALL_STATE(4620)] = 171136, - [SMALL_STATE(4621)] = 171167, - [SMALL_STATE(4622)] = 171196, - [SMALL_STATE(4623)] = 171225, - [SMALL_STATE(4624)] = 171254, - [SMALL_STATE(4625)] = 171283, - [SMALL_STATE(4626)] = 171312, - [SMALL_STATE(4627)] = 171349, - [SMALL_STATE(4628)] = 171388, - [SMALL_STATE(4629)] = 171427, - [SMALL_STATE(4630)] = 171456, - [SMALL_STATE(4631)] = 171485, - [SMALL_STATE(4632)] = 171516, - [SMALL_STATE(4633)] = 171545, - [SMALL_STATE(4634)] = 171572, - [SMALL_STATE(4635)] = 171607, - [SMALL_STATE(4636)] = 171646, - [SMALL_STATE(4637)] = 171675, - [SMALL_STATE(4638)] = 171712, - [SMALL_STATE(4639)] = 171741, - [SMALL_STATE(4640)] = 171770, - [SMALL_STATE(4641)] = 171809, - [SMALL_STATE(4642)] = 171848, - [SMALL_STATE(4643)] = 171883, - [SMALL_STATE(4644)] = 171920, - [SMALL_STATE(4645)] = 171959, - [SMALL_STATE(4646)] = 171986, - [SMALL_STATE(4647)] = 172025, - [SMALL_STATE(4648)] = 172054, - [SMALL_STATE(4649)] = 172083, - [SMALL_STATE(4650)] = 172112, - [SMALL_STATE(4651)] = 172141, - [SMALL_STATE(4652)] = 172178, - [SMALL_STATE(4653)] = 172207, - [SMALL_STATE(4654)] = 172236, - [SMALL_STATE(4655)] = 172275, - [SMALL_STATE(4656)] = 172304, - [SMALL_STATE(4657)] = 172339, - [SMALL_STATE(4658)] = 172368, - [SMALL_STATE(4659)] = 172397, - [SMALL_STATE(4660)] = 172426, - [SMALL_STATE(4661)] = 172453, - [SMALL_STATE(4662)] = 172482, - [SMALL_STATE(4663)] = 172511, - [SMALL_STATE(4664)] = 172540, - [SMALL_STATE(4665)] = 172569, - [SMALL_STATE(4666)] = 172608, - [SMALL_STATE(4667)] = 172637, - [SMALL_STATE(4668)] = 172666, - [SMALL_STATE(4669)] = 172705, - [SMALL_STATE(4670)] = 172736, - [SMALL_STATE(4671)] = 172765, - [SMALL_STATE(4672)] = 172794, - [SMALL_STATE(4673)] = 172833, - [SMALL_STATE(4674)] = 172862, - [SMALL_STATE(4675)] = 172891, - [SMALL_STATE(4676)] = 172920, - [SMALL_STATE(4677)] = 172949, - [SMALL_STATE(4678)] = 172978, - [SMALL_STATE(4679)] = 173007, - [SMALL_STATE(4680)] = 173044, - [SMALL_STATE(4681)] = 173073, - [SMALL_STATE(4682)] = 173102, - [SMALL_STATE(4683)] = 173137, - [SMALL_STATE(4684)] = 173166, - [SMALL_STATE(4685)] = 173195, - [SMALL_STATE(4686)] = 173224, - [SMALL_STATE(4687)] = 173251, - [SMALL_STATE(4688)] = 173286, - [SMALL_STATE(4689)] = 173315, - [SMALL_STATE(4690)] = 173342, - [SMALL_STATE(4691)] = 173371, - [SMALL_STATE(4692)] = 173410, - [SMALL_STATE(4693)] = 173439, - [SMALL_STATE(4694)] = 173478, - [SMALL_STATE(4695)] = 173507, - [SMALL_STATE(4696)] = 173546, - [SMALL_STATE(4697)] = 173585, - [SMALL_STATE(4698)] = 173614, - [SMALL_STATE(4699)] = 173643, - [SMALL_STATE(4700)] = 173676, - [SMALL_STATE(4701)] = 173705, - [SMALL_STATE(4702)] = 173744, - [SMALL_STATE(4703)] = 173773, - [SMALL_STATE(4704)] = 173810, - [SMALL_STATE(4705)] = 173858, - [SMALL_STATE(4706)] = 173906, - [SMALL_STATE(4707)] = 173954, - [SMALL_STATE(4708)] = 173998, - [SMALL_STATE(4709)] = 174042, - [SMALL_STATE(4710)] = 174090, - [SMALL_STATE(4711)] = 174138, - [SMALL_STATE(4712)] = 174186, - [SMALL_STATE(4713)] = 174234, - [SMALL_STATE(4714)] = 174268, - [SMALL_STATE(4715)] = 174316, - [SMALL_STATE(4716)] = 174364, - [SMALL_STATE(4717)] = 174412, - [SMALL_STATE(4718)] = 174460, - [SMALL_STATE(4719)] = 174508, - [SMALL_STATE(4720)] = 174556, - [SMALL_STATE(4721)] = 174604, - [SMALL_STATE(4722)] = 174652, - [SMALL_STATE(4723)] = 174700, - [SMALL_STATE(4724)] = 174748, - [SMALL_STATE(4725)] = 174796, - [SMALL_STATE(4726)] = 174844, - [SMALL_STATE(4727)] = 174892, - [SMALL_STATE(4728)] = 174940, - [SMALL_STATE(4729)] = 174984, - [SMALL_STATE(4730)] = 175032, - [SMALL_STATE(4731)] = 175076, - [SMALL_STATE(4732)] = 175120, - [SMALL_STATE(4733)] = 175168, - [SMALL_STATE(4734)] = 175202, - [SMALL_STATE(4735)] = 175234, - [SMALL_STATE(4736)] = 175282, - [SMALL_STATE(4737)] = 175330, - [SMALL_STATE(4738)] = 175378, - [SMALL_STATE(4739)] = 175426, - [SMALL_STATE(4740)] = 175474, - [SMALL_STATE(4741)] = 175508, - [SMALL_STATE(4742)] = 175552, - [SMALL_STATE(4743)] = 175586, - [SMALL_STATE(4744)] = 175620, - [SMALL_STATE(4745)] = 175654, - [SMALL_STATE(4746)] = 175702, - [SMALL_STATE(4747)] = 175750, - [SMALL_STATE(4748)] = 175791, - [SMALL_STATE(4749)] = 175816, - [SMALL_STATE(4750)] = 175843, - [SMALL_STATE(4751)] = 175870, - [SMALL_STATE(4752)] = 175897, - [SMALL_STATE(4753)] = 175930, - [SMALL_STATE(4754)] = 175971, - [SMALL_STATE(4755)] = 176012, - [SMALL_STATE(4756)] = 176053, - [SMALL_STATE(4757)] = 176080, - [SMALL_STATE(4758)] = 176107, - [SMALL_STATE(4759)] = 176134, - [SMALL_STATE(4760)] = 176175, - [SMALL_STATE(4761)] = 176200, - [SMALL_STATE(4762)] = 176225, - [SMALL_STATE(4763)] = 176268, - [SMALL_STATE(4764)] = 176309, - [SMALL_STATE(4765)] = 176334, - [SMALL_STATE(4766)] = 176363, - [SMALL_STATE(4767)] = 176388, - [SMALL_STATE(4768)] = 176413, - [SMALL_STATE(4769)] = 176438, - [SMALL_STATE(4770)] = 176463, - [SMALL_STATE(4771)] = 176494, - [SMALL_STATE(4772)] = 176519, - [SMALL_STATE(4773)] = 176544, - [SMALL_STATE(4774)] = 176569, - [SMALL_STATE(4775)] = 176594, - [SMALL_STATE(4776)] = 176619, - [SMALL_STATE(4777)] = 176644, - [SMALL_STATE(4778)] = 176671, - [SMALL_STATE(4779)] = 176696, - [SMALL_STATE(4780)] = 176737, - [SMALL_STATE(4781)] = 176762, - [SMALL_STATE(4782)] = 176787, - [SMALL_STATE(4783)] = 176812, - [SMALL_STATE(4784)] = 176837, - [SMALL_STATE(4785)] = 176862, - [SMALL_STATE(4786)] = 176887, - [SMALL_STATE(4787)] = 176912, - [SMALL_STATE(4788)] = 176937, - [SMALL_STATE(4789)] = 176962, - [SMALL_STATE(4790)] = 176987, - [SMALL_STATE(4791)] = 177028, - [SMALL_STATE(4792)] = 177055, - [SMALL_STATE(4793)] = 177096, - [SMALL_STATE(4794)] = 177123, - [SMALL_STATE(4795)] = 177150, - [SMALL_STATE(4796)] = 177175, - [SMALL_STATE(4797)] = 177204, - [SMALL_STATE(4798)] = 177231, - [SMALL_STATE(4799)] = 177272, - [SMALL_STATE(4800)] = 177299, - [SMALL_STATE(4801)] = 177324, - [SMALL_STATE(4802)] = 177351, - [SMALL_STATE(4803)] = 177376, - [SMALL_STATE(4804)] = 177407, - [SMALL_STATE(4805)] = 177432, - [SMALL_STATE(4806)] = 177457, - [SMALL_STATE(4807)] = 177484, - [SMALL_STATE(4808)] = 177511, - [SMALL_STATE(4809)] = 177544, - [SMALL_STATE(4810)] = 177571, - [SMALL_STATE(4811)] = 177598, - [SMALL_STATE(4812)] = 177623, - [SMALL_STATE(4813)] = 177648, - [SMALL_STATE(4814)] = 177673, - [SMALL_STATE(4815)] = 177698, - [SMALL_STATE(4816)] = 177740, - [SMALL_STATE(4817)] = 177770, - [SMALL_STATE(4818)] = 177806, - [SMALL_STATE(4819)] = 177834, - [SMALL_STATE(4820)] = 177876, - [SMALL_STATE(4821)] = 177914, - [SMALL_STATE(4822)] = 177948, - [SMALL_STATE(4823)] = 177992, - [SMALL_STATE(4824)] = 178030, - [SMALL_STATE(4825)] = 178068, - [SMALL_STATE(4826)] = 178102, - [SMALL_STATE(4827)] = 178144, - [SMALL_STATE(4828)] = 178178, - [SMALL_STATE(4829)] = 178206, - [SMALL_STATE(4830)] = 178232, - [SMALL_STATE(4831)] = 178274, - [SMALL_STATE(4832)] = 178318, - [SMALL_STATE(4833)] = 178356, - [SMALL_STATE(4834)] = 178394, - [SMALL_STATE(4835)] = 178436, - [SMALL_STATE(4836)] = 178478, - [SMALL_STATE(4837)] = 178520, - [SMALL_STATE(4838)] = 178562, - [SMALL_STATE(4839)] = 178588, - [SMALL_STATE(4840)] = 178630, - [SMALL_STATE(4841)] = 178674, - [SMALL_STATE(4842)] = 178718, - [SMALL_STATE(4843)] = 178756, - [SMALL_STATE(4844)] = 178800, - [SMALL_STATE(4845)] = 178842, - [SMALL_STATE(4846)] = 178884, - [SMALL_STATE(4847)] = 178922, - [SMALL_STATE(4848)] = 178958, - [SMALL_STATE(4849)] = 178996, - [SMALL_STATE(4850)] = 179038, - [SMALL_STATE(4851)] = 179080, - [SMALL_STATE(4852)] = 179122, - [SMALL_STATE(4853)] = 179156, - [SMALL_STATE(4854)] = 179190, - [SMALL_STATE(4855)] = 179228, - [SMALL_STATE(4856)] = 179272, - [SMALL_STATE(4857)] = 179314, - [SMALL_STATE(4858)] = 179356, - [SMALL_STATE(4859)] = 179394, - [SMALL_STATE(4860)] = 179436, - [SMALL_STATE(4861)] = 179480, - [SMALL_STATE(4862)] = 179522, - [SMALL_STATE(4863)] = 179556, - [SMALL_STATE(4864)] = 179584, - [SMALL_STATE(4865)] = 179626, - [SMALL_STATE(4866)] = 179668, - [SMALL_STATE(4867)] = 179710, - [SMALL_STATE(4868)] = 179752, - [SMALL_STATE(4869)] = 179794, - [SMALL_STATE(4870)] = 179819, - [SMALL_STATE(4871)] = 179844, - [SMALL_STATE(4872)] = 179869, - [SMALL_STATE(4873)] = 179892, - [SMALL_STATE(4874)] = 179921, - [SMALL_STATE(4875)] = 179946, - [SMALL_STATE(4876)] = 179973, - [SMALL_STATE(4877)] = 179998, - [SMALL_STATE(4878)] = 180021, - [SMALL_STATE(4879)] = 180044, - [SMALL_STATE(4880)] = 180067, - [SMALL_STATE(4881)] = 180092, - [SMALL_STATE(4882)] = 180119, - [SMALL_STATE(4883)] = 180144, - [SMALL_STATE(4884)] = 180167, - [SMALL_STATE(4885)] = 180210, - [SMALL_STATE(4886)] = 180235, - [SMALL_STATE(4887)] = 180258, - [SMALL_STATE(4888)] = 180283, - [SMALL_STATE(4889)] = 180312, - [SMALL_STATE(4890)] = 180335, - [SMALL_STATE(4891)] = 180364, - [SMALL_STATE(4892)] = 180387, - [SMALL_STATE(4893)] = 180412, - [SMALL_STATE(4894)] = 180435, - [SMALL_STATE(4895)] = 180460, - [SMALL_STATE(4896)] = 180485, - [SMALL_STATE(4897)] = 180510, - [SMALL_STATE(4898)] = 180535, - [SMALL_STATE(4899)] = 180560, - [SMALL_STATE(4900)] = 180587, - [SMALL_STATE(4901)] = 180612, - [SMALL_STATE(4902)] = 180637, - [SMALL_STATE(4903)] = 180662, - [SMALL_STATE(4904)] = 180689, - [SMALL_STATE(4905)] = 180714, - [SMALL_STATE(4906)] = 180739, - [SMALL_STATE(4907)] = 180768, - [SMALL_STATE(4908)] = 180797, - [SMALL_STATE(4909)] = 180822, - [SMALL_STATE(4910)] = 180847, - [SMALL_STATE(4911)] = 180872, - [SMALL_STATE(4912)] = 180897, - [SMALL_STATE(4913)] = 180926, - [SMALL_STATE(4914)] = 180951, - [SMALL_STATE(4915)] = 180976, - [SMALL_STATE(4916)] = 181001, - [SMALL_STATE(4917)] = 181026, - [SMALL_STATE(4918)] = 181051, - [SMALL_STATE(4919)] = 181076, - [SMALL_STATE(4920)] = 181107, - [SMALL_STATE(4921)] = 181132, - [SMALL_STATE(4922)] = 181159, - [SMALL_STATE(4923)] = 181184, - [SMALL_STATE(4924)] = 181209, - [SMALL_STATE(4925)] = 181234, - [SMALL_STATE(4926)] = 181259, - [SMALL_STATE(4927)] = 181284, - [SMALL_STATE(4928)] = 181309, - [SMALL_STATE(4929)] = 181336, - [SMALL_STATE(4930)] = 181363, - [SMALL_STATE(4931)] = 181392, - [SMALL_STATE(4932)] = 181421, - [SMALL_STATE(4933)] = 181446, - [SMALL_STATE(4934)] = 181486, - [SMALL_STATE(4935)] = 181514, - [SMALL_STATE(4936)] = 181554, - [SMALL_STATE(4937)] = 181594, - [SMALL_STATE(4938)] = 181616, - [SMALL_STATE(4939)] = 181640, - [SMALL_STATE(4940)] = 181664, - [SMALL_STATE(4941)] = 181704, - [SMALL_STATE(4942)] = 181744, - [SMALL_STATE(4943)] = 181770, - [SMALL_STATE(4944)] = 181810, - [SMALL_STATE(4945)] = 181850, - [SMALL_STATE(4946)] = 181890, - [SMALL_STATE(4947)] = 181912, - [SMALL_STATE(4948)] = 181952, - [SMALL_STATE(4949)] = 181990, - [SMALL_STATE(4950)] = 182030, - [SMALL_STATE(4951)] = 182068, - [SMALL_STATE(4952)] = 182108, - [SMALL_STATE(4953)] = 182148, - [SMALL_STATE(4954)] = 182188, - [SMALL_STATE(4955)] = 182228, - [SMALL_STATE(4956)] = 182262, - [SMALL_STATE(4957)] = 182302, - [SMALL_STATE(4958)] = 182336, - [SMALL_STATE(4959)] = 182376, - [SMALL_STATE(4960)] = 182400, - [SMALL_STATE(4961)] = 182428, - [SMALL_STATE(4962)] = 182468, - [SMALL_STATE(4963)] = 182508, - [SMALL_STATE(4964)] = 182548, - [SMALL_STATE(4965)] = 182588, - [SMALL_STATE(4966)] = 182628, - [SMALL_STATE(4967)] = 182654, - [SMALL_STATE(4968)] = 182680, - [SMALL_STATE(4969)] = 182718, - [SMALL_STATE(4970)] = 182758, - [SMALL_STATE(4971)] = 182786, - [SMALL_STATE(4972)] = 182826, - [SMALL_STATE(4973)] = 182847, - [SMALL_STATE(4974)] = 182880, - [SMALL_STATE(4975)] = 182917, - [SMALL_STATE(4976)] = 182950, - [SMALL_STATE(4977)] = 182971, - [SMALL_STATE(4978)] = 183004, - [SMALL_STATE(4979)] = 183035, - [SMALL_STATE(4980)] = 183072, - [SMALL_STATE(4981)] = 183103, - [SMALL_STATE(4982)] = 183140, - [SMALL_STATE(4983)] = 183161, - [SMALL_STATE(4984)] = 183194, - [SMALL_STATE(4985)] = 183215, - [SMALL_STATE(4986)] = 183236, - [SMALL_STATE(4987)] = 183269, - [SMALL_STATE(4988)] = 183300, - [SMALL_STATE(4989)] = 183333, - [SMALL_STATE(4990)] = 183370, - [SMALL_STATE(4991)] = 183401, - [SMALL_STATE(4992)] = 183422, - [SMALL_STATE(4993)] = 183453, - [SMALL_STATE(4994)] = 183490, - [SMALL_STATE(4995)] = 183523, - [SMALL_STATE(4996)] = 183554, - [SMALL_STATE(4997)] = 183591, - [SMALL_STATE(4998)] = 183628, - [SMALL_STATE(4999)] = 183663, - [SMALL_STATE(5000)] = 183700, - [SMALL_STATE(5001)] = 183737, - [SMALL_STATE(5002)] = 183760, - [SMALL_STATE(5003)] = 183797, - [SMALL_STATE(5004)] = 183834, - [SMALL_STATE(5005)] = 183857, - [SMALL_STATE(5006)] = 183884, - [SMALL_STATE(5007)] = 183909, - [SMALL_STATE(5008)] = 183946, - [SMALL_STATE(5009)] = 183973, - [SMALL_STATE(5010)] = 184010, - [SMALL_STATE(5011)] = 184037, - [SMALL_STATE(5012)] = 184074, - [SMALL_STATE(5013)] = 184095, - [SMALL_STATE(5014)] = 184116, - [SMALL_STATE(5015)] = 184143, - [SMALL_STATE(5016)] = 184172, - [SMALL_STATE(5017)] = 184193, - [SMALL_STATE(5018)] = 184214, - [SMALL_STATE(5019)] = 184235, - [SMALL_STATE(5020)] = 184256, - [SMALL_STATE(5021)] = 184277, - [SMALL_STATE(5022)] = 184308, - [SMALL_STATE(5023)] = 184337, - [SMALL_STATE(5024)] = 184374, - [SMALL_STATE(5025)] = 184395, - [SMALL_STATE(5026)] = 184428, - [SMALL_STATE(5027)] = 184463, - [SMALL_STATE(5028)] = 184496, - [SMALL_STATE(5029)] = 184533, - [SMALL_STATE(5030)] = 184570, - [SMALL_STATE(5031)] = 184591, - [SMALL_STATE(5032)] = 184628, - [SMALL_STATE(5033)] = 184661, - [SMALL_STATE(5034)] = 184694, - [SMALL_STATE(5035)] = 184717, - [SMALL_STATE(5036)] = 184740, - [SMALL_STATE(5037)] = 184777, - [SMALL_STATE(5038)] = 184810, - [SMALL_STATE(5039)] = 184843, - [SMALL_STATE(5040)] = 184880, - [SMALL_STATE(5041)] = 184911, - [SMALL_STATE(5042)] = 184948, - [SMALL_STATE(5043)] = 184985, - [SMALL_STATE(5044)] = 185018, - [SMALL_STATE(5045)] = 185055, - [SMALL_STATE(5046)] = 185086, - [SMALL_STATE(5047)] = 185123, - [SMALL_STATE(5048)] = 185156, - [SMALL_STATE(5049)] = 185193, - [SMALL_STATE(5050)] = 185218, - [SMALL_STATE(5051)] = 185251, - [SMALL_STATE(5052)] = 185288, - [SMALL_STATE(5053)] = 185325, - [SMALL_STATE(5054)] = 185346, - [SMALL_STATE(5055)] = 185367, - [SMALL_STATE(5056)] = 185400, - [SMALL_STATE(5057)] = 185421, - [SMALL_STATE(5058)] = 185442, - [SMALL_STATE(5059)] = 185479, - [SMALL_STATE(5060)] = 185516, - [SMALL_STATE(5061)] = 185537, - [SMALL_STATE(5062)] = 185574, - [SMALL_STATE(5063)] = 185595, - [SMALL_STATE(5064)] = 185616, - [SMALL_STATE(5065)] = 185649, - [SMALL_STATE(5066)] = 185686, - [SMALL_STATE(5067)] = 185717, - [SMALL_STATE(5068)] = 185738, - [SMALL_STATE(5069)] = 185759, - [SMALL_STATE(5070)] = 185782, - [SMALL_STATE(5071)] = 185803, - [SMALL_STATE(5072)] = 185840, - [SMALL_STATE(5073)] = 185877, - [SMALL_STATE(5074)] = 185904, - [SMALL_STATE(5075)] = 185925, - [SMALL_STATE(5076)] = 185946, - [SMALL_STATE(5077)] = 185979, - [SMALL_STATE(5078)] = 186000, - [SMALL_STATE(5079)] = 186021, - [SMALL_STATE(5080)] = 186058, - [SMALL_STATE(5081)] = 186095, - [SMALL_STATE(5082)] = 186132, - [SMALL_STATE(5083)] = 186169, - [SMALL_STATE(5084)] = 186204, - [SMALL_STATE(5085)] = 186237, - [SMALL_STATE(5086)] = 186268, - [SMALL_STATE(5087)] = 186301, - [SMALL_STATE(5088)] = 186334, - [SMALL_STATE(5089)] = 186355, - [SMALL_STATE(5090)] = 186388, - [SMALL_STATE(5091)] = 186419, - [SMALL_STATE(5092)] = 186452, - [SMALL_STATE(5093)] = 186489, - [SMALL_STATE(5094)] = 186510, - [SMALL_STATE(5095)] = 186547, - [SMALL_STATE(5096)] = 186584, - [SMALL_STATE(5097)] = 186621, - [SMALL_STATE(5098)] = 186658, - [SMALL_STATE(5099)] = 186695, - [SMALL_STATE(5100)] = 186716, - [SMALL_STATE(5101)] = 186737, - [SMALL_STATE(5102)] = 186770, - [SMALL_STATE(5103)] = 186807, - [SMALL_STATE(5104)] = 186840, - [SMALL_STATE(5105)] = 186873, - [SMALL_STATE(5106)] = 186894, - [SMALL_STATE(5107)] = 186915, - [SMALL_STATE(5108)] = 186952, - [SMALL_STATE(5109)] = 186989, - [SMALL_STATE(5110)] = 187010, - [SMALL_STATE(5111)] = 187031, - [SMALL_STATE(5112)] = 187064, - [SMALL_STATE(5113)] = 187085, - [SMALL_STATE(5114)] = 187118, - [SMALL_STATE(5115)] = 187139, - [SMALL_STATE(5116)] = 187176, - [SMALL_STATE(5117)] = 187213, - [SMALL_STATE(5118)] = 187234, - [SMALL_STATE(5119)] = 187255, - [SMALL_STATE(5120)] = 187292, - [SMALL_STATE(5121)] = 187329, - [SMALL_STATE(5122)] = 187366, - [SMALL_STATE(5123)] = 187387, - [SMALL_STATE(5124)] = 187424, - [SMALL_STATE(5125)] = 187445, - [SMALL_STATE(5126)] = 187466, - [SMALL_STATE(5127)] = 187503, - [SMALL_STATE(5128)] = 187524, - [SMALL_STATE(5129)] = 187561, - [SMALL_STATE(5130)] = 187598, - [SMALL_STATE(5131)] = 187631, - [SMALL_STATE(5132)] = 187662, - [SMALL_STATE(5133)] = 187699, - [SMALL_STATE(5134)] = 187720, - [SMALL_STATE(5135)] = 187741, - [SMALL_STATE(5136)] = 187778, - [SMALL_STATE(5137)] = 187815, - [SMALL_STATE(5138)] = 187852, - [SMALL_STATE(5139)] = 187873, - [SMALL_STATE(5140)] = 187904, - [SMALL_STATE(5141)] = 187925, - [SMALL_STATE(5142)] = 187946, - [SMALL_STATE(5143)] = 187967, - [SMALL_STATE(5144)] = 188000, - [SMALL_STATE(5145)] = 188021, - [SMALL_STATE(5146)] = 188054, - [SMALL_STATE(5147)] = 188075, - [SMALL_STATE(5148)] = 188098, - [SMALL_STATE(5149)] = 188131, - [SMALL_STATE(5150)] = 188168, - [SMALL_STATE(5151)] = 188191, - [SMALL_STATE(5152)] = 188212, - [SMALL_STATE(5153)] = 188245, - [SMALL_STATE(5154)] = 188282, - [SMALL_STATE(5155)] = 188315, - [SMALL_STATE(5156)] = 188352, - [SMALL_STATE(5157)] = 188373, - [SMALL_STATE(5158)] = 188406, - [SMALL_STATE(5159)] = 188429, - [SMALL_STATE(5160)] = 188460, - [SMALL_STATE(5161)] = 188495, - [SMALL_STATE(5162)] = 188518, - [SMALL_STATE(5163)] = 188539, - [SMALL_STATE(5164)] = 188576, - [SMALL_STATE(5165)] = 188597, - [SMALL_STATE(5166)] = 188618, - [SMALL_STATE(5167)] = 188645, - [SMALL_STATE(5168)] = 188682, - [SMALL_STATE(5169)] = 188709, - [SMALL_STATE(5170)] = 188742, - [SMALL_STATE(5171)] = 188763, - [SMALL_STATE(5172)] = 188784, - [SMALL_STATE(5173)] = 188821, - [SMALL_STATE(5174)] = 188854, - [SMALL_STATE(5175)] = 188875, - [SMALL_STATE(5176)] = 188900, - [SMALL_STATE(5177)] = 188933, - [SMALL_STATE(5178)] = 188956, - [SMALL_STATE(5179)] = 188979, - [SMALL_STATE(5180)] = 189013, - [SMALL_STATE(5181)] = 189035, - [SMALL_STATE(5182)] = 189055, - [SMALL_STATE(5183)] = 189089, - [SMALL_STATE(5184)] = 189123, - [SMALL_STATE(5185)] = 189143, - [SMALL_STATE(5186)] = 189177, - [SMALL_STATE(5187)] = 189209, - [SMALL_STATE(5188)] = 189241, - [SMALL_STATE(5189)] = 189273, - [SMALL_STATE(5190)] = 189301, - [SMALL_STATE(5191)] = 189323, - [SMALL_STATE(5192)] = 189351, - [SMALL_STATE(5193)] = 189381, - [SMALL_STATE(5194)] = 189413, - [SMALL_STATE(5195)] = 189441, - [SMALL_STATE(5196)] = 189469, - [SMALL_STATE(5197)] = 189501, - [SMALL_STATE(5198)] = 189529, - [SMALL_STATE(5199)] = 189557, - [SMALL_STATE(5200)] = 189585, - [SMALL_STATE(5201)] = 189617, - [SMALL_STATE(5202)] = 189649, - [SMALL_STATE(5203)] = 189677, - [SMALL_STATE(5204)] = 189705, - [SMALL_STATE(5205)] = 189731, - [SMALL_STATE(5206)] = 189757, - [SMALL_STATE(5207)] = 189783, - [SMALL_STATE(5208)] = 189809, - [SMALL_STATE(5209)] = 189843, - [SMALL_STATE(5210)] = 189869, - [SMALL_STATE(5211)] = 189901, - [SMALL_STATE(5212)] = 189935, - [SMALL_STATE(5213)] = 189961, - [SMALL_STATE(5214)] = 189987, - [SMALL_STATE(5215)] = 190021, - [SMALL_STATE(5216)] = 190043, - [SMALL_STATE(5217)] = 190075, - [SMALL_STATE(5218)] = 190109, - [SMALL_STATE(5219)] = 190136, - [SMALL_STATE(5220)] = 190163, - [SMALL_STATE(5221)] = 190190, - [SMALL_STATE(5222)] = 190217, - [SMALL_STATE(5223)] = 190244, - [SMALL_STATE(5224)] = 190267, - [SMALL_STATE(5225)] = 190294, - [SMALL_STATE(5226)] = 190323, - [SMALL_STATE(5227)] = 190350, - [SMALL_STATE(5228)] = 190381, - [SMALL_STATE(5229)] = 190412, - [SMALL_STATE(5230)] = 190435, - [SMALL_STATE(5231)] = 190462, - [SMALL_STATE(5232)] = 190489, - [SMALL_STATE(5233)] = 190512, - [SMALL_STATE(5234)] = 190539, - [SMALL_STATE(5235)] = 190566, - [SMALL_STATE(5236)] = 190597, - [SMALL_STATE(5237)] = 190628, - [SMALL_STATE(5238)] = 190651, - [SMALL_STATE(5239)] = 190680, - [SMALL_STATE(5240)] = 190711, - [SMALL_STATE(5241)] = 190734, - [SMALL_STATE(5242)] = 190761, - [SMALL_STATE(5243)] = 190782, - [SMALL_STATE(5244)] = 190809, - [SMALL_STATE(5245)] = 190838, - [SMALL_STATE(5246)] = 190865, - [SMALL_STATE(5247)] = 190894, - [SMALL_STATE(5248)] = 190917, - [SMALL_STATE(5249)] = 190948, - [SMALL_STATE(5250)] = 190977, - [SMALL_STATE(5251)] = 191000, - [SMALL_STATE(5252)] = 191031, - [SMALL_STATE(5253)] = 191054, - [SMALL_STATE(5254)] = 191085, - [SMALL_STATE(5255)] = 191104, - [SMALL_STATE(5256)] = 191123, - [SMALL_STATE(5257)] = 191142, - [SMALL_STATE(5258)] = 191165, - [SMALL_STATE(5259)] = 191196, - [SMALL_STATE(5260)] = 191215, - [SMALL_STATE(5261)] = 191234, - [SMALL_STATE(5262)] = 191265, - [SMALL_STATE(5263)] = 191296, - [SMALL_STATE(5264)] = 191325, - [SMALL_STATE(5265)] = 191356, - [SMALL_STATE(5266)] = 191387, - [SMALL_STATE(5267)] = 191414, - [SMALL_STATE(5268)] = 191445, - [SMALL_STATE(5269)] = 191468, - [SMALL_STATE(5270)] = 191499, - [SMALL_STATE(5271)] = 191530, - [SMALL_STATE(5272)] = 191561, - [SMALL_STATE(5273)] = 191592, - [SMALL_STATE(5274)] = 191623, - [SMALL_STATE(5275)] = 191654, - [SMALL_STATE(5276)] = 191685, - [SMALL_STATE(5277)] = 191716, - [SMALL_STATE(5278)] = 191739, - [SMALL_STATE(5279)] = 191762, - [SMALL_STATE(5280)] = 191793, - [SMALL_STATE(5281)] = 191816, - [SMALL_STATE(5282)] = 191839, - [SMALL_STATE(5283)] = 191862, - [SMALL_STATE(5284)] = 191885, - [SMALL_STATE(5285)] = 191912, - [SMALL_STATE(5286)] = 191943, - [SMALL_STATE(5287)] = 191974, - [SMALL_STATE(5288)] = 192005, - [SMALL_STATE(5289)] = 192034, - [SMALL_STATE(5290)] = 192065, - [SMALL_STATE(5291)] = 192096, - [SMALL_STATE(5292)] = 192125, - [SMALL_STATE(5293)] = 192148, - [SMALL_STATE(5294)] = 192169, - [SMALL_STATE(5295)] = 192198, - [SMALL_STATE(5296)] = 192229, - [SMALL_STATE(5297)] = 192256, - [SMALL_STATE(5298)] = 192279, - [SMALL_STATE(5299)] = 192302, - [SMALL_STATE(5300)] = 192325, - [SMALL_STATE(5301)] = 192348, - [SMALL_STATE(5302)] = 192379, - [SMALL_STATE(5303)] = 192408, - [SMALL_STATE(5304)] = 192435, - [SMALL_STATE(5305)] = 192462, - [SMALL_STATE(5306)] = 192489, - [SMALL_STATE(5307)] = 192516, - [SMALL_STATE(5308)] = 192547, - [SMALL_STATE(5309)] = 192578, - [SMALL_STATE(5310)] = 192609, - [SMALL_STATE(5311)] = 192640, - [SMALL_STATE(5312)] = 192671, - [SMALL_STATE(5313)] = 192698, - [SMALL_STATE(5314)] = 192729, - [SMALL_STATE(5315)] = 192756, - [SMALL_STATE(5316)] = 192783, - [SMALL_STATE(5317)] = 192804, - [SMALL_STATE(5318)] = 192831, - [SMALL_STATE(5319)] = 192850, - [SMALL_STATE(5320)] = 192869, - [SMALL_STATE(5321)] = 192896, - [SMALL_STATE(5322)] = 192925, - [SMALL_STATE(5323)] = 192956, - [SMALL_STATE(5324)] = 192983, - [SMALL_STATE(5325)] = 193010, - [SMALL_STATE(5326)] = 193029, - [SMALL_STATE(5327)] = 193060, - [SMALL_STATE(5328)] = 193087, - [SMALL_STATE(5329)] = 193114, - [SMALL_STATE(5330)] = 193145, - [SMALL_STATE(5331)] = 193172, - [SMALL_STATE(5332)] = 193199, - [SMALL_STATE(5333)] = 193228, - [SMALL_STATE(5334)] = 193255, - [SMALL_STATE(5335)] = 193282, - [SMALL_STATE(5336)] = 193309, - [SMALL_STATE(5337)] = 193336, - [SMALL_STATE(5338)] = 193361, - [SMALL_STATE(5339)] = 193388, - [SMALL_STATE(5340)] = 193415, - [SMALL_STATE(5341)] = 193442, - [SMALL_STATE(5342)] = 193463, - [SMALL_STATE(5343)] = 193490, - [SMALL_STATE(5344)] = 193521, - [SMALL_STATE(5345)] = 193548, - [SMALL_STATE(5346)] = 193575, - [SMALL_STATE(5347)] = 193604, - [SMALL_STATE(5348)] = 193635, - [SMALL_STATE(5349)] = 193662, - [SMALL_STATE(5350)] = 193689, - [SMALL_STATE(5351)] = 193716, - [SMALL_STATE(5352)] = 193747, - [SMALL_STATE(5353)] = 193778, - [SMALL_STATE(5354)] = 193805, - [SMALL_STATE(5355)] = 193832, - [SMALL_STATE(5356)] = 193861, - [SMALL_STATE(5357)] = 193892, - [SMALL_STATE(5358)] = 193919, - [SMALL_STATE(5359)] = 193938, - [SMALL_STATE(5360)] = 193969, - [SMALL_STATE(5361)] = 193996, - [SMALL_STATE(5362)] = 194023, - [SMALL_STATE(5363)] = 194042, - [SMALL_STATE(5364)] = 194069, - [SMALL_STATE(5365)] = 194100, - [SMALL_STATE(5366)] = 194127, - [SMALL_STATE(5367)] = 194158, - [SMALL_STATE(5368)] = 194189, - [SMALL_STATE(5369)] = 194216, - [SMALL_STATE(5370)] = 194243, - [SMALL_STATE(5371)] = 194270, - [SMALL_STATE(5372)] = 194297, - [SMALL_STATE(5373)] = 194324, - [SMALL_STATE(5374)] = 194353, - [SMALL_STATE(5375)] = 194380, - [SMALL_STATE(5376)] = 194405, - [SMALL_STATE(5377)] = 194426, - [SMALL_STATE(5378)] = 194453, - [SMALL_STATE(5379)] = 194480, - [SMALL_STATE(5380)] = 194507, - [SMALL_STATE(5381)] = 194538, - [SMALL_STATE(5382)] = 194565, - [SMALL_STATE(5383)] = 194592, - [SMALL_STATE(5384)] = 194621, - [SMALL_STATE(5385)] = 194650, - [SMALL_STATE(5386)] = 194677, - [SMALL_STATE(5387)] = 194704, - [SMALL_STATE(5388)] = 194731, - [SMALL_STATE(5389)] = 194758, - [SMALL_STATE(5390)] = 194789, - [SMALL_STATE(5391)] = 194820, - [SMALL_STATE(5392)] = 194851, - [SMALL_STATE(5393)] = 194878, - [SMALL_STATE(5394)] = 194905, - [SMALL_STATE(5395)] = 194926, - [SMALL_STATE(5396)] = 194953, - [SMALL_STATE(5397)] = 194980, - [SMALL_STATE(5398)] = 195011, - [SMALL_STATE(5399)] = 195030, - [SMALL_STATE(5400)] = 195061, - [SMALL_STATE(5401)] = 195088, - [SMALL_STATE(5402)] = 195115, - [SMALL_STATE(5403)] = 195146, - [SMALL_STATE(5404)] = 195173, - [SMALL_STATE(5405)] = 195200, - [SMALL_STATE(5406)] = 195221, - [SMALL_STATE(5407)] = 195252, - [SMALL_STATE(5408)] = 195271, - [SMALL_STATE(5409)] = 195302, - [SMALL_STATE(5410)] = 195331, - [SMALL_STATE(5411)] = 195358, - [SMALL_STATE(5412)] = 195385, - [SMALL_STATE(5413)] = 195416, - [SMALL_STATE(5414)] = 195447, - [SMALL_STATE(5415)] = 195474, - [SMALL_STATE(5416)] = 195501, - [SMALL_STATE(5417)] = 195532, - [SMALL_STATE(5418)] = 195551, - [SMALL_STATE(5419)] = 195582, - [SMALL_STATE(5420)] = 195609, - [SMALL_STATE(5421)] = 195638, - [SMALL_STATE(5422)] = 195661, - [SMALL_STATE(5423)] = 195690, - [SMALL_STATE(5424)] = 195721, - [SMALL_STATE(5425)] = 195752, - [SMALL_STATE(5426)] = 195779, - [SMALL_STATE(5427)] = 195810, - [SMALL_STATE(5428)] = 195841, - [SMALL_STATE(5429)] = 195872, - [SMALL_STATE(5430)] = 195899, - [SMALL_STATE(5431)] = 195930, - [SMALL_STATE(5432)] = 195961, - [SMALL_STATE(5433)] = 195990, - [SMALL_STATE(5434)] = 196021, - [SMALL_STATE(5435)] = 196044, - [SMALL_STATE(5436)] = 196071, - [SMALL_STATE(5437)] = 196098, - [SMALL_STATE(5438)] = 196121, - [SMALL_STATE(5439)] = 196148, - [SMALL_STATE(5440)] = 196175, - [SMALL_STATE(5441)] = 196202, - [SMALL_STATE(5442)] = 196225, - [SMALL_STATE(5443)] = 196252, - [SMALL_STATE(5444)] = 196279, - [SMALL_STATE(5445)] = 196298, - [SMALL_STATE(5446)] = 196321, - [SMALL_STATE(5447)] = 196352, - [SMALL_STATE(5448)] = 196383, - [SMALL_STATE(5449)] = 196414, - [SMALL_STATE(5450)] = 196441, - [SMALL_STATE(5451)] = 196468, - [SMALL_STATE(5452)] = 196487, - [SMALL_STATE(5453)] = 196514, - [SMALL_STATE(5454)] = 196545, - [SMALL_STATE(5455)] = 196576, - [SMALL_STATE(5456)] = 196607, - [SMALL_STATE(5457)] = 196638, - [SMALL_STATE(5458)] = 196665, - [SMALL_STATE(5459)] = 196692, - [SMALL_STATE(5460)] = 196723, - [SMALL_STATE(5461)] = 196750, - [SMALL_STATE(5462)] = 196777, - [SMALL_STATE(5463)] = 196796, - [SMALL_STATE(5464)] = 196819, - [SMALL_STATE(5465)] = 196850, - [SMALL_STATE(5466)] = 196881, - [SMALL_STATE(5467)] = 196908, - [SMALL_STATE(5468)] = 196937, - [SMALL_STATE(5469)] = 196968, - [SMALL_STATE(5470)] = 196999, - [SMALL_STATE(5471)] = 197030, - [SMALL_STATE(5472)] = 197057, - [SMALL_STATE(5473)] = 197088, - [SMALL_STATE(5474)] = 197107, - [SMALL_STATE(5475)] = 197126, - [SMALL_STATE(5476)] = 197145, - [SMALL_STATE(5477)] = 197176, - [SMALL_STATE(5478)] = 197195, - [SMALL_STATE(5479)] = 197226, - [SMALL_STATE(5480)] = 197257, - [SMALL_STATE(5481)] = 197288, - [SMALL_STATE(5482)] = 197319, - [SMALL_STATE(5483)] = 197350, - [SMALL_STATE(5484)] = 197377, - [SMALL_STATE(5485)] = 197408, - [SMALL_STATE(5486)] = 197435, - [SMALL_STATE(5487)] = 197454, - [SMALL_STATE(5488)] = 197473, - [SMALL_STATE(5489)] = 197504, - [SMALL_STATE(5490)] = 197523, - [SMALL_STATE(5491)] = 197554, - [SMALL_STATE(5492)] = 197581, - [SMALL_STATE(5493)] = 197612, - [SMALL_STATE(5494)] = 197631, - [SMALL_STATE(5495)] = 197662, - [SMALL_STATE(5496)] = 197681, - [SMALL_STATE(5497)] = 197712, - [SMALL_STATE(5498)] = 197731, - [SMALL_STATE(5499)] = 197762, - [SMALL_STATE(5500)] = 197793, - [SMALL_STATE(5501)] = 197820, - [SMALL_STATE(5502)] = 197841, - [SMALL_STATE(5503)] = 197864, - [SMALL_STATE(5504)] = 197891, - [SMALL_STATE(5505)] = 197922, - [SMALL_STATE(5506)] = 197953, - [SMALL_STATE(5507)] = 197984, - [SMALL_STATE(5508)] = 198015, - [SMALL_STATE(5509)] = 198034, - [SMALL_STATE(5510)] = 198065, - [SMALL_STATE(5511)] = 198084, - [SMALL_STATE(5512)] = 198107, - [SMALL_STATE(5513)] = 198138, - [SMALL_STATE(5514)] = 198156, - [SMALL_STATE(5515)] = 198178, - [SMALL_STATE(5516)] = 198198, - [SMALL_STATE(5517)] = 198220, - [SMALL_STATE(5518)] = 198240, - [SMALL_STATE(5519)] = 198260, - [SMALL_STATE(5520)] = 198280, - [SMALL_STATE(5521)] = 198302, - [SMALL_STATE(5522)] = 198330, - [SMALL_STATE(5523)] = 198350, - [SMALL_STATE(5524)] = 198378, - [SMALL_STATE(5525)] = 198398, - [SMALL_STATE(5526)] = 198426, - [SMALL_STATE(5527)] = 198454, - [SMALL_STATE(5528)] = 198474, - [SMALL_STATE(5529)] = 198502, - [SMALL_STATE(5530)] = 198522, - [SMALL_STATE(5531)] = 198544, - [SMALL_STATE(5532)] = 198566, - [SMALL_STATE(5533)] = 198588, - [SMALL_STATE(5534)] = 198616, - [SMALL_STATE(5535)] = 198644, - [SMALL_STATE(5536)] = 198666, - [SMALL_STATE(5537)] = 198692, - [SMALL_STATE(5538)] = 198714, - [SMALL_STATE(5539)] = 198742, - [SMALL_STATE(5540)] = 198768, - [SMALL_STATE(5541)] = 198790, - [SMALL_STATE(5542)] = 198812, - [SMALL_STATE(5543)] = 198838, - [SMALL_STATE(5544)] = 198866, - [SMALL_STATE(5545)] = 198886, - [SMALL_STATE(5546)] = 198908, - [SMALL_STATE(5547)] = 198936, - [SMALL_STATE(5548)] = 198964, - [SMALL_STATE(5549)] = 198986, - [SMALL_STATE(5550)] = 199010, - [SMALL_STATE(5551)] = 199032, - [SMALL_STATE(5552)] = 199058, - [SMALL_STATE(5553)] = 199086, - [SMALL_STATE(5554)] = 199114, - [SMALL_STATE(5555)] = 199136, - [SMALL_STATE(5556)] = 199162, - [SMALL_STATE(5557)] = 199190, - [SMALL_STATE(5558)] = 199218, - [SMALL_STATE(5559)] = 199240, - [SMALL_STATE(5560)] = 199268, - [SMALL_STATE(5561)] = 199294, - [SMALL_STATE(5562)] = 199322, - [SMALL_STATE(5563)] = 199350, - [SMALL_STATE(5564)] = 199372, - [SMALL_STATE(5565)] = 199398, - [SMALL_STATE(5566)] = 199426, - [SMALL_STATE(5567)] = 199454, - [SMALL_STATE(5568)] = 199472, - [SMALL_STATE(5569)] = 199500, - [SMALL_STATE(5570)] = 199526, - [SMALL_STATE(5571)] = 199554, - [SMALL_STATE(5572)] = 199582, - [SMALL_STATE(5573)] = 199610, - [SMALL_STATE(5574)] = 199638, - [SMALL_STATE(5575)] = 199664, - [SMALL_STATE(5576)] = 199686, - [SMALL_STATE(5577)] = 199704, - [SMALL_STATE(5578)] = 199730, - [SMALL_STATE(5579)] = 199758, - [SMALL_STATE(5580)] = 199786, - [SMALL_STATE(5581)] = 199804, - [SMALL_STATE(5582)] = 199826, - [SMALL_STATE(5583)] = 199846, - [SMALL_STATE(5584)] = 199870, - [SMALL_STATE(5585)] = 199896, - [SMALL_STATE(5586)] = 199922, - [SMALL_STATE(5587)] = 199944, - [SMALL_STATE(5588)] = 199970, - [SMALL_STATE(5589)] = 199998, - [SMALL_STATE(5590)] = 200026, - [SMALL_STATE(5591)] = 200048, - [SMALL_STATE(5592)] = 200074, - [SMALL_STATE(5593)] = 200102, - [SMALL_STATE(5594)] = 200130, - [SMALL_STATE(5595)] = 200148, - [SMALL_STATE(5596)] = 200176, - [SMALL_STATE(5597)] = 200198, - [SMALL_STATE(5598)] = 200226, - [SMALL_STATE(5599)] = 200254, - [SMALL_STATE(5600)] = 200276, - [SMALL_STATE(5601)] = 200304, - [SMALL_STATE(5602)] = 200326, - [SMALL_STATE(5603)] = 200344, - [SMALL_STATE(5604)] = 200364, - [SMALL_STATE(5605)] = 200390, - [SMALL_STATE(5606)] = 200418, - [SMALL_STATE(5607)] = 200446, - [SMALL_STATE(5608)] = 200472, - [SMALL_STATE(5609)] = 200500, - [SMALL_STATE(5610)] = 200528, - [SMALL_STATE(5611)] = 200556, - [SMALL_STATE(5612)] = 200584, - [SMALL_STATE(5613)] = 200606, - [SMALL_STATE(5614)] = 200632, - [SMALL_STATE(5615)] = 200650, - [SMALL_STATE(5616)] = 200672, - [SMALL_STATE(5617)] = 200696, - [SMALL_STATE(5618)] = 200722, - [SMALL_STATE(5619)] = 200750, - [SMALL_STATE(5620)] = 200778, - [SMALL_STATE(5621)] = 200806, - [SMALL_STATE(5622)] = 200832, - [SMALL_STATE(5623)] = 200858, - [SMALL_STATE(5624)] = 200876, - [SMALL_STATE(5625)] = 200904, - [SMALL_STATE(5626)] = 200932, - [SMALL_STATE(5627)] = 200960, - [SMALL_STATE(5628)] = 200988, - [SMALL_STATE(5629)] = 201014, - [SMALL_STATE(5630)] = 201036, - [SMALL_STATE(5631)] = 201062, - [SMALL_STATE(5632)] = 201084, - [SMALL_STATE(5633)] = 201106, - [SMALL_STATE(5634)] = 201128, - [SMALL_STATE(5635)] = 201146, - [SMALL_STATE(5636)] = 201172, - [SMALL_STATE(5637)] = 201194, - [SMALL_STATE(5638)] = 201222, - [SMALL_STATE(5639)] = 201250, - [SMALL_STATE(5640)] = 201272, - [SMALL_STATE(5641)] = 201300, - [SMALL_STATE(5642)] = 201322, - [SMALL_STATE(5643)] = 201350, - [SMALL_STATE(5644)] = 201378, - [SMALL_STATE(5645)] = 201406, - [SMALL_STATE(5646)] = 201428, - [SMALL_STATE(5647)] = 201450, - [SMALL_STATE(5648)] = 201478, - [SMALL_STATE(5649)] = 201500, - [SMALL_STATE(5650)] = 201522, - [SMALL_STATE(5651)] = 201548, - [SMALL_STATE(5652)] = 201576, - [SMALL_STATE(5653)] = 201598, - [SMALL_STATE(5654)] = 201624, - [SMALL_STATE(5655)] = 201652, - [SMALL_STATE(5656)] = 201680, - [SMALL_STATE(5657)] = 201706, - [SMALL_STATE(5658)] = 201728, - [SMALL_STATE(5659)] = 201750, - [SMALL_STATE(5660)] = 201778, - [SMALL_STATE(5661)] = 201800, - [SMALL_STATE(5662)] = 201828, - [SMALL_STATE(5663)] = 201856, - [SMALL_STATE(5664)] = 201884, - [SMALL_STATE(5665)] = 201906, - [SMALL_STATE(5666)] = 201928, - [SMALL_STATE(5667)] = 201950, - [SMALL_STATE(5668)] = 201972, - [SMALL_STATE(5669)] = 201994, - [SMALL_STATE(5670)] = 202022, - [SMALL_STATE(5671)] = 202050, - [SMALL_STATE(5672)] = 202072, - [SMALL_STATE(5673)] = 202094, - [SMALL_STATE(5674)] = 202116, - [SMALL_STATE(5675)] = 202138, - [SMALL_STATE(5676)] = 202160, - [SMALL_STATE(5677)] = 202186, - [SMALL_STATE(5678)] = 202208, - [SMALL_STATE(5679)] = 202230, - [SMALL_STATE(5680)] = 202252, - [SMALL_STATE(5681)] = 202280, - [SMALL_STATE(5682)] = 202302, - [SMALL_STATE(5683)] = 202330, - [SMALL_STATE(5684)] = 202352, - [SMALL_STATE(5685)] = 202374, - [SMALL_STATE(5686)] = 202396, - [SMALL_STATE(5687)] = 202418, - [SMALL_STATE(5688)] = 202440, - [SMALL_STATE(5689)] = 202468, - [SMALL_STATE(5690)] = 202490, - [SMALL_STATE(5691)] = 202518, - [SMALL_STATE(5692)] = 202536, - [SMALL_STATE(5693)] = 202562, - [SMALL_STATE(5694)] = 202590, - [SMALL_STATE(5695)] = 202616, - [SMALL_STATE(5696)] = 202644, - [SMALL_STATE(5697)] = 202672, - [SMALL_STATE(5698)] = 202700, - [SMALL_STATE(5699)] = 202722, - [SMALL_STATE(5700)] = 202750, - [SMALL_STATE(5701)] = 202778, - [SMALL_STATE(5702)] = 202800, - [SMALL_STATE(5703)] = 202822, - [SMALL_STATE(5704)] = 202850, - [SMALL_STATE(5705)] = 202868, - [SMALL_STATE(5706)] = 202886, - [SMALL_STATE(5707)] = 202904, - [SMALL_STATE(5708)] = 202924, - [SMALL_STATE(5709)] = 202952, - [SMALL_STATE(5710)] = 202978, - [SMALL_STATE(5711)] = 203000, - [SMALL_STATE(5712)] = 203028, - [SMALL_STATE(5713)] = 203056, - [SMALL_STATE(5714)] = 203084, - [SMALL_STATE(5715)] = 203112, - [SMALL_STATE(5716)] = 203138, - [SMALL_STATE(5717)] = 203166, - [SMALL_STATE(5718)] = 203194, - [SMALL_STATE(5719)] = 203222, - [SMALL_STATE(5720)] = 203246, - [SMALL_STATE(5721)] = 203274, - [SMALL_STATE(5722)] = 203302, - [SMALL_STATE(5723)] = 203330, - [SMALL_STATE(5724)] = 203358, - [SMALL_STATE(5725)] = 203386, - [SMALL_STATE(5726)] = 203414, - [SMALL_STATE(5727)] = 203432, - [SMALL_STATE(5728)] = 203460, - [SMALL_STATE(5729)] = 203486, - [SMALL_STATE(5730)] = 203512, - [SMALL_STATE(5731)] = 203534, - [SMALL_STATE(5732)] = 203562, - [SMALL_STATE(5733)] = 203590, - [SMALL_STATE(5734)] = 203618, - [SMALL_STATE(5735)] = 203640, - [SMALL_STATE(5736)] = 203662, - [SMALL_STATE(5737)] = 203684, - [SMALL_STATE(5738)] = 203712, - [SMALL_STATE(5739)] = 203734, - [SMALL_STATE(5740)] = 203762, - [SMALL_STATE(5741)] = 203784, - [SMALL_STATE(5742)] = 203806, - [SMALL_STATE(5743)] = 203831, - [SMALL_STATE(5744)] = 203854, - [SMALL_STATE(5745)] = 203879, - [SMALL_STATE(5746)] = 203900, - [SMALL_STATE(5747)] = 203921, - [SMALL_STATE(5748)] = 203946, - [SMALL_STATE(5749)] = 203971, - [SMALL_STATE(5750)] = 203988, - [SMALL_STATE(5751)] = 204009, - [SMALL_STATE(5752)] = 204030, - [SMALL_STATE(5753)] = 204055, - [SMALL_STATE(5754)] = 204076, - [SMALL_STATE(5755)] = 204101, - [SMALL_STATE(5756)] = 204122, - [SMALL_STATE(5757)] = 204139, - [SMALL_STATE(5758)] = 204164, - [SMALL_STATE(5759)] = 204185, - [SMALL_STATE(5760)] = 204206, - [SMALL_STATE(5761)] = 204231, - [SMALL_STATE(5762)] = 204252, - [SMALL_STATE(5763)] = 204273, - [SMALL_STATE(5764)] = 204298, - [SMALL_STATE(5765)] = 204323, - [SMALL_STATE(5766)] = 204348, - [SMALL_STATE(5767)] = 204369, - [SMALL_STATE(5768)] = 204394, - [SMALL_STATE(5769)] = 204415, - [SMALL_STATE(5770)] = 204440, - [SMALL_STATE(5771)] = 204457, - [SMALL_STATE(5772)] = 204474, - [SMALL_STATE(5773)] = 204491, - [SMALL_STATE(5774)] = 204516, - [SMALL_STATE(5775)] = 204533, - [SMALL_STATE(5776)] = 204556, - [SMALL_STATE(5777)] = 204581, - [SMALL_STATE(5778)] = 204606, - [SMALL_STATE(5779)] = 204627, - [SMALL_STATE(5780)] = 204652, - [SMALL_STATE(5781)] = 204673, - [SMALL_STATE(5782)] = 204690, - [SMALL_STATE(5783)] = 204715, - [SMALL_STATE(5784)] = 204732, - [SMALL_STATE(5785)] = 204753, - [SMALL_STATE(5786)] = 204778, - [SMALL_STATE(5787)] = 204803, - [SMALL_STATE(5788)] = 204824, - [SMALL_STATE(5789)] = 204841, - [SMALL_STATE(5790)] = 204866, - [SMALL_STATE(5791)] = 204883, - [SMALL_STATE(5792)] = 204904, - [SMALL_STATE(5793)] = 204921, - [SMALL_STATE(5794)] = 204942, - [SMALL_STATE(5795)] = 204967, - [SMALL_STATE(5796)] = 204992, - [SMALL_STATE(5797)] = 205009, - [SMALL_STATE(5798)] = 205026, - [SMALL_STATE(5799)] = 205051, - [SMALL_STATE(5800)] = 205068, - [SMALL_STATE(5801)] = 205085, - [SMALL_STATE(5802)] = 205110, - [SMALL_STATE(5803)] = 205131, - [SMALL_STATE(5804)] = 205152, - [SMALL_STATE(5805)] = 205173, - [SMALL_STATE(5806)] = 205190, - [SMALL_STATE(5807)] = 205211, - [SMALL_STATE(5808)] = 205236, - [SMALL_STATE(5809)] = 205253, - [SMALL_STATE(5810)] = 205274, - [SMALL_STATE(5811)] = 205299, - [SMALL_STATE(5812)] = 205322, - [SMALL_STATE(5813)] = 205339, - [SMALL_STATE(5814)] = 205360, - [SMALL_STATE(5815)] = 205381, - [SMALL_STATE(5816)] = 205400, - [SMALL_STATE(5817)] = 205421, - [SMALL_STATE(5818)] = 205446, - [SMALL_STATE(5819)] = 205467, - [SMALL_STATE(5820)] = 205484, - [SMALL_STATE(5821)] = 205505, - [SMALL_STATE(5822)] = 205526, - [SMALL_STATE(5823)] = 205547, - [SMALL_STATE(5824)] = 205568, - [SMALL_STATE(5825)] = 205591, - [SMALL_STATE(5826)] = 205616, - [SMALL_STATE(5827)] = 205633, - [SMALL_STATE(5828)] = 205658, - [SMALL_STATE(5829)] = 205679, - [SMALL_STATE(5830)] = 205704, - [SMALL_STATE(5831)] = 205725, - [SMALL_STATE(5832)] = 205742, - [SMALL_STATE(5833)] = 205759, - [SMALL_STATE(5834)] = 205776, - [SMALL_STATE(5835)] = 205793, - [SMALL_STATE(5836)] = 205814, - [SMALL_STATE(5837)] = 205837, - [SMALL_STATE(5838)] = 205858, - [SMALL_STATE(5839)] = 205883, - [SMALL_STATE(5840)] = 205904, - [SMALL_STATE(5841)] = 205925, - [SMALL_STATE(5842)] = 205950, - [SMALL_STATE(5843)] = 205971, - [SMALL_STATE(5844)] = 205996, - [SMALL_STATE(5845)] = 206021, - [SMALL_STATE(5846)] = 206046, - [SMALL_STATE(5847)] = 206067, - [SMALL_STATE(5848)] = 206088, - [SMALL_STATE(5849)] = 206109, - [SMALL_STATE(5850)] = 206134, - [SMALL_STATE(5851)] = 206155, - [SMALL_STATE(5852)] = 206176, - [SMALL_STATE(5853)] = 206193, - [SMALL_STATE(5854)] = 206210, - [SMALL_STATE(5855)] = 206235, - [SMALL_STATE(5856)] = 206256, - [SMALL_STATE(5857)] = 206277, - [SMALL_STATE(5858)] = 206294, - [SMALL_STATE(5859)] = 206319, - [SMALL_STATE(5860)] = 206344, - [SMALL_STATE(5861)] = 206365, - [SMALL_STATE(5862)] = 206382, - [SMALL_STATE(5863)] = 206407, - [SMALL_STATE(5864)] = 206430, - [SMALL_STATE(5865)] = 206447, - [SMALL_STATE(5866)] = 206468, - [SMALL_STATE(5867)] = 206493, - [SMALL_STATE(5868)] = 206518, - [SMALL_STATE(5869)] = 206539, - [SMALL_STATE(5870)] = 206564, - [SMALL_STATE(5871)] = 206587, - [SMALL_STATE(5872)] = 206612, - [SMALL_STATE(5873)] = 206637, - [SMALL_STATE(5874)] = 206658, - [SMALL_STATE(5875)] = 206675, - [SMALL_STATE(5876)] = 206700, - [SMALL_STATE(5877)] = 206725, - [SMALL_STATE(5878)] = 206746, - [SMALL_STATE(5879)] = 206771, - [SMALL_STATE(5880)] = 206796, - [SMALL_STATE(5881)] = 206817, - [SMALL_STATE(5882)] = 206838, - [SMALL_STATE(5883)] = 206863, - [SMALL_STATE(5884)] = 206888, - [SMALL_STATE(5885)] = 206909, - [SMALL_STATE(5886)] = 206926, - [SMALL_STATE(5887)] = 206947, - [SMALL_STATE(5888)] = 206968, - [SMALL_STATE(5889)] = 206993, - [SMALL_STATE(5890)] = 207014, - [SMALL_STATE(5891)] = 207039, - [SMALL_STATE(5892)] = 207064, - [SMALL_STATE(5893)] = 207089, - [SMALL_STATE(5894)] = 207110, - [SMALL_STATE(5895)] = 207135, - [SMALL_STATE(5896)] = 207160, - [SMALL_STATE(5897)] = 207181, - [SMALL_STATE(5898)] = 207202, - [SMALL_STATE(5899)] = 207223, - [SMALL_STATE(5900)] = 207244, - [SMALL_STATE(5901)] = 207267, - [SMALL_STATE(5902)] = 207288, - [SMALL_STATE(5903)] = 207313, - [SMALL_STATE(5904)] = 207332, - [SMALL_STATE(5905)] = 207353, - [SMALL_STATE(5906)] = 207370, - [SMALL_STATE(5907)] = 207391, - [SMALL_STATE(5908)] = 207416, - [SMALL_STATE(5909)] = 207437, - [SMALL_STATE(5910)] = 207458, - [SMALL_STATE(5911)] = 207475, - [SMALL_STATE(5912)] = 207496, - [SMALL_STATE(5913)] = 207517, - [SMALL_STATE(5914)] = 207542, - [SMALL_STATE(5915)] = 207559, - [SMALL_STATE(5916)] = 207576, - [SMALL_STATE(5917)] = 207593, - [SMALL_STATE(5918)] = 207618, - [SMALL_STATE(5919)] = 207635, - [SMALL_STATE(5920)] = 207652, - [SMALL_STATE(5921)] = 207669, - [SMALL_STATE(5922)] = 207686, - [SMALL_STATE(5923)] = 207703, - [SMALL_STATE(5924)] = 207728, - [SMALL_STATE(5925)] = 207745, - [SMALL_STATE(5926)] = 207770, - [SMALL_STATE(5927)] = 207791, - [SMALL_STATE(5928)] = 207816, - [SMALL_STATE(5929)] = 207841, - [SMALL_STATE(5930)] = 207858, - [SMALL_STATE(5931)] = 207883, - [SMALL_STATE(5932)] = 207904, - [SMALL_STATE(5933)] = 207925, - [SMALL_STATE(5934)] = 207948, - [SMALL_STATE(5935)] = 207969, - [SMALL_STATE(5936)] = 207990, - [SMALL_STATE(5937)] = 208011, - [SMALL_STATE(5938)] = 208028, - [SMALL_STATE(5939)] = 208049, - [SMALL_STATE(5940)] = 208070, - [SMALL_STATE(5941)] = 208091, - [SMALL_STATE(5942)] = 208116, - [SMALL_STATE(5943)] = 208137, - [SMALL_STATE(5944)] = 208160, - [SMALL_STATE(5945)] = 208183, - [SMALL_STATE(5946)] = 208204, - [SMALL_STATE(5947)] = 208221, - [SMALL_STATE(5948)] = 208242, - [SMALL_STATE(5949)] = 208263, - [SMALL_STATE(5950)] = 208280, - [SMALL_STATE(5951)] = 208301, - [SMALL_STATE(5952)] = 208326, - [SMALL_STATE(5953)] = 208347, - [SMALL_STATE(5954)] = 208370, - [SMALL_STATE(5955)] = 208395, - [SMALL_STATE(5956)] = 208420, - [SMALL_STATE(5957)] = 208437, - [SMALL_STATE(5958)] = 208458, - [SMALL_STATE(5959)] = 208479, - [SMALL_STATE(5960)] = 208500, - [SMALL_STATE(5961)] = 208525, - [SMALL_STATE(5962)] = 208550, - [SMALL_STATE(5963)] = 208567, - [SMALL_STATE(5964)] = 208592, - [SMALL_STATE(5965)] = 208609, - [SMALL_STATE(5966)] = 208630, - [SMALL_STATE(5967)] = 208651, - [SMALL_STATE(5968)] = 208676, - [SMALL_STATE(5969)] = 208697, - [SMALL_STATE(5970)] = 208718, - [SMALL_STATE(5971)] = 208743, - [SMALL_STATE(5972)] = 208768, - [SMALL_STATE(5973)] = 208789, - [SMALL_STATE(5974)] = 208812, - [SMALL_STATE(5975)] = 208829, - [SMALL_STATE(5976)] = 208846, - [SMALL_STATE(5977)] = 208863, - [SMALL_STATE(5978)] = 208888, - [SMALL_STATE(5979)] = 208909, - [SMALL_STATE(5980)] = 208926, - [SMALL_STATE(5981)] = 208947, - [SMALL_STATE(5982)] = 208968, - [SMALL_STATE(5983)] = 208993, - [SMALL_STATE(5984)] = 209018, - [SMALL_STATE(5985)] = 209039, - [SMALL_STATE(5986)] = 209064, - [SMALL_STATE(5987)] = 209089, - [SMALL_STATE(5988)] = 209114, - [SMALL_STATE(5989)] = 209135, - [SMALL_STATE(5990)] = 209156, - [SMALL_STATE(5991)] = 209181, - [SMALL_STATE(5992)] = 209202, - [SMALL_STATE(5993)] = 209223, - [SMALL_STATE(5994)] = 209240, - [SMALL_STATE(5995)] = 209265, - [SMALL_STATE(5996)] = 209290, - [SMALL_STATE(5997)] = 209315, - [SMALL_STATE(5998)] = 209332, - [SMALL_STATE(5999)] = 209355, - [SMALL_STATE(6000)] = 209372, - [SMALL_STATE(6001)] = 209393, - [SMALL_STATE(6002)] = 209414, - [SMALL_STATE(6003)] = 209437, - [SMALL_STATE(6004)] = 209462, - [SMALL_STATE(6005)] = 209487, - [SMALL_STATE(6006)] = 209508, - [SMALL_STATE(6007)] = 209529, - [SMALL_STATE(6008)] = 209554, - [SMALL_STATE(6009)] = 209577, - [SMALL_STATE(6010)] = 209602, - [SMALL_STATE(6011)] = 209623, - [SMALL_STATE(6012)] = 209644, - [SMALL_STATE(6013)] = 209665, - [SMALL_STATE(6014)] = 209688, - [SMALL_STATE(6015)] = 209711, - [SMALL_STATE(6016)] = 209732, - [SMALL_STATE(6017)] = 209753, - [SMALL_STATE(6018)] = 209778, - [SMALL_STATE(6019)] = 209799, - [SMALL_STATE(6020)] = 209820, - [SMALL_STATE(6021)] = 209841, - [SMALL_STATE(6022)] = 209858, - [SMALL_STATE(6023)] = 209883, - [SMALL_STATE(6024)] = 209904, - [SMALL_STATE(6025)] = 209929, - [SMALL_STATE(6026)] = 209946, - [SMALL_STATE(6027)] = 209967, - [SMALL_STATE(6028)] = 209988, - [SMALL_STATE(6029)] = 210009, - [SMALL_STATE(6030)] = 210030, - [SMALL_STATE(6031)] = 210055, - [SMALL_STATE(6032)] = 210076, - [SMALL_STATE(6033)] = 210093, - [SMALL_STATE(6034)] = 210114, - [SMALL_STATE(6035)] = 210131, - [SMALL_STATE(6036)] = 210148, - [SMALL_STATE(6037)] = 210173, - [SMALL_STATE(6038)] = 210194, - [SMALL_STATE(6039)] = 210219, - [SMALL_STATE(6040)] = 210236, - [SMALL_STATE(6041)] = 210257, - [SMALL_STATE(6042)] = 210274, - [SMALL_STATE(6043)] = 210291, - [SMALL_STATE(6044)] = 210316, - [SMALL_STATE(6045)] = 210337, - [SMALL_STATE(6046)] = 210354, - [SMALL_STATE(6047)] = 210379, - [SMALL_STATE(6048)] = 210402, - [SMALL_STATE(6049)] = 210419, - [SMALL_STATE(6050)] = 210444, - [SMALL_STATE(6051)] = 210469, - [SMALL_STATE(6052)] = 210492, - [SMALL_STATE(6053)] = 210517, - [SMALL_STATE(6054)] = 210542, - [SMALL_STATE(6055)] = 210567, - [SMALL_STATE(6056)] = 210592, - [SMALL_STATE(6057)] = 210617, - [SMALL_STATE(6058)] = 210640, - [SMALL_STATE(6059)] = 210665, - [SMALL_STATE(6060)] = 210690, - [SMALL_STATE(6061)] = 210715, - [SMALL_STATE(6062)] = 210740, - [SMALL_STATE(6063)] = 210765, - [SMALL_STATE(6064)] = 210790, - [SMALL_STATE(6065)] = 210807, - [SMALL_STATE(6066)] = 210828, - [SMALL_STATE(6067)] = 210853, - [SMALL_STATE(6068)] = 210878, - [SMALL_STATE(6069)] = 210895, - [SMALL_STATE(6070)] = 210912, - [SMALL_STATE(6071)] = 210937, - [SMALL_STATE(6072)] = 210962, - [SMALL_STATE(6073)] = 210979, - [SMALL_STATE(6074)] = 210996, - [SMALL_STATE(6075)] = 211019, - [SMALL_STATE(6076)] = 211044, - [SMALL_STATE(6077)] = 211061, - [SMALL_STATE(6078)] = 211078, - [SMALL_STATE(6079)] = 211103, - [SMALL_STATE(6080)] = 211120, - [SMALL_STATE(6081)] = 211145, - [SMALL_STATE(6082)] = 211162, - [SMALL_STATE(6083)] = 211183, - [SMALL_STATE(6084)] = 211200, - [SMALL_STATE(6085)] = 211225, - [SMALL_STATE(6086)] = 211242, - [SMALL_STATE(6087)] = 211265, - [SMALL_STATE(6088)] = 211288, - [SMALL_STATE(6089)] = 211313, - [SMALL_STATE(6090)] = 211330, - [SMALL_STATE(6091)] = 211347, - [SMALL_STATE(6092)] = 211372, - [SMALL_STATE(6093)] = 211397, - [SMALL_STATE(6094)] = 211418, - [SMALL_STATE(6095)] = 211439, - [SMALL_STATE(6096)] = 211464, - [SMALL_STATE(6097)] = 211485, - [SMALL_STATE(6098)] = 211510, - [SMALL_STATE(6099)] = 211531, - [SMALL_STATE(6100)] = 211554, - [SMALL_STATE(6101)] = 211579, - [SMALL_STATE(6102)] = 211600, - [SMALL_STATE(6103)] = 211621, - [SMALL_STATE(6104)] = 211646, - [SMALL_STATE(6105)] = 211669, - [SMALL_STATE(6106)] = 211694, - [SMALL_STATE(6107)] = 211719, - [SMALL_STATE(6108)] = 211744, - [SMALL_STATE(6109)] = 211761, - [SMALL_STATE(6110)] = 211784, - [SMALL_STATE(6111)] = 211801, - [SMALL_STATE(6112)] = 211818, - [SMALL_STATE(6113)] = 211843, - [SMALL_STATE(6114)] = 211860, - [SMALL_STATE(6115)] = 211885, - [SMALL_STATE(6116)] = 211910, - [SMALL_STATE(6117)] = 211927, - [SMALL_STATE(6118)] = 211944, - [SMALL_STATE(6119)] = 211969, - [SMALL_STATE(6120)] = 211994, - [SMALL_STATE(6121)] = 212015, - [SMALL_STATE(6122)] = 212040, - [SMALL_STATE(6123)] = 212065, - [SMALL_STATE(6124)] = 212090, - [SMALL_STATE(6125)] = 212113, - [SMALL_STATE(6126)] = 212138, - [SMALL_STATE(6127)] = 212155, - [SMALL_STATE(6128)] = 212172, - [SMALL_STATE(6129)] = 212189, - [SMALL_STATE(6130)] = 212206, - [SMALL_STATE(6131)] = 212231, - [SMALL_STATE(6132)] = 212248, - [SMALL_STATE(6133)] = 212265, - [SMALL_STATE(6134)] = 212282, - [SMALL_STATE(6135)] = 212299, - [SMALL_STATE(6136)] = 212324, - [SMALL_STATE(6137)] = 212341, - [SMALL_STATE(6138)] = 212358, - [SMALL_STATE(6139)] = 212375, - [SMALL_STATE(6140)] = 212400, - [SMALL_STATE(6141)] = 212417, - [SMALL_STATE(6142)] = 212434, - [SMALL_STATE(6143)] = 212459, - [SMALL_STATE(6144)] = 212476, - [SMALL_STATE(6145)] = 212501, - [SMALL_STATE(6146)] = 212518, - [SMALL_STATE(6147)] = 212543, - [SMALL_STATE(6148)] = 212568, - [SMALL_STATE(6149)] = 212593, - [SMALL_STATE(6150)] = 212614, - [SMALL_STATE(6151)] = 212639, - [SMALL_STATE(6152)] = 212664, - [SMALL_STATE(6153)] = 212685, - [SMALL_STATE(6154)] = 212710, - [SMALL_STATE(6155)] = 212727, - [SMALL_STATE(6156)] = 212744, - [SMALL_STATE(6157)] = 212761, - [SMALL_STATE(6158)] = 212782, - [SMALL_STATE(6159)] = 212799, - [SMALL_STATE(6160)] = 212816, - [SMALL_STATE(6161)] = 212833, - [SMALL_STATE(6162)] = 212850, - [SMALL_STATE(6163)] = 212867, - [SMALL_STATE(6164)] = 212884, - [SMALL_STATE(6165)] = 212901, - [SMALL_STATE(6166)] = 212918, - [SMALL_STATE(6167)] = 212943, - [SMALL_STATE(6168)] = 212964, - [SMALL_STATE(6169)] = 212985, - [SMALL_STATE(6170)] = 213010, - [SMALL_STATE(6171)] = 213027, - [SMALL_STATE(6172)] = 213048, - [SMALL_STATE(6173)] = 213069, - [SMALL_STATE(6174)] = 213086, - [SMALL_STATE(6175)] = 213111, - [SMALL_STATE(6176)] = 213136, - [SMALL_STATE(6177)] = 213153, - [SMALL_STATE(6178)] = 213178, - [SMALL_STATE(6179)] = 213195, - [SMALL_STATE(6180)] = 213220, - [SMALL_STATE(6181)] = 213237, - [SMALL_STATE(6182)] = 213262, - [SMALL_STATE(6183)] = 213283, - [SMALL_STATE(6184)] = 213300, - [SMALL_STATE(6185)] = 213325, - [SMALL_STATE(6186)] = 213348, - [SMALL_STATE(6187)] = 213371, - [SMALL_STATE(6188)] = 213392, - [SMALL_STATE(6189)] = 213417, - [SMALL_STATE(6190)] = 213438, - [SMALL_STATE(6191)] = 213455, - [SMALL_STATE(6192)] = 213476, - [SMALL_STATE(6193)] = 213497, - [SMALL_STATE(6194)] = 213522, - [SMALL_STATE(6195)] = 213539, - [SMALL_STATE(6196)] = 213556, - [SMALL_STATE(6197)] = 213581, - [SMALL_STATE(6198)] = 213602, - [SMALL_STATE(6199)] = 213623, - [SMALL_STATE(6200)] = 213640, - [SMALL_STATE(6201)] = 213665, - [SMALL_STATE(6202)] = 213686, - [SMALL_STATE(6203)] = 213709, - [SMALL_STATE(6204)] = 213730, - [SMALL_STATE(6205)] = 213755, - [SMALL_STATE(6206)] = 213780, - [SMALL_STATE(6207)] = 213797, - [SMALL_STATE(6208)] = 213814, - [SMALL_STATE(6209)] = 213831, - [SMALL_STATE(6210)] = 213852, - [SMALL_STATE(6211)] = 213873, - [SMALL_STATE(6212)] = 213894, - [SMALL_STATE(6213)] = 213915, - [SMALL_STATE(6214)] = 213936, - [SMALL_STATE(6215)] = 213961, - [SMALL_STATE(6216)] = 213980, - [SMALL_STATE(6217)] = 214001, - [SMALL_STATE(6218)] = 214020, - [SMALL_STATE(6219)] = 214039, - [SMALL_STATE(6220)] = 214060, - [SMALL_STATE(6221)] = 214079, - [SMALL_STATE(6222)] = 214104, - [SMALL_STATE(6223)] = 214125, - [SMALL_STATE(6224)] = 214150, - [SMALL_STATE(6225)] = 214171, - [SMALL_STATE(6226)] = 214196, - [SMALL_STATE(6227)] = 214217, - [SMALL_STATE(6228)] = 214242, - [SMALL_STATE(6229)] = 214263, - [SMALL_STATE(6230)] = 214284, - [SMALL_STATE(6231)] = 214301, - [SMALL_STATE(6232)] = 214326, - [SMALL_STATE(6233)] = 214347, - [SMALL_STATE(6234)] = 214372, - [SMALL_STATE(6235)] = 214389, - [SMALL_STATE(6236)] = 214406, - [SMALL_STATE(6237)] = 214431, - [SMALL_STATE(6238)] = 214452, - [SMALL_STATE(6239)] = 214477, - [SMALL_STATE(6240)] = 214494, - [SMALL_STATE(6241)] = 214519, - [SMALL_STATE(6242)] = 214536, - [SMALL_STATE(6243)] = 214561, - [SMALL_STATE(6244)] = 214582, - [SMALL_STATE(6245)] = 214599, - [SMALL_STATE(6246)] = 214616, - [SMALL_STATE(6247)] = 214633, - [SMALL_STATE(6248)] = 214650, - [SMALL_STATE(6249)] = 214667, - [SMALL_STATE(6250)] = 214692, - [SMALL_STATE(6251)] = 214709, - [SMALL_STATE(6252)] = 214726, - [SMALL_STATE(6253)] = 214747, - [SMALL_STATE(6254)] = 214768, - [SMALL_STATE(6255)] = 214789, - [SMALL_STATE(6256)] = 214810, - [SMALL_STATE(6257)] = 214831, - [SMALL_STATE(6258)] = 214852, - [SMALL_STATE(6259)] = 214877, - [SMALL_STATE(6260)] = 214898, - [SMALL_STATE(6261)] = 214919, - [SMALL_STATE(6262)] = 214940, - [SMALL_STATE(6263)] = 214965, - [SMALL_STATE(6264)] = 214986, - [SMALL_STATE(6265)] = 215007, - [SMALL_STATE(6266)] = 215024, - [SMALL_STATE(6267)] = 215045, - [SMALL_STATE(6268)] = 215066, - [SMALL_STATE(6269)] = 215087, - [SMALL_STATE(6270)] = 215104, - [SMALL_STATE(6271)] = 215129, - [SMALL_STATE(6272)] = 215146, - [SMALL_STATE(6273)] = 215167, - [SMALL_STATE(6274)] = 215188, - [SMALL_STATE(6275)] = 215205, - [SMALL_STATE(6276)] = 215230, - [SMALL_STATE(6277)] = 215247, - [SMALL_STATE(6278)] = 215268, - [SMALL_STATE(6279)] = 215289, - [SMALL_STATE(6280)] = 215310, - [SMALL_STATE(6281)] = 215331, - [SMALL_STATE(6282)] = 215352, - [SMALL_STATE(6283)] = 215377, - [SMALL_STATE(6284)] = 215394, - [SMALL_STATE(6285)] = 215419, - [SMALL_STATE(6286)] = 215440, - [SMALL_STATE(6287)] = 215461, - [SMALL_STATE(6288)] = 215482, - [SMALL_STATE(6289)] = 215505, - [SMALL_STATE(6290)] = 215526, - [SMALL_STATE(6291)] = 215543, - [SMALL_STATE(6292)] = 215564, - [SMALL_STATE(6293)] = 215587, - [SMALL_STATE(6294)] = 215608, - [SMALL_STATE(6295)] = 215633, - [SMALL_STATE(6296)] = 215658, - [SMALL_STATE(6297)] = 215675, - [SMALL_STATE(6298)] = 215696, - [SMALL_STATE(6299)] = 215713, - [SMALL_STATE(6300)] = 215736, - [SMALL_STATE(6301)] = 215757, - [SMALL_STATE(6302)] = 215782, - [SMALL_STATE(6303)] = 215799, - [SMALL_STATE(6304)] = 215824, - [SMALL_STATE(6305)] = 215849, - [SMALL_STATE(6306)] = 215870, - [SMALL_STATE(6307)] = 215895, - [SMALL_STATE(6308)] = 215916, - [SMALL_STATE(6309)] = 215939, - [SMALL_STATE(6310)] = 215964, - [SMALL_STATE(6311)] = 215989, - [SMALL_STATE(6312)] = 216014, - [SMALL_STATE(6313)] = 216039, - [SMALL_STATE(6314)] = 216059, - [SMALL_STATE(6315)] = 216081, - [SMALL_STATE(6316)] = 216101, - [SMALL_STATE(6317)] = 216121, - [SMALL_STATE(6318)] = 216143, - [SMALL_STATE(6319)] = 216165, - [SMALL_STATE(6320)] = 216183, - [SMALL_STATE(6321)] = 216203, - [SMALL_STATE(6322)] = 216223, - [SMALL_STATE(6323)] = 216245, - [SMALL_STATE(6324)] = 216267, - [SMALL_STATE(6325)] = 216283, - [SMALL_STATE(6326)] = 216303, - [SMALL_STATE(6327)] = 216325, - [SMALL_STATE(6328)] = 216347, - [SMALL_STATE(6329)] = 216367, - [SMALL_STATE(6330)] = 216387, - [SMALL_STATE(6331)] = 216403, - [SMALL_STATE(6332)] = 216425, - [SMALL_STATE(6333)] = 216445, - [SMALL_STATE(6334)] = 216465, - [SMALL_STATE(6335)] = 216485, - [SMALL_STATE(6336)] = 216505, - [SMALL_STATE(6337)] = 216525, - [SMALL_STATE(6338)] = 216547, - [SMALL_STATE(6339)] = 216567, - [SMALL_STATE(6340)] = 216587, - [SMALL_STATE(6341)] = 216607, - [SMALL_STATE(6342)] = 216627, - [SMALL_STATE(6343)] = 216647, - [SMALL_STATE(6344)] = 216667, - [SMALL_STATE(6345)] = 216689, - [SMALL_STATE(6346)] = 216709, - [SMALL_STATE(6347)] = 216729, - [SMALL_STATE(6348)] = 216749, - [SMALL_STATE(6349)] = 216769, - [SMALL_STATE(6350)] = 216789, - [SMALL_STATE(6351)] = 216809, - [SMALL_STATE(6352)] = 216829, - [SMALL_STATE(6353)] = 216849, - [SMALL_STATE(6354)] = 216871, - [SMALL_STATE(6355)] = 216887, - [SMALL_STATE(6356)] = 216903, - [SMALL_STATE(6357)] = 216919, - [SMALL_STATE(6358)] = 216939, - [SMALL_STATE(6359)] = 216959, - [SMALL_STATE(6360)] = 216979, - [SMALL_STATE(6361)] = 216999, - [SMALL_STATE(6362)] = 217021, - [SMALL_STATE(6363)] = 217043, - [SMALL_STATE(6364)] = 217063, - [SMALL_STATE(6365)] = 217083, - [SMALL_STATE(6366)] = 217103, - [SMALL_STATE(6367)] = 217123, - [SMALL_STATE(6368)] = 217145, - [SMALL_STATE(6369)] = 217161, - [SMALL_STATE(6370)] = 217179, - [SMALL_STATE(6371)] = 217195, - [SMALL_STATE(6372)] = 217217, - [SMALL_STATE(6373)] = 217239, - [SMALL_STATE(6374)] = 217261, - [SMALL_STATE(6375)] = 217283, - [SMALL_STATE(6376)] = 217303, - [SMALL_STATE(6377)] = 217323, - [SMALL_STATE(6378)] = 217343, - [SMALL_STATE(6379)] = 217363, - [SMALL_STATE(6380)] = 217383, - [SMALL_STATE(6381)] = 217405, - [SMALL_STATE(6382)] = 217425, - [SMALL_STATE(6383)] = 217445, - [SMALL_STATE(6384)] = 217467, - [SMALL_STATE(6385)] = 217489, - [SMALL_STATE(6386)] = 217511, - [SMALL_STATE(6387)] = 217533, - [SMALL_STATE(6388)] = 217553, - [SMALL_STATE(6389)] = 217573, - [SMALL_STATE(6390)] = 217595, - [SMALL_STATE(6391)] = 217615, - [SMALL_STATE(6392)] = 217637, - [SMALL_STATE(6393)] = 217657, - [SMALL_STATE(6394)] = 217679, - [SMALL_STATE(6395)] = 217699, - [SMALL_STATE(6396)] = 217721, - [SMALL_STATE(6397)] = 217741, - [SMALL_STATE(6398)] = 217761, - [SMALL_STATE(6399)] = 217781, - [SMALL_STATE(6400)] = 217801, - [SMALL_STATE(6401)] = 217821, - [SMALL_STATE(6402)] = 217841, - [SMALL_STATE(6403)] = 217861, - [SMALL_STATE(6404)] = 217881, - [SMALL_STATE(6405)] = 217901, - [SMALL_STATE(6406)] = 217923, - [SMALL_STATE(6407)] = 217943, - [SMALL_STATE(6408)] = 217963, - [SMALL_STATE(6409)] = 217983, - [SMALL_STATE(6410)] = 218003, - [SMALL_STATE(6411)] = 218025, - [SMALL_STATE(6412)] = 218047, - [SMALL_STATE(6413)] = 218069, - [SMALL_STATE(6414)] = 218089, - [SMALL_STATE(6415)] = 218109, - [SMALL_STATE(6416)] = 218129, - [SMALL_STATE(6417)] = 218149, - [SMALL_STATE(6418)] = 218171, - [SMALL_STATE(6419)] = 218191, - [SMALL_STATE(6420)] = 218211, - [SMALL_STATE(6421)] = 218231, - [SMALL_STATE(6422)] = 218251, - [SMALL_STATE(6423)] = 218269, - [SMALL_STATE(6424)] = 218289, - [SMALL_STATE(6425)] = 218309, - [SMALL_STATE(6426)] = 218329, - [SMALL_STATE(6427)] = 218349, - [SMALL_STATE(6428)] = 218369, - [SMALL_STATE(6429)] = 218391, - [SMALL_STATE(6430)] = 218411, - [SMALL_STATE(6431)] = 218431, - [SMALL_STATE(6432)] = 218451, - [SMALL_STATE(6433)] = 218473, - [SMALL_STATE(6434)] = 218493, - [SMALL_STATE(6435)] = 218513, - [SMALL_STATE(6436)] = 218533, - [SMALL_STATE(6437)] = 218553, - [SMALL_STATE(6438)] = 218573, - [SMALL_STATE(6439)] = 218593, - [SMALL_STATE(6440)] = 218613, - [SMALL_STATE(6441)] = 218633, - [SMALL_STATE(6442)] = 218649, - [SMALL_STATE(6443)] = 218669, - [SMALL_STATE(6444)] = 218689, - [SMALL_STATE(6445)] = 218709, - [SMALL_STATE(6446)] = 218729, - [SMALL_STATE(6447)] = 218749, - [SMALL_STATE(6448)] = 218769, - [SMALL_STATE(6449)] = 218789, - [SMALL_STATE(6450)] = 218811, - [SMALL_STATE(6451)] = 218829, - [SMALL_STATE(6452)] = 218847, - [SMALL_STATE(6453)] = 218869, - [SMALL_STATE(6454)] = 218889, - [SMALL_STATE(6455)] = 218909, - [SMALL_STATE(6456)] = 218929, - [SMALL_STATE(6457)] = 218949, - [SMALL_STATE(6458)] = 218969, - [SMALL_STATE(6459)] = 218989, - [SMALL_STATE(6460)] = 219009, - [SMALL_STATE(6461)] = 219031, - [SMALL_STATE(6462)] = 219051, - [SMALL_STATE(6463)] = 219071, - [SMALL_STATE(6464)] = 219093, - [SMALL_STATE(6465)] = 219115, - [SMALL_STATE(6466)] = 219137, - [SMALL_STATE(6467)] = 219157, - [SMALL_STATE(6468)] = 219177, - [SMALL_STATE(6469)] = 219197, - [SMALL_STATE(6470)] = 219217, - [SMALL_STATE(6471)] = 219237, - [SMALL_STATE(6472)] = 219257, - [SMALL_STATE(6473)] = 219277, - [SMALL_STATE(6474)] = 219297, - [SMALL_STATE(6475)] = 219317, - [SMALL_STATE(6476)] = 219337, - [SMALL_STATE(6477)] = 219357, - [SMALL_STATE(6478)] = 219377, - [SMALL_STATE(6479)] = 219397, - [SMALL_STATE(6480)] = 219419, - [SMALL_STATE(6481)] = 219441, - [SMALL_STATE(6482)] = 219463, - [SMALL_STATE(6483)] = 219483, - [SMALL_STATE(6484)] = 219503, - [SMALL_STATE(6485)] = 219523, - [SMALL_STATE(6486)] = 219545, - [SMALL_STATE(6487)] = 219565, - [SMALL_STATE(6488)] = 219587, - [SMALL_STATE(6489)] = 219607, - [SMALL_STATE(6490)] = 219627, - [SMALL_STATE(6491)] = 219647, - [SMALL_STATE(6492)] = 219667, - [SMALL_STATE(6493)] = 219687, - [SMALL_STATE(6494)] = 219707, - [SMALL_STATE(6495)] = 219727, - [SMALL_STATE(6496)] = 219747, - [SMALL_STATE(6497)] = 219765, - [SMALL_STATE(6498)] = 219787, - [SMALL_STATE(6499)] = 219807, - [SMALL_STATE(6500)] = 219827, - [SMALL_STATE(6501)] = 219847, - [SMALL_STATE(6502)] = 219869, - [SMALL_STATE(6503)] = 219889, - [SMALL_STATE(6504)] = 219911, - [SMALL_STATE(6505)] = 219931, - [SMALL_STATE(6506)] = 219953, - [SMALL_STATE(6507)] = 219973, - [SMALL_STATE(6508)] = 219995, - [SMALL_STATE(6509)] = 220015, - [SMALL_STATE(6510)] = 220035, - [SMALL_STATE(6511)] = 220055, - [SMALL_STATE(6512)] = 220075, - [SMALL_STATE(6513)] = 220093, - [SMALL_STATE(6514)] = 220113, - [SMALL_STATE(6515)] = 220133, - [SMALL_STATE(6516)] = 220155, - [SMALL_STATE(6517)] = 220175, - [SMALL_STATE(6518)] = 220195, - [SMALL_STATE(6519)] = 220217, - [SMALL_STATE(6520)] = 220239, - [SMALL_STATE(6521)] = 220259, - [SMALL_STATE(6522)] = 220281, - [SMALL_STATE(6523)] = 220301, - [SMALL_STATE(6524)] = 220321, - [SMALL_STATE(6525)] = 220343, - [SMALL_STATE(6526)] = 220363, - [SMALL_STATE(6527)] = 220385, - [SMALL_STATE(6528)] = 220403, - [SMALL_STATE(6529)] = 220425, - [SMALL_STATE(6530)] = 220443, - [SMALL_STATE(6531)] = 220465, - [SMALL_STATE(6532)] = 220487, - [SMALL_STATE(6533)] = 220509, - [SMALL_STATE(6534)] = 220529, - [SMALL_STATE(6535)] = 220551, - [SMALL_STATE(6536)] = 220571, - [SMALL_STATE(6537)] = 220591, - [SMALL_STATE(6538)] = 220613, - [SMALL_STATE(6539)] = 220633, - [SMALL_STATE(6540)] = 220653, - [SMALL_STATE(6541)] = 220673, - [SMALL_STATE(6542)] = 220693, - [SMALL_STATE(6543)] = 220713, - [SMALL_STATE(6544)] = 220735, - [SMALL_STATE(6545)] = 220753, - [SMALL_STATE(6546)] = 220773, - [SMALL_STATE(6547)] = 220791, - [SMALL_STATE(6548)] = 220807, - [SMALL_STATE(6549)] = 220829, - [SMALL_STATE(6550)] = 220851, - [SMALL_STATE(6551)] = 220867, - [SMALL_STATE(6552)] = 220889, - [SMALL_STATE(6553)] = 220911, - [SMALL_STATE(6554)] = 220929, - [SMALL_STATE(6555)] = 220951, - [SMALL_STATE(6556)] = 220973, - [SMALL_STATE(6557)] = 220989, - [SMALL_STATE(6558)] = 221011, - [SMALL_STATE(6559)] = 221033, - [SMALL_STATE(6560)] = 221053, - [SMALL_STATE(6561)] = 221069, - [SMALL_STATE(6562)] = 221091, - [SMALL_STATE(6563)] = 221111, - [SMALL_STATE(6564)] = 221131, - [SMALL_STATE(6565)] = 221151, - [SMALL_STATE(6566)] = 221171, - [SMALL_STATE(6567)] = 221187, - [SMALL_STATE(6568)] = 221209, - [SMALL_STATE(6569)] = 221231, - [SMALL_STATE(6570)] = 221253, - [SMALL_STATE(6571)] = 221275, - [SMALL_STATE(6572)] = 221297, - [SMALL_STATE(6573)] = 221319, - [SMALL_STATE(6574)] = 221339, - [SMALL_STATE(6575)] = 221361, - [SMALL_STATE(6576)] = 221379, - [SMALL_STATE(6577)] = 221401, - [SMALL_STATE(6578)] = 221421, - [SMALL_STATE(6579)] = 221443, - [SMALL_STATE(6580)] = 221465, - [SMALL_STATE(6581)] = 221485, - [SMALL_STATE(6582)] = 221505, - [SMALL_STATE(6583)] = 221527, - [SMALL_STATE(6584)] = 221547, - [SMALL_STATE(6585)] = 221567, - [SMALL_STATE(6586)] = 221583, - [SMALL_STATE(6587)] = 221603, - [SMALL_STATE(6588)] = 221625, - [SMALL_STATE(6589)] = 221647, - [SMALL_STATE(6590)] = 221663, - [SMALL_STATE(6591)] = 221685, - [SMALL_STATE(6592)] = 221707, - [SMALL_STATE(6593)] = 221729, - [SMALL_STATE(6594)] = 221749, - [SMALL_STATE(6595)] = 221769, - [SMALL_STATE(6596)] = 221788, - [SMALL_STATE(6597)] = 221803, - [SMALL_STATE(6598)] = 221820, - [SMALL_STATE(6599)] = 221835, - [SMALL_STATE(6600)] = 221850, - [SMALL_STATE(6601)] = 221869, - [SMALL_STATE(6602)] = 221888, - [SMALL_STATE(6603)] = 221903, - [SMALL_STATE(6604)] = 221918, - [SMALL_STATE(6605)] = 221933, - [SMALL_STATE(6606)] = 221948, - [SMALL_STATE(6607)] = 221963, - [SMALL_STATE(6608)] = 221978, - [SMALL_STATE(6609)] = 221993, - [SMALL_STATE(6610)] = 222012, - [SMALL_STATE(6611)] = 222027, - [SMALL_STATE(6612)] = 222042, - [SMALL_STATE(6613)] = 222057, - [SMALL_STATE(6614)] = 222072, - [SMALL_STATE(6615)] = 222087, - [SMALL_STATE(6616)] = 222106, - [SMALL_STATE(6617)] = 222121, - [SMALL_STATE(6618)] = 222136, - [SMALL_STATE(6619)] = 222151, - [SMALL_STATE(6620)] = 222166, - [SMALL_STATE(6621)] = 222181, - [SMALL_STATE(6622)] = 222196, - [SMALL_STATE(6623)] = 222211, - [SMALL_STATE(6624)] = 222230, - [SMALL_STATE(6625)] = 222245, - [SMALL_STATE(6626)] = 222260, - [SMALL_STATE(6627)] = 222275, - [SMALL_STATE(6628)] = 222290, - [SMALL_STATE(6629)] = 222309, - [SMALL_STATE(6630)] = 222328, - [SMALL_STATE(6631)] = 222347, - [SMALL_STATE(6632)] = 222362, - [SMALL_STATE(6633)] = 222381, - [SMALL_STATE(6634)] = 222400, - [SMALL_STATE(6635)] = 222415, - [SMALL_STATE(6636)] = 222430, - [SMALL_STATE(6637)] = 222447, - [SMALL_STATE(6638)] = 222466, - [SMALL_STATE(6639)] = 222485, - [SMALL_STATE(6640)] = 222500, - [SMALL_STATE(6641)] = 222515, - [SMALL_STATE(6642)] = 222530, - [SMALL_STATE(6643)] = 222545, - [SMALL_STATE(6644)] = 222560, - [SMALL_STATE(6645)] = 222575, - [SMALL_STATE(6646)] = 222590, - [SMALL_STATE(6647)] = 222605, - [SMALL_STATE(6648)] = 222622, - [SMALL_STATE(6649)] = 222637, - [SMALL_STATE(6650)] = 222656, - [SMALL_STATE(6651)] = 222671, - [SMALL_STATE(6652)] = 222690, - [SMALL_STATE(6653)] = 222705, - [SMALL_STATE(6654)] = 222720, - [SMALL_STATE(6655)] = 222735, - [SMALL_STATE(6656)] = 222750, - [SMALL_STATE(6657)] = 222767, - [SMALL_STATE(6658)] = 222782, - [SMALL_STATE(6659)] = 222801, - [SMALL_STATE(6660)] = 222820, - [SMALL_STATE(6661)] = 222837, - [SMALL_STATE(6662)] = 222854, - [SMALL_STATE(6663)] = 222873, - [SMALL_STATE(6664)] = 222888, - [SMALL_STATE(6665)] = 222903, - [SMALL_STATE(6666)] = 222922, - [SMALL_STATE(6667)] = 222937, - [SMALL_STATE(6668)] = 222952, - [SMALL_STATE(6669)] = 222967, - [SMALL_STATE(6670)] = 222984, - [SMALL_STATE(6671)] = 223003, - [SMALL_STATE(6672)] = 223018, - [SMALL_STATE(6673)] = 223033, - [SMALL_STATE(6674)] = 223048, - [SMALL_STATE(6675)] = 223065, - [SMALL_STATE(6676)] = 223080, - [SMALL_STATE(6677)] = 223095, - [SMALL_STATE(6678)] = 223110, - [SMALL_STATE(6679)] = 223125, - [SMALL_STATE(6680)] = 223140, - [SMALL_STATE(6681)] = 223157, - [SMALL_STATE(6682)] = 223172, - [SMALL_STATE(6683)] = 223191, - [SMALL_STATE(6684)] = 223206, - [SMALL_STATE(6685)] = 223221, - [SMALL_STATE(6686)] = 223236, - [SMALL_STATE(6687)] = 223255, - [SMALL_STATE(6688)] = 223270, - [SMALL_STATE(6689)] = 223285, - [SMALL_STATE(6690)] = 223302, - [SMALL_STATE(6691)] = 223317, - [SMALL_STATE(6692)] = 223332, - [SMALL_STATE(6693)] = 223347, - [SMALL_STATE(6694)] = 223362, - [SMALL_STATE(6695)] = 223381, - [SMALL_STATE(6696)] = 223396, - [SMALL_STATE(6697)] = 223413, - [SMALL_STATE(6698)] = 223428, - [SMALL_STATE(6699)] = 223443, - [SMALL_STATE(6700)] = 223462, - [SMALL_STATE(6701)] = 223481, - [SMALL_STATE(6702)] = 223496, - [SMALL_STATE(6703)] = 223511, - [SMALL_STATE(6704)] = 223526, - [SMALL_STATE(6705)] = 223541, - [SMALL_STATE(6706)] = 223556, - [SMALL_STATE(6707)] = 223571, - [SMALL_STATE(6708)] = 223590, - [SMALL_STATE(6709)] = 223605, - [SMALL_STATE(6710)] = 223624, - [SMALL_STATE(6711)] = 223639, - [SMALL_STATE(6712)] = 223656, - [SMALL_STATE(6713)] = 223675, - [SMALL_STATE(6714)] = 223694, - [SMALL_STATE(6715)] = 223709, - [SMALL_STATE(6716)] = 223728, - [SMALL_STATE(6717)] = 223743, - [SMALL_STATE(6718)] = 223758, - [SMALL_STATE(6719)] = 223773, - [SMALL_STATE(6720)] = 223790, - [SMALL_STATE(6721)] = 223805, - [SMALL_STATE(6722)] = 223820, - [SMALL_STATE(6723)] = 223835, - [SMALL_STATE(6724)] = 223850, - [SMALL_STATE(6725)] = 223865, - [SMALL_STATE(6726)] = 223884, - [SMALL_STATE(6727)] = 223899, - [SMALL_STATE(6728)] = 223914, - [SMALL_STATE(6729)] = 223933, - [SMALL_STATE(6730)] = 223950, - [SMALL_STATE(6731)] = 223967, - [SMALL_STATE(6732)] = 223986, - [SMALL_STATE(6733)] = 224003, - [SMALL_STATE(6734)] = 224022, - [SMALL_STATE(6735)] = 224039, - [SMALL_STATE(6736)] = 224058, - [SMALL_STATE(6737)] = 224073, - [SMALL_STATE(6738)] = 224092, - [SMALL_STATE(6739)] = 224109, - [SMALL_STATE(6740)] = 224124, - [SMALL_STATE(6741)] = 224141, - [SMALL_STATE(6742)] = 224160, - [SMALL_STATE(6743)] = 224179, - [SMALL_STATE(6744)] = 224194, - [SMALL_STATE(6745)] = 224211, - [SMALL_STATE(6746)] = 224226, - [SMALL_STATE(6747)] = 224245, - [SMALL_STATE(6748)] = 224264, - [SMALL_STATE(6749)] = 224281, - [SMALL_STATE(6750)] = 224296, - [SMALL_STATE(6751)] = 224311, - [SMALL_STATE(6752)] = 224330, - [SMALL_STATE(6753)] = 224349, - [SMALL_STATE(6754)] = 224364, - [SMALL_STATE(6755)] = 224379, - [SMALL_STATE(6756)] = 224398, - [SMALL_STATE(6757)] = 224417, - [SMALL_STATE(6758)] = 224436, - [SMALL_STATE(6759)] = 224451, - [SMALL_STATE(6760)] = 224466, - [SMALL_STATE(6761)] = 224481, - [SMALL_STATE(6762)] = 224496, - [SMALL_STATE(6763)] = 224515, - [SMALL_STATE(6764)] = 224530, - [SMALL_STATE(6765)] = 224549, - [SMALL_STATE(6766)] = 224564, - [SMALL_STATE(6767)] = 224579, - [SMALL_STATE(6768)] = 224594, - [SMALL_STATE(6769)] = 224609, - [SMALL_STATE(6770)] = 224628, - [SMALL_STATE(6771)] = 224643, - [SMALL_STATE(6772)] = 224662, - [SMALL_STATE(6773)] = 224677, - [SMALL_STATE(6774)] = 224696, - [SMALL_STATE(6775)] = 224715, - [SMALL_STATE(6776)] = 224730, - [SMALL_STATE(6777)] = 224745, - [SMALL_STATE(6778)] = 224760, - [SMALL_STATE(6779)] = 224775, - [SMALL_STATE(6780)] = 224792, - [SMALL_STATE(6781)] = 224807, - [SMALL_STATE(6782)] = 224822, - [SMALL_STATE(6783)] = 224841, - [SMALL_STATE(6784)] = 224856, - [SMALL_STATE(6785)] = 224871, - [SMALL_STATE(6786)] = 224890, - [SMALL_STATE(6787)] = 224905, - [SMALL_STATE(6788)] = 224924, - [SMALL_STATE(6789)] = 224939, - [SMALL_STATE(6790)] = 224954, - [SMALL_STATE(6791)] = 224973, - [SMALL_STATE(6792)] = 224988, - [SMALL_STATE(6793)] = 225007, - [SMALL_STATE(6794)] = 225022, - [SMALL_STATE(6795)] = 225041, - [SMALL_STATE(6796)] = 225056, - [SMALL_STATE(6797)] = 225071, - [SMALL_STATE(6798)] = 225090, - [SMALL_STATE(6799)] = 225105, - [SMALL_STATE(6800)] = 225120, - [SMALL_STATE(6801)] = 225135, - [SMALL_STATE(6802)] = 225154, - [SMALL_STATE(6803)] = 225173, - [SMALL_STATE(6804)] = 225188, - [SMALL_STATE(6805)] = 225203, - [SMALL_STATE(6806)] = 225222, - [SMALL_STATE(6807)] = 225237, - [SMALL_STATE(6808)] = 225252, - [SMALL_STATE(6809)] = 225269, - [SMALL_STATE(6810)] = 225284, - [SMALL_STATE(6811)] = 225301, - [SMALL_STATE(6812)] = 225318, - [SMALL_STATE(6813)] = 225333, - [SMALL_STATE(6814)] = 225348, - [SMALL_STATE(6815)] = 225363, - [SMALL_STATE(6816)] = 225378, - [SMALL_STATE(6817)] = 225393, - [SMALL_STATE(6818)] = 225408, - [SMALL_STATE(6819)] = 225423, - [SMALL_STATE(6820)] = 225442, - [SMALL_STATE(6821)] = 225457, - [SMALL_STATE(6822)] = 225476, - [SMALL_STATE(6823)] = 225491, - [SMALL_STATE(6824)] = 225506, - [SMALL_STATE(6825)] = 225521, - [SMALL_STATE(6826)] = 225536, - [SMALL_STATE(6827)] = 225551, - [SMALL_STATE(6828)] = 225570, - [SMALL_STATE(6829)] = 225585, - [SMALL_STATE(6830)] = 225600, - [SMALL_STATE(6831)] = 225615, - [SMALL_STATE(6832)] = 225630, - [SMALL_STATE(6833)] = 225649, - [SMALL_STATE(6834)] = 225664, - [SMALL_STATE(6835)] = 225679, - [SMALL_STATE(6836)] = 225696, - [SMALL_STATE(6837)] = 225715, - [SMALL_STATE(6838)] = 225734, - [SMALL_STATE(6839)] = 225753, - [SMALL_STATE(6840)] = 225772, - [SMALL_STATE(6841)] = 225787, - [SMALL_STATE(6842)] = 225802, - [SMALL_STATE(6843)] = 225819, - [SMALL_STATE(6844)] = 225838, - [SMALL_STATE(6845)] = 225853, - [SMALL_STATE(6846)] = 225872, - [SMALL_STATE(6847)] = 225887, - [SMALL_STATE(6848)] = 225906, - [SMALL_STATE(6849)] = 225925, - [SMALL_STATE(6850)] = 225940, - [SMALL_STATE(6851)] = 225959, - [SMALL_STATE(6852)] = 225974, - [SMALL_STATE(6853)] = 225993, - [SMALL_STATE(6854)] = 226012, - [SMALL_STATE(6855)] = 226027, - [SMALL_STATE(6856)] = 226042, - [SMALL_STATE(6857)] = 226061, - [SMALL_STATE(6858)] = 226080, - [SMALL_STATE(6859)] = 226095, - [SMALL_STATE(6860)] = 226110, - [SMALL_STATE(6861)] = 226129, - [SMALL_STATE(6862)] = 226144, - [SMALL_STATE(6863)] = 226159, - [SMALL_STATE(6864)] = 226174, - [SMALL_STATE(6865)] = 226189, - [SMALL_STATE(6866)] = 226206, - [SMALL_STATE(6867)] = 226221, - [SMALL_STATE(6868)] = 226236, - [SMALL_STATE(6869)] = 226251, - [SMALL_STATE(6870)] = 226266, - [SMALL_STATE(6871)] = 226281, - [SMALL_STATE(6872)] = 226296, - [SMALL_STATE(6873)] = 226313, - [SMALL_STATE(6874)] = 226328, - [SMALL_STATE(6875)] = 226347, - [SMALL_STATE(6876)] = 226362, - [SMALL_STATE(6877)] = 226377, - [SMALL_STATE(6878)] = 226394, - [SMALL_STATE(6879)] = 226411, - [SMALL_STATE(6880)] = 226426, - [SMALL_STATE(6881)] = 226441, - [SMALL_STATE(6882)] = 226458, - [SMALL_STATE(6883)] = 226477, - [SMALL_STATE(6884)] = 226496, - [SMALL_STATE(6885)] = 226515, - [SMALL_STATE(6886)] = 226530, - [SMALL_STATE(6887)] = 226549, - [SMALL_STATE(6888)] = 226564, - [SMALL_STATE(6889)] = 226579, - [SMALL_STATE(6890)] = 226594, - [SMALL_STATE(6891)] = 226613, - [SMALL_STATE(6892)] = 226628, - [SMALL_STATE(6893)] = 226647, - [SMALL_STATE(6894)] = 226662, - [SMALL_STATE(6895)] = 226677, - [SMALL_STATE(6896)] = 226692, - [SMALL_STATE(6897)] = 226707, - [SMALL_STATE(6898)] = 226726, - [SMALL_STATE(6899)] = 226741, - [SMALL_STATE(6900)] = 226756, - [SMALL_STATE(6901)] = 226771, - [SMALL_STATE(6902)] = 226786, - [SMALL_STATE(6903)] = 226801, - [SMALL_STATE(6904)] = 226820, - [SMALL_STATE(6905)] = 226835, - [SMALL_STATE(6906)] = 226850, - [SMALL_STATE(6907)] = 226869, - [SMALL_STATE(6908)] = 226888, - [SMALL_STATE(6909)] = 226903, - [SMALL_STATE(6910)] = 226918, - [SMALL_STATE(6911)] = 226937, - [SMALL_STATE(6912)] = 226956, - [SMALL_STATE(6913)] = 226975, - [SMALL_STATE(6914)] = 226994, - [SMALL_STATE(6915)] = 227009, - [SMALL_STATE(6916)] = 227024, - [SMALL_STATE(6917)] = 227039, - [SMALL_STATE(6918)] = 227054, - [SMALL_STATE(6919)] = 227069, - [SMALL_STATE(6920)] = 227084, - [SMALL_STATE(6921)] = 227099, - [SMALL_STATE(6922)] = 227114, - [SMALL_STATE(6923)] = 227133, - [SMALL_STATE(6924)] = 227152, - [SMALL_STATE(6925)] = 227171, - [SMALL_STATE(6926)] = 227186, - [SMALL_STATE(6927)] = 227201, - [SMALL_STATE(6928)] = 227218, - [SMALL_STATE(6929)] = 227233, - [SMALL_STATE(6930)] = 227252, - [SMALL_STATE(6931)] = 227271, - [SMALL_STATE(6932)] = 227290, - [SMALL_STATE(6933)] = 227309, - [SMALL_STATE(6934)] = 227324, - [SMALL_STATE(6935)] = 227339, - [SMALL_STATE(6936)] = 227354, - [SMALL_STATE(6937)] = 227373, - [SMALL_STATE(6938)] = 227388, - [SMALL_STATE(6939)] = 227403, - [SMALL_STATE(6940)] = 227418, - [SMALL_STATE(6941)] = 227433, - [SMALL_STATE(6942)] = 227452, - [SMALL_STATE(6943)] = 227467, - [SMALL_STATE(6944)] = 227486, - [SMALL_STATE(6945)] = 227501, - [SMALL_STATE(6946)] = 227520, - [SMALL_STATE(6947)] = 227535, - [SMALL_STATE(6948)] = 227554, - [SMALL_STATE(6949)] = 227569, - [SMALL_STATE(6950)] = 227584, - [SMALL_STATE(6951)] = 227603, - [SMALL_STATE(6952)] = 227622, - [SMALL_STATE(6953)] = 227641, - [SMALL_STATE(6954)] = 227660, - [SMALL_STATE(6955)] = 227675, - [SMALL_STATE(6956)] = 227690, - [SMALL_STATE(6957)] = 227709, - [SMALL_STATE(6958)] = 227728, - [SMALL_STATE(6959)] = 227745, - [SMALL_STATE(6960)] = 227762, - [SMALL_STATE(6961)] = 227781, - [SMALL_STATE(6962)] = 227798, - [SMALL_STATE(6963)] = 227817, - [SMALL_STATE(6964)] = 227834, - [SMALL_STATE(6965)] = 227849, - [SMALL_STATE(6966)] = 227864, - [SMALL_STATE(6967)] = 227879, - [SMALL_STATE(6968)] = 227898, - [SMALL_STATE(6969)] = 227917, - [SMALL_STATE(6970)] = 227932, - [SMALL_STATE(6971)] = 227949, - [SMALL_STATE(6972)] = 227964, - [SMALL_STATE(6973)] = 227979, - [SMALL_STATE(6974)] = 227994, - [SMALL_STATE(6975)] = 228013, - [SMALL_STATE(6976)] = 228032, - [SMALL_STATE(6977)] = 228047, - [SMALL_STATE(6978)] = 228062, - [SMALL_STATE(6979)] = 228081, - [SMALL_STATE(6980)] = 228096, - [SMALL_STATE(6981)] = 228111, - [SMALL_STATE(6982)] = 228126, - [SMALL_STATE(6983)] = 228141, - [SMALL_STATE(6984)] = 228156, - [SMALL_STATE(6985)] = 228175, - [SMALL_STATE(6986)] = 228192, - [SMALL_STATE(6987)] = 228211, - [SMALL_STATE(6988)] = 228226, - [SMALL_STATE(6989)] = 228245, - [SMALL_STATE(6990)] = 228260, - [SMALL_STATE(6991)] = 228275, - [SMALL_STATE(6992)] = 228290, - [SMALL_STATE(6993)] = 228305, - [SMALL_STATE(6994)] = 228324, - [SMALL_STATE(6995)] = 228343, - [SMALL_STATE(6996)] = 228358, - [SMALL_STATE(6997)] = 228373, - [SMALL_STATE(6998)] = 228392, - [SMALL_STATE(6999)] = 228407, - [SMALL_STATE(7000)] = 228426, - [SMALL_STATE(7001)] = 228441, - [SMALL_STATE(7002)] = 228460, - [SMALL_STATE(7003)] = 228479, - [SMALL_STATE(7004)] = 228498, - [SMALL_STATE(7005)] = 228517, - [SMALL_STATE(7006)] = 228536, - [SMALL_STATE(7007)] = 228551, - [SMALL_STATE(7008)] = 228570, - [SMALL_STATE(7009)] = 228585, - [SMALL_STATE(7010)] = 228602, - [SMALL_STATE(7011)] = 228619, - [SMALL_STATE(7012)] = 228638, - [SMALL_STATE(7013)] = 228653, - [SMALL_STATE(7014)] = 228672, - [SMALL_STATE(7015)] = 228691, - [SMALL_STATE(7016)] = 228710, - [SMALL_STATE(7017)] = 228727, - [SMALL_STATE(7018)] = 228746, - [SMALL_STATE(7019)] = 228765, - [SMALL_STATE(7020)] = 228784, - [SMALL_STATE(7021)] = 228799, - [SMALL_STATE(7022)] = 228818, - [SMALL_STATE(7023)] = 228833, - [SMALL_STATE(7024)] = 228852, - [SMALL_STATE(7025)] = 228867, - [SMALL_STATE(7026)] = 228882, - [SMALL_STATE(7027)] = 228901, - [SMALL_STATE(7028)] = 228920, - [SMALL_STATE(7029)] = 228939, - [SMALL_STATE(7030)] = 228956, - [SMALL_STATE(7031)] = 228971, - [SMALL_STATE(7032)] = 228988, - [SMALL_STATE(7033)] = 229003, - [SMALL_STATE(7034)] = 229022, - [SMALL_STATE(7035)] = 229037, - [SMALL_STATE(7036)] = 229052, - [SMALL_STATE(7037)] = 229071, - [SMALL_STATE(7038)] = 229086, - [SMALL_STATE(7039)] = 229105, - [SMALL_STATE(7040)] = 229124, - [SMALL_STATE(7041)] = 229139, - [SMALL_STATE(7042)] = 229154, - [SMALL_STATE(7043)] = 229169, - [SMALL_STATE(7044)] = 229188, - [SMALL_STATE(7045)] = 229207, - [SMALL_STATE(7046)] = 229222, - [SMALL_STATE(7047)] = 229237, - [SMALL_STATE(7048)] = 229256, - [SMALL_STATE(7049)] = 229271, - [SMALL_STATE(7050)] = 229286, - [SMALL_STATE(7051)] = 229301, - [SMALL_STATE(7052)] = 229320, - [SMALL_STATE(7053)] = 229337, - [SMALL_STATE(7054)] = 229356, - [SMALL_STATE(7055)] = 229373, - [SMALL_STATE(7056)] = 229392, - [SMALL_STATE(7057)] = 229411, - [SMALL_STATE(7058)] = 229430, - [SMALL_STATE(7059)] = 229449, - [SMALL_STATE(7060)] = 229464, - [SMALL_STATE(7061)] = 229479, - [SMALL_STATE(7062)] = 229498, - [SMALL_STATE(7063)] = 229513, - [SMALL_STATE(7064)] = 229528, - [SMALL_STATE(7065)] = 229547, - [SMALL_STATE(7066)] = 229566, - [SMALL_STATE(7067)] = 229581, - [SMALL_STATE(7068)] = 229600, - [SMALL_STATE(7069)] = 229615, - [SMALL_STATE(7070)] = 229634, - [SMALL_STATE(7071)] = 229649, - [SMALL_STATE(7072)] = 229668, - [SMALL_STATE(7073)] = 229685, - [SMALL_STATE(7074)] = 229700, - [SMALL_STATE(7075)] = 229715, - [SMALL_STATE(7076)] = 229730, - [SMALL_STATE(7077)] = 229745, - [SMALL_STATE(7078)] = 229760, - [SMALL_STATE(7079)] = 229775, - [SMALL_STATE(7080)] = 229790, - [SMALL_STATE(7081)] = 229809, - [SMALL_STATE(7082)] = 229824, - [SMALL_STATE(7083)] = 229839, - [SMALL_STATE(7084)] = 229854, - [SMALL_STATE(7085)] = 229869, - [SMALL_STATE(7086)] = 229886, - [SMALL_STATE(7087)] = 229901, - [SMALL_STATE(7088)] = 229920, - [SMALL_STATE(7089)] = 229939, - [SMALL_STATE(7090)] = 229954, - [SMALL_STATE(7091)] = 229969, - [SMALL_STATE(7092)] = 229984, - [SMALL_STATE(7093)] = 230001, - [SMALL_STATE(7094)] = 230020, - [SMALL_STATE(7095)] = 230035, - [SMALL_STATE(7096)] = 230054, - [SMALL_STATE(7097)] = 230069, - [SMALL_STATE(7098)] = 230088, - [SMALL_STATE(7099)] = 230107, - [SMALL_STATE(7100)] = 230126, - [SMALL_STATE(7101)] = 230143, - [SMALL_STATE(7102)] = 230160, - [SMALL_STATE(7103)] = 230175, - [SMALL_STATE(7104)] = 230194, - [SMALL_STATE(7105)] = 230211, - [SMALL_STATE(7106)] = 230230, - [SMALL_STATE(7107)] = 230245, - [SMALL_STATE(7108)] = 230264, - [SMALL_STATE(7109)] = 230279, - [SMALL_STATE(7110)] = 230298, - [SMALL_STATE(7111)] = 230315, - [SMALL_STATE(7112)] = 230334, - [SMALL_STATE(7113)] = 230349, - [SMALL_STATE(7114)] = 230364, - [SMALL_STATE(7115)] = 230381, - [SMALL_STATE(7116)] = 230396, - [SMALL_STATE(7117)] = 230415, - [SMALL_STATE(7118)] = 230434, - [SMALL_STATE(7119)] = 230453, - [SMALL_STATE(7120)] = 230468, - [SMALL_STATE(7121)] = 230485, - [SMALL_STATE(7122)] = 230504, - [SMALL_STATE(7123)] = 230519, - [SMALL_STATE(7124)] = 230538, - [SMALL_STATE(7125)] = 230557, - [SMALL_STATE(7126)] = 230574, - [SMALL_STATE(7127)] = 230593, - [SMALL_STATE(7128)] = 230608, - [SMALL_STATE(7129)] = 230625, - [SMALL_STATE(7130)] = 230644, - [SMALL_STATE(7131)] = 230663, - [SMALL_STATE(7132)] = 230682, - [SMALL_STATE(7133)] = 230701, - [SMALL_STATE(7134)] = 230716, - [SMALL_STATE(7135)] = 230731, - [SMALL_STATE(7136)] = 230750, - [SMALL_STATE(7137)] = 230769, - [SMALL_STATE(7138)] = 230784, - [SMALL_STATE(7139)] = 230799, - [SMALL_STATE(7140)] = 230814, - [SMALL_STATE(7141)] = 230833, - [SMALL_STATE(7142)] = 230852, - [SMALL_STATE(7143)] = 230871, - [SMALL_STATE(7144)] = 230888, - [SMALL_STATE(7145)] = 230907, - [SMALL_STATE(7146)] = 230924, - [SMALL_STATE(7147)] = 230943, - [SMALL_STATE(7148)] = 230962, - [SMALL_STATE(7149)] = 230981, - [SMALL_STATE(7150)] = 230996, - [SMALL_STATE(7151)] = 231013, - [SMALL_STATE(7152)] = 231032, - [SMALL_STATE(7153)] = 231049, - [SMALL_STATE(7154)] = 231064, - [SMALL_STATE(7155)] = 231079, - [SMALL_STATE(7156)] = 231094, - [SMALL_STATE(7157)] = 231109, - [SMALL_STATE(7158)] = 231124, - [SMALL_STATE(7159)] = 231139, - [SMALL_STATE(7160)] = 231154, - [SMALL_STATE(7161)] = 231173, - [SMALL_STATE(7162)] = 231188, - [SMALL_STATE(7163)] = 231207, - [SMALL_STATE(7164)] = 231226, - [SMALL_STATE(7165)] = 231241, - [SMALL_STATE(7166)] = 231256, - [SMALL_STATE(7167)] = 231271, - [SMALL_STATE(7168)] = 231286, - [SMALL_STATE(7169)] = 231301, - [SMALL_STATE(7170)] = 231318, - [SMALL_STATE(7171)] = 231335, - [SMALL_STATE(7172)] = 231350, - [SMALL_STATE(7173)] = 231365, - [SMALL_STATE(7174)] = 231382, - [SMALL_STATE(7175)] = 231399, - [SMALL_STATE(7176)] = 231414, - [SMALL_STATE(7177)] = 231429, - [SMALL_STATE(7178)] = 231444, - [SMALL_STATE(7179)] = 231459, - [SMALL_STATE(7180)] = 231474, - [SMALL_STATE(7181)] = 231489, - [SMALL_STATE(7182)] = 231504, - [SMALL_STATE(7183)] = 231519, - [SMALL_STATE(7184)] = 231534, - [SMALL_STATE(7185)] = 231549, - [SMALL_STATE(7186)] = 231564, - [SMALL_STATE(7187)] = 231579, - [SMALL_STATE(7188)] = 231594, - [SMALL_STATE(7189)] = 231609, - [SMALL_STATE(7190)] = 231624, - [SMALL_STATE(7191)] = 231639, - [SMALL_STATE(7192)] = 231654, - [SMALL_STATE(7193)] = 231673, - [SMALL_STATE(7194)] = 231688, - [SMALL_STATE(7195)] = 231707, - [SMALL_STATE(7196)] = 231722, - [SMALL_STATE(7197)] = 231737, - [SMALL_STATE(7198)] = 231752, - [SMALL_STATE(7199)] = 231769, - [SMALL_STATE(7200)] = 231786, - [SMALL_STATE(7201)] = 231801, - [SMALL_STATE(7202)] = 231820, - [SMALL_STATE(7203)] = 231837, - [SMALL_STATE(7204)] = 231856, - [SMALL_STATE(7205)] = 231873, - [SMALL_STATE(7206)] = 231888, - [SMALL_STATE(7207)] = 231903, - [SMALL_STATE(7208)] = 231918, - [SMALL_STATE(7209)] = 231933, - [SMALL_STATE(7210)] = 231952, - [SMALL_STATE(7211)] = 231971, - [SMALL_STATE(7212)] = 231990, - [SMALL_STATE(7213)] = 232005, - [SMALL_STATE(7214)] = 232020, - [SMALL_STATE(7215)] = 232039, - [SMALL_STATE(7216)] = 232054, - [SMALL_STATE(7217)] = 232069, - [SMALL_STATE(7218)] = 232084, - [SMALL_STATE(7219)] = 232101, - [SMALL_STATE(7220)] = 232120, - [SMALL_STATE(7221)] = 232139, - [SMALL_STATE(7222)] = 232158, - [SMALL_STATE(7223)] = 232173, - [SMALL_STATE(7224)] = 232192, - [SMALL_STATE(7225)] = 232207, - [SMALL_STATE(7226)] = 232222, - [SMALL_STATE(7227)] = 232237, - [SMALL_STATE(7228)] = 232252, - [SMALL_STATE(7229)] = 232271, - [SMALL_STATE(7230)] = 232286, - [SMALL_STATE(7231)] = 232305, - [SMALL_STATE(7232)] = 232320, - [SMALL_STATE(7233)] = 232335, - [SMALL_STATE(7234)] = 232352, - [SMALL_STATE(7235)] = 232371, - [SMALL_STATE(7236)] = 232386, - [SMALL_STATE(7237)] = 232405, - [SMALL_STATE(7238)] = 232420, - [SMALL_STATE(7239)] = 232439, - [SMALL_STATE(7240)] = 232454, - [SMALL_STATE(7241)] = 232473, - [SMALL_STATE(7242)] = 232488, - [SMALL_STATE(7243)] = 232503, - [SMALL_STATE(7244)] = 232520, - [SMALL_STATE(7245)] = 232539, - [SMALL_STATE(7246)] = 232554, - [SMALL_STATE(7247)] = 232569, - [SMALL_STATE(7248)] = 232584, - [SMALL_STATE(7249)] = 232601, - [SMALL_STATE(7250)] = 232618, - [SMALL_STATE(7251)] = 232633, - [SMALL_STATE(7252)] = 232650, - [SMALL_STATE(7253)] = 232669, - [SMALL_STATE(7254)] = 232684, - [SMALL_STATE(7255)] = 232703, - [SMALL_STATE(7256)] = 232722, - [SMALL_STATE(7257)] = 232741, - [SMALL_STATE(7258)] = 232760, - [SMALL_STATE(7259)] = 232775, - [SMALL_STATE(7260)] = 232794, - [SMALL_STATE(7261)] = 232809, - [SMALL_STATE(7262)] = 232824, - [SMALL_STATE(7263)] = 232843, - [SMALL_STATE(7264)] = 232862, - [SMALL_STATE(7265)] = 232879, - [SMALL_STATE(7266)] = 232896, - [SMALL_STATE(7267)] = 232913, - [SMALL_STATE(7268)] = 232932, - [SMALL_STATE(7269)] = 232947, - [SMALL_STATE(7270)] = 232966, - [SMALL_STATE(7271)] = 232985, - [SMALL_STATE(7272)] = 233002, - [SMALL_STATE(7273)] = 233021, - [SMALL_STATE(7274)] = 233036, - [SMALL_STATE(7275)] = 233051, - [SMALL_STATE(7276)] = 233070, - [SMALL_STATE(7277)] = 233089, - [SMALL_STATE(7278)] = 233104, - [SMALL_STATE(7279)] = 233119, - [SMALL_STATE(7280)] = 233138, - [SMALL_STATE(7281)] = 233157, - [SMALL_STATE(7282)] = 233174, - [SMALL_STATE(7283)] = 233189, - [SMALL_STATE(7284)] = 233206, - [SMALL_STATE(7285)] = 233225, - [SMALL_STATE(7286)] = 233242, - [SMALL_STATE(7287)] = 233257, - [SMALL_STATE(7288)] = 233276, - [SMALL_STATE(7289)] = 233293, - [SMALL_STATE(7290)] = 233308, - [SMALL_STATE(7291)] = 233327, - [SMALL_STATE(7292)] = 233346, - [SMALL_STATE(7293)] = 233365, - [SMALL_STATE(7294)] = 233380, - [SMALL_STATE(7295)] = 233399, - [SMALL_STATE(7296)] = 233416, - [SMALL_STATE(7297)] = 233435, - [SMALL_STATE(7298)] = 233452, - [SMALL_STATE(7299)] = 233471, - [SMALL_STATE(7300)] = 233488, - [SMALL_STATE(7301)] = 233507, - [SMALL_STATE(7302)] = 233526, - [SMALL_STATE(7303)] = 233543, - [SMALL_STATE(7304)] = 233558, - [SMALL_STATE(7305)] = 233577, - [SMALL_STATE(7306)] = 233596, - [SMALL_STATE(7307)] = 233615, - [SMALL_STATE(7308)] = 233634, - [SMALL_STATE(7309)] = 233653, - [SMALL_STATE(7310)] = 233670, - [SMALL_STATE(7311)] = 233685, - [SMALL_STATE(7312)] = 233700, - [SMALL_STATE(7313)] = 233719, - [SMALL_STATE(7314)] = 233736, - [SMALL_STATE(7315)] = 233751, - [SMALL_STATE(7316)] = 233766, - [SMALL_STATE(7317)] = 233785, - [SMALL_STATE(7318)] = 233804, - [SMALL_STATE(7319)] = 233819, - [SMALL_STATE(7320)] = 233834, - [SMALL_STATE(7321)] = 233849, - [SMALL_STATE(7322)] = 233864, - [SMALL_STATE(7323)] = 233879, - [SMALL_STATE(7324)] = 233894, - [SMALL_STATE(7325)] = 233913, - [SMALL_STATE(7326)] = 233932, - [SMALL_STATE(7327)] = 233947, - [SMALL_STATE(7328)] = 233962, - [SMALL_STATE(7329)] = 233981, - [SMALL_STATE(7330)] = 234000, - [SMALL_STATE(7331)] = 234015, - [SMALL_STATE(7332)] = 234030, - [SMALL_STATE(7333)] = 234049, - [SMALL_STATE(7334)] = 234064, - [SMALL_STATE(7335)] = 234079, - [SMALL_STATE(7336)] = 234094, - [SMALL_STATE(7337)] = 234113, - [SMALL_STATE(7338)] = 234128, - [SMALL_STATE(7339)] = 234147, - [SMALL_STATE(7340)] = 234162, - [SMALL_STATE(7341)] = 234177, - [SMALL_STATE(7342)] = 234192, - [SMALL_STATE(7343)] = 234207, - [SMALL_STATE(7344)] = 234222, - [SMALL_STATE(7345)] = 234237, - [SMALL_STATE(7346)] = 234252, - [SMALL_STATE(7347)] = 234267, - [SMALL_STATE(7348)] = 234282, - [SMALL_STATE(7349)] = 234301, - [SMALL_STATE(7350)] = 234318, - [SMALL_STATE(7351)] = 234335, - [SMALL_STATE(7352)] = 234350, - [SMALL_STATE(7353)] = 234365, - [SMALL_STATE(7354)] = 234384, - [SMALL_STATE(7355)] = 234399, - [SMALL_STATE(7356)] = 234416, - [SMALL_STATE(7357)] = 234435, - [SMALL_STATE(7358)] = 234452, - [SMALL_STATE(7359)] = 234471, - [SMALL_STATE(7360)] = 234488, - [SMALL_STATE(7361)] = 234507, - [SMALL_STATE(7362)] = 234522, - [SMALL_STATE(7363)] = 234536, - [SMALL_STATE(7364)] = 234552, - [SMALL_STATE(7365)] = 234566, - [SMALL_STATE(7366)] = 234580, - [SMALL_STATE(7367)] = 234596, - [SMALL_STATE(7368)] = 234612, - [SMALL_STATE(7369)] = 234628, - [SMALL_STATE(7370)] = 234644, - [SMALL_STATE(7371)] = 234658, - [SMALL_STATE(7372)] = 234674, - [SMALL_STATE(7373)] = 234690, - [SMALL_STATE(7374)] = 234706, - [SMALL_STATE(7375)] = 234722, - [SMALL_STATE(7376)] = 234738, - [SMALL_STATE(7377)] = 234752, - [SMALL_STATE(7378)] = 234768, - [SMALL_STATE(7379)] = 234784, - [SMALL_STATE(7380)] = 234800, - [SMALL_STATE(7381)] = 234816, - [SMALL_STATE(7382)] = 234832, - [SMALL_STATE(7383)] = 234848, - [SMALL_STATE(7384)] = 234864, - [SMALL_STATE(7385)] = 234880, - [SMALL_STATE(7386)] = 234894, - [SMALL_STATE(7387)] = 234908, - [SMALL_STATE(7388)] = 234922, - [SMALL_STATE(7389)] = 234938, - [SMALL_STATE(7390)] = 234954, - [SMALL_STATE(7391)] = 234970, - [SMALL_STATE(7392)] = 234984, - [SMALL_STATE(7393)] = 234998, - [SMALL_STATE(7394)] = 235014, - [SMALL_STATE(7395)] = 235028, - [SMALL_STATE(7396)] = 235044, - [SMALL_STATE(7397)] = 235060, - [SMALL_STATE(7398)] = 235076, - [SMALL_STATE(7399)] = 235090, - [SMALL_STATE(7400)] = 235104, - [SMALL_STATE(7401)] = 235118, - [SMALL_STATE(7402)] = 235132, - [SMALL_STATE(7403)] = 235146, - [SMALL_STATE(7404)] = 235162, - [SMALL_STATE(7405)] = 235178, - [SMALL_STATE(7406)] = 235192, - [SMALL_STATE(7407)] = 235206, - [SMALL_STATE(7408)] = 235220, - [SMALL_STATE(7409)] = 235234, - [SMALL_STATE(7410)] = 235248, - [SMALL_STATE(7411)] = 235264, - [SMALL_STATE(7412)] = 235278, - [SMALL_STATE(7413)] = 235294, - [SMALL_STATE(7414)] = 235308, - [SMALL_STATE(7415)] = 235324, - [SMALL_STATE(7416)] = 235338, - [SMALL_STATE(7417)] = 235354, - [SMALL_STATE(7418)] = 235370, - [SMALL_STATE(7419)] = 235384, - [SMALL_STATE(7420)] = 235398, - [SMALL_STATE(7421)] = 235412, - [SMALL_STATE(7422)] = 235428, - [SMALL_STATE(7423)] = 235442, - [SMALL_STATE(7424)] = 235456, - [SMALL_STATE(7425)] = 235472, - [SMALL_STATE(7426)] = 235486, - [SMALL_STATE(7427)] = 235500, - [SMALL_STATE(7428)] = 235516, - [SMALL_STATE(7429)] = 235530, - [SMALL_STATE(7430)] = 235546, - [SMALL_STATE(7431)] = 235562, - [SMALL_STATE(7432)] = 235576, - [SMALL_STATE(7433)] = 235592, - [SMALL_STATE(7434)] = 235608, - [SMALL_STATE(7435)] = 235624, - [SMALL_STATE(7436)] = 235640, - [SMALL_STATE(7437)] = 235656, - [SMALL_STATE(7438)] = 235670, - [SMALL_STATE(7439)] = 235684, - [SMALL_STATE(7440)] = 235698, - [SMALL_STATE(7441)] = 235712, - [SMALL_STATE(7442)] = 235726, - [SMALL_STATE(7443)] = 235740, - [SMALL_STATE(7444)] = 235754, - [SMALL_STATE(7445)] = 235768, - [SMALL_STATE(7446)] = 235784, - [SMALL_STATE(7447)] = 235798, - [SMALL_STATE(7448)] = 235814, - [SMALL_STATE(7449)] = 235828, - [SMALL_STATE(7450)] = 235844, - [SMALL_STATE(7451)] = 235858, - [SMALL_STATE(7452)] = 235872, - [SMALL_STATE(7453)] = 235888, - [SMALL_STATE(7454)] = 235902, - [SMALL_STATE(7455)] = 235918, - [SMALL_STATE(7456)] = 235934, - [SMALL_STATE(7457)] = 235948, - [SMALL_STATE(7458)] = 235964, - [SMALL_STATE(7459)] = 235978, - [SMALL_STATE(7460)] = 235992, - [SMALL_STATE(7461)] = 236008, - [SMALL_STATE(7462)] = 236024, - [SMALL_STATE(7463)] = 236038, - [SMALL_STATE(7464)] = 236052, - [SMALL_STATE(7465)] = 236066, - [SMALL_STATE(7466)] = 236080, - [SMALL_STATE(7467)] = 236094, - [SMALL_STATE(7468)] = 236110, - [SMALL_STATE(7469)] = 236124, - [SMALL_STATE(7470)] = 236140, - [SMALL_STATE(7471)] = 236156, - [SMALL_STATE(7472)] = 236172, - [SMALL_STATE(7473)] = 236186, - [SMALL_STATE(7474)] = 236202, - [SMALL_STATE(7475)] = 236218, - [SMALL_STATE(7476)] = 236232, - [SMALL_STATE(7477)] = 236248, - [SMALL_STATE(7478)] = 236264, - [SMALL_STATE(7479)] = 236280, - [SMALL_STATE(7480)] = 236296, - [SMALL_STATE(7481)] = 236312, - [SMALL_STATE(7482)] = 236326, - [SMALL_STATE(7483)] = 236340, - [SMALL_STATE(7484)] = 236356, - [SMALL_STATE(7485)] = 236372, - [SMALL_STATE(7486)] = 236388, - [SMALL_STATE(7487)] = 236404, - [SMALL_STATE(7488)] = 236418, - [SMALL_STATE(7489)] = 236434, - [SMALL_STATE(7490)] = 236448, - [SMALL_STATE(7491)] = 236462, - [SMALL_STATE(7492)] = 236478, - [SMALL_STATE(7493)] = 236492, - [SMALL_STATE(7494)] = 236506, - [SMALL_STATE(7495)] = 236520, - [SMALL_STATE(7496)] = 236536, - [SMALL_STATE(7497)] = 236550, - [SMALL_STATE(7498)] = 236566, - [SMALL_STATE(7499)] = 236580, - [SMALL_STATE(7500)] = 236596, - [SMALL_STATE(7501)] = 236610, - [SMALL_STATE(7502)] = 236626, - [SMALL_STATE(7503)] = 236642, - [SMALL_STATE(7504)] = 236656, - [SMALL_STATE(7505)] = 236672, - [SMALL_STATE(7506)] = 236688, - [SMALL_STATE(7507)] = 236704, - [SMALL_STATE(7508)] = 236718, - [SMALL_STATE(7509)] = 236734, - [SMALL_STATE(7510)] = 236748, - [SMALL_STATE(7511)] = 236762, - [SMALL_STATE(7512)] = 236776, - [SMALL_STATE(7513)] = 236792, - [SMALL_STATE(7514)] = 236808, - [SMALL_STATE(7515)] = 236824, - [SMALL_STATE(7516)] = 236840, - [SMALL_STATE(7517)] = 236854, - [SMALL_STATE(7518)] = 236870, - [SMALL_STATE(7519)] = 236886, - [SMALL_STATE(7520)] = 236900, - [SMALL_STATE(7521)] = 236914, - [SMALL_STATE(7522)] = 236930, - [SMALL_STATE(7523)] = 236946, - [SMALL_STATE(7524)] = 236960, - [SMALL_STATE(7525)] = 236976, - [SMALL_STATE(7526)] = 236990, - [SMALL_STATE(7527)] = 237006, - [SMALL_STATE(7528)] = 237020, - [SMALL_STATE(7529)] = 237036, - [SMALL_STATE(7530)] = 237052, - [SMALL_STATE(7531)] = 237068, - [SMALL_STATE(7532)] = 237084, - [SMALL_STATE(7533)] = 237098, - [SMALL_STATE(7534)] = 237114, - [SMALL_STATE(7535)] = 237130, - [SMALL_STATE(7536)] = 237146, - [SMALL_STATE(7537)] = 237162, - [SMALL_STATE(7538)] = 237176, - [SMALL_STATE(7539)] = 237190, - [SMALL_STATE(7540)] = 237204, - [SMALL_STATE(7541)] = 237218, - [SMALL_STATE(7542)] = 237234, - [SMALL_STATE(7543)] = 237250, - [SMALL_STATE(7544)] = 237264, - [SMALL_STATE(7545)] = 237280, - [SMALL_STATE(7546)] = 237294, - [SMALL_STATE(7547)] = 237310, - [SMALL_STATE(7548)] = 237326, - [SMALL_STATE(7549)] = 237340, - [SMALL_STATE(7550)] = 237354, - [SMALL_STATE(7551)] = 237370, - [SMALL_STATE(7552)] = 237386, - [SMALL_STATE(7553)] = 237400, - [SMALL_STATE(7554)] = 237414, - [SMALL_STATE(7555)] = 237428, - [SMALL_STATE(7556)] = 237444, - [SMALL_STATE(7557)] = 237460, - [SMALL_STATE(7558)] = 237474, - [SMALL_STATE(7559)] = 237488, - [SMALL_STATE(7560)] = 237502, - [SMALL_STATE(7561)] = 237518, - [SMALL_STATE(7562)] = 237532, - [SMALL_STATE(7563)] = 237548, - [SMALL_STATE(7564)] = 237564, - [SMALL_STATE(7565)] = 237578, - [SMALL_STATE(7566)] = 237592, - [SMALL_STATE(7567)] = 237608, - [SMALL_STATE(7568)] = 237622, - [SMALL_STATE(7569)] = 237636, - [SMALL_STATE(7570)] = 237652, - [SMALL_STATE(7571)] = 237668, - [SMALL_STATE(7572)] = 237682, - [SMALL_STATE(7573)] = 237696, - [SMALL_STATE(7574)] = 237712, - [SMALL_STATE(7575)] = 237728, - [SMALL_STATE(7576)] = 237744, - [SMALL_STATE(7577)] = 237760, - [SMALL_STATE(7578)] = 237774, - [SMALL_STATE(7579)] = 237788, - [SMALL_STATE(7580)] = 237804, - [SMALL_STATE(7581)] = 237818, - [SMALL_STATE(7582)] = 237834, - [SMALL_STATE(7583)] = 237848, - [SMALL_STATE(7584)] = 237864, - [SMALL_STATE(7585)] = 237880, - [SMALL_STATE(7586)] = 237896, - [SMALL_STATE(7587)] = 237910, - [SMALL_STATE(7588)] = 237924, - [SMALL_STATE(7589)] = 237940, - [SMALL_STATE(7590)] = 237954, - [SMALL_STATE(7591)] = 237968, - [SMALL_STATE(7592)] = 237984, - [SMALL_STATE(7593)] = 238000, - [SMALL_STATE(7594)] = 238014, - [SMALL_STATE(7595)] = 238028, - [SMALL_STATE(7596)] = 238042, - [SMALL_STATE(7597)] = 238058, - [SMALL_STATE(7598)] = 238072, - [SMALL_STATE(7599)] = 238088, - [SMALL_STATE(7600)] = 238104, - [SMALL_STATE(7601)] = 238120, - [SMALL_STATE(7602)] = 238136, - [SMALL_STATE(7603)] = 238152, - [SMALL_STATE(7604)] = 238166, - [SMALL_STATE(7605)] = 238182, - [SMALL_STATE(7606)] = 238196, - [SMALL_STATE(7607)] = 238212, - [SMALL_STATE(7608)] = 238226, - [SMALL_STATE(7609)] = 238240, - [SMALL_STATE(7610)] = 238254, - [SMALL_STATE(7611)] = 238268, - [SMALL_STATE(7612)] = 238284, - [SMALL_STATE(7613)] = 238300, - [SMALL_STATE(7614)] = 238316, - [SMALL_STATE(7615)] = 238330, - [SMALL_STATE(7616)] = 238346, - [SMALL_STATE(7617)] = 238360, - [SMALL_STATE(7618)] = 238376, - [SMALL_STATE(7619)] = 238390, - [SMALL_STATE(7620)] = 238404, - [SMALL_STATE(7621)] = 238420, - [SMALL_STATE(7622)] = 238436, - [SMALL_STATE(7623)] = 238452, - [SMALL_STATE(7624)] = 238466, - [SMALL_STATE(7625)] = 238482, - [SMALL_STATE(7626)] = 238498, - [SMALL_STATE(7627)] = 238512, - [SMALL_STATE(7628)] = 238528, - [SMALL_STATE(7629)] = 238544, - [SMALL_STATE(7630)] = 238560, - [SMALL_STATE(7631)] = 238574, - [SMALL_STATE(7632)] = 238590, - [SMALL_STATE(7633)] = 238604, - [SMALL_STATE(7634)] = 238618, - [SMALL_STATE(7635)] = 238634, - [SMALL_STATE(7636)] = 238648, - [SMALL_STATE(7637)] = 238664, - [SMALL_STATE(7638)] = 238680, - [SMALL_STATE(7639)] = 238696, - [SMALL_STATE(7640)] = 238710, - [SMALL_STATE(7641)] = 238726, - [SMALL_STATE(7642)] = 238742, - [SMALL_STATE(7643)] = 238758, - [SMALL_STATE(7644)] = 238772, - [SMALL_STATE(7645)] = 238788, - [SMALL_STATE(7646)] = 238802, - [SMALL_STATE(7647)] = 238816, - [SMALL_STATE(7648)] = 238832, - [SMALL_STATE(7649)] = 238848, - [SMALL_STATE(7650)] = 238862, - [SMALL_STATE(7651)] = 238876, - [SMALL_STATE(7652)] = 238892, - [SMALL_STATE(7653)] = 238908, - [SMALL_STATE(7654)] = 238922, - [SMALL_STATE(7655)] = 238936, - [SMALL_STATE(7656)] = 238952, - [SMALL_STATE(7657)] = 238966, - [SMALL_STATE(7658)] = 238982, - [SMALL_STATE(7659)] = 238996, - [SMALL_STATE(7660)] = 239012, - [SMALL_STATE(7661)] = 239028, - [SMALL_STATE(7662)] = 239042, - [SMALL_STATE(7663)] = 239058, - [SMALL_STATE(7664)] = 239072, - [SMALL_STATE(7665)] = 239086, - [SMALL_STATE(7666)] = 239102, - [SMALL_STATE(7667)] = 239118, - [SMALL_STATE(7668)] = 239134, - [SMALL_STATE(7669)] = 239148, - [SMALL_STATE(7670)] = 239164, - [SMALL_STATE(7671)] = 239180, - [SMALL_STATE(7672)] = 239196, - [SMALL_STATE(7673)] = 239212, - [SMALL_STATE(7674)] = 239226, - [SMALL_STATE(7675)] = 239242, - [SMALL_STATE(7676)] = 239258, - [SMALL_STATE(7677)] = 239272, - [SMALL_STATE(7678)] = 239286, - [SMALL_STATE(7679)] = 239300, - [SMALL_STATE(7680)] = 239316, - [SMALL_STATE(7681)] = 239332, - [SMALL_STATE(7682)] = 239346, - [SMALL_STATE(7683)] = 239362, - [SMALL_STATE(7684)] = 239376, - [SMALL_STATE(7685)] = 239390, - [SMALL_STATE(7686)] = 239404, - [SMALL_STATE(7687)] = 239420, - [SMALL_STATE(7688)] = 239436, - [SMALL_STATE(7689)] = 239452, - [SMALL_STATE(7690)] = 239468, - [SMALL_STATE(7691)] = 239482, - [SMALL_STATE(7692)] = 239498, - [SMALL_STATE(7693)] = 239514, - [SMALL_STATE(7694)] = 239528, - [SMALL_STATE(7695)] = 239542, - [SMALL_STATE(7696)] = 239556, - [SMALL_STATE(7697)] = 239572, - [SMALL_STATE(7698)] = 239588, - [SMALL_STATE(7699)] = 239602, - [SMALL_STATE(7700)] = 239618, - [SMALL_STATE(7701)] = 239634, - [SMALL_STATE(7702)] = 239648, - [SMALL_STATE(7703)] = 239664, - [SMALL_STATE(7704)] = 239680, - [SMALL_STATE(7705)] = 239696, - [SMALL_STATE(7706)] = 239712, - [SMALL_STATE(7707)] = 239728, - [SMALL_STATE(7708)] = 239744, - [SMALL_STATE(7709)] = 239758, - [SMALL_STATE(7710)] = 239772, - [SMALL_STATE(7711)] = 239786, - [SMALL_STATE(7712)] = 239802, - [SMALL_STATE(7713)] = 239816, - [SMALL_STATE(7714)] = 239832, - [SMALL_STATE(7715)] = 239846, - [SMALL_STATE(7716)] = 239862, - [SMALL_STATE(7717)] = 239876, - [SMALL_STATE(7718)] = 239892, - [SMALL_STATE(7719)] = 239908, - [SMALL_STATE(7720)] = 239922, - [SMALL_STATE(7721)] = 239936, - [SMALL_STATE(7722)] = 239950, - [SMALL_STATE(7723)] = 239964, - [SMALL_STATE(7724)] = 239980, - [SMALL_STATE(7725)] = 239994, - [SMALL_STATE(7726)] = 240010, - [SMALL_STATE(7727)] = 240026, - [SMALL_STATE(7728)] = 240042, - [SMALL_STATE(7729)] = 240058, - [SMALL_STATE(7730)] = 240072, - [SMALL_STATE(7731)] = 240088, - [SMALL_STATE(7732)] = 240102, - [SMALL_STATE(7733)] = 240116, - [SMALL_STATE(7734)] = 240130, - [SMALL_STATE(7735)] = 240146, - [SMALL_STATE(7736)] = 240160, - [SMALL_STATE(7737)] = 240176, - [SMALL_STATE(7738)] = 240192, - [SMALL_STATE(7739)] = 240206, - [SMALL_STATE(7740)] = 240222, - [SMALL_STATE(7741)] = 240238, - [SMALL_STATE(7742)] = 240254, - [SMALL_STATE(7743)] = 240268, - [SMALL_STATE(7744)] = 240284, - [SMALL_STATE(7745)] = 240300, - [SMALL_STATE(7746)] = 240316, - [SMALL_STATE(7747)] = 240332, - [SMALL_STATE(7748)] = 240348, - [SMALL_STATE(7749)] = 240364, - [SMALL_STATE(7750)] = 240380, - [SMALL_STATE(7751)] = 240396, - [SMALL_STATE(7752)] = 240410, - [SMALL_STATE(7753)] = 240424, - [SMALL_STATE(7754)] = 240440, - [SMALL_STATE(7755)] = 240456, - [SMALL_STATE(7756)] = 240472, - [SMALL_STATE(7757)] = 240488, - [SMALL_STATE(7758)] = 240502, - [SMALL_STATE(7759)] = 240518, - [SMALL_STATE(7760)] = 240534, - [SMALL_STATE(7761)] = 240550, - [SMALL_STATE(7762)] = 240566, - [SMALL_STATE(7763)] = 240580, - [SMALL_STATE(7764)] = 240596, - [SMALL_STATE(7765)] = 240612, - [SMALL_STATE(7766)] = 240628, - [SMALL_STATE(7767)] = 240644, - [SMALL_STATE(7768)] = 240660, - [SMALL_STATE(7769)] = 240674, - [SMALL_STATE(7770)] = 240690, - [SMALL_STATE(7771)] = 240706, - [SMALL_STATE(7772)] = 240722, - [SMALL_STATE(7773)] = 240738, - [SMALL_STATE(7774)] = 240754, - [SMALL_STATE(7775)] = 240770, - [SMALL_STATE(7776)] = 240784, - [SMALL_STATE(7777)] = 240798, - [SMALL_STATE(7778)] = 240814, - [SMALL_STATE(7779)] = 240830, - [SMALL_STATE(7780)] = 240846, - [SMALL_STATE(7781)] = 240862, - [SMALL_STATE(7782)] = 240878, - [SMALL_STATE(7783)] = 240894, - [SMALL_STATE(7784)] = 240908, - [SMALL_STATE(7785)] = 240922, - [SMALL_STATE(7786)] = 240936, - [SMALL_STATE(7787)] = 240950, - [SMALL_STATE(7788)] = 240966, - [SMALL_STATE(7789)] = 240982, - [SMALL_STATE(7790)] = 240998, - [SMALL_STATE(7791)] = 241014, - [SMALL_STATE(7792)] = 241030, - [SMALL_STATE(7793)] = 241046, - [SMALL_STATE(7794)] = 241060, - [SMALL_STATE(7795)] = 241076, - [SMALL_STATE(7796)] = 241090, - [SMALL_STATE(7797)] = 241106, - [SMALL_STATE(7798)] = 241122, - [SMALL_STATE(7799)] = 241136, - [SMALL_STATE(7800)] = 241150, - [SMALL_STATE(7801)] = 241166, - [SMALL_STATE(7802)] = 241180, - [SMALL_STATE(7803)] = 241194, - [SMALL_STATE(7804)] = 241208, - [SMALL_STATE(7805)] = 241224, - [SMALL_STATE(7806)] = 241240, - [SMALL_STATE(7807)] = 241254, - [SMALL_STATE(7808)] = 241268, - [SMALL_STATE(7809)] = 241282, - [SMALL_STATE(7810)] = 241298, - [SMALL_STATE(7811)] = 241314, - [SMALL_STATE(7812)] = 241330, - [SMALL_STATE(7813)] = 241344, - [SMALL_STATE(7814)] = 241358, - [SMALL_STATE(7815)] = 241372, - [SMALL_STATE(7816)] = 241388, - [SMALL_STATE(7817)] = 241404, - [SMALL_STATE(7818)] = 241420, - [SMALL_STATE(7819)] = 241436, - [SMALL_STATE(7820)] = 241452, - [SMALL_STATE(7821)] = 241466, - [SMALL_STATE(7822)] = 241480, - [SMALL_STATE(7823)] = 241494, - [SMALL_STATE(7824)] = 241508, - [SMALL_STATE(7825)] = 241522, - [SMALL_STATE(7826)] = 241536, - [SMALL_STATE(7827)] = 241552, - [SMALL_STATE(7828)] = 241568, - [SMALL_STATE(7829)] = 241584, - [SMALL_STATE(7830)] = 241598, - [SMALL_STATE(7831)] = 241614, - [SMALL_STATE(7832)] = 241630, - [SMALL_STATE(7833)] = 241646, - [SMALL_STATE(7834)] = 241662, - [SMALL_STATE(7835)] = 241676, - [SMALL_STATE(7836)] = 241690, - [SMALL_STATE(7837)] = 241704, - [SMALL_STATE(7838)] = 241718, - [SMALL_STATE(7839)] = 241732, - [SMALL_STATE(7840)] = 241746, - [SMALL_STATE(7841)] = 241762, - [SMALL_STATE(7842)] = 241776, - [SMALL_STATE(7843)] = 241792, - [SMALL_STATE(7844)] = 241808, - [SMALL_STATE(7845)] = 241824, - [SMALL_STATE(7846)] = 241840, - [SMALL_STATE(7847)] = 241856, - [SMALL_STATE(7848)] = 241870, - [SMALL_STATE(7849)] = 241884, - [SMALL_STATE(7850)] = 241898, - [SMALL_STATE(7851)] = 241914, - [SMALL_STATE(7852)] = 241930, - [SMALL_STATE(7853)] = 241946, - [SMALL_STATE(7854)] = 241962, - [SMALL_STATE(7855)] = 241978, - [SMALL_STATE(7856)] = 241992, - [SMALL_STATE(7857)] = 242006, - [SMALL_STATE(7858)] = 242020, - [SMALL_STATE(7859)] = 242034, - [SMALL_STATE(7860)] = 242048, - [SMALL_STATE(7861)] = 242064, - [SMALL_STATE(7862)] = 242078, - [SMALL_STATE(7863)] = 242092, - [SMALL_STATE(7864)] = 242108, - [SMALL_STATE(7865)] = 242124, - [SMALL_STATE(7866)] = 242140, - [SMALL_STATE(7867)] = 242154, - [SMALL_STATE(7868)] = 242168, - [SMALL_STATE(7869)] = 242184, - [SMALL_STATE(7870)] = 242200, - [SMALL_STATE(7871)] = 242214, - [SMALL_STATE(7872)] = 242228, - [SMALL_STATE(7873)] = 242242, - [SMALL_STATE(7874)] = 242256, - [SMALL_STATE(7875)] = 242270, - [SMALL_STATE(7876)] = 242284, - [SMALL_STATE(7877)] = 242298, - [SMALL_STATE(7878)] = 242314, - [SMALL_STATE(7879)] = 242330, - [SMALL_STATE(7880)] = 242344, - [SMALL_STATE(7881)] = 242358, - [SMALL_STATE(7882)] = 242374, - [SMALL_STATE(7883)] = 242390, - [SMALL_STATE(7884)] = 242404, - [SMALL_STATE(7885)] = 242418, - [SMALL_STATE(7886)] = 242434, - [SMALL_STATE(7887)] = 242448, - [SMALL_STATE(7888)] = 242464, - [SMALL_STATE(7889)] = 242480, - [SMALL_STATE(7890)] = 242496, - [SMALL_STATE(7891)] = 242510, - [SMALL_STATE(7892)] = 242526, - [SMALL_STATE(7893)] = 242540, - [SMALL_STATE(7894)] = 242554, - [SMALL_STATE(7895)] = 242570, - [SMALL_STATE(7896)] = 242584, - [SMALL_STATE(7897)] = 242598, - [SMALL_STATE(7898)] = 242612, - [SMALL_STATE(7899)] = 242626, - [SMALL_STATE(7900)] = 242642, - [SMALL_STATE(7901)] = 242656, - [SMALL_STATE(7902)] = 242672, - [SMALL_STATE(7903)] = 242688, - [SMALL_STATE(7904)] = 242704, - [SMALL_STATE(7905)] = 242718, - [SMALL_STATE(7906)] = 242734, - [SMALL_STATE(7907)] = 242748, - [SMALL_STATE(7908)] = 242764, - [SMALL_STATE(7909)] = 242780, - [SMALL_STATE(7910)] = 242796, - [SMALL_STATE(7911)] = 242812, - [SMALL_STATE(7912)] = 242826, - [SMALL_STATE(7913)] = 242842, - [SMALL_STATE(7914)] = 242858, - [SMALL_STATE(7915)] = 242874, - [SMALL_STATE(7916)] = 242890, - [SMALL_STATE(7917)] = 242906, - [SMALL_STATE(7918)] = 242922, - [SMALL_STATE(7919)] = 242938, - [SMALL_STATE(7920)] = 242954, - [SMALL_STATE(7921)] = 242968, - [SMALL_STATE(7922)] = 242984, - [SMALL_STATE(7923)] = 242998, - [SMALL_STATE(7924)] = 243012, - [SMALL_STATE(7925)] = 243028, - [SMALL_STATE(7926)] = 243042, - [SMALL_STATE(7927)] = 243058, - [SMALL_STATE(7928)] = 243074, - [SMALL_STATE(7929)] = 243090, - [SMALL_STATE(7930)] = 243104, - [SMALL_STATE(7931)] = 243118, - [SMALL_STATE(7932)] = 243134, - [SMALL_STATE(7933)] = 243150, - [SMALL_STATE(7934)] = 243164, - [SMALL_STATE(7935)] = 243178, - [SMALL_STATE(7936)] = 243192, - [SMALL_STATE(7937)] = 243208, - [SMALL_STATE(7938)] = 243224, - [SMALL_STATE(7939)] = 243240, - [SMALL_STATE(7940)] = 243256, - [SMALL_STATE(7941)] = 243272, - [SMALL_STATE(7942)] = 243288, - [SMALL_STATE(7943)] = 243304, - [SMALL_STATE(7944)] = 243318, - [SMALL_STATE(7945)] = 243334, - [SMALL_STATE(7946)] = 243348, - [SMALL_STATE(7947)] = 243364, - [SMALL_STATE(7948)] = 243380, - [SMALL_STATE(7949)] = 243396, - [SMALL_STATE(7950)] = 243412, - [SMALL_STATE(7951)] = 243428, - [SMALL_STATE(7952)] = 243444, - [SMALL_STATE(7953)] = 243460, - [SMALL_STATE(7954)] = 243474, - [SMALL_STATE(7955)] = 243490, - [SMALL_STATE(7956)] = 243506, - [SMALL_STATE(7957)] = 243522, - [SMALL_STATE(7958)] = 243538, - [SMALL_STATE(7959)] = 243554, - [SMALL_STATE(7960)] = 243570, - [SMALL_STATE(7961)] = 243586, - [SMALL_STATE(7962)] = 243602, - [SMALL_STATE(7963)] = 243618, - [SMALL_STATE(7964)] = 243634, - [SMALL_STATE(7965)] = 243650, - [SMALL_STATE(7966)] = 243666, - [SMALL_STATE(7967)] = 243682, - [SMALL_STATE(7968)] = 243698, - [SMALL_STATE(7969)] = 243712, - [SMALL_STATE(7970)] = 243728, - [SMALL_STATE(7971)] = 243742, - [SMALL_STATE(7972)] = 243758, - [SMALL_STATE(7973)] = 243774, - [SMALL_STATE(7974)] = 243790, - [SMALL_STATE(7975)] = 243806, - [SMALL_STATE(7976)] = 243822, - [SMALL_STATE(7977)] = 243836, - [SMALL_STATE(7978)] = 243852, - [SMALL_STATE(7979)] = 243868, - [SMALL_STATE(7980)] = 243884, - [SMALL_STATE(7981)] = 243898, - [SMALL_STATE(7982)] = 243914, - [SMALL_STATE(7983)] = 243928, - [SMALL_STATE(7984)] = 243944, - [SMALL_STATE(7985)] = 243960, - [SMALL_STATE(7986)] = 243976, - [SMALL_STATE(7987)] = 243990, - [SMALL_STATE(7988)] = 244006, - [SMALL_STATE(7989)] = 244022, - [SMALL_STATE(7990)] = 244038, - [SMALL_STATE(7991)] = 244052, - [SMALL_STATE(7992)] = 244068, - [SMALL_STATE(7993)] = 244082, - [SMALL_STATE(7994)] = 244096, - [SMALL_STATE(7995)] = 244112, - [SMALL_STATE(7996)] = 244128, - [SMALL_STATE(7997)] = 244142, - [SMALL_STATE(7998)] = 244156, - [SMALL_STATE(7999)] = 244170, - [SMALL_STATE(8000)] = 244184, - [SMALL_STATE(8001)] = 244200, - [SMALL_STATE(8002)] = 244216, - [SMALL_STATE(8003)] = 244232, - [SMALL_STATE(8004)] = 244246, - [SMALL_STATE(8005)] = 244260, - [SMALL_STATE(8006)] = 244274, - [SMALL_STATE(8007)] = 244288, - [SMALL_STATE(8008)] = 244302, - [SMALL_STATE(8009)] = 244316, - [SMALL_STATE(8010)] = 244330, - [SMALL_STATE(8011)] = 244344, - [SMALL_STATE(8012)] = 244358, - [SMALL_STATE(8013)] = 244372, - [SMALL_STATE(8014)] = 244388, - [SMALL_STATE(8015)] = 244402, - [SMALL_STATE(8016)] = 244418, - [SMALL_STATE(8017)] = 244434, - [SMALL_STATE(8018)] = 244450, - [SMALL_STATE(8019)] = 244466, - [SMALL_STATE(8020)] = 244482, - [SMALL_STATE(8021)] = 244498, - [SMALL_STATE(8022)] = 244514, - [SMALL_STATE(8023)] = 244530, - [SMALL_STATE(8024)] = 244546, - [SMALL_STATE(8025)] = 244562, - [SMALL_STATE(8026)] = 244576, - [SMALL_STATE(8027)] = 244592, - [SMALL_STATE(8028)] = 244606, - [SMALL_STATE(8029)] = 244622, - [SMALL_STATE(8030)] = 244638, - [SMALL_STATE(8031)] = 244654, - [SMALL_STATE(8032)] = 244670, - [SMALL_STATE(8033)] = 244686, - [SMALL_STATE(8034)] = 244702, - [SMALL_STATE(8035)] = 244718, - [SMALL_STATE(8036)] = 244734, - [SMALL_STATE(8037)] = 244750, - [SMALL_STATE(8038)] = 244766, - [SMALL_STATE(8039)] = 244782, - [SMALL_STATE(8040)] = 244796, - [SMALL_STATE(8041)] = 244810, - [SMALL_STATE(8042)] = 244826, - [SMALL_STATE(8043)] = 244842, - [SMALL_STATE(8044)] = 244856, - [SMALL_STATE(8045)] = 244872, - [SMALL_STATE(8046)] = 244886, - [SMALL_STATE(8047)] = 244902, - [SMALL_STATE(8048)] = 244918, - [SMALL_STATE(8049)] = 244932, - [SMALL_STATE(8050)] = 244948, - [SMALL_STATE(8051)] = 244964, - [SMALL_STATE(8052)] = 244978, - [SMALL_STATE(8053)] = 244994, - [SMALL_STATE(8054)] = 245010, - [SMALL_STATE(8055)] = 245024, - [SMALL_STATE(8056)] = 245038, - [SMALL_STATE(8057)] = 245052, - [SMALL_STATE(8058)] = 245068, - [SMALL_STATE(8059)] = 245084, - [SMALL_STATE(8060)] = 245100, - [SMALL_STATE(8061)] = 245114, - [SMALL_STATE(8062)] = 245128, - [SMALL_STATE(8063)] = 245144, - [SMALL_STATE(8064)] = 245160, - [SMALL_STATE(8065)] = 245176, - [SMALL_STATE(8066)] = 245192, - [SMALL_STATE(8067)] = 245208, - [SMALL_STATE(8068)] = 245224, - [SMALL_STATE(8069)] = 245240, - [SMALL_STATE(8070)] = 245256, - [SMALL_STATE(8071)] = 245270, - [SMALL_STATE(8072)] = 245284, - [SMALL_STATE(8073)] = 245300, - [SMALL_STATE(8074)] = 245316, - [SMALL_STATE(8075)] = 245332, - [SMALL_STATE(8076)] = 245348, - [SMALL_STATE(8077)] = 245364, - [SMALL_STATE(8078)] = 245378, - [SMALL_STATE(8079)] = 245394, - [SMALL_STATE(8080)] = 245410, - [SMALL_STATE(8081)] = 245426, - [SMALL_STATE(8082)] = 245442, - [SMALL_STATE(8083)] = 245458, - [SMALL_STATE(8084)] = 245472, - [SMALL_STATE(8085)] = 245486, - [SMALL_STATE(8086)] = 245500, - [SMALL_STATE(8087)] = 245516, - [SMALL_STATE(8088)] = 245532, - [SMALL_STATE(8089)] = 245548, - [SMALL_STATE(8090)] = 245564, - [SMALL_STATE(8091)] = 245580, - [SMALL_STATE(8092)] = 245596, - [SMALL_STATE(8093)] = 245610, - [SMALL_STATE(8094)] = 245626, - [SMALL_STATE(8095)] = 245642, - [SMALL_STATE(8096)] = 245656, - [SMALL_STATE(8097)] = 245672, - [SMALL_STATE(8098)] = 245688, - [SMALL_STATE(8099)] = 245702, - [SMALL_STATE(8100)] = 245716, - [SMALL_STATE(8101)] = 245730, - [SMALL_STATE(8102)] = 245744, - [SMALL_STATE(8103)] = 245758, - [SMALL_STATE(8104)] = 245774, - [SMALL_STATE(8105)] = 245790, - [SMALL_STATE(8106)] = 245806, - [SMALL_STATE(8107)] = 245822, - [SMALL_STATE(8108)] = 245836, - [SMALL_STATE(8109)] = 245852, - [SMALL_STATE(8110)] = 245868, - [SMALL_STATE(8111)] = 245884, - [SMALL_STATE(8112)] = 245900, - [SMALL_STATE(8113)] = 245916, - [SMALL_STATE(8114)] = 245930, - [SMALL_STATE(8115)] = 245944, - [SMALL_STATE(8116)] = 245958, - [SMALL_STATE(8117)] = 245974, - [SMALL_STATE(8118)] = 245988, - [SMALL_STATE(8119)] = 246004, - [SMALL_STATE(8120)] = 246020, - [SMALL_STATE(8121)] = 246034, - [SMALL_STATE(8122)] = 246048, - [SMALL_STATE(8123)] = 246064, - [SMALL_STATE(8124)] = 246080, - [SMALL_STATE(8125)] = 246094, - [SMALL_STATE(8126)] = 246110, - [SMALL_STATE(8127)] = 246126, - [SMALL_STATE(8128)] = 246142, - [SMALL_STATE(8129)] = 246156, - [SMALL_STATE(8130)] = 246172, - [SMALL_STATE(8131)] = 246188, - [SMALL_STATE(8132)] = 246204, - [SMALL_STATE(8133)] = 246218, - [SMALL_STATE(8134)] = 246234, - [SMALL_STATE(8135)] = 246250, - [SMALL_STATE(8136)] = 246264, - [SMALL_STATE(8137)] = 246280, - [SMALL_STATE(8138)] = 246296, - [SMALL_STATE(8139)] = 246312, - [SMALL_STATE(8140)] = 246328, - [SMALL_STATE(8141)] = 246344, - [SMALL_STATE(8142)] = 246360, - [SMALL_STATE(8143)] = 246374, - [SMALL_STATE(8144)] = 246388, - [SMALL_STATE(8145)] = 246402, - [SMALL_STATE(8146)] = 246418, - [SMALL_STATE(8147)] = 246432, - [SMALL_STATE(8148)] = 246446, - [SMALL_STATE(8149)] = 246460, - [SMALL_STATE(8150)] = 246476, - [SMALL_STATE(8151)] = 246492, - [SMALL_STATE(8152)] = 246506, - [SMALL_STATE(8153)] = 246520, - [SMALL_STATE(8154)] = 246536, - [SMALL_STATE(8155)] = 246552, - [SMALL_STATE(8156)] = 246566, - [SMALL_STATE(8157)] = 246582, - [SMALL_STATE(8158)] = 246598, - [SMALL_STATE(8159)] = 246614, - [SMALL_STATE(8160)] = 246630, - [SMALL_STATE(8161)] = 246646, - [SMALL_STATE(8162)] = 246662, - [SMALL_STATE(8163)] = 246678, - [SMALL_STATE(8164)] = 246694, - [SMALL_STATE(8165)] = 246710, - [SMALL_STATE(8166)] = 246726, - [SMALL_STATE(8167)] = 246740, - [SMALL_STATE(8168)] = 246756, - [SMALL_STATE(8169)] = 246772, - [SMALL_STATE(8170)] = 246788, - [SMALL_STATE(8171)] = 246804, - [SMALL_STATE(8172)] = 246820, - [SMALL_STATE(8173)] = 246836, - [SMALL_STATE(8174)] = 246852, - [SMALL_STATE(8175)] = 246868, - [SMALL_STATE(8176)] = 246884, - [SMALL_STATE(8177)] = 246900, - [SMALL_STATE(8178)] = 246916, - [SMALL_STATE(8179)] = 246932, - [SMALL_STATE(8180)] = 246946, - [SMALL_STATE(8181)] = 246962, - [SMALL_STATE(8182)] = 246978, - [SMALL_STATE(8183)] = 246994, - [SMALL_STATE(8184)] = 247010, - [SMALL_STATE(8185)] = 247026, - [SMALL_STATE(8186)] = 247042, - [SMALL_STATE(8187)] = 247056, - [SMALL_STATE(8188)] = 247072, - [SMALL_STATE(8189)] = 247088, - [SMALL_STATE(8190)] = 247104, - [SMALL_STATE(8191)] = 247120, - [SMALL_STATE(8192)] = 247136, - [SMALL_STATE(8193)] = 247152, - [SMALL_STATE(8194)] = 247166, - [SMALL_STATE(8195)] = 247180, - [SMALL_STATE(8196)] = 247194, - [SMALL_STATE(8197)] = 247207, - [SMALL_STATE(8198)] = 247220, - [SMALL_STATE(8199)] = 247233, - [SMALL_STATE(8200)] = 247246, - [SMALL_STATE(8201)] = 247259, - [SMALL_STATE(8202)] = 247272, - [SMALL_STATE(8203)] = 247285, - [SMALL_STATE(8204)] = 247298, - [SMALL_STATE(8205)] = 247311, - [SMALL_STATE(8206)] = 247324, - [SMALL_STATE(8207)] = 247337, - [SMALL_STATE(8208)] = 247350, - [SMALL_STATE(8209)] = 247363, - [SMALL_STATE(8210)] = 247376, - [SMALL_STATE(8211)] = 247389, - [SMALL_STATE(8212)] = 247402, - [SMALL_STATE(8213)] = 247415, - [SMALL_STATE(8214)] = 247428, - [SMALL_STATE(8215)] = 247441, - [SMALL_STATE(8216)] = 247454, - [SMALL_STATE(8217)] = 247467, - [SMALL_STATE(8218)] = 247480, - [SMALL_STATE(8219)] = 247493, - [SMALL_STATE(8220)] = 247506, - [SMALL_STATE(8221)] = 247519, - [SMALL_STATE(8222)] = 247532, - [SMALL_STATE(8223)] = 247545, - [SMALL_STATE(8224)] = 247558, - [SMALL_STATE(8225)] = 247571, - [SMALL_STATE(8226)] = 247584, - [SMALL_STATE(8227)] = 247597, - [SMALL_STATE(8228)] = 247610, - [SMALL_STATE(8229)] = 247623, - [SMALL_STATE(8230)] = 247636, - [SMALL_STATE(8231)] = 247649, - [SMALL_STATE(8232)] = 247662, - [SMALL_STATE(8233)] = 247675, - [SMALL_STATE(8234)] = 247688, - [SMALL_STATE(8235)] = 247701, - [SMALL_STATE(8236)] = 247714, - [SMALL_STATE(8237)] = 247727, - [SMALL_STATE(8238)] = 247740, - [SMALL_STATE(8239)] = 247753, - [SMALL_STATE(8240)] = 247766, - [SMALL_STATE(8241)] = 247779, - [SMALL_STATE(8242)] = 247792, - [SMALL_STATE(8243)] = 247805, - [SMALL_STATE(8244)] = 247818, - [SMALL_STATE(8245)] = 247831, - [SMALL_STATE(8246)] = 247844, - [SMALL_STATE(8247)] = 247857, - [SMALL_STATE(8248)] = 247870, - [SMALL_STATE(8249)] = 247883, - [SMALL_STATE(8250)] = 247896, - [SMALL_STATE(8251)] = 247909, - [SMALL_STATE(8252)] = 247922, - [SMALL_STATE(8253)] = 247935, - [SMALL_STATE(8254)] = 247948, - [SMALL_STATE(8255)] = 247961, - [SMALL_STATE(8256)] = 247974, - [SMALL_STATE(8257)] = 247987, - [SMALL_STATE(8258)] = 248000, - [SMALL_STATE(8259)] = 248013, - [SMALL_STATE(8260)] = 248026, - [SMALL_STATE(8261)] = 248039, - [SMALL_STATE(8262)] = 248052, - [SMALL_STATE(8263)] = 248065, - [SMALL_STATE(8264)] = 248078, - [SMALL_STATE(8265)] = 248091, - [SMALL_STATE(8266)] = 248104, - [SMALL_STATE(8267)] = 248117, - [SMALL_STATE(8268)] = 248130, - [SMALL_STATE(8269)] = 248143, - [SMALL_STATE(8270)] = 248156, - [SMALL_STATE(8271)] = 248169, - [SMALL_STATE(8272)] = 248182, - [SMALL_STATE(8273)] = 248195, - [SMALL_STATE(8274)] = 248208, - [SMALL_STATE(8275)] = 248221, - [SMALL_STATE(8276)] = 248234, - [SMALL_STATE(8277)] = 248247, - [SMALL_STATE(8278)] = 248260, - [SMALL_STATE(8279)] = 248273, - [SMALL_STATE(8280)] = 248286, - [SMALL_STATE(8281)] = 248299, - [SMALL_STATE(8282)] = 248312, - [SMALL_STATE(8283)] = 248325, - [SMALL_STATE(8284)] = 248338, - [SMALL_STATE(8285)] = 248351, - [SMALL_STATE(8286)] = 248364, - [SMALL_STATE(8287)] = 248377, - [SMALL_STATE(8288)] = 248390, - [SMALL_STATE(8289)] = 248403, - [SMALL_STATE(8290)] = 248416, - [SMALL_STATE(8291)] = 248429, - [SMALL_STATE(8292)] = 248442, - [SMALL_STATE(8293)] = 248455, - [SMALL_STATE(8294)] = 248468, - [SMALL_STATE(8295)] = 248481, - [SMALL_STATE(8296)] = 248494, - [SMALL_STATE(8297)] = 248507, - [SMALL_STATE(8298)] = 248520, - [SMALL_STATE(8299)] = 248533, - [SMALL_STATE(8300)] = 248546, - [SMALL_STATE(8301)] = 248559, - [SMALL_STATE(8302)] = 248572, - [SMALL_STATE(8303)] = 248585, - [SMALL_STATE(8304)] = 248598, - [SMALL_STATE(8305)] = 248611, - [SMALL_STATE(8306)] = 248624, - [SMALL_STATE(8307)] = 248637, - [SMALL_STATE(8308)] = 248650, - [SMALL_STATE(8309)] = 248663, - [SMALL_STATE(8310)] = 248676, - [SMALL_STATE(8311)] = 248689, - [SMALL_STATE(8312)] = 248702, - [SMALL_STATE(8313)] = 248715, - [SMALL_STATE(8314)] = 248728, - [SMALL_STATE(8315)] = 248741, - [SMALL_STATE(8316)] = 248754, - [SMALL_STATE(8317)] = 248767, - [SMALL_STATE(8318)] = 248780, - [SMALL_STATE(8319)] = 248793, - [SMALL_STATE(8320)] = 248806, - [SMALL_STATE(8321)] = 248819, - [SMALL_STATE(8322)] = 248832, - [SMALL_STATE(8323)] = 248845, - [SMALL_STATE(8324)] = 248858, - [SMALL_STATE(8325)] = 248871, - [SMALL_STATE(8326)] = 248884, - [SMALL_STATE(8327)] = 248897, - [SMALL_STATE(8328)] = 248910, - [SMALL_STATE(8329)] = 248923, - [SMALL_STATE(8330)] = 248936, - [SMALL_STATE(8331)] = 248949, - [SMALL_STATE(8332)] = 248962, - [SMALL_STATE(8333)] = 248975, - [SMALL_STATE(8334)] = 248988, - [SMALL_STATE(8335)] = 249001, - [SMALL_STATE(8336)] = 249014, - [SMALL_STATE(8337)] = 249027, - [SMALL_STATE(8338)] = 249040, - [SMALL_STATE(8339)] = 249053, - [SMALL_STATE(8340)] = 249066, - [SMALL_STATE(8341)] = 249079, - [SMALL_STATE(8342)] = 249092, - [SMALL_STATE(8343)] = 249105, - [SMALL_STATE(8344)] = 249118, - [SMALL_STATE(8345)] = 249131, - [SMALL_STATE(8346)] = 249144, - [SMALL_STATE(8347)] = 249157, - [SMALL_STATE(8348)] = 249170, - [SMALL_STATE(8349)] = 249183, - [SMALL_STATE(8350)] = 249196, - [SMALL_STATE(8351)] = 249209, - [SMALL_STATE(8352)] = 249222, - [SMALL_STATE(8353)] = 249235, - [SMALL_STATE(8354)] = 249248, - [SMALL_STATE(8355)] = 249261, - [SMALL_STATE(8356)] = 249274, - [SMALL_STATE(8357)] = 249287, - [SMALL_STATE(8358)] = 249300, - [SMALL_STATE(8359)] = 249313, - [SMALL_STATE(8360)] = 249326, - [SMALL_STATE(8361)] = 249339, - [SMALL_STATE(8362)] = 249352, - [SMALL_STATE(8363)] = 249365, - [SMALL_STATE(8364)] = 249378, - [SMALL_STATE(8365)] = 249391, - [SMALL_STATE(8366)] = 249404, - [SMALL_STATE(8367)] = 249417, - [SMALL_STATE(8368)] = 249430, - [SMALL_STATE(8369)] = 249443, - [SMALL_STATE(8370)] = 249456, - [SMALL_STATE(8371)] = 249469, - [SMALL_STATE(8372)] = 249482, - [SMALL_STATE(8373)] = 249495, - [SMALL_STATE(8374)] = 249508, - [SMALL_STATE(8375)] = 249521, - [SMALL_STATE(8376)] = 249534, - [SMALL_STATE(8377)] = 249547, - [SMALL_STATE(8378)] = 249560, - [SMALL_STATE(8379)] = 249573, - [SMALL_STATE(8380)] = 249586, - [SMALL_STATE(8381)] = 249599, - [SMALL_STATE(8382)] = 249612, - [SMALL_STATE(8383)] = 249625, - [SMALL_STATE(8384)] = 249638, - [SMALL_STATE(8385)] = 249651, - [SMALL_STATE(8386)] = 249664, - [SMALL_STATE(8387)] = 249677, - [SMALL_STATE(8388)] = 249690, - [SMALL_STATE(8389)] = 249703, - [SMALL_STATE(8390)] = 249716, - [SMALL_STATE(8391)] = 249729, - [SMALL_STATE(8392)] = 249742, - [SMALL_STATE(8393)] = 249755, - [SMALL_STATE(8394)] = 249768, - [SMALL_STATE(8395)] = 249781, - [SMALL_STATE(8396)] = 249794, - [SMALL_STATE(8397)] = 249807, - [SMALL_STATE(8398)] = 249820, - [SMALL_STATE(8399)] = 249833, - [SMALL_STATE(8400)] = 249846, - [SMALL_STATE(8401)] = 249859, - [SMALL_STATE(8402)] = 249872, - [SMALL_STATE(8403)] = 249885, - [SMALL_STATE(8404)] = 249898, - [SMALL_STATE(8405)] = 249911, - [SMALL_STATE(8406)] = 249924, - [SMALL_STATE(8407)] = 249937, - [SMALL_STATE(8408)] = 249950, - [SMALL_STATE(8409)] = 249963, - [SMALL_STATE(8410)] = 249976, - [SMALL_STATE(8411)] = 249989, - [SMALL_STATE(8412)] = 250002, - [SMALL_STATE(8413)] = 250015, - [SMALL_STATE(8414)] = 250028, - [SMALL_STATE(8415)] = 250041, - [SMALL_STATE(8416)] = 250054, - [SMALL_STATE(8417)] = 250067, - [SMALL_STATE(8418)] = 250080, - [SMALL_STATE(8419)] = 250093, - [SMALL_STATE(8420)] = 250106, - [SMALL_STATE(8421)] = 250119, - [SMALL_STATE(8422)] = 250132, - [SMALL_STATE(8423)] = 250145, - [SMALL_STATE(8424)] = 250158, - [SMALL_STATE(8425)] = 250171, - [SMALL_STATE(8426)] = 250184, - [SMALL_STATE(8427)] = 250197, - [SMALL_STATE(8428)] = 250210, - [SMALL_STATE(8429)] = 250223, - [SMALL_STATE(8430)] = 250236, - [SMALL_STATE(8431)] = 250249, - [SMALL_STATE(8432)] = 250262, - [SMALL_STATE(8433)] = 250275, - [SMALL_STATE(8434)] = 250288, - [SMALL_STATE(8435)] = 250301, - [SMALL_STATE(8436)] = 250314, - [SMALL_STATE(8437)] = 250327, - [SMALL_STATE(8438)] = 250340, - [SMALL_STATE(8439)] = 250353, - [SMALL_STATE(8440)] = 250366, - [SMALL_STATE(8441)] = 250379, - [SMALL_STATE(8442)] = 250392, - [SMALL_STATE(8443)] = 250405, - [SMALL_STATE(8444)] = 250418, - [SMALL_STATE(8445)] = 250431, - [SMALL_STATE(8446)] = 250444, - [SMALL_STATE(8447)] = 250457, - [SMALL_STATE(8448)] = 250470, - [SMALL_STATE(8449)] = 250483, - [SMALL_STATE(8450)] = 250496, - [SMALL_STATE(8451)] = 250509, - [SMALL_STATE(8452)] = 250522, - [SMALL_STATE(8453)] = 250535, - [SMALL_STATE(8454)] = 250548, - [SMALL_STATE(8455)] = 250561, - [SMALL_STATE(8456)] = 250574, - [SMALL_STATE(8457)] = 250587, - [SMALL_STATE(8458)] = 250600, - [SMALL_STATE(8459)] = 250613, - [SMALL_STATE(8460)] = 250626, - [SMALL_STATE(8461)] = 250639, - [SMALL_STATE(8462)] = 250652, - [SMALL_STATE(8463)] = 250665, - [SMALL_STATE(8464)] = 250678, - [SMALL_STATE(8465)] = 250691, - [SMALL_STATE(8466)] = 250704, - [SMALL_STATE(8467)] = 250717, - [SMALL_STATE(8468)] = 250730, - [SMALL_STATE(8469)] = 250743, - [SMALL_STATE(8470)] = 250756, - [SMALL_STATE(8471)] = 250769, - [SMALL_STATE(8472)] = 250782, - [SMALL_STATE(8473)] = 250795, - [SMALL_STATE(8474)] = 250808, - [SMALL_STATE(8475)] = 250821, - [SMALL_STATE(8476)] = 250834, - [SMALL_STATE(8477)] = 250847, - [SMALL_STATE(8478)] = 250860, - [SMALL_STATE(8479)] = 250873, - [SMALL_STATE(8480)] = 250886, - [SMALL_STATE(8481)] = 250899, - [SMALL_STATE(8482)] = 250912, - [SMALL_STATE(8483)] = 250925, - [SMALL_STATE(8484)] = 250938, - [SMALL_STATE(8485)] = 250951, - [SMALL_STATE(8486)] = 250964, - [SMALL_STATE(8487)] = 250977, - [SMALL_STATE(8488)] = 250990, - [SMALL_STATE(8489)] = 251003, - [SMALL_STATE(8490)] = 251016, - [SMALL_STATE(8491)] = 251029, - [SMALL_STATE(8492)] = 251042, - [SMALL_STATE(8493)] = 251055, - [SMALL_STATE(8494)] = 251068, - [SMALL_STATE(8495)] = 251081, - [SMALL_STATE(8496)] = 251094, - [SMALL_STATE(8497)] = 251107, - [SMALL_STATE(8498)] = 251120, - [SMALL_STATE(8499)] = 251133, - [SMALL_STATE(8500)] = 251146, - [SMALL_STATE(8501)] = 251159, - [SMALL_STATE(8502)] = 251172, - [SMALL_STATE(8503)] = 251185, - [SMALL_STATE(8504)] = 251198, - [SMALL_STATE(8505)] = 251211, - [SMALL_STATE(8506)] = 251224, - [SMALL_STATE(8507)] = 251237, - [SMALL_STATE(8508)] = 251250, - [SMALL_STATE(8509)] = 251263, - [SMALL_STATE(8510)] = 251276, - [SMALL_STATE(8511)] = 251289, - [SMALL_STATE(8512)] = 251302, - [SMALL_STATE(8513)] = 251315, - [SMALL_STATE(8514)] = 251328, - [SMALL_STATE(8515)] = 251341, - [SMALL_STATE(8516)] = 251354, - [SMALL_STATE(8517)] = 251367, - [SMALL_STATE(8518)] = 251380, - [SMALL_STATE(8519)] = 251393, - [SMALL_STATE(8520)] = 251406, - [SMALL_STATE(8521)] = 251419, - [SMALL_STATE(8522)] = 251432, - [SMALL_STATE(8523)] = 251445, - [SMALL_STATE(8524)] = 251458, - [SMALL_STATE(8525)] = 251471, - [SMALL_STATE(8526)] = 251484, - [SMALL_STATE(8527)] = 251497, - [SMALL_STATE(8528)] = 251510, - [SMALL_STATE(8529)] = 251523, - [SMALL_STATE(8530)] = 251536, - [SMALL_STATE(8531)] = 251549, - [SMALL_STATE(8532)] = 251562, - [SMALL_STATE(8533)] = 251575, - [SMALL_STATE(8534)] = 251588, - [SMALL_STATE(8535)] = 251601, - [SMALL_STATE(8536)] = 251614, - [SMALL_STATE(8537)] = 251627, - [SMALL_STATE(8538)] = 251640, - [SMALL_STATE(8539)] = 251653, - [SMALL_STATE(8540)] = 251666, - [SMALL_STATE(8541)] = 251679, - [SMALL_STATE(8542)] = 251692, - [SMALL_STATE(8543)] = 251705, - [SMALL_STATE(8544)] = 251718, - [SMALL_STATE(8545)] = 251731, - [SMALL_STATE(8546)] = 251744, - [SMALL_STATE(8547)] = 251757, - [SMALL_STATE(8548)] = 251770, - [SMALL_STATE(8549)] = 251783, - [SMALL_STATE(8550)] = 251796, - [SMALL_STATE(8551)] = 251809, - [SMALL_STATE(8552)] = 251822, - [SMALL_STATE(8553)] = 251835, - [SMALL_STATE(8554)] = 251848, - [SMALL_STATE(8555)] = 251861, - [SMALL_STATE(8556)] = 251874, - [SMALL_STATE(8557)] = 251887, - [SMALL_STATE(8558)] = 251900, - [SMALL_STATE(8559)] = 251913, - [SMALL_STATE(8560)] = 251926, - [SMALL_STATE(8561)] = 251939, - [SMALL_STATE(8562)] = 251952, - [SMALL_STATE(8563)] = 251965, - [SMALL_STATE(8564)] = 251978, - [SMALL_STATE(8565)] = 251991, - [SMALL_STATE(8566)] = 252004, - [SMALL_STATE(8567)] = 252017, - [SMALL_STATE(8568)] = 252030, - [SMALL_STATE(8569)] = 252043, - [SMALL_STATE(8570)] = 252056, - [SMALL_STATE(8571)] = 252069, - [SMALL_STATE(8572)] = 252082, - [SMALL_STATE(8573)] = 252095, - [SMALL_STATE(8574)] = 252108, - [SMALL_STATE(8575)] = 252121, - [SMALL_STATE(8576)] = 252134, - [SMALL_STATE(8577)] = 252147, - [SMALL_STATE(8578)] = 252160, - [SMALL_STATE(8579)] = 252173, - [SMALL_STATE(8580)] = 252186, - [SMALL_STATE(8581)] = 252199, - [SMALL_STATE(8582)] = 252212, - [SMALL_STATE(8583)] = 252225, - [SMALL_STATE(8584)] = 252238, - [SMALL_STATE(8585)] = 252251, - [SMALL_STATE(8586)] = 252264, - [SMALL_STATE(8587)] = 252277, - [SMALL_STATE(8588)] = 252290, - [SMALL_STATE(8589)] = 252303, - [SMALL_STATE(8590)] = 252316, - [SMALL_STATE(8591)] = 252329, - [SMALL_STATE(8592)] = 252342, - [SMALL_STATE(8593)] = 252355, - [SMALL_STATE(8594)] = 252368, - [SMALL_STATE(8595)] = 252381, - [SMALL_STATE(8596)] = 252394, - [SMALL_STATE(8597)] = 252407, - [SMALL_STATE(8598)] = 252420, - [SMALL_STATE(8599)] = 252433, - [SMALL_STATE(8600)] = 252446, - [SMALL_STATE(8601)] = 252459, - [SMALL_STATE(8602)] = 252472, - [SMALL_STATE(8603)] = 252485, - [SMALL_STATE(8604)] = 252498, - [SMALL_STATE(8605)] = 252511, - [SMALL_STATE(8606)] = 252524, - [SMALL_STATE(8607)] = 252537, - [SMALL_STATE(8608)] = 252550, - [SMALL_STATE(8609)] = 252563, - [SMALL_STATE(8610)] = 252576, - [SMALL_STATE(8611)] = 252589, - [SMALL_STATE(8612)] = 252602, - [SMALL_STATE(8613)] = 252615, - [SMALL_STATE(8614)] = 252628, - [SMALL_STATE(8615)] = 252641, - [SMALL_STATE(8616)] = 252654, - [SMALL_STATE(8617)] = 252667, - [SMALL_STATE(8618)] = 252680, - [SMALL_STATE(8619)] = 252693, - [SMALL_STATE(8620)] = 252706, - [SMALL_STATE(8621)] = 252719, - [SMALL_STATE(8622)] = 252732, - [SMALL_STATE(8623)] = 252745, - [SMALL_STATE(8624)] = 252758, - [SMALL_STATE(8625)] = 252771, - [SMALL_STATE(8626)] = 252784, - [SMALL_STATE(8627)] = 252797, - [SMALL_STATE(8628)] = 252810, - [SMALL_STATE(8629)] = 252823, - [SMALL_STATE(8630)] = 252836, - [SMALL_STATE(8631)] = 252849, - [SMALL_STATE(8632)] = 252862, - [SMALL_STATE(8633)] = 252875, - [SMALL_STATE(8634)] = 252888, - [SMALL_STATE(8635)] = 252901, - [SMALL_STATE(8636)] = 252914, - [SMALL_STATE(8637)] = 252927, - [SMALL_STATE(8638)] = 252940, - [SMALL_STATE(8639)] = 252953, - [SMALL_STATE(8640)] = 252966, - [SMALL_STATE(8641)] = 252979, - [SMALL_STATE(8642)] = 252992, - [SMALL_STATE(8643)] = 253005, - [SMALL_STATE(8644)] = 253018, - [SMALL_STATE(8645)] = 253031, - [SMALL_STATE(8646)] = 253044, - [SMALL_STATE(8647)] = 253057, - [SMALL_STATE(8648)] = 253070, - [SMALL_STATE(8649)] = 253083, - [SMALL_STATE(8650)] = 253096, - [SMALL_STATE(8651)] = 253109, - [SMALL_STATE(8652)] = 253122, - [SMALL_STATE(8653)] = 253135, - [SMALL_STATE(8654)] = 253148, - [SMALL_STATE(8655)] = 253161, - [SMALL_STATE(8656)] = 253174, - [SMALL_STATE(8657)] = 253187, - [SMALL_STATE(8658)] = 253200, - [SMALL_STATE(8659)] = 253213, - [SMALL_STATE(8660)] = 253226, - [SMALL_STATE(8661)] = 253239, - [SMALL_STATE(8662)] = 253252, - [SMALL_STATE(8663)] = 253265, - [SMALL_STATE(8664)] = 253278, - [SMALL_STATE(8665)] = 253291, - [SMALL_STATE(8666)] = 253304, - [SMALL_STATE(8667)] = 253317, - [SMALL_STATE(8668)] = 253330, - [SMALL_STATE(8669)] = 253343, - [SMALL_STATE(8670)] = 253356, - [SMALL_STATE(8671)] = 253369, - [SMALL_STATE(8672)] = 253382, - [SMALL_STATE(8673)] = 253395, - [SMALL_STATE(8674)] = 253408, - [SMALL_STATE(8675)] = 253421, - [SMALL_STATE(8676)] = 253434, - [SMALL_STATE(8677)] = 253447, - [SMALL_STATE(8678)] = 253460, - [SMALL_STATE(8679)] = 253473, - [SMALL_STATE(8680)] = 253486, - [SMALL_STATE(8681)] = 253499, - [SMALL_STATE(8682)] = 253512, - [SMALL_STATE(8683)] = 253525, - [SMALL_STATE(8684)] = 253538, - [SMALL_STATE(8685)] = 253551, - [SMALL_STATE(8686)] = 253564, - [SMALL_STATE(8687)] = 253577, - [SMALL_STATE(8688)] = 253590, - [SMALL_STATE(8689)] = 253603, - [SMALL_STATE(8690)] = 253616, - [SMALL_STATE(8691)] = 253629, - [SMALL_STATE(8692)] = 253642, - [SMALL_STATE(8693)] = 253655, - [SMALL_STATE(8694)] = 253668, - [SMALL_STATE(8695)] = 253681, - [SMALL_STATE(8696)] = 253694, - [SMALL_STATE(8697)] = 253707, - [SMALL_STATE(8698)] = 253720, - [SMALL_STATE(8699)] = 253733, - [SMALL_STATE(8700)] = 253746, - [SMALL_STATE(8701)] = 253759, - [SMALL_STATE(8702)] = 253772, - [SMALL_STATE(8703)] = 253785, - [SMALL_STATE(8704)] = 253798, - [SMALL_STATE(8705)] = 253811, - [SMALL_STATE(8706)] = 253824, - [SMALL_STATE(8707)] = 253837, - [SMALL_STATE(8708)] = 253850, - [SMALL_STATE(8709)] = 253863, - [SMALL_STATE(8710)] = 253876, - [SMALL_STATE(8711)] = 253889, - [SMALL_STATE(8712)] = 253902, - [SMALL_STATE(8713)] = 253915, - [SMALL_STATE(8714)] = 253928, - [SMALL_STATE(8715)] = 253941, - [SMALL_STATE(8716)] = 253954, - [SMALL_STATE(8717)] = 253967, - [SMALL_STATE(8718)] = 253980, - [SMALL_STATE(8719)] = 253993, - [SMALL_STATE(8720)] = 254006, - [SMALL_STATE(8721)] = 254019, - [SMALL_STATE(8722)] = 254032, - [SMALL_STATE(8723)] = 254045, - [SMALL_STATE(8724)] = 254058, - [SMALL_STATE(8725)] = 254071, - [SMALL_STATE(8726)] = 254084, - [SMALL_STATE(8727)] = 254097, - [SMALL_STATE(8728)] = 254110, - [SMALL_STATE(8729)] = 254123, - [SMALL_STATE(8730)] = 254136, - [SMALL_STATE(8731)] = 254149, - [SMALL_STATE(8732)] = 254162, - [SMALL_STATE(8733)] = 254175, - [SMALL_STATE(8734)] = 254188, - [SMALL_STATE(8735)] = 254201, - [SMALL_STATE(8736)] = 254214, - [SMALL_STATE(8737)] = 254227, - [SMALL_STATE(8738)] = 254240, - [SMALL_STATE(8739)] = 254253, - [SMALL_STATE(8740)] = 254266, - [SMALL_STATE(8741)] = 254279, - [SMALL_STATE(8742)] = 254292, - [SMALL_STATE(8743)] = 254305, - [SMALL_STATE(8744)] = 254318, - [SMALL_STATE(8745)] = 254331, - [SMALL_STATE(8746)] = 254344, - [SMALL_STATE(8747)] = 254357, - [SMALL_STATE(8748)] = 254370, - [SMALL_STATE(8749)] = 254383, - [SMALL_STATE(8750)] = 254396, - [SMALL_STATE(8751)] = 254409, - [SMALL_STATE(8752)] = 254422, - [SMALL_STATE(8753)] = 254435, - [SMALL_STATE(8754)] = 254448, - [SMALL_STATE(8755)] = 254461, - [SMALL_STATE(8756)] = 254474, - [SMALL_STATE(8757)] = 254487, - [SMALL_STATE(8758)] = 254500, - [SMALL_STATE(8759)] = 254513, - [SMALL_STATE(8760)] = 254526, - [SMALL_STATE(8761)] = 254539, + [SMALL_STATE(2070)] = 0, + [SMALL_STATE(2071)] = 95, + [SMALL_STATE(2072)] = 192, + [SMALL_STATE(2073)] = 285, + [SMALL_STATE(2074)] = 378, + [SMALL_STATE(2075)] = 471, + [SMALL_STATE(2076)] = 566, + [SMALL_STATE(2077)] = 661, + [SMALL_STATE(2078)] = 756, + [SMALL_STATE(2079)] = 849, + [SMALL_STATE(2080)] = 924, + [SMALL_STATE(2081)] = 1017, + [SMALL_STATE(2082)] = 1110, + [SMALL_STATE(2083)] = 1185, + [SMALL_STATE(2084)] = 1260, + [SMALL_STATE(2085)] = 1353, + [SMALL_STATE(2086)] = 1428, + [SMALL_STATE(2087)] = 1521, + [SMALL_STATE(2088)] = 1618, + [SMALL_STATE(2089)] = 1711, + [SMALL_STATE(2090)] = 1786, + [SMALL_STATE(2091)] = 1879, + [SMALL_STATE(2092)] = 1972, + [SMALL_STATE(2093)] = 2065, + [SMALL_STATE(2094)] = 2158, + [SMALL_STATE(2095)] = 2233, + [SMALL_STATE(2096)] = 2326, + [SMALL_STATE(2097)] = 2419, + [SMALL_STATE(2098)] = 2512, + [SMALL_STATE(2099)] = 2605, + [SMALL_STATE(2100)] = 2698, + [SMALL_STATE(2101)] = 2791, + [SMALL_STATE(2102)] = 2884, + [SMALL_STATE(2103)] = 2977, + [SMALL_STATE(2104)] = 3072, + [SMALL_STATE(2105)] = 3169, + [SMALL_STATE(2106)] = 3262, + [SMALL_STATE(2107)] = 3357, + [SMALL_STATE(2108)] = 3452, + [SMALL_STATE(2109)] = 3545, + [SMALL_STATE(2110)] = 3638, + [SMALL_STATE(2111)] = 3733, + [SMALL_STATE(2112)] = 3828, + [SMALL_STATE(2113)] = 3903, + [SMALL_STATE(2114)] = 3998, + [SMALL_STATE(2115)] = 4128, + [SMALL_STATE(2116)] = 4258, + [SMALL_STATE(2117)] = 4388, + [SMALL_STATE(2118)] = 4484, + [SMALL_STATE(2119)] = 4614, + [SMALL_STATE(2120)] = 4744, + [SMALL_STATE(2121)] = 4874, + [SMALL_STATE(2122)] = 5004, + [SMALL_STATE(2123)] = 5104, + [SMALL_STATE(2124)] = 5196, + [SMALL_STATE(2125)] = 5290, + [SMALL_STATE(2126)] = 5364, + [SMALL_STATE(2127)] = 5494, + [SMALL_STATE(2128)] = 5624, + [SMALL_STATE(2129)] = 5720, + [SMALL_STATE(2130)] = 5850, + [SMALL_STATE(2131)] = 5980, + [SMALL_STATE(2132)] = 6110, + [SMALL_STATE(2133)] = 6184, + [SMALL_STATE(2134)] = 6314, + [SMALL_STATE(2135)] = 6444, + [SMALL_STATE(2136)] = 6574, + [SMALL_STATE(2137)] = 6666, + [SMALL_STATE(2138)] = 6796, + [SMALL_STATE(2139)] = 6926, + [SMALL_STATE(2140)] = 7056, + [SMALL_STATE(2141)] = 7186, + [SMALL_STATE(2142)] = 7282, + [SMALL_STATE(2143)] = 7412, + [SMALL_STATE(2144)] = 7542, + [SMALL_STATE(2145)] = 7672, + [SMALL_STATE(2146)] = 7802, + [SMALL_STATE(2147)] = 7894, + [SMALL_STATE(2148)] = 7986, + [SMALL_STATE(2149)] = 8116, + [SMALL_STATE(2150)] = 8246, + [SMALL_STATE(2151)] = 8376, + [SMALL_STATE(2152)] = 8506, + [SMALL_STATE(2153)] = 8598, + [SMALL_STATE(2154)] = 8728, + [SMALL_STATE(2155)] = 8858, + [SMALL_STATE(2156)] = 8988, + [SMALL_STATE(2157)] = 9118, + [SMALL_STATE(2158)] = 9196, + [SMALL_STATE(2159)] = 9326, + [SMALL_STATE(2160)] = 9422, + [SMALL_STATE(2161)] = 9552, + [SMALL_STATE(2162)] = 9644, + [SMALL_STATE(2163)] = 9736, + [SMALL_STATE(2164)] = 9827, + [SMALL_STATE(2165)] = 9918, + [SMALL_STATE(2166)] = 10009, + [SMALL_STATE(2167)] = 10092, + [SMALL_STATE(2168)] = 10189, + [SMALL_STATE(2169)] = 10280, + [SMALL_STATE(2170)] = 10365, + [SMALL_STATE(2171)] = 10462, + [SMALL_STATE(2172)] = 10547, + [SMALL_STATE(2173)] = 10620, + [SMALL_STATE(2174)] = 10711, + [SMALL_STATE(2175)] = 10802, + [SMALL_STATE(2176)] = 10875, + [SMALL_STATE(2177)] = 10970, + [SMALL_STATE(2178)] = 11061, + [SMALL_STATE(2179)] = 11144, + [SMALL_STATE(2180)] = 11239, + [SMALL_STATE(2181)] = 11332, + [SMALL_STATE(2182)] = 11415, + [SMALL_STATE(2183)] = 11506, + [SMALL_STATE(2184)] = 11597, + [SMALL_STATE(2185)] = 11680, + [SMALL_STATE(2186)] = 11771, + [SMALL_STATE(2187)] = 11862, + [SMALL_STATE(2188)] = 11957, + [SMALL_STATE(2189)] = 12048, + [SMALL_STATE(2190)] = 12131, + [SMALL_STATE(2191)] = 12214, + [SMALL_STATE(2192)] = 12308, + [SMALL_STATE(2193)] = 12392, + [SMALL_STATE(2194)] = 12518, + [SMALL_STATE(2195)] = 12612, + [SMALL_STATE(2196)] = 12692, + [SMALL_STATE(2197)] = 12770, + [SMALL_STATE(2198)] = 12896, + [SMALL_STATE(2199)] = 13022, + [SMALL_STATE(2200)] = 13104, + [SMALL_STATE(2201)] = 13194, + [SMALL_STATE(2202)] = 13286, + [SMALL_STATE(2203)] = 13368, + [SMALL_STATE(2204)] = 13494, + [SMALL_STATE(2205)] = 13578, + [SMALL_STATE(2206)] = 13660, + [SMALL_STATE(2207)] = 13738, + [SMALL_STATE(2208)] = 13864, + [SMALL_STATE(2209)] = 13946, + [SMALL_STATE(2210)] = 14072, + [SMALL_STATE(2211)] = 14156, + [SMALL_STATE(2212)] = 14282, + [SMALL_STATE(2213)] = 14364, + [SMALL_STATE(2214)] = 14458, + [SMALL_STATE(2215)] = 14584, + [SMALL_STATE(2216)] = 14662, + [SMALL_STATE(2217)] = 14750, + [SMALL_STATE(2218)] = 14844, + [SMALL_STATE(2219)] = 14932, + [SMALL_STATE(2220)] = 15016, + [SMALL_STATE(2221)] = 15110, + [SMALL_STATE(2222)] = 15236, + [SMALL_STATE(2223)] = 15362, + [SMALL_STATE(2224)] = 15488, + [SMALL_STATE(2225)] = 15568, + [SMALL_STATE(2226)] = 15648, + [SMALL_STATE(2227)] = 15730, + [SMALL_STATE(2228)] = 15808, + [SMALL_STATE(2229)] = 15892, + [SMALL_STATE(2230)] = 16018, + [SMALL_STATE(2231)] = 16108, + [SMALL_STATE(2232)] = 16190, + [SMALL_STATE(2233)] = 16274, + [SMALL_STATE(2234)] = 16353, + [SMALL_STATE(2235)] = 16424, + [SMALL_STATE(2236)] = 16503, + [SMALL_STATE(2237)] = 16578, + [SMALL_STATE(2238)] = 16657, + [SMALL_STATE(2239)] = 16736, + [SMALL_STATE(2240)] = 16821, + [SMALL_STATE(2241)] = 16892, + [SMALL_STATE(2242)] = 16975, + [SMALL_STATE(2243)] = 17048, + [SMALL_STATE(2244)] = 17119, + [SMALL_STATE(2245)] = 17198, + [SMALL_STATE(2246)] = 17271, + [SMALL_STATE(2247)] = 17364, + [SMALL_STATE(2248)] = 17443, + [SMALL_STATE(2249)] = 17514, + [SMALL_STATE(2250)] = 17591, + [SMALL_STATE(2251)] = 17670, + [SMALL_STATE(2252)] = 17747, + [SMALL_STATE(2253)] = 17826, + [SMALL_STATE(2254)] = 17909, + [SMALL_STATE(2255)] = 17986, + [SMALL_STATE(2256)] = 18057, + [SMALL_STATE(2257)] = 18134, + [SMALL_STATE(2258)] = 18223, + [SMALL_STATE(2259)] = 18312, + [SMALL_STATE(2260)] = 18389, + [SMALL_STATE(2261)] = 18468, + [SMALL_STATE(2262)] = 18557, + [SMALL_STATE(2263)] = 18636, + [SMALL_STATE(2264)] = 18707, + [SMALL_STATE(2265)] = 18788, + [SMALL_STATE(2266)] = 18867, + [SMALL_STATE(2267)] = 18956, + [SMALL_STATE(2268)] = 19033, + [SMALL_STATE(2269)] = 19112, + [SMALL_STATE(2270)] = 19187, + [SMALL_STATE(2271)] = 19272, + [SMALL_STATE(2272)] = 19365, + [SMALL_STATE(2273)] = 19442, + [SMALL_STATE(2274)] = 19529, + [SMALL_STATE(2275)] = 19608, + [SMALL_STATE(2276)] = 19689, + [SMALL_STATE(2277)] = 19766, + [SMALL_STATE(2278)] = 19847, + [SMALL_STATE(2279)] = 19926, + [SMALL_STATE(2280)] = 19997, + [SMALL_STATE(2281)] = 20068, + [SMALL_STATE(2282)] = 20139, + [SMALL_STATE(2283)] = 20210, + [SMALL_STATE(2284)] = 20295, + [SMALL_STATE(2285)] = 20366, + [SMALL_STATE(2286)] = 20451, + [SMALL_STATE(2287)] = 20575, + [SMALL_STATE(2288)] = 20699, + [SMALL_STATE(2289)] = 20823, + [SMALL_STATE(2290)] = 20947, + [SMALL_STATE(2291)] = 21025, + [SMALL_STATE(2292)] = 21149, + [SMALL_STATE(2293)] = 21231, + [SMALL_STATE(2294)] = 21309, + [SMALL_STATE(2295)] = 21387, + [SMALL_STATE(2296)] = 21469, + [SMALL_STATE(2297)] = 21547, + [SMALL_STATE(2298)] = 21671, + [SMALL_STATE(2299)] = 21795, + [SMALL_STATE(2300)] = 21873, + [SMALL_STATE(2301)] = 21997, + [SMALL_STATE(2302)] = 22115, + [SMALL_STATE(2303)] = 22239, + [SMALL_STATE(2304)] = 22363, + [SMALL_STATE(2305)] = 22487, + [SMALL_STATE(2306)] = 22611, + [SMALL_STATE(2307)] = 22693, + [SMALL_STATE(2308)] = 22775, + [SMALL_STATE(2309)] = 22899, + [SMALL_STATE(2310)] = 23023, + [SMALL_STATE(2311)] = 23147, + [SMALL_STATE(2312)] = 23265, + [SMALL_STATE(2313)] = 23389, + [SMALL_STATE(2314)] = 23463, + [SMALL_STATE(2315)] = 23587, + [SMALL_STATE(2316)] = 23659, + [SMALL_STATE(2317)] = 23731, + [SMALL_STATE(2318)] = 23855, + [SMALL_STATE(2319)] = 23979, + [SMALL_STATE(2320)] = 24103, + [SMALL_STATE(2321)] = 24227, + [SMALL_STATE(2322)] = 24351, + [SMALL_STATE(2323)] = 24475, + [SMALL_STATE(2324)] = 24551, + [SMALL_STATE(2325)] = 24629, + [SMALL_STATE(2326)] = 24747, + [SMALL_STATE(2327)] = 24871, + [SMALL_STATE(2328)] = 24995, + [SMALL_STATE(2329)] = 25077, + [SMALL_STATE(2330)] = 25201, + [SMALL_STATE(2331)] = 25285, + [SMALL_STATE(2332)] = 25409, + [SMALL_STATE(2333)] = 25533, + [SMALL_STATE(2334)] = 25657, + [SMALL_STATE(2335)] = 25781, + [SMALL_STATE(2336)] = 25899, + [SMALL_STATE(2337)] = 26023, + [SMALL_STATE(2338)] = 26147, + [SMALL_STATE(2339)] = 26271, + [SMALL_STATE(2340)] = 26395, + [SMALL_STATE(2341)] = 26473, + [SMALL_STATE(2342)] = 26595, + [SMALL_STATE(2343)] = 26671, + [SMALL_STATE(2344)] = 26795, + [SMALL_STATE(2345)] = 26873, + [SMALL_STATE(2346)] = 26997, + [SMALL_STATE(2347)] = 27115, + [SMALL_STATE(2348)] = 27239, + [SMALL_STATE(2349)] = 27357, + [SMALL_STATE(2350)] = 27481, + [SMALL_STATE(2351)] = 27557, + [SMALL_STATE(2352)] = 27633, + [SMALL_STATE(2353)] = 27757, + [SMALL_STATE(2354)] = 27881, + [SMALL_STATE(2355)] = 28005, + [SMALL_STATE(2356)] = 28129, + [SMALL_STATE(2357)] = 28247, + [SMALL_STATE(2358)] = 28321, + [SMALL_STATE(2359)] = 28445, + [SMALL_STATE(2360)] = 28523, + [SMALL_STATE(2361)] = 28611, + [SMALL_STATE(2362)] = 28735, + [SMALL_STATE(2363)] = 28813, + [SMALL_STATE(2364)] = 28891, + [SMALL_STATE(2365)] = 28972, + [SMALL_STATE(2366)] = 29049, + [SMALL_STATE(2367)] = 29128, + [SMALL_STATE(2368)] = 29207, + [SMALL_STATE(2369)] = 29280, + [SMALL_STATE(2370)] = 29351, + [SMALL_STATE(2371)] = 29428, + [SMALL_STATE(2372)] = 29503, + [SMALL_STATE(2373)] = 29578, + [SMALL_STATE(2374)] = 29657, + [SMALL_STATE(2375)] = 29736, + [SMALL_STATE(2376)] = 29811, + [SMALL_STATE(2377)] = 29882, + [SMALL_STATE(2378)] = 29957, + [SMALL_STATE(2379)] = 30031, + [SMALL_STATE(2380)] = 30105, + [SMALL_STATE(2381)] = 30181, + [SMALL_STATE(2382)] = 30255, + [SMALL_STATE(2383)] = 30329, + [SMALL_STATE(2384)] = 30403, + [SMALL_STATE(2385)] = 30513, + [SMALL_STATE(2386)] = 30587, + [SMALL_STATE(2387)] = 30661, + [SMALL_STATE(2388)] = 30735, + [SMALL_STATE(2389)] = 30813, + [SMALL_STATE(2390)] = 30887, + [SMALL_STATE(2391)] = 30961, + [SMALL_STATE(2392)] = 31035, + [SMALL_STATE(2393)] = 31109, + [SMALL_STATE(2394)] = 31181, + [SMALL_STATE(2395)] = 31259, + [SMALL_STATE(2396)] = 31332, + [SMALL_STATE(2397)] = 31405, + [SMALL_STATE(2398)] = 31476, + [SMALL_STATE(2399)] = 31549, + [SMALL_STATE(2400)] = 31622, + [SMALL_STATE(2401)] = 31693, + [SMALL_STATE(2402)] = 31766, + [SMALL_STATE(2403)] = 31873, + [SMALL_STATE(2404)] = 31980, + [SMALL_STATE(2405)] = 32053, + [SMALL_STATE(2406)] = 32126, + [SMALL_STATE(2407)] = 32199, + [SMALL_STATE(2408)] = 32274, + [SMALL_STATE(2409)] = 32347, + [SMALL_STATE(2410)] = 32418, + [SMALL_STATE(2411)] = 32491, + [SMALL_STATE(2412)] = 32598, + [SMALL_STATE(2413)] = 32671, + [SMALL_STATE(2414)] = 32744, + [SMALL_STATE(2415)] = 32817, + [SMALL_STATE(2416)] = 32890, + [SMALL_STATE(2417)] = 32963, + [SMALL_STATE(2418)] = 33036, + [SMALL_STATE(2419)] = 33109, + [SMALL_STATE(2420)] = 33216, + [SMALL_STATE(2421)] = 33289, + [SMALL_STATE(2422)] = 33362, + [SMALL_STATE(2423)] = 33435, + [SMALL_STATE(2424)] = 33540, + [SMALL_STATE(2425)] = 33647, + [SMALL_STATE(2426)] = 33754, + [SMALL_STATE(2427)] = 33861, + [SMALL_STATE(2428)] = 33968, + [SMALL_STATE(2429)] = 34070, + [SMALL_STATE(2430)] = 34140, + [SMALL_STATE(2431)] = 34210, + [SMALL_STATE(2432)] = 34312, + [SMALL_STATE(2433)] = 34414, + [SMALL_STATE(2434)] = 34484, + [SMALL_STATE(2435)] = 34554, + [SMALL_STATE(2436)] = 34624, + [SMALL_STATE(2437)] = 34726, + [SMALL_STATE(2438)] = 34796, + [SMALL_STATE(2439)] = 34866, + [SMALL_STATE(2440)] = 34968, + [SMALL_STATE(2441)] = 35038, + [SMALL_STATE(2442)] = 35108, + [SMALL_STATE(2443)] = 35210, + [SMALL_STATE(2444)] = 35305, + [SMALL_STATE(2445)] = 35398, + [SMALL_STATE(2446)] = 35491, + [SMALL_STATE(2447)] = 35584, + [SMALL_STATE(2448)] = 35677, + [SMALL_STATE(2449)] = 35770, + [SMALL_STATE(2450)] = 35865, + [SMALL_STATE(2451)] = 35960, + [SMALL_STATE(2452)] = 36055, + [SMALL_STATE(2453)] = 36150, + [SMALL_STATE(2454)] = 36243, + [SMALL_STATE(2455)] = 36338, + [SMALL_STATE(2456)] = 36433, + [SMALL_STATE(2457)] = 36521, + [SMALL_STATE(2458)] = 36639, + [SMALL_STATE(2459)] = 36731, + [SMALL_STATE(2460)] = 36825, + [SMALL_STATE(2461)] = 36949, + [SMALL_STATE(2462)] = 37037, + [SMALL_STATE(2463)] = 37161, + [SMALL_STATE(2464)] = 37249, + [SMALL_STATE(2465)] = 37373, + [SMALL_STATE(2466)] = 37461, + [SMALL_STATE(2467)] = 37549, + [SMALL_STATE(2468)] = 37673, + [SMALL_STATE(2469)] = 37797, + [SMALL_STATE(2470)] = 37921, + [SMALL_STATE(2471)] = 38013, + [SMALL_STATE(2472)] = 38101, + [SMALL_STATE(2473)] = 38190, + [SMALL_STATE(2474)] = 38275, + [SMALL_STATE(2475)] = 38372, + [SMALL_STATE(2476)] = 38469, + [SMALL_STATE(2477)] = 38554, + [SMALL_STATE(2478)] = 38643, + [SMALL_STATE(2479)] = 38740, + [SMALL_STATE(2480)] = 38829, + [SMALL_STATE(2481)] = 38926, + [SMALL_STATE(2482)] = 39023, + [SMALL_STATE(2483)] = 39112, + [SMALL_STATE(2484)] = 39197, + [SMALL_STATE(2485)] = 39294, + [SMALL_STATE(2486)] = 39381, + [SMALL_STATE(2487)] = 39478, + [SMALL_STATE(2488)] = 39567, + [SMALL_STATE(2489)] = 39654, + [SMALL_STATE(2490)] = 39739, + [SMALL_STATE(2491)] = 39828, + [SMALL_STATE(2492)] = 39913, + [SMALL_STATE(2493)] = 40002, + [SMALL_STATE(2494)] = 40091, + [SMALL_STATE(2495)] = 40178, + [SMALL_STATE(2496)] = 40268, + [SMALL_STATE(2497)] = 40358, + [SMALL_STATE(2498)] = 40438, + [SMALL_STATE(2499)] = 40518, + [SMALL_STATE(2500)] = 40598, + [SMALL_STATE(2501)] = 40678, + [SMALL_STATE(2502)] = 40760, + [SMALL_STATE(2503)] = 40840, + [SMALL_STATE(2504)] = 40928, + [SMALL_STATE(2505)] = 41008, + [SMALL_STATE(2506)] = 41090, + [SMALL_STATE(2507)] = 41204, + [SMALL_STATE(2508)] = 41266, + [SMALL_STATE(2509)] = 41346, + [SMALL_STATE(2510)] = 41420, + [SMALL_STATE(2511)] = 41510, + [SMALL_STATE(2512)] = 41590, + [SMALL_STATE(2513)] = 41670, + [SMALL_STATE(2514)] = 41752, + [SMALL_STATE(2515)] = 41840, + [SMALL_STATE(2516)] = 41928, + [SMALL_STATE(2517)] = 42008, + [SMALL_STATE(2518)] = 42082, + [SMALL_STATE(2519)] = 42164, + [SMALL_STATE(2520)] = 42246, + [SMALL_STATE(2521)] = 42334, + [SMALL_STATE(2522)] = 42416, + [SMALL_STATE(2523)] = 42496, + [SMALL_STATE(2524)] = 42586, + [SMALL_STATE(2525)] = 42676, + [SMALL_STATE(2526)] = 42764, + [SMALL_STATE(2527)] = 42844, + [SMALL_STATE(2528)] = 42932, + [SMALL_STATE(2529)] = 43012, + [SMALL_STATE(2530)] = 43092, + [SMALL_STATE(2531)] = 43182, + [SMALL_STATE(2532)] = 43264, + [SMALL_STATE(2533)] = 43326, + [SMALL_STATE(2534)] = 43408, + [SMALL_STATE(2535)] = 43488, + [SMALL_STATE(2536)] = 43562, + [SMALL_STATE(2537)] = 43642, + [SMALL_STATE(2538)] = 43722, + [SMALL_STATE(2539)] = 43804, + [SMALL_STATE(2540)] = 43892, + [SMALL_STATE(2541)] = 43966, + [SMALL_STATE(2542)] = 44040, + [SMALL_STATE(2543)] = 44122, + [SMALL_STATE(2544)] = 44196, + [SMALL_STATE(2545)] = 44286, + [SMALL_STATE(2546)] = 44360, + [SMALL_STATE(2547)] = 44434, + [SMALL_STATE(2548)] = 44516, + [SMALL_STATE(2549)] = 44590, + [SMALL_STATE(2550)] = 44672, + [SMALL_STATE(2551)] = 44754, + [SMALL_STATE(2552)] = 44838, + [SMALL_STATE(2553)] = 44912, + [SMALL_STATE(2554)] = 44994, + [SMALL_STATE(2555)] = 45068, + [SMALL_STATE(2556)] = 45148, + [SMALL_STATE(2557)] = 45228, + [SMALL_STATE(2558)] = 45308, + [SMALL_STATE(2559)] = 45390, + [SMALL_STATE(2560)] = 45464, + [SMALL_STATE(2561)] = 45580, + [SMALL_STATE(2562)] = 45680, + [SMALL_STATE(2563)] = 45762, + [SMALL_STATE(2564)] = 45837, + [SMALL_STATE(2565)] = 45912, + [SMALL_STATE(2566)] = 45987, + [SMALL_STATE(2567)] = 46070, + [SMALL_STATE(2568)] = 46159, + [SMALL_STATE(2569)] = 46242, + [SMALL_STATE(2570)] = 46317, + [SMALL_STATE(2571)] = 46392, + [SMALL_STATE(2572)] = 46467, + [SMALL_STATE(2573)] = 46542, + [SMALL_STATE(2574)] = 46617, + [SMALL_STATE(2575)] = 46712, + [SMALL_STATE(2576)] = 46795, + [SMALL_STATE(2577)] = 46870, + [SMALL_STATE(2578)] = 46953, + [SMALL_STATE(2579)] = 47028, + [SMALL_STATE(2580)] = 47103, + [SMALL_STATE(2581)] = 47178, + [SMALL_STATE(2582)] = 47253, + [SMALL_STATE(2583)] = 47328, + [SMALL_STATE(2584)] = 47403, + [SMALL_STATE(2585)] = 47466, + [SMALL_STATE(2586)] = 47541, + [SMALL_STATE(2587)] = 47610, + [SMALL_STATE(2588)] = 47701, + [SMALL_STATE(2589)] = 47784, + [SMALL_STATE(2590)] = 47867, + [SMALL_STATE(2591)] = 47950, + [SMALL_STATE(2592)] = 48025, + [SMALL_STATE(2593)] = 48102, + [SMALL_STATE(2594)] = 48173, + [SMALL_STATE(2595)] = 48244, + [SMALL_STATE(2596)] = 48315, + [SMALL_STATE(2597)] = 48390, + [SMALL_STATE(2598)] = 48465, + [SMALL_STATE(2599)] = 48540, + [SMALL_STATE(2600)] = 48615, + [SMALL_STATE(2601)] = 48690, + [SMALL_STATE(2602)] = 48765, + [SMALL_STATE(2603)] = 48865, + [SMALL_STATE(2604)] = 48945, + [SMALL_STATE(2605)] = 49007, + [SMALL_STATE(2606)] = 49083, + [SMALL_STATE(2607)] = 49147, + [SMALL_STATE(2608)] = 49213, + [SMALL_STATE(2609)] = 49293, + [SMALL_STATE(2610)] = 49369, + [SMALL_STATE(2611)] = 49435, + [SMALL_STATE(2612)] = 49495, + [SMALL_STATE(2613)] = 49561, + [SMALL_STATE(2614)] = 49645, + [SMALL_STATE(2615)] = 49727, + [SMALL_STATE(2616)] = 49789, + [SMALL_STATE(2617)] = 49851, + [SMALL_STATE(2618)] = 49915, + [SMALL_STATE(2619)] = 49995, + [SMALL_STATE(2620)] = 50061, + [SMALL_STATE(2621)] = 50137, + [SMALL_STATE(2622)] = 50217, + [SMALL_STATE(2623)] = 50283, + [SMALL_STATE(2624)] = 50349, + [SMALL_STATE(2625)] = 50413, + [SMALL_STATE(2626)] = 50475, + [SMALL_STATE(2627)] = 50535, + [SMALL_STATE(2628)] = 50621, + [SMALL_STATE(2629)] = 50697, + [SMALL_STATE(2630)] = 50777, + [SMALL_STATE(2631)] = 50837, + [SMALL_STATE(2632)] = 50913, + [SMALL_STATE(2633)] = 50993, + [SMALL_STATE(2634)] = 51053, + [SMALL_STATE(2635)] = 51113, + [SMALL_STATE(2636)] = 51173, + [SMALL_STATE(2637)] = 51233, + [SMALL_STATE(2638)] = 51315, + [SMALL_STATE(2639)] = 51374, + [SMALL_STATE(2640)] = 51447, + [SMALL_STATE(2641)] = 51516, + [SMALL_STATE(2642)] = 51585, + [SMALL_STATE(2643)] = 51644, + [SMALL_STATE(2644)] = 51703, + [SMALL_STATE(2645)] = 51828, + [SMALL_STATE(2646)] = 51887, + [SMALL_STATE(2647)] = 51950, + [SMALL_STATE(2648)] = 52075, + [SMALL_STATE(2649)] = 52134, + [SMALL_STATE(2650)] = 52193, + [SMALL_STATE(2651)] = 52252, + [SMALL_STATE(2652)] = 52317, + [SMALL_STATE(2653)] = 52376, + [SMALL_STATE(2654)] = 52501, + [SMALL_STATE(2655)] = 52560, + [SMALL_STATE(2656)] = 52619, + [SMALL_STATE(2657)] = 52678, + [SMALL_STATE(2658)] = 52795, + [SMALL_STATE(2659)] = 52854, + [SMALL_STATE(2660)] = 52919, + [SMALL_STATE(2661)] = 53044, + [SMALL_STATE(2662)] = 53105, + [SMALL_STATE(2663)] = 53164, + [SMALL_STATE(2664)] = 53223, + [SMALL_STATE(2665)] = 53296, + [SMALL_STATE(2666)] = 53355, + [SMALL_STATE(2667)] = 53414, + [SMALL_STATE(2668)] = 53473, + [SMALL_STATE(2669)] = 53534, + [SMALL_STATE(2670)] = 53593, + [SMALL_STATE(2671)] = 53658, + [SMALL_STATE(2672)] = 53723, + [SMALL_STATE(2673)] = 53782, + [SMALL_STATE(2674)] = 53845, + [SMALL_STATE(2675)] = 53920, + [SMALL_STATE(2676)] = 53979, + [SMALL_STATE(2677)] = 54042, + [SMALL_STATE(2678)] = 54101, + [SMALL_STATE(2679)] = 54162, + [SMALL_STATE(2680)] = 54235, + [SMALL_STATE(2681)] = 54294, + [SMALL_STATE(2682)] = 54359, + [SMALL_STATE(2683)] = 54484, + [SMALL_STATE(2684)] = 54543, + [SMALL_STATE(2685)] = 54602, + [SMALL_STATE(2686)] = 54671, + [SMALL_STATE(2687)] = 54740, + [SMALL_STATE(2688)] = 54799, + [SMALL_STATE(2689)] = 54868, + [SMALL_STATE(2690)] = 54937, + [SMALL_STATE(2691)] = 54996, + [SMALL_STATE(2692)] = 55055, + [SMALL_STATE(2693)] = 55114, + [SMALL_STATE(2694)] = 55191, + [SMALL_STATE(2695)] = 55250, + [SMALL_STATE(2696)] = 55375, + [SMALL_STATE(2697)] = 55434, + [SMALL_STATE(2698)] = 55493, + [SMALL_STATE(2699)] = 55562, + [SMALL_STATE(2700)] = 55631, + [SMALL_STATE(2701)] = 55690, + [SMALL_STATE(2702)] = 55749, + [SMALL_STATE(2703)] = 55808, + [SMALL_STATE(2704)] = 55933, + [SMALL_STATE(2705)] = 56006, + [SMALL_STATE(2706)] = 56067, + [SMALL_STATE(2707)] = 56126, + [SMALL_STATE(2708)] = 56187, + [SMALL_STATE(2709)] = 56246, + [SMALL_STATE(2710)] = 56319, + [SMALL_STATE(2711)] = 56384, + [SMALL_STATE(2712)] = 56445, + [SMALL_STATE(2713)] = 56570, + [SMALL_STATE(2714)] = 56687, + [SMALL_STATE(2715)] = 56752, + [SMALL_STATE(2716)] = 56811, + [SMALL_STATE(2717)] = 56870, + [SMALL_STATE(2718)] = 56929, + [SMALL_STATE(2719)] = 57046, + [SMALL_STATE(2720)] = 57105, + [SMALL_STATE(2721)] = 57164, + [SMALL_STATE(2722)] = 57281, + [SMALL_STATE(2723)] = 57340, + [SMALL_STATE(2724)] = 57399, + [SMALL_STATE(2725)] = 57472, + [SMALL_STATE(2726)] = 57531, + [SMALL_STATE(2727)] = 57590, + [SMALL_STATE(2728)] = 57707, + [SMALL_STATE(2729)] = 57766, + [SMALL_STATE(2730)] = 57827, + [SMALL_STATE(2731)] = 57944, + [SMALL_STATE(2732)] = 58017, + [SMALL_STATE(2733)] = 58134, + [SMALL_STATE(2734)] = 58193, + [SMALL_STATE(2735)] = 58262, + [SMALL_STATE(2736)] = 58321, + [SMALL_STATE(2737)] = 58390, + [SMALL_STATE(2738)] = 58507, + [SMALL_STATE(2739)] = 58566, + [SMALL_STATE(2740)] = 58625, + [SMALL_STATE(2741)] = 58684, + [SMALL_STATE(2742)] = 58801, + [SMALL_STATE(2743)] = 58860, + [SMALL_STATE(2744)] = 58919, + [SMALL_STATE(2745)] = 58998, + [SMALL_STATE(2746)] = 59083, + [SMALL_STATE(2747)] = 59200, + [SMALL_STATE(2748)] = 59277, + [SMALL_STATE(2749)] = 59336, + [SMALL_STATE(2750)] = 59445, + [SMALL_STATE(2751)] = 59504, + [SMALL_STATE(2752)] = 59563, + [SMALL_STATE(2753)] = 59688, + [SMALL_STATE(2754)] = 59747, + [SMALL_STATE(2755)] = 59820, + [SMALL_STATE(2756)] = 59915, + [SMALL_STATE(2757)] = 59984, + [SMALL_STATE(2758)] = 60043, + [SMALL_STATE(2759)] = 60130, + [SMALL_STATE(2760)] = 60189, + [SMALL_STATE(2761)] = 60266, + [SMALL_STATE(2762)] = 60351, + [SMALL_STATE(2763)] = 60420, + [SMALL_STATE(2764)] = 60523, + [SMALL_STATE(2765)] = 60602, + [SMALL_STATE(2766)] = 60703, + [SMALL_STATE(2767)] = 60762, + [SMALL_STATE(2768)] = 60821, + [SMALL_STATE(2769)] = 60920, + [SMALL_STATE(2770)] = 61007, + [SMALL_STATE(2771)] = 61114, + [SMALL_STATE(2772)] = 61173, + [SMALL_STATE(2773)] = 61232, + [SMALL_STATE(2774)] = 61291, + [SMALL_STATE(2775)] = 61396, + [SMALL_STATE(2776)] = 61469, + [SMALL_STATE(2777)] = 61594, + [SMALL_STATE(2778)] = 61675, + [SMALL_STATE(2779)] = 61766, + [SMALL_STATE(2780)] = 61825, + [SMALL_STATE(2781)] = 61886, + [SMALL_STATE(2782)] = 61945, + [SMALL_STATE(2783)] = 62062, + [SMALL_STATE(2784)] = 62179, + [SMALL_STATE(2785)] = 62238, + [SMALL_STATE(2786)] = 62297, + [SMALL_STATE(2787)] = 62362, + [SMALL_STATE(2788)] = 62421, + [SMALL_STATE(2789)] = 62480, + [SMALL_STATE(2790)] = 62539, + [SMALL_STATE(2791)] = 62598, + [SMALL_STATE(2792)] = 62663, + [SMALL_STATE(2793)] = 62728, + [SMALL_STATE(2794)] = 62787, + [SMALL_STATE(2795)] = 62846, + [SMALL_STATE(2796)] = 62905, + [SMALL_STATE(2797)] = 62964, + [SMALL_STATE(2798)] = 63081, + [SMALL_STATE(2799)] = 63142, + [SMALL_STATE(2800)] = 63203, + [SMALL_STATE(2801)] = 63320, + [SMALL_STATE(2802)] = 63387, + [SMALL_STATE(2803)] = 63504, + [SMALL_STATE(2804)] = 63575, + [SMALL_STATE(2805)] = 63642, + [SMALL_STATE(2806)] = 63701, + [SMALL_STATE(2807)] = 63760, + [SMALL_STATE(2808)] = 63833, + [SMALL_STATE(2809)] = 63892, + [SMALL_STATE(2810)] = 63951, + [SMALL_STATE(2811)] = 64010, + [SMALL_STATE(2812)] = 64073, + [SMALL_STATE(2813)] = 64138, + [SMALL_STATE(2814)] = 64203, + [SMALL_STATE(2815)] = 64262, + [SMALL_STATE(2816)] = 64321, + [SMALL_STATE(2817)] = 64388, + [SMALL_STATE(2818)] = 64449, + [SMALL_STATE(2819)] = 64508, + [SMALL_STATE(2820)] = 64567, + [SMALL_STATE(2821)] = 64626, + [SMALL_STATE(2822)] = 64687, + [SMALL_STATE(2823)] = 64756, + [SMALL_STATE(2824)] = 64829, + [SMALL_STATE(2825)] = 64902, + [SMALL_STATE(2826)] = 64971, + [SMALL_STATE(2827)] = 65044, + [SMALL_STATE(2828)] = 65117, + [SMALL_STATE(2829)] = 65190, + [SMALL_STATE(2830)] = 65263, + [SMALL_STATE(2831)] = 65324, + [SMALL_STATE(2832)] = 65449, + [SMALL_STATE(2833)] = 65507, + [SMALL_STATE(2834)] = 65613, + [SMALL_STATE(2835)] = 65729, + [SMALL_STATE(2836)] = 65849, + [SMALL_STATE(2837)] = 65907, + [SMALL_STATE(2838)] = 66023, + [SMALL_STATE(2839)] = 66127, + [SMALL_STATE(2840)] = 66185, + [SMALL_STATE(2841)] = 66301, + [SMALL_STATE(2842)] = 66417, + [SMALL_STATE(2843)] = 66537, + [SMALL_STATE(2844)] = 66595, + [SMALL_STATE(2845)] = 66711, + [SMALL_STATE(2846)] = 66827, + [SMALL_STATE(2847)] = 66885, + [SMALL_STATE(2848)] = 66943, + [SMALL_STATE(2849)] = 67001, + [SMALL_STATE(2850)] = 67059, + [SMALL_STATE(2851)] = 67137, + [SMALL_STATE(2852)] = 67195, + [SMALL_STATE(2853)] = 67279, + [SMALL_STATE(2854)] = 67395, + [SMALL_STATE(2855)] = 67511, + [SMALL_STATE(2856)] = 67569, + [SMALL_STATE(2857)] = 67627, + [SMALL_STATE(2858)] = 67687, + [SMALL_STATE(2859)] = 67803, + [SMALL_STATE(2860)] = 67919, + [SMALL_STATE(2861)] = 67995, + [SMALL_STATE(2862)] = 68111, + [SMALL_STATE(2863)] = 68231, + [SMALL_STATE(2864)] = 68289, + [SMALL_STATE(2865)] = 68347, + [SMALL_STATE(2866)] = 68463, + [SMALL_STATE(2867)] = 68571, + [SMALL_STATE(2868)] = 68665, + [SMALL_STATE(2869)] = 68723, + [SMALL_STATE(2870)] = 68781, + [SMALL_STATE(2871)] = 68839, + [SMALL_STATE(2872)] = 68959, + [SMALL_STATE(2873)] = 69079, + [SMALL_STATE(2874)] = 69199, + [SMALL_STATE(2875)] = 69319, + [SMALL_STATE(2876)] = 69405, + [SMALL_STATE(2877)] = 69489, + [SMALL_STATE(2878)] = 69591, + [SMALL_STATE(2879)] = 69691, + [SMALL_STATE(2880)] = 69789, + [SMALL_STATE(2881)] = 69875, + [SMALL_STATE(2882)] = 69981, + [SMALL_STATE(2883)] = 70101, + [SMALL_STATE(2884)] = 70205, + [SMALL_STATE(2885)] = 70325, + [SMALL_STATE(2886)] = 70383, + [SMALL_STATE(2887)] = 70463, + [SMALL_STATE(2888)] = 70521, + [SMALL_STATE(2889)] = 70611, + [SMALL_STATE(2890)] = 70669, + [SMALL_STATE(2891)] = 70785, + [SMALL_STATE(2892)] = 70843, + [SMALL_STATE(2893)] = 70901, + [SMALL_STATE(2894)] = 71017, + [SMALL_STATE(2895)] = 71075, + [SMALL_STATE(2896)] = 71191, + [SMALL_STATE(2897)] = 71249, + [SMALL_STATE(2898)] = 71343, + [SMALL_STATE(2899)] = 71401, + [SMALL_STATE(2900)] = 71459, + [SMALL_STATE(2901)] = 71575, + [SMALL_STATE(2902)] = 71633, + [SMALL_STATE(2903)] = 71753, + [SMALL_STATE(2904)] = 71811, + [SMALL_STATE(2905)] = 71927, + [SMALL_STATE(2906)] = 71985, + [SMALL_STATE(2907)] = 72047, + [SMALL_STATE(2908)] = 72121, + [SMALL_STATE(2909)] = 72237, + [SMALL_STATE(2910)] = 72307, + [SMALL_STATE(2911)] = 72423, + [SMALL_STATE(2912)] = 72481, + [SMALL_STATE(2913)] = 72597, + [SMALL_STATE(2914)] = 72713, + [SMALL_STATE(2915)] = 72773, + [SMALL_STATE(2916)] = 72831, + [SMALL_STATE(2917)] = 72889, + [SMALL_STATE(2918)] = 72947, + [SMALL_STATE(2919)] = 73005, + [SMALL_STATE(2920)] = 73081, + [SMALL_STATE(2921)] = 73197, + [SMALL_STATE(2922)] = 73263, + [SMALL_STATE(2923)] = 73381, + [SMALL_STATE(2924)] = 73445, + [SMALL_STATE(2925)] = 73503, + [SMALL_STATE(2926)] = 73561, + [SMALL_STATE(2927)] = 73619, + [SMALL_STATE(2928)] = 73677, + [SMALL_STATE(2929)] = 73735, + [SMALL_STATE(2930)] = 73851, + [SMALL_STATE(2931)] = 73971, + [SMALL_STATE(2932)] = 74089, + [SMALL_STATE(2933)] = 74147, + [SMALL_STATE(2934)] = 74205, + [SMALL_STATE(2935)] = 74263, + [SMALL_STATE(2936)] = 74349, + [SMALL_STATE(2937)] = 74447, + [SMALL_STATE(2938)] = 74505, + [SMALL_STATE(2939)] = 74605, + [SMALL_STATE(2940)] = 74667, + [SMALL_STATE(2941)] = 74725, + [SMALL_STATE(2942)] = 74783, + [SMALL_STATE(2943)] = 74841, + [SMALL_STATE(2944)] = 74905, + [SMALL_STATE(2945)] = 74963, + [SMALL_STATE(2946)] = 75033, + [SMALL_STATE(2947)] = 75091, + [SMALL_STATE(2948)] = 75207, + [SMALL_STATE(2949)] = 75265, + [SMALL_STATE(2950)] = 75385, + [SMALL_STATE(2951)] = 75505, + [SMALL_STATE(2952)] = 75563, + [SMALL_STATE(2953)] = 75683, + [SMALL_STATE(2954)] = 75803, + [SMALL_STATE(2955)] = 75923, + [SMALL_STATE(2956)] = 76043, + [SMALL_STATE(2957)] = 76101, + [SMALL_STATE(2958)] = 76159, + [SMALL_STATE(2959)] = 76219, + [SMALL_STATE(2960)] = 76277, + [SMALL_STATE(2961)] = 76335, + [SMALL_STATE(2962)] = 76393, + [SMALL_STATE(2963)] = 76509, + [SMALL_STATE(2964)] = 76567, + [SMALL_STATE(2965)] = 76639, + [SMALL_STATE(2966)] = 76755, + [SMALL_STATE(2967)] = 76823, + [SMALL_STATE(2968)] = 76891, + [SMALL_STATE(2969)] = 76975, + [SMALL_STATE(2970)] = 77095, + [SMALL_STATE(2971)] = 77163, + [SMALL_STATE(2972)] = 77279, + [SMALL_STATE(2973)] = 77399, + [SMALL_STATE(2974)] = 77459, + [SMALL_STATE(2975)] = 77521, + [SMALL_STATE(2976)] = 77579, + [SMALL_STATE(2977)] = 77657, + [SMALL_STATE(2978)] = 77773, + [SMALL_STATE(2979)] = 77833, + [SMALL_STATE(2980)] = 77891, + [SMALL_STATE(2981)] = 77971, + [SMALL_STATE(2982)] = 78035, + [SMALL_STATE(2983)] = 78093, + [SMALL_STATE(2984)] = 78151, + [SMALL_STATE(2985)] = 78209, + [SMALL_STATE(2986)] = 78293, + [SMALL_STATE(2987)] = 78351, + [SMALL_STATE(2988)] = 78471, + [SMALL_STATE(2989)] = 78557, + [SMALL_STATE(2990)] = 78677, + [SMALL_STATE(2991)] = 78793, + [SMALL_STATE(2992)] = 78913, + [SMALL_STATE(2993)] = 79033, + [SMALL_STATE(2994)] = 79141, + [SMALL_STATE(2995)] = 79261, + [SMALL_STATE(2996)] = 79319, + [SMALL_STATE(2997)] = 79439, + [SMALL_STATE(2998)] = 79529, + [SMALL_STATE(2999)] = 79587, + [SMALL_STATE(3000)] = 79689, + [SMALL_STATE(3001)] = 79747, + [SMALL_STATE(3002)] = 79867, + [SMALL_STATE(3003)] = 79925, + [SMALL_STATE(3004)] = 80044, + [SMALL_STATE(3005)] = 80101, + [SMALL_STATE(3006)] = 80166, + [SMALL_STATE(3007)] = 80223, + [SMALL_STATE(3008)] = 80280, + [SMALL_STATE(3009)] = 80395, + [SMALL_STATE(3010)] = 80452, + [SMALL_STATE(3011)] = 80509, + [SMALL_STATE(3012)] = 80628, + [SMALL_STATE(3013)] = 80747, + [SMALL_STATE(3014)] = 80804, + [SMALL_STATE(3015)] = 80861, + [SMALL_STATE(3016)] = 80978, + [SMALL_STATE(3017)] = 81037, + [SMALL_STATE(3018)] = 81156, + [SMALL_STATE(3019)] = 81275, + [SMALL_STATE(3020)] = 81332, + [SMALL_STATE(3021)] = 81397, + [SMALL_STATE(3022)] = 81512, + [SMALL_STATE(3023)] = 81569, + [SMALL_STATE(3024)] = 81626, + [SMALL_STATE(3025)] = 81683, + [SMALL_STATE(3026)] = 81740, + [SMALL_STATE(3027)] = 81797, + [SMALL_STATE(3028)] = 81854, + [SMALL_STATE(3029)] = 81969, + [SMALL_STATE(3030)] = 82084, + [SMALL_STATE(3031)] = 82203, + [SMALL_STATE(3032)] = 82260, + [SMALL_STATE(3033)] = 82317, + [SMALL_STATE(3034)] = 82374, + [SMALL_STATE(3035)] = 82431, + [SMALL_STATE(3036)] = 82488, + [SMALL_STATE(3037)] = 82607, + [SMALL_STATE(3038)] = 82726, + [SMALL_STATE(3039)] = 82807, + [SMALL_STATE(3040)] = 82926, + [SMALL_STATE(3041)] = 82989, + [SMALL_STATE(3042)] = 83052, + [SMALL_STATE(3043)] = 83109, + [SMALL_STATE(3044)] = 83166, + [SMALL_STATE(3045)] = 83233, + [SMALL_STATE(3046)] = 83352, + [SMALL_STATE(3047)] = 83409, + [SMALL_STATE(3048)] = 83466, + [SMALL_STATE(3049)] = 83533, + [SMALL_STATE(3050)] = 83594, + [SMALL_STATE(3051)] = 83709, + [SMALL_STATE(3052)] = 83828, + [SMALL_STATE(3053)] = 83891, + [SMALL_STATE(3054)] = 84006, + [SMALL_STATE(3055)] = 84125, + [SMALL_STATE(3056)] = 84182, + [SMALL_STATE(3057)] = 84301, + [SMALL_STATE(3058)] = 84420, + [SMALL_STATE(3059)] = 84535, + [SMALL_STATE(3060)] = 84592, + [SMALL_STATE(3061)] = 84649, + [SMALL_STATE(3062)] = 84764, + [SMALL_STATE(3063)] = 84821, + [SMALL_STATE(3064)] = 84886, + [SMALL_STATE(3065)] = 84943, + [SMALL_STATE(3066)] = 85000, + [SMALL_STATE(3067)] = 85063, + [SMALL_STATE(3068)] = 85120, + [SMALL_STATE(3069)] = 85239, + [SMALL_STATE(3070)] = 85356, + [SMALL_STATE(3071)] = 85475, + [SMALL_STATE(3072)] = 85538, + [SMALL_STATE(3073)] = 85657, + [SMALL_STATE(3074)] = 85732, + [SMALL_STATE(3075)] = 85847, + [SMALL_STATE(3076)] = 85930, + [SMALL_STATE(3077)] = 85987, + [SMALL_STATE(3078)] = 86076, + [SMALL_STATE(3079)] = 86193, + [SMALL_STATE(3080)] = 86272, + [SMALL_STATE(3081)] = 86375, + [SMALL_STATE(3082)] = 86494, + [SMALL_STATE(3083)] = 86599, + [SMALL_STATE(3084)] = 86684, + [SMALL_STATE(3085)] = 86781, + [SMALL_STATE(3086)] = 86880, + [SMALL_STATE(3087)] = 86981, + [SMALL_STATE(3088)] = 87064, + [SMALL_STATE(3089)] = 87149, + [SMALL_STATE(3090)] = 87226, + [SMALL_STATE(3091)] = 87291, + [SMALL_STATE(3092)] = 87384, + [SMALL_STATE(3093)] = 87491, + [SMALL_STATE(3094)] = 87606, + [SMALL_STATE(3095)] = 87721, + [SMALL_STATE(3096)] = 87836, + [SMALL_STATE(3097)] = 87895, + [SMALL_STATE(3098)] = 87954, + [SMALL_STATE(3099)] = 88015, + [SMALL_STATE(3100)] = 88072, + [SMALL_STATE(3101)] = 88141, + [SMALL_STATE(3102)] = 88198, + [SMALL_STATE(3103)] = 88317, + [SMALL_STATE(3104)] = 88436, + [SMALL_STATE(3105)] = 88551, + [SMALL_STATE(3106)] = 88666, + [SMALL_STATE(3107)] = 88781, + [SMALL_STATE(3108)] = 88896, + [SMALL_STATE(3109)] = 89011, + [SMALL_STATE(3110)] = 89068, + [SMALL_STATE(3111)] = 89129, + [SMALL_STATE(3112)] = 89190, + [SMALL_STATE(3113)] = 89247, + [SMALL_STATE(3114)] = 89306, + [SMALL_STATE(3115)] = 89363, + [SMALL_STATE(3116)] = 89426, + [SMALL_STATE(3117)] = 89483, + [SMALL_STATE(3118)] = 89600, + [SMALL_STATE(3119)] = 89719, + [SMALL_STATE(3120)] = 89780, + [SMALL_STATE(3121)] = 89899, + [SMALL_STATE(3122)] = 89956, + [SMALL_STATE(3123)] = 90073, + [SMALL_STATE(3124)] = 90134, + [SMALL_STATE(3125)] = 90253, + [SMALL_STATE(3126)] = 90310, + [SMALL_STATE(3127)] = 90367, + [SMALL_STATE(3128)] = 90424, + [SMALL_STATE(3129)] = 90543, + [SMALL_STATE(3130)] = 90658, + [SMALL_STATE(3131)] = 90721, + [SMALL_STATE(3132)] = 90840, + [SMALL_STATE(3133)] = 90897, + [SMALL_STATE(3134)] = 90954, + [SMALL_STATE(3135)] = 91073, + [SMALL_STATE(3136)] = 91130, + [SMALL_STATE(3137)] = 91187, + [SMALL_STATE(3138)] = 91244, + [SMALL_STATE(3139)] = 91301, + [SMALL_STATE(3140)] = 91418, + [SMALL_STATE(3141)] = 91475, + [SMALL_STATE(3142)] = 91532, + [SMALL_STATE(3143)] = 91591, + [SMALL_STATE(3144)] = 91648, + [SMALL_STATE(3145)] = 91767, + [SMALL_STATE(3146)] = 91882, + [SMALL_STATE(3147)] = 92001, + [SMALL_STATE(3148)] = 92058, + [SMALL_STATE(3149)] = 92115, + [SMALL_STATE(3150)] = 92234, + [SMALL_STATE(3151)] = 92353, + [SMALL_STATE(3152)] = 92410, + [SMALL_STATE(3153)] = 92525, + [SMALL_STATE(3154)] = 92582, + [SMALL_STATE(3155)] = 92639, + [SMALL_STATE(3156)] = 92756, + [SMALL_STATE(3157)] = 92813, + [SMALL_STATE(3158)] = 92875, + [SMALL_STATE(3159)] = 92933, + [SMALL_STATE(3160)] = 92989, + [SMALL_STATE(3161)] = 93045, + [SMALL_STATE(3162)] = 93101, + [SMALL_STATE(3163)] = 93157, + [SMALL_STATE(3164)] = 93213, + [SMALL_STATE(3165)] = 93269, + [SMALL_STATE(3166)] = 93325, + [SMALL_STATE(3167)] = 93381, + [SMALL_STATE(3168)] = 93437, + [SMALL_STATE(3169)] = 93505, + [SMALL_STATE(3170)] = 93577, + [SMALL_STATE(3171)] = 93633, + [SMALL_STATE(3172)] = 93689, + [SMALL_STATE(3173)] = 93745, + [SMALL_STATE(3174)] = 93801, + [SMALL_STATE(3175)] = 93875, + [SMALL_STATE(3176)] = 93991, + [SMALL_STATE(3177)] = 94049, + [SMALL_STATE(3178)] = 94163, + [SMALL_STATE(3179)] = 94231, + [SMALL_STATE(3180)] = 94287, + [SMALL_STATE(3181)] = 94343, + [SMALL_STATE(3182)] = 94399, + [SMALL_STATE(3183)] = 94467, + [SMALL_STATE(3184)] = 94535, + [SMALL_STATE(3185)] = 94591, + [SMALL_STATE(3186)] = 94653, + [SMALL_STATE(3187)] = 94709, + [SMALL_STATE(3188)] = 94765, + [SMALL_STATE(3189)] = 94821, + [SMALL_STATE(3190)] = 94877, + [SMALL_STATE(3191)] = 94933, + [SMALL_STATE(3192)] = 94995, + [SMALL_STATE(3193)] = 95057, + [SMALL_STATE(3194)] = 95115, + [SMALL_STATE(3195)] = 95171, + [SMALL_STATE(3196)] = 95229, + [SMALL_STATE(3197)] = 95291, + [SMALL_STATE(3198)] = 95347, + [SMALL_STATE(3199)] = 95403, + [SMALL_STATE(3200)] = 95459, + [SMALL_STATE(3201)] = 95515, + [SMALL_STATE(3202)] = 95571, + [SMALL_STATE(3203)] = 95633, + [SMALL_STATE(3204)] = 95689, + [SMALL_STATE(3205)] = 95745, + [SMALL_STATE(3206)] = 95801, + [SMALL_STATE(3207)] = 95857, + [SMALL_STATE(3208)] = 95915, + [SMALL_STATE(3209)] = 95971, + [SMALL_STATE(3210)] = 96027, + [SMALL_STATE(3211)] = 96083, + [SMALL_STATE(3212)] = 96139, + [SMALL_STATE(3213)] = 96195, + [SMALL_STATE(3214)] = 96251, + [SMALL_STATE(3215)] = 96307, + [SMALL_STATE(3216)] = 96363, + [SMALL_STATE(3217)] = 96419, + [SMALL_STATE(3218)] = 96475, + [SMALL_STATE(3219)] = 96531, + [SMALL_STATE(3220)] = 96587, + [SMALL_STATE(3221)] = 96643, + [SMALL_STATE(3222)] = 96699, + [SMALL_STATE(3223)] = 96755, + [SMALL_STATE(3224)] = 96809, + [SMALL_STATE(3225)] = 96871, + [SMALL_STATE(3226)] = 96987, + [SMALL_STATE(3227)] = 97049, + [SMALL_STATE(3228)] = 97103, + [SMALL_STATE(3229)] = 97157, + [SMALL_STATE(3230)] = 97213, + [SMALL_STATE(3231)] = 97269, + [SMALL_STATE(3232)] = 97327, + [SMALL_STATE(3233)] = 97383, + [SMALL_STATE(3234)] = 97439, + [SMALL_STATE(3235)] = 97495, + [SMALL_STATE(3236)] = 97551, + [SMALL_STATE(3237)] = 97607, + [SMALL_STATE(3238)] = 97663, + [SMALL_STATE(3239)] = 97725, + [SMALL_STATE(3240)] = 97781, + [SMALL_STATE(3241)] = 97895, + [SMALL_STATE(3242)] = 97951, + [SMALL_STATE(3243)] = 98007, + [SMALL_STATE(3244)] = 98077, + [SMALL_STATE(3245)] = 98147, + [SMALL_STATE(3246)] = 98203, + [SMALL_STATE(3247)] = 98267, + [SMALL_STATE(3248)] = 98331, + [SMALL_STATE(3249)] = 98389, + [SMALL_STATE(3250)] = 98445, + [SMALL_STATE(3251)] = 98501, + [SMALL_STATE(3252)] = 98557, + [SMALL_STATE(3253)] = 98617, + [SMALL_STATE(3254)] = 98679, + [SMALL_STATE(3255)] = 98735, + [SMALL_STATE(3256)] = 98791, + [SMALL_STATE(3257)] = 98847, + [SMALL_STATE(3258)] = 98903, + [SMALL_STATE(3259)] = 98961, + [SMALL_STATE(3260)] = 99077, + [SMALL_STATE(3261)] = 99133, + [SMALL_STATE(3262)] = 99189, + [SMALL_STATE(3263)] = 99245, + [SMALL_STATE(3264)] = 99303, + [SMALL_STATE(3265)] = 99359, + [SMALL_STATE(3266)] = 99473, + [SMALL_STATE(3267)] = 99531, + [SMALL_STATE(3268)] = 99589, + [SMALL_STATE(3269)] = 99651, + [SMALL_STATE(3270)] = 99713, + [SMALL_STATE(3271)] = 99769, + [SMALL_STATE(3272)] = 99825, + [SMALL_STATE(3273)] = 99881, + [SMALL_STATE(3274)] = 99939, + [SMALL_STATE(3275)] = 99995, + [SMALL_STATE(3276)] = 100053, + [SMALL_STATE(3277)] = 100111, + [SMALL_STATE(3278)] = 100167, + [SMALL_STATE(3279)] = 100223, + [SMALL_STATE(3280)] = 100281, + [SMALL_STATE(3281)] = 100337, + [SMALL_STATE(3282)] = 100409, + [SMALL_STATE(3283)] = 100477, + [SMALL_STATE(3284)] = 100545, + [SMALL_STATE(3285)] = 100613, + [SMALL_STATE(3286)] = 100727, + [SMALL_STATE(3287)] = 100783, + [SMALL_STATE(3288)] = 100897, + [SMALL_STATE(3289)] = 101013, + [SMALL_STATE(3290)] = 101069, + [SMALL_STATE(3291)] = 101131, + [SMALL_STATE(3292)] = 101187, + [SMALL_STATE(3293)] = 101251, + [SMALL_STATE(3294)] = 101309, + [SMALL_STATE(3295)] = 101365, + [SMALL_STATE(3296)] = 101439, + [SMALL_STATE(3297)] = 101553, + [SMALL_STATE(3298)] = 101635, + [SMALL_STATE(3299)] = 101691, + [SMALL_STATE(3300)] = 101767, + [SMALL_STATE(3301)] = 101823, + [SMALL_STATE(3302)] = 101937, + [SMALL_STATE(3303)] = 102051, + [SMALL_STATE(3304)] = 102121, + [SMALL_STATE(3305)] = 102177, + [SMALL_STATE(3306)] = 102249, + [SMALL_STATE(3307)] = 102323, + [SMALL_STATE(3308)] = 102437, + [SMALL_STATE(3309)] = 102551, + [SMALL_STATE(3310)] = 102665, + [SMALL_STATE(3311)] = 102779, + [SMALL_STATE(3312)] = 102893, + [SMALL_STATE(3313)] = 102953, + [SMALL_STATE(3314)] = 103067, + [SMALL_STATE(3315)] = 103173, + [SMALL_STATE(3316)] = 103265, + [SMALL_STATE(3317)] = 103349, + [SMALL_STATE(3318)] = 103431, + [SMALL_STATE(3319)] = 103531, + [SMALL_STATE(3320)] = 103585, + [SMALL_STATE(3321)] = 103683, + [SMALL_STATE(3322)] = 103779, + [SMALL_STATE(3323)] = 103863, + [SMALL_STATE(3324)] = 103967, + [SMALL_STATE(3325)] = 104069, + [SMALL_STATE(3326)] = 104147, + [SMALL_STATE(3327)] = 104211, + [SMALL_STATE(3328)] = 104299, + [SMALL_STATE(3329)] = 104413, + [SMALL_STATE(3330)] = 104529, + [SMALL_STATE(3331)] = 104643, + [SMALL_STATE(3332)] = 104757, + [SMALL_STATE(3333)] = 104871, + [SMALL_STATE(3334)] = 104939, + [SMALL_STATE(3335)] = 105053, + [SMALL_STATE(3336)] = 105107, + [SMALL_STATE(3337)] = 105167, + [SMALL_STATE(3338)] = 105225, + [SMALL_STATE(3339)] = 105279, + [SMALL_STATE(3340)] = 105339, + [SMALL_STATE(3341)] = 105413, + [SMALL_STATE(3342)] = 105527, + [SMALL_STATE(3343)] = 105595, + [SMALL_STATE(3344)] = 105663, + [SMALL_STATE(3345)] = 105721, + [SMALL_STATE(3346)] = 105779, + [SMALL_STATE(3347)] = 105851, + [SMALL_STATE(3348)] = 105905, + [SMALL_STATE(3349)] = 105967, + [SMALL_STATE(3350)] = 106081, + [SMALL_STATE(3351)] = 106197, + [SMALL_STATE(3352)] = 106259, + [SMALL_STATE(3353)] = 106321, + [SMALL_STATE(3354)] = 106385, + [SMALL_STATE(3355)] = 106447, + [SMALL_STATE(3356)] = 106563, + [SMALL_STATE(3357)] = 106677, + [SMALL_STATE(3358)] = 106791, + [SMALL_STATE(3359)] = 106905, + [SMALL_STATE(3360)] = 107019, + [SMALL_STATE(3361)] = 107133, + [SMALL_STATE(3362)] = 107249, + [SMALL_STATE(3363)] = 107307, + [SMALL_STATE(3364)] = 107361, + [SMALL_STATE(3365)] = 107474, + [SMALL_STATE(3366)] = 107587, + [SMALL_STATE(3367)] = 107700, + [SMALL_STATE(3368)] = 107761, + [SMALL_STATE(3369)] = 107816, + [SMALL_STATE(3370)] = 107929, + [SMALL_STATE(3371)] = 108042, + [SMALL_STATE(3372)] = 108155, + [SMALL_STATE(3373)] = 108210, + [SMALL_STATE(3374)] = 108277, + [SMALL_STATE(3375)] = 108390, + [SMALL_STATE(3376)] = 108445, + [SMALL_STATE(3377)] = 108558, + [SMALL_STATE(3378)] = 108645, + [SMALL_STATE(3379)] = 108700, + [SMALL_STATE(3380)] = 108777, + [SMALL_STATE(3381)] = 108832, + [SMALL_STATE(3382)] = 108887, + [SMALL_STATE(3383)] = 108988, + [SMALL_STATE(3384)] = 109091, + [SMALL_STATE(3385)] = 109174, + [SMALL_STATE(3386)] = 109229, + [SMALL_STATE(3387)] = 109324, + [SMALL_STATE(3388)] = 109421, + [SMALL_STATE(3389)] = 109520, + [SMALL_STATE(3390)] = 109601, + [SMALL_STATE(3391)] = 109684, + [SMALL_STATE(3392)] = 109775, + [SMALL_STATE(3393)] = 109842, + [SMALL_STATE(3394)] = 109947, + [SMALL_STATE(3395)] = 110060, + [SMALL_STATE(3396)] = 110115, + [SMALL_STATE(3397)] = 110228, + [SMALL_STATE(3398)] = 110283, + [SMALL_STATE(3399)] = 110396, + [SMALL_STATE(3400)] = 110459, + [SMALL_STATE(3401)] = 110522, + [SMALL_STATE(3402)] = 110577, + [SMALL_STATE(3403)] = 110690, + [SMALL_STATE(3404)] = 110763, + [SMALL_STATE(3405)] = 110878, + [SMALL_STATE(3406)] = 110937, + [SMALL_STATE(3407)] = 111050, + [SMALL_STATE(3408)] = 111109, + [SMALL_STATE(3409)] = 111222, + [SMALL_STATE(3410)] = 111277, + [SMALL_STATE(3411)] = 111344, + [SMALL_STATE(3412)] = 111403, + [SMALL_STATE(3413)] = 111462, + [SMALL_STATE(3414)] = 111521, + [SMALL_STATE(3415)] = 111582, + [SMALL_STATE(3416)] = 111695, + [SMALL_STATE(3417)] = 111754, + [SMALL_STATE(3418)] = 111821, + [SMALL_STATE(3419)] = 111878, + [SMALL_STATE(3420)] = 111933, + [SMALL_STATE(3421)] = 112046, + [SMALL_STATE(3422)] = 112101, + [SMALL_STATE(3423)] = 112160, + [SMALL_STATE(3424)] = 112273, + [SMALL_STATE(3425)] = 112332, + [SMALL_STATE(3426)] = 112387, + [SMALL_STATE(3427)] = 112486, + [SMALL_STATE(3428)] = 112547, + [SMALL_STATE(3429)] = 112610, + [SMALL_STATE(3430)] = 112665, + [SMALL_STATE(3431)] = 112722, + [SMALL_STATE(3432)] = 112789, + [SMALL_STATE(3433)] = 112846, + [SMALL_STATE(3434)] = 112959, + [SMALL_STATE(3435)] = 113026, + [SMALL_STATE(3436)] = 113085, + [SMALL_STATE(3437)] = 113144, + [SMALL_STATE(3438)] = 113211, + [SMALL_STATE(3439)] = 113324, + [SMALL_STATE(3440)] = 113391, + [SMALL_STATE(3441)] = 113448, + [SMALL_STATE(3442)] = 113511, + [SMALL_STATE(3443)] = 113570, + [SMALL_STATE(3444)] = 113643, + [SMALL_STATE(3445)] = 113756, + [SMALL_STATE(3446)] = 113815, + [SMALL_STATE(3447)] = 113870, + [SMALL_STATE(3448)] = 113957, + [SMALL_STATE(3449)] = 114038, + [SMALL_STATE(3450)] = 114113, + [SMALL_STATE(3451)] = 114172, + [SMALL_STATE(3452)] = 114285, + [SMALL_STATE(3453)] = 114344, + [SMALL_STATE(3454)] = 114407, + [SMALL_STATE(3455)] = 114466, + [SMALL_STATE(3456)] = 114525, + [SMALL_STATE(3457)] = 114582, + [SMALL_STATE(3458)] = 114649, + [SMALL_STATE(3459)] = 114762, + [SMALL_STATE(3460)] = 114821, + [SMALL_STATE(3461)] = 114880, + [SMALL_STATE(3462)] = 114993, + [SMALL_STATE(3463)] = 115052, + [SMALL_STATE(3464)] = 115165, + [SMALL_STATE(3465)] = 115224, + [SMALL_STATE(3466)] = 115337, + [SMALL_STATE(3467)] = 115450, + [SMALL_STATE(3468)] = 115517, + [SMALL_STATE(3469)] = 115576, + [SMALL_STATE(3470)] = 115631, + [SMALL_STATE(3471)] = 115744, + [SMALL_STATE(3472)] = 115857, + [SMALL_STATE(3473)] = 115970, + [SMALL_STATE(3474)] = 116025, + [SMALL_STATE(3475)] = 116130, + [SMALL_STATE(3476)] = 116221, + [SMALL_STATE(3477)] = 116304, + [SMALL_STATE(3478)] = 116417, + [SMALL_STATE(3479)] = 116498, + [SMALL_STATE(3480)] = 116611, + [SMALL_STATE(3481)] = 116678, + [SMALL_STATE(3482)] = 116745, + [SMALL_STATE(3483)] = 116842, + [SMALL_STATE(3484)] = 116937, + [SMALL_STATE(3485)] = 117050, + [SMALL_STATE(3486)] = 117133, + [SMALL_STATE(3487)] = 117190, + [SMALL_STATE(3488)] = 117247, + [SMALL_STATE(3489)] = 117308, + [SMALL_STATE(3490)] = 117411, + [SMALL_STATE(3491)] = 117478, + [SMALL_STATE(3492)] = 117539, + [SMALL_STATE(3493)] = 117606, + [SMALL_STATE(3494)] = 117661, + [SMALL_STATE(3495)] = 117722, + [SMALL_STATE(3496)] = 117781, + [SMALL_STATE(3497)] = 117882, + [SMALL_STATE(3498)] = 117947, + [SMALL_STATE(3499)] = 118004, + [SMALL_STATE(3500)] = 118117, + [SMALL_STATE(3501)] = 118194, + [SMALL_STATE(3502)] = 118281, + [SMALL_STATE(3503)] = 118394, + [SMALL_STATE(3504)] = 118507, + [SMALL_STATE(3505)] = 118562, + [SMALL_STATE(3506)] = 118675, + [SMALL_STATE(3507)] = 118742, + [SMALL_STATE(3508)] = 118803, + [SMALL_STATE(3509)] = 118860, + [SMALL_STATE(3510)] = 118927, + [SMALL_STATE(3511)] = 119040, + [SMALL_STATE(3512)] = 119153, + [SMALL_STATE(3513)] = 119208, + [SMALL_STATE(3514)] = 119321, + [SMALL_STATE(3515)] = 119388, + [SMALL_STATE(3516)] = 119443, + [SMALL_STATE(3517)] = 119526, + [SMALL_STATE(3518)] = 119639, + [SMALL_STATE(3519)] = 119694, + [SMALL_STATE(3520)] = 119749, + [SMALL_STATE(3521)] = 119812, + [SMALL_STATE(3522)] = 119879, + [SMALL_STATE(3523)] = 119942, + [SMALL_STATE(3524)] = 120055, + [SMALL_STATE(3525)] = 120168, + [SMALL_STATE(3526)] = 120223, + [SMALL_STATE(3527)] = 120290, + [SMALL_STATE(3528)] = 120345, + [SMALL_STATE(3529)] = 120400, + [SMALL_STATE(3530)] = 120455, + [SMALL_STATE(3531)] = 120510, + [SMALL_STATE(3532)] = 120623, + [SMALL_STATE(3533)] = 120678, + [SMALL_STATE(3534)] = 120745, + [SMALL_STATE(3535)] = 120858, + [SMALL_STATE(3536)] = 120919, + [SMALL_STATE(3537)] = 121002, + [SMALL_STATE(3538)] = 121069, + [SMALL_STATE(3539)] = 121128, + [SMALL_STATE(3540)] = 121241, + [SMALL_STATE(3541)] = 121354, + [SMALL_STATE(3542)] = 121411, + [SMALL_STATE(3543)] = 121492, + [SMALL_STATE(3544)] = 121559, + [SMALL_STATE(3545)] = 121618, + [SMALL_STATE(3546)] = 121677, + [SMALL_STATE(3547)] = 121790, + [SMALL_STATE(3548)] = 121845, + [SMALL_STATE(3549)] = 121900, + [SMALL_STATE(3550)] = 122013, + [SMALL_STATE(3551)] = 122088, + [SMALL_STATE(3552)] = 122155, + [SMALL_STATE(3553)] = 122214, + [SMALL_STATE(3554)] = 122319, + [SMALL_STATE(3555)] = 122378, + [SMALL_STATE(3556)] = 122445, + [SMALL_STATE(3557)] = 122504, + [SMALL_STATE(3558)] = 122559, + [SMALL_STATE(3559)] = 122614, + [SMALL_STATE(3560)] = 122671, + [SMALL_STATE(3561)] = 122726, + [SMALL_STATE(3562)] = 122781, + [SMALL_STATE(3563)] = 122848, + [SMALL_STATE(3564)] = 122939, + [SMALL_STATE(3565)] = 123006, + [SMALL_STATE(3566)] = 123063, + [SMALL_STATE(3567)] = 123176, + [SMALL_STATE(3568)] = 123259, + [SMALL_STATE(3569)] = 123324, + [SMALL_STATE(3570)] = 123389, + [SMALL_STATE(3571)] = 123444, + [SMALL_STATE(3572)] = 123511, + [SMALL_STATE(3573)] = 123566, + [SMALL_STATE(3574)] = 123633, + [SMALL_STATE(3575)] = 123714, + [SMALL_STATE(3576)] = 123827, + [SMALL_STATE(3577)] = 123926, + [SMALL_STATE(3578)] = 123983, + [SMALL_STATE(3579)] = 124046, + [SMALL_STATE(3580)] = 124105, + [SMALL_STATE(3581)] = 124160, + [SMALL_STATE(3582)] = 124219, + [SMALL_STATE(3583)] = 124284, + [SMALL_STATE(3584)] = 124339, + [SMALL_STATE(3585)] = 124402, + [SMALL_STATE(3586)] = 124457, + [SMALL_STATE(3587)] = 124532, + [SMALL_STATE(3588)] = 124613, + [SMALL_STATE(3589)] = 124726, + [SMALL_STATE(3590)] = 124799, + [SMALL_STATE(3591)] = 124856, + [SMALL_STATE(3592)] = 124933, + [SMALL_STATE(3593)] = 124988, + [SMALL_STATE(3594)] = 125085, + [SMALL_STATE(3595)] = 125152, + [SMALL_STATE(3596)] = 125219, + [SMALL_STATE(3597)] = 125320, + [SMALL_STATE(3598)] = 125415, + [SMALL_STATE(3599)] = 125476, + [SMALL_STATE(3600)] = 125579, + [SMALL_STATE(3601)] = 125634, + [SMALL_STATE(3602)] = 125689, + [SMALL_STATE(3603)] = 125802, + [SMALL_STATE(3604)] = 125857, + [SMALL_STATE(3605)] = 125912, + [SMALL_STATE(3606)] = 125967, + [SMALL_STATE(3607)] = 126026, + [SMALL_STATE(3608)] = 126081, + [SMALL_STATE(3609)] = 126164, + [SMALL_STATE(3610)] = 126219, + [SMALL_STATE(3611)] = 126286, + [SMALL_STATE(3612)] = 126341, + [SMALL_STATE(3613)] = 126396, + [SMALL_STATE(3614)] = 126451, + [SMALL_STATE(3615)] = 126564, + [SMALL_STATE(3616)] = 126621, + [SMALL_STATE(3617)] = 126731, + [SMALL_STATE(3618)] = 126799, + [SMALL_STATE(3619)] = 126867, + [SMALL_STATE(3620)] = 126923, + [SMALL_STATE(3621)] = 127009, + [SMALL_STATE(3622)] = 127071, + [SMALL_STATE(3623)] = 127127, + [SMALL_STATE(3624)] = 127195, + [SMALL_STATE(3625)] = 127255, + [SMALL_STATE(3626)] = 127311, + [SMALL_STATE(3627)] = 127379, + [SMALL_STATE(3628)] = 127447, + [SMALL_STATE(3629)] = 127515, + [SMALL_STATE(3630)] = 127583, + [SMALL_STATE(3631)] = 127651, + [SMALL_STATE(3632)] = 127713, + [SMALL_STATE(3633)] = 127781, + [SMALL_STATE(3634)] = 127891, + [SMALL_STATE(3635)] = 127959, + [SMALL_STATE(3636)] = 128069, + [SMALL_STATE(3637)] = 128129, + [SMALL_STATE(3638)] = 128181, + [SMALL_STATE(3639)] = 128249, + [SMALL_STATE(3640)] = 128317, + [SMALL_STATE(3641)] = 128379, + [SMALL_STATE(3642)] = 128439, + [SMALL_STATE(3643)] = 128507, + [SMALL_STATE(3644)] = 128581, + [SMALL_STATE(3645)] = 128655, + [SMALL_STATE(3646)] = 128715, + [SMALL_STATE(3647)] = 128787, + [SMALL_STATE(3648)] = 128847, + [SMALL_STATE(3649)] = 128903, + [SMALL_STATE(3650)] = 128971, + [SMALL_STATE(3651)] = 129039, + [SMALL_STATE(3652)] = 129107, + [SMALL_STATE(3653)] = 129175, + [SMALL_STATE(3654)] = 129247, + [SMALL_STATE(3655)] = 129329, + [SMALL_STATE(3656)] = 129391, + [SMALL_STATE(3657)] = 129501, + [SMALL_STATE(3658)] = 129581, + [SMALL_STATE(3659)] = 129655, + [SMALL_STATE(3660)] = 129765, + [SMALL_STATE(3661)] = 129827, + [SMALL_STATE(3662)] = 129937, + [SMALL_STATE(3663)] = 130047, + [SMALL_STATE(3664)] = 130121, + [SMALL_STATE(3665)] = 130199, + [SMALL_STATE(3666)] = 130267, + [SMALL_STATE(3667)] = 130329, + [SMALL_STATE(3668)] = 130397, + [SMALL_STATE(3669)] = 130465, + [SMALL_STATE(3670)] = 130543, + [SMALL_STATE(3671)] = 130611, + [SMALL_STATE(3672)] = 130721, + [SMALL_STATE(3673)] = 130781, + [SMALL_STATE(3674)] = 130847, + [SMALL_STATE(3675)] = 130925, + [SMALL_STATE(3676)] = 130983, + [SMALL_STATE(3677)] = 131051, + [SMALL_STATE(3678)] = 131119, + [SMALL_STATE(3679)] = 131229, + [SMALL_STATE(3680)] = 131339, + [SMALL_STATE(3681)] = 131407, + [SMALL_STATE(3682)] = 131517, + [SMALL_STATE(3683)] = 131589, + [SMALL_STATE(3684)] = 131651, + [SMALL_STATE(3685)] = 131719, + [SMALL_STATE(3686)] = 131775, + [SMALL_STATE(3687)] = 131835, + [SMALL_STATE(3688)] = 131903, + [SMALL_STATE(3689)] = 131971, + [SMALL_STATE(3690)] = 132039, + [SMALL_STATE(3691)] = 132107, + [SMALL_STATE(3692)] = 132175, + [SMALL_STATE(3693)] = 132243, + [SMALL_STATE(3694)] = 132301, + [SMALL_STATE(3695)] = 132411, + [SMALL_STATE(3696)] = 132491, + [SMALL_STATE(3697)] = 132589, + [SMALL_STATE(3698)] = 132699, + [SMALL_STATE(3699)] = 132767, + [SMALL_STATE(3700)] = 132835, + [SMALL_STATE(3701)] = 132907, + [SMALL_STATE(3702)] = 133017, + [SMALL_STATE(3703)] = 133113, + [SMALL_STATE(3704)] = 133207, + [SMALL_STATE(3705)] = 133289, + [SMALL_STATE(3706)] = 133391, + [SMALL_STATE(3707)] = 133459, + [SMALL_STATE(3708)] = 133527, + [SMALL_STATE(3709)] = 133595, + [SMALL_STATE(3710)] = 133669, + [SMALL_STATE(3711)] = 133737, + [SMALL_STATE(3712)] = 133847, + [SMALL_STATE(3713)] = 133915, + [SMALL_STATE(3714)] = 133983, + [SMALL_STATE(3715)] = 134051, + [SMALL_STATE(3716)] = 134155, + [SMALL_STATE(3717)] = 134245, + [SMALL_STATE(3718)] = 134305, + [SMALL_STATE(3719)] = 134405, + [SMALL_STATE(3720)] = 134481, + [SMALL_STATE(3721)] = 134591, + [SMALL_STATE(3722)] = 134658, + [SMALL_STATE(3723)] = 134729, + [SMALL_STATE(3724)] = 134788, + [SMALL_STATE(3725)] = 134847, + [SMALL_STATE(3726)] = 134908, + [SMALL_STATE(3727)] = 134963, + [SMALL_STATE(3728)] = 135018, + [SMALL_STATE(3729)] = 135089, + [SMALL_STATE(3730)] = 135160, + [SMALL_STATE(3731)] = 135215, + [SMALL_STATE(3732)] = 135268, + [SMALL_STATE(3733)] = 135339, + [SMALL_STATE(3734)] = 135404, + [SMALL_STATE(3735)] = 135459, + [SMALL_STATE(3736)] = 135530, + [SMALL_STATE(3737)] = 135589, + [SMALL_STATE(3738)] = 135646, + [SMALL_STATE(3739)] = 135701, + [SMALL_STATE(3740)] = 135756, + [SMALL_STATE(3741)] = 135813, + [SMALL_STATE(3742)] = 135884, + [SMALL_STATE(3743)] = 135955, + [SMALL_STATE(3744)] = 136026, + [SMALL_STATE(3745)] = 136097, + [SMALL_STATE(3746)] = 136164, + [SMALL_STATE(3747)] = 136223, + [SMALL_STATE(3748)] = 136294, + [SMALL_STATE(3749)] = 136365, + [SMALL_STATE(3750)] = 136418, + [SMALL_STATE(3751)] = 136473, + [SMALL_STATE(3752)] = 136528, + [SMALL_STATE(3753)] = 136583, + [SMALL_STATE(3754)] = 136642, + [SMALL_STATE(3755)] = 136697, + [SMALL_STATE(3756)] = 136752, + [SMALL_STATE(3757)] = 136823, + [SMALL_STATE(3758)] = 136894, + [SMALL_STATE(3759)] = 136965, + [SMALL_STATE(3760)] = 137036, + [SMALL_STATE(3761)] = 137107, + [SMALL_STATE(3762)] = 137160, + [SMALL_STATE(3763)] = 137219, + [SMALL_STATE(3764)] = 137281, + [SMALL_STATE(3765)] = 137343, + [SMALL_STATE(3766)] = 137407, + [SMALL_STATE(3767)] = 137469, + [SMALL_STATE(3768)] = 137533, + [SMALL_STATE(3769)] = 137583, + [SMALL_STATE(3770)] = 137635, + [SMALL_STATE(3771)] = 137697, + [SMALL_STATE(3772)] = 137761, + [SMALL_STATE(3773)] = 137811, + [SMALL_STATE(3774)] = 137873, + [SMALL_STATE(3775)] = 137937, + [SMALL_STATE(3776)] = 138001, + [SMALL_STATE(3777)] = 138063, + [SMALL_STATE(3778)] = 138125, + [SMALL_STATE(3779)] = 138189, + [SMALL_STATE(3780)] = 138253, + [SMALL_STATE(3781)] = 138315, + [SMALL_STATE(3782)] = 138373, + [SMALL_STATE(3783)] = 138435, + [SMALL_STATE(3784)] = 138485, + [SMALL_STATE(3785)] = 138547, + [SMALL_STATE(3786)] = 138597, + [SMALL_STATE(3787)] = 138651, + [SMALL_STATE(3788)] = 138701, + [SMALL_STATE(3789)] = 138751, + [SMALL_STATE(3790)] = 138809, + [SMALL_STATE(3791)] = 138871, + [SMALL_STATE(3792)] = 138933, + [SMALL_STATE(3793)] = 138987, + [SMALL_STATE(3794)] = 139037, + [SMALL_STATE(3795)] = 139099, + [SMALL_STATE(3796)] = 139153, + [SMALL_STATE(3797)] = 139203, + [SMALL_STATE(3798)] = 139265, + [SMALL_STATE(3799)] = 139327, + [SMALL_STATE(3800)] = 139391, + [SMALL_STATE(3801)] = 139453, + [SMALL_STATE(3802)] = 139505, + [SMALL_STATE(3803)] = 139569, + [SMALL_STATE(3804)] = 139621, + [SMALL_STATE(3805)] = 139683, + [SMALL_STATE(3806)] = 139741, + [SMALL_STATE(3807)] = 139799, + [SMALL_STATE(3808)] = 139853, + [SMALL_STATE(3809)] = 139907, + [SMALL_STATE(3810)] = 139969, + [SMALL_STATE(3811)] = 140027, + [SMALL_STATE(3812)] = 140077, + [SMALL_STATE(3813)] = 140139, + [SMALL_STATE(3814)] = 140201, + [SMALL_STATE(3815)] = 140263, + [SMALL_STATE(3816)] = 140325, + [SMALL_STATE(3817)] = 140389, + [SMALL_STATE(3818)] = 140451, + [SMALL_STATE(3819)] = 140513, + [SMALL_STATE(3820)] = 140575, + [SMALL_STATE(3821)] = 140639, + [SMALL_STATE(3822)] = 140703, + [SMALL_STATE(3823)] = 140765, + [SMALL_STATE(3824)] = 140829, + [SMALL_STATE(3825)] = 140891, + [SMALL_STATE(3826)] = 140953, + [SMALL_STATE(3827)] = 141017, + [SMALL_STATE(3828)] = 141079, + [SMALL_STATE(3829)] = 141141, + [SMALL_STATE(3830)] = 141203, + [SMALL_STATE(3831)] = 141265, + [SMALL_STATE(3832)] = 141327, + [SMALL_STATE(3833)] = 141381, + [SMALL_STATE(3834)] = 141437, + [SMALL_STATE(3835)] = 141493, + [SMALL_STATE(3836)] = 141555, + [SMALL_STATE(3837)] = 141617, + [SMALL_STATE(3838)] = 141671, + [SMALL_STATE(3839)] = 141733, + [SMALL_STATE(3840)] = 141795, + [SMALL_STATE(3841)] = 141847, + [SMALL_STATE(3842)] = 141909, + [SMALL_STATE(3843)] = 141959, + [SMALL_STATE(3844)] = 142021, + [SMALL_STATE(3845)] = 142073, + [SMALL_STATE(3846)] = 142125, + [SMALL_STATE(3847)] = 142187, + [SMALL_STATE(3848)] = 142249, + [SMALL_STATE(3849)] = 142298, + [SMALL_STATE(3850)] = 142351, + [SMALL_STATE(3851)] = 142400, + [SMALL_STATE(3852)] = 142451, + [SMALL_STATE(3853)] = 142502, + [SMALL_STATE(3854)] = 142553, + [SMALL_STATE(3855)] = 142604, + [SMALL_STATE(3856)] = 142653, + [SMALL_STATE(3857)] = 142704, + [SMALL_STATE(3858)] = 142753, + [SMALL_STATE(3859)] = 142802, + [SMALL_STATE(3860)] = 142853, + [SMALL_STATE(3861)] = 142906, + [SMALL_STATE(3862)] = 142957, + [SMALL_STATE(3863)] = 143010, + [SMALL_STATE(3864)] = 143063, + [SMALL_STATE(3865)] = 143116, + [SMALL_STATE(3866)] = 143167, + [SMALL_STATE(3867)] = 143220, + [SMALL_STATE(3868)] = 143273, + [SMALL_STATE(3869)] = 143324, + [SMALL_STATE(3870)] = 143377, + [SMALL_STATE(3871)] = 143430, + [SMALL_STATE(3872)] = 143483, + [SMALL_STATE(3873)] = 143534, + [SMALL_STATE(3874)] = 143585, + [SMALL_STATE(3875)] = 143636, + [SMALL_STATE(3876)] = 143685, + [SMALL_STATE(3877)] = 143736, + [SMALL_STATE(3878)] = 143785, + [SMALL_STATE(3879)] = 143834, + [SMALL_STATE(3880)] = 143883, + [SMALL_STATE(3881)] = 143934, + [SMALL_STATE(3882)] = 143985, + [SMALL_STATE(3883)] = 144036, + [SMALL_STATE(3884)] = 144087, + [SMALL_STATE(3885)] = 144140, + [SMALL_STATE(3886)] = 144191, + [SMALL_STATE(3887)] = 144242, + [SMALL_STATE(3888)] = 144295, + [SMALL_STATE(3889)] = 144346, + [SMALL_STATE(3890)] = 144399, + [SMALL_STATE(3891)] = 144452, + [SMALL_STATE(3892)] = 144501, + [SMALL_STATE(3893)] = 144552, + [SMALL_STATE(3894)] = 144603, + [SMALL_STATE(3895)] = 144652, + [SMALL_STATE(3896)] = 144703, + [SMALL_STATE(3897)] = 144754, + [SMALL_STATE(3898)] = 144802, + [SMALL_STATE(3899)] = 144850, + [SMALL_STATE(3900)] = 144900, + [SMALL_STATE(3901)] = 144948, + [SMALL_STATE(3902)] = 145000, + [SMALL_STATE(3903)] = 145050, + [SMALL_STATE(3904)] = 145100, + [SMALL_STATE(3905)] = 145150, + [SMALL_STATE(3906)] = 145198, + [SMALL_STATE(3907)] = 145248, + [SMALL_STATE(3908)] = 145296, + [SMALL_STATE(3909)] = 145344, + [SMALL_STATE(3910)] = 145394, + [SMALL_STATE(3911)] = 145442, + [SMALL_STATE(3912)] = 145490, + [SMALL_STATE(3913)] = 145538, + [SMALL_STATE(3914)] = 145586, + [SMALL_STATE(3915)] = 145634, + [SMALL_STATE(3916)] = 145682, + [SMALL_STATE(3917)] = 145732, + [SMALL_STATE(3918)] = 145782, + [SMALL_STATE(3919)] = 145832, + [SMALL_STATE(3920)] = 145880, + [SMALL_STATE(3921)] = 145928, + [SMALL_STATE(3922)] = 145976, + [SMALL_STATE(3923)] = 146024, + [SMALL_STATE(3924)] = 146072, + [SMALL_STATE(3925)] = 146120, + [SMALL_STATE(3926)] = 146168, + [SMALL_STATE(3927)] = 146216, + [SMALL_STATE(3928)] = 146264, + [SMALL_STATE(3929)] = 146312, + [SMALL_STATE(3930)] = 146360, + [SMALL_STATE(3931)] = 146408, + [SMALL_STATE(3932)] = 146456, + [SMALL_STATE(3933)] = 146504, + [SMALL_STATE(3934)] = 146552, + [SMALL_STATE(3935)] = 146600, + [SMALL_STATE(3936)] = 146648, + [SMALL_STATE(3937)] = 146696, + [SMALL_STATE(3938)] = 146744, + [SMALL_STATE(3939)] = 146792, + [SMALL_STATE(3940)] = 146840, + [SMALL_STATE(3941)] = 146890, + [SMALL_STATE(3942)] = 146940, + [SMALL_STATE(3943)] = 146990, + [SMALL_STATE(3944)] = 147038, + [SMALL_STATE(3945)] = 147086, + [SMALL_STATE(3946)] = 147134, + [SMALL_STATE(3947)] = 147182, + [SMALL_STATE(3948)] = 147230, + [SMALL_STATE(3949)] = 147278, + [SMALL_STATE(3950)] = 147326, + [SMALL_STATE(3951)] = 147376, + [SMALL_STATE(3952)] = 147424, + [SMALL_STATE(3953)] = 147472, + [SMALL_STATE(3954)] = 147520, + [SMALL_STATE(3955)] = 147568, + [SMALL_STATE(3956)] = 147616, + [SMALL_STATE(3957)] = 147664, + [SMALL_STATE(3958)] = 147712, + [SMALL_STATE(3959)] = 147760, + [SMALL_STATE(3960)] = 147808, + [SMALL_STATE(3961)] = 147856, + [SMALL_STATE(3962)] = 147904, + [SMALL_STATE(3963)] = 147952, + [SMALL_STATE(3964)] = 148000, + [SMALL_STATE(3965)] = 148048, + [SMALL_STATE(3966)] = 148096, + [SMALL_STATE(3967)] = 148144, + [SMALL_STATE(3968)] = 148194, + [SMALL_STATE(3969)] = 148242, + [SMALL_STATE(3970)] = 148290, + [SMALL_STATE(3971)] = 148338, + [SMALL_STATE(3972)] = 148386, + [SMALL_STATE(3973)] = 148434, + [SMALL_STATE(3974)] = 148482, + [SMALL_STATE(3975)] = 148530, + [SMALL_STATE(3976)] = 148578, + [SMALL_STATE(3977)] = 148626, + [SMALL_STATE(3978)] = 148674, + [SMALL_STATE(3979)] = 148722, + [SMALL_STATE(3980)] = 148770, + [SMALL_STATE(3981)] = 148818, + [SMALL_STATE(3982)] = 148866, + [SMALL_STATE(3983)] = 148914, + [SMALL_STATE(3984)] = 148962, + [SMALL_STATE(3985)] = 149010, + [SMALL_STATE(3986)] = 149058, + [SMALL_STATE(3987)] = 149108, + [SMALL_STATE(3988)] = 149156, + [SMALL_STATE(3989)] = 149204, + [SMALL_STATE(3990)] = 149252, + [SMALL_STATE(3991)] = 149300, + [SMALL_STATE(3992)] = 149348, + [SMALL_STATE(3993)] = 149396, + [SMALL_STATE(3994)] = 149444, + [SMALL_STATE(3995)] = 149492, + [SMALL_STATE(3996)] = 149540, + [SMALL_STATE(3997)] = 149588, + [SMALL_STATE(3998)] = 149636, + [SMALL_STATE(3999)] = 149684, + [SMALL_STATE(4000)] = 149732, + [SMALL_STATE(4001)] = 149780, + [SMALL_STATE(4002)] = 149828, + [SMALL_STATE(4003)] = 149876, + [SMALL_STATE(4004)] = 149924, + [SMALL_STATE(4005)] = 149972, + [SMALL_STATE(4006)] = 150020, + [SMALL_STATE(4007)] = 150068, + [SMALL_STATE(4008)] = 150118, + [SMALL_STATE(4009)] = 150166, + [SMALL_STATE(4010)] = 150214, + [SMALL_STATE(4011)] = 150262, + [SMALL_STATE(4012)] = 150310, + [SMALL_STATE(4013)] = 150358, + [SMALL_STATE(4014)] = 150408, + [SMALL_STATE(4015)] = 150456, + [SMALL_STATE(4016)] = 150504, + [SMALL_STATE(4017)] = 150552, + [SMALL_STATE(4018)] = 150600, + [SMALL_STATE(4019)] = 150648, + [SMALL_STATE(4020)] = 150696, + [SMALL_STATE(4021)] = 150744, + [SMALL_STATE(4022)] = 150792, + [SMALL_STATE(4023)] = 150840, + [SMALL_STATE(4024)] = 150888, + [SMALL_STATE(4025)] = 150936, + [SMALL_STATE(4026)] = 150984, + [SMALL_STATE(4027)] = 151032, + [SMALL_STATE(4028)] = 151082, + [SMALL_STATE(4029)] = 151130, + [SMALL_STATE(4030)] = 151178, + [SMALL_STATE(4031)] = 151226, + [SMALL_STATE(4032)] = 151274, + [SMALL_STATE(4033)] = 151322, + [SMALL_STATE(4034)] = 151370, + [SMALL_STATE(4035)] = 151418, + [SMALL_STATE(4036)] = 151466, + [SMALL_STATE(4037)] = 151514, + [SMALL_STATE(4038)] = 151562, + [SMALL_STATE(4039)] = 151610, + [SMALL_STATE(4040)] = 151658, + [SMALL_STATE(4041)] = 151706, + [SMALL_STATE(4042)] = 151754, + [SMALL_STATE(4043)] = 151802, + [SMALL_STATE(4044)] = 151850, + [SMALL_STATE(4045)] = 151898, + [SMALL_STATE(4046)] = 151948, + [SMALL_STATE(4047)] = 151998, + [SMALL_STATE(4048)] = 152046, + [SMALL_STATE(4049)] = 152094, + [SMALL_STATE(4050)] = 152142, + [SMALL_STATE(4051)] = 152189, + [SMALL_STATE(4052)] = 152236, + [SMALL_STATE(4053)] = 152283, + [SMALL_STATE(4054)] = 152330, + [SMALL_STATE(4055)] = 152377, + [SMALL_STATE(4056)] = 152424, + [SMALL_STATE(4057)] = 152471, + [SMALL_STATE(4058)] = 152518, + [SMALL_STATE(4059)] = 152565, + [SMALL_STATE(4060)] = 152612, + [SMALL_STATE(4061)] = 152659, + [SMALL_STATE(4062)] = 152706, + [SMALL_STATE(4063)] = 152753, + [SMALL_STATE(4064)] = 152800, + [SMALL_STATE(4065)] = 152847, + [SMALL_STATE(4066)] = 152894, + [SMALL_STATE(4067)] = 152941, + [SMALL_STATE(4068)] = 152988, + [SMALL_STATE(4069)] = 153035, + [SMALL_STATE(4070)] = 153082, + [SMALL_STATE(4071)] = 153129, + [SMALL_STATE(4072)] = 153176, + [SMALL_STATE(4073)] = 153223, + [SMALL_STATE(4074)] = 153270, + [SMALL_STATE(4075)] = 153317, + [SMALL_STATE(4076)] = 153364, + [SMALL_STATE(4077)] = 153411, + [SMALL_STATE(4078)] = 153458, + [SMALL_STATE(4079)] = 153505, + [SMALL_STATE(4080)] = 153552, + [SMALL_STATE(4081)] = 153599, + [SMALL_STATE(4082)] = 153646, + [SMALL_STATE(4083)] = 153693, + [SMALL_STATE(4084)] = 153740, + [SMALL_STATE(4085)] = 153787, + [SMALL_STATE(4086)] = 153834, + [SMALL_STATE(4087)] = 153881, + [SMALL_STATE(4088)] = 153928, + [SMALL_STATE(4089)] = 153975, + [SMALL_STATE(4090)] = 154022, + [SMALL_STATE(4091)] = 154069, + [SMALL_STATE(4092)] = 154116, + [SMALL_STATE(4093)] = 154163, + [SMALL_STATE(4094)] = 154210, + [SMALL_STATE(4095)] = 154257, + [SMALL_STATE(4096)] = 154304, + [SMALL_STATE(4097)] = 154351, + [SMALL_STATE(4098)] = 154398, + [SMALL_STATE(4099)] = 154445, + [SMALL_STATE(4100)] = 154492, + [SMALL_STATE(4101)] = 154539, + [SMALL_STATE(4102)] = 154586, + [SMALL_STATE(4103)] = 154633, + [SMALL_STATE(4104)] = 154680, + [SMALL_STATE(4105)] = 154727, + [SMALL_STATE(4106)] = 154774, + [SMALL_STATE(4107)] = 154821, + [SMALL_STATE(4108)] = 154868, + [SMALL_STATE(4109)] = 154915, + [SMALL_STATE(4110)] = 154962, + [SMALL_STATE(4111)] = 155009, + [SMALL_STATE(4112)] = 155056, + [SMALL_STATE(4113)] = 155103, + [SMALL_STATE(4114)] = 155150, + [SMALL_STATE(4115)] = 155197, + [SMALL_STATE(4116)] = 155244, + [SMALL_STATE(4117)] = 155291, + [SMALL_STATE(4118)] = 155338, + [SMALL_STATE(4119)] = 155385, + [SMALL_STATE(4120)] = 155432, + [SMALL_STATE(4121)] = 155479, + [SMALL_STATE(4122)] = 155526, + [SMALL_STATE(4123)] = 155573, + [SMALL_STATE(4124)] = 155620, + [SMALL_STATE(4125)] = 155667, + [SMALL_STATE(4126)] = 155714, + [SMALL_STATE(4127)] = 155761, + [SMALL_STATE(4128)] = 155808, + [SMALL_STATE(4129)] = 155855, + [SMALL_STATE(4130)] = 155902, + [SMALL_STATE(4131)] = 155949, + [SMALL_STATE(4132)] = 155996, + [SMALL_STATE(4133)] = 156043, + [SMALL_STATE(4134)] = 156090, + [SMALL_STATE(4135)] = 156137, + [SMALL_STATE(4136)] = 156184, + [SMALL_STATE(4137)] = 156231, + [SMALL_STATE(4138)] = 156278, + [SMALL_STATE(4139)] = 156325, + [SMALL_STATE(4140)] = 156372, + [SMALL_STATE(4141)] = 156419, + [SMALL_STATE(4142)] = 156466, + [SMALL_STATE(4143)] = 156513, + [SMALL_STATE(4144)] = 156560, + [SMALL_STATE(4145)] = 156607, + [SMALL_STATE(4146)] = 156654, + [SMALL_STATE(4147)] = 156701, + [SMALL_STATE(4148)] = 156748, + [SMALL_STATE(4149)] = 156795, + [SMALL_STATE(4150)] = 156848, + [SMALL_STATE(4151)] = 156895, + [SMALL_STATE(4152)] = 156942, + [SMALL_STATE(4153)] = 156989, + [SMALL_STATE(4154)] = 157036, + [SMALL_STATE(4155)] = 157083, + [SMALL_STATE(4156)] = 157130, + [SMALL_STATE(4157)] = 157177, + [SMALL_STATE(4158)] = 157224, + [SMALL_STATE(4159)] = 157271, + [SMALL_STATE(4160)] = 157318, + [SMALL_STATE(4161)] = 157365, + [SMALL_STATE(4162)] = 157412, + [SMALL_STATE(4163)] = 157459, + [SMALL_STATE(4164)] = 157506, + [SMALL_STATE(4165)] = 157553, + [SMALL_STATE(4166)] = 157600, + [SMALL_STATE(4167)] = 157647, + [SMALL_STATE(4168)] = 157694, + [SMALL_STATE(4169)] = 157741, + [SMALL_STATE(4170)] = 157788, + [SMALL_STATE(4171)] = 157835, + [SMALL_STATE(4172)] = 157882, + [SMALL_STATE(4173)] = 157929, + [SMALL_STATE(4174)] = 157976, + [SMALL_STATE(4175)] = 158023, + [SMALL_STATE(4176)] = 158070, + [SMALL_STATE(4177)] = 158117, + [SMALL_STATE(4178)] = 158164, + [SMALL_STATE(4179)] = 158211, + [SMALL_STATE(4180)] = 158258, + [SMALL_STATE(4181)] = 158305, + [SMALL_STATE(4182)] = 158352, + [SMALL_STATE(4183)] = 158399, + [SMALL_STATE(4184)] = 158446, + [SMALL_STATE(4185)] = 158493, + [SMALL_STATE(4186)] = 158540, + [SMALL_STATE(4187)] = 158587, + [SMALL_STATE(4188)] = 158634, + [SMALL_STATE(4189)] = 158681, + [SMALL_STATE(4190)] = 158728, + [SMALL_STATE(4191)] = 158775, + [SMALL_STATE(4192)] = 158822, + [SMALL_STATE(4193)] = 158869, + [SMALL_STATE(4194)] = 158916, + [SMALL_STATE(4195)] = 158963, + [SMALL_STATE(4196)] = 159010, + [SMALL_STATE(4197)] = 159057, + [SMALL_STATE(4198)] = 159104, + [SMALL_STATE(4199)] = 159151, + [SMALL_STATE(4200)] = 159198, + [SMALL_STATE(4201)] = 159245, + [SMALL_STATE(4202)] = 159292, + [SMALL_STATE(4203)] = 159339, + [SMALL_STATE(4204)] = 159386, + [SMALL_STATE(4205)] = 159433, + [SMALL_STATE(4206)] = 159480, + [SMALL_STATE(4207)] = 159527, + [SMALL_STATE(4208)] = 159574, + [SMALL_STATE(4209)] = 159621, + [SMALL_STATE(4210)] = 159668, + [SMALL_STATE(4211)] = 159715, + [SMALL_STATE(4212)] = 159762, + [SMALL_STATE(4213)] = 159809, + [SMALL_STATE(4214)] = 159856, + [SMALL_STATE(4215)] = 159903, + [SMALL_STATE(4216)] = 159950, + [SMALL_STATE(4217)] = 159997, + [SMALL_STATE(4218)] = 160044, + [SMALL_STATE(4219)] = 160091, + [SMALL_STATE(4220)] = 160138, + [SMALL_STATE(4221)] = 160185, + [SMALL_STATE(4222)] = 160232, + [SMALL_STATE(4223)] = 160279, + [SMALL_STATE(4224)] = 160326, + [SMALL_STATE(4225)] = 160373, + [SMALL_STATE(4226)] = 160420, + [SMALL_STATE(4227)] = 160467, + [SMALL_STATE(4228)] = 160514, + [SMALL_STATE(4229)] = 160561, + [SMALL_STATE(4230)] = 160608, + [SMALL_STATE(4231)] = 160655, + [SMALL_STATE(4232)] = 160702, + [SMALL_STATE(4233)] = 160749, + [SMALL_STATE(4234)] = 160796, + [SMALL_STATE(4235)] = 160843, + [SMALL_STATE(4236)] = 160905, + [SMALL_STATE(4237)] = 160963, + [SMALL_STATE(4238)] = 161009, + [SMALL_STATE(4239)] = 161055, + [SMALL_STATE(4240)] = 161140, + [SMALL_STATE(4241)] = 161225, + [SMALL_STATE(4242)] = 161310, + [SMALL_STATE(4243)] = 161395, + [SMALL_STATE(4244)] = 161480, + [SMALL_STATE(4245)] = 161565, + [SMALL_STATE(4246)] = 161650, + [SMALL_STATE(4247)] = 161735, + [SMALL_STATE(4248)] = 161820, + [SMALL_STATE(4249)] = 161905, + [SMALL_STATE(4250)] = 161990, + [SMALL_STATE(4251)] = 162045, + [SMALL_STATE(4252)] = 162130, + [SMALL_STATE(4253)] = 162215, + [SMALL_STATE(4254)] = 162300, + [SMALL_STATE(4255)] = 162385, + [SMALL_STATE(4256)] = 162470, + [SMALL_STATE(4257)] = 162514, + [SMALL_STATE(4258)] = 162566, + [SMALL_STATE(4259)] = 162610, + [SMALL_STATE(4260)] = 162654, + [SMALL_STATE(4261)] = 162698, + [SMALL_STATE(4262)] = 162742, + [SMALL_STATE(4263)] = 162786, + [SMALL_STATE(4264)] = 162830, + [SMALL_STATE(4265)] = 162874, + [SMALL_STATE(4266)] = 162918, + [SMALL_STATE(4267)] = 162962, + [SMALL_STATE(4268)] = 163006, + [SMALL_STATE(4269)] = 163054, + [SMALL_STATE(4270)] = 163098, + [SMALL_STATE(4271)] = 163142, + [SMALL_STATE(4272)] = 163191, + [SMALL_STATE(4273)] = 163238, + [SMALL_STATE(4274)] = 163287, + [SMALL_STATE(4275)] = 163329, + [SMALL_STATE(4276)] = 163375, + [SMALL_STATE(4277)] = 163419, + [SMALL_STATE(4278)] = 163461, + [SMALL_STATE(4279)] = 163507, + [SMALL_STATE(4280)] = 163553, + [SMALL_STATE(4281)] = 163599, + [SMALL_STATE(4282)] = 163643, + [SMALL_STATE(4283)] = 163685, + [SMALL_STATE(4284)] = 163727, + [SMALL_STATE(4285)] = 163770, + [SMALL_STATE(4286)] = 163811, + [SMALL_STATE(4287)] = 163854, + [SMALL_STATE(4288)] = 163895, + [SMALL_STATE(4289)] = 163930, + [SMALL_STATE(4290)] = 163977, + [SMALL_STATE(4291)] = 164012, + [SMALL_STATE(4292)] = 164047, + [SMALL_STATE(4293)] = 164094, + [SMALL_STATE(4294)] = 164141, + [SMALL_STATE(4295)] = 164175, + [SMALL_STATE(4296)] = 164209, + [SMALL_STATE(4297)] = 164242, + [SMALL_STATE(4298)] = 164275, + [SMALL_STATE(4299)] = 164308, + [SMALL_STATE(4300)] = 164341, + [SMALL_STATE(4301)] = 164374, + [SMALL_STATE(4302)] = 164407, + [SMALL_STATE(4303)] = 164440, + [SMALL_STATE(4304)] = 164473, + [SMALL_STATE(4305)] = 164506, + [SMALL_STATE(4306)] = 164547, + [SMALL_STATE(4307)] = 164580, + [SMALL_STATE(4308)] = 164613, + [SMALL_STATE(4309)] = 164646, + [SMALL_STATE(4310)] = 164679, + [SMALL_STATE(4311)] = 164712, + [SMALL_STATE(4312)] = 164745, + [SMALL_STATE(4313)] = 164778, + [SMALL_STATE(4314)] = 164811, + [SMALL_STATE(4315)] = 164844, + [SMALL_STATE(4316)] = 164877, + [SMALL_STATE(4317)] = 164910, + [SMALL_STATE(4318)] = 164943, + [SMALL_STATE(4319)] = 164976, + [SMALL_STATE(4320)] = 165009, + [SMALL_STATE(4321)] = 165042, + [SMALL_STATE(4322)] = 165075, + [SMALL_STATE(4323)] = 165108, + [SMALL_STATE(4324)] = 165141, + [SMALL_STATE(4325)] = 165174, + [SMALL_STATE(4326)] = 165207, + [SMALL_STATE(4327)] = 165240, + [SMALL_STATE(4328)] = 165273, + [SMALL_STATE(4329)] = 165306, + [SMALL_STATE(4330)] = 165339, + [SMALL_STATE(4331)] = 165372, + [SMALL_STATE(4332)] = 165405, + [SMALL_STATE(4333)] = 165438, + [SMALL_STATE(4334)] = 165492, + [SMALL_STATE(4335)] = 165546, + [SMALL_STATE(4336)] = 165584, + [SMALL_STATE(4337)] = 165638, + [SMALL_STATE(4338)] = 165692, + [SMALL_STATE(4339)] = 165746, + [SMALL_STATE(4340)] = 165800, + [SMALL_STATE(4341)] = 165854, + [SMALL_STATE(4342)] = 165885, + [SMALL_STATE(4343)] = 165916, + [SMALL_STATE(4344)] = 165947, + [SMALL_STATE(4345)] = 165978, + [SMALL_STATE(4346)] = 166009, + [SMALL_STATE(4347)] = 166052, + [SMALL_STATE(4348)] = 166083, + [SMALL_STATE(4349)] = 166114, + [SMALL_STATE(4350)] = 166145, + [SMALL_STATE(4351)] = 166176, + [SMALL_STATE(4352)] = 166207, + [SMALL_STATE(4353)] = 166238, + [SMALL_STATE(4354)] = 166273, + [SMALL_STATE(4355)] = 166304, + [SMALL_STATE(4356)] = 166335, + [SMALL_STATE(4357)] = 166366, + [SMALL_STATE(4358)] = 166409, + [SMALL_STATE(4359)] = 166440, + [SMALL_STATE(4360)] = 166473, + [SMALL_STATE(4361)] = 166516, + [SMALL_STATE(4362)] = 166547, + [SMALL_STATE(4363)] = 166578, + [SMALL_STATE(4364)] = 166609, + [SMALL_STATE(4365)] = 166644, + [SMALL_STATE(4366)] = 166675, + [SMALL_STATE(4367)] = 166708, + [SMALL_STATE(4368)] = 166740, + [SMALL_STATE(4369)] = 166772, + [SMALL_STATE(4370)] = 166802, + [SMALL_STATE(4371)] = 166834, + [SMALL_STATE(4372)] = 166864, + [SMALL_STATE(4373)] = 166893, + [SMALL_STATE(4374)] = 166932, + [SMALL_STATE(4375)] = 166961, + [SMALL_STATE(4376)] = 166988, + [SMALL_STATE(4377)] = 167027, + [SMALL_STATE(4378)] = 167066, + [SMALL_STATE(4379)] = 167095, + [SMALL_STATE(4380)] = 167134, + [SMALL_STATE(4381)] = 167171, + [SMALL_STATE(4382)] = 167200, + [SMALL_STATE(4383)] = 167231, + [SMALL_STATE(4384)] = 167260, + [SMALL_STATE(4385)] = 167287, + [SMALL_STATE(4386)] = 167314, + [SMALL_STATE(4387)] = 167349, + [SMALL_STATE(4388)] = 167386, + [SMALL_STATE(4389)] = 167425, + [SMALL_STATE(4390)] = 167464, + [SMALL_STATE(4391)] = 167493, + [SMALL_STATE(4392)] = 167522, + [SMALL_STATE(4393)] = 167549, + [SMALL_STATE(4394)] = 167578, + [SMALL_STATE(4395)] = 167607, + [SMALL_STATE(4396)] = 167646, + [SMALL_STATE(4397)] = 167685, + [SMALL_STATE(4398)] = 167724, + [SMALL_STATE(4399)] = 167753, + [SMALL_STATE(4400)] = 167782, + [SMALL_STATE(4401)] = 167811, + [SMALL_STATE(4402)] = 167838, + [SMALL_STATE(4403)] = 167873, + [SMALL_STATE(4404)] = 167902, + [SMALL_STATE(4405)] = 167931, + [SMALL_STATE(4406)] = 167960, + [SMALL_STATE(4407)] = 167989, + [SMALL_STATE(4408)] = 168018, + [SMALL_STATE(4409)] = 168053, + [SMALL_STATE(4410)] = 168082, + [SMALL_STATE(4411)] = 168117, + [SMALL_STATE(4412)] = 168146, + [SMALL_STATE(4413)] = 168175, + [SMALL_STATE(4414)] = 168204, + [SMALL_STATE(4415)] = 168233, + [SMALL_STATE(4416)] = 168262, + [SMALL_STATE(4417)] = 168297, + [SMALL_STATE(4418)] = 168326, + [SMALL_STATE(4419)] = 168355, + [SMALL_STATE(4420)] = 168384, + [SMALL_STATE(4421)] = 168421, + [SMALL_STATE(4422)] = 168456, + [SMALL_STATE(4423)] = 168495, + [SMALL_STATE(4424)] = 168534, + [SMALL_STATE(4425)] = 168563, + [SMALL_STATE(4426)] = 168592, + [SMALL_STATE(4427)] = 168631, + [SMALL_STATE(4428)] = 168660, + [SMALL_STATE(4429)] = 168689, + [SMALL_STATE(4430)] = 168718, + [SMALL_STATE(4431)] = 168749, + [SMALL_STATE(4432)] = 168778, + [SMALL_STATE(4433)] = 168805, + [SMALL_STATE(4434)] = 168834, + [SMALL_STATE(4435)] = 168869, + [SMALL_STATE(4436)] = 168902, + [SMALL_STATE(4437)] = 168933, + [SMALL_STATE(4438)] = 168964, + [SMALL_STATE(4439)] = 168993, + [SMALL_STATE(4440)] = 169020, + [SMALL_STATE(4441)] = 169049, + [SMALL_STATE(4442)] = 169078, + [SMALL_STATE(4443)] = 169107, + [SMALL_STATE(4444)] = 169136, + [SMALL_STATE(4445)] = 169165, + [SMALL_STATE(4446)] = 169202, + [SMALL_STATE(4447)] = 169231, + [SMALL_STATE(4448)] = 169260, + [SMALL_STATE(4449)] = 169289, + [SMALL_STATE(4450)] = 169318, + [SMALL_STATE(4451)] = 169347, + [SMALL_STATE(4452)] = 169386, + [SMALL_STATE(4453)] = 169425, + [SMALL_STATE(4454)] = 169464, + [SMALL_STATE(4455)] = 169493, + [SMALL_STATE(4456)] = 169522, + [SMALL_STATE(4457)] = 169551, + [SMALL_STATE(4458)] = 169580, + [SMALL_STATE(4459)] = 169609, + [SMALL_STATE(4460)] = 169638, + [SMALL_STATE(4461)] = 169667, + [SMALL_STATE(4462)] = 169704, + [SMALL_STATE(4463)] = 169733, + [SMALL_STATE(4464)] = 169762, + [SMALL_STATE(4465)] = 169801, + [SMALL_STATE(4466)] = 169830, + [SMALL_STATE(4467)] = 169859, + [SMALL_STATE(4468)] = 169896, + [SMALL_STATE(4469)] = 169935, + [SMALL_STATE(4470)] = 169964, + [SMALL_STATE(4471)] = 170003, + [SMALL_STATE(4472)] = 170032, + [SMALL_STATE(4473)] = 170063, + [SMALL_STATE(4474)] = 170090, + [SMALL_STATE(4475)] = 170119, + [SMALL_STATE(4476)] = 170146, + [SMALL_STATE(4477)] = 170175, + [SMALL_STATE(4478)] = 170204, + [SMALL_STATE(4479)] = 170233, + [SMALL_STATE(4480)] = 170262, + [SMALL_STATE(4481)] = 170291, + [SMALL_STATE(4482)] = 170320, + [SMALL_STATE(4483)] = 170349, + [SMALL_STATE(4484)] = 170397, + [SMALL_STATE(4485)] = 170445, + [SMALL_STATE(4486)] = 170493, + [SMALL_STATE(4487)] = 170541, + [SMALL_STATE(4488)] = 170589, + [SMALL_STATE(4489)] = 170623, + [SMALL_STATE(4490)] = 170667, + [SMALL_STATE(4491)] = 170715, + [SMALL_STATE(4492)] = 170763, + [SMALL_STATE(4493)] = 170811, + [SMALL_STATE(4494)] = 170859, + [SMALL_STATE(4495)] = 170907, + [SMALL_STATE(4496)] = 170955, + [SMALL_STATE(4497)] = 171003, + [SMALL_STATE(4498)] = 171051, + [SMALL_STATE(4499)] = 171099, + [SMALL_STATE(4500)] = 171147, + [SMALL_STATE(4501)] = 171181, + [SMALL_STATE(4502)] = 171229, + [SMALL_STATE(4503)] = 171263, + [SMALL_STATE(4504)] = 171307, + [SMALL_STATE(4505)] = 171351, + [SMALL_STATE(4506)] = 171395, + [SMALL_STATE(4507)] = 171443, + [SMALL_STATE(4508)] = 171491, + [SMALL_STATE(4509)] = 171539, + [SMALL_STATE(4510)] = 171587, + [SMALL_STATE(4511)] = 171635, + [SMALL_STATE(4512)] = 171683, + [SMALL_STATE(4513)] = 171731, + [SMALL_STATE(4514)] = 171763, + [SMALL_STATE(4515)] = 171807, + [SMALL_STATE(4516)] = 171841, + [SMALL_STATE(4517)] = 171889, + [SMALL_STATE(4518)] = 171923, + [SMALL_STATE(4519)] = 171971, + [SMALL_STATE(4520)] = 172019, + [SMALL_STATE(4521)] = 172067, + [SMALL_STATE(4522)] = 172115, + [SMALL_STATE(4523)] = 172159, + [SMALL_STATE(4524)] = 172193, + [SMALL_STATE(4525)] = 172241, + [SMALL_STATE(4526)] = 172289, + [SMALL_STATE(4527)] = 172314, + [SMALL_STATE(4528)] = 172339, + [SMALL_STATE(4529)] = 172366, + [SMALL_STATE(4530)] = 172395, + [SMALL_STATE(4531)] = 172422, + [SMALL_STATE(4532)] = 172451, + [SMALL_STATE(4533)] = 172478, + [SMALL_STATE(4534)] = 172519, + [SMALL_STATE(4535)] = 172546, + [SMALL_STATE(4536)] = 172587, + [SMALL_STATE(4537)] = 172628, + [SMALL_STATE(4538)] = 172671, + [SMALL_STATE(4539)] = 172712, + [SMALL_STATE(4540)] = 172739, + [SMALL_STATE(4541)] = 172764, + [SMALL_STATE(4542)] = 172789, + [SMALL_STATE(4543)] = 172814, + [SMALL_STATE(4544)] = 172839, + [SMALL_STATE(4545)] = 172864, + [SMALL_STATE(4546)] = 172889, + [SMALL_STATE(4547)] = 172914, + [SMALL_STATE(4548)] = 172939, + [SMALL_STATE(4549)] = 172964, + [SMALL_STATE(4550)] = 172989, + [SMALL_STATE(4551)] = 173014, + [SMALL_STATE(4552)] = 173039, + [SMALL_STATE(4553)] = 173064, + [SMALL_STATE(4554)] = 173089, + [SMALL_STATE(4555)] = 173130, + [SMALL_STATE(4556)] = 173171, + [SMALL_STATE(4557)] = 173198, + [SMALL_STATE(4558)] = 173231, + [SMALL_STATE(4559)] = 173258, + [SMALL_STATE(4560)] = 173285, + [SMALL_STATE(4561)] = 173312, + [SMALL_STATE(4562)] = 173353, + [SMALL_STATE(4563)] = 173386, + [SMALL_STATE(4564)] = 173411, + [SMALL_STATE(4565)] = 173436, + [SMALL_STATE(4566)] = 173463, + [SMALL_STATE(4567)] = 173488, + [SMALL_STATE(4568)] = 173515, + [SMALL_STATE(4569)] = 173540, + [SMALL_STATE(4570)] = 173567, + [SMALL_STATE(4571)] = 173594, + [SMALL_STATE(4572)] = 173621, + [SMALL_STATE(4573)] = 173648, + [SMALL_STATE(4574)] = 173673, + [SMALL_STATE(4575)] = 173700, + [SMALL_STATE(4576)] = 173725, + [SMALL_STATE(4577)] = 173750, + [SMALL_STATE(4578)] = 173775, + [SMALL_STATE(4579)] = 173800, + [SMALL_STATE(4580)] = 173825, + [SMALL_STATE(4581)] = 173856, + [SMALL_STATE(4582)] = 173883, + [SMALL_STATE(4583)] = 173924, + [SMALL_STATE(4584)] = 173955, + [SMALL_STATE(4585)] = 173980, + [SMALL_STATE(4586)] = 174005, + [SMALL_STATE(4587)] = 174046, + [SMALL_STATE(4588)] = 174071, + [SMALL_STATE(4589)] = 174112, + [SMALL_STATE(4590)] = 174137, + [SMALL_STATE(4591)] = 174162, + [SMALL_STATE(4592)] = 174187, + [SMALL_STATE(4593)] = 174212, + [SMALL_STATE(4594)] = 174237, + [SMALL_STATE(4595)] = 174271, + [SMALL_STATE(4596)] = 174305, + [SMALL_STATE(4597)] = 174331, + [SMALL_STATE(4598)] = 174369, + [SMALL_STATE(4599)] = 174407, + [SMALL_STATE(4600)] = 174443, + [SMALL_STATE(4601)] = 174469, + [SMALL_STATE(4602)] = 174497, + [SMALL_STATE(4603)] = 174539, + [SMALL_STATE(4604)] = 174581, + [SMALL_STATE(4605)] = 174623, + [SMALL_STATE(4606)] = 174665, + [SMALL_STATE(4607)] = 174709, + [SMALL_STATE(4608)] = 174743, + [SMALL_STATE(4609)] = 174785, + [SMALL_STATE(4610)] = 174827, + [SMALL_STATE(4611)] = 174869, + [SMALL_STATE(4612)] = 174913, + [SMALL_STATE(4613)] = 174955, + [SMALL_STATE(4614)] = 174989, + [SMALL_STATE(4615)] = 175017, + [SMALL_STATE(4616)] = 175047, + [SMALL_STATE(4617)] = 175089, + [SMALL_STATE(4618)] = 175131, + [SMALL_STATE(4619)] = 175173, + [SMALL_STATE(4620)] = 175211, + [SMALL_STATE(4621)] = 175253, + [SMALL_STATE(4622)] = 175295, + [SMALL_STATE(4623)] = 175339, + [SMALL_STATE(4624)] = 175383, + [SMALL_STATE(4625)] = 175425, + [SMALL_STATE(4626)] = 175469, + [SMALL_STATE(4627)] = 175513, + [SMALL_STATE(4628)] = 175555, + [SMALL_STATE(4629)] = 175593, + [SMALL_STATE(4630)] = 175635, + [SMALL_STATE(4631)] = 175677, + [SMALL_STATE(4632)] = 175711, + [SMALL_STATE(4633)] = 175753, + [SMALL_STATE(4634)] = 175787, + [SMALL_STATE(4635)] = 175829, + [SMALL_STATE(4636)] = 175871, + [SMALL_STATE(4637)] = 175913, + [SMALL_STATE(4638)] = 175955, + [SMALL_STATE(4639)] = 175997, + [SMALL_STATE(4640)] = 176025, + [SMALL_STATE(4641)] = 176063, + [SMALL_STATE(4642)] = 176101, + [SMALL_STATE(4643)] = 176145, + [SMALL_STATE(4644)] = 176183, + [SMALL_STATE(4645)] = 176221, + [SMALL_STATE(4646)] = 176259, + [SMALL_STATE(4647)] = 176295, + [SMALL_STATE(4648)] = 176333, + [SMALL_STATE(4649)] = 176358, + [SMALL_STATE(4650)] = 176383, + [SMALL_STATE(4651)] = 176412, + [SMALL_STATE(4652)] = 176437, + [SMALL_STATE(4653)] = 176462, + [SMALL_STATE(4654)] = 176487, + [SMALL_STATE(4655)] = 176516, + [SMALL_STATE(4656)] = 176545, + [SMALL_STATE(4657)] = 176574, + [SMALL_STATE(4658)] = 176599, + [SMALL_STATE(4659)] = 176624, + [SMALL_STATE(4660)] = 176649, + [SMALL_STATE(4661)] = 176674, + [SMALL_STATE(4662)] = 176697, + [SMALL_STATE(4663)] = 176722, + [SMALL_STATE(4664)] = 176749, + [SMALL_STATE(4665)] = 176774, + [SMALL_STATE(4666)] = 176799, + [SMALL_STATE(4667)] = 176824, + [SMALL_STATE(4668)] = 176847, + [SMALL_STATE(4669)] = 176872, + [SMALL_STATE(4670)] = 176897, + [SMALL_STATE(4671)] = 176922, + [SMALL_STATE(4672)] = 176945, + [SMALL_STATE(4673)] = 176970, + [SMALL_STATE(4674)] = 176993, + [SMALL_STATE(4675)] = 177018, + [SMALL_STATE(4676)] = 177043, + [SMALL_STATE(4677)] = 177070, + [SMALL_STATE(4678)] = 177093, + [SMALL_STATE(4679)] = 177116, + [SMALL_STATE(4680)] = 177141, + [SMALL_STATE(4681)] = 177166, + [SMALL_STATE(4682)] = 177191, + [SMALL_STATE(4683)] = 177216, + [SMALL_STATE(4684)] = 177241, + [SMALL_STATE(4685)] = 177264, + [SMALL_STATE(4686)] = 177289, + [SMALL_STATE(4687)] = 177314, + [SMALL_STATE(4688)] = 177343, + [SMALL_STATE(4689)] = 177368, + [SMALL_STATE(4690)] = 177395, + [SMALL_STATE(4691)] = 177424, + [SMALL_STATE(4692)] = 177453, + [SMALL_STATE(4693)] = 177496, + [SMALL_STATE(4694)] = 177521, + [SMALL_STATE(4695)] = 177546, + [SMALL_STATE(4696)] = 177573, + [SMALL_STATE(4697)] = 177600, + [SMALL_STATE(4698)] = 177631, + [SMALL_STATE(4699)] = 177656, + [SMALL_STATE(4700)] = 177681, + [SMALL_STATE(4701)] = 177708, + [SMALL_STATE(4702)] = 177735, + [SMALL_STATE(4703)] = 177760, + [SMALL_STATE(4704)] = 177785, + [SMALL_STATE(4705)] = 177808, + [SMALL_STATE(4706)] = 177837, + [SMALL_STATE(4707)] = 177862, + [SMALL_STATE(4708)] = 177887, + [SMALL_STATE(4709)] = 177912, + [SMALL_STATE(4710)] = 177937, + [SMALL_STATE(4711)] = 177962, + [SMALL_STATE(4712)] = 177985, + [SMALL_STATE(4713)] = 178019, + [SMALL_STATE(4714)] = 178057, + [SMALL_STATE(4715)] = 178095, + [SMALL_STATE(4716)] = 178135, + [SMALL_STATE(4717)] = 178175, + [SMALL_STATE(4718)] = 178215, + [SMALL_STATE(4719)] = 178255, + [SMALL_STATE(4720)] = 178295, + [SMALL_STATE(4721)] = 178335, + [SMALL_STATE(4722)] = 178375, + [SMALL_STATE(4723)] = 178409, + [SMALL_STATE(4724)] = 178449, + [SMALL_STATE(4725)] = 178489, + [SMALL_STATE(4726)] = 178529, + [SMALL_STATE(4727)] = 178569, + [SMALL_STATE(4728)] = 178609, + [SMALL_STATE(4729)] = 178649, + [SMALL_STATE(4730)] = 178689, + [SMALL_STATE(4731)] = 178729, + [SMALL_STATE(4732)] = 178757, + [SMALL_STATE(4733)] = 178785, + [SMALL_STATE(4734)] = 178823, + [SMALL_STATE(4735)] = 178863, + [SMALL_STATE(4736)] = 178903, + [SMALL_STATE(4737)] = 178943, + [SMALL_STATE(4738)] = 178983, + [SMALL_STATE(4739)] = 179023, + [SMALL_STATE(4740)] = 179045, + [SMALL_STATE(4741)] = 179085, + [SMALL_STATE(4742)] = 179125, + [SMALL_STATE(4743)] = 179147, + [SMALL_STATE(4744)] = 179171, + [SMALL_STATE(4745)] = 179199, + [SMALL_STATE(4746)] = 179223, + [SMALL_STATE(4747)] = 179249, + [SMALL_STATE(4748)] = 179275, + [SMALL_STATE(4749)] = 179315, + [SMALL_STATE(4750)] = 179341, + [SMALL_STATE(4751)] = 179365, + [SMALL_STATE(4752)] = 179402, + [SMALL_STATE(4753)] = 179439, + [SMALL_STATE(4754)] = 179460, + [SMALL_STATE(4755)] = 179483, + [SMALL_STATE(4756)] = 179506, + [SMALL_STATE(4757)] = 179543, + [SMALL_STATE(4758)] = 179580, + [SMALL_STATE(4759)] = 179617, + [SMALL_STATE(4760)] = 179654, + [SMALL_STATE(4761)] = 179691, + [SMALL_STATE(4762)] = 179728, + [SMALL_STATE(4763)] = 179765, + [SMALL_STATE(4764)] = 179792, + [SMALL_STATE(4765)] = 179829, + [SMALL_STATE(4766)] = 179866, + [SMALL_STATE(4767)] = 179903, + [SMALL_STATE(4768)] = 179924, + [SMALL_STATE(4769)] = 179955, + [SMALL_STATE(4770)] = 179992, + [SMALL_STATE(4771)] = 180029, + [SMALL_STATE(4772)] = 180060, + [SMALL_STATE(4773)] = 180081, + [SMALL_STATE(4774)] = 180102, + [SMALL_STATE(4775)] = 180123, + [SMALL_STATE(4776)] = 180160, + [SMALL_STATE(4777)] = 180181, + [SMALL_STATE(4778)] = 180218, + [SMALL_STATE(4779)] = 180255, + [SMALL_STATE(4780)] = 180292, + [SMALL_STATE(4781)] = 180329, + [SMALL_STATE(4782)] = 180366, + [SMALL_STATE(4783)] = 180403, + [SMALL_STATE(4784)] = 180440, + [SMALL_STATE(4785)] = 180477, + [SMALL_STATE(4786)] = 180514, + [SMALL_STATE(4787)] = 180551, + [SMALL_STATE(4788)] = 180588, + [SMALL_STATE(4789)] = 180625, + [SMALL_STATE(4790)] = 180646, + [SMALL_STATE(4791)] = 180667, + [SMALL_STATE(4792)] = 180688, + [SMALL_STATE(4793)] = 180709, + [SMALL_STATE(4794)] = 180740, + [SMALL_STATE(4795)] = 180777, + [SMALL_STATE(4796)] = 180798, + [SMALL_STATE(4797)] = 180835, + [SMALL_STATE(4798)] = 180862, + [SMALL_STATE(4799)] = 180889, + [SMALL_STATE(4800)] = 180926, + [SMALL_STATE(4801)] = 180955, + [SMALL_STATE(4802)] = 180992, + [SMALL_STATE(4803)] = 181019, + [SMALL_STATE(4804)] = 181040, + [SMALL_STATE(4805)] = 181061, + [SMALL_STATE(4806)] = 181098, + [SMALL_STATE(4807)] = 181133, + [SMALL_STATE(4808)] = 181170, + [SMALL_STATE(4809)] = 181197, + [SMALL_STATE(4810)] = 181234, + [SMALL_STATE(4811)] = 181263, + [SMALL_STATE(4812)] = 181294, + [SMALL_STATE(4813)] = 181315, + [SMALL_STATE(4814)] = 181336, + [SMALL_STATE(4815)] = 181369, + [SMALL_STATE(4816)] = 181406, + [SMALL_STATE(4817)] = 181437, + [SMALL_STATE(4818)] = 181474, + [SMALL_STATE(4819)] = 181511, + [SMALL_STATE(4820)] = 181548, + [SMALL_STATE(4821)] = 181581, + [SMALL_STATE(4822)] = 181618, + [SMALL_STATE(4823)] = 181651, + [SMALL_STATE(4824)] = 181688, + [SMALL_STATE(4825)] = 181721, + [SMALL_STATE(4826)] = 181754, + [SMALL_STATE(4827)] = 181787, + [SMALL_STATE(4828)] = 181820, + [SMALL_STATE(4829)] = 181853, + [SMALL_STATE(4830)] = 181890, + [SMALL_STATE(4831)] = 181911, + [SMALL_STATE(4832)] = 181944, + [SMALL_STATE(4833)] = 181977, + [SMALL_STATE(4834)] = 182014, + [SMALL_STATE(4835)] = 182035, + [SMALL_STATE(4836)] = 182058, + [SMALL_STATE(4837)] = 182079, + [SMALL_STATE(4838)] = 182106, + [SMALL_STATE(4839)] = 182127, + [SMALL_STATE(4840)] = 182148, + [SMALL_STATE(4841)] = 182181, + [SMALL_STATE(4842)] = 182202, + [SMALL_STATE(4843)] = 182223, + [SMALL_STATE(4844)] = 182256, + [SMALL_STATE(4845)] = 182277, + [SMALL_STATE(4846)] = 182298, + [SMALL_STATE(4847)] = 182319, + [SMALL_STATE(4848)] = 182356, + [SMALL_STATE(4849)] = 182393, + [SMALL_STATE(4850)] = 182430, + [SMALL_STATE(4851)] = 182451, + [SMALL_STATE(4852)] = 182472, + [SMALL_STATE(4853)] = 182493, + [SMALL_STATE(4854)] = 182530, + [SMALL_STATE(4855)] = 182567, + [SMALL_STATE(4856)] = 182600, + [SMALL_STATE(4857)] = 182637, + [SMALL_STATE(4858)] = 182674, + [SMALL_STATE(4859)] = 182695, + [SMALL_STATE(4860)] = 182732, + [SMALL_STATE(4861)] = 182769, + [SMALL_STATE(4862)] = 182806, + [SMALL_STATE(4863)] = 182843, + [SMALL_STATE(4864)] = 182876, + [SMALL_STATE(4865)] = 182909, + [SMALL_STATE(4866)] = 182934, + [SMALL_STATE(4867)] = 182965, + [SMALL_STATE(4868)] = 182990, + [SMALL_STATE(4869)] = 183011, + [SMALL_STATE(4870)] = 183048, + [SMALL_STATE(4871)] = 183069, + [SMALL_STATE(4872)] = 183100, + [SMALL_STATE(4873)] = 183121, + [SMALL_STATE(4874)] = 183142, + [SMALL_STATE(4875)] = 183179, + [SMALL_STATE(4876)] = 183200, + [SMALL_STATE(4877)] = 183237, + [SMALL_STATE(4878)] = 183274, + [SMALL_STATE(4879)] = 183295, + [SMALL_STATE(4880)] = 183332, + [SMALL_STATE(4881)] = 183369, + [SMALL_STATE(4882)] = 183400, + [SMALL_STATE(4883)] = 183423, + [SMALL_STATE(4884)] = 183444, + [SMALL_STATE(4885)] = 183467, + [SMALL_STATE(4886)] = 183492, + [SMALL_STATE(4887)] = 183519, + [SMALL_STATE(4888)] = 183540, + [SMALL_STATE(4889)] = 183577, + [SMALL_STATE(4890)] = 183598, + [SMALL_STATE(4891)] = 183631, + [SMALL_STATE(4892)] = 183652, + [SMALL_STATE(4893)] = 183685, + [SMALL_STATE(4894)] = 183718, + [SMALL_STATE(4895)] = 183741, + [SMALL_STATE(4896)] = 183774, + [SMALL_STATE(4897)] = 183805, + [SMALL_STATE(4898)] = 183826, + [SMALL_STATE(4899)] = 183847, + [SMALL_STATE(4900)] = 183880, + [SMALL_STATE(4901)] = 183913, + [SMALL_STATE(4902)] = 183946, + [SMALL_STATE(4903)] = 183979, + [SMALL_STATE(4904)] = 184012, + [SMALL_STATE(4905)] = 184049, + [SMALL_STATE(4906)] = 184070, + [SMALL_STATE(4907)] = 184091, + [SMALL_STATE(4908)] = 184112, + [SMALL_STATE(4909)] = 184145, + [SMALL_STATE(4910)] = 184166, + [SMALL_STATE(4911)] = 184199, + [SMALL_STATE(4912)] = 184232, + [SMALL_STATE(4913)] = 184265, + [SMALL_STATE(4914)] = 184298, + [SMALL_STATE(4915)] = 184319, + [SMALL_STATE(4916)] = 184352, + [SMALL_STATE(4917)] = 184387, + [SMALL_STATE(4918)] = 184420, + [SMALL_STATE(4919)] = 184441, + [SMALL_STATE(4920)] = 184462, + [SMALL_STATE(4921)] = 184483, + [SMALL_STATE(4922)] = 184504, + [SMALL_STATE(4923)] = 184525, + [SMALL_STATE(4924)] = 184548, + [SMALL_STATE(4925)] = 184569, + [SMALL_STATE(4926)] = 184590, + [SMALL_STATE(4927)] = 184611, + [SMALL_STATE(4928)] = 184644, + [SMALL_STATE(4929)] = 184665, + [SMALL_STATE(4930)] = 184698, + [SMALL_STATE(4931)] = 184721, + [SMALL_STATE(4932)] = 184744, + [SMALL_STATE(4933)] = 184765, + [SMALL_STATE(4934)] = 184788, + [SMALL_STATE(4935)] = 184811, + [SMALL_STATE(4936)] = 184832, + [SMALL_STATE(4937)] = 184863, + [SMALL_STATE(4938)] = 184884, + [SMALL_STATE(4939)] = 184919, + [SMALL_STATE(4940)] = 184940, + [SMALL_STATE(4941)] = 184971, + [SMALL_STATE(4942)] = 185002, + [SMALL_STATE(4943)] = 185035, + [SMALL_STATE(4944)] = 185066, + [SMALL_STATE(4945)] = 185103, + [SMALL_STATE(4946)] = 185134, + [SMALL_STATE(4947)] = 185169, + [SMALL_STATE(4948)] = 185202, + [SMALL_STATE(4949)] = 185239, + [SMALL_STATE(4950)] = 185276, + [SMALL_STATE(4951)] = 185313, + [SMALL_STATE(4952)] = 185334, + [SMALL_STATE(4953)] = 185355, + [SMALL_STATE(4954)] = 185386, + [SMALL_STATE(4955)] = 185419, + [SMALL_STATE(4956)] = 185452, + [SMALL_STATE(4957)] = 185485, + [SMALL_STATE(4958)] = 185518, + [SMALL_STATE(4959)] = 185546, + [SMALL_STATE(4960)] = 185572, + [SMALL_STATE(4961)] = 185604, + [SMALL_STATE(4962)] = 185636, + [SMALL_STATE(4963)] = 185664, + [SMALL_STATE(4964)] = 185696, + [SMALL_STATE(4965)] = 185724, + [SMALL_STATE(4966)] = 185756, + [SMALL_STATE(4967)] = 185784, + [SMALL_STATE(4968)] = 185806, + [SMALL_STATE(4969)] = 185838, + [SMALL_STATE(4970)] = 185872, + [SMALL_STATE(4971)] = 185900, + [SMALL_STATE(4972)] = 185926, + [SMALL_STATE(4973)] = 185952, + [SMALL_STATE(4974)] = 185986, + [SMALL_STATE(4975)] = 186014, + [SMALL_STATE(4976)] = 186046, + [SMALL_STATE(4977)] = 186072, + [SMALL_STATE(4978)] = 186098, + [SMALL_STATE(4979)] = 186130, + [SMALL_STATE(4980)] = 186156, + [SMALL_STATE(4981)] = 186178, + [SMALL_STATE(4982)] = 186200, + [SMALL_STATE(4983)] = 186234, + [SMALL_STATE(4984)] = 186254, + [SMALL_STATE(4985)] = 186280, + [SMALL_STATE(4986)] = 186300, + [SMALL_STATE(4987)] = 186332, + [SMALL_STATE(4988)] = 186366, + [SMALL_STATE(4989)] = 186394, + [SMALL_STATE(4990)] = 186422, + [SMALL_STATE(4991)] = 186450, + [SMALL_STATE(4992)] = 186482, + [SMALL_STATE(4993)] = 186516, + [SMALL_STATE(4994)] = 186550, + [SMALL_STATE(4995)] = 186584, + [SMALL_STATE(4996)] = 186614, + [SMALL_STATE(4997)] = 186648, + [SMALL_STATE(4998)] = 186679, + [SMALL_STATE(4999)] = 186710, + [SMALL_STATE(5000)] = 186737, + [SMALL_STATE(5001)] = 186764, + [SMALL_STATE(5002)] = 186791, + [SMALL_STATE(5003)] = 186822, + [SMALL_STATE(5004)] = 186853, + [SMALL_STATE(5005)] = 186884, + [SMALL_STATE(5006)] = 186911, + [SMALL_STATE(5007)] = 186936, + [SMALL_STATE(5008)] = 186967, + [SMALL_STATE(5009)] = 186998, + [SMALL_STATE(5010)] = 187029, + [SMALL_STATE(5011)] = 187060, + [SMALL_STATE(5012)] = 187087, + [SMALL_STATE(5013)] = 187114, + [SMALL_STATE(5014)] = 187145, + [SMALL_STATE(5015)] = 187176, + [SMALL_STATE(5016)] = 187207, + [SMALL_STATE(5017)] = 187230, + [SMALL_STATE(5018)] = 187253, + [SMALL_STATE(5019)] = 187280, + [SMALL_STATE(5020)] = 187307, + [SMALL_STATE(5021)] = 187334, + [SMALL_STATE(5022)] = 187361, + [SMALL_STATE(5023)] = 187388, + [SMALL_STATE(5024)] = 187419, + [SMALL_STATE(5025)] = 187446, + [SMALL_STATE(5026)] = 187473, + [SMALL_STATE(5027)] = 187500, + [SMALL_STATE(5028)] = 187531, + [SMALL_STATE(5029)] = 187562, + [SMALL_STATE(5030)] = 187583, + [SMALL_STATE(5031)] = 187614, + [SMALL_STATE(5032)] = 187641, + [SMALL_STATE(5033)] = 187672, + [SMALL_STATE(5034)] = 187699, + [SMALL_STATE(5035)] = 187726, + [SMALL_STATE(5036)] = 187757, + [SMALL_STATE(5037)] = 187788, + [SMALL_STATE(5038)] = 187819, + [SMALL_STATE(5039)] = 187846, + [SMALL_STATE(5040)] = 187877, + [SMALL_STATE(5041)] = 187904, + [SMALL_STATE(5042)] = 187931, + [SMALL_STATE(5043)] = 187958, + [SMALL_STATE(5044)] = 187985, + [SMALL_STATE(5045)] = 188012, + [SMALL_STATE(5046)] = 188039, + [SMALL_STATE(5047)] = 188070, + [SMALL_STATE(5048)] = 188097, + [SMALL_STATE(5049)] = 188124, + [SMALL_STATE(5050)] = 188155, + [SMALL_STATE(5051)] = 188186, + [SMALL_STATE(5052)] = 188217, + [SMALL_STATE(5053)] = 188240, + [SMALL_STATE(5054)] = 188271, + [SMALL_STATE(5055)] = 188302, + [SMALL_STATE(5056)] = 188333, + [SMALL_STATE(5057)] = 188364, + [SMALL_STATE(5058)] = 188391, + [SMALL_STATE(5059)] = 188418, + [SMALL_STATE(5060)] = 188449, + [SMALL_STATE(5061)] = 188480, + [SMALL_STATE(5062)] = 188511, + [SMALL_STATE(5063)] = 188542, + [SMALL_STATE(5064)] = 188573, + [SMALL_STATE(5065)] = 188594, + [SMALL_STATE(5066)] = 188625, + [SMALL_STATE(5067)] = 188656, + [SMALL_STATE(5068)] = 188687, + [SMALL_STATE(5069)] = 188718, + [SMALL_STATE(5070)] = 188749, + [SMALL_STATE(5071)] = 188780, + [SMALL_STATE(5072)] = 188811, + [SMALL_STATE(5073)] = 188842, + [SMALL_STATE(5074)] = 188873, + [SMALL_STATE(5075)] = 188904, + [SMALL_STATE(5076)] = 188935, + [SMALL_STATE(5077)] = 188966, + [SMALL_STATE(5078)] = 188997, + [SMALL_STATE(5079)] = 189028, + [SMALL_STATE(5080)] = 189059, + [SMALL_STATE(5081)] = 189088, + [SMALL_STATE(5082)] = 189119, + [SMALL_STATE(5083)] = 189150, + [SMALL_STATE(5084)] = 189173, + [SMALL_STATE(5085)] = 189204, + [SMALL_STATE(5086)] = 189235, + [SMALL_STATE(5087)] = 189262, + [SMALL_STATE(5088)] = 189289, + [SMALL_STATE(5089)] = 189320, + [SMALL_STATE(5090)] = 189351, + [SMALL_STATE(5091)] = 189382, + [SMALL_STATE(5092)] = 189413, + [SMALL_STATE(5093)] = 189444, + [SMALL_STATE(5094)] = 189475, + [SMALL_STATE(5095)] = 189504, + [SMALL_STATE(5096)] = 189533, + [SMALL_STATE(5097)] = 189564, + [SMALL_STATE(5098)] = 189595, + [SMALL_STATE(5099)] = 189614, + [SMALL_STATE(5100)] = 189645, + [SMALL_STATE(5101)] = 189676, + [SMALL_STATE(5102)] = 189707, + [SMALL_STATE(5103)] = 189726, + [SMALL_STATE(5104)] = 189757, + [SMALL_STATE(5105)] = 189788, + [SMALL_STATE(5106)] = 189819, + [SMALL_STATE(5107)] = 189846, + [SMALL_STATE(5108)] = 189873, + [SMALL_STATE(5109)] = 189892, + [SMALL_STATE(5110)] = 189923, + [SMALL_STATE(5111)] = 189954, + [SMALL_STATE(5112)] = 189977, + [SMALL_STATE(5113)] = 190008, + [SMALL_STATE(5114)] = 190039, + [SMALL_STATE(5115)] = 190066, + [SMALL_STATE(5116)] = 190097, + [SMALL_STATE(5117)] = 190128, + [SMALL_STATE(5118)] = 190147, + [SMALL_STATE(5119)] = 190178, + [SMALL_STATE(5120)] = 190197, + [SMALL_STATE(5121)] = 190216, + [SMALL_STATE(5122)] = 190247, + [SMALL_STATE(5123)] = 190266, + [SMALL_STATE(5124)] = 190297, + [SMALL_STATE(5125)] = 190328, + [SMALL_STATE(5126)] = 190347, + [SMALL_STATE(5127)] = 190366, + [SMALL_STATE(5128)] = 190397, + [SMALL_STATE(5129)] = 190424, + [SMALL_STATE(5130)] = 190451, + [SMALL_STATE(5131)] = 190470, + [SMALL_STATE(5132)] = 190501, + [SMALL_STATE(5133)] = 190532, + [SMALL_STATE(5134)] = 190559, + [SMALL_STATE(5135)] = 190586, + [SMALL_STATE(5136)] = 190617, + [SMALL_STATE(5137)] = 190648, + [SMALL_STATE(5138)] = 190667, + [SMALL_STATE(5139)] = 190686, + [SMALL_STATE(5140)] = 190705, + [SMALL_STATE(5141)] = 190736, + [SMALL_STATE(5142)] = 190763, + [SMALL_STATE(5143)] = 190792, + [SMALL_STATE(5144)] = 190819, + [SMALL_STATE(5145)] = 190846, + [SMALL_STATE(5146)] = 190873, + [SMALL_STATE(5147)] = 190904, + [SMALL_STATE(5148)] = 190931, + [SMALL_STATE(5149)] = 190958, + [SMALL_STATE(5150)] = 190989, + [SMALL_STATE(5151)] = 191016, + [SMALL_STATE(5152)] = 191043, + [SMALL_STATE(5153)] = 191074, + [SMALL_STATE(5154)] = 191101, + [SMALL_STATE(5155)] = 191130, + [SMALL_STATE(5156)] = 191157, + [SMALL_STATE(5157)] = 191188, + [SMALL_STATE(5158)] = 191215, + [SMALL_STATE(5159)] = 191242, + [SMALL_STATE(5160)] = 191273, + [SMALL_STATE(5161)] = 191302, + [SMALL_STATE(5162)] = 191333, + [SMALL_STATE(5163)] = 191360, + [SMALL_STATE(5164)] = 191387, + [SMALL_STATE(5165)] = 191418, + [SMALL_STATE(5166)] = 191445, + [SMALL_STATE(5167)] = 191472, + [SMALL_STATE(5168)] = 191499, + [SMALL_STATE(5169)] = 191526, + [SMALL_STATE(5170)] = 191553, + [SMALL_STATE(5171)] = 191580, + [SMALL_STATE(5172)] = 191599, + [SMALL_STATE(5173)] = 191626, + [SMALL_STATE(5174)] = 191649, + [SMALL_STATE(5175)] = 191670, + [SMALL_STATE(5176)] = 191701, + [SMALL_STATE(5177)] = 191728, + [SMALL_STATE(5178)] = 191755, + [SMALL_STATE(5179)] = 191784, + [SMALL_STATE(5180)] = 191811, + [SMALL_STATE(5181)] = 191838, + [SMALL_STATE(5182)] = 191865, + [SMALL_STATE(5183)] = 191896, + [SMALL_STATE(5184)] = 191923, + [SMALL_STATE(5185)] = 191954, + [SMALL_STATE(5186)] = 191983, + [SMALL_STATE(5187)] = 192012, + [SMALL_STATE(5188)] = 192031, + [SMALL_STATE(5189)] = 192062, + [SMALL_STATE(5190)] = 192089, + [SMALL_STATE(5191)] = 192120, + [SMALL_STATE(5192)] = 192147, + [SMALL_STATE(5193)] = 192168, + [SMALL_STATE(5194)] = 192191, + [SMALL_STATE(5195)] = 192210, + [SMALL_STATE(5196)] = 192241, + [SMALL_STATE(5197)] = 192268, + [SMALL_STATE(5198)] = 192299, + [SMALL_STATE(5199)] = 192322, + [SMALL_STATE(5200)] = 192349, + [SMALL_STATE(5201)] = 192376, + [SMALL_STATE(5202)] = 192403, + [SMALL_STATE(5203)] = 192432, + [SMALL_STATE(5204)] = 192459, + [SMALL_STATE(5205)] = 192488, + [SMALL_STATE(5206)] = 192517, + [SMALL_STATE(5207)] = 192544, + [SMALL_STATE(5208)] = 192571, + [SMALL_STATE(5209)] = 192598, + [SMALL_STATE(5210)] = 192625, + [SMALL_STATE(5211)] = 192644, + [SMALL_STATE(5212)] = 192667, + [SMALL_STATE(5213)] = 192690, + [SMALL_STATE(5214)] = 192719, + [SMALL_STATE(5215)] = 192746, + [SMALL_STATE(5216)] = 192773, + [SMALL_STATE(5217)] = 192792, + [SMALL_STATE(5218)] = 192811, + [SMALL_STATE(5219)] = 192834, + [SMALL_STATE(5220)] = 192857, + [SMALL_STATE(5221)] = 192876, + [SMALL_STATE(5222)] = 192895, + [SMALL_STATE(5223)] = 192926, + [SMALL_STATE(5224)] = 192947, + [SMALL_STATE(5225)] = 192966, + [SMALL_STATE(5226)] = 192993, + [SMALL_STATE(5227)] = 193020, + [SMALL_STATE(5228)] = 193047, + [SMALL_STATE(5229)] = 193074, + [SMALL_STATE(5230)] = 193101, + [SMALL_STATE(5231)] = 193128, + [SMALL_STATE(5232)] = 193155, + [SMALL_STATE(5233)] = 193184, + [SMALL_STATE(5234)] = 193211, + [SMALL_STATE(5235)] = 193236, + [SMALL_STATE(5236)] = 193265, + [SMALL_STATE(5237)] = 193284, + [SMALL_STATE(5238)] = 193307, + [SMALL_STATE(5239)] = 193330, + [SMALL_STATE(5240)] = 193349, + [SMALL_STATE(5241)] = 193372, + [SMALL_STATE(5242)] = 193395, + [SMALL_STATE(5243)] = 193418, + [SMALL_STATE(5244)] = 193445, + [SMALL_STATE(5245)] = 193472, + [SMALL_STATE(5246)] = 193499, + [SMALL_STATE(5247)] = 193522, + [SMALL_STATE(5248)] = 193545, + [SMALL_STATE(5249)] = 193568, + [SMALL_STATE(5250)] = 193595, + [SMALL_STATE(5251)] = 193622, + [SMALL_STATE(5252)] = 193651, + [SMALL_STATE(5253)] = 193672, + [SMALL_STATE(5254)] = 193703, + [SMALL_STATE(5255)] = 193726, + [SMALL_STATE(5256)] = 193755, + [SMALL_STATE(5257)] = 193776, + [SMALL_STATE(5258)] = 193807, + [SMALL_STATE(5259)] = 193834, + [SMALL_STATE(5260)] = 193861, + [SMALL_STATE(5261)] = 193888, + [SMALL_STATE(5262)] = 193915, + [SMALL_STATE(5263)] = 193942, + [SMALL_STATE(5264)] = 193965, + [SMALL_STATE(5265)] = 193996, + [SMALL_STATE(5266)] = 194025, + [SMALL_STATE(5267)] = 194054, + [SMALL_STATE(5268)] = 194085, + [SMALL_STATE(5269)] = 194104, + [SMALL_STATE(5270)] = 194135, + [SMALL_STATE(5271)] = 194154, + [SMALL_STATE(5272)] = 194181, + [SMALL_STATE(5273)] = 194200, + [SMALL_STATE(5274)] = 194221, + [SMALL_STATE(5275)] = 194244, + [SMALL_STATE(5276)] = 194267, + [SMALL_STATE(5277)] = 194294, + [SMALL_STATE(5278)] = 194321, + [SMALL_STATE(5279)] = 194344, + [SMALL_STATE(5280)] = 194367, + [SMALL_STATE(5281)] = 194390, + [SMALL_STATE(5282)] = 194419, + [SMALL_STATE(5283)] = 194442, + [SMALL_STATE(5284)] = 194461, + [SMALL_STATE(5285)] = 194484, + [SMALL_STATE(5286)] = 194513, + [SMALL_STATE(5287)] = 194540, + [SMALL_STATE(5288)] = 194567, + [SMALL_STATE(5289)] = 194594, + [SMALL_STATE(5290)] = 194621, + [SMALL_STATE(5291)] = 194648, + [SMALL_STATE(5292)] = 194677, + [SMALL_STATE(5293)] = 194699, + [SMALL_STATE(5294)] = 194725, + [SMALL_STATE(5295)] = 194745, + [SMALL_STATE(5296)] = 194767, + [SMALL_STATE(5297)] = 194787, + [SMALL_STATE(5298)] = 194807, + [SMALL_STATE(5299)] = 194827, + [SMALL_STATE(5300)] = 194855, + [SMALL_STATE(5301)] = 194883, + [SMALL_STATE(5302)] = 194903, + [SMALL_STATE(5303)] = 194929, + [SMALL_STATE(5304)] = 194951, + [SMALL_STATE(5305)] = 194979, + [SMALL_STATE(5306)] = 195007, + [SMALL_STATE(5307)] = 195029, + [SMALL_STATE(5308)] = 195049, + [SMALL_STATE(5309)] = 195077, + [SMALL_STATE(5310)] = 195095, + [SMALL_STATE(5311)] = 195123, + [SMALL_STATE(5312)] = 195145, + [SMALL_STATE(5313)] = 195165, + [SMALL_STATE(5314)] = 195191, + [SMALL_STATE(5315)] = 195213, + [SMALL_STATE(5316)] = 195233, + [SMALL_STATE(5317)] = 195255, + [SMALL_STATE(5318)] = 195283, + [SMALL_STATE(5319)] = 195311, + [SMALL_STATE(5320)] = 195333, + [SMALL_STATE(5321)] = 195361, + [SMALL_STATE(5322)] = 195389, + [SMALL_STATE(5323)] = 195411, + [SMALL_STATE(5324)] = 195439, + [SMALL_STATE(5325)] = 195461, + [SMALL_STATE(5326)] = 195483, + [SMALL_STATE(5327)] = 195511, + [SMALL_STATE(5328)] = 195539, + [SMALL_STATE(5329)] = 195561, + [SMALL_STATE(5330)] = 195589, + [SMALL_STATE(5331)] = 195613, + [SMALL_STATE(5332)] = 195631, + [SMALL_STATE(5333)] = 195657, + [SMALL_STATE(5334)] = 195679, + [SMALL_STATE(5335)] = 195707, + [SMALL_STATE(5336)] = 195735, + [SMALL_STATE(5337)] = 195763, + [SMALL_STATE(5338)] = 195791, + [SMALL_STATE(5339)] = 195819, + [SMALL_STATE(5340)] = 195847, + [SMALL_STATE(5341)] = 195869, + [SMALL_STATE(5342)] = 195897, + [SMALL_STATE(5343)] = 195923, + [SMALL_STATE(5344)] = 195951, + [SMALL_STATE(5345)] = 195973, + [SMALL_STATE(5346)] = 195999, + [SMALL_STATE(5347)] = 196027, + [SMALL_STATE(5348)] = 196055, + [SMALL_STATE(5349)] = 196083, + [SMALL_STATE(5350)] = 196105, + [SMALL_STATE(5351)] = 196133, + [SMALL_STATE(5352)] = 196155, + [SMALL_STATE(5353)] = 196177, + [SMALL_STATE(5354)] = 196203, + [SMALL_STATE(5355)] = 196231, + [SMALL_STATE(5356)] = 196257, + [SMALL_STATE(5357)] = 196285, + [SMALL_STATE(5358)] = 196311, + [SMALL_STATE(5359)] = 196333, + [SMALL_STATE(5360)] = 196359, + [SMALL_STATE(5361)] = 196387, + [SMALL_STATE(5362)] = 196413, + [SMALL_STATE(5363)] = 196435, + [SMALL_STATE(5364)] = 196457, + [SMALL_STATE(5365)] = 196479, + [SMALL_STATE(5366)] = 196507, + [SMALL_STATE(5367)] = 196535, + [SMALL_STATE(5368)] = 196557, + [SMALL_STATE(5369)] = 196585, + [SMALL_STATE(5370)] = 196613, + [SMALL_STATE(5371)] = 196641, + [SMALL_STATE(5372)] = 196669, + [SMALL_STATE(5373)] = 196691, + [SMALL_STATE(5374)] = 196717, + [SMALL_STATE(5375)] = 196735, + [SMALL_STATE(5376)] = 196753, + [SMALL_STATE(5377)] = 196781, + [SMALL_STATE(5378)] = 196809, + [SMALL_STATE(5379)] = 196835, + [SMALL_STATE(5380)] = 196861, + [SMALL_STATE(5381)] = 196889, + [SMALL_STATE(5382)] = 196917, + [SMALL_STATE(5383)] = 196939, + [SMALL_STATE(5384)] = 196967, + [SMALL_STATE(5385)] = 196995, + [SMALL_STATE(5386)] = 197017, + [SMALL_STATE(5387)] = 197039, + [SMALL_STATE(5388)] = 197063, + [SMALL_STATE(5389)] = 197091, + [SMALL_STATE(5390)] = 197119, + [SMALL_STATE(5391)] = 197147, + [SMALL_STATE(5392)] = 197173, + [SMALL_STATE(5393)] = 197195, + [SMALL_STATE(5394)] = 197223, + [SMALL_STATE(5395)] = 197249, + [SMALL_STATE(5396)] = 197271, + [SMALL_STATE(5397)] = 197293, + [SMALL_STATE(5398)] = 197315, + [SMALL_STATE(5399)] = 197343, + [SMALL_STATE(5400)] = 197369, + [SMALL_STATE(5401)] = 197397, + [SMALL_STATE(5402)] = 197419, + [SMALL_STATE(5403)] = 197447, + [SMALL_STATE(5404)] = 197469, + [SMALL_STATE(5405)] = 197491, + [SMALL_STATE(5406)] = 197519, + [SMALL_STATE(5407)] = 197541, + [SMALL_STATE(5408)] = 197569, + [SMALL_STATE(5409)] = 197591, + [SMALL_STATE(5410)] = 197619, + [SMALL_STATE(5411)] = 197647, + [SMALL_STATE(5412)] = 197675, + [SMALL_STATE(5413)] = 197703, + [SMALL_STATE(5414)] = 197731, + [SMALL_STATE(5415)] = 197759, + [SMALL_STATE(5416)] = 197785, + [SMALL_STATE(5417)] = 197811, + [SMALL_STATE(5418)] = 197837, + [SMALL_STATE(5419)] = 197855, + [SMALL_STATE(5420)] = 197883, + [SMALL_STATE(5421)] = 197911, + [SMALL_STATE(5422)] = 197939, + [SMALL_STATE(5423)] = 197967, + [SMALL_STATE(5424)] = 197995, + [SMALL_STATE(5425)] = 198015, + [SMALL_STATE(5426)] = 198043, + [SMALL_STATE(5427)] = 198065, + [SMALL_STATE(5428)] = 198087, + [SMALL_STATE(5429)] = 198115, + [SMALL_STATE(5430)] = 198137, + [SMALL_STATE(5431)] = 198165, + [SMALL_STATE(5432)] = 198193, + [SMALL_STATE(5433)] = 198221, + [SMALL_STATE(5434)] = 198249, + [SMALL_STATE(5435)] = 198275, + [SMALL_STATE(5436)] = 198301, + [SMALL_STATE(5437)] = 198323, + [SMALL_STATE(5438)] = 198351, + [SMALL_STATE(5439)] = 198377, + [SMALL_STATE(5440)] = 198405, + [SMALL_STATE(5441)] = 198431, + [SMALL_STATE(5442)] = 198453, + [SMALL_STATE(5443)] = 198475, + [SMALL_STATE(5444)] = 198497, + [SMALL_STATE(5445)] = 198525, + [SMALL_STATE(5446)] = 198553, + [SMALL_STATE(5447)] = 198579, + [SMALL_STATE(5448)] = 198607, + [SMALL_STATE(5449)] = 198627, + [SMALL_STATE(5450)] = 198649, + [SMALL_STATE(5451)] = 198671, + [SMALL_STATE(5452)] = 198699, + [SMALL_STATE(5453)] = 198727, + [SMALL_STATE(5454)] = 198749, + [SMALL_STATE(5455)] = 198771, + [SMALL_STATE(5456)] = 198795, + [SMALL_STATE(5457)] = 198821, + [SMALL_STATE(5458)] = 198843, + [SMALL_STATE(5459)] = 198861, + [SMALL_STATE(5460)] = 198889, + [SMALL_STATE(5461)] = 198911, + [SMALL_STATE(5462)] = 198939, + [SMALL_STATE(5463)] = 198957, + [SMALL_STATE(5464)] = 198985, + [SMALL_STATE(5465)] = 199013, + [SMALL_STATE(5466)] = 199033, + [SMALL_STATE(5467)] = 199061, + [SMALL_STATE(5468)] = 199089, + [SMALL_STATE(5469)] = 199117, + [SMALL_STATE(5470)] = 199145, + [SMALL_STATE(5471)] = 199171, + [SMALL_STATE(5472)] = 199193, + [SMALL_STATE(5473)] = 199221, + [SMALL_STATE(5474)] = 199249, + [SMALL_STATE(5475)] = 199277, + [SMALL_STATE(5476)] = 199297, + [SMALL_STATE(5477)] = 199323, + [SMALL_STATE(5478)] = 199345, + [SMALL_STATE(5479)] = 199367, + [SMALL_STATE(5480)] = 199395, + [SMALL_STATE(5481)] = 199417, + [SMALL_STATE(5482)] = 199439, + [SMALL_STATE(5483)] = 199465, + [SMALL_STATE(5484)] = 199493, + [SMALL_STATE(5485)] = 199515, + [SMALL_STATE(5486)] = 199533, + [SMALL_STATE(5487)] = 199561, + [SMALL_STATE(5488)] = 199583, + [SMALL_STATE(5489)] = 199601, + [SMALL_STATE(5490)] = 199629, + [SMALL_STATE(5491)] = 199655, + [SMALL_STATE(5492)] = 199673, + [SMALL_STATE(5493)] = 199691, + [SMALL_STATE(5494)] = 199713, + [SMALL_STATE(5495)] = 199739, + [SMALL_STATE(5496)] = 199767, + [SMALL_STATE(5497)] = 199789, + [SMALL_STATE(5498)] = 199807, + [SMALL_STATE(5499)] = 199835, + [SMALL_STATE(5500)] = 199863, + [SMALL_STATE(5501)] = 199885, + [SMALL_STATE(5502)] = 199913, + [SMALL_STATE(5503)] = 199935, + [SMALL_STATE(5504)] = 199957, + [SMALL_STATE(5505)] = 199979, + [SMALL_STATE(5506)] = 200001, + [SMALL_STATE(5507)] = 200019, + [SMALL_STATE(5508)] = 200045, + [SMALL_STATE(5509)] = 200067, + [SMALL_STATE(5510)] = 200091, + [SMALL_STATE(5511)] = 200113, + [SMALL_STATE(5512)] = 200135, + [SMALL_STATE(5513)] = 200153, + [SMALL_STATE(5514)] = 200175, + [SMALL_STATE(5515)] = 200197, + [SMALL_STATE(5516)] = 200219, + [SMALL_STATE(5517)] = 200245, + [SMALL_STATE(5518)] = 200273, + [SMALL_STATE(5519)] = 200295, + [SMALL_STATE(5520)] = 200317, + [SMALL_STATE(5521)] = 200345, + [SMALL_STATE(5522)] = 200362, + [SMALL_STATE(5523)] = 200387, + [SMALL_STATE(5524)] = 200412, + [SMALL_STATE(5525)] = 200437, + [SMALL_STATE(5526)] = 200454, + [SMALL_STATE(5527)] = 200471, + [SMALL_STATE(5528)] = 200492, + [SMALL_STATE(5529)] = 200509, + [SMALL_STATE(5530)] = 200534, + [SMALL_STATE(5531)] = 200555, + [SMALL_STATE(5532)] = 200576, + [SMALL_STATE(5533)] = 200593, + [SMALL_STATE(5534)] = 200614, + [SMALL_STATE(5535)] = 200639, + [SMALL_STATE(5536)] = 200656, + [SMALL_STATE(5537)] = 200677, + [SMALL_STATE(5538)] = 200702, + [SMALL_STATE(5539)] = 200727, + [SMALL_STATE(5540)] = 200752, + [SMALL_STATE(5541)] = 200777, + [SMALL_STATE(5542)] = 200794, + [SMALL_STATE(5543)] = 200815, + [SMALL_STATE(5544)] = 200832, + [SMALL_STATE(5545)] = 200853, + [SMALL_STATE(5546)] = 200876, + [SMALL_STATE(5547)] = 200901, + [SMALL_STATE(5548)] = 200922, + [SMALL_STATE(5549)] = 200945, + [SMALL_STATE(5550)] = 200962, + [SMALL_STATE(5551)] = 200987, + [SMALL_STATE(5552)] = 201008, + [SMALL_STATE(5553)] = 201033, + [SMALL_STATE(5554)] = 201054, + [SMALL_STATE(5555)] = 201075, + [SMALL_STATE(5556)] = 201096, + [SMALL_STATE(5557)] = 201121, + [SMALL_STATE(5558)] = 201142, + [SMALL_STATE(5559)] = 201159, + [SMALL_STATE(5560)] = 201180, + [SMALL_STATE(5561)] = 201205, + [SMALL_STATE(5562)] = 201228, + [SMALL_STATE(5563)] = 201253, + [SMALL_STATE(5564)] = 201274, + [SMALL_STATE(5565)] = 201291, + [SMALL_STATE(5566)] = 201316, + [SMALL_STATE(5567)] = 201337, + [SMALL_STATE(5568)] = 201358, + [SMALL_STATE(5569)] = 201379, + [SMALL_STATE(5570)] = 201404, + [SMALL_STATE(5571)] = 201425, + [SMALL_STATE(5572)] = 201442, + [SMALL_STATE(5573)] = 201459, + [SMALL_STATE(5574)] = 201480, + [SMALL_STATE(5575)] = 201505, + [SMALL_STATE(5576)] = 201530, + [SMALL_STATE(5577)] = 201555, + [SMALL_STATE(5578)] = 201580, + [SMALL_STATE(5579)] = 201601, + [SMALL_STATE(5580)] = 201622, + [SMALL_STATE(5581)] = 201647, + [SMALL_STATE(5582)] = 201672, + [SMALL_STATE(5583)] = 201693, + [SMALL_STATE(5584)] = 201714, + [SMALL_STATE(5585)] = 201739, + [SMALL_STATE(5586)] = 201760, + [SMALL_STATE(5587)] = 201781, + [SMALL_STATE(5588)] = 201802, + [SMALL_STATE(5589)] = 201827, + [SMALL_STATE(5590)] = 201844, + [SMALL_STATE(5591)] = 201869, + [SMALL_STATE(5592)] = 201894, + [SMALL_STATE(5593)] = 201919, + [SMALL_STATE(5594)] = 201936, + [SMALL_STATE(5595)] = 201957, + [SMALL_STATE(5596)] = 201982, + [SMALL_STATE(5597)] = 201999, + [SMALL_STATE(5598)] = 202024, + [SMALL_STATE(5599)] = 202047, + [SMALL_STATE(5600)] = 202072, + [SMALL_STATE(5601)] = 202089, + [SMALL_STATE(5602)] = 202106, + [SMALL_STATE(5603)] = 202127, + [SMALL_STATE(5604)] = 202148, + [SMALL_STATE(5605)] = 202169, + [SMALL_STATE(5606)] = 202186, + [SMALL_STATE(5607)] = 202207, + [SMALL_STATE(5608)] = 202224, + [SMALL_STATE(5609)] = 202247, + [SMALL_STATE(5610)] = 202264, + [SMALL_STATE(5611)] = 202285, + [SMALL_STATE(5612)] = 202302, + [SMALL_STATE(5613)] = 202325, + [SMALL_STATE(5614)] = 202346, + [SMALL_STATE(5615)] = 202371, + [SMALL_STATE(5616)] = 202392, + [SMALL_STATE(5617)] = 202417, + [SMALL_STATE(5618)] = 202438, + [SMALL_STATE(5619)] = 202463, + [SMALL_STATE(5620)] = 202488, + [SMALL_STATE(5621)] = 202509, + [SMALL_STATE(5622)] = 202530, + [SMALL_STATE(5623)] = 202555, + [SMALL_STATE(5624)] = 202572, + [SMALL_STATE(5625)] = 202593, + [SMALL_STATE(5626)] = 202616, + [SMALL_STATE(5627)] = 202637, + [SMALL_STATE(5628)] = 202662, + [SMALL_STATE(5629)] = 202687, + [SMALL_STATE(5630)] = 202708, + [SMALL_STATE(5631)] = 202733, + [SMALL_STATE(5632)] = 202754, + [SMALL_STATE(5633)] = 202771, + [SMALL_STATE(5634)] = 202796, + [SMALL_STATE(5635)] = 202821, + [SMALL_STATE(5636)] = 202846, + [SMALL_STATE(5637)] = 202863, + [SMALL_STATE(5638)] = 202888, + [SMALL_STATE(5639)] = 202905, + [SMALL_STATE(5640)] = 202930, + [SMALL_STATE(5641)] = 202951, + [SMALL_STATE(5642)] = 202968, + [SMALL_STATE(5643)] = 202985, + [SMALL_STATE(5644)] = 203010, + [SMALL_STATE(5645)] = 203027, + [SMALL_STATE(5646)] = 203048, + [SMALL_STATE(5647)] = 203069, + [SMALL_STATE(5648)] = 203086, + [SMALL_STATE(5649)] = 203103, + [SMALL_STATE(5650)] = 203120, + [SMALL_STATE(5651)] = 203137, + [SMALL_STATE(5652)] = 203154, + [SMALL_STATE(5653)] = 203179, + [SMALL_STATE(5654)] = 203196, + [SMALL_STATE(5655)] = 203221, + [SMALL_STATE(5656)] = 203238, + [SMALL_STATE(5657)] = 203259, + [SMALL_STATE(5658)] = 203284, + [SMALL_STATE(5659)] = 203305, + [SMALL_STATE(5660)] = 203330, + [SMALL_STATE(5661)] = 203355, + [SMALL_STATE(5662)] = 203372, + [SMALL_STATE(5663)] = 203397, + [SMALL_STATE(5664)] = 203418, + [SMALL_STATE(5665)] = 203439, + [SMALL_STATE(5666)] = 203462, + [SMALL_STATE(5667)] = 203479, + [SMALL_STATE(5668)] = 203504, + [SMALL_STATE(5669)] = 203529, + [SMALL_STATE(5670)] = 203550, + [SMALL_STATE(5671)] = 203573, + [SMALL_STATE(5672)] = 203594, + [SMALL_STATE(5673)] = 203619, + [SMALL_STATE(5674)] = 203642, + [SMALL_STATE(5675)] = 203667, + [SMALL_STATE(5676)] = 203692, + [SMALL_STATE(5677)] = 203713, + [SMALL_STATE(5678)] = 203734, + [SMALL_STATE(5679)] = 203759, + [SMALL_STATE(5680)] = 203784, + [SMALL_STATE(5681)] = 203803, + [SMALL_STATE(5682)] = 203828, + [SMALL_STATE(5683)] = 203851, + [SMALL_STATE(5684)] = 203876, + [SMALL_STATE(5685)] = 203901, + [SMALL_STATE(5686)] = 203926, + [SMALL_STATE(5687)] = 203951, + [SMALL_STATE(5688)] = 203972, + [SMALL_STATE(5689)] = 203993, + [SMALL_STATE(5690)] = 204014, + [SMALL_STATE(5691)] = 204039, + [SMALL_STATE(5692)] = 204062, + [SMALL_STATE(5693)] = 204087, + [SMALL_STATE(5694)] = 204112, + [SMALL_STATE(5695)] = 204137, + [SMALL_STATE(5696)] = 204158, + [SMALL_STATE(5697)] = 204175, + [SMALL_STATE(5698)] = 204192, + [SMALL_STATE(5699)] = 204213, + [SMALL_STATE(5700)] = 204238, + [SMALL_STATE(5701)] = 204263, + [SMALL_STATE(5702)] = 204288, + [SMALL_STATE(5703)] = 204309, + [SMALL_STATE(5704)] = 204334, + [SMALL_STATE(5705)] = 204355, + [SMALL_STATE(5706)] = 204372, + [SMALL_STATE(5707)] = 204397, + [SMALL_STATE(5708)] = 204418, + [SMALL_STATE(5709)] = 204443, + [SMALL_STATE(5710)] = 204468, + [SMALL_STATE(5711)] = 204485, + [SMALL_STATE(5712)] = 204510, + [SMALL_STATE(5713)] = 204535, + [SMALL_STATE(5714)] = 204556, + [SMALL_STATE(5715)] = 204573, + [SMALL_STATE(5716)] = 204590, + [SMALL_STATE(5717)] = 204615, + [SMALL_STATE(5718)] = 204636, + [SMALL_STATE(5719)] = 204657, + [SMALL_STATE(5720)] = 204682, + [SMALL_STATE(5721)] = 204699, + [SMALL_STATE(5722)] = 204724, + [SMALL_STATE(5723)] = 204741, + [SMALL_STATE(5724)] = 204766, + [SMALL_STATE(5725)] = 204791, + [SMALL_STATE(5726)] = 204816, + [SMALL_STATE(5727)] = 204837, + [SMALL_STATE(5728)] = 204862, + [SMALL_STATE(5729)] = 204887, + [SMALL_STATE(5730)] = 204904, + [SMALL_STATE(5731)] = 204929, + [SMALL_STATE(5732)] = 204946, + [SMALL_STATE(5733)] = 204971, + [SMALL_STATE(5734)] = 204996, + [SMALL_STATE(5735)] = 205013, + [SMALL_STATE(5736)] = 205038, + [SMALL_STATE(5737)] = 205055, + [SMALL_STATE(5738)] = 205076, + [SMALL_STATE(5739)] = 205101, + [SMALL_STATE(5740)] = 205118, + [SMALL_STATE(5741)] = 205135, + [SMALL_STATE(5742)] = 205152, + [SMALL_STATE(5743)] = 205173, + [SMALL_STATE(5744)] = 205194, + [SMALL_STATE(5745)] = 205215, + [SMALL_STATE(5746)] = 205232, + [SMALL_STATE(5747)] = 205253, + [SMALL_STATE(5748)] = 205270, + [SMALL_STATE(5749)] = 205287, + [SMALL_STATE(5750)] = 205304, + [SMALL_STATE(5751)] = 205327, + [SMALL_STATE(5752)] = 205348, + [SMALL_STATE(5753)] = 205371, + [SMALL_STATE(5754)] = 205396, + [SMALL_STATE(5755)] = 205413, + [SMALL_STATE(5756)] = 205438, + [SMALL_STATE(5757)] = 205463, + [SMALL_STATE(5758)] = 205484, + [SMALL_STATE(5759)] = 205509, + [SMALL_STATE(5760)] = 205530, + [SMALL_STATE(5761)] = 205547, + [SMALL_STATE(5762)] = 205568, + [SMALL_STATE(5763)] = 205593, + [SMALL_STATE(5764)] = 205614, + [SMALL_STATE(5765)] = 205637, + [SMALL_STATE(5766)] = 205654, + [SMALL_STATE(5767)] = 205679, + [SMALL_STATE(5768)] = 205704, + [SMALL_STATE(5769)] = 205721, + [SMALL_STATE(5770)] = 205746, + [SMALL_STATE(5771)] = 205769, + [SMALL_STATE(5772)] = 205790, + [SMALL_STATE(5773)] = 205811, + [SMALL_STATE(5774)] = 205834, + [SMALL_STATE(5775)] = 205859, + [SMALL_STATE(5776)] = 205884, + [SMALL_STATE(5777)] = 205905, + [SMALL_STATE(5778)] = 205922, + [SMALL_STATE(5779)] = 205947, + [SMALL_STATE(5780)] = 205968, + [SMALL_STATE(5781)] = 205993, + [SMALL_STATE(5782)] = 206018, + [SMALL_STATE(5783)] = 206035, + [SMALL_STATE(5784)] = 206060, + [SMALL_STATE(5785)] = 206081, + [SMALL_STATE(5786)] = 206102, + [SMALL_STATE(5787)] = 206127, + [SMALL_STATE(5788)] = 206152, + [SMALL_STATE(5789)] = 206175, + [SMALL_STATE(5790)] = 206200, + [SMALL_STATE(5791)] = 206221, + [SMALL_STATE(5792)] = 206242, + [SMALL_STATE(5793)] = 206267, + [SMALL_STATE(5794)] = 206288, + [SMALL_STATE(5795)] = 206313, + [SMALL_STATE(5796)] = 206338, + [SMALL_STATE(5797)] = 206359, + [SMALL_STATE(5798)] = 206376, + [SMALL_STATE(5799)] = 206401, + [SMALL_STATE(5800)] = 206426, + [SMALL_STATE(5801)] = 206451, + [SMALL_STATE(5802)] = 206476, + [SMALL_STATE(5803)] = 206493, + [SMALL_STATE(5804)] = 206514, + [SMALL_STATE(5805)] = 206535, + [SMALL_STATE(5806)] = 206556, + [SMALL_STATE(5807)] = 206577, + [SMALL_STATE(5808)] = 206594, + [SMALL_STATE(5809)] = 206615, + [SMALL_STATE(5810)] = 206636, + [SMALL_STATE(5811)] = 206657, + [SMALL_STATE(5812)] = 206680, + [SMALL_STATE(5813)] = 206697, + [SMALL_STATE(5814)] = 206714, + [SMALL_STATE(5815)] = 206739, + [SMALL_STATE(5816)] = 206764, + [SMALL_STATE(5817)] = 206781, + [SMALL_STATE(5818)] = 206804, + [SMALL_STATE(5819)] = 206827, + [SMALL_STATE(5820)] = 206848, + [SMALL_STATE(5821)] = 206873, + [SMALL_STATE(5822)] = 206896, + [SMALL_STATE(5823)] = 206913, + [SMALL_STATE(5824)] = 206936, + [SMALL_STATE(5825)] = 206953, + [SMALL_STATE(5826)] = 206970, + [SMALL_STATE(5827)] = 206987, + [SMALL_STATE(5828)] = 207008, + [SMALL_STATE(5829)] = 207025, + [SMALL_STATE(5830)] = 207046, + [SMALL_STATE(5831)] = 207071, + [SMALL_STATE(5832)] = 207096, + [SMALL_STATE(5833)] = 207117, + [SMALL_STATE(5834)] = 207140, + [SMALL_STATE(5835)] = 207165, + [SMALL_STATE(5836)] = 207190, + [SMALL_STATE(5837)] = 207213, + [SMALL_STATE(5838)] = 207230, + [SMALL_STATE(5839)] = 207247, + [SMALL_STATE(5840)] = 207264, + [SMALL_STATE(5841)] = 207281, + [SMALL_STATE(5842)] = 207306, + [SMALL_STATE(5843)] = 207323, + [SMALL_STATE(5844)] = 207344, + [SMALL_STATE(5845)] = 207365, + [SMALL_STATE(5846)] = 207386, + [SMALL_STATE(5847)] = 207407, + [SMALL_STATE(5848)] = 207428, + [SMALL_STATE(5849)] = 207453, + [SMALL_STATE(5850)] = 207476, + [SMALL_STATE(5851)] = 207497, + [SMALL_STATE(5852)] = 207520, + [SMALL_STATE(5853)] = 207543, + [SMALL_STATE(5854)] = 207564, + [SMALL_STATE(5855)] = 207589, + [SMALL_STATE(5856)] = 207614, + [SMALL_STATE(5857)] = 207639, + [SMALL_STATE(5858)] = 207664, + [SMALL_STATE(5859)] = 207689, + [SMALL_STATE(5860)] = 207714, + [SMALL_STATE(5861)] = 207735, + [SMALL_STATE(5862)] = 207760, + [SMALL_STATE(5863)] = 207785, + [SMALL_STATE(5864)] = 207810, + [SMALL_STATE(5865)] = 207833, + [SMALL_STATE(5866)] = 207858, + [SMALL_STATE(5867)] = 207879, + [SMALL_STATE(5868)] = 207904, + [SMALL_STATE(5869)] = 207929, + [SMALL_STATE(5870)] = 207946, + [SMALL_STATE(5871)] = 207967, + [SMALL_STATE(5872)] = 207992, + [SMALL_STATE(5873)] = 208009, + [SMALL_STATE(5874)] = 208034, + [SMALL_STATE(5875)] = 208055, + [SMALL_STATE(5876)] = 208080, + [SMALL_STATE(5877)] = 208101, + [SMALL_STATE(5878)] = 208118, + [SMALL_STATE(5879)] = 208143, + [SMALL_STATE(5880)] = 208164, + [SMALL_STATE(5881)] = 208185, + [SMALL_STATE(5882)] = 208206, + [SMALL_STATE(5883)] = 208231, + [SMALL_STATE(5884)] = 208256, + [SMALL_STATE(5885)] = 208281, + [SMALL_STATE(5886)] = 208304, + [SMALL_STATE(5887)] = 208329, + [SMALL_STATE(5888)] = 208350, + [SMALL_STATE(5889)] = 208375, + [SMALL_STATE(5890)] = 208392, + [SMALL_STATE(5891)] = 208417, + [SMALL_STATE(5892)] = 208438, + [SMALL_STATE(5893)] = 208463, + [SMALL_STATE(5894)] = 208480, + [SMALL_STATE(5895)] = 208497, + [SMALL_STATE(5896)] = 208514, + [SMALL_STATE(5897)] = 208535, + [SMALL_STATE(5898)] = 208556, + [SMALL_STATE(5899)] = 208577, + [SMALL_STATE(5900)] = 208594, + [SMALL_STATE(5901)] = 208611, + [SMALL_STATE(5902)] = 208628, + [SMALL_STATE(5903)] = 208645, + [SMALL_STATE(5904)] = 208662, + [SMALL_STATE(5905)] = 208685, + [SMALL_STATE(5906)] = 208702, + [SMALL_STATE(5907)] = 208719, + [SMALL_STATE(5908)] = 208740, + [SMALL_STATE(5909)] = 208757, + [SMALL_STATE(5910)] = 208774, + [SMALL_STATE(5911)] = 208799, + [SMALL_STATE(5912)] = 208816, + [SMALL_STATE(5913)] = 208833, + [SMALL_STATE(5914)] = 208854, + [SMALL_STATE(5915)] = 208875, + [SMALL_STATE(5916)] = 208896, + [SMALL_STATE(5917)] = 208917, + [SMALL_STATE(5918)] = 208942, + [SMALL_STATE(5919)] = 208959, + [SMALL_STATE(5920)] = 208976, + [SMALL_STATE(5921)] = 208997, + [SMALL_STATE(5922)] = 209018, + [SMALL_STATE(5923)] = 209035, + [SMALL_STATE(5924)] = 209052, + [SMALL_STATE(5925)] = 209073, + [SMALL_STATE(5926)] = 209094, + [SMALL_STATE(5927)] = 209111, + [SMALL_STATE(5928)] = 209132, + [SMALL_STATE(5929)] = 209157, + [SMALL_STATE(5930)] = 209178, + [SMALL_STATE(5931)] = 209199, + [SMALL_STATE(5932)] = 209224, + [SMALL_STATE(5933)] = 209245, + [SMALL_STATE(5934)] = 209262, + [SMALL_STATE(5935)] = 209283, + [SMALL_STATE(5936)] = 209300, + [SMALL_STATE(5937)] = 209325, + [SMALL_STATE(5938)] = 209350, + [SMALL_STATE(5939)] = 209375, + [SMALL_STATE(5940)] = 209400, + [SMALL_STATE(5941)] = 209417, + [SMALL_STATE(5942)] = 209438, + [SMALL_STATE(5943)] = 209463, + [SMALL_STATE(5944)] = 209484, + [SMALL_STATE(5945)] = 209509, + [SMALL_STATE(5946)] = 209526, + [SMALL_STATE(5947)] = 209543, + [SMALL_STATE(5948)] = 209568, + [SMALL_STATE(5949)] = 209589, + [SMALL_STATE(5950)] = 209606, + [SMALL_STATE(5951)] = 209631, + [SMALL_STATE(5952)] = 209648, + [SMALL_STATE(5953)] = 209669, + [SMALL_STATE(5954)] = 209694, + [SMALL_STATE(5955)] = 209719, + [SMALL_STATE(5956)] = 209740, + [SMALL_STATE(5957)] = 209761, + [SMALL_STATE(5958)] = 209786, + [SMALL_STATE(5959)] = 209805, + [SMALL_STATE(5960)] = 209830, + [SMALL_STATE(5961)] = 209849, + [SMALL_STATE(5962)] = 209868, + [SMALL_STATE(5963)] = 209889, + [SMALL_STATE(5964)] = 209908, + [SMALL_STATE(5965)] = 209929, + [SMALL_STATE(5966)] = 209946, + [SMALL_STATE(5967)] = 209967, + [SMALL_STATE(5968)] = 209992, + [SMALL_STATE(5969)] = 210009, + [SMALL_STATE(5970)] = 210034, + [SMALL_STATE(5971)] = 210055, + [SMALL_STATE(5972)] = 210072, + [SMALL_STATE(5973)] = 210093, + [SMALL_STATE(5974)] = 210110, + [SMALL_STATE(5975)] = 210135, + [SMALL_STATE(5976)] = 210152, + [SMALL_STATE(5977)] = 210169, + [SMALL_STATE(5978)] = 210186, + [SMALL_STATE(5979)] = 210203, + [SMALL_STATE(5980)] = 210220, + [SMALL_STATE(5981)] = 210245, + [SMALL_STATE(5982)] = 210262, + [SMALL_STATE(5983)] = 210283, + [SMALL_STATE(5984)] = 210304, + [SMALL_STATE(5985)] = 210329, + [SMALL_STATE(5986)] = 210350, + [SMALL_STATE(5987)] = 210375, + [SMALL_STATE(5988)] = 210396, + [SMALL_STATE(5989)] = 210417, + [SMALL_STATE(5990)] = 210438, + [SMALL_STATE(5991)] = 210457, + [SMALL_STATE(5992)] = 210478, + [SMALL_STATE(5993)] = 210499, + [SMALL_STATE(5994)] = 210520, + [SMALL_STATE(5995)] = 210541, + [SMALL_STATE(5996)] = 210562, + [SMALL_STATE(5997)] = 210583, + [SMALL_STATE(5998)] = 210600, + [SMALL_STATE(5999)] = 210623, + [SMALL_STATE(6000)] = 210644, + [SMALL_STATE(6001)] = 210669, + [SMALL_STATE(6002)] = 210686, + [SMALL_STATE(6003)] = 210703, + [SMALL_STATE(6004)] = 210728, + [SMALL_STATE(6005)] = 210749, + [SMALL_STATE(6006)] = 210770, + [SMALL_STATE(6007)] = 210791, + [SMALL_STATE(6008)] = 210812, + [SMALL_STATE(6009)] = 210833, + [SMALL_STATE(6010)] = 210854, + [SMALL_STATE(6011)] = 210871, + [SMALL_STATE(6012)] = 210892, + [SMALL_STATE(6013)] = 210917, + [SMALL_STATE(6014)] = 210934, + [SMALL_STATE(6015)] = 210951, + [SMALL_STATE(6016)] = 210972, + [SMALL_STATE(6017)] = 210989, + [SMALL_STATE(6018)] = 211014, + [SMALL_STATE(6019)] = 211039, + [SMALL_STATE(6020)] = 211056, + [SMALL_STATE(6021)] = 211077, + [SMALL_STATE(6022)] = 211094, + [SMALL_STATE(6023)] = 211115, + [SMALL_STATE(6024)] = 211132, + [SMALL_STATE(6025)] = 211153, + [SMALL_STATE(6026)] = 211178, + [SMALL_STATE(6027)] = 211195, + [SMALL_STATE(6028)] = 211216, + [SMALL_STATE(6029)] = 211237, + [SMALL_STATE(6030)] = 211254, + [SMALL_STATE(6031)] = 211271, + [SMALL_STATE(6032)] = 211294, + [SMALL_STATE(6033)] = 211311, + [SMALL_STATE(6034)] = 211332, + [SMALL_STATE(6035)] = 211349, + [SMALL_STATE(6036)] = 211370, + [SMALL_STATE(6037)] = 211387, + [SMALL_STATE(6038)] = 211410, + [SMALL_STATE(6039)] = 211435, + [SMALL_STATE(6040)] = 211460, + [SMALL_STATE(6041)] = 211481, + [SMALL_STATE(6042)] = 211498, + [SMALL_STATE(6043)] = 211519, + [SMALL_STATE(6044)] = 211536, + [SMALL_STATE(6045)] = 211557, + [SMALL_STATE(6046)] = 211582, + [SMALL_STATE(6047)] = 211607, + [SMALL_STATE(6048)] = 211628, + [SMALL_STATE(6049)] = 211653, + [SMALL_STATE(6050)] = 211676, + [SMALL_STATE(6051)] = 211697, + [SMALL_STATE(6052)] = 211722, + [SMALL_STATE(6053)] = 211747, + [SMALL_STATE(6054)] = 211764, + [SMALL_STATE(6055)] = 211781, + [SMALL_STATE(6056)] = 211806, + [SMALL_STATE(6057)] = 211827, + [SMALL_STATE(6058)] = 211844, + [SMALL_STATE(6059)] = 211861, + [SMALL_STATE(6060)] = 211882, + [SMALL_STATE(6061)] = 211903, + [SMALL_STATE(6062)] = 211924, + [SMALL_STATE(6063)] = 211949, + [SMALL_STATE(6064)] = 211974, + [SMALL_STATE(6065)] = 211995, + [SMALL_STATE(6066)] = 212020, + [SMALL_STATE(6067)] = 212041, + [SMALL_STATE(6068)] = 212062, + [SMALL_STATE(6069)] = 212083, + [SMALL_STATE(6070)] = 212104, + [SMALL_STATE(6071)] = 212129, + [SMALL_STATE(6072)] = 212146, + [SMALL_STATE(6073)] = 212171, + [SMALL_STATE(6074)] = 212192, + [SMALL_STATE(6075)] = 212217, + [SMALL_STATE(6076)] = 212238, + [SMALL_STATE(6077)] = 212259, + [SMALL_STATE(6078)] = 212276, + [SMALL_STATE(6079)] = 212297, + [SMALL_STATE(6080)] = 212318, + [SMALL_STATE(6081)] = 212339, + [SMALL_STATE(6082)] = 212356, + [SMALL_STATE(6083)] = 212377, + [SMALL_STATE(6084)] = 212402, + [SMALL_STATE(6085)] = 212427, + [SMALL_STATE(6086)] = 212448, + [SMALL_STATE(6087)] = 212465, + [SMALL_STATE(6088)] = 212490, + [SMALL_STATE(6089)] = 212511, + [SMALL_STATE(6090)] = 212536, + [SMALL_STATE(6091)] = 212561, + [SMALL_STATE(6092)] = 212578, + [SMALL_STATE(6093)] = 212598, + [SMALL_STATE(6094)] = 212618, + [SMALL_STATE(6095)] = 212638, + [SMALL_STATE(6096)] = 212658, + [SMALL_STATE(6097)] = 212678, + [SMALL_STATE(6098)] = 212698, + [SMALL_STATE(6099)] = 212718, + [SMALL_STATE(6100)] = 212740, + [SMALL_STATE(6101)] = 212762, + [SMALL_STATE(6102)] = 212784, + [SMALL_STATE(6103)] = 212800, + [SMALL_STATE(6104)] = 212816, + [SMALL_STATE(6105)] = 212832, + [SMALL_STATE(6106)] = 212854, + [SMALL_STATE(6107)] = 212872, + [SMALL_STATE(6108)] = 212892, + [SMALL_STATE(6109)] = 212912, + [SMALL_STATE(6110)] = 212928, + [SMALL_STATE(6111)] = 212950, + [SMALL_STATE(6112)] = 212970, + [SMALL_STATE(6113)] = 212990, + [SMALL_STATE(6114)] = 213010, + [SMALL_STATE(6115)] = 213028, + [SMALL_STATE(6116)] = 213046, + [SMALL_STATE(6117)] = 213066, + [SMALL_STATE(6118)] = 213088, + [SMALL_STATE(6119)] = 213110, + [SMALL_STATE(6120)] = 213132, + [SMALL_STATE(6121)] = 213148, + [SMALL_STATE(6122)] = 213170, + [SMALL_STATE(6123)] = 213192, + [SMALL_STATE(6124)] = 213214, + [SMALL_STATE(6125)] = 213236, + [SMALL_STATE(6126)] = 213258, + [SMALL_STATE(6127)] = 213278, + [SMALL_STATE(6128)] = 213300, + [SMALL_STATE(6129)] = 213322, + [SMALL_STATE(6130)] = 213344, + [SMALL_STATE(6131)] = 213364, + [SMALL_STATE(6132)] = 213386, + [SMALL_STATE(6133)] = 213408, + [SMALL_STATE(6134)] = 213430, + [SMALL_STATE(6135)] = 213452, + [SMALL_STATE(6136)] = 213474, + [SMALL_STATE(6137)] = 213496, + [SMALL_STATE(6138)] = 213512, + [SMALL_STATE(6139)] = 213528, + [SMALL_STATE(6140)] = 213548, + [SMALL_STATE(6141)] = 213568, + [SMALL_STATE(6142)] = 213590, + [SMALL_STATE(6143)] = 213612, + [SMALL_STATE(6144)] = 213632, + [SMALL_STATE(6145)] = 213650, + [SMALL_STATE(6146)] = 213670, + [SMALL_STATE(6147)] = 213690, + [SMALL_STATE(6148)] = 213710, + [SMALL_STATE(6149)] = 213730, + [SMALL_STATE(6150)] = 213750, + [SMALL_STATE(6151)] = 213770, + [SMALL_STATE(6152)] = 213790, + [SMALL_STATE(6153)] = 213810, + [SMALL_STATE(6154)] = 213832, + [SMALL_STATE(6155)] = 213850, + [SMALL_STATE(6156)] = 213872, + [SMALL_STATE(6157)] = 213892, + [SMALL_STATE(6158)] = 213914, + [SMALL_STATE(6159)] = 213934, + [SMALL_STATE(6160)] = 213952, + [SMALL_STATE(6161)] = 213974, + [SMALL_STATE(6162)] = 213994, + [SMALL_STATE(6163)] = 214014, + [SMALL_STATE(6164)] = 214034, + [SMALL_STATE(6165)] = 214054, + [SMALL_STATE(6166)] = 214076, + [SMALL_STATE(6167)] = 214094, + [SMALL_STATE(6168)] = 214112, + [SMALL_STATE(6169)] = 214134, + [SMALL_STATE(6170)] = 214156, + [SMALL_STATE(6171)] = 214176, + [SMALL_STATE(6172)] = 214194, + [SMALL_STATE(6173)] = 214210, + [SMALL_STATE(6174)] = 214232, + [SMALL_STATE(6175)] = 214252, + [SMALL_STATE(6176)] = 214272, + [SMALL_STATE(6177)] = 214292, + [SMALL_STATE(6178)] = 214312, + [SMALL_STATE(6179)] = 214332, + [SMALL_STATE(6180)] = 214354, + [SMALL_STATE(6181)] = 214376, + [SMALL_STATE(6182)] = 214396, + [SMALL_STATE(6183)] = 214416, + [SMALL_STATE(6184)] = 214436, + [SMALL_STATE(6185)] = 214456, + [SMALL_STATE(6186)] = 214476, + [SMALL_STATE(6187)] = 214496, + [SMALL_STATE(6188)] = 214516, + [SMALL_STATE(6189)] = 214536, + [SMALL_STATE(6190)] = 214558, + [SMALL_STATE(6191)] = 214578, + [SMALL_STATE(6192)] = 214598, + [SMALL_STATE(6193)] = 214620, + [SMALL_STATE(6194)] = 214640, + [SMALL_STATE(6195)] = 214660, + [SMALL_STATE(6196)] = 214680, + [SMALL_STATE(6197)] = 214700, + [SMALL_STATE(6198)] = 214720, + [SMALL_STATE(6199)] = 214740, + [SMALL_STATE(6200)] = 214760, + [SMALL_STATE(6201)] = 214780, + [SMALL_STATE(6202)] = 214800, + [SMALL_STATE(6203)] = 214820, + [SMALL_STATE(6204)] = 214842, + [SMALL_STATE(6205)] = 214858, + [SMALL_STATE(6206)] = 214874, + [SMALL_STATE(6207)] = 214894, + [SMALL_STATE(6208)] = 214914, + [SMALL_STATE(6209)] = 214934, + [SMALL_STATE(6210)] = 214954, + [SMALL_STATE(6211)] = 214974, + [SMALL_STATE(6212)] = 214996, + [SMALL_STATE(6213)] = 215018, + [SMALL_STATE(6214)] = 215038, + [SMALL_STATE(6215)] = 215058, + [SMALL_STATE(6216)] = 215078, + [SMALL_STATE(6217)] = 215098, + [SMALL_STATE(6218)] = 215120, + [SMALL_STATE(6219)] = 215140, + [SMALL_STATE(6220)] = 215160, + [SMALL_STATE(6221)] = 215180, + [SMALL_STATE(6222)] = 215196, + [SMALL_STATE(6223)] = 215218, + [SMALL_STATE(6224)] = 215238, + [SMALL_STATE(6225)] = 215256, + [SMALL_STATE(6226)] = 215276, + [SMALL_STATE(6227)] = 215296, + [SMALL_STATE(6228)] = 215316, + [SMALL_STATE(6229)] = 215336, + [SMALL_STATE(6230)] = 215356, + [SMALL_STATE(6231)] = 215376, + [SMALL_STATE(6232)] = 215396, + [SMALL_STATE(6233)] = 215416, + [SMALL_STATE(6234)] = 215436, + [SMALL_STATE(6235)] = 215456, + [SMALL_STATE(6236)] = 215476, + [SMALL_STATE(6237)] = 215496, + [SMALL_STATE(6238)] = 215516, + [SMALL_STATE(6239)] = 215536, + [SMALL_STATE(6240)] = 215556, + [SMALL_STATE(6241)] = 215576, + [SMALL_STATE(6242)] = 215598, + [SMALL_STATE(6243)] = 215618, + [SMALL_STATE(6244)] = 215640, + [SMALL_STATE(6245)] = 215660, + [SMALL_STATE(6246)] = 215680, + [SMALL_STATE(6247)] = 215702, + [SMALL_STATE(6248)] = 215724, + [SMALL_STATE(6249)] = 215746, + [SMALL_STATE(6250)] = 215768, + [SMALL_STATE(6251)] = 215788, + [SMALL_STATE(6252)] = 215810, + [SMALL_STATE(6253)] = 215830, + [SMALL_STATE(6254)] = 215850, + [SMALL_STATE(6255)] = 215872, + [SMALL_STATE(6256)] = 215892, + [SMALL_STATE(6257)] = 215914, + [SMALL_STATE(6258)] = 215934, + [SMALL_STATE(6259)] = 215954, + [SMALL_STATE(6260)] = 215974, + [SMALL_STATE(6261)] = 215994, + [SMALL_STATE(6262)] = 216014, + [SMALL_STATE(6263)] = 216036, + [SMALL_STATE(6264)] = 216052, + [SMALL_STATE(6265)] = 216074, + [SMALL_STATE(6266)] = 216094, + [SMALL_STATE(6267)] = 216116, + [SMALL_STATE(6268)] = 216138, + [SMALL_STATE(6269)] = 216158, + [SMALL_STATE(6270)] = 216178, + [SMALL_STATE(6271)] = 216198, + [SMALL_STATE(6272)] = 216218, + [SMALL_STATE(6273)] = 216238, + [SMALL_STATE(6274)] = 216260, + [SMALL_STATE(6275)] = 216282, + [SMALL_STATE(6276)] = 216302, + [SMALL_STATE(6277)] = 216322, + [SMALL_STATE(6278)] = 216342, + [SMALL_STATE(6279)] = 216362, + [SMALL_STATE(6280)] = 216382, + [SMALL_STATE(6281)] = 216404, + [SMALL_STATE(6282)] = 216424, + [SMALL_STATE(6283)] = 216444, + [SMALL_STATE(6284)] = 216466, + [SMALL_STATE(6285)] = 216486, + [SMALL_STATE(6286)] = 216506, + [SMALL_STATE(6287)] = 216526, + [SMALL_STATE(6288)] = 216548, + [SMALL_STATE(6289)] = 216568, + [SMALL_STATE(6290)] = 216588, + [SMALL_STATE(6291)] = 216608, + [SMALL_STATE(6292)] = 216628, + [SMALL_STATE(6293)] = 216648, + [SMALL_STATE(6294)] = 216668, + [SMALL_STATE(6295)] = 216690, + [SMALL_STATE(6296)] = 216712, + [SMALL_STATE(6297)] = 216732, + [SMALL_STATE(6298)] = 216752, + [SMALL_STATE(6299)] = 216772, + [SMALL_STATE(6300)] = 216792, + [SMALL_STATE(6301)] = 216812, + [SMALL_STATE(6302)] = 216832, + [SMALL_STATE(6303)] = 216852, + [SMALL_STATE(6304)] = 216872, + [SMALL_STATE(6305)] = 216894, + [SMALL_STATE(6306)] = 216916, + [SMALL_STATE(6307)] = 216938, + [SMALL_STATE(6308)] = 216960, + [SMALL_STATE(6309)] = 216980, + [SMALL_STATE(6310)] = 217002, + [SMALL_STATE(6311)] = 217022, + [SMALL_STATE(6312)] = 217044, + [SMALL_STATE(6313)] = 217066, + [SMALL_STATE(6314)] = 217088, + [SMALL_STATE(6315)] = 217110, + [SMALL_STATE(6316)] = 217130, + [SMALL_STATE(6317)] = 217152, + [SMALL_STATE(6318)] = 217172, + [SMALL_STATE(6319)] = 217192, + [SMALL_STATE(6320)] = 217212, + [SMALL_STATE(6321)] = 217232, + [SMALL_STATE(6322)] = 217252, + [SMALL_STATE(6323)] = 217270, + [SMALL_STATE(6324)] = 217292, + [SMALL_STATE(6325)] = 217310, + [SMALL_STATE(6326)] = 217332, + [SMALL_STATE(6327)] = 217350, + [SMALL_STATE(6328)] = 217370, + [SMALL_STATE(6329)] = 217390, + [SMALL_STATE(6330)] = 217410, + [SMALL_STATE(6331)] = 217430, + [SMALL_STATE(6332)] = 217450, + [SMALL_STATE(6333)] = 217472, + [SMALL_STATE(6334)] = 217494, + [SMALL_STATE(6335)] = 217514, + [SMALL_STATE(6336)] = 217536, + [SMALL_STATE(6337)] = 217552, + [SMALL_STATE(6338)] = 217572, + [SMALL_STATE(6339)] = 217592, + [SMALL_STATE(6340)] = 217612, + [SMALL_STATE(6341)] = 217632, + [SMALL_STATE(6342)] = 217652, + [SMALL_STATE(6343)] = 217668, + [SMALL_STATE(6344)] = 217690, + [SMALL_STATE(6345)] = 217712, + [SMALL_STATE(6346)] = 217734, + [SMALL_STATE(6347)] = 217756, + [SMALL_STATE(6348)] = 217776, + [SMALL_STATE(6349)] = 217796, + [SMALL_STATE(6350)] = 217818, + [SMALL_STATE(6351)] = 217838, + [SMALL_STATE(6352)] = 217858, + [SMALL_STATE(6353)] = 217878, + [SMALL_STATE(6354)] = 217900, + [SMALL_STATE(6355)] = 217920, + [SMALL_STATE(6356)] = 217942, + [SMALL_STATE(6357)] = 217962, + [SMALL_STATE(6358)] = 217982, + [SMALL_STATE(6359)] = 218002, + [SMALL_STATE(6360)] = 218024, + [SMALL_STATE(6361)] = 218044, + [SMALL_STATE(6362)] = 218064, + [SMALL_STATE(6363)] = 218080, + [SMALL_STATE(6364)] = 218102, + [SMALL_STATE(6365)] = 218124, + [SMALL_STATE(6366)] = 218144, + [SMALL_STATE(6367)] = 218164, + [SMALL_STATE(6368)] = 218184, + [SMALL_STATE(6369)] = 218206, + [SMALL_STATE(6370)] = 218228, + [SMALL_STATE(6371)] = 218248, + [SMALL_STATE(6372)] = 218268, + [SMALL_STATE(6373)] = 218288, + [SMALL_STATE(6374)] = 218308, + [SMALL_STATE(6375)] = 218327, + [SMALL_STATE(6376)] = 218346, + [SMALL_STATE(6377)] = 218361, + [SMALL_STATE(6378)] = 218376, + [SMALL_STATE(6379)] = 218391, + [SMALL_STATE(6380)] = 218406, + [SMALL_STATE(6381)] = 218421, + [SMALL_STATE(6382)] = 218436, + [SMALL_STATE(6383)] = 218451, + [SMALL_STATE(6384)] = 218470, + [SMALL_STATE(6385)] = 218489, + [SMALL_STATE(6386)] = 218508, + [SMALL_STATE(6387)] = 218527, + [SMALL_STATE(6388)] = 218542, + [SMALL_STATE(6389)] = 218561, + [SMALL_STATE(6390)] = 218576, + [SMALL_STATE(6391)] = 218591, + [SMALL_STATE(6392)] = 218606, + [SMALL_STATE(6393)] = 218625, + [SMALL_STATE(6394)] = 218640, + [SMALL_STATE(6395)] = 218655, + [SMALL_STATE(6396)] = 218670, + [SMALL_STATE(6397)] = 218685, + [SMALL_STATE(6398)] = 218700, + [SMALL_STATE(6399)] = 218715, + [SMALL_STATE(6400)] = 218730, + [SMALL_STATE(6401)] = 218745, + [SMALL_STATE(6402)] = 218760, + [SMALL_STATE(6403)] = 218775, + [SMALL_STATE(6404)] = 218790, + [SMALL_STATE(6405)] = 218805, + [SMALL_STATE(6406)] = 218820, + [SMALL_STATE(6407)] = 218835, + [SMALL_STATE(6408)] = 218850, + [SMALL_STATE(6409)] = 218865, + [SMALL_STATE(6410)] = 218884, + [SMALL_STATE(6411)] = 218899, + [SMALL_STATE(6412)] = 218918, + [SMALL_STATE(6413)] = 218933, + [SMALL_STATE(6414)] = 218952, + [SMALL_STATE(6415)] = 218967, + [SMALL_STATE(6416)] = 218982, + [SMALL_STATE(6417)] = 218997, + [SMALL_STATE(6418)] = 219012, + [SMALL_STATE(6419)] = 219027, + [SMALL_STATE(6420)] = 219042, + [SMALL_STATE(6421)] = 219057, + [SMALL_STATE(6422)] = 219072, + [SMALL_STATE(6423)] = 219087, + [SMALL_STATE(6424)] = 219104, + [SMALL_STATE(6425)] = 219123, + [SMALL_STATE(6426)] = 219138, + [SMALL_STATE(6427)] = 219153, + [SMALL_STATE(6428)] = 219168, + [SMALL_STATE(6429)] = 219183, + [SMALL_STATE(6430)] = 219198, + [SMALL_STATE(6431)] = 219213, + [SMALL_STATE(6432)] = 219228, + [SMALL_STATE(6433)] = 219243, + [SMALL_STATE(6434)] = 219258, + [SMALL_STATE(6435)] = 219273, + [SMALL_STATE(6436)] = 219290, + [SMALL_STATE(6437)] = 219305, + [SMALL_STATE(6438)] = 219320, + [SMALL_STATE(6439)] = 219335, + [SMALL_STATE(6440)] = 219350, + [SMALL_STATE(6441)] = 219365, + [SMALL_STATE(6442)] = 219380, + [SMALL_STATE(6443)] = 219395, + [SMALL_STATE(6444)] = 219410, + [SMALL_STATE(6445)] = 219425, + [SMALL_STATE(6446)] = 219440, + [SMALL_STATE(6447)] = 219457, + [SMALL_STATE(6448)] = 219476, + [SMALL_STATE(6449)] = 219491, + [SMALL_STATE(6450)] = 219506, + [SMALL_STATE(6451)] = 219521, + [SMALL_STATE(6452)] = 219536, + [SMALL_STATE(6453)] = 219551, + [SMALL_STATE(6454)] = 219566, + [SMALL_STATE(6455)] = 219581, + [SMALL_STATE(6456)] = 219596, + [SMALL_STATE(6457)] = 219615, + [SMALL_STATE(6458)] = 219630, + [SMALL_STATE(6459)] = 219645, + [SMALL_STATE(6460)] = 219660, + [SMALL_STATE(6461)] = 219679, + [SMALL_STATE(6462)] = 219696, + [SMALL_STATE(6463)] = 219715, + [SMALL_STATE(6464)] = 219730, + [SMALL_STATE(6465)] = 219745, + [SMALL_STATE(6466)] = 219762, + [SMALL_STATE(6467)] = 219777, + [SMALL_STATE(6468)] = 219794, + [SMALL_STATE(6469)] = 219813, + [SMALL_STATE(6470)] = 219828, + [SMALL_STATE(6471)] = 219845, + [SMALL_STATE(6472)] = 219864, + [SMALL_STATE(6473)] = 219879, + [SMALL_STATE(6474)] = 219894, + [SMALL_STATE(6475)] = 219913, + [SMALL_STATE(6476)] = 219928, + [SMALL_STATE(6477)] = 219947, + [SMALL_STATE(6478)] = 219966, + [SMALL_STATE(6479)] = 219985, + [SMALL_STATE(6480)] = 220000, + [SMALL_STATE(6481)] = 220019, + [SMALL_STATE(6482)] = 220034, + [SMALL_STATE(6483)] = 220049, + [SMALL_STATE(6484)] = 220066, + [SMALL_STATE(6485)] = 220085, + [SMALL_STATE(6486)] = 220104, + [SMALL_STATE(6487)] = 220123, + [SMALL_STATE(6488)] = 220142, + [SMALL_STATE(6489)] = 220157, + [SMALL_STATE(6490)] = 220172, + [SMALL_STATE(6491)] = 220187, + [SMALL_STATE(6492)] = 220204, + [SMALL_STATE(6493)] = 220219, + [SMALL_STATE(6494)] = 220234, + [SMALL_STATE(6495)] = 220249, + [SMALL_STATE(6496)] = 220264, + [SMALL_STATE(6497)] = 220279, + [SMALL_STATE(6498)] = 220294, + [SMALL_STATE(6499)] = 220309, + [SMALL_STATE(6500)] = 220324, + [SMALL_STATE(6501)] = 220339, + [SMALL_STATE(6502)] = 220354, + [SMALL_STATE(6503)] = 220371, + [SMALL_STATE(6504)] = 220390, + [SMALL_STATE(6505)] = 220405, + [SMALL_STATE(6506)] = 220420, + [SMALL_STATE(6507)] = 220435, + [SMALL_STATE(6508)] = 220450, + [SMALL_STATE(6509)] = 220465, + [SMALL_STATE(6510)] = 220482, + [SMALL_STATE(6511)] = 220501, + [SMALL_STATE(6512)] = 220516, + [SMALL_STATE(6513)] = 220535, + [SMALL_STATE(6514)] = 220550, + [SMALL_STATE(6515)] = 220565, + [SMALL_STATE(6516)] = 220580, + [SMALL_STATE(6517)] = 220595, + [SMALL_STATE(6518)] = 220614, + [SMALL_STATE(6519)] = 220631, + [SMALL_STATE(6520)] = 220646, + [SMALL_STATE(6521)] = 220661, + [SMALL_STATE(6522)] = 220678, + [SMALL_STATE(6523)] = 220693, + [SMALL_STATE(6524)] = 220708, + [SMALL_STATE(6525)] = 220725, + [SMALL_STATE(6526)] = 220742, + [SMALL_STATE(6527)] = 220761, + [SMALL_STATE(6528)] = 220776, + [SMALL_STATE(6529)] = 220791, + [SMALL_STATE(6530)] = 220808, + [SMALL_STATE(6531)] = 220823, + [SMALL_STATE(6532)] = 220838, + [SMALL_STATE(6533)] = 220857, + [SMALL_STATE(6534)] = 220876, + [SMALL_STATE(6535)] = 220891, + [SMALL_STATE(6536)] = 220906, + [SMALL_STATE(6537)] = 220921, + [SMALL_STATE(6538)] = 220936, + [SMALL_STATE(6539)] = 220955, + [SMALL_STATE(6540)] = 220970, + [SMALL_STATE(6541)] = 220989, + [SMALL_STATE(6542)] = 221004, + [SMALL_STATE(6543)] = 221019, + [SMALL_STATE(6544)] = 221034, + [SMALL_STATE(6545)] = 221053, + [SMALL_STATE(6546)] = 221068, + [SMALL_STATE(6547)] = 221083, + [SMALL_STATE(6548)] = 221098, + [SMALL_STATE(6549)] = 221113, + [SMALL_STATE(6550)] = 221128, + [SMALL_STATE(6551)] = 221143, + [SMALL_STATE(6552)] = 221158, + [SMALL_STATE(6553)] = 221173, + [SMALL_STATE(6554)] = 221190, + [SMALL_STATE(6555)] = 221207, + [SMALL_STATE(6556)] = 221222, + [SMALL_STATE(6557)] = 221237, + [SMALL_STATE(6558)] = 221252, + [SMALL_STATE(6559)] = 221271, + [SMALL_STATE(6560)] = 221290, + [SMALL_STATE(6561)] = 221305, + [SMALL_STATE(6562)] = 221320, + [SMALL_STATE(6563)] = 221339, + [SMALL_STATE(6564)] = 221354, + [SMALL_STATE(6565)] = 221373, + [SMALL_STATE(6566)] = 221388, + [SMALL_STATE(6567)] = 221403, + [SMALL_STATE(6568)] = 221420, + [SMALL_STATE(6569)] = 221435, + [SMALL_STATE(6570)] = 221452, + [SMALL_STATE(6571)] = 221469, + [SMALL_STATE(6572)] = 221488, + [SMALL_STATE(6573)] = 221503, + [SMALL_STATE(6574)] = 221518, + [SMALL_STATE(6575)] = 221533, + [SMALL_STATE(6576)] = 221548, + [SMALL_STATE(6577)] = 221563, + [SMALL_STATE(6578)] = 221582, + [SMALL_STATE(6579)] = 221597, + [SMALL_STATE(6580)] = 221612, + [SMALL_STATE(6581)] = 221627, + [SMALL_STATE(6582)] = 221642, + [SMALL_STATE(6583)] = 221657, + [SMALL_STATE(6584)] = 221672, + [SMALL_STATE(6585)] = 221689, + [SMALL_STATE(6586)] = 221708, + [SMALL_STATE(6587)] = 221727, + [SMALL_STATE(6588)] = 221744, + [SMALL_STATE(6589)] = 221759, + [SMALL_STATE(6590)] = 221778, + [SMALL_STATE(6591)] = 221795, + [SMALL_STATE(6592)] = 221810, + [SMALL_STATE(6593)] = 221825, + [SMALL_STATE(6594)] = 221844, + [SMALL_STATE(6595)] = 221859, + [SMALL_STATE(6596)] = 221878, + [SMALL_STATE(6597)] = 221893, + [SMALL_STATE(6598)] = 221908, + [SMALL_STATE(6599)] = 221927, + [SMALL_STATE(6600)] = 221942, + [SMALL_STATE(6601)] = 221957, + [SMALL_STATE(6602)] = 221972, + [SMALL_STATE(6603)] = 221991, + [SMALL_STATE(6604)] = 222006, + [SMALL_STATE(6605)] = 222021, + [SMALL_STATE(6606)] = 222036, + [SMALL_STATE(6607)] = 222055, + [SMALL_STATE(6608)] = 222074, + [SMALL_STATE(6609)] = 222089, + [SMALL_STATE(6610)] = 222104, + [SMALL_STATE(6611)] = 222119, + [SMALL_STATE(6612)] = 222134, + [SMALL_STATE(6613)] = 222153, + [SMALL_STATE(6614)] = 222168, + [SMALL_STATE(6615)] = 222183, + [SMALL_STATE(6616)] = 222198, + [SMALL_STATE(6617)] = 222217, + [SMALL_STATE(6618)] = 222232, + [SMALL_STATE(6619)] = 222249, + [SMALL_STATE(6620)] = 222264, + [SMALL_STATE(6621)] = 222283, + [SMALL_STATE(6622)] = 222298, + [SMALL_STATE(6623)] = 222313, + [SMALL_STATE(6624)] = 222330, + [SMALL_STATE(6625)] = 222347, + [SMALL_STATE(6626)] = 222364, + [SMALL_STATE(6627)] = 222379, + [SMALL_STATE(6628)] = 222394, + [SMALL_STATE(6629)] = 222411, + [SMALL_STATE(6630)] = 222426, + [SMALL_STATE(6631)] = 222441, + [SMALL_STATE(6632)] = 222456, + [SMALL_STATE(6633)] = 222473, + [SMALL_STATE(6634)] = 222488, + [SMALL_STATE(6635)] = 222507, + [SMALL_STATE(6636)] = 222522, + [SMALL_STATE(6637)] = 222539, + [SMALL_STATE(6638)] = 222554, + [SMALL_STATE(6639)] = 222569, + [SMALL_STATE(6640)] = 222586, + [SMALL_STATE(6641)] = 222601, + [SMALL_STATE(6642)] = 222616, + [SMALL_STATE(6643)] = 222631, + [SMALL_STATE(6644)] = 222650, + [SMALL_STATE(6645)] = 222665, + [SMALL_STATE(6646)] = 222680, + [SMALL_STATE(6647)] = 222695, + [SMALL_STATE(6648)] = 222710, + [SMALL_STATE(6649)] = 222725, + [SMALL_STATE(6650)] = 222740, + [SMALL_STATE(6651)] = 222759, + [SMALL_STATE(6652)] = 222778, + [SMALL_STATE(6653)] = 222793, + [SMALL_STATE(6654)] = 222808, + [SMALL_STATE(6655)] = 222823, + [SMALL_STATE(6656)] = 222838, + [SMALL_STATE(6657)] = 222853, + [SMALL_STATE(6658)] = 222872, + [SMALL_STATE(6659)] = 222887, + [SMALL_STATE(6660)] = 222906, + [SMALL_STATE(6661)] = 222921, + [SMALL_STATE(6662)] = 222940, + [SMALL_STATE(6663)] = 222955, + [SMALL_STATE(6664)] = 222972, + [SMALL_STATE(6665)] = 222987, + [SMALL_STATE(6666)] = 223006, + [SMALL_STATE(6667)] = 223021, + [SMALL_STATE(6668)] = 223040, + [SMALL_STATE(6669)] = 223055, + [SMALL_STATE(6670)] = 223070, + [SMALL_STATE(6671)] = 223085, + [SMALL_STATE(6672)] = 223100, + [SMALL_STATE(6673)] = 223115, + [SMALL_STATE(6674)] = 223134, + [SMALL_STATE(6675)] = 223153, + [SMALL_STATE(6676)] = 223172, + [SMALL_STATE(6677)] = 223191, + [SMALL_STATE(6678)] = 223206, + [SMALL_STATE(6679)] = 223221, + [SMALL_STATE(6680)] = 223236, + [SMALL_STATE(6681)] = 223251, + [SMALL_STATE(6682)] = 223270, + [SMALL_STATE(6683)] = 223285, + [SMALL_STATE(6684)] = 223300, + [SMALL_STATE(6685)] = 223315, + [SMALL_STATE(6686)] = 223330, + [SMALL_STATE(6687)] = 223345, + [SMALL_STATE(6688)] = 223364, + [SMALL_STATE(6689)] = 223379, + [SMALL_STATE(6690)] = 223396, + [SMALL_STATE(6691)] = 223411, + [SMALL_STATE(6692)] = 223426, + [SMALL_STATE(6693)] = 223441, + [SMALL_STATE(6694)] = 223458, + [SMALL_STATE(6695)] = 223473, + [SMALL_STATE(6696)] = 223488, + [SMALL_STATE(6697)] = 223503, + [SMALL_STATE(6698)] = 223522, + [SMALL_STATE(6699)] = 223537, + [SMALL_STATE(6700)] = 223556, + [SMALL_STATE(6701)] = 223571, + [SMALL_STATE(6702)] = 223586, + [SMALL_STATE(6703)] = 223605, + [SMALL_STATE(6704)] = 223620, + [SMALL_STATE(6705)] = 223635, + [SMALL_STATE(6706)] = 223650, + [SMALL_STATE(6707)] = 223669, + [SMALL_STATE(6708)] = 223688, + [SMALL_STATE(6709)] = 223703, + [SMALL_STATE(6710)] = 223718, + [SMALL_STATE(6711)] = 223733, + [SMALL_STATE(6712)] = 223748, + [SMALL_STATE(6713)] = 223763, + [SMALL_STATE(6714)] = 223782, + [SMALL_STATE(6715)] = 223801, + [SMALL_STATE(6716)] = 223816, + [SMALL_STATE(6717)] = 223831, + [SMALL_STATE(6718)] = 223846, + [SMALL_STATE(6719)] = 223865, + [SMALL_STATE(6720)] = 223880, + [SMALL_STATE(6721)] = 223897, + [SMALL_STATE(6722)] = 223912, + [SMALL_STATE(6723)] = 223931, + [SMALL_STATE(6724)] = 223950, + [SMALL_STATE(6725)] = 223965, + [SMALL_STATE(6726)] = 223980, + [SMALL_STATE(6727)] = 223995, + [SMALL_STATE(6728)] = 224010, + [SMALL_STATE(6729)] = 224025, + [SMALL_STATE(6730)] = 224044, + [SMALL_STATE(6731)] = 224059, + [SMALL_STATE(6732)] = 224078, + [SMALL_STATE(6733)] = 224095, + [SMALL_STATE(6734)] = 224114, + [SMALL_STATE(6735)] = 224131, + [SMALL_STATE(6736)] = 224150, + [SMALL_STATE(6737)] = 224167, + [SMALL_STATE(6738)] = 224182, + [SMALL_STATE(6739)] = 224199, + [SMALL_STATE(6740)] = 224214, + [SMALL_STATE(6741)] = 224229, + [SMALL_STATE(6742)] = 224244, + [SMALL_STATE(6743)] = 224259, + [SMALL_STATE(6744)] = 224274, + [SMALL_STATE(6745)] = 224293, + [SMALL_STATE(6746)] = 224312, + [SMALL_STATE(6747)] = 224331, + [SMALL_STATE(6748)] = 224350, + [SMALL_STATE(6749)] = 224369, + [SMALL_STATE(6750)] = 224384, + [SMALL_STATE(6751)] = 224399, + [SMALL_STATE(6752)] = 224414, + [SMALL_STATE(6753)] = 224429, + [SMALL_STATE(6754)] = 224448, + [SMALL_STATE(6755)] = 224463, + [SMALL_STATE(6756)] = 224478, + [SMALL_STATE(6757)] = 224497, + [SMALL_STATE(6758)] = 224516, + [SMALL_STATE(6759)] = 224531, + [SMALL_STATE(6760)] = 224546, + [SMALL_STATE(6761)] = 224565, + [SMALL_STATE(6762)] = 224580, + [SMALL_STATE(6763)] = 224599, + [SMALL_STATE(6764)] = 224614, + [SMALL_STATE(6765)] = 224633, + [SMALL_STATE(6766)] = 224652, + [SMALL_STATE(6767)] = 224671, + [SMALL_STATE(6768)] = 224690, + [SMALL_STATE(6769)] = 224709, + [SMALL_STATE(6770)] = 224728, + [SMALL_STATE(6771)] = 224747, + [SMALL_STATE(6772)] = 224766, + [SMALL_STATE(6773)] = 224783, + [SMALL_STATE(6774)] = 224802, + [SMALL_STATE(6775)] = 224817, + [SMALL_STATE(6776)] = 224832, + [SMALL_STATE(6777)] = 224847, + [SMALL_STATE(6778)] = 224862, + [SMALL_STATE(6779)] = 224877, + [SMALL_STATE(6780)] = 224896, + [SMALL_STATE(6781)] = 224911, + [SMALL_STATE(6782)] = 224926, + [SMALL_STATE(6783)] = 224941, + [SMALL_STATE(6784)] = 224956, + [SMALL_STATE(6785)] = 224971, + [SMALL_STATE(6786)] = 224990, + [SMALL_STATE(6787)] = 225005, + [SMALL_STATE(6788)] = 225020, + [SMALL_STATE(6789)] = 225039, + [SMALL_STATE(6790)] = 225054, + [SMALL_STATE(6791)] = 225071, + [SMALL_STATE(6792)] = 225090, + [SMALL_STATE(6793)] = 225109, + [SMALL_STATE(6794)] = 225126, + [SMALL_STATE(6795)] = 225145, + [SMALL_STATE(6796)] = 225164, + [SMALL_STATE(6797)] = 225183, + [SMALL_STATE(6798)] = 225198, + [SMALL_STATE(6799)] = 225217, + [SMALL_STATE(6800)] = 225232, + [SMALL_STATE(6801)] = 225247, + [SMALL_STATE(6802)] = 225262, + [SMALL_STATE(6803)] = 225277, + [SMALL_STATE(6804)] = 225294, + [SMALL_STATE(6805)] = 225311, + [SMALL_STATE(6806)] = 225326, + [SMALL_STATE(6807)] = 225343, + [SMALL_STATE(6808)] = 225362, + [SMALL_STATE(6809)] = 225381, + [SMALL_STATE(6810)] = 225398, + [SMALL_STATE(6811)] = 225417, + [SMALL_STATE(6812)] = 225434, + [SMALL_STATE(6813)] = 225453, + [SMALL_STATE(6814)] = 225472, + [SMALL_STATE(6815)] = 225491, + [SMALL_STATE(6816)] = 225510, + [SMALL_STATE(6817)] = 225527, + [SMALL_STATE(6818)] = 225542, + [SMALL_STATE(6819)] = 225557, + [SMALL_STATE(6820)] = 225572, + [SMALL_STATE(6821)] = 225591, + [SMALL_STATE(6822)] = 225606, + [SMALL_STATE(6823)] = 225623, + [SMALL_STATE(6824)] = 225642, + [SMALL_STATE(6825)] = 225657, + [SMALL_STATE(6826)] = 225676, + [SMALL_STATE(6827)] = 225691, + [SMALL_STATE(6828)] = 225708, + [SMALL_STATE(6829)] = 225727, + [SMALL_STATE(6830)] = 225746, + [SMALL_STATE(6831)] = 225765, + [SMALL_STATE(6832)] = 225784, + [SMALL_STATE(6833)] = 225799, + [SMALL_STATE(6834)] = 225814, + [SMALL_STATE(6835)] = 225829, + [SMALL_STATE(6836)] = 225844, + [SMALL_STATE(6837)] = 225859, + [SMALL_STATE(6838)] = 225878, + [SMALL_STATE(6839)] = 225893, + [SMALL_STATE(6840)] = 225912, + [SMALL_STATE(6841)] = 225929, + [SMALL_STATE(6842)] = 225946, + [SMALL_STATE(6843)] = 225961, + [SMALL_STATE(6844)] = 225978, + [SMALL_STATE(6845)] = 225995, + [SMALL_STATE(6846)] = 226014, + [SMALL_STATE(6847)] = 226031, + [SMALL_STATE(6848)] = 226046, + [SMALL_STATE(6849)] = 226061, + [SMALL_STATE(6850)] = 226076, + [SMALL_STATE(6851)] = 226091, + [SMALL_STATE(6852)] = 226110, + [SMALL_STATE(6853)] = 226129, + [SMALL_STATE(6854)] = 226148, + [SMALL_STATE(6855)] = 226167, + [SMALL_STATE(6856)] = 226186, + [SMALL_STATE(6857)] = 226203, + [SMALL_STATE(6858)] = 226222, + [SMALL_STATE(6859)] = 226237, + [SMALL_STATE(6860)] = 226254, + [SMALL_STATE(6861)] = 226269, + [SMALL_STATE(6862)] = 226284, + [SMALL_STATE(6863)] = 226301, + [SMALL_STATE(6864)] = 226320, + [SMALL_STATE(6865)] = 226339, + [SMALL_STATE(6866)] = 226354, + [SMALL_STATE(6867)] = 226371, + [SMALL_STATE(6868)] = 226390, + [SMALL_STATE(6869)] = 226409, + [SMALL_STATE(6870)] = 226424, + [SMALL_STATE(6871)] = 226439, + [SMALL_STATE(6872)] = 226454, + [SMALL_STATE(6873)] = 226473, + [SMALL_STATE(6874)] = 226490, + [SMALL_STATE(6875)] = 226507, + [SMALL_STATE(6876)] = 226524, + [SMALL_STATE(6877)] = 226541, + [SMALL_STATE(6878)] = 226558, + [SMALL_STATE(6879)] = 226573, + [SMALL_STATE(6880)] = 226590, + [SMALL_STATE(6881)] = 226605, + [SMALL_STATE(6882)] = 226620, + [SMALL_STATE(6883)] = 226639, + [SMALL_STATE(6884)] = 226658, + [SMALL_STATE(6885)] = 226673, + [SMALL_STATE(6886)] = 226692, + [SMALL_STATE(6887)] = 226711, + [SMALL_STATE(6888)] = 226730, + [SMALL_STATE(6889)] = 226745, + [SMALL_STATE(6890)] = 226764, + [SMALL_STATE(6891)] = 226783, + [SMALL_STATE(6892)] = 226798, + [SMALL_STATE(6893)] = 226817, + [SMALL_STATE(6894)] = 226832, + [SMALL_STATE(6895)] = 226851, + [SMALL_STATE(6896)] = 226870, + [SMALL_STATE(6897)] = 226885, + [SMALL_STATE(6898)] = 226904, + [SMALL_STATE(6899)] = 226923, + [SMALL_STATE(6900)] = 226942, + [SMALL_STATE(6901)] = 226961, + [SMALL_STATE(6902)] = 226980, + [SMALL_STATE(6903)] = 226999, + [SMALL_STATE(6904)] = 227014, + [SMALL_STATE(6905)] = 227033, + [SMALL_STATE(6906)] = 227050, + [SMALL_STATE(6907)] = 227069, + [SMALL_STATE(6908)] = 227084, + [SMALL_STATE(6909)] = 227099, + [SMALL_STATE(6910)] = 227114, + [SMALL_STATE(6911)] = 227133, + [SMALL_STATE(6912)] = 227148, + [SMALL_STATE(6913)] = 227163, + [SMALL_STATE(6914)] = 227182, + [SMALL_STATE(6915)] = 227201, + [SMALL_STATE(6916)] = 227220, + [SMALL_STATE(6917)] = 227235, + [SMALL_STATE(6918)] = 227254, + [SMALL_STATE(6919)] = 227269, + [SMALL_STATE(6920)] = 227284, + [SMALL_STATE(6921)] = 227299, + [SMALL_STATE(6922)] = 227314, + [SMALL_STATE(6923)] = 227329, + [SMALL_STATE(6924)] = 227344, + [SMALL_STATE(6925)] = 227359, + [SMALL_STATE(6926)] = 227374, + [SMALL_STATE(6927)] = 227389, + [SMALL_STATE(6928)] = 227408, + [SMALL_STATE(6929)] = 227427, + [SMALL_STATE(6930)] = 227442, + [SMALL_STATE(6931)] = 227461, + [SMALL_STATE(6932)] = 227478, + [SMALL_STATE(6933)] = 227493, + [SMALL_STATE(6934)] = 227508, + [SMALL_STATE(6935)] = 227523, + [SMALL_STATE(6936)] = 227538, + [SMALL_STATE(6937)] = 227557, + [SMALL_STATE(6938)] = 227572, + [SMALL_STATE(6939)] = 227587, + [SMALL_STATE(6940)] = 227606, + [SMALL_STATE(6941)] = 227625, + [SMALL_STATE(6942)] = 227644, + [SMALL_STATE(6943)] = 227663, + [SMALL_STATE(6944)] = 227680, + [SMALL_STATE(6945)] = 227695, + [SMALL_STATE(6946)] = 227710, + [SMALL_STATE(6947)] = 227725, + [SMALL_STATE(6948)] = 227740, + [SMALL_STATE(6949)] = 227755, + [SMALL_STATE(6950)] = 227774, + [SMALL_STATE(6951)] = 227793, + [SMALL_STATE(6952)] = 227808, + [SMALL_STATE(6953)] = 227823, + [SMALL_STATE(6954)] = 227838, + [SMALL_STATE(6955)] = 227857, + [SMALL_STATE(6956)] = 227872, + [SMALL_STATE(6957)] = 227891, + [SMALL_STATE(6958)] = 227910, + [SMALL_STATE(6959)] = 227927, + [SMALL_STATE(6960)] = 227944, + [SMALL_STATE(6961)] = 227959, + [SMALL_STATE(6962)] = 227974, + [SMALL_STATE(6963)] = 227989, + [SMALL_STATE(6964)] = 228008, + [SMALL_STATE(6965)] = 228027, + [SMALL_STATE(6966)] = 228046, + [SMALL_STATE(6967)] = 228063, + [SMALL_STATE(6968)] = 228082, + [SMALL_STATE(6969)] = 228097, + [SMALL_STATE(6970)] = 228116, + [SMALL_STATE(6971)] = 228131, + [SMALL_STATE(6972)] = 228146, + [SMALL_STATE(6973)] = 228161, + [SMALL_STATE(6974)] = 228176, + [SMALL_STATE(6975)] = 228191, + [SMALL_STATE(6976)] = 228206, + [SMALL_STATE(6977)] = 228225, + [SMALL_STATE(6978)] = 228240, + [SMALL_STATE(6979)] = 228255, + [SMALL_STATE(6980)] = 228272, + [SMALL_STATE(6981)] = 228287, + [SMALL_STATE(6982)] = 228306, + [SMALL_STATE(6983)] = 228323, + [SMALL_STATE(6984)] = 228338, + [SMALL_STATE(6985)] = 228353, + [SMALL_STATE(6986)] = 228370, + [SMALL_STATE(6987)] = 228387, + [SMALL_STATE(6988)] = 228406, + [SMALL_STATE(6989)] = 228421, + [SMALL_STATE(6990)] = 228440, + [SMALL_STATE(6991)] = 228459, + [SMALL_STATE(6992)] = 228478, + [SMALL_STATE(6993)] = 228497, + [SMALL_STATE(6994)] = 228512, + [SMALL_STATE(6995)] = 228531, + [SMALL_STATE(6996)] = 228550, + [SMALL_STATE(6997)] = 228569, + [SMALL_STATE(6998)] = 228588, + [SMALL_STATE(6999)] = 228607, + [SMALL_STATE(7000)] = 228626, + [SMALL_STATE(7001)] = 228645, + [SMALL_STATE(7002)] = 228664, + [SMALL_STATE(7003)] = 228679, + [SMALL_STATE(7004)] = 228694, + [SMALL_STATE(7005)] = 228713, + [SMALL_STATE(7006)] = 228728, + [SMALL_STATE(7007)] = 228743, + [SMALL_STATE(7008)] = 228762, + [SMALL_STATE(7009)] = 228777, + [SMALL_STATE(7010)] = 228792, + [SMALL_STATE(7011)] = 228807, + [SMALL_STATE(7012)] = 228822, + [SMALL_STATE(7013)] = 228841, + [SMALL_STATE(7014)] = 228860, + [SMALL_STATE(7015)] = 228877, + [SMALL_STATE(7016)] = 228894, + [SMALL_STATE(7017)] = 228911, + [SMALL_STATE(7018)] = 228928, + [SMALL_STATE(7019)] = 228947, + [SMALL_STATE(7020)] = 228962, + [SMALL_STATE(7021)] = 228977, + [SMALL_STATE(7022)] = 228996, + [SMALL_STATE(7023)] = 229011, + [SMALL_STATE(7024)] = 229030, + [SMALL_STATE(7025)] = 229045, + [SMALL_STATE(7026)] = 229064, + [SMALL_STATE(7027)] = 229083, + [SMALL_STATE(7028)] = 229102, + [SMALL_STATE(7029)] = 229117, + [SMALL_STATE(7030)] = 229132, + [SMALL_STATE(7031)] = 229151, + [SMALL_STATE(7032)] = 229166, + [SMALL_STATE(7033)] = 229185, + [SMALL_STATE(7034)] = 229200, + [SMALL_STATE(7035)] = 229219, + [SMALL_STATE(7036)] = 229234, + [SMALL_STATE(7037)] = 229253, + [SMALL_STATE(7038)] = 229272, + [SMALL_STATE(7039)] = 229289, + [SMALL_STATE(7040)] = 229308, + [SMALL_STATE(7041)] = 229325, + [SMALL_STATE(7042)] = 229344, + [SMALL_STATE(7043)] = 229361, + [SMALL_STATE(7044)] = 229380, + [SMALL_STATE(7045)] = 229399, + [SMALL_STATE(7046)] = 229418, + [SMALL_STATE(7047)] = 229435, + [SMALL_STATE(7048)] = 229454, + [SMALL_STATE(7049)] = 229469, + [SMALL_STATE(7050)] = 229488, + [SMALL_STATE(7051)] = 229507, + [SMALL_STATE(7052)] = 229524, + [SMALL_STATE(7053)] = 229541, + [SMALL_STATE(7054)] = 229556, + [SMALL_STATE(7055)] = 229571, + [SMALL_STATE(7056)] = 229588, + [SMALL_STATE(7057)] = 229603, + [SMALL_STATE(7058)] = 229618, + [SMALL_STATE(7059)] = 229633, + [SMALL_STATE(7060)] = 229648, + [SMALL_STATE(7061)] = 229665, + [SMALL_STATE(7062)] = 229680, + [SMALL_STATE(7063)] = 229695, + [SMALL_STATE(7064)] = 229714, + [SMALL_STATE(7065)] = 229729, + [SMALL_STATE(7066)] = 229748, + [SMALL_STATE(7067)] = 229767, + [SMALL_STATE(7068)] = 229782, + [SMALL_STATE(7069)] = 229801, + [SMALL_STATE(7070)] = 229820, + [SMALL_STATE(7071)] = 229839, + [SMALL_STATE(7072)] = 229858, + [SMALL_STATE(7073)] = 229877, + [SMALL_STATE(7074)] = 229896, + [SMALL_STATE(7075)] = 229911, + [SMALL_STATE(7076)] = 229930, + [SMALL_STATE(7077)] = 229945, + [SMALL_STATE(7078)] = 229960, + [SMALL_STATE(7079)] = 229977, + [SMALL_STATE(7080)] = 229996, + [SMALL_STATE(7081)] = 230011, + [SMALL_STATE(7082)] = 230030, + [SMALL_STATE(7083)] = 230047, + [SMALL_STATE(7084)] = 230062, + [SMALL_STATE(7085)] = 230077, + [SMALL_STATE(7086)] = 230096, + [SMALL_STATE(7087)] = 230111, + [SMALL_STATE(7088)] = 230130, + [SMALL_STATE(7089)] = 230145, + [SMALL_STATE(7090)] = 230164, + [SMALL_STATE(7091)] = 230183, + [SMALL_STATE(7092)] = 230202, + [SMALL_STATE(7093)] = 230219, + [SMALL_STATE(7094)] = 230236, + [SMALL_STATE(7095)] = 230255, + [SMALL_STATE(7096)] = 230274, + [SMALL_STATE(7097)] = 230293, + [SMALL_STATE(7098)] = 230312, + [SMALL_STATE(7099)] = 230331, + [SMALL_STATE(7100)] = 230350, + [SMALL_STATE(7101)] = 230365, + [SMALL_STATE(7102)] = 230384, + [SMALL_STATE(7103)] = 230403, + [SMALL_STATE(7104)] = 230422, + [SMALL_STATE(7105)] = 230439, + [SMALL_STATE(7106)] = 230454, + [SMALL_STATE(7107)] = 230473, + [SMALL_STATE(7108)] = 230492, + [SMALL_STATE(7109)] = 230507, + [SMALL_STATE(7110)] = 230522, + [SMALL_STATE(7111)] = 230541, + [SMALL_STATE(7112)] = 230560, + [SMALL_STATE(7113)] = 230579, + [SMALL_STATE(7114)] = 230598, + [SMALL_STATE(7115)] = 230617, + [SMALL_STATE(7116)] = 230636, + [SMALL_STATE(7117)] = 230655, + [SMALL_STATE(7118)] = 230670, + [SMALL_STATE(7119)] = 230689, + [SMALL_STATE(7120)] = 230708, + [SMALL_STATE(7121)] = 230727, + [SMALL_STATE(7122)] = 230746, + [SMALL_STATE(7123)] = 230765, + [SMALL_STATE(7124)] = 230780, + [SMALL_STATE(7125)] = 230799, + [SMALL_STATE(7126)] = 230818, + [SMALL_STATE(7127)] = 230837, + [SMALL_STATE(7128)] = 230852, + [SMALL_STATE(7129)] = 230867, + [SMALL_STATE(7130)] = 230882, + [SMALL_STATE(7131)] = 230897, + [SMALL_STATE(7132)] = 230912, + [SMALL_STATE(7133)] = 230927, + [SMALL_STATE(7134)] = 230942, + [SMALL_STATE(7135)] = 230957, + [SMALL_STATE(7136)] = 230976, + [SMALL_STATE(7137)] = 230991, + [SMALL_STATE(7138)] = 231006, + [SMALL_STATE(7139)] = 231025, + [SMALL_STATE(7140)] = 231042, + [SMALL_STATE(7141)] = 231061, + [SMALL_STATE(7142)] = 231077, + [SMALL_STATE(7143)] = 231093, + [SMALL_STATE(7144)] = 231109, + [SMALL_STATE(7145)] = 231125, + [SMALL_STATE(7146)] = 231139, + [SMALL_STATE(7147)] = 231153, + [SMALL_STATE(7148)] = 231169, + [SMALL_STATE(7149)] = 231185, + [SMALL_STATE(7150)] = 231201, + [SMALL_STATE(7151)] = 231215, + [SMALL_STATE(7152)] = 231231, + [SMALL_STATE(7153)] = 231245, + [SMALL_STATE(7154)] = 231261, + [SMALL_STATE(7155)] = 231277, + [SMALL_STATE(7156)] = 231293, + [SMALL_STATE(7157)] = 231309, + [SMALL_STATE(7158)] = 231323, + [SMALL_STATE(7159)] = 231339, + [SMALL_STATE(7160)] = 231355, + [SMALL_STATE(7161)] = 231371, + [SMALL_STATE(7162)] = 231385, + [SMALL_STATE(7163)] = 231401, + [SMALL_STATE(7164)] = 231415, + [SMALL_STATE(7165)] = 231431, + [SMALL_STATE(7166)] = 231445, + [SMALL_STATE(7167)] = 231461, + [SMALL_STATE(7168)] = 231477, + [SMALL_STATE(7169)] = 231493, + [SMALL_STATE(7170)] = 231509, + [SMALL_STATE(7171)] = 231525, + [SMALL_STATE(7172)] = 231539, + [SMALL_STATE(7173)] = 231555, + [SMALL_STATE(7174)] = 231571, + [SMALL_STATE(7175)] = 231587, + [SMALL_STATE(7176)] = 231603, + [SMALL_STATE(7177)] = 231619, + [SMALL_STATE(7178)] = 231635, + [SMALL_STATE(7179)] = 231651, + [SMALL_STATE(7180)] = 231667, + [SMALL_STATE(7181)] = 231681, + [SMALL_STATE(7182)] = 231695, + [SMALL_STATE(7183)] = 231711, + [SMALL_STATE(7184)] = 231725, + [SMALL_STATE(7185)] = 231741, + [SMALL_STATE(7186)] = 231755, + [SMALL_STATE(7187)] = 231771, + [SMALL_STATE(7188)] = 231787, + [SMALL_STATE(7189)] = 231803, + [SMALL_STATE(7190)] = 231819, + [SMALL_STATE(7191)] = 231835, + [SMALL_STATE(7192)] = 231851, + [SMALL_STATE(7193)] = 231867, + [SMALL_STATE(7194)] = 231883, + [SMALL_STATE(7195)] = 231899, + [SMALL_STATE(7196)] = 231915, + [SMALL_STATE(7197)] = 231931, + [SMALL_STATE(7198)] = 231947, + [SMALL_STATE(7199)] = 231963, + [SMALL_STATE(7200)] = 231979, + [SMALL_STATE(7201)] = 231995, + [SMALL_STATE(7202)] = 232011, + [SMALL_STATE(7203)] = 232025, + [SMALL_STATE(7204)] = 232039, + [SMALL_STATE(7205)] = 232055, + [SMALL_STATE(7206)] = 232071, + [SMALL_STATE(7207)] = 232085, + [SMALL_STATE(7208)] = 232101, + [SMALL_STATE(7209)] = 232117, + [SMALL_STATE(7210)] = 232133, + [SMALL_STATE(7211)] = 232149, + [SMALL_STATE(7212)] = 232165, + [SMALL_STATE(7213)] = 232181, + [SMALL_STATE(7214)] = 232197, + [SMALL_STATE(7215)] = 232213, + [SMALL_STATE(7216)] = 232229, + [SMALL_STATE(7217)] = 232243, + [SMALL_STATE(7218)] = 232259, + [SMALL_STATE(7219)] = 232273, + [SMALL_STATE(7220)] = 232289, + [SMALL_STATE(7221)] = 232305, + [SMALL_STATE(7222)] = 232321, + [SMALL_STATE(7223)] = 232337, + [SMALL_STATE(7224)] = 232353, + [SMALL_STATE(7225)] = 232367, + [SMALL_STATE(7226)] = 232381, + [SMALL_STATE(7227)] = 232395, + [SMALL_STATE(7228)] = 232411, + [SMALL_STATE(7229)] = 232427, + [SMALL_STATE(7230)] = 232443, + [SMALL_STATE(7231)] = 232459, + [SMALL_STATE(7232)] = 232475, + [SMALL_STATE(7233)] = 232489, + [SMALL_STATE(7234)] = 232505, + [SMALL_STATE(7235)] = 232521, + [SMALL_STATE(7236)] = 232537, + [SMALL_STATE(7237)] = 232551, + [SMALL_STATE(7238)] = 232565, + [SMALL_STATE(7239)] = 232581, + [SMALL_STATE(7240)] = 232595, + [SMALL_STATE(7241)] = 232609, + [SMALL_STATE(7242)] = 232623, + [SMALL_STATE(7243)] = 232639, + [SMALL_STATE(7244)] = 232653, + [SMALL_STATE(7245)] = 232667, + [SMALL_STATE(7246)] = 232683, + [SMALL_STATE(7247)] = 232697, + [SMALL_STATE(7248)] = 232713, + [SMALL_STATE(7249)] = 232727, + [SMALL_STATE(7250)] = 232741, + [SMALL_STATE(7251)] = 232755, + [SMALL_STATE(7252)] = 232771, + [SMALL_STATE(7253)] = 232785, + [SMALL_STATE(7254)] = 232799, + [SMALL_STATE(7255)] = 232813, + [SMALL_STATE(7256)] = 232827, + [SMALL_STATE(7257)] = 232843, + [SMALL_STATE(7258)] = 232859, + [SMALL_STATE(7259)] = 232875, + [SMALL_STATE(7260)] = 232891, + [SMALL_STATE(7261)] = 232907, + [SMALL_STATE(7262)] = 232923, + [SMALL_STATE(7263)] = 232939, + [SMALL_STATE(7264)] = 232955, + [SMALL_STATE(7265)] = 232971, + [SMALL_STATE(7266)] = 232987, + [SMALL_STATE(7267)] = 233003, + [SMALL_STATE(7268)] = 233019, + [SMALL_STATE(7269)] = 233035, + [SMALL_STATE(7270)] = 233049, + [SMALL_STATE(7271)] = 233063, + [SMALL_STATE(7272)] = 233079, + [SMALL_STATE(7273)] = 233095, + [SMALL_STATE(7274)] = 233111, + [SMALL_STATE(7275)] = 233127, + [SMALL_STATE(7276)] = 233143, + [SMALL_STATE(7277)] = 233159, + [SMALL_STATE(7278)] = 233175, + [SMALL_STATE(7279)] = 233191, + [SMALL_STATE(7280)] = 233207, + [SMALL_STATE(7281)] = 233221, + [SMALL_STATE(7282)] = 233235, + [SMALL_STATE(7283)] = 233249, + [SMALL_STATE(7284)] = 233265, + [SMALL_STATE(7285)] = 233281, + [SMALL_STATE(7286)] = 233297, + [SMALL_STATE(7287)] = 233311, + [SMALL_STATE(7288)] = 233327, + [SMALL_STATE(7289)] = 233341, + [SMALL_STATE(7290)] = 233357, + [SMALL_STATE(7291)] = 233373, + [SMALL_STATE(7292)] = 233387, + [SMALL_STATE(7293)] = 233401, + [SMALL_STATE(7294)] = 233417, + [SMALL_STATE(7295)] = 233433, + [SMALL_STATE(7296)] = 233447, + [SMALL_STATE(7297)] = 233463, + [SMALL_STATE(7298)] = 233477, + [SMALL_STATE(7299)] = 233493, + [SMALL_STATE(7300)] = 233509, + [SMALL_STATE(7301)] = 233523, + [SMALL_STATE(7302)] = 233537, + [SMALL_STATE(7303)] = 233551, + [SMALL_STATE(7304)] = 233567, + [SMALL_STATE(7305)] = 233583, + [SMALL_STATE(7306)] = 233599, + [SMALL_STATE(7307)] = 233613, + [SMALL_STATE(7308)] = 233627, + [SMALL_STATE(7309)] = 233643, + [SMALL_STATE(7310)] = 233659, + [SMALL_STATE(7311)] = 233675, + [SMALL_STATE(7312)] = 233691, + [SMALL_STATE(7313)] = 233707, + [SMALL_STATE(7314)] = 233721, + [SMALL_STATE(7315)] = 233737, + [SMALL_STATE(7316)] = 233753, + [SMALL_STATE(7317)] = 233769, + [SMALL_STATE(7318)] = 233785, + [SMALL_STATE(7319)] = 233801, + [SMALL_STATE(7320)] = 233817, + [SMALL_STATE(7321)] = 233833, + [SMALL_STATE(7322)] = 233847, + [SMALL_STATE(7323)] = 233863, + [SMALL_STATE(7324)] = 233877, + [SMALL_STATE(7325)] = 233893, + [SMALL_STATE(7326)] = 233909, + [SMALL_STATE(7327)] = 233925, + [SMALL_STATE(7328)] = 233941, + [SMALL_STATE(7329)] = 233955, + [SMALL_STATE(7330)] = 233969, + [SMALL_STATE(7331)] = 233983, + [SMALL_STATE(7332)] = 233997, + [SMALL_STATE(7333)] = 234013, + [SMALL_STATE(7334)] = 234027, + [SMALL_STATE(7335)] = 234043, + [SMALL_STATE(7336)] = 234059, + [SMALL_STATE(7337)] = 234075, + [SMALL_STATE(7338)] = 234091, + [SMALL_STATE(7339)] = 234105, + [SMALL_STATE(7340)] = 234121, + [SMALL_STATE(7341)] = 234137, + [SMALL_STATE(7342)] = 234153, + [SMALL_STATE(7343)] = 234169, + [SMALL_STATE(7344)] = 234183, + [SMALL_STATE(7345)] = 234199, + [SMALL_STATE(7346)] = 234215, + [SMALL_STATE(7347)] = 234231, + [SMALL_STATE(7348)] = 234247, + [SMALL_STATE(7349)] = 234261, + [SMALL_STATE(7350)] = 234277, + [SMALL_STATE(7351)] = 234291, + [SMALL_STATE(7352)] = 234305, + [SMALL_STATE(7353)] = 234319, + [SMALL_STATE(7354)] = 234333, + [SMALL_STATE(7355)] = 234347, + [SMALL_STATE(7356)] = 234363, + [SMALL_STATE(7357)] = 234379, + [SMALL_STATE(7358)] = 234393, + [SMALL_STATE(7359)] = 234409, + [SMALL_STATE(7360)] = 234425, + [SMALL_STATE(7361)] = 234441, + [SMALL_STATE(7362)] = 234457, + [SMALL_STATE(7363)] = 234473, + [SMALL_STATE(7364)] = 234487, + [SMALL_STATE(7365)] = 234503, + [SMALL_STATE(7366)] = 234519, + [SMALL_STATE(7367)] = 234535, + [SMALL_STATE(7368)] = 234551, + [SMALL_STATE(7369)] = 234567, + [SMALL_STATE(7370)] = 234581, + [SMALL_STATE(7371)] = 234597, + [SMALL_STATE(7372)] = 234611, + [SMALL_STATE(7373)] = 234627, + [SMALL_STATE(7374)] = 234641, + [SMALL_STATE(7375)] = 234657, + [SMALL_STATE(7376)] = 234673, + [SMALL_STATE(7377)] = 234687, + [SMALL_STATE(7378)] = 234701, + [SMALL_STATE(7379)] = 234717, + [SMALL_STATE(7380)] = 234733, + [SMALL_STATE(7381)] = 234749, + [SMALL_STATE(7382)] = 234765, + [SMALL_STATE(7383)] = 234781, + [SMALL_STATE(7384)] = 234797, + [SMALL_STATE(7385)] = 234813, + [SMALL_STATE(7386)] = 234829, + [SMALL_STATE(7387)] = 234843, + [SMALL_STATE(7388)] = 234859, + [SMALL_STATE(7389)] = 234873, + [SMALL_STATE(7390)] = 234889, + [SMALL_STATE(7391)] = 234905, + [SMALL_STATE(7392)] = 234921, + [SMALL_STATE(7393)] = 234937, + [SMALL_STATE(7394)] = 234951, + [SMALL_STATE(7395)] = 234967, + [SMALL_STATE(7396)] = 234983, + [SMALL_STATE(7397)] = 234997, + [SMALL_STATE(7398)] = 235013, + [SMALL_STATE(7399)] = 235029, + [SMALL_STATE(7400)] = 235043, + [SMALL_STATE(7401)] = 235057, + [SMALL_STATE(7402)] = 235073, + [SMALL_STATE(7403)] = 235089, + [SMALL_STATE(7404)] = 235105, + [SMALL_STATE(7405)] = 235121, + [SMALL_STATE(7406)] = 235135, + [SMALL_STATE(7407)] = 235151, + [SMALL_STATE(7408)] = 235167, + [SMALL_STATE(7409)] = 235183, + [SMALL_STATE(7410)] = 235197, + [SMALL_STATE(7411)] = 235211, + [SMALL_STATE(7412)] = 235227, + [SMALL_STATE(7413)] = 235241, + [SMALL_STATE(7414)] = 235255, + [SMALL_STATE(7415)] = 235271, + [SMALL_STATE(7416)] = 235287, + [SMALL_STATE(7417)] = 235301, + [SMALL_STATE(7418)] = 235317, + [SMALL_STATE(7419)] = 235333, + [SMALL_STATE(7420)] = 235347, + [SMALL_STATE(7421)] = 235363, + [SMALL_STATE(7422)] = 235379, + [SMALL_STATE(7423)] = 235395, + [SMALL_STATE(7424)] = 235411, + [SMALL_STATE(7425)] = 235425, + [SMALL_STATE(7426)] = 235441, + [SMALL_STATE(7427)] = 235455, + [SMALL_STATE(7428)] = 235471, + [SMALL_STATE(7429)] = 235487, + [SMALL_STATE(7430)] = 235503, + [SMALL_STATE(7431)] = 235519, + [SMALL_STATE(7432)] = 235533, + [SMALL_STATE(7433)] = 235549, + [SMALL_STATE(7434)] = 235565, + [SMALL_STATE(7435)] = 235581, + [SMALL_STATE(7436)] = 235595, + [SMALL_STATE(7437)] = 235609, + [SMALL_STATE(7438)] = 235623, + [SMALL_STATE(7439)] = 235639, + [SMALL_STATE(7440)] = 235655, + [SMALL_STATE(7441)] = 235669, + [SMALL_STATE(7442)] = 235685, + [SMALL_STATE(7443)] = 235701, + [SMALL_STATE(7444)] = 235715, + [SMALL_STATE(7445)] = 235731, + [SMALL_STATE(7446)] = 235747, + [SMALL_STATE(7447)] = 235761, + [SMALL_STATE(7448)] = 235775, + [SMALL_STATE(7449)] = 235791, + [SMALL_STATE(7450)] = 235805, + [SMALL_STATE(7451)] = 235821, + [SMALL_STATE(7452)] = 235837, + [SMALL_STATE(7453)] = 235853, + [SMALL_STATE(7454)] = 235867, + [SMALL_STATE(7455)] = 235883, + [SMALL_STATE(7456)] = 235899, + [SMALL_STATE(7457)] = 235915, + [SMALL_STATE(7458)] = 235931, + [SMALL_STATE(7459)] = 235947, + [SMALL_STATE(7460)] = 235963, + [SMALL_STATE(7461)] = 235979, + [SMALL_STATE(7462)] = 235995, + [SMALL_STATE(7463)] = 236009, + [SMALL_STATE(7464)] = 236023, + [SMALL_STATE(7465)] = 236039, + [SMALL_STATE(7466)] = 236055, + [SMALL_STATE(7467)] = 236071, + [SMALL_STATE(7468)] = 236087, + [SMALL_STATE(7469)] = 236101, + [SMALL_STATE(7470)] = 236115, + [SMALL_STATE(7471)] = 236131, + [SMALL_STATE(7472)] = 236145, + [SMALL_STATE(7473)] = 236161, + [SMALL_STATE(7474)] = 236175, + [SMALL_STATE(7475)] = 236189, + [SMALL_STATE(7476)] = 236205, + [SMALL_STATE(7477)] = 236219, + [SMALL_STATE(7478)] = 236233, + [SMALL_STATE(7479)] = 236249, + [SMALL_STATE(7480)] = 236265, + [SMALL_STATE(7481)] = 236281, + [SMALL_STATE(7482)] = 236297, + [SMALL_STATE(7483)] = 236313, + [SMALL_STATE(7484)] = 236327, + [SMALL_STATE(7485)] = 236343, + [SMALL_STATE(7486)] = 236359, + [SMALL_STATE(7487)] = 236373, + [SMALL_STATE(7488)] = 236387, + [SMALL_STATE(7489)] = 236401, + [SMALL_STATE(7490)] = 236417, + [SMALL_STATE(7491)] = 236431, + [SMALL_STATE(7492)] = 236447, + [SMALL_STATE(7493)] = 236463, + [SMALL_STATE(7494)] = 236477, + [SMALL_STATE(7495)] = 236493, + [SMALL_STATE(7496)] = 236507, + [SMALL_STATE(7497)] = 236521, + [SMALL_STATE(7498)] = 236537, + [SMALL_STATE(7499)] = 236551, + [SMALL_STATE(7500)] = 236567, + [SMALL_STATE(7501)] = 236583, + [SMALL_STATE(7502)] = 236599, + [SMALL_STATE(7503)] = 236615, + [SMALL_STATE(7504)] = 236629, + [SMALL_STATE(7505)] = 236643, + [SMALL_STATE(7506)] = 236659, + [SMALL_STATE(7507)] = 236673, + [SMALL_STATE(7508)] = 236687, + [SMALL_STATE(7509)] = 236701, + [SMALL_STATE(7510)] = 236717, + [SMALL_STATE(7511)] = 236733, + [SMALL_STATE(7512)] = 236749, + [SMALL_STATE(7513)] = 236765, + [SMALL_STATE(7514)] = 236781, + [SMALL_STATE(7515)] = 236795, + [SMALL_STATE(7516)] = 236811, + [SMALL_STATE(7517)] = 236827, + [SMALL_STATE(7518)] = 236843, + [SMALL_STATE(7519)] = 236859, + [SMALL_STATE(7520)] = 236875, + [SMALL_STATE(7521)] = 236889, + [SMALL_STATE(7522)] = 236905, + [SMALL_STATE(7523)] = 236919, + [SMALL_STATE(7524)] = 236935, + [SMALL_STATE(7525)] = 236951, + [SMALL_STATE(7526)] = 236967, + [SMALL_STATE(7527)] = 236983, + [SMALL_STATE(7528)] = 236997, + [SMALL_STATE(7529)] = 237013, + [SMALL_STATE(7530)] = 237029, + [SMALL_STATE(7531)] = 237045, + [SMALL_STATE(7532)] = 237061, + [SMALL_STATE(7533)] = 237075, + [SMALL_STATE(7534)] = 237091, + [SMALL_STATE(7535)] = 237107, + [SMALL_STATE(7536)] = 237123, + [SMALL_STATE(7537)] = 237139, + [SMALL_STATE(7538)] = 237153, + [SMALL_STATE(7539)] = 237169, + [SMALL_STATE(7540)] = 237185, + [SMALL_STATE(7541)] = 237201, + [SMALL_STATE(7542)] = 237217, + [SMALL_STATE(7543)] = 237231, + [SMALL_STATE(7544)] = 237245, + [SMALL_STATE(7545)] = 237261, + [SMALL_STATE(7546)] = 237277, + [SMALL_STATE(7547)] = 237293, + [SMALL_STATE(7548)] = 237307, + [SMALL_STATE(7549)] = 237323, + [SMALL_STATE(7550)] = 237339, + [SMALL_STATE(7551)] = 237355, + [SMALL_STATE(7552)] = 237369, + [SMALL_STATE(7553)] = 237383, + [SMALL_STATE(7554)] = 237399, + [SMALL_STATE(7555)] = 237413, + [SMALL_STATE(7556)] = 237429, + [SMALL_STATE(7557)] = 237443, + [SMALL_STATE(7558)] = 237457, + [SMALL_STATE(7559)] = 237471, + [SMALL_STATE(7560)] = 237487, + [SMALL_STATE(7561)] = 237503, + [SMALL_STATE(7562)] = 237519, + [SMALL_STATE(7563)] = 237535, + [SMALL_STATE(7564)] = 237551, + [SMALL_STATE(7565)] = 237565, + [SMALL_STATE(7566)] = 237581, + [SMALL_STATE(7567)] = 237595, + [SMALL_STATE(7568)] = 237611, + [SMALL_STATE(7569)] = 237625, + [SMALL_STATE(7570)] = 237641, + [SMALL_STATE(7571)] = 237655, + [SMALL_STATE(7572)] = 237669, + [SMALL_STATE(7573)] = 237683, + [SMALL_STATE(7574)] = 237699, + [SMALL_STATE(7575)] = 237713, + [SMALL_STATE(7576)] = 237727, + [SMALL_STATE(7577)] = 237741, + [SMALL_STATE(7578)] = 237757, + [SMALL_STATE(7579)] = 237771, + [SMALL_STATE(7580)] = 237785, + [SMALL_STATE(7581)] = 237801, + [SMALL_STATE(7582)] = 237817, + [SMALL_STATE(7583)] = 237833, + [SMALL_STATE(7584)] = 237849, + [SMALL_STATE(7585)] = 237865, + [SMALL_STATE(7586)] = 237881, + [SMALL_STATE(7587)] = 237897, + [SMALL_STATE(7588)] = 237913, + [SMALL_STATE(7589)] = 237929, + [SMALL_STATE(7590)] = 237945, + [SMALL_STATE(7591)] = 237961, + [SMALL_STATE(7592)] = 237977, + [SMALL_STATE(7593)] = 237991, + [SMALL_STATE(7594)] = 238007, + [SMALL_STATE(7595)] = 238021, + [SMALL_STATE(7596)] = 238035, + [SMALL_STATE(7597)] = 238051, + [SMALL_STATE(7598)] = 238067, + [SMALL_STATE(7599)] = 238083, + [SMALL_STATE(7600)] = 238099, + [SMALL_STATE(7601)] = 238115, + [SMALL_STATE(7602)] = 238129, + [SMALL_STATE(7603)] = 238143, + [SMALL_STATE(7604)] = 238159, + [SMALL_STATE(7605)] = 238173, + [SMALL_STATE(7606)] = 238187, + [SMALL_STATE(7607)] = 238203, + [SMALL_STATE(7608)] = 238217, + [SMALL_STATE(7609)] = 238233, + [SMALL_STATE(7610)] = 238249, + [SMALL_STATE(7611)] = 238265, + [SMALL_STATE(7612)] = 238281, + [SMALL_STATE(7613)] = 238295, + [SMALL_STATE(7614)] = 238309, + [SMALL_STATE(7615)] = 238323, + [SMALL_STATE(7616)] = 238337, + [SMALL_STATE(7617)] = 238351, + [SMALL_STATE(7618)] = 238365, + [SMALL_STATE(7619)] = 238379, + [SMALL_STATE(7620)] = 238395, + [SMALL_STATE(7621)] = 238411, + [SMALL_STATE(7622)] = 238427, + [SMALL_STATE(7623)] = 238443, + [SMALL_STATE(7624)] = 238459, + [SMALL_STATE(7625)] = 238475, + [SMALL_STATE(7626)] = 238491, + [SMALL_STATE(7627)] = 238507, + [SMALL_STATE(7628)] = 238523, + [SMALL_STATE(7629)] = 238539, + [SMALL_STATE(7630)] = 238555, + [SMALL_STATE(7631)] = 238571, + [SMALL_STATE(7632)] = 238587, + [SMALL_STATE(7633)] = 238603, + [SMALL_STATE(7634)] = 238617, + [SMALL_STATE(7635)] = 238631, + [SMALL_STATE(7636)] = 238645, + [SMALL_STATE(7637)] = 238661, + [SMALL_STATE(7638)] = 238677, + [SMALL_STATE(7639)] = 238691, + [SMALL_STATE(7640)] = 238705, + [SMALL_STATE(7641)] = 238719, + [SMALL_STATE(7642)] = 238735, + [SMALL_STATE(7643)] = 238751, + [SMALL_STATE(7644)] = 238767, + [SMALL_STATE(7645)] = 238783, + [SMALL_STATE(7646)] = 238799, + [SMALL_STATE(7647)] = 238813, + [SMALL_STATE(7648)] = 238829, + [SMALL_STATE(7649)] = 238845, + [SMALL_STATE(7650)] = 238859, + [SMALL_STATE(7651)] = 238873, + [SMALL_STATE(7652)] = 238889, + [SMALL_STATE(7653)] = 238903, + [SMALL_STATE(7654)] = 238917, + [SMALL_STATE(7655)] = 238933, + [SMALL_STATE(7656)] = 238949, + [SMALL_STATE(7657)] = 238963, + [SMALL_STATE(7658)] = 238979, + [SMALL_STATE(7659)] = 238995, + [SMALL_STATE(7660)] = 239011, + [SMALL_STATE(7661)] = 239027, + [SMALL_STATE(7662)] = 239041, + [SMALL_STATE(7663)] = 239057, + [SMALL_STATE(7664)] = 239073, + [SMALL_STATE(7665)] = 239089, + [SMALL_STATE(7666)] = 239103, + [SMALL_STATE(7667)] = 239117, + [SMALL_STATE(7668)] = 239131, + [SMALL_STATE(7669)] = 239145, + [SMALL_STATE(7670)] = 239161, + [SMALL_STATE(7671)] = 239177, + [SMALL_STATE(7672)] = 239193, + [SMALL_STATE(7673)] = 239209, + [SMALL_STATE(7674)] = 239223, + [SMALL_STATE(7675)] = 239239, + [SMALL_STATE(7676)] = 239255, + [SMALL_STATE(7677)] = 239269, + [SMALL_STATE(7678)] = 239283, + [SMALL_STATE(7679)] = 239299, + [SMALL_STATE(7680)] = 239315, + [SMALL_STATE(7681)] = 239331, + [SMALL_STATE(7682)] = 239347, + [SMALL_STATE(7683)] = 239363, + [SMALL_STATE(7684)] = 239377, + [SMALL_STATE(7685)] = 239391, + [SMALL_STATE(7686)] = 239407, + [SMALL_STATE(7687)] = 239421, + [SMALL_STATE(7688)] = 239437, + [SMALL_STATE(7689)] = 239451, + [SMALL_STATE(7690)] = 239467, + [SMALL_STATE(7691)] = 239481, + [SMALL_STATE(7692)] = 239497, + [SMALL_STATE(7693)] = 239511, + [SMALL_STATE(7694)] = 239525, + [SMALL_STATE(7695)] = 239539, + [SMALL_STATE(7696)] = 239555, + [SMALL_STATE(7697)] = 239571, + [SMALL_STATE(7698)] = 239587, + [SMALL_STATE(7699)] = 239601, + [SMALL_STATE(7700)] = 239615, + [SMALL_STATE(7701)] = 239629, + [SMALL_STATE(7702)] = 239645, + [SMALL_STATE(7703)] = 239659, + [SMALL_STATE(7704)] = 239675, + [SMALL_STATE(7705)] = 239691, + [SMALL_STATE(7706)] = 239707, + [SMALL_STATE(7707)] = 239723, + [SMALL_STATE(7708)] = 239739, + [SMALL_STATE(7709)] = 239755, + [SMALL_STATE(7710)] = 239771, + [SMALL_STATE(7711)] = 239787, + [SMALL_STATE(7712)] = 239801, + [SMALL_STATE(7713)] = 239815, + [SMALL_STATE(7714)] = 239831, + [SMALL_STATE(7715)] = 239845, + [SMALL_STATE(7716)] = 239861, + [SMALL_STATE(7717)] = 239875, + [SMALL_STATE(7718)] = 239891, + [SMALL_STATE(7719)] = 239905, + [SMALL_STATE(7720)] = 239921, + [SMALL_STATE(7721)] = 239935, + [SMALL_STATE(7722)] = 239949, + [SMALL_STATE(7723)] = 239963, + [SMALL_STATE(7724)] = 239977, + [SMALL_STATE(7725)] = 239993, + [SMALL_STATE(7726)] = 240009, + [SMALL_STATE(7727)] = 240025, + [SMALL_STATE(7728)] = 240041, + [SMALL_STATE(7729)] = 240055, + [SMALL_STATE(7730)] = 240069, + [SMALL_STATE(7731)] = 240083, + [SMALL_STATE(7732)] = 240097, + [SMALL_STATE(7733)] = 240113, + [SMALL_STATE(7734)] = 240127, + [SMALL_STATE(7735)] = 240141, + [SMALL_STATE(7736)] = 240157, + [SMALL_STATE(7737)] = 240173, + [SMALL_STATE(7738)] = 240189, + [SMALL_STATE(7739)] = 240205, + [SMALL_STATE(7740)] = 240221, + [SMALL_STATE(7741)] = 240237, + [SMALL_STATE(7742)] = 240251, + [SMALL_STATE(7743)] = 240267, + [SMALL_STATE(7744)] = 240281, + [SMALL_STATE(7745)] = 240295, + [SMALL_STATE(7746)] = 240309, + [SMALL_STATE(7747)] = 240325, + [SMALL_STATE(7748)] = 240341, + [SMALL_STATE(7749)] = 240357, + [SMALL_STATE(7750)] = 240373, + [SMALL_STATE(7751)] = 240389, + [SMALL_STATE(7752)] = 240403, + [SMALL_STATE(7753)] = 240417, + [SMALL_STATE(7754)] = 240433, + [SMALL_STATE(7755)] = 240449, + [SMALL_STATE(7756)] = 240463, + [SMALL_STATE(7757)] = 240477, + [SMALL_STATE(7758)] = 240491, + [SMALL_STATE(7759)] = 240505, + [SMALL_STATE(7760)] = 240521, + [SMALL_STATE(7761)] = 240537, + [SMALL_STATE(7762)] = 240553, + [SMALL_STATE(7763)] = 240569, + [SMALL_STATE(7764)] = 240583, + [SMALL_STATE(7765)] = 240597, + [SMALL_STATE(7766)] = 240611, + [SMALL_STATE(7767)] = 240625, + [SMALL_STATE(7768)] = 240641, + [SMALL_STATE(7769)] = 240657, + [SMALL_STATE(7770)] = 240673, + [SMALL_STATE(7771)] = 240687, + [SMALL_STATE(7772)] = 240703, + [SMALL_STATE(7773)] = 240719, + [SMALL_STATE(7774)] = 240733, + [SMALL_STATE(7775)] = 240747, + [SMALL_STATE(7776)] = 240761, + [SMALL_STATE(7777)] = 240777, + [SMALL_STATE(7778)] = 240791, + [SMALL_STATE(7779)] = 240807, + [SMALL_STATE(7780)] = 240821, + [SMALL_STATE(7781)] = 240837, + [SMALL_STATE(7782)] = 240851, + [SMALL_STATE(7783)] = 240865, + [SMALL_STATE(7784)] = 240881, + [SMALL_STATE(7785)] = 240897, + [SMALL_STATE(7786)] = 240911, + [SMALL_STATE(7787)] = 240927, + [SMALL_STATE(7788)] = 240943, + [SMALL_STATE(7789)] = 240959, + [SMALL_STATE(7790)] = 240975, + [SMALL_STATE(7791)] = 240991, + [SMALL_STATE(7792)] = 241005, + [SMALL_STATE(7793)] = 241019, + [SMALL_STATE(7794)] = 241035, + [SMALL_STATE(7795)] = 241051, + [SMALL_STATE(7796)] = 241067, + [SMALL_STATE(7797)] = 241081, + [SMALL_STATE(7798)] = 241095, + [SMALL_STATE(7799)] = 241111, + [SMALL_STATE(7800)] = 241127, + [SMALL_STATE(7801)] = 241141, + [SMALL_STATE(7802)] = 241157, + [SMALL_STATE(7803)] = 241173, + [SMALL_STATE(7804)] = 241187, + [SMALL_STATE(7805)] = 241203, + [SMALL_STATE(7806)] = 241217, + [SMALL_STATE(7807)] = 241231, + [SMALL_STATE(7808)] = 241247, + [SMALL_STATE(7809)] = 241263, + [SMALL_STATE(7810)] = 241279, + [SMALL_STATE(7811)] = 241293, + [SMALL_STATE(7812)] = 241307, + [SMALL_STATE(7813)] = 241323, + [SMALL_STATE(7814)] = 241339, + [SMALL_STATE(7815)] = 241355, + [SMALL_STATE(7816)] = 241369, + [SMALL_STATE(7817)] = 241383, + [SMALL_STATE(7818)] = 241397, + [SMALL_STATE(7819)] = 241411, + [SMALL_STATE(7820)] = 241425, + [SMALL_STATE(7821)] = 241441, + [SMALL_STATE(7822)] = 241455, + [SMALL_STATE(7823)] = 241471, + [SMALL_STATE(7824)] = 241485, + [SMALL_STATE(7825)] = 241501, + [SMALL_STATE(7826)] = 241515, + [SMALL_STATE(7827)] = 241529, + [SMALL_STATE(7828)] = 241545, + [SMALL_STATE(7829)] = 241561, + [SMALL_STATE(7830)] = 241577, + [SMALL_STATE(7831)] = 241593, + [SMALL_STATE(7832)] = 241609, + [SMALL_STATE(7833)] = 241625, + [SMALL_STATE(7834)] = 241641, + [SMALL_STATE(7835)] = 241657, + [SMALL_STATE(7836)] = 241673, + [SMALL_STATE(7837)] = 241689, + [SMALL_STATE(7838)] = 241703, + [SMALL_STATE(7839)] = 241717, + [SMALL_STATE(7840)] = 241731, + [SMALL_STATE(7841)] = 241747, + [SMALL_STATE(7842)] = 241761, + [SMALL_STATE(7843)] = 241777, + [SMALL_STATE(7844)] = 241791, + [SMALL_STATE(7845)] = 241807, + [SMALL_STATE(7846)] = 241823, + [SMALL_STATE(7847)] = 241839, + [SMALL_STATE(7848)] = 241853, + [SMALL_STATE(7849)] = 241869, + [SMALL_STATE(7850)] = 241885, + [SMALL_STATE(7851)] = 241899, + [SMALL_STATE(7852)] = 241915, + [SMALL_STATE(7853)] = 241931, + [SMALL_STATE(7854)] = 241947, + [SMALL_STATE(7855)] = 241961, + [SMALL_STATE(7856)] = 241977, + [SMALL_STATE(7857)] = 241991, + [SMALL_STATE(7858)] = 242005, + [SMALL_STATE(7859)] = 242021, + [SMALL_STATE(7860)] = 242037, + [SMALL_STATE(7861)] = 242053, + [SMALL_STATE(7862)] = 242069, + [SMALL_STATE(7863)] = 242083, + [SMALL_STATE(7864)] = 242099, + [SMALL_STATE(7865)] = 242113, + [SMALL_STATE(7866)] = 242129, + [SMALL_STATE(7867)] = 242143, + [SMALL_STATE(7868)] = 242157, + [SMALL_STATE(7869)] = 242173, + [SMALL_STATE(7870)] = 242189, + [SMALL_STATE(7871)] = 242205, + [SMALL_STATE(7872)] = 242221, + [SMALL_STATE(7873)] = 242237, + [SMALL_STATE(7874)] = 242253, + [SMALL_STATE(7875)] = 242269, + [SMALL_STATE(7876)] = 242283, + [SMALL_STATE(7877)] = 242299, + [SMALL_STATE(7878)] = 242315, + [SMALL_STATE(7879)] = 242331, + [SMALL_STATE(7880)] = 242347, + [SMALL_STATE(7881)] = 242363, + [SMALL_STATE(7882)] = 242379, + [SMALL_STATE(7883)] = 242395, + [SMALL_STATE(7884)] = 242409, + [SMALL_STATE(7885)] = 242425, + [SMALL_STATE(7886)] = 242441, + [SMALL_STATE(7887)] = 242455, + [SMALL_STATE(7888)] = 242469, + [SMALL_STATE(7889)] = 242483, + [SMALL_STATE(7890)] = 242497, + [SMALL_STATE(7891)] = 242513, + [SMALL_STATE(7892)] = 242529, + [SMALL_STATE(7893)] = 242543, + [SMALL_STATE(7894)] = 242559, + [SMALL_STATE(7895)] = 242573, + [SMALL_STATE(7896)] = 242587, + [SMALL_STATE(7897)] = 242603, + [SMALL_STATE(7898)] = 242619, + [SMALL_STATE(7899)] = 242635, + [SMALL_STATE(7900)] = 242651, + [SMALL_STATE(7901)] = 242665, + [SMALL_STATE(7902)] = 242679, + [SMALL_STATE(7903)] = 242693, + [SMALL_STATE(7904)] = 242709, + [SMALL_STATE(7905)] = 242723, + [SMALL_STATE(7906)] = 242739, + [SMALL_STATE(7907)] = 242753, + [SMALL_STATE(7908)] = 242767, + [SMALL_STATE(7909)] = 242783, + [SMALL_STATE(7910)] = 242797, + [SMALL_STATE(7911)] = 242813, + [SMALL_STATE(7912)] = 242827, + [SMALL_STATE(7913)] = 242843, + [SMALL_STATE(7914)] = 242857, + [SMALL_STATE(7915)] = 242873, + [SMALL_STATE(7916)] = 242889, + [SMALL_STATE(7917)] = 242903, + [SMALL_STATE(7918)] = 242919, + [SMALL_STATE(7919)] = 242935, + [SMALL_STATE(7920)] = 242951, + [SMALL_STATE(7921)] = 242967, + [SMALL_STATE(7922)] = 242981, + [SMALL_STATE(7923)] = 242995, + [SMALL_STATE(7924)] = 243009, + [SMALL_STATE(7925)] = 243025, + [SMALL_STATE(7926)] = 243041, + [SMALL_STATE(7927)] = 243055, + [SMALL_STATE(7928)] = 243069, + [SMALL_STATE(7929)] = 243083, + [SMALL_STATE(7930)] = 243097, + [SMALL_STATE(7931)] = 243113, + [SMALL_STATE(7932)] = 243127, + [SMALL_STATE(7933)] = 243141, + [SMALL_STATE(7934)] = 243155, + [SMALL_STATE(7935)] = 243169, + [SMALL_STATE(7936)] = 243185, + [SMALL_STATE(7937)] = 243199, + [SMALL_STATE(7938)] = 243215, + [SMALL_STATE(7939)] = 243231, + [SMALL_STATE(7940)] = 243244, + [SMALL_STATE(7941)] = 243257, + [SMALL_STATE(7942)] = 243270, + [SMALL_STATE(7943)] = 243283, + [SMALL_STATE(7944)] = 243296, + [SMALL_STATE(7945)] = 243309, + [SMALL_STATE(7946)] = 243322, + [SMALL_STATE(7947)] = 243335, + [SMALL_STATE(7948)] = 243348, + [SMALL_STATE(7949)] = 243361, + [SMALL_STATE(7950)] = 243374, + [SMALL_STATE(7951)] = 243387, + [SMALL_STATE(7952)] = 243400, + [SMALL_STATE(7953)] = 243413, + [SMALL_STATE(7954)] = 243426, + [SMALL_STATE(7955)] = 243439, + [SMALL_STATE(7956)] = 243452, + [SMALL_STATE(7957)] = 243465, + [SMALL_STATE(7958)] = 243478, + [SMALL_STATE(7959)] = 243491, + [SMALL_STATE(7960)] = 243504, + [SMALL_STATE(7961)] = 243517, + [SMALL_STATE(7962)] = 243530, + [SMALL_STATE(7963)] = 243543, + [SMALL_STATE(7964)] = 243556, + [SMALL_STATE(7965)] = 243569, + [SMALL_STATE(7966)] = 243582, + [SMALL_STATE(7967)] = 243595, + [SMALL_STATE(7968)] = 243608, + [SMALL_STATE(7969)] = 243621, + [SMALL_STATE(7970)] = 243634, + [SMALL_STATE(7971)] = 243647, + [SMALL_STATE(7972)] = 243660, + [SMALL_STATE(7973)] = 243673, + [SMALL_STATE(7974)] = 243686, + [SMALL_STATE(7975)] = 243699, + [SMALL_STATE(7976)] = 243712, + [SMALL_STATE(7977)] = 243725, + [SMALL_STATE(7978)] = 243738, + [SMALL_STATE(7979)] = 243751, + [SMALL_STATE(7980)] = 243764, + [SMALL_STATE(7981)] = 243777, + [SMALL_STATE(7982)] = 243790, + [SMALL_STATE(7983)] = 243803, + [SMALL_STATE(7984)] = 243816, + [SMALL_STATE(7985)] = 243829, + [SMALL_STATE(7986)] = 243842, + [SMALL_STATE(7987)] = 243855, + [SMALL_STATE(7988)] = 243868, + [SMALL_STATE(7989)] = 243881, + [SMALL_STATE(7990)] = 243894, + [SMALL_STATE(7991)] = 243907, + [SMALL_STATE(7992)] = 243920, + [SMALL_STATE(7993)] = 243933, + [SMALL_STATE(7994)] = 243946, + [SMALL_STATE(7995)] = 243959, + [SMALL_STATE(7996)] = 243972, + [SMALL_STATE(7997)] = 243985, + [SMALL_STATE(7998)] = 243998, + [SMALL_STATE(7999)] = 244011, + [SMALL_STATE(8000)] = 244024, + [SMALL_STATE(8001)] = 244037, + [SMALL_STATE(8002)] = 244050, + [SMALL_STATE(8003)] = 244063, + [SMALL_STATE(8004)] = 244076, + [SMALL_STATE(8005)] = 244089, + [SMALL_STATE(8006)] = 244102, + [SMALL_STATE(8007)] = 244115, + [SMALL_STATE(8008)] = 244128, + [SMALL_STATE(8009)] = 244141, + [SMALL_STATE(8010)] = 244154, + [SMALL_STATE(8011)] = 244167, + [SMALL_STATE(8012)] = 244180, + [SMALL_STATE(8013)] = 244193, + [SMALL_STATE(8014)] = 244206, + [SMALL_STATE(8015)] = 244219, + [SMALL_STATE(8016)] = 244232, + [SMALL_STATE(8017)] = 244245, + [SMALL_STATE(8018)] = 244258, + [SMALL_STATE(8019)] = 244271, + [SMALL_STATE(8020)] = 244284, + [SMALL_STATE(8021)] = 244297, + [SMALL_STATE(8022)] = 244310, + [SMALL_STATE(8023)] = 244323, + [SMALL_STATE(8024)] = 244336, + [SMALL_STATE(8025)] = 244349, + [SMALL_STATE(8026)] = 244362, + [SMALL_STATE(8027)] = 244375, + [SMALL_STATE(8028)] = 244388, + [SMALL_STATE(8029)] = 244401, + [SMALL_STATE(8030)] = 244414, + [SMALL_STATE(8031)] = 244427, + [SMALL_STATE(8032)] = 244440, + [SMALL_STATE(8033)] = 244453, + [SMALL_STATE(8034)] = 244466, + [SMALL_STATE(8035)] = 244479, + [SMALL_STATE(8036)] = 244492, + [SMALL_STATE(8037)] = 244505, + [SMALL_STATE(8038)] = 244518, + [SMALL_STATE(8039)] = 244531, + [SMALL_STATE(8040)] = 244544, + [SMALL_STATE(8041)] = 244557, + [SMALL_STATE(8042)] = 244570, + [SMALL_STATE(8043)] = 244583, + [SMALL_STATE(8044)] = 244596, + [SMALL_STATE(8045)] = 244609, + [SMALL_STATE(8046)] = 244622, + [SMALL_STATE(8047)] = 244635, + [SMALL_STATE(8048)] = 244648, + [SMALL_STATE(8049)] = 244661, + [SMALL_STATE(8050)] = 244674, + [SMALL_STATE(8051)] = 244687, + [SMALL_STATE(8052)] = 244700, + [SMALL_STATE(8053)] = 244713, + [SMALL_STATE(8054)] = 244726, + [SMALL_STATE(8055)] = 244739, + [SMALL_STATE(8056)] = 244752, + [SMALL_STATE(8057)] = 244765, + [SMALL_STATE(8058)] = 244778, + [SMALL_STATE(8059)] = 244791, + [SMALL_STATE(8060)] = 244804, + [SMALL_STATE(8061)] = 244817, + [SMALL_STATE(8062)] = 244830, + [SMALL_STATE(8063)] = 244843, + [SMALL_STATE(8064)] = 244856, + [SMALL_STATE(8065)] = 244869, + [SMALL_STATE(8066)] = 244882, + [SMALL_STATE(8067)] = 244895, + [SMALL_STATE(8068)] = 244908, + [SMALL_STATE(8069)] = 244921, + [SMALL_STATE(8070)] = 244934, + [SMALL_STATE(8071)] = 244947, + [SMALL_STATE(8072)] = 244960, + [SMALL_STATE(8073)] = 244973, + [SMALL_STATE(8074)] = 244986, + [SMALL_STATE(8075)] = 244999, + [SMALL_STATE(8076)] = 245012, + [SMALL_STATE(8077)] = 245025, + [SMALL_STATE(8078)] = 245038, + [SMALL_STATE(8079)] = 245051, + [SMALL_STATE(8080)] = 245064, + [SMALL_STATE(8081)] = 245077, + [SMALL_STATE(8082)] = 245090, + [SMALL_STATE(8083)] = 245103, + [SMALL_STATE(8084)] = 245116, + [SMALL_STATE(8085)] = 245129, + [SMALL_STATE(8086)] = 245142, + [SMALL_STATE(8087)] = 245155, + [SMALL_STATE(8088)] = 245168, + [SMALL_STATE(8089)] = 245181, + [SMALL_STATE(8090)] = 245194, + [SMALL_STATE(8091)] = 245207, + [SMALL_STATE(8092)] = 245220, + [SMALL_STATE(8093)] = 245233, + [SMALL_STATE(8094)] = 245246, + [SMALL_STATE(8095)] = 245259, + [SMALL_STATE(8096)] = 245272, + [SMALL_STATE(8097)] = 245285, + [SMALL_STATE(8098)] = 245298, + [SMALL_STATE(8099)] = 245311, + [SMALL_STATE(8100)] = 245324, + [SMALL_STATE(8101)] = 245337, + [SMALL_STATE(8102)] = 245350, + [SMALL_STATE(8103)] = 245363, + [SMALL_STATE(8104)] = 245376, + [SMALL_STATE(8105)] = 245389, + [SMALL_STATE(8106)] = 245402, + [SMALL_STATE(8107)] = 245415, + [SMALL_STATE(8108)] = 245428, + [SMALL_STATE(8109)] = 245441, + [SMALL_STATE(8110)] = 245454, + [SMALL_STATE(8111)] = 245467, + [SMALL_STATE(8112)] = 245480, + [SMALL_STATE(8113)] = 245493, + [SMALL_STATE(8114)] = 245506, + [SMALL_STATE(8115)] = 245519, + [SMALL_STATE(8116)] = 245532, + [SMALL_STATE(8117)] = 245545, + [SMALL_STATE(8118)] = 245558, + [SMALL_STATE(8119)] = 245571, + [SMALL_STATE(8120)] = 245584, + [SMALL_STATE(8121)] = 245597, + [SMALL_STATE(8122)] = 245610, + [SMALL_STATE(8123)] = 245623, + [SMALL_STATE(8124)] = 245636, + [SMALL_STATE(8125)] = 245649, + [SMALL_STATE(8126)] = 245662, + [SMALL_STATE(8127)] = 245675, + [SMALL_STATE(8128)] = 245688, + [SMALL_STATE(8129)] = 245701, + [SMALL_STATE(8130)] = 245714, + [SMALL_STATE(8131)] = 245727, + [SMALL_STATE(8132)] = 245740, + [SMALL_STATE(8133)] = 245753, + [SMALL_STATE(8134)] = 245766, + [SMALL_STATE(8135)] = 245779, + [SMALL_STATE(8136)] = 245792, + [SMALL_STATE(8137)] = 245805, + [SMALL_STATE(8138)] = 245818, + [SMALL_STATE(8139)] = 245831, + [SMALL_STATE(8140)] = 245844, + [SMALL_STATE(8141)] = 245857, + [SMALL_STATE(8142)] = 245870, + [SMALL_STATE(8143)] = 245883, + [SMALL_STATE(8144)] = 245896, + [SMALL_STATE(8145)] = 245909, + [SMALL_STATE(8146)] = 245922, + [SMALL_STATE(8147)] = 245935, + [SMALL_STATE(8148)] = 245948, + [SMALL_STATE(8149)] = 245961, + [SMALL_STATE(8150)] = 245974, + [SMALL_STATE(8151)] = 245987, + [SMALL_STATE(8152)] = 246000, + [SMALL_STATE(8153)] = 246013, + [SMALL_STATE(8154)] = 246026, + [SMALL_STATE(8155)] = 246039, + [SMALL_STATE(8156)] = 246052, + [SMALL_STATE(8157)] = 246065, + [SMALL_STATE(8158)] = 246078, + [SMALL_STATE(8159)] = 246091, + [SMALL_STATE(8160)] = 246104, + [SMALL_STATE(8161)] = 246117, + [SMALL_STATE(8162)] = 246130, + [SMALL_STATE(8163)] = 246143, + [SMALL_STATE(8164)] = 246156, + [SMALL_STATE(8165)] = 246169, + [SMALL_STATE(8166)] = 246182, + [SMALL_STATE(8167)] = 246195, + [SMALL_STATE(8168)] = 246208, + [SMALL_STATE(8169)] = 246221, + [SMALL_STATE(8170)] = 246234, + [SMALL_STATE(8171)] = 246247, + [SMALL_STATE(8172)] = 246260, + [SMALL_STATE(8173)] = 246273, + [SMALL_STATE(8174)] = 246286, + [SMALL_STATE(8175)] = 246299, + [SMALL_STATE(8176)] = 246312, + [SMALL_STATE(8177)] = 246325, + [SMALL_STATE(8178)] = 246338, + [SMALL_STATE(8179)] = 246351, + [SMALL_STATE(8180)] = 246364, + [SMALL_STATE(8181)] = 246377, + [SMALL_STATE(8182)] = 246390, + [SMALL_STATE(8183)] = 246403, + [SMALL_STATE(8184)] = 246416, + [SMALL_STATE(8185)] = 246429, + [SMALL_STATE(8186)] = 246442, + [SMALL_STATE(8187)] = 246455, + [SMALL_STATE(8188)] = 246468, + [SMALL_STATE(8189)] = 246481, + [SMALL_STATE(8190)] = 246494, + [SMALL_STATE(8191)] = 246507, + [SMALL_STATE(8192)] = 246520, + [SMALL_STATE(8193)] = 246533, + [SMALL_STATE(8194)] = 246546, + [SMALL_STATE(8195)] = 246559, + [SMALL_STATE(8196)] = 246572, + [SMALL_STATE(8197)] = 246585, + [SMALL_STATE(8198)] = 246598, + [SMALL_STATE(8199)] = 246611, + [SMALL_STATE(8200)] = 246624, + [SMALL_STATE(8201)] = 246637, + [SMALL_STATE(8202)] = 246650, + [SMALL_STATE(8203)] = 246663, + [SMALL_STATE(8204)] = 246676, + [SMALL_STATE(8205)] = 246689, + [SMALL_STATE(8206)] = 246702, + [SMALL_STATE(8207)] = 246715, + [SMALL_STATE(8208)] = 246728, + [SMALL_STATE(8209)] = 246741, + [SMALL_STATE(8210)] = 246754, + [SMALL_STATE(8211)] = 246767, + [SMALL_STATE(8212)] = 246780, + [SMALL_STATE(8213)] = 246793, + [SMALL_STATE(8214)] = 246806, + [SMALL_STATE(8215)] = 246819, + [SMALL_STATE(8216)] = 246832, + [SMALL_STATE(8217)] = 246845, + [SMALL_STATE(8218)] = 246858, + [SMALL_STATE(8219)] = 246871, + [SMALL_STATE(8220)] = 246884, + [SMALL_STATE(8221)] = 246897, + [SMALL_STATE(8222)] = 246910, + [SMALL_STATE(8223)] = 246923, + [SMALL_STATE(8224)] = 246936, + [SMALL_STATE(8225)] = 246949, + [SMALL_STATE(8226)] = 246962, + [SMALL_STATE(8227)] = 246975, + [SMALL_STATE(8228)] = 246988, + [SMALL_STATE(8229)] = 247001, + [SMALL_STATE(8230)] = 247014, + [SMALL_STATE(8231)] = 247027, + [SMALL_STATE(8232)] = 247040, + [SMALL_STATE(8233)] = 247053, + [SMALL_STATE(8234)] = 247066, + [SMALL_STATE(8235)] = 247079, + [SMALL_STATE(8236)] = 247092, + [SMALL_STATE(8237)] = 247105, + [SMALL_STATE(8238)] = 247118, + [SMALL_STATE(8239)] = 247131, + [SMALL_STATE(8240)] = 247144, + [SMALL_STATE(8241)] = 247157, + [SMALL_STATE(8242)] = 247170, + [SMALL_STATE(8243)] = 247183, + [SMALL_STATE(8244)] = 247196, + [SMALL_STATE(8245)] = 247209, + [SMALL_STATE(8246)] = 247222, + [SMALL_STATE(8247)] = 247235, + [SMALL_STATE(8248)] = 247248, + [SMALL_STATE(8249)] = 247261, + [SMALL_STATE(8250)] = 247274, + [SMALL_STATE(8251)] = 247287, + [SMALL_STATE(8252)] = 247300, + [SMALL_STATE(8253)] = 247313, + [SMALL_STATE(8254)] = 247326, + [SMALL_STATE(8255)] = 247339, + [SMALL_STATE(8256)] = 247352, + [SMALL_STATE(8257)] = 247365, + [SMALL_STATE(8258)] = 247378, + [SMALL_STATE(8259)] = 247391, + [SMALL_STATE(8260)] = 247404, + [SMALL_STATE(8261)] = 247417, + [SMALL_STATE(8262)] = 247430, + [SMALL_STATE(8263)] = 247443, + [SMALL_STATE(8264)] = 247456, + [SMALL_STATE(8265)] = 247469, + [SMALL_STATE(8266)] = 247482, + [SMALL_STATE(8267)] = 247495, + [SMALL_STATE(8268)] = 247508, + [SMALL_STATE(8269)] = 247521, + [SMALL_STATE(8270)] = 247534, + [SMALL_STATE(8271)] = 247547, + [SMALL_STATE(8272)] = 247560, + [SMALL_STATE(8273)] = 247573, + [SMALL_STATE(8274)] = 247586, + [SMALL_STATE(8275)] = 247599, + [SMALL_STATE(8276)] = 247612, + [SMALL_STATE(8277)] = 247625, + [SMALL_STATE(8278)] = 247638, + [SMALL_STATE(8279)] = 247651, + [SMALL_STATE(8280)] = 247664, + [SMALL_STATE(8281)] = 247677, + [SMALL_STATE(8282)] = 247690, + [SMALL_STATE(8283)] = 247703, + [SMALL_STATE(8284)] = 247716, + [SMALL_STATE(8285)] = 247729, + [SMALL_STATE(8286)] = 247742, + [SMALL_STATE(8287)] = 247755, + [SMALL_STATE(8288)] = 247768, + [SMALL_STATE(8289)] = 247781, + [SMALL_STATE(8290)] = 247794, + [SMALL_STATE(8291)] = 247807, + [SMALL_STATE(8292)] = 247820, + [SMALL_STATE(8293)] = 247833, + [SMALL_STATE(8294)] = 247846, + [SMALL_STATE(8295)] = 247859, + [SMALL_STATE(8296)] = 247872, + [SMALL_STATE(8297)] = 247885, + [SMALL_STATE(8298)] = 247898, + [SMALL_STATE(8299)] = 247911, + [SMALL_STATE(8300)] = 247924, + [SMALL_STATE(8301)] = 247937, + [SMALL_STATE(8302)] = 247950, + [SMALL_STATE(8303)] = 247963, + [SMALL_STATE(8304)] = 247976, + [SMALL_STATE(8305)] = 247989, + [SMALL_STATE(8306)] = 248002, + [SMALL_STATE(8307)] = 248015, + [SMALL_STATE(8308)] = 248028, + [SMALL_STATE(8309)] = 248041, + [SMALL_STATE(8310)] = 248054, + [SMALL_STATE(8311)] = 248067, + [SMALL_STATE(8312)] = 248080, + [SMALL_STATE(8313)] = 248093, + [SMALL_STATE(8314)] = 248106, + [SMALL_STATE(8315)] = 248119, + [SMALL_STATE(8316)] = 248132, + [SMALL_STATE(8317)] = 248145, + [SMALL_STATE(8318)] = 248158, + [SMALL_STATE(8319)] = 248171, + [SMALL_STATE(8320)] = 248184, + [SMALL_STATE(8321)] = 248197, + [SMALL_STATE(8322)] = 248210, + [SMALL_STATE(8323)] = 248223, + [SMALL_STATE(8324)] = 248236, + [SMALL_STATE(8325)] = 248249, + [SMALL_STATE(8326)] = 248262, + [SMALL_STATE(8327)] = 248275, + [SMALL_STATE(8328)] = 248288, + [SMALL_STATE(8329)] = 248301, + [SMALL_STATE(8330)] = 248314, + [SMALL_STATE(8331)] = 248327, + [SMALL_STATE(8332)] = 248340, + [SMALL_STATE(8333)] = 248353, + [SMALL_STATE(8334)] = 248366, + [SMALL_STATE(8335)] = 248379, + [SMALL_STATE(8336)] = 248392, + [SMALL_STATE(8337)] = 248405, + [SMALL_STATE(8338)] = 248418, + [SMALL_STATE(8339)] = 248431, + [SMALL_STATE(8340)] = 248444, + [SMALL_STATE(8341)] = 248457, + [SMALL_STATE(8342)] = 248470, + [SMALL_STATE(8343)] = 248483, + [SMALL_STATE(8344)] = 248496, + [SMALL_STATE(8345)] = 248509, + [SMALL_STATE(8346)] = 248522, + [SMALL_STATE(8347)] = 248535, + [SMALL_STATE(8348)] = 248548, + [SMALL_STATE(8349)] = 248561, + [SMALL_STATE(8350)] = 248574, + [SMALL_STATE(8351)] = 248587, + [SMALL_STATE(8352)] = 248600, + [SMALL_STATE(8353)] = 248613, + [SMALL_STATE(8354)] = 248626, + [SMALL_STATE(8355)] = 248639, + [SMALL_STATE(8356)] = 248652, + [SMALL_STATE(8357)] = 248665, + [SMALL_STATE(8358)] = 248678, + [SMALL_STATE(8359)] = 248691, + [SMALL_STATE(8360)] = 248704, + [SMALL_STATE(8361)] = 248717, + [SMALL_STATE(8362)] = 248730, + [SMALL_STATE(8363)] = 248743, + [SMALL_STATE(8364)] = 248756, + [SMALL_STATE(8365)] = 248769, + [SMALL_STATE(8366)] = 248782, + [SMALL_STATE(8367)] = 248795, + [SMALL_STATE(8368)] = 248808, + [SMALL_STATE(8369)] = 248821, + [SMALL_STATE(8370)] = 248834, + [SMALL_STATE(8371)] = 248847, + [SMALL_STATE(8372)] = 248860, + [SMALL_STATE(8373)] = 248873, + [SMALL_STATE(8374)] = 248886, + [SMALL_STATE(8375)] = 248899, + [SMALL_STATE(8376)] = 248912, + [SMALL_STATE(8377)] = 248925, + [SMALL_STATE(8378)] = 248938, + [SMALL_STATE(8379)] = 248951, + [SMALL_STATE(8380)] = 248964, + [SMALL_STATE(8381)] = 248977, + [SMALL_STATE(8382)] = 248990, + [SMALL_STATE(8383)] = 249003, + [SMALL_STATE(8384)] = 249016, + [SMALL_STATE(8385)] = 249029, + [SMALL_STATE(8386)] = 249042, + [SMALL_STATE(8387)] = 249055, + [SMALL_STATE(8388)] = 249068, + [SMALL_STATE(8389)] = 249081, + [SMALL_STATE(8390)] = 249094, + [SMALL_STATE(8391)] = 249107, + [SMALL_STATE(8392)] = 249120, + [SMALL_STATE(8393)] = 249133, + [SMALL_STATE(8394)] = 249146, + [SMALL_STATE(8395)] = 249159, + [SMALL_STATE(8396)] = 249172, + [SMALL_STATE(8397)] = 249185, + [SMALL_STATE(8398)] = 249198, + [SMALL_STATE(8399)] = 249211, + [SMALL_STATE(8400)] = 249224, + [SMALL_STATE(8401)] = 249237, + [SMALL_STATE(8402)] = 249250, + [SMALL_STATE(8403)] = 249263, + [SMALL_STATE(8404)] = 249276, + [SMALL_STATE(8405)] = 249289, + [SMALL_STATE(8406)] = 249302, + [SMALL_STATE(8407)] = 249315, + [SMALL_STATE(8408)] = 249328, + [SMALL_STATE(8409)] = 249341, + [SMALL_STATE(8410)] = 249354, + [SMALL_STATE(8411)] = 249367, + [SMALL_STATE(8412)] = 249380, + [SMALL_STATE(8413)] = 249393, + [SMALL_STATE(8414)] = 249406, + [SMALL_STATE(8415)] = 249419, + [SMALL_STATE(8416)] = 249432, + [SMALL_STATE(8417)] = 249445, + [SMALL_STATE(8418)] = 249458, + [SMALL_STATE(8419)] = 249471, + [SMALL_STATE(8420)] = 249484, + [SMALL_STATE(8421)] = 249497, + [SMALL_STATE(8422)] = 249510, + [SMALL_STATE(8423)] = 249523, + [SMALL_STATE(8424)] = 249536, + [SMALL_STATE(8425)] = 249549, + [SMALL_STATE(8426)] = 249562, + [SMALL_STATE(8427)] = 249575, + [SMALL_STATE(8428)] = 249588, + [SMALL_STATE(8429)] = 249601, + [SMALL_STATE(8430)] = 249614, + [SMALL_STATE(8431)] = 249627, + [SMALL_STATE(8432)] = 249640, + [SMALL_STATE(8433)] = 249653, + [SMALL_STATE(8434)] = 249666, + [SMALL_STATE(8435)] = 249679, + [SMALL_STATE(8436)] = 249692, + [SMALL_STATE(8437)] = 249705, + [SMALL_STATE(8438)] = 249718, + [SMALL_STATE(8439)] = 249731, + [SMALL_STATE(8440)] = 249744, + [SMALL_STATE(8441)] = 249757, + [SMALL_STATE(8442)] = 249770, + [SMALL_STATE(8443)] = 249783, + [SMALL_STATE(8444)] = 249796, + [SMALL_STATE(8445)] = 249809, + [SMALL_STATE(8446)] = 249822, + [SMALL_STATE(8447)] = 249835, + [SMALL_STATE(8448)] = 249848, + [SMALL_STATE(8449)] = 249861, + [SMALL_STATE(8450)] = 249874, + [SMALL_STATE(8451)] = 249887, + [SMALL_STATE(8452)] = 249900, + [SMALL_STATE(8453)] = 249913, + [SMALL_STATE(8454)] = 249926, + [SMALL_STATE(8455)] = 249939, + [SMALL_STATE(8456)] = 249952, + [SMALL_STATE(8457)] = 249965, + [SMALL_STATE(8458)] = 249978, + [SMALL_STATE(8459)] = 249991, + [SMALL_STATE(8460)] = 250004, + [SMALL_STATE(8461)] = 250017, + [SMALL_STATE(8462)] = 250030, + [SMALL_STATE(8463)] = 250043, + [SMALL_STATE(8464)] = 250056, + [SMALL_STATE(8465)] = 250069, + [SMALL_STATE(8466)] = 250082, + [SMALL_STATE(8467)] = 250095, + [SMALL_STATE(8468)] = 250108, + [SMALL_STATE(8469)] = 250121, + [SMALL_STATE(8470)] = 250134, + [SMALL_STATE(8471)] = 250147, + [SMALL_STATE(8472)] = 250160, + [SMALL_STATE(8473)] = 250173, + [SMALL_STATE(8474)] = 250186, + [SMALL_STATE(8475)] = 250199, + [SMALL_STATE(8476)] = 250212, + [SMALL_STATE(8477)] = 250225, + [SMALL_STATE(8478)] = 250238, + [SMALL_STATE(8479)] = 250251, + [SMALL_STATE(8480)] = 250264, + [SMALL_STATE(8481)] = 250277, + [SMALL_STATE(8482)] = 250290, + [SMALL_STATE(8483)] = 250303, + [SMALL_STATE(8484)] = 250316, + [SMALL_STATE(8485)] = 250329, + [SMALL_STATE(8486)] = 250342, + [SMALL_STATE(8487)] = 250355, + [SMALL_STATE(8488)] = 250368, + [SMALL_STATE(8489)] = 250381, + [SMALL_STATE(8490)] = 250394, + [SMALL_STATE(8491)] = 250407, + [SMALL_STATE(8492)] = 250420, + [SMALL_STATE(8493)] = 250433, + [SMALL_STATE(8494)] = 250446, + [SMALL_STATE(8495)] = 250459, + [SMALL_STATE(8496)] = 250472, + [SMALL_STATE(8497)] = 250485, + [SMALL_STATE(8498)] = 250498, + [SMALL_STATE(8499)] = 250511, + [SMALL_STATE(8500)] = 250524, + [SMALL_STATE(8501)] = 250537, + [SMALL_STATE(8502)] = 250550, + [SMALL_STATE(8503)] = 250563, + [SMALL_STATE(8504)] = 250576, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8761), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8504), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8736), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), SHIFT(665), - [28] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), - [30] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [32] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [43] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(692), - [46] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [48] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8480), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [25] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 10), SHIFT(785), + [28] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), + [30] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [32] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [34] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym_pattern, 1, -1, 10), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [43] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(872), + [46] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [48] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), [50] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [52] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [54] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8095), - [56] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), - [58] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [60] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), - [62] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [64] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), - [66] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [68] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [70] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [72] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 10), - [74] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [76] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [78] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [80] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(8450), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(625), - [94] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [96] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [98] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8351), - [100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), - [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [52] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [54] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7677), + [56] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [58] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [60] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [62] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [64] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [66] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [68] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [70] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [72] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 10), + [74] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [76] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [78] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [80] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(8167), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(796), + [94] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [96] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [98] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8104), + [100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), [104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6897), - [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8347), - [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8354), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), SHIFT(633), - [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), + [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), + [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8039), + [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8041), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 10), + [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 10), SHIFT(783), + [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 10), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7843), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7844), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8076), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7709), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7587), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7920), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7697), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8265), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8099), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8307), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7946), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7947), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 299), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7939), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8065), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7732), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5488), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8687), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8438), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8439), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 92), - [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 54), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2403), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(929), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2369), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2161), - [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(12), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(702), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4557), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2393), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7774), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5332), - [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2170), - [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5188), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8069), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7939), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6857), - [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(300), - [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(704), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8065), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(101), - [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7765), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7220), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7221), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7732), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(502), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(609), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1306), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(266), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(321), - [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8095), - [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6431), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6446), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4945), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(943), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5488), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(209), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(705), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8265), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1964), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(796), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5729), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3749), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8252), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(3750), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(6897), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(956), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2192), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8687), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8438), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8439), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2425), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(931), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2360), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2173), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(11), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4556), - [740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2422), - [743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7931), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5409), - [749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2190), - [752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5200), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7843), - [758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7844), - [761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7011), - [764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8076), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(154), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7944), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7013), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7015), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(7980), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(497), - [785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(550), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(1662), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(4954), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(942), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(5295), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(197), - [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(951), - [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(2168), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8306), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8307), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2), SHIFT_REPEAT(8308), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7878), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6805), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 299), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7814), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7663), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6661), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7808), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7555), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8430), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 92), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 54), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2237), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(925), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), + [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2018), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(9), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(708), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4339), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2252), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7559), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5186), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2046), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4986), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7814), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7663), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6661), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(302), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(701), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7808), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7555), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6963), + [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6964), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7527), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(512), + [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1315), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(266), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7677), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6145), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6146), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4718), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(942), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5039), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(683), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8099), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(679), + [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5379), + [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), + [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8089), + [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3541), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6643), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(959), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2044), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8430), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8181), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(8182), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(923), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2208), + [631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4338), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2244), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7709), + [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5185), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2036), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4961), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7586), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7587), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6746), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7920), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7697), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6747), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(6748), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7854), + [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(525), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(556), + [688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1623), + [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4727), + [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(5269), + [700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2023), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7946), + [712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7947), + [715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 2, 0, 0), SHIFT_REPEAT(7948), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7822), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7142), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6914), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7603), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6913), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7604), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8706), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8481), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8482), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8274), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8158), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8157), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7621), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8080), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7627), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7672), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7611), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7682), [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6890), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8531), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8435), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8434), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8183), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8088), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6632), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8615), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8073), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8075), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8133), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7236), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7786), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8588), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8281), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8280), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8068), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6779), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7602), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8331), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8002), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7582), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7647), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7140), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8449), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8225), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7802), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7898), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7812), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7890), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7804), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8383), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8052), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8053), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7484), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8640), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8358), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7971), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8450), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8629), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8062), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(149), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8330), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(303), - [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(320), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(107), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7986), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [1241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 23), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(301), + [1272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(317), [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(1964), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(5692), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8251), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 53), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(1783), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(5435), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5435), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 53), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6886), [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(712), - [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(319), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(659), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_rest_pattern, 2, .production_id = 53), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(588), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), SHIFT(875), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8282), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8544), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8263), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8267), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8301), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8515), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(695), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(313), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(792), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 10), SHIFT(696), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(622), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym_rest_pattern, 2, 0, 53), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8023), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8044), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8287), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8285), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8058), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8204), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8728), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8521), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8318), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8223), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8264), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8215), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8048), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5529), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5522), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8665), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8389), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8390), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6952), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 16), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8495), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 16), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [2308] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(4604), - [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8497), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [2324] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(4910), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 156), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 156), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 77), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 77), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 286), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 286), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 286), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 122), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, .production_id = 122), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, .production_id = 122), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 185), - [2364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 185), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 185), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 66), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 66), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 122), - [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 122), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 122), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 188), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 188), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 188), - [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8516), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 227), - [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 227), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 227), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 242), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 242), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 242), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 63), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 63), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 59), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 59), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 59), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8525), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 158), - [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 158), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 158), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 33), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 33), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 241), - [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 241), - [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 241), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 89), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 89), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 89), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 157), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 157), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 157), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8260), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8563), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8358), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8367), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8009), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), - [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8408), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8132), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8133), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5171), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7998), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 16), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8230), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 16), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [2306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), + [2308] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4482), + [2312] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4708), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8251), + [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 227), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 227), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 227), + [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 122), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 122), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 122), + [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 122), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 122), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 122), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 241), + [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 241), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 241), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [2376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 242), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 242), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 242), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 188), + [2388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 188), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 188), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8250), + [2396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 185), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 185), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 185), + [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 59), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 59), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 59), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 158), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 158), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 158), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 157), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 157), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 157), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 156), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 156), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 89), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 89), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 89), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 33), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 33), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 77), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 77), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 63), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 63), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 66), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 66), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 286), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 286), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 286), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), + [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8271), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8134), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8144), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(3914), - [2917] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(311), - [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(732), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [2926] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(6952), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), - [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 23), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8494), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym__property_name, 1, .production_id = 23), - [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(149), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8500), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 10), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8761), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6752), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8707), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8758), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8759), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8706), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8617), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8739), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8247), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8245), - [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(311), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [3098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(6952), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6988), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8590), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8280), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7130), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8545), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8723), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6802), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8666), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8750), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8751), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6773), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8688), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8755), - [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8511), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8606), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8328), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8326), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(8685), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), - [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), - [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(8218), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8651), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8657), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8314), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8315), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), - [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8096), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8713), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8534), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8533), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 37), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8673), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8199), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8565), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8558), - [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(8558), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7002), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8089), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8490), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 87), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 146), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 146), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8506), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8505), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 81), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, .production_id = 207), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 331), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 300), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 37), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 144), - [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 326), - [3490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 142), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 33), - [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 227), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 292), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 79), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, .production_id = 248), - [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 141), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 135), - [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 202), - [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 122), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 80), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 82), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 88), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 203), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 136), - [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 13), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 207), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8547), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8549), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 294), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 205), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 202), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 138), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 89), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 208), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 209), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 212), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 213), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 215), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 188), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 248), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 59), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 251), - [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 157), - [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 204), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 248), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 158), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 253), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 254), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 255), - [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 258), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 206), - [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 137), - [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 137), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 15), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 139), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 330), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 286), - [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 296), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 13), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 195), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 202), - [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 140), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 204), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 259), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 329), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 185), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 152), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 140), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 260), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 298), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 297), - [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 242), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 241), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 37), - [3688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 296), - [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 288), - [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 145), - [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 195), - [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 15), - [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 1), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8587), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8583), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 291), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 325), - [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 353), - [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 290), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8678), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8676), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8480), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8608), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8740), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8554), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8338), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8528), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8286), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8386), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8237), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8641), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8239), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [4102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8419), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8589), - [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8410), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8403), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8622), - [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8616), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8620), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8619), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), - [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 49), - [4313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 49), SHIFT_REPEAT(6836), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [4322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 49), SHIFT(4969), - [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8421), - [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 63), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 43), - [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 21), - [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), - [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6490), - [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 56), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6511), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .production_id = 56), - [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .production_id = 57), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 57), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6494), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6495), - [4421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 57), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 56), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 23), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 23), - [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 113), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 113), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 112), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 112), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 111), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 111), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 63), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 63), - [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [4531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 183), - [4547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 183), - [4549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 239), - [4551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 239), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 39), - [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 39), - [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(8279), - [4592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1978), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 39), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(670), - [4602] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 39), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(8593), - [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1974), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 39), SHIFT(7918), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 53), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), - [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(341), - [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_predefined_type, 1), - [4693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_predefined_type, 1), - [4696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(638), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 39), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [4708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 10), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6670), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), SHIFT(8685), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6712), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), - [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(8638), - [4748] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 39), REDUCE(sym_rest_pattern, 2), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 111), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 63), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(584), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [4767] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 53), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 10), REDUCE(sym_rest_pattern, 2, .production_id = 53), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [4824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(868), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [4870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(4891), - [4873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(3977), - [4876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), - [4878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(3472), - [4881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(591), - [4884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(6429), - [4887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(6426), - [4890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(2695), - [4893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(8740), - [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(4879), - [4899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(7262), - [4902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(2596), - [4905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(2622), - [4908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(2714), - [4911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(2619), - [4914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(2755), - [4917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(2726), - [4920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 49), SHIFT_REPEAT(3865), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [4973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [5031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), - [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(6304), - [5094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(6238), - [5097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(6368), - [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), - [5102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5467), - [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5595), - [5108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(7699), - [5111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(7840), - [5114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5159), - [5117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(4948), - [5120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5606), - [5123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(4457), - [5126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(5611), - [5129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2), SHIFT_REPEAT(8542), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6238), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8166), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7699), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7840), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8542), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), - [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6834), - [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8014), - [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [5194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(2531), - [5197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3796), - [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), - [5210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3054), - [5213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3132), - [5216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3864), - [5219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3300), - [5222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3321), - [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8642), - [5251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(2531), - [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3864), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [5259] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 23), REDUCE(aux_sym_object_repeat1, 2, .production_id = 78), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 52), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3321), - [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3054), - [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3132), - [5278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3796), - [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), SHIFT(3300), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [5404] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 23), REDUCE(aux_sym_object_repeat1, 2, .production_id = 78), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 52), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), - [5444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7821), - [5500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 39), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [5512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 78), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 52), - [5515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 56), - [5517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 56), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [5521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 98), - [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 98), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5582), - [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [5543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 38), - [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 38), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [5553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, .production_id = 45), - [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, .production_id = 45), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [5559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 78), - [5561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 41), - [5563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 41), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [5569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, .production_id = 105), - [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, .production_id = 105), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2), - [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [5597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [5603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [5605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 43), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 43), - [5683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 43), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 43), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 34), - [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 34), - [5693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 42), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 42), - [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 57), - [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 57), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), - [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 99), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 99), - [5723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [5731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [5737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), - [5741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 101), - [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 101), - [5745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [5757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 104), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 104), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 106), - [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 106), - [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 56), - [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 57), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [5781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 171), - [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 171), - [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 107), - [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 107), - [5789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 172), - [5791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 172), - [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 173), - [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 173), - [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 174), - [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 174), - [5801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [5804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [5816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [5819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [5823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [5827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), - [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), - [5831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 178), - [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 178), - [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 56), - [5837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 57), - [5839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [5841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [5845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [5847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [5851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [5855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 63), - [5857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 63), - [5859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 111), - [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 111), - [5863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 179), - [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 179), - [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 180), - [5869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 180), - [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 233), - [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 233), - [5875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 234), - [5877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 234), - [5879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 181), - [5881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 181), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 182), - [5887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 182), - [5889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 236), - [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 236), - [5897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, .production_id = 104), - [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, .production_id = 104), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .production_id = 56), - [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .production_id = 57), - [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [5907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 237), - [5909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 237), - [5911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 55), - [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 55), - [5915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 240), - [5917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 240), - [5919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 183), - [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 183), - [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 281), - [5927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 281), - [5929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 282), - [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 282), - [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 283), - [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 283), - [5937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [5939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [5941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 284), - [5943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 284), - [5945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 285), - [5947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 285), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 319), - [5953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 319), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [5957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 320), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 320), - [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 321), - [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 321), - [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 322), - [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 322), - [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 323), - [5971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 323), - [5973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 352), - [5975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 352), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 64), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 64), - [5993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 63), REDUCE(sym_nested_type_identifier, 3, .production_id = 64), - [5996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 66), REDUCE(sym_nested_type_identifier, 3, .production_id = 64), - [5999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3), - [6001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 238), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 168), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 167), - [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 165), - [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 164), - [6021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 162), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 110), - [6031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 117), - [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 110), - [6035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 110), - [6037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 110), SHIFT(257), - [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 96), - [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 96), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 109), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 108), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 34), - [6054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(257), - [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [6061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(257), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), - [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 34), - [6070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(257), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 76), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 75), - [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), - [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 187), - [6139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 187), - [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 110), SHIFT(258), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [6182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [6184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [6188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 120), REDUCE(sym_assignment_expression, 3, .production_id = 75), - [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 120), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 169), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 169), - [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 166), - [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 166), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [6215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 163), - [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 163), - [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 165), - [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 44), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 44), - [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), - [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 46), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 46), - [6233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 164), - [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 163), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 163), - [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 162), - [6241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 161), - [6243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 161), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [6252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [6257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [6261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 120), REDUCE(sym_assignment_expression, 3, .production_id = 108), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 54), - [6270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 54), SHIFT(845), - [6273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [6276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [6279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 108), REDUCE(sym_assignment_expression, 3, .production_id = 108), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 108), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 184), - [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 184), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 243), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 243), - [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 76), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 78), - [6302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 52), - [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 78), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 52), - [6308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(258), - [6311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(258), - [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 186), - [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 186), - [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [6332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [6334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 37), - [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 37), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(261), - [6343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [6345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [6347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 78), - [6349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 78), - [6351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(261), - [6354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 41), - [6357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 41), - [6360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(261), - [6363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 92), - [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 92), - [6373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 93), - [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 93), - [6377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 119), - [6379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 119), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 117), - [6387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, .production_id = 94), - [6389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, .production_id = 94), - [6391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [6395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 95), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 95), - [6399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 116), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 116), - [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 115), - [6405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 115), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [6415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 110), SHIFT(261), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 109), - [6422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 229), - [6424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 229), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [6434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(258), - [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 114), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 114), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [6451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 373), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 373), - [6455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 374), - [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 374), - [6459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 214), - [6461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 214), - [6463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 154), - [6465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 154), SHIFT_REPEAT(3335), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [6470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 59), - [6472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 59), - [6474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 389), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 389), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [6486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 293), - [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 293), - [6490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 122), - [6492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 122), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, .production_id = 90), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [6534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 327), - [6536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 327), - [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 108), - [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 250), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 250), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 188), - [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 188), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 355), - [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 355), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [6566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 354), - [6568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 354), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [6572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [6575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 110), SHIFT(255), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [6590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 328), - [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 328), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [6596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [6598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), SHIFT_REPEAT(3396), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [6607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [6610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 143), - [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 143), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(255), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [6629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(255), - [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(255), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6641] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [6669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 78), REDUCE(sym_object_pattern, 3, .production_id = 52), - [6672] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [6676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 83), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 83), - [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [6682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 35), - [6684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 35), - [6686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 35), REDUCE(sym__primary_type, 1, .production_id = 41), - [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [6753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, .production_id = 154), - [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 121), - [6757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(256), - [6760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(256), - [6763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(256), - [6766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 37), - [6768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 110), SHIFT(256), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [6793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 35), - [6796] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 35), REDUCE(sym__primary_type, 1, .production_id = 41), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [6804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 83), - [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 83), - [6808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 41), REDUCE(sym__parameter_name, 2, .production_id = 83), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [6831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [6838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [6843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [6846] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 286), - [6852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 188), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [6856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 242), - [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 241), - [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 122), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [6864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 122), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [6868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 227), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 216), - [6910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 216), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [6914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [6917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [6919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [6922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [6964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 86), - [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 86), - [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 185), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), - [6974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 218), - [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 218), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 59), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [6986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 158), - [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 157), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(259), - [6995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(253), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(253), - [7039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(253), - [7042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 261), - [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 261), - [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [7056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(254), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), - [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, .production_id = 159), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [7069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(254), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), - [7074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(259), - [7077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(259), - [7080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 89), - [7098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(254), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8274), - [7105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 110), SHIFT(253), - [7108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 110), SHIFT(259), - [7111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 43), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [7115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 54), SHIFT(829), - [7118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 110), SHIFT(254), - [7121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 78), REDUCE(sym_object_pattern, 3, .production_id = 52), - [7124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [7129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [7142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 147), - [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 147), - [7146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [7149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 151), - [7151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 151), - [7153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [7157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 34), SHIFT(260), - [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [7204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 34), SHIFT(260), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), - [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), - [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7745), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [7243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 110), SHIFT(260), - [7246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 49), SHIFT_REPEAT(7262), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [7281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(260), - [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8601), - [7314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 157), REDUCE(sym_class, 5, .production_id = 241), - [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 157), REDUCE(sym_class, 5, .production_id = 241), - [7320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 158), REDUCE(sym_class, 5, .production_id = 242), - [7323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 158), REDUCE(sym_class, 5, .production_id = 242), - [7326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 161), REDUCE(sym_class, 5, .production_id = 243), - [7329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 161), REDUCE(sym_class, 5, .production_id = 243), - [7332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 93), REDUCE(sym_class, 4, .production_id = 187), - [7335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 93), REDUCE(sym_class, 4, .production_id = 187), - [7338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 92), REDUCE(sym_class, 4, .production_id = 186), - [7341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 92), REDUCE(sym_class, 4, .production_id = 186), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [7350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 89), REDUCE(sym_class, 4, .production_id = 185), - [7353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 89), REDUCE(sym_class, 4, .production_id = 185), - [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), - [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8597), - [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [7364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [7370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 227), REDUCE(sym_class, 6, .production_id = 286), - [7373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 227), REDUCE(sym_class, 6, .production_id = 286), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [7386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 37), REDUCE(sym_class, 3, .production_id = 119), - [7389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 37), REDUCE(sym_class, 3, .production_id = 119), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8748), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8746), - [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [7460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, .production_id = 7), - [7462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, .production_id = 7), SHIFT_REPEAT(7840), - [7465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 199), - [7467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 189), - [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotated_object_member, 2, .production_id = 6), - [7471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotated_object_member, 2, .production_id = 17), - [7473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 123), - [7475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_initializer, 2), - [7477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 124), - [7479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [7481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4461), - [7484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8736), - [7487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition, 2, .production_id = 4), - [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 126), - [7491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition, 2, .production_id = 5), - [7493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_initializer, 3), - [7495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 127), - [7497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 3, .production_id = 15), - [7499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 3, .production_id = 130), - [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 131), - [7503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 132), - [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_binding, 3, .production_id = 20), - [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 133), - [7509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_binding, 3, .production_id = 26), - [7511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_array, 3), - [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_signal, 3, .production_id = 15), - [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 191), - [7517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_required, 3, .production_id = 27), - [7519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_required, 3, .production_id = 15), - [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 192), - [7523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, .production_id = 134), - [7525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 4, .production_id = 195), - [7527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 68), - [7529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 4, .production_id = 197), - [7531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 198), - [7533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_inline_component, 4, .production_id = 70), - [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 200), - [7537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 201), - [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_signal, 4, .production_id = 69), - [7541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 67), - [7543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 247), - [7545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 246), - [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 245), - [7549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_declaration, 3, .production_id = 28), - [7551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, .production_id = 244), - [7553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 65), - [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, .production_id = 62), - [7557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 61), - [7559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 60), - [7561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, .production_id = 190), - [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 1, .production_id = 9), - [7565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 1), - [7567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_array, 4), - [7569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 50), - [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, .production_id = 51), - [7573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 1, .production_id = 2), - [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7886), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7884), - [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property_modifier, 1), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8685), - [7585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_ui_property_modifier, 1), SHIFT(7884), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [7590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotation, 3, .production_id = 14), - [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [7612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 6, .production_id = 72), - [7614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, .production_id = 7), SHIFT_REPEAT(7483), - [7617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 5, .production_id = 32), - [7619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 5, .production_id = 31), - [7621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 5, .production_id = 29), - [7623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 3, .production_id = 15), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6923), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6922), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [7633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 3, .production_id = 11), - [7635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 4, .production_id = 19), - [7637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 6, .production_id = 71), - [7639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [7641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 6, .production_id = 73), - [7643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 4, .production_id = 18), - [7645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 3, .production_id = 13), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8188), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), - [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7169), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8242), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), - [7669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_list_property_type, 4, .production_id = 125), - [7671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_list_property_type, 4), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6961), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7174), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7173), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8648), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [7705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6711), - [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6656), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8692), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8694), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8428), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8431), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8019), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8593), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [7857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 224), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [7869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 15), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [7877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 272), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 16), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [7893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 316), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [7911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 219), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [7917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6684), - [7921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, .production_id = 10), - [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 351), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [7929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 310), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [7955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 155), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [7975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 270), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 15), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 270), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 219), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 16), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 310), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [8019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 39), REDUCE(sym_type_parameter, 1, .production_id = 40), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [8024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 39), SHIFT(2091), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 272), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 15), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 270), - [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 16), - [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 316), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 219), - [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 16), - [8059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 219), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 310), - [8063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 15), - [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 310), - [8067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 39), SHIFT(7918), - [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 351), - [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 224), - [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 270), - [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 155), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8015), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6696), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8580), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8577), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8539), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 22), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), - [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8441), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), - [8146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8669), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 16), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), - [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8551), - [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 48), - [8184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), - [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, .production_id = 56), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 372), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [8252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 182), - [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 182), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [8260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 181), - [8262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 181), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [8276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [8280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, .production_id = 56), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [8286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [8298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [8308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 180), - [8310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 180), - [8312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 179), - [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 179), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [8362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 344), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [8456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 111), - [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property_modifier, 1), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [8466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 63), - [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [8474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 52), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [8494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 107), - [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 107), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8327), - [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8246), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8452), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [8516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 43), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8491), - [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8574), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8272), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), - [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, .production_id = 57), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7917), - [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8401), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 301), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8727), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 302), - [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 336), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [8580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(638), - [8583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 372), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1), - [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1), - [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 280), - [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 337), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 253), - [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [8605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8753), - [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 356), - [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 357), - [8611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 377), - [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 382), - [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 391), - [8617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 262), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [8625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 170), - [8627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, .production_id = 57), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 36), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), - [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8757), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 344), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 100), - [8669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 210), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [8677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 210), - [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), - [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [8697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(670), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), - [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 40), - [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [8720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 153), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [8728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 78), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 52), - [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 208), - [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 232), - [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 223), - [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 231), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), - [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8749), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), - [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [8813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8626), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), - [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8743), - [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [8831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 63), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), - [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [8839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8715), - [8841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8697), - [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8677), - [8845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), - [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8477), - [8873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(2372), - [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [8912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(6550), - [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [8917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(583), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [8988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 78), - [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(8477), - [8993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [8995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(574), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [9012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [9026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 211), - [9028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 211), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8087), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8414), - [9052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 37), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [9084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [9132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 36), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8714), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [9192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 210), - [9194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 210), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8696), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), - [9246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 2), SHIFT_REPEAT(6368), - [9249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 2), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [9255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 49), - [9257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 49), SHIFT_REPEAT(6897), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 118), - [9264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2), - [9268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(641), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [9303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), - [9321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 47), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [9329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8625), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [9353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 350), - [9355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 385), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [9359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 263), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [9363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 264), - [9365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 226), - [9367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 346), - [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 144), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [9375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 266), - [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 25), - [9379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 268), - [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 380), - [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7813), - [9387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 376), - [9389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 375), - [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 362), - [9393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 343), - [9397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), - [9405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 388), - [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 202), - [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [9411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 368), - [9415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 274), - [9417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 371), - [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [9423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 137), - [9425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 135), - [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 56), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [9431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 276), - [9433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 137), - [9435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_nested_identifier, 3), - [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [9439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [9441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 340), - [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), - [9445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(2089), - [9448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(7022), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [9455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 22), SHIFT(1984), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [9460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 394), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [9464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 55), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 230), - [9472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 278), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8674), - [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 266), - [9480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 268), - [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 279), - [9484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 79), - [9486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 48), SHIFT(1988), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [9491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 221), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), - [9499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 335), - [9501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 334), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [9521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_nested_identifier, 3, .production_id = 10), - [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), - [9533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 22), SHIFT(2136), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [9540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 55), - [9542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 332), - [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 297), - [9546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [9566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 22), SHIFT(2108), - [9569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 48), SHIFT(1983), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [9580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 211), - [9582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 211), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 330), - [9592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 314), - [9594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 203), - [9596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 296), - [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 195), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [9606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 318), - [9608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 221), - [9610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 329), - [9612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 308), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [9618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [9624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 298), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [9652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 48), SHIFT(2128), - [9655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 296), - [9657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 248), - [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [9663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 195), - [9665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 15), - [9667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [9669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 48), SHIFT(2065), - [9672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 294), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [9686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 288), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [9704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 260), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 304), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [9720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [9722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 15), - [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 258), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), - [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 25), - [9730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 255), - [9732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 254), - [9734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 253), - [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [9738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 251), - [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 304), - [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 188), - [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [9746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 213), - [9748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 212), - [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 209), - [9752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 208), - [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 308), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 309), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 340), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), - [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 205), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [9776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 312), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 122), - [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 343), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 142), - [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 141), - [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [9816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 25), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 59), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [9828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 259), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [9838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 22), SHIFT(1985), - [9841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 33), - [9843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 97), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8460), - [9847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [9849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 24), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), - [9861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 365), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [9865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 362), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [9871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 360), - [9873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 359), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [9877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 215), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [9895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), - [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [9907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_version_specifier, 1, .production_id = 12), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8334), - [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 87), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 1), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [9941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 149), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), - [9973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 91), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [10003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(422), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 160), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 103), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [10042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 85), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [10104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, .production_id = 207), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8467), - [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [10132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 15), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [10142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 43), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [10164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 295), - [10166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 295), SHIFT_REPEAT(6479), - [10169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 295), - [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [10173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [10175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [10183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [10191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 176), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [10215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 256), - [10217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 256), - [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [10225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 257), - [10227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 257), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [10241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), - [10243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), - [10246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 333), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [10274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(842), - [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [10295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_pragma_repeat1, 2, .production_id = 74), SHIFT_REPEAT(6567), - [10298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_pragma_repeat1, 2, .production_id = 74), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [10306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(5263), - [10309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7897), - [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 52), - [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [10335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [10337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(6730), - [10340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [10342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(6734), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7895), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), - [10373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [10383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 228), - [10385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 228), SHIFT_REPEAT(599), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [10396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), - [10402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [10410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 21), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [10416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), - [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8501), - [10420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 315), - [10422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(2020), - [10425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 345), - [10427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 91), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [10433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 349), - [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 342), - [10437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 347), - [10439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 348), - [10441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 384), - [10443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 336), - [10445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 58), - [10447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 222), - [10449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 386), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [10453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 383), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [10457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 220), - [10459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 208), - [10461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 341), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8092), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [10485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 339), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [10489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [10495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition, 2, .production_id = 4), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [10503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [10507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [10517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 16), - [10519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 121), - [10521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 225), - [10523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition, 2, .production_id = 5), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [10533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), - [10535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(5193), - [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, .production_id = 10), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [10550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_initializer, 2), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), - [10554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 338), - [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), - [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 337), - [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [10574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(5094), - [10577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [10579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 387), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8332), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [10589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [10591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [10597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(7897), - [10600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), - [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [10606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1), - [10608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [10652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [10656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [10660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, .production_id = 15), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [10664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), - [10670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 13), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [10674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 267), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [10678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 390), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [10684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 392), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [10690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 393), - [10692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 395), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [10704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_initializer, 3), - [10706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 196), SHIFT_REPEAT(7508), - [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 196), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [10723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 15), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [10745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_signal_parameters_repeat1, 2), SHIFT_REPEAT(6570), - [10748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_signal_parameters_repeat1, 2), - [10750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, .production_id = 396), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [10754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 378), - [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [10758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 3, .production_id = 193), - [10760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1926), - [10763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8012), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7911), - [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8011), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [10789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 331), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [10801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 300), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), - [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [10823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 324), - [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 265), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [10861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 381), - [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 379), - [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 370), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), - [10871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(6662), - [10874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [10876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 269), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [10882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 366), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_version_specifier, 3, .production_id = 30), - [10890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 369), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6682), - [10894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 253), - [10896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 262), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [10904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 271), - [10906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 367), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [10932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(868), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [10963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 37), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [10969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [10979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(1973), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [10984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 313), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [10988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 273), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [11008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 311), - [11010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), - [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [11038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 57), - [11040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 275), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [11046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 277), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [11052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [11080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 358), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8074), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [11116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 361), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [11130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(2686), - [11133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [11143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [11147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(362), - [11150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 55), - [11152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 58), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [11156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 81), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8720), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 363), - [11168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 364), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [11178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [11188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, .production_id = 356), - [11190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_pragma_repeat1, 2, .production_id = 54), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [11196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(314), - [11199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [11203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [11215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 317), - [11217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8003), - [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), - [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [11303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_object_array_repeat1, 2), SHIFT_REPEAT(4492), - [11306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_object_array_repeat1, 2), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [11316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 196), SHIFT_REPEAT(3905), - [11319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 196), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [11343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [11347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(2747), - [11350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), - [11396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 303), - [11398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 306), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [11404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 307), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [11418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [11420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 24), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [11426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 301), - [11428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 302), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [11438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 305), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [11450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, .production_id = 248), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [11456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 292), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [11466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 227), - [11468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 248), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [11480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 185), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [11490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 241), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [11494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 242), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [11504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 158), - [11506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 157), - [11508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 207), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [11512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 202), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [11518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [11522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 84), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [11536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5), - [11538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 204), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [11548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 326), - [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [11564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [11566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 286), - [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [11578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8704), - [11580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 206), - [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), - [11584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 3), - [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [11592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8703), - [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [11600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 2, .production_id = 129), - [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8684), - [11606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 2, .production_id = 128), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8683), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [11624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 89), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8662), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [11644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8661), - [11646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 235), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [11654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 55), - [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8637), - [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8636), - [11680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 217), - [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8612), - [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8527), - [11690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_negative_number, 2, .production_id = 34), - [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8611), - [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [11704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 13), - [11706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 202), - [11708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [11710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 204), - [11712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [11714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 249), - [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [11718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), - [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [11732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8469), - [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [11748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), - [11752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [11754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [11756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [11758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [11762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 175), - [11764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 16), - [11766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), - [11768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8585), - [11770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 252), - [11772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [11778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [11782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 82), - [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [11786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [11788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 249), - [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [11792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [11798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8584), - [11800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 287), - [11802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 289), - [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [11806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8514), - [11808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [11816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, .production_id = 287), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [11836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, .production_id = 15), - [11838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 150), - [11840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 148), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [11844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [11846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [11862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 138), - [11864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [11866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_array, 4), - [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [11876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 2), - [11878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 80), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [11888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [11890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [11894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 140), - [11896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 140), - [11898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 139), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [11914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [11918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [11922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [11926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [11932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 88), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [11938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [11940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [11942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 13), - [11944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1), - [11946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 136), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [11956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [11966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [11970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [11976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [11978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 25), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [11982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [11986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [11992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [12028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [12030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, .production_id = 130), - [12032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 24), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [12038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_array, 3), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [12042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 177), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [12054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [12056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [12058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [12062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [12066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [12070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [12080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [12094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_assignment, 3, .production_id = 194), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [12102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_assignment, 3, .production_id = 26), - [12104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_simple_nested_identifier, 3), - [12106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 145), - [12108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [12112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [12118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 37), - [12120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 152), - [12122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 102), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [12126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [12130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [12134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 4), - [12136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [12146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [12162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 3, .production_id = 55), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [12170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), - [12176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [12180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [12192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [12196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [12198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [12202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [12206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [12210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [12214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [12220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [12224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [12262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8712), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [12272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [12274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8532), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [12280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [12286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [12298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [12302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [12356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8333), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8001), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [12386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8433), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [12418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8236), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6979), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8035), - [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [12530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [12532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [12534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [12536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [12538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [12540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [12542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), - [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), - [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [12552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [12560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [12564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [12570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [12574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [12578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), - [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), - [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [12608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [12610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), - [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [12614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [12620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [12624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [12628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8756), - [12646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [12684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8258), - [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [12688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [12690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), - [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [12712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [12714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), - [12720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [12724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [12726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8689), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [12738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), - [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [12752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [12754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [12756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [12764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [12766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [12768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8681), - [12770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [12796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [12836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [12844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), - [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), - [12852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), - [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), - [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), - [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [12866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), - [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [12870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [12872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [12874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), - [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), - [12882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), - [12908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8255), - [12946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, .production_id = 8), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [12954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_annotated_object, 2, .production_id = 6), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [12964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [12968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [12970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8256), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [12976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8719), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8343), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [13038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [13040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [13052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [13054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [13074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), - [13100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [13102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [13104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [13106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [13108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [13110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [13112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), - [13114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [13130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [13132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), - [13134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), - [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [13140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), - [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), - [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [13150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [13152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [13156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [13158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), - [13160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, .production_id = 3), - [13162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [13164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [13168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [13170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), - [13172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, .production_id = 1), - [13174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [13176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [13178] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [13180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [13182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), - [13184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [13186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [13188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [13190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), - [13192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [13194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [13196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), - [13198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [13202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [13204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [13206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8660), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), - [13212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [13214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [13216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), - [13218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [13220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), - [13222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(3794), + [2917] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym__property_name, 1, 0, 23), SHIFT(304), + [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(829), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [2926] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym__property_name, 1, 0, 23), SHIFT(6718), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym__property_name, 1, 0, 23), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6887), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8110), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym__property_name, 1, 0, 23), + [2974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(107), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 10), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8450), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8501), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8449), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8225), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8221), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(304), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(6718), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8431), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8409), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8383), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8052), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8053), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6898), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8288), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8158), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), + [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8333), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), + [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8363), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8397), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7975), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(8467), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8463), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8464), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8026), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8027), + [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(8027), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8051), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8054), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 37), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8277), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7942), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7924), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), + [3407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(8227), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 87), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8217), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8210), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 81), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 207), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 300), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 37), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 331), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 146), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 146), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), + [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 227), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8258), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 80), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 82), + [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 88), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 136), + [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 137), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 13), + [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 137), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 138), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 330), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 286), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 296), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 195), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 329), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 157), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 297), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 242), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 241), + [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 296), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 195), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 15), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 294), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 202), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 288), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 260), + [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 185), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 259), + [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 15), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 258), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 255), + [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 254), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 253), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 158), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 139), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 251), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 248), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 188), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 215), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 213), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 212), + [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 209), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 208), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 89), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 205), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 140), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 202), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 203), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 122), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 122), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 144), + [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 142), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 141), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 140), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 135), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 59), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 33), + [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 79), + [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 145), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 37), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 152), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 326), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 206), + [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 207), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 202), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 292), + [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 248), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 298), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 204), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 248), + [3700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 204), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 13), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statement_block_repeat1, 1, 0, 0), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8423), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8419), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 353), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 325), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 290), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 291), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8372), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8374), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8312), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8197), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8413), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8057), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7954), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8011), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8384), + [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8006), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [4086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6584), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6590), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6809), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8244), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8332), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8237), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8226), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8444), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8359), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8443), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8437), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8432), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 49), + [4315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 49), SHIFT_REPEAT(6886), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), + [4330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 49), SHIFT(4741), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 63), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 43), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 21), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6210), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6209), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6193), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6229), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 56), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 57), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6177), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6216), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6215), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), + [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 57), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6201), + [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 56), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), + [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 56), + [4429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 57), + [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 23), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [4522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 23), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 113), + [4527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 113), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 112), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 112), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 111), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 111), + [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 63), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 63), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 239), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 239), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 183), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 183), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4932), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [4579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(781), + [4582] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 39), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 39), + [4591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(8135), + [4594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 39), + [4597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1830), + [4600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 39), SHIFT(7917), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 39), + [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(8071), + [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1828), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym_predefined_type, 1, 0, 0), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym_predefined_type, 1, 0, 0), + [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(712), + [4685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 39), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7547), + [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(342), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 10), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym_pattern, 1, -1, 10), + [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 53), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 10), SHIFT(8467), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(8399), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), + [4744] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 39), REDUCE(sym_rest_pattern, 2, 0, 0), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6503), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 111), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 63), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym_rest_pattern, 2, 0, 53), + [4769] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 10), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 53), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(538), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [4814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7688), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [4912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(709), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [4951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4673), + [4954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3764), + [4957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), + [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3319), + [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(614), + [4965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(6094), + [4968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(6098), + [4971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2555), + [4974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(8186), + [4977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(4711), + [4980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(6723), + [4983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2454), + [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2483), + [4989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2596), + [4992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2470), + [4995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2604), + [4998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(2584), + [5001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 49), SHIFT_REPEAT(3644), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8318), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [5143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5708), + [5146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), + [5149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(6102), + [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), + [5154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5080), + [5157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5411), + [5160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(7408), + [5163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(7583), + [5166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4871), + [5169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4714), + [5172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5445), + [5175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(4235), + [5178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(5452), + [5181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 2, 0, 0), SHIFT_REPEAT(8318), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [5196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(2384), + [5199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(3049), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), + [5212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(3248), + [5215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(3672), + [5218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(2974), + [5221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(3717), + [5224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(2978), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [5243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(7589), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [5252] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 23), REDUCE(aux_sym_object_repeat1, 2, 0, 78), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 52), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8385), + [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(2384), + [5269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(2974), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(3672), + [5277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(2978), + [5280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(3717), + [5283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(3248), + [5286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), SHIFT(3049), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [5303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [5385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [5401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [5417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [5469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [5481] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 23), REDUCE(aux_sym_object_repeat1, 2, 0, 78), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 52), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7612), + [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [5503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 78), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 52), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [5508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 39), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7892), + [5532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 38), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 38), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [5546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 56), + [5548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 56), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [5552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 98), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 98), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 45), + [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 45), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [5588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 105), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 105), + [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 41), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 41), + [5596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 0), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 0), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8107), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [5610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [5616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 78), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [5630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 99), + [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 99), + [5634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 281), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 281), + [5638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 282), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 282), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 43), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 43), + [5696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 43), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 43), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 321), + [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 321), + [5706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 183), + [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 183), + [5722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [5730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 233), + [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 233), + [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [5744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 320), + [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 320), + [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 240), + [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 240), + [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 55), + [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 55), + [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 42), + [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 42), + [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 34), + [5768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 34), + [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 322), + [5772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 322), + [5774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 96), + [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 96), + [5778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 237), + [5780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 237), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [5784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 319), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 319), + [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 323), + [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 323), + [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 57), + [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 57), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 57), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 56), + [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 104), + [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 104), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 238), + [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 352), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 352), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 283), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 283), + [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 236), + [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 236), + [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 168), + [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 182), + [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 182), + [5852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 167), + [5854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 181), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 181), + [5858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 234), + [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 234), + [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 165), + [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [5872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 164), + [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 162), + [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 285), + [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 285), + [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 110), + [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 180), + [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 180), + [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 179), + [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 179), + [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 117), + [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 284), + [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 284), + [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 34), + [5898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 34), + [5900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 34), SHIFT(259), + [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [5905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [5907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(259), + [5910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [5912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 34), + [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 34), + [5916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 34), SHIFT(259), + [5919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 110), + [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 110), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 111), + [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 111), + [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 110), SHIFT(259), + [5940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 63), + [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 63), + [5944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [5946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 173), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 173), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [5952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [5954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 109), + [5966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 108), + [5968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 101), + [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 101), + [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 57), + [5980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 56), + [5982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 178), + [5988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 178), + [5990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [6002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [6004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 104), + [6006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 104), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [6010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [6014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 76), + [6016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [6018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [6022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [6025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 75), + [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), + [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), + [6034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [6037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [6040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 174), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 174), + [6044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 106), + [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 106), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 56), + [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), + [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 172), + [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 107), + [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 107), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 57), + [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [6068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 64), + [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 64), + [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 66), REDUCE(sym_nested_type_identifier, 3, 0, 64), + [6075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 171), + [6079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [6081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 63), REDUCE(sym_nested_type_identifier, 3, 0, 64), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 164), + [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 163), + [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 163), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [6186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 162), + [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 161), + [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 161), + [6192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 34), SHIFT(261), + [6195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(261), + [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [6200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 119), + [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 119), + [6204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 34), SHIFT(261), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 229), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 229), + [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 117), + [6215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 116), + [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 116), + [6219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 115), + [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 115), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [6231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 110), SHIFT(261), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 114), + [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 114), + [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 163), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 163), + [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 243), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 243), + [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 109), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 187), + [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 187), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 166), + [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 166), + [6274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 34), SHIFT(256), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 120), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [6285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 41), + [6288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 41), + [6291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 95), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 95), + [6295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [6299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [6303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 94), + [6305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 94), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 54), + [6311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 54), SHIFT(768), + [6314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 186), + [6316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 186), + [6318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 169), + [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 169), + [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 93), + [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 93), + [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 110), SHIFT(256), + [6329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 92), + [6331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 92), + [6333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [6335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 37), + [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 37), + [6339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [6341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [6346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [6365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [6369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 184), + [6371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 184), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [6377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(256), + [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 108), REDUCE(sym_assignment_expression, 3, 0, 108), + [6383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 108), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [6387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 120), REDUCE(sym_assignment_expression, 3, 0, 75), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 78), + [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 52), + [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 78), + [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 52), + [6402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [6404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [6406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 34), SHIFT(256), + [6409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 44), + [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 44), + [6413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [6416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 46), + [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 46), + [6427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 120), REDUCE(sym_assignment_expression, 3, 0, 108), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [6438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 165), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [6442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 76), + [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 78), + [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 78), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 143), + [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 143), + [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 188), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 188), + [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 122), + [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 122), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 250), + [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 250), + [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 354), + [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 354), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3335), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 59), + [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 59), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [6539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 293), + [6541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 293), + [6543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 327), + [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 327), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [6561] = {.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), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [6567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 214), + [6569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 214), + [6571] = {.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), + [6575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 78), REDUCE(sym_object_pattern, 3, 0, 52), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [6592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 34), SHIFT(255), + [6595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(255), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [6600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 110), SHIFT(255), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 34), SHIFT(255), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 90), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [6612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [6619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 328), + [6621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 328), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [6631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 108), + [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [6642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 389), + [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 389), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [6648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 374), + [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 374), + [6652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 373), + [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 373), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 355), + [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 355), + [6662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 154), + [6664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 154), SHIFT_REPEAT(3228), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [6677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 83), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 83), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [6735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 35), + [6737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 35), + [6740] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 35), REDUCE(sym__primary_type, 1, 0, 41), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [6750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 92), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [6758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 154), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [6776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 83), + [6778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 83), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 41), REDUCE(sym__parameter_name, 2, 0, 83), + [6783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [6795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 34), SHIFT(260), + [6798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(260), + [6801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 34), SHIFT(260), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), + [6806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 110), SHIFT(260), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5705), + [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 37), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 121), + [6825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 35), + [6827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 35), REDUCE(sym__primary_type, 1, 0, 41), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 110), SHIFT(254), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 34), SHIFT(254), + [6968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 54), SHIFT(633), + [6971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 227), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), + [6975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 122), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [6981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 122), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [6987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 185), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 43), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [6995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 241), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 242), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7933), + [7005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [7008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [7010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 89), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), + [7019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 216), + [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 216), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [7025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [7030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [7033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [7035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 34), SHIFT(253), + [7038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 218), + [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 218), + [7042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(253), + [7045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 34), SHIFT(253), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [7050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 188), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [7054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 147), + [7056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 147), + [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 286), + [7060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 151), + [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 151), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [7068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 110), SHIFT(257), + [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [7073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [7076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [7079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 78), REDUCE(sym_object_pattern, 3, 0, 52), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 158), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [7092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 159), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 59), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), + [7112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(254), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 157), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [7121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 34), SHIFT(254), + [7124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 261), + [7126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 261), + [7128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 86), + [7130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 86), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [7134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 110), SHIFT(253), + [7137] = {.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), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), + [7147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 34), SHIFT(257), + [7150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(257), + [7153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 34), SHIFT(257), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [7200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 49), SHIFT_REPEAT(6723), + [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7838), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7856), + [7209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7928), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7923), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7723), + [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), + [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [7249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 110), SHIFT(258), + [7252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(258), + [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [7257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [7273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [7275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [7279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 34), SHIFT(258), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [7300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [7306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 34), SHIFT(258), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [7321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 89), REDUCE(sym_class, 4, 0, 185), + [7324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 89), REDUCE(sym_class, 4, 0, 185), + [7327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 92), REDUCE(sym_class, 4, 0, 186), + [7330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 92), REDUCE(sym_class, 4, 0, 186), + [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [7337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 93), REDUCE(sym_class, 4, 0, 187), + [7340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 93), REDUCE(sym_class, 4, 0, 187), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), + [7353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 37), REDUCE(sym_class, 3, 0, 119), + [7356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 37), REDUCE(sym_class, 3, 0, 119), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8322), + [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [7369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [7371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 157), REDUCE(sym_class, 5, 0, 241), + [7374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 157), REDUCE(sym_class, 5, 0, 241), + [7377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 158), REDUCE(sym_class, 5, 0, 242), + [7380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 158), REDUCE(sym_class, 5, 0, 242), + [7383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 161), REDUCE(sym_class, 5, 0, 243), + [7386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 161), REDUCE(sym_class, 5, 0, 243), + [7389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 227), REDUCE(sym_class, 6, 0, 286), + [7392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 227), REDUCE(sym_class, 6, 0, 286), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8454), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8455), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, 0, 7), + [7463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, 0, 7), SHIFT_REPEAT(7583), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [7472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_required, 3, 0, 15), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotated_object_member, 2, 0, 6), + [7476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotated_object_member, 2, 0, 17), + [7478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, 0, 127), + [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, 0, 126), + [7482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, 0, 68), + [7484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, 0, 124), + [7486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, 0, 201), + [7488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, 0, 200), + [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, 0, 199), + [7492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, 0, 198), + [7494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 4, 0, 197), + [7496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 4, 0, 195), + [7498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_initializer, 3, 0, 0), + [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, 0, 123), + [7502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_initializer, 2, 0, 0), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 3, 0, 15), + [7506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_body, 3, 0, 130), + [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, 0, 131), + [7510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, 0, 67), + [7512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, 0, 192), + [7514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, 0, 191), + [7516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_binding, 3, 0, 20), + [7518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, 0, 190), + [7520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 6, 0, 189), + [7522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, 0, 247), + [7524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, 0, 246), + [7526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, 0, 132), + [7528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, 0, 245), + [7530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 7, 0, 244), + [7532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, 0, 133), + [7534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_binding, 3, 0, 26), + [7536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 5, 0, 134), + [7538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [7540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4250), + [7543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8480), + [7546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_signal, 3, 0, 15), + [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_required, 3, 0, 27), + [7550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__qml_enum_declaration, 3, 0, 28), + [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition, 2, 0, 5), + [7554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition, 2, 0, 4), + [7556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_array, 3, 0, 0), + [7558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, 0, 65), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_array, 4, 0, 0), + [7562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property, 4, 0, 62), + [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_inline_component, 4, 0, 70), + [7566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_signal, 4, 0, 69), + [7568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 1, 0, 9), + [7570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_object_initializer_repeat1, 1, 0, 0), + [7572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, 0, 50), + [7574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, 0, 51), + [7576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, 0, 61), + [7578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_object_definition_binding, 4, 0, 60), + [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7495), + [7584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_property_modifier, 1, 0, 0), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8467), + [7590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_ui_property_modifier, 1, 0, 0), SHIFT(7495), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_annotation, 3, 0, 14), + [7597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 1, 0, 2), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [7619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 5, 0, 31), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6665), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [7629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 4, 0, 18), + [7631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 3, 0, 11), + [7633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 6, 0, 71), + [7635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 6, 0, 72), + [7637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 6, 0, 73), + [7639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [7641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 3, 0, 13), + [7643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 5, 0, 29), + [7645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 3, 0, 15), + [7647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ui_annotated_object_repeat1, 2, 0, 7), SHIFT_REPEAT(7160), + [7650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_pragma, 5, 0, 32), + [7652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_import, 4, 0, 19), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7767), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8102), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6857), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6855), + [7662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6873), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6731), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6729), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6734), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [7680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_list_property_type, 4, 0, 0), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6879), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6875), + [7686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ui_list_property_type, 4, 0, 125), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8143), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [7712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [7726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [7732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6905), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [7744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6502), + [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8309), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8045), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8079), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 316), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 270), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 272), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [7908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 10), + [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 219), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 351), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 224), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 155), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 15), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 16), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 310), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 310), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 270), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 219), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [8014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 39), REDUCE(sym_type_parameter, 1, 0, 40), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [8019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 39), SHIFT(1912), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 16), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 15), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 310), + [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 16), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 224), + [8058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 316), + [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 272), + [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 15), + [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 270), + [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 351), + [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 16), + [8072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 155), + [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 310), + [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 270), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 15), + [8080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 219), + [8082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 39), SHIFT(7917), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7051), + [8099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8410), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8406), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [8109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 16), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8255), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [8137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8377), + [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 56), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8476), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [8195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 22), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8013), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 48), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 111), + [8211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 63), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [8263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 56), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [8277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 372), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [8339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 52), + [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_property_modifier, 1, 0, 0), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), + [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 179), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [8441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 180), + [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 181), + [8445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 182), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [8455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 179), + [8457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 180), + [8459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 181), + [8461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 182), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [8467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 344), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6860), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [8499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7989), + [8503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8146), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7990), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8070), + [8509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 57), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8124), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), + [8539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 107), + [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 107), + [8543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 43), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [8547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8195), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8492), + [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 372), + [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [8577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8478), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7892), + [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 232), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 231), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [8601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 210), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 210), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [8619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [8631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8486), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [8637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 280), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [8651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [8653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 170), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [8673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 344), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8496), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [8699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 57), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8470), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8369), + [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [8731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [8737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 100), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 153), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [8747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8193), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [8757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(781), + [8760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 208), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [8770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 78), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 52), + [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [8775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 223), + [8777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 40), + [8779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 382), + [8781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 377), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 262), + [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 253), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 356), + [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 357), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 337), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [8809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 336), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [8819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 36), + [8821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), + [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [8829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(712), + [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 301), + [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 302), + [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 391), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8458), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8396), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [8902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2207), + [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [8907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [8917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [8919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), + [8921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [8931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(8247), + [8934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [8936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [8943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 211), + [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 211), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [9029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 63), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 49), + [9059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 49), SHIFT_REPEAT(6643), + [9062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7478), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [9118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 210), + [9120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 210), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), + [9142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 78), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [9162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 37), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [9176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [9188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8242), + [9190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [9206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 47), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8489), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), + [9238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(699), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 2, 0, 0), SHIFT_REPEAT(6102), + [9262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 2, 0, 0), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [9268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8457), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [9278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [9280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 118), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 36), + [9288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [9316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6137), + [9319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [9321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [9336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7907), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 97), + [9364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 79), + [9366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 346), + [9368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 22), SHIFT(1834), + [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 312), + [9373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 350), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [9379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [9381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 314), + [9383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [9399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 368), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 135), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [9417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 144), + [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 202), + [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 203), + [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [9425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [9455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 22), SHIFT(1835), + [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 137), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 215), + [9464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 248), + [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 340), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [9472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 343), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 371), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 309), + [9480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 308), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [9528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 304), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7673), + [9536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 259), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 359), + [9546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 360), + [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_nested_identifier, 3, 0, 0), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_nested_identifier, 3, 0, 10), + [9560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [9562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 22), SHIFT(1924), + [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 48), SHIFT(1842), + [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 362), + [9570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 211), + [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 211), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [9576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 25), + [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 365), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [9584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 362), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7977), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [9590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 394), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [9600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 25), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 22), SHIFT(1907), + [9617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 15), + [9619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 48), SHIFT(1945), + [9622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 48), SHIFT(1841), + [9625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), + [9629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 304), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), + [9637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [9639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), + [9642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6984), + [9645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [9647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 308), + [9649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 318), + [9651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 375), + [9653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [9655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 56), + [9657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [9661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [9663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 33), + [9665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 385), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [9703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 376), + [9705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 59), + [9707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 380), + [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [9715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 330), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [9719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 296), + [9721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 195), + [9723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 329), + [9725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 279), + [9727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 332), + [9729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 268), + [9731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 266), + [9733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 298), + [9735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 278), + [9737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 297), + [9739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 274), + [9741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 388), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), + [9745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 296), + [9747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [9749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 334), + [9751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 195), + [9753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 294), + [9755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 276), + [9757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 335), + [9759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [9761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 288), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 340), + [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 141), + [9773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 137), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [9777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 260), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8203), + [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 343), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 142), + [9789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [9791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 15), + [9793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 258), + [9795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 255), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [9801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 268), + [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 221), + [9805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 55), + [9807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 266), + [9809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 226), + [9811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 254), + [9813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [9815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 122), + [9817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 264), + [9819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 221), + [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7728), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [9827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 263), + [9829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 55), + [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 205), + [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 208), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [9837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 209), + [9839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 48), SHIFT(1944), + [9842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 212), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [9854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 213), + [9856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [9872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 122), + [9874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 230), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [9880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 188), + [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 24), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [9892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 251), + [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 253), + [9896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 25), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [9928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_property_repeat1, 1, 0, 0), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [9932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_version_specifier, 1, 0, 12), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 87), + [9948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [9950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6521), + [9953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [9955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(6524), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [9968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 21), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 333), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [10000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [10004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 52), + [10006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(5291), + [10009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [10025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_pragma_repeat1, 2, 0, 74), SHIFT_REPEAT(6128), + [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_pragma_repeat1, 2, 0, 74), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 207), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [10060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 85), + [10062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [10069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 91), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [10081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [10083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [10085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4951), + [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), + [10099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [10101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [10105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [10107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 103), + [10109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [10111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [10117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [10119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [10131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 43), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [10137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(848), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [10166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 256), + [10168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 256), + [10170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 257), + [10172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 257), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), + [10206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [10274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 15), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [10278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 149), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6866), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [10294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 160), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [10298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 295), + [10300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 295), SHIFT_REPEAT(6222), + [10303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 295), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [10327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 176), + [10329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [10334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 228), + [10336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 228), SHIFT_REPEAT(567), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [10359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [10433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 366), + [10435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 384), + [10437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 369), + [10439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 367), + [10441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 267), + [10443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 386), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [10459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 269), + [10461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 265), + [10463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 253), + [10465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 370), + [10467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 262), + [10469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 271), + [10471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 383), + [10473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 331), + [10475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition, 2, 0, 4), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [10483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 273), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [10487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [10491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4751), + [10494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 275), + [10498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 277), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [10504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 387), + [10506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_definition, 2, 0, 5), + [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [10548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 300), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [10560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 10), + [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_initializer, 2, 0, 0), + [10564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 356), + [10566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 361), + [10568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 220), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6785), + [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [10574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 364), + [10576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 363), + [10578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 358), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [10586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 348), + [10588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 381), + [10590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [10592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [10594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 347), + [10596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [10598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [10602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [10604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 345), + [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [10610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 379), + [10612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 378), + [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [10626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 349), + [10628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 37), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [10634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [10642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [10648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [10652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 15), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8387), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [10664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 81), + [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_initializer, 3, 0, 0), + [10668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 13), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [10690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, 0, 196), SHIFT_REPEAT(7209), + [10693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, 0, 196), + [10695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, 0, 15), + [10697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_signal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6249), + [10700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_signal_parameters_repeat1, 2, 0, 0), + [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6843), + [10704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 3, 0, 193), + [10706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1913), + [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 208), + [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), + [10715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 222), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [10721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 58), + [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [10727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6967), + [10730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), + [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [10748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [10751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 57), + [10753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 392), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), + [10757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 313), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), + [10771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 390), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [10781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 225), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_version_specifier, 3, 0, 30), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), + [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 393), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [10835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 91), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [10841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 337), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [10847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 342), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [10861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 395), + [10867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 336), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [10875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 341), + [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 339), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 338), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), + [10903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 324), + [10905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(709), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), + [10944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4978), + [10947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [10963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 396), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [10979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 315), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [10985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2551), + [10988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [10990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [10992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 311), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [10998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(350), + [11001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 55), + [11003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 58), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [11013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [11019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8499), + [11021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [11049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_pragma_repeat1, 2, 0, 54), + [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), + [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), + [11095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [11097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 317), + [11099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 24), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [11105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ui_object_array_repeat1, 2, 0, 0), SHIFT_REPEAT(4271), + [11108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ui_object_array_repeat1, 2, 0, 0), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [11134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [11154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [11157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [11161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 306), + [11163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [11167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2574), + [11170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [11178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [11180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 196), SHIFT_REPEAT(3733), + [11183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 196), + [11185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [11191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [11199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [11211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [11241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), + [11244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [11246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(7781), + [11249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [11279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 303), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [11305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [11307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 121), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [11349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 305), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [11429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 307), + [11431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 301), + [11433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 302), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [11439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [11447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 16), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7181), + [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8270), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [11477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 217), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [11487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 24), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), + [11491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 235), + [11493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8447), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8446), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8427), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8426), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8405), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [11549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 3, 0, 0), + [11551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [11571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [11579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 2, 0, 129), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [11583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 2, 0, 128), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [11601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [11627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8404), + [11629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_array, 3, 0, 0), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [11637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [11645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [11649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 55), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [11657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8380), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [11663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [11671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), + [11673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 15), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [11677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8355), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7443), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [11705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 136), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [11709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8354), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [11729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 16), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [11747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7991), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [11765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 13), + [11767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), + [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8261), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [11791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [11793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 249), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [11803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 138), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [11807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8328), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [11815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [11817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 140), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [11821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [11823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 140), + [11825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [11827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [11833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [11841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [11845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [11855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8327), + [11857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 102), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [11861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 202), + [11863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 152), + [11865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 37), + [11867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 252), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [11873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [11879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 148), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [11887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [11895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [11899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 145), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [11903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [11915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_object_array, 4, 0, 0), + [11917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [11921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [11933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [11935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 88), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [11939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [11941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 289), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [11949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 150), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [11955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 84), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [11959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 82), + [11961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 80), + [11963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 204), + [11965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [11969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [11977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_negative_number, 2, 0, 34), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [11987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 13), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), + [11995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), + [12001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 206), + [12003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [12009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 139), + [12011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [12017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 89), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [12021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), + [12023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 287), + [12025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_simple_nested_identifier, 3, 0, 0), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7935), + [12029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [12041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__qml_enum_body_repeat1, 2, 0, 130), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), + [12055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_assignment, 3, 0, 194), + [12057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__qml_enum_assignment, 3, 0, 26), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [12067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 287), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [12073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameter, 3, 0, 55), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [12079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 2, 0, 0), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [12083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 248), + [12085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 204), + [12087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [12089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 202), + [12091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 207), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [12099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 157), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [12111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 158), + [12113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [12123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [12127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [12131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [12135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [12139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [12145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [12149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [12153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [12155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 185), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [12161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 286), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [12167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [12169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 249), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [12173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [12175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_signal_parameters, 4, 0, 0), + [12177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 326), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [12183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 177), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [12199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 175), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [12205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 227), + [12207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 248), + [12209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 292), + [12211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [12219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [12223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7888), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [12233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 25), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [12237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [12243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 241), + [12245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 242), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8168), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [12289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8452), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [12375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [12395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [12433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8017), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [12523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7929), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [12643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8266), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [12657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7458), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [12681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [12903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7983), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6362), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7880), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [12983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 3, 0, 8), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), + [13009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ui_annotated_object, 2, 0, 6), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [13019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [13023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [13073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), + [13081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), + [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), + [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [13181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 3), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [13191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 1), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), + [13195] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8378), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), + [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), + [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [13233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -473336,11 +456270,15 @@ bool tree_sitter_qmljs_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_qmljs_external_scanner_serialize(void *, char *); void tree_sitter_qmljs_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 -#define extern __declspec(dllexport) +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) #endif -extern const TSLanguage *tree_sitter_qmljs(void) { +TS_PUBLIC const TSLanguage *tree_sitter_qmljs(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h new file mode 100644 index 0000000..1f4466d --- /dev/null +++ b/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h new file mode 100644 index 0000000..15a3b23 --- /dev/null +++ b/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17b4fde..17f0e94 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -86,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +130,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/src/typescript-scanner.h b/src/typescript-scanner.h index 5526ba6..89f6e8c 100644 --- a/src/typescript-scanner.h +++ b/src/typescript-scanner.h @@ -1,10 +1,10 @@ /* Source: -github:tree-sitter/tree-sitter-typescript#b00b8eb44f0b9f02556da0b1a4e2f71faed7e61b +^0.21.1 The MIT License (MIT) -Copyright (c) 2017 GitHub +Copyright (c) 2017 Max Brunsfeld Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal